diff --git a/docs/FUNCTIONAL.md b/docs/FUNCTIONAL.md index bb0e71b..fb3b8a0 100644 --- a/docs/FUNCTIONAL.md +++ b/docs/FUNCTIONAL.md @@ -820,8 +820,12 @@ every change applies within one frame (no Pixi remount): `VisibilityDistance(localPlayerDrive)` circles around LOCAL planets; LOCAL planets are always exempt — the toggle is named after the visible part of the map rather than the - obscured one) plus the torus / no-wrap radio that switches - the renderer mode while preserving the camera centre. + obscured one). The renderer always runs in torus mode; the + earlier torus / no-wrap radio was removed in F8 polish + (issue #48 п.8) because the topology is a server-side concept + rather than a per-session UI affordance. The renderer-side + no-wrap path is retained for the day the engine surfaces a + bounded-plane mode. LOCAL planets are always rendered — they have no toggle. Every other toggle defaults to ON. Hiding a planet cascades onto every diff --git a/docs/FUNCTIONAL_ru.md b/docs/FUNCTIONAL_ru.md index 615b423..0429bef 100644 --- a/docs/FUNCTIONAL_ru.md +++ b/docs/FUNCTIONAL_ru.md @@ -840,9 +840,12 @@ Directory-промоушен ([Раздел 5](#5-реестр-названий- объединения окружностей `VisibilityDistance(localPlayerDrive)` вокруг LOCAL-планет; LOCAL-планеты всегда вне фильтра — тоггл назван по видимой - области карты, а не по затемнённой) плюс радиогруппа - «торус / без переноса», переключающая режим рендерера с - сохранением центра камеры. + области карты, а не по затемнённой). Рендерер всегда работает + в торическом режиме; прежняя радиогруппа «торус / без + переноса» была удалена в полишинге F8 (issue #48 п.8), + поскольку топология карты — серверная сущность, а не + per-session UI-настройка. Код-путь без переноса в рендерере + оставлен на день, когда движок выставит режим bounded plane. LOCAL-планеты отрисовываются всегда — для них тоггла нет. Остальные тогглы по умолчанию включены. Скрытие планеты diff --git a/game/internal/controller/report.go b/game/internal/controller/report.go index 4458f24..50740f3 100644 --- a/game/internal/controller/report.go +++ b/game/internal/controller/report.go @@ -733,6 +733,7 @@ func (c *Cache) otherGroup(v *mr.OtherGroup, sg *game.ShipGroup, st *game.ShipTy } v.Speed = mr.F(sg.Speed(st)) v.Mass = mr.F(st.EmptyMass()) + v.Race = c.g.Race[c.RaceIndex(sg.OwnerID)].Name } func (c *Cache) localPlanet(v *mr.LocalPlanet, p *game.Planet) { diff --git a/pkg/model/report/ship.go b/pkg/model/report/ship.go index a5bb2c8..bb41b23 100644 --- a/pkg/model/report/ship.go +++ b/pkg/model/report/ship.go @@ -52,6 +52,13 @@ type OtherGroup struct { Range *Float `json:"range,omitempty"` Speed Float `json:"speed"` Mass Float `json:"mass"` + // Race is the owner's display name resolved from `sg.OwnerID` + // (or, for legacy reports, the section header that introduced + // the row). The local race fills this in for its own + // `LocalGroup` copies via the embedded `OtherGroup` field so + // every group carries an authoritative attribution rather than a + // "foreign" fallback heuristic at render time. + Race string `json:"race,omitempty"` } type UnidentifiedGroup struct { diff --git a/pkg/schema/fbs/report.fbs b/pkg/schema/fbs/report.fbs index 24301d8..23cae10 100644 --- a/pkg/schema/fbs/report.fbs +++ b/pkg/schema/fbs/report.fbs @@ -168,6 +168,7 @@ table OtherGroup { range:float32 = null; speed:float32; mass:float32; + race:string; } table LocalGroup { @@ -184,6 +185,7 @@ table LocalGroup { id:common.UUID (required); state:string; fleet:string; + race:string; } table LocalFleet { diff --git a/pkg/schema/fbs/report/LocalGroup.go b/pkg/schema/fbs/report/LocalGroup.go index b268708..a1c8b33 100644 --- a/pkg/schema/fbs/report/LocalGroup.go +++ b/pkg/schema/fbs/report/LocalGroup.go @@ -194,8 +194,16 @@ func (rcv *LocalGroup) Fleet() []byte { return nil } +func (rcv *LocalGroup) Race() []byte { + o := flatbuffers.UOffsetT(rcv._tab.Offset(30)) + if o != 0 { + return rcv._tab.ByteVector(o + rcv._tab.Pos) + } + return nil +} + func LocalGroupStart(builder *flatbuffers.Builder) { - builder.StartObject(13) + builder.StartObject(14) } func LocalGroupAddNumber(builder *flatbuffers.Builder, number uint64) { builder.PrependUint64Slot(0, number, 0) @@ -241,6 +249,9 @@ func LocalGroupAddState(builder *flatbuffers.Builder, state flatbuffers.UOffsetT func LocalGroupAddFleet(builder *flatbuffers.Builder, fleet flatbuffers.UOffsetT) { builder.PrependUOffsetTSlot(12, flatbuffers.UOffsetT(fleet), 0) } +func LocalGroupAddRace(builder *flatbuffers.Builder, race flatbuffers.UOffsetT) { + builder.PrependUOffsetTSlot(13, flatbuffers.UOffsetT(race), 0) +} func LocalGroupEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { return builder.EndObject() } diff --git a/pkg/schema/fbs/report/OtherGroup.go b/pkg/schema/fbs/report/OtherGroup.go index a2664c2..4bf0eff 100644 --- a/pkg/schema/fbs/report/OtherGroup.go +++ b/pkg/schema/fbs/report/OtherGroup.go @@ -163,8 +163,16 @@ func (rcv *OtherGroup) MutateMass(n float32) bool { return rcv._tab.MutateFloat32Slot(22, n) } +func (rcv *OtherGroup) Race() []byte { + o := flatbuffers.UOffsetT(rcv._tab.Offset(24)) + if o != 0 { + return rcv._tab.ByteVector(o + rcv._tab.Pos) + } + return nil +} + func OtherGroupStart(builder *flatbuffers.Builder) { - builder.StartObject(10) + builder.StartObject(11) } func OtherGroupAddNumber(builder *flatbuffers.Builder, number uint64) { builder.PrependUint64Slot(0, number, 0) @@ -201,6 +209,9 @@ func OtherGroupAddSpeed(builder *flatbuffers.Builder, speed float32) { func OtherGroupAddMass(builder *flatbuffers.Builder, mass float32) { builder.PrependFloat32Slot(9, mass, 0.0) } +func OtherGroupAddRace(builder *flatbuffers.Builder, race flatbuffers.UOffsetT) { + builder.PrependUOffsetTSlot(10, flatbuffers.UOffsetT(race), 0) +} func OtherGroupEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { return builder.EndObject() } diff --git a/pkg/transcoder/report.go b/pkg/transcoder/report.go index f2d9771..df8b622 100644 --- a/pkg/transcoder/report.go +++ b/pkg/transcoder/report.go @@ -513,6 +513,7 @@ func encodeReportLocalGroup(builder *flatbuffers.Builder, group *model.LocalGrou class := builder.CreateString(group.Class) cargo := builder.CreateString(group.Cargo) state := builder.CreateString(group.State) + race := builder.CreateString(group.Race) tech := encodeReportTechEntryVector(builder, group.Tech) var fleet flatbuffers.UOffsetT @@ -544,6 +545,7 @@ func encodeReportLocalGroup(builder *flatbuffers.Builder, group *model.LocalGrou if group.Fleet != nil { fbs.LocalGroupAddFleet(builder, fleet) } + fbs.LocalGroupAddRace(builder, race) return fbs.LocalGroupEnd(builder) } @@ -551,6 +553,7 @@ func encodeReportOtherGroup(builder *flatbuffers.Builder, group *model.OtherGrou class := builder.CreateString(group.Class) cargo := builder.CreateString(group.Cargo) tech := encodeReportTechEntryVector(builder, group.Tech) + race := builder.CreateString(group.Race) fbs.OtherGroupStart(builder) fbs.OtherGroupAddNumber(builder, uint64(group.Number)) @@ -569,6 +572,7 @@ func encodeReportOtherGroup(builder *flatbuffers.Builder, group *model.OtherGrou } fbs.OtherGroupAddSpeed(builder, reportFloatToFBS(group.Speed)) fbs.OtherGroupAddMass(builder, reportFloatToFBS(group.Mass)) + fbs.OtherGroupAddRace(builder, race) return fbs.OtherGroupEnd(builder) } @@ -1134,6 +1138,7 @@ func decodeReportLocalGroupVector(flatReport *fbs.Report, result *model.Report) Destination: destination, Speed: reportFloatFromFBS(item.Speed()), Mass: reportFloatFromFBS(item.Mass()), + Race: string(item.Race()), }, ID: uuidFromHiLo(id.Hi(), id.Lo()), State: string(item.State()), @@ -1196,6 +1201,7 @@ func decodeReportOtherGroupVector(flatReport *fbs.Report, result *model.Report) Destination: destination, Speed: reportFloatFromFBS(item.Speed()), Mass: reportFloatFromFBS(item.Mass()), + Race: string(item.Race()), } if origin := item.Origin(); origin != nil { diff --git a/pkg/transcoder/report_test.go b/pkg/transcoder/report_test.go index 6f13d3a..2aeb7ec 100644 --- a/pkg/transcoder/report_test.go +++ b/pkg/transcoder/report_test.go @@ -352,6 +352,7 @@ func sampleReport() *model.Report { Range: &rangeB, Speed: model.Float(2.5), Mass: model.Float(12.0), + Race: "Earthlings", }, ID: uuid.MustParse("33333333-3333-3333-3333-333333333333"), State: "in_orbit", @@ -359,7 +360,7 @@ func sampleReport() *model.Report { }, }, OtherGroup: []model.OtherGroup{ - {Number: 2, Class: "scout", Tech: map[string]model.Float{"CARGO": model.Float(1.25), "DRIVE": model.Float(1.75)}, Cargo: "CAP", Load: model.Float(3.5), Destination: 5, Speed: model.Float(2.25), Mass: model.Float(8.5)}, + {Number: 2, Class: "scout", Tech: map[string]model.Float{"CARGO": model.Float(1.25), "DRIVE": model.Float(1.75)}, Cargo: "CAP", Load: model.Float(3.5), Destination: 5, Speed: model.Float(2.25), Mass: model.Float(8.5), Race: "Klingons"}, }, UnidentifiedGroup: []model.UnidentifiedGroup{ {X: model.Float(10.0), Y: model.Float(11.0)}, diff --git a/tools/local-dev/legacy-report/README.md b/tools/local-dev/legacy-report/README.md index 69f2406..adb928c 100644 --- a/tools/local-dev/legacy-report/README.md +++ b/tools/local-dev/legacy-report/README.md @@ -129,17 +129,33 @@ do not flow through this parser. A ships-in-production row pointing at a planet that did not appear in `Your Planets` (which would be a malformed legacy file) is dropped. +## Foreign and unidentified groups + +The legacy text format does carry top-level ` Groups` blocks +and a single `Unidentified Groups` block, both outside the battle +rosters — earlier parser revisions silently dropped them. F8-05 +wires them up: + +- **`OtherGroup[]`** — every ` Groups` section outside a + `Battle at` block contributes one entry per row. The legacy row + is `# T D W S C T Q D P M` (count, class, drive/weapons/shields/ + cargo tech, cargo type, load, destination, power=drive·20 — not + retained, mass). The destination resolves against the parsed + planet tables (`Your Planets`, ` Planets`, `Uninhabited + Planets`); rows whose destination is invisible to the local + player are dropped — preferable to fabricating a number. The + legacy row carries no origin / range columns, so foreign groups + surface as stationed at the destination (origin / range nil). +- **`UnidentifiedGroup[]`** — the `Unidentified Groups` section + carries `X Y` floats only. Each row maps directly onto + `UnidentifiedGroup{X, Y}`; no planet resolution needed. + ## Skipped sections (today) These exist in legacy reports but cannot be derived from the legacy text format at all. Each could become in-scope if a strong enough reason arises (see "Adding a new field" below). -- `OtherGroup[]` — no top-level legacy section. Foreign groups appear - only inside battle rosters; the synthetic JSON emits - `otherGroup: []`. -- `UnidentifiedGroup[]` — no legacy section at all; synthetic JSON - emits `unidentifiedGroup: []`. - Cargo routes — no dedicated section in the legacy text format; the synthetic JSON emits `route: []`. The UI's overlay path (`applyOrderOverlay`) supports running on top of an empty `routes`. diff --git a/tools/local-dev/legacy-report/parser.go b/tools/local-dev/legacy-report/parser.go index ea99025..e22855b 100644 --- a/tools/local-dev/legacy-report/parser.go +++ b/tools/local-dev/legacy-report/parser.go @@ -4,11 +4,13 @@ // Scope is intentionally narrow: only the fields the UI client decodes // from server reports today (planets, players, own ship classes, // header data, plus — added in Phase 19 — own ship groups, own fleets -// and incoming groups). Everything else in the legacy file is silently -// skipped. The synthetic-report parity rule in ui/PLAN.md is the -// source of truth for when to extend this parser; the package's -// README.md tracks every legacy section that could be wired up later -// when the corresponding UI decoder lands. +// and incoming groups; and — added in F8-05 — foreign ` Groups` +// blocks outside battles together with `Unidentified Groups`). +// Everything else in the legacy file is silently skipped. The +// synthetic-report parity rule in ui/PLAN.md is the source of truth +// for when to extend this parser; the package's README.md tracks +// every legacy section that could be wired up later when the +// corresponding UI decoder lands. package legacyreport import ( @@ -65,6 +67,8 @@ const ( sectionYourGroups sectionYourFleets sectionIncomingGroups + sectionOtherGroups + sectionUnidentifiedGroups sectionYourSciences sectionOtherSciences sectionOtherShipTypes @@ -94,6 +98,7 @@ type parser struct { pendingFleets []pendingFleet pendingIncomings []pendingIncoming pendingShipProducts []pendingShipProduction + pendingOtherGroups []pendingOtherGroup // Battle accumulator. `battles` collects every parsed BattleReport; // `pendingBattle` carries the in-flight battle until its block @@ -148,6 +153,29 @@ type pendingGroup struct { state string } +// pendingOtherGroup buffers a foreign " Groups" row outside any +// battle block — these are visible to the local player but live on +// foreign planets, so the destination resolves against the parsed +// planet tables in [parser.resolvePending]. The legacy row carries +// no origin / range / fleet columns, so foreign groups are always +// treated as stationed at the destination. The `race` field is set +// from the section header that introduced the row, so the inspector +// can name the foreign owner directly without falling back to a +// generic "foreign" placeholder. +type pendingOtherGroup struct { + race string + count uint + class string + drive float64 + weapons float64 + shields float64 + cargoTech float64 + cargoType string + load float64 + destinationName string + mass float64 +} + type pendingFleet struct { name string groups uint @@ -290,6 +318,10 @@ func (p *parser) handle(line string) error { p.parseYourFleet(fields) case sectionIncomingGroups: p.parseIncomingGroup(fields) + case sectionOtherGroups: + p.parseOtherGroup(fields) + case sectionUnidentifiedGroups: + p.parseUnidentifiedGroup(fields) case sectionYourSciences: p.parseYourScience(fields) case sectionOtherSciences: @@ -381,6 +413,8 @@ func classifySection(line string) (sec section, owner string, isHeader bool) { return sectionYourFleets, "", true case "Incoming Groups": return sectionIncomingGroups, "", true + case "Unidentified Groups": + return sectionUnidentifiedGroups, "", true case "Uninhabited Planets": return sectionUninhabitedPlanets, "", true case "Unidentified Planets": @@ -417,8 +451,8 @@ func classifySection(line string) (sec section, owner string, isHeader bool) { if owner, ok := singleTokenPrefix(line, " Sciences"); ok { return sectionOtherSciences, owner, true } - if _, ok := singleTokenPrefix(line, " Groups"); ok { - return sectionNone, "", true + if owner, ok := singleTokenPrefix(line, " Groups"); ok { + return sectionOtherGroups, owner, true } return sectionNone, "", false } @@ -1067,6 +1101,69 @@ func (p *parser) parseYourFleet(fields []string) { }) } +// parseOtherGroup buffers a foreign " Groups" row. The row's +// race is the current `otherOwner` set by classifySection. Columns +// (11 fields, last is mass): +// +// # T D W S C T Q D P M +// +// where the second T is the cargo type, the second D is the +// destination planet name, P is the flight-distance hint (drive*20, +// not retained) and M is the mass. +func (p *parser) parseOtherGroup(fields []string) { + if len(fields) < 11 { + return + } + count, err := strconv.ParseUint(fields[0], 10, 32) + if err != nil { + return + } + drive, _ := parseFloat(fields[2]) + weapons, _ := parseFloat(fields[3]) + shields, _ := parseFloat(fields[4]) + cargoTech, _ := parseFloat(fields[5]) + load, _ := parseFloat(fields[7]) + mass, _ := parseFloat(fields[10]) + + p.pendingOtherGroups = append(p.pendingOtherGroups, pendingOtherGroup{ + race: p.otherOwner, + count: uint(count), + class: fields[1], + drive: drive, + weapons: weapons, + shields: shields, + cargoTech: cargoTech, + cargoType: fields[6], + load: load, + destinationName: fields[8], + mass: mass, + }) +} + +// parseUnidentifiedGroup appends an "Unidentified Groups" row +// directly to the report — the legacy format only carries the +// floating-point world coordinates of the in-flight blip, so +// there is nothing to defer to [parser.finish]. +// +// X Y +func (p *parser) parseUnidentifiedGroup(fields []string) { + if len(fields) < 2 { + return + } + x, err := parseFloat(fields[0]) + if err != nil { + return + } + y, err := parseFloat(fields[1]) + if err != nil { + return + } + p.rep.UnidentifiedGroup = append(p.rep.UnidentifiedGroup, report.UnidentifiedGroup{ + X: report.F(x), + Y: report.F(y), + }) +} + // parseIncomingGroup buffers an "Incoming Groups" row. Columns: // // O D R S M @@ -1138,6 +1235,7 @@ func (p *parser) resolvePending() { Origin: origin, Range: rng, Mass: report.F(pg.mass), + Race: p.rep.Race, }, ID: syntheticGroupID(pg.g), State: pg.state, @@ -1145,6 +1243,29 @@ func (p *parser) resolvePending() { }) } + for _, pg := range p.pendingOtherGroups { + dest, ok := p.lookupPlanetNumber(pg.destinationName) + if !ok { + continue + } + tech := map[string]report.Float{ + "drive": report.F(pg.drive), + "weapons": report.F(pg.weapons), + "shields": report.F(pg.shields), + "cargo": report.F(pg.cargoTech), + } + p.rep.OtherGroup = append(p.rep.OtherGroup, report.OtherGroup{ + Number: pg.count, + Class: pg.class, + Tech: tech, + Cargo: pg.cargoType, + Load: report.F(pg.load), + Destination: dest, + Mass: report.F(pg.mass), + Race: pg.race, + }) + } + for _, pf := range p.pendingFleets { dest, ok := p.lookupPlanetNumber(pf.destinationName) if !ok { diff --git a/tools/local-dev/legacy-report/parser_test.go b/tools/local-dev/legacy-report/parser_test.go index e499a3a..ec5078a 100644 --- a/tools/local-dev/legacy-report/parser_test.go +++ b/tools/local-dev/legacy-report/parser_test.go @@ -790,6 +790,93 @@ func TestParseIncomingGroups(t *testing.T) { } } +func TestParseOtherAndUnidentifiedGroups(t *testing.T) { + // Mixed fixture: two foreign " Groups" sections (one row + // drops because its destination is not in any parsed planet + // table), plus a single "Unidentified Groups" block. The + // per-race section header sets `otherOwner`, but the resulting + // model carries the destination planet number only — the race + // name surfaces through battle rosters and the planet's + // `owner` field, not on the group row. + in := strings.Join([]string{ + "Race Report for Galaxy PLUS Turn 1", + "", + "Your Planets", + "", + " # X Y N S P I R P $ M C L", + " 17 171.05 700.24 Castle 1000.00 1000.00 1000.00 10.00 Capital 0.00 0.68 88.78 1000.00", + "", + "Aliens Planets", + "", + " # X Y N S P I R P $ M C L", + " 42 200.00 300.00 Far 500.00 500.00 500.00 10.00 Capital 0.00 0.00 0.00 500.00", + "", + "Aliens Groups", + "", + " # T D W S C T Q D P M", + " 6 Skiff 3.40 0 0 1 COL 2 Castle 68.00 3.00", + " 1 Drone 5.10 0 0 0 - 0 Limbo 102.0 1.00", + "", + "Reds Groups", + "", + " # T D W S C T Q D P M", + " 1 Phantom 4.20 0 0 0 - 0 Far 84.0 9.00", + "", + "Unidentified Groups", + "", + " X Y", + "100.50 200.25", + "333.10 444.20", + "", + }, "\n") + rep, _, err := Parse(strings.NewReader(in)) + if err != nil { + t.Fatalf("Parse: %v", err) + } + // Skiff → Castle resolves against Your Planets, Phantom → Far + // resolves against Other Planets, Drone → Limbo drops (unknown). + if got, want := len(rep.OtherGroup), 2; got != want { + t.Fatalf("len(OtherGroup) = %d, want %d (Drone → Limbo dropped due to unknown destination); rows=%+v", + got, want, rep.OtherGroup) + } + a := rep.OtherGroup[0] + if a.Class != "Skiff" || a.Number != 6 || a.Destination != 17 { + t.Errorf("a (Class, Number, Destination) = (%q, %d, %d), want (\"Skiff\", 6, 17)", + a.Class, a.Number, a.Destination) + } + if a.Race != "Aliens" { + t.Errorf("a Race = %q, want %q (carried over from the section header)", a.Race, "Aliens") + } + if a.Cargo != "COL" || float64(a.Load) != 2 || float64(a.Mass) != 3 { + t.Errorf("a (Cargo, Load, Mass) = (%q, %v, %v), want (\"COL\", 2, 3)", + a.Cargo, float64(a.Load), float64(a.Mass)) + } + if a.Origin != nil || a.Range != nil { + t.Errorf("a (Origin, Range) = (%v, %v), want (nil, nil) — legacy foreign rows have no origin/range columns", + a.Origin, a.Range) + } + if float64(a.Tech["drive"]) != 3.40 { + t.Errorf("a Tech.drive = %v, want 3.40", float64(a.Tech["drive"])) + } + b := rep.OtherGroup[1] + if b.Class != "Phantom" || b.Number != 1 || b.Destination != 42 { + t.Errorf("b (Class, Number, Destination) = (%q, %d, %d), want (\"Phantom\", 1, 42)", + b.Class, b.Number, b.Destination) + } + if b.Race != "Reds" { + t.Errorf("b Race = %q, want %q (separate section, separate owner)", b.Race, "Reds") + } + + if got, want := len(rep.UnidentifiedGroup), 2; got != want { + t.Fatalf("len(UnidentifiedGroup) = %d, want %d", got, want) + } + u := rep.UnidentifiedGroup[0] + if float64(u.X) != 100.50 || float64(u.Y) != 200.25 { + t.Errorf("u[0] (X, Y) = (%v, %v), want (100.50, 200.25)", + float64(u.X), float64(u.Y)) + } +} + // --- smoke tests ----------------------------------------------------- type smokeWant struct { @@ -801,6 +888,7 @@ type smokeWant struct { players, extinct, local, other int uninhabited, unidentified, shipClasses int localGroups, localFleets, incomingGroups int + otherGroups, unidentifiedGroups int localScience, otherScience, otherShipClass int bombings, shipProductions int battles int @@ -849,6 +937,8 @@ func runSmoke(t *testing.T, path string, want smokeWant) { {"LocalGroup", len(rep.LocalGroup), want.localGroups}, {"LocalFleet", len(rep.LocalFleet), want.localFleets}, {"IncomingGroup", len(rep.IncomingGroup), want.incomingGroups}, + {"OtherGroup", len(rep.OtherGroup), want.otherGroups}, + {"UnidentifiedGroup", len(rep.UnidentifiedGroup), want.unidentifiedGroups}, {"LocalScience", len(rep.LocalScience), want.localScience}, {"OtherScience", len(rep.OtherScience), want.otherScience}, {"OtherShipClass", len(rep.OtherShipClass), want.otherShipClass}, @@ -888,6 +978,7 @@ func runSmoke(t *testing.T, path string, want smokeWant) { // silently drops half the data. func TestParseDgKNNTS039(t *testing.T) { runSmoke(t, "../reports/dg/KNNTS039.REP", smokeWant{ + otherGroups: 723, unidentifiedGroups: 72, race: "KnightErrants", turn: 39, mapW: 800, mapH: 800, planetCount: 700, voteFor: "KnightErrants", votes: 16.02, @@ -908,6 +999,7 @@ func TestParseDgKNNTS039(t *testing.T) { func TestParseDgKNNTS040(t *testing.T) { runSmoke(t, "../reports/dg/KNNTS040.REP", smokeWant{ + otherGroups: 734, unidentifiedGroups: 109, race: "KnightErrants", turn: 40, mapW: 800, mapH: 800, planetCount: 700, players: 91, extinct: 49, @@ -930,6 +1022,7 @@ func TestParseDgKNNTS040(t *testing.T) { // exercises the deferred name-resolution path in [parser.finish]. func TestParseDgKNNTS041(t *testing.T) { runSmoke(t, "../reports/dg/KNNTS041.REP", smokeWant{ + otherGroups: 772, unidentifiedGroups: 349, race: "KnightErrants", turn: 41, mapW: 800, mapH: 800, planetCount: 700, players: 91, extinct: 50, @@ -952,6 +1045,7 @@ func TestParseDgKNNTS041(t *testing.T) { // gplus also sneaks "Incoming Groups" between sections. func TestParseGplus40(t *testing.T) { runSmoke(t, "../reports/gplus/40.REP", smokeWant{ + otherGroups: 1042, unidentifiedGroups: 44, race: "MbI", turn: 40, mapW: 350, mapH: 350, planetCount: 300, players: 26, extinct: 0, @@ -974,6 +1068,7 @@ func TestParseGplus40(t *testing.T) { // membership shape (no "Incoming Groups" this turn). func TestParseDgKiller031(t *testing.T) { runSmoke(t, "../reports/dg/Killer031.rep", smokeWant{ + otherGroups: 925, unidentifiedGroups: 34, race: "Killer", turn: 31, mapW: 250, mapH: 250, planetCount: 175, players: 25, extinct: 12, @@ -997,6 +1092,7 @@ func TestParseDgKiller031(t *testing.T) { // deferred name resolution is exercised in production conditions). func TestParseDgTancordia037(t *testing.T) { runSmoke(t, "../reports/dg/Tancordia037.rep", smokeWant{ + otherGroups: 580, unidentifiedGroups: 24, race: "Tancordia", turn: 37, mapW: 210, mapH: 210, planetCount: 140, players: 18, extinct: 7, diff --git a/tools/local-dev/reports/dg/KNNTS039.json b/tools/local-dev/reports/dg/KNNTS039.json index ef9d5bd..24722ad 100644 --- a/tools/local-dev/reports/dg/KNNTS039.json +++ b/tools/local-dev/reports/dg/KNNTS039.json @@ -1,9291 +1,34455 @@ { - "version": 0, - "turn": 39, - "mapWidth": 800, - "mapHeight": 800, - "mapPlanets": 700, - "race": "KnightErrants", - "votes": 16.02, - "voteFor": "KnightErrants", - "player": [ - { - "name": "3JO6HbIE", - "drive": 4.51, - "weapons": 2.24, - "shields": 1.8, - "cargo": 1, - "population": 3742.33, - "industry": 1191.49, - "planets": 7, - "relation": "War", - "votes": 3.74, - "extinct": false - }, - { - "name": "6PATBA", - "drive": 9.03, - "weapons": 5.62, - "shields": 2.16, - "cargo": 1.53, - "population": 16360.02, - "industry": 10488.69, - "planets": 30, - "relation": "War", - "votes": 16.36, - "extinct": false - }, - { - "name": "AbubaGerbographerPot", - "drive": 6.95, - "weapons": 3.26, - "shields": 4.18, - "cargo": 1, - "population": 929.9, - "industry": 842.08, - "planets": 3, - "relation": "Peace", - "votes": 0.93, - "extinct": false - }, - { - "name": "Acreators", - "drive": 9.5, - "weapons": 4.01, - "shields": 4.69, - "cargo": 1, - "population": 11773.07, - "industry": 9334.95, - "planets": 19, - "relation": "War", - "votes": 11.77, - "extinct": false - }, - { - "name": "Alike", - "drive": 4.57, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 3586.02, - "industry": 3354.56, - "planets": 5, - "relation": "War", - "votes": 3.59, - "extinct": false - }, - { - "name": "Argon", - "drive": 8.64, - "weapons": 3.01, - "shields": 3.22, - "cargo": 1, - "population": 5245.67, - "industry": 3835.95, - "planets": 14, - "relation": "War", - "votes": 5.25, - "extinct": false - }, - { - "name": "AT-2560TX", - "drive": 16.29, - "weapons": 9.49, - "shields": 9.54, - "cargo": 1, - "population": 12737.63, - "industry": 12730.07, - "planets": 19, - "relation": "War", - "votes": 12.74, - "extinct": false - }, - { - "name": "Barcarols", - "drive": 10.01, - "weapons": 4.78, - "shields": 5.05, - "cargo": 1, - "population": 16686.84, - "industry": 12423.19, - "planets": 24, - "relation": "War", - "votes": 16.69, - "extinct": false - }, - { - "name": "Basilius_I", - "drive": 5.85, - "weapons": 2.54, - "shields": 2.2, - "cargo": 1.3, - "population": 1698.34, - "industry": 1368.09, - "planets": 7, - "relation": "War", - "votes": 1.7, - "extinct": false - }, - { - "name": "BlackCrows", - "drive": 8.4, - "weapons": 3.65, - "shields": 3.46, - "cargo": 1, - "population": 8762.31, - "industry": 7369.94, - "planets": 13, - "relation": "War", - "votes": 8.76, - "extinct": false - }, - { - "name": "Bumbastik", - "drive": 5.16, - "weapons": 3.63, - "shields": 2.82, - "cargo": 1, - "population": 3798.95, - "industry": 1098.07, - "planets": 5, - "relation": "War", - "votes": 3.8, - "extinct": false - }, - { - "name": "Bupyc", - "drive": 4.98, - "weapons": 3.4, - "shields": 1.8, - "cargo": 1, - "population": 3154.58, - "industry": 2970.8, - "planets": 4, - "relation": "Peace", - "votes": 3.15, - "extinct": false - }, - { - "name": "Cidonia", - "drive": 5.22, - "weapons": 2.39, - "shields": 2.39, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": false - }, - { - "name": "Civilians", - "drive": 10.03, - "weapons": 5.91, - "shields": 5.91, - "cargo": 1, - "population": 18622.78, - "industry": 13339.6, - "planets": 33, - "relation": "War", - "votes": 18.62, - "extinct": false - }, - { - "name": "CosmicMonkeys", - "drive": 9.39, - "weapons": 1.92, - "shields": 1.89, - "cargo": 1, - "population": 13750.38, - "industry": 10475.77, - "planets": 22, - "relation": "War", - "votes": 13.75, - "extinct": false - }, - { - "name": "Enoxes", - "drive": 11.4, - "weapons": 6.69, - "shields": 5.64, - "cargo": 1, - "population": 10551.24, - "industry": 9949.2, - "planets": 15, - "relation": "War", - "votes": 10.55, - "extinct": false - }, - { - "name": "Flagist", - "drive": 8.49, - "weapons": 5.66, - "shields": 5.77, - "cargo": 1.2, - "population": 11606.08, - "industry": 7939.38, - "planets": 41, - "relation": "Peace", - "votes": 11.61, - "extinct": false - }, - { - "name": "Folland", - "drive": 6.32, - "weapons": 1.9, - "shields": 1.98, - "cargo": 1.12, - "population": 6886.06, - "industry": 5463.58, - "planets": 11, - "relation": "War", - "votes": 10.17, - "extinct": false - }, - { - "name": "Frightners", - "drive": 7.79, - "weapons": 4.81, - "shields": 5.15, - "cargo": 1, - "population": 10885.77, - "industry": 9356.2, - "planets": 18, - "relation": "War", - "votes": 10.89, - "extinct": false - }, - { - "name": "Glaurung", - "drive": 9.11, - "weapons": 4.77, - "shields": 4.25, - "cargo": 1, - "population": 11406.58, - "industry": 9622.37, - "planets": 16, - "relation": "War", - "votes": 11.41, - "extinct": false - }, - { - "name": "HAEMHuKu-2000", - "drive": 7.1, - "weapons": 5.61, - "shields": 5.08, - "cargo": 1, - "population": 13194.95, - "industry": 10534.65, - "planets": 17, - "relation": "Peace", - "votes": 13.19, - "extinct": false - }, - { - "name": "Kellerants", - "drive": 4.25, - "weapons": 2.52, - "shields": 2.16, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "Peace", - "votes": 0, - "extinct": false - }, - { - "name": "kenguri", - "drive": 5.77, - "weapons": 2.81, - "shields": 1.95, - "cargo": 1, - "population": 5525.68, - "industry": 4665.12, - "planets": 9, - "relation": "War", - "votes": 5.53, - "extinct": false - }, - { - "name": "KnightErrants", - "drive": 13.25, - "weapons": 6.11, - "shields": 7.09, - "cargo": 1, - "population": 16015.04, - "industry": 13668.76, - "planets": 22, - "relation": "-", - "votes": 16.02, - "extinct": false - }, - { - "name": "Koreans", - "drive": 9.87, - "weapons": 5.96, - "shields": 4.86, - "cargo": 1, - "population": 17219.68, - "industry": 10772.78, - "planets": 32, - "relation": "Peace", - "votes": 17.22, - "extinct": false - }, - { - "name": "Manya", - "drive": 10.74, - "weapons": 7.63, - "shields": 6.08, - "cargo": 1, - "population": 16636.2, - "industry": 11990.65, - "planets": 24, - "relation": "War", - "votes": 16.64, - "extinct": false - }, - { - "name": "Meeps", - "drive": 14.25, - "weapons": 6.5, - "shields": 6.5, - "cargo": 1, - "population": 17898.73, - "industry": 11277.72, - "planets": 40, - "relation": "War", - "votes": 17.9, - "extinct": false - }, - { - "name": "Minbari", - "drive": 6.18, - "weapons": 2.6, - "shields": 3, - "cargo": 1, - "population": 2503.59, - "industry": 1357.36, - "planets": 15, - "relation": "War", - "votes": 2.5, - "extinct": false - }, - { - "name": "Monstrai", - "drive": 5.46, - "weapons": 2, - "shields": 3.08, - "cargo": 1, - "population": 550.87, - "industry": 339.91, - "planets": 5, - "relation": "Peace", - "votes": 0.55, - "extinct": false - }, - { - "name": "Nails", - "drive": 4.98, - "weapons": 3.97, - "shields": 3.19, - "cargo": 1, - "population": 5621.86, - "industry": 1441.97, - "planets": 14, - "relation": "Peace", - "votes": 5.62, - "extinct": false - }, - { - "name": "Onix", - "drive": 8.32, - "weapons": 8.1, - "shields": 5.93, - "cargo": 1, - "population": 12714.51, - "industry": 12361.96, - "planets": 14, - "relation": "War", - "votes": 12.71, - "extinct": false - }, - { - "name": "Orla", - "drive": 8.13, - "weapons": 3.7, - "shields": 3.7, - "cargo": 2, - "population": 6577.64, - "industry": 6376.51, - "planets": 10, - "relation": "War", - "votes": 6.58, - "extinct": false - }, - { - "name": "Oselots", - "drive": 10, - "weapons": 5.46, - "shields": 5.2, - "cargo": 1, - "population": 14388.51, - "industry": 13910.51, - "planets": 23, - "relation": "War", - "votes": 14.39, - "extinct": false - }, - { - "name": "Ricksha", - "drive": 7.63, - "weapons": 3.36, - "shields": 3.95, - "cargo": 1, - "population": 9671.14, - "industry": 6485.63, - "planets": 23, - "relation": "War", - "votes": 9.67, - "extinct": false - }, - { - "name": "Shuriki", - "drive": 7.98, - "weapons": 3.39, - "shields": 3.41, - "cargo": 1.42, - "population": 4214.77, - "industry": 2993.78, - "planets": 13, - "relation": "War", - "votes": 4.21, - "extinct": false - }, - { - "name": "sidiki", - "drive": 8.5, - "weapons": 3.79, - "shields": 4.54, - "cargo": 1.1, - "population": 10172.24, - "industry": 7091.68, - "planets": 12, - "relation": "War", - "votes": 6.89, - "extinct": false - }, - { - "name": "Slimes", - "drive": 5.79, - "weapons": 4.05, - "shields": 3.01, - "cargo": 1.73, - "population": 8596.02, - "industry": 5372.62, - "planets": 13, - "relation": "Peace", - "votes": 8.6, - "extinct": false - }, - { - "name": "SSSan", - "drive": 14.1, - "weapons": 8.23, - "shields": 6.37, - "cargo": 1.1, - "population": 2033.87, - "industry": 1590.06, - "planets": 4, - "relation": "Peace", - "votes": 2.03, - "extinct": false - }, - { - "name": "TwelvePointedCross", - "drive": 8.75, - "weapons": 5.26, - "shields": 4.2, - "cargo": 1, - "population": 16050.81, - "industry": 12423.45, - "planets": 22, - "relation": "Peace", - "votes": 16.05, - "extinct": false - }, - { - "name": "Umbra", - "drive": 11.37, - "weapons": 3.94, - "shields": 2.58, - "cargo": 1, - "population": 7272.35, - "industry": 6974.03, - "planets": 10, - "relation": "War", - "votes": 7.27, - "extinct": false - }, - { - "name": "Zerg", - "drive": 5.22, - "weapons": 3.77, - "shields": 1.91, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": false - }, - { - "name": "Zodiac", - "drive": 10.14, - "weapons": 4.74, - "shields": 4.61, - "cargo": 1, - "population": 15097.89, - "industry": 9607.73, - "planets": 25, - "relation": "Peace", - "votes": 15.1, - "extinct": false - }, - { - "name": "argo", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Arkoid", - "drive": 4.02, - "weapons": 1.12, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Atoms", - "drive": 3.2, - "weapons": 3.67, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Baravykai", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Baton", - "drive": 6.8, - "weapons": 3.31, - "shields": 1.91, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Believes", - "drive": 3.9, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Boroda", - "drive": 5.6, - "weapons": 1.2, - "shields": 1.2, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "BrainLess", - "drive": 6.29, - "weapons": 4.13, - "shields": 1.45, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "Peace", - "votes": 0, - "extinct": true - }, - { - "name": "Cezar", - "drive": 3.2, - "weapons": 2.68, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "DevilMasters", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "diminoid", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Fanatics", - "drive": 3.19, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "FIREBART", - "drive": 3.9, - "weapons": 1.3, - "shields": 1.2, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Fomi4", - "drive": 4.84, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "FOX", - "drive": 3.92, - "weapons": 3.17, - "shields": 2.87, - "cargo": 3.37, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Fredoids", - "drive": 2, - "weapons": 1, - "shields": 1.57, - "cargo": 1.4, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "garbage", - "drive": 1.4, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Ghost", - "drive": 3.8, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "goodee", - "drive": 4.99, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Greedy", - "drive": 6.4, - "weapons": 2.45, - "shields": 3.05, - "cargo": 1.1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Guardhogs", - "drive": 7.79, - "weapons": 1.3, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Half-griffons", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Jedi", - "drive": 4.34, - "weapons": 1.52, - "shields": 1.6, - "cargo": 1.1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "killer", - "drive": 6.55, - "weapons": 3.65, - "shields": 1.35, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "KOBA", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "KOPEW", - "drive": 4.2, - "weapons": 1.8, - "shields": 1.93, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "KRUTIE", - "drive": 2.9, - "weapons": 2.43, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Lawyers", - "drive": 4.2, - "weapons": 1, - "shields": 7, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Lox", - "drive": 5.6, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "MiniDisc", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Morpheus", - "drive": 4.08, - "weapons": 1, - "shields": 1.68, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "Peace", - "votes": 0, - "extinct": true - }, - { - "name": "Nova", - "drive": 6.22, - "weapons": 3.82, - "shields": 3.82, - "cargo": 1.03, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "OldRelikt", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Orda", - "drive": 6.62, - "weapons": 2.4, - "shields": 1.56, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Paradox", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "People", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Piligrims", - "drive": 7.1, - "weapons": 1, - "shields": 2.3, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Protoss", - "drive": 3.3, - "weapons": 2.48, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Relikt", - "drive": 4.99, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "S-Lord", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Ser_Arthur_Empire", - "drive": 1.6, - "weapons": 1.01, - "shields": 1.61, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "ShivanDragon", - "drive": 7.01, - "weapons": 1.4, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Smile", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Spag", - "drive": 4.6, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "SystemError", - "drive": 5.6, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "UkrFerry", - "drive": 4.46, - "weapons": 1.44, - "shields": 1.44, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "Untochebal", - "drive": 4.88, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "VlaSvr", - "drive": 1.6, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - }, - { - "name": "WinDemons", - "drive": 5, - "weapons": 1, - "shields": 1, - "cargo": 1, - "population": 0, - "industry": 0, - "planets": 0, - "relation": "War", - "votes": 0, - "extinct": true - } - ], - "localShipClass": [ - { - "name": "Frontier", - "drive": 11.37, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 1, - "mass": 12.37 - }, - { - "name": "Furgon5", - "drive": 8.22, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 4.15, - "mass": 12.37 - }, - { - "name": "Furgon10", - "drive": 17.14, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 7.61, - "mass": 24.75 - }, - { - "name": "Nonstop", - "drive": 0, - "armament": 1, - "weapons": 1, - "shields": 0, - "cargo": 0, - "mass": 1 - }, - { - "name": "Drone", - "drive": 2.5, - "armament": 1, - "weapons": 2.08, - "shields": 2.49, - "cargo": 0, - "mass": 7.07 - }, - { - "name": "PeaceShip", - "drive": 1, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 0, - "mass": 1 - }, - { - "name": "Bow105", - "drive": 74.77, - "armament": 105, - "weapons": 1, - "shields": 19.72, - "cargo": 1, - "mass": 148.49 - }, - { - "name": "CrossBow52x2", - "drive": 74.77, - "armament": 52, - "weapons": 2, - "shields": 19.72, - "cargo": 1, - "mass": 148.49 - }, - { - "name": "Catapult5x25", - "drive": 99.53, - "armament": 5, - "weapons": 25.3, - "shields": 21.57, - "cargo": 1, - "mass": 198 - }, - { - "name": "Tormoz49", - "drive": 26.63, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 22.87, - "mass": 49.5 - }, - { - "name": "Catapult8x7", - "drive": 49.5, - "armament": 8, - "weapons": 7, - "shields": 18, - "cargo": 0, - "mass": 99 - }, - { - "name": "Invalid", - "drive": 25, - "armament": 1, - "weapons": 17, - "shields": 7.99, - "cargo": 0, - "mass": 49.99 - }, - { - "name": "Furgon10b", - "drive": 17.42, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 7.33, - "mass": 24.75 - }, - { - "name": "Stop", - "drive": 0, - "armament": 1, - "weapons": 1, - "shields": 1.26, - "cargo": 0, - "mass": 2.26 - }, - { - "name": "Buckler100", - "drive": 1, - "armament": 0, - "weapons": 0, - "shields": 1, - "cargo": 0, - "mass": 2 - }, - { - "name": "Furgon20", - "drive": 35.94, - "armament": 1, - "weapons": 1, - "shields": 0, - "cargo": 12.36, - "mass": 49.3 - }, - { - "name": "Furgon100", - "drive": 63, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 35.83, - "mass": 98.83 - }, - { - "name": "Bow55", - "drive": 49.17, - "armament": 55, - "weapons": 1, - "shields": 20.17, - "cargo": 1, - "mass": 98.34 - }, - { - "name": "Sword1x24", - "drive": 45.16, - "armament": 1, - "weapons": 24.67, - "shields": 19.47, - "cargo": 1, - "mass": 90.3 - }, - { - "name": "Catapult17x2.5", - "drive": 42.9, - "armament": 17, - "weapons": 2.53, - "shields": 19.13, - "cargo": 1, - "mass": 85.8 - }, - { - "name": "Bow49", - "drive": 45.51, - "armament": 49, - "weapons": 1, - "shields": 19.49, - "cargo": 1, - "mass": 91 - }, - { - "name": "SpetsNaz", - "drive": 3.3, - "armament": 1, - "weapons": 1, - "shields": 1.8, - "cargo": 1, - "mass": 7.1 - }, - { - "name": "Col12", - "drive": 16.28, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 8.44, - "mass": 24.72 - }, - { - "name": "Col10", - "drive": 9.18, - "armament": 0, - "weapons": 0, - "shields": 0, - "cargo": 7.32, - "mass": 16.5 - } - ], - "localPlanet": [ - { - "x": 171.05, - "y": 700.24, - "number": 17, - "size": 1000, - "name": "Castle", - "resources": 10, - "capital": 0, - "material": 0.68, - "industry": 1000, - "population": 1000, - "colonists": 88.78, - "production": "Drive_Research", - "freeIndustry": 1000 - }, - { - "x": 169.59, - "y": 694.49, - "number": 87, - "size": 500, - "name": "NorthFortress", - "resources": 10, - "capital": 0, - "material": 0.52, - "industry": 500, - "population": 500, - "colonists": 35.76, - "production": "Drive_Research", - "freeIndustry": 500 - }, - { - "x": 163.99, - "y": 703.07, - "number": 338, - "size": 500, - "name": "WestFortress", - "resources": 10, - "capital": 15.8, - "material": 0.51, - "industry": 500, - "population": 500, - "colonists": 68.97, - "production": "Drive_Research", - "freeIndustry": 500 - }, - { - "x": 161.5, - "y": 698.7, - "number": 282, - "size": 977.87, - "name": "DayBreak", - "resources": 6.62, - "capital": 0, - "material": 0.68, - "industry": 933.28, - "population": 977.87, - "colonists": 67.63, - "production": "Drive_Research", - "freeIndustry": 944.43 - }, - { - "x": 163.56, - "y": 705.31, - "number": 38, - "size": 956.94, - "name": "Afterglow", - "resources": 1.18, - "capital": 0, - "material": 0.58, - "industry": 930.56, - "population": 956.94, - "colonists": 102.34, - "production": "Drive_Research", - "freeIndustry": 937.15 - }, - { - "x": 179.07, - "y": 704, - "number": 296, - "size": 928.74, - "name": "PochtiHom", - "resources": 4.78, - "capital": 18.78, - "material": 0.69, - "industry": 928.74, - "population": 928.74, - "colonists": 65.8, - "production": "Drive_Research", - "freeIndustry": 928.74 - }, - { - "x": 188.8, - "y": 716.7, - "number": 114, - "size": 1879.68, - "name": "HighWay", - "resources": 0.53, - "capital": 0, - "material": 2.05, - "industry": 1856.44, - "population": 1879.68, - "colonists": 56.62, - "production": "Drive_Research", - "freeIndustry": 1862.25 - }, - { - "x": 129.66, - "y": 702.65, - "number": 223, - "size": 9.76, - "name": "SuperGig", - "resources": 0.18, - "capital": 0, - "material": 0, - "industry": 0, - "population": 9.46, - "colonists": 0, - "production": "PeaceShip", - "freeIndustry": 2.37 - }, - { - "x": 127.81, - "y": 705.42, - "number": 495, - "size": 1405.32, - "name": "Asteroid", - "resources": 1.09, - "capital": 0, - "material": 0, - "industry": 1368.3, - "population": 1405.32, - "colonists": 144.43, - "production": "Drive_Research", - "freeIndustry": 1377.56 - }, - { - "x": 114.94, - "y": 694.43, - "number": 447, - "size": 7.9, - "name": "DbIPKA_OT_6Y6JIUKA", - "resources": 0.14, - "capital": 0, - "material": 0, - "industry": 0, - "population": 7.9, - "colonists": 2.46, - "production": "PeaceShip", - "freeIndustry": 1.98 - }, - { - "x": 152.03, - "y": 693.16, - "number": 176, - "size": 6.95, - "name": "Monstr", - "resources": 0.42, - "capital": 0, - "material": 0, - "industry": 0, - "population": 5.48, - "colonists": 0, - "production": "PeaceShip", - "freeIndustry": 1.37 - }, - { - "x": 177.32, - "y": 731.91, - "number": 679, - "size": 1668.72, - "name": "SteelPower", - "resources": 7.79, - "capital": 0, - "material": 0, - "industry": 1668.67, - "population": 1668.72, - "colonists": 149.11, - "production": "Drive_Research", - "freeIndustry": 1668.69 - }, - { - "x": 189.12, - "y": 654.88, - "number": 523, - "size": 500, - "name": "NorthAlpha", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 500, - "population": 500, - "colonists": 15.59, - "production": "SpetsNaz", - "freeIndustry": 500 - }, - { - "x": 197.71, - "y": 655, - "number": 572, - "size": 1000, - "name": "NorthPrime", - "resources": 10, - "capital": 0, - "material": 56.98, - "industry": 1000, - "population": 1000, - "colonists": 10, - "production": "Drive_Research", - "freeIndustry": 1000 - }, - { - "x": 195.98, - "y": 651.58, - "number": 177, - "size": 500, - "name": "NorthBeta", - "resources": 10, - "capital": 76.85, - "material": 393.12, - "industry": 144.43, - "population": 144.43, - "colonists": 0, - "production": "Capital", - "freeIndustry": 144.43 - }, - { - "x": 192.54, - "y": 656.4, - "number": 622, - "size": 764.66, - "name": "NorthS", - "resources": 1.59, - "capital": 0, - "material": 0, - "industry": 664, - "population": 764.66, - "colonists": 25.37, - "production": "Capital", - "freeIndustry": 689.16 - }, - { - "x": 204.46, - "y": 655.59, - "number": 558, - "size": 998.5, - "name": "NorthE", - "resources": 9.19, - "capital": 0, - "material": 0, - "industry": 455.79, - "population": 998.5, - "colonists": 14.17, - "production": "Capital", - "freeIndustry": 591.46 - }, - { - "x": 198.71, - "y": 648.74, - "number": 458, - "size": 935.27, - "name": "NorthN", - "resources": 3.87, - "capital": 0, - "material": 58.52, - "industry": 159.18, - "population": 915.73, - "colonists": 0, - "production": "Capital", - "freeIndustry": 348.31 - }, - { - "x": 149.59, - "y": 659.18, - "number": 461, - "size": 1023.35, - "name": "AGdeDW?", - "resources": 8.46, - "capital": 0, - "material": 0, - "industry": 859.01, - "population": 1023.35, - "colonists": 30.2, - "production": "Capital", - "freeIndustry": 900.1 - }, - { - "x": 273.89, - "y": 582.17, - "number": 685, - "size": 1980.42, - "name": "Trofei", - "resources": 2.98, - "capital": 37.4, - "material": 61.51, - "industry": 88.59, - "population": 88.59, - "colonists": 0, - "production": "PeaceShip", - "freeIndustry": 88.59 - }, - { - "x": 267.37, - "y": 597.19, - "number": 79, - "size": 1899.01, - "name": "PriceOfVictory", - "resources": 2.19, - "capital": 0, - "material": 285.79, - "industry": 111.76, - "population": 722.04, - "colonists": 0, - "production": "Capital", - "freeIndustry": 264.33 - }, - { - "x": 307.83, - "y": 564.19, - "number": 636, - "size": 950.07, - "name": "Vedma", - "resources": 5.69, - "capital": 0, - "material": 183.1, - "industry": 0, - "population": 17.63, - "colonists": 0, - "production": "PeaceShip", - "freeIndustry": 4.41 - } - ], - "otherPlanet": [ - { - "owner": "Monstrai", - "x": 303.84, - "y": 579.23, - "number": 12, - "size": 618.95, - "name": "Normal-4826-0012", - "resources": 1.56, - "capital": 0.16, - "material": 53.28, - "industry": 24.67, - "population": 24.67, - "colonists": 0, - "production": "Capital", - "freeIndustry": 24.67 - }, - { - "owner": "Monstrai", - "x": 262.49, - "y": 508.26, - "number": 25, - "size": 1.06, - "name": "Rycar", - "resources": 0.82, - "capital": 0.2, - "material": 0, - "industry": 1.06, - "population": 1.06, - "colonists": 0.34, - "production": "Drive_Research", - "freeIndustry": 1.06 - }, - { - "owner": "Monstrai", - "x": 304.44, - "y": 574.57, - "number": 130, - "size": 500, - "name": "Skarabei", - "resources": 10, - "capital": 0, - "material": 70.99, - "industry": 289.04, - "population": 500, - "colonists": 20.03, - "production": "Capital", - "freeIndustry": 341.78 - }, - { - "owner": "Monstrai", - "x": 312.91, - "y": 565.56, - "number": 253, - "size": 819.93, - "name": "Hiena", - "resources": 0.17, - "capital": 0.74, - "material": 35.29, - "industry": 6.34, - "population": 6.34, - "colonists": 0, - "production": "Capital", - "freeIndustry": 6.34 - }, - { - "owner": "Monstrai", - "x": 310.41, - "y": 577.18, - "number": 366, - "size": 500, - "name": "DW-5754-0366", - "resources": 10, - "capital": 107.03, - "material": 472.35, - "industry": 18.8, - "population": 18.8, - "colonists": 0, - "production": "Capital", - "freeIndustry": 18.8 - }, - { - "owner": "TwelvePointedCross", - "x": 417.24, - "y": 582.13, - "number": 56, - "size": 930.77, - "name": "Medio-56", - "resources": 9.58, - "capital": 0, - "material": 904.15, - "industry": 161, - "population": 579.22, - "colonists": 0, - "production": "Capital", - "freeIndustry": 265.56 - }, - { - "owner": "TwelvePointedCross", - "x": 434.36, - "y": 592.79, - "number": 85, - "size": 865.81, - "name": "Source-85", - "resources": 5.15, - "capital": 193.28, - "material": 0, - "industry": 865.81, - "population": 865.81, - "colonists": 26.37, - "production": "Capital", - "freeIndustry": 865.81 - }, - { - "owner": "TwelvePointedCross", - "x": 416.19, - "y": 576.64, - "number": 196, - "size": 686.91, - "name": "Terminal-196", - "resources": 5.26, - "capital": 103.5, - "material": 386.38, - "industry": 686.91, - "population": 686.91, - "colonists": 29.53, - "production": "Shields_Research", - "freeIndustry": 686.91 - }, - { - "owner": "TwelvePointedCross", - "x": 411, - "y": 582.44, - "number": 207, - "size": 1000, - "name": "Herward-207", - "resources": 10, - "capital": 0, - "material": 880.43, - "industry": 128.07, - "population": 945.14, - "colonists": 0, - "production": "Capital", - "freeIndustry": 332.34 - }, - { - "owner": "TwelvePointedCross", - "x": 414.38, - "y": 580.92, - "number": 314, - "size": 500, - "name": "Greedy-314", - "resources": 10, - "capital": 0, - "material": 486.74, - "industry": 13.26, - "population": 18.65, - "colonists": 0, - "production": "Capital", - "freeIndustry": 14.61 - }, - { - "owner": "TwelvePointedCross", - "x": 415.39, - "y": 577.82, - "number": 459, - "size": 946.09, - "name": "Normal-8330-0459", - "resources": 3.38, - "capital": 14.48, - "material": 888.46, - "industry": 30.22, - "population": 30.22, - "colonists": 0, - "production": "Capital", - "freeIndustry": 30.22 - }, - { - "owner": "TwelvePointedCross", - "x": 436.61, - "y": 589.01, - "number": 663, - "size": 1938.58, - "name": "PowerCube-663", - "resources": 0.52, - "capital": 0, - "material": 0, - "industry": 905.53, - "population": 1877.23, - "colonists": 0, - "production": "Capital", - "freeIndustry": 1148.46 - }, - { - "owner": "TwelvePointedCross", - "x": 418.42, - "y": 585.36, - "number": 690, - "size": 500, - "name": "Resist-690", - "resources": 10, - "capital": 0, - "material": 464.5, - "industry": 36, - "population": 322.34, - "colonists": 0, - "production": "Capital", - "freeIndustry": 107.59 - }, - { - "owner": "Orla", - "x": 293.03, - "y": 47.27, - "number": 95, - "size": 939.5, - "name": "Orl1", - "resources": 2.91, - "capital": 0, - "material": 0, - "industry": 939.5, - "population": 939.5, - "colonists": 150.32, - "production": "Orlperf_sh", - "freeIndustry": 939.5 - }, - { - "owner": "Bumbastik", - "x": 299.03, - "y": 700.92, - "number": 24, - "size": 2278.86, - "name": "B-024", - "resources": 0.58, - "capital": 0, - "material": 94.44, - "industry": 38, - "population": 1116.83, - "colonists": 0, - "production": "BAX", - "freeIndustry": 307.71 - }, - { - "owner": "Bumbastik", - "x": 323.84, - "y": 699.66, - "number": 479, - "size": 1000, - "name": "AQUARIUS", - "resources": 10, - "capital": 0, - "material": 927, - "industry": 0, - "population": 0.43, - "colonists": 0, - "production": "Gun", - "freeIndustry": 0.11 - }, - { - "owner": "Bumbastik", - "x": 301.16, - "y": 721.65, - "number": 587, - "size": 1051.7, - "name": "B-587", - "resources": 1.04, - "capital": 0, - "material": 116.91, - "industry": 0, - "population": 395.15, - "colonists": 0, - "production": "K-2", - "freeIndustry": 98.79 - }, - { - "owner": "Zodiac", - "x": 337.19, - "y": 543.38, - "number": 108, - "size": 2340.94, - "name": "FatBoy", - "resources": 0.39, - "capital": 172.55, - "material": 317.56, - "industry": 2340.94, - "population": 2340.94, - "colonists": 23.41, - "production": "WS_45x55_Research", - "freeIndustry": 2340.94 - }, - { - "owner": "Zodiac", - "x": 305.62, - "y": 538.86, - "number": 116, - "size": 1966.14, - "name": "Armagedon", - "resources": 1.51, - "capital": 0, - "material": 1686.83, - "industry": 0.03, - "population": 0.59, - "colonists": 0, - "production": "Capital", - "freeIndustry": 0.17 - }, - { - "owner": "Zodiac", - "x": 305.33, - "y": 570.48, - "number": 119, - "size": 1000, - "name": "Sirena", - "resources": 10, - "capital": 0, - "material": 900.43, - "industry": 0, - "population": 0.47, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.12 - }, - { - "owner": "Zodiac", - "x": 327.52, - "y": 554.61, - "number": 647, - "size": 1801.57, - "name": "Dracula", - "resources": 4.76, - "capital": 0, - "material": 53.77, - "industry": 82.44, - "population": 1728.47, - "colonists": 0, - "production": "Capital", - "freeIndustry": 493.94 - }, - { - "owner": "Flagist", - "x": 191.63, - "y": 535.12, - "number": 15, - "size": 243.6, - "name": "Rich-5201-0015", - "resources": 16.61, - "capital": 0, - "material": 0, - "industry": 0, - "population": 2.43, - "colonists": 0, - "production": "Hi", - "freeIndustry": 0.61 - }, - { - "owner": "Flagist", - "x": 189.39, - "y": 533.79, - "number": 72, - "size": 318.9, - "name": "Hlam", - "resources": 23.46, - "capital": 0, - "material": 0, - "industry": 0, - "population": 2.43, - "colonists": 0, - "production": "Hi", - "freeIndustry": 0.61 - }, - { - "owner": "Flagist", - "x": 242.15, - "y": 558.1, - "number": 222, - "size": 1638.46, - "name": "Goovin", - "resources": 1.09, - "capital": 0, - "material": 1639.3, - "industry": 0, - "population": 2.29, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.57 - }, - { - "owner": "Flagist", - "x": 189.7, - "y": 534.95, - "number": 251, - "size": 500, - "name": "Stun", - "resources": 10, - "capital": 0, - "material": 0.25, - "industry": 0, - "population": 2.43, - "colonists": 0, - "production": "Hi", - "freeIndustry": 0.61 - }, - { - "owner": "Flagist", - "x": 245.2, - "y": 535, - "number": 305, - "size": 1000, - "name": "Mikolin", - "resources": 10, - "capital": 0, - "material": 999.79, - "industry": 0, - "population": 2.35, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.59 - }, - { - "owner": "Flagist", - "x": 241.93, - "y": 538.14, - "number": 340, - "size": 500, - "name": "Heauru", - "resources": 10, - "capital": 93.6, - "material": 499.03, - "industry": 2.47, - "population": 2.47, - "colonists": 0, - "production": "Drone", - "freeIndustry": 2.47 - }, - { - "owner": "Flagist", - "x": 144.38, - "y": 571.64, - "number": 385, - "size": 19.53, - "name": "Kroshka", - "resources": 16.91, - "capital": 8.44, - "material": 19.45, - "industry": 0.86, - "population": 0.86, - "colonists": 0, - "production": "Hi", - "freeIndustry": 0.86 - }, - { - "owner": "Flagist", - "x": 237.52, - "y": 528.94, - "number": 409, - "size": 741.42, - "name": "Altinopi", - "resources": 2.45, - "capital": 0, - "material": 743.81, - "industry": 0.3, - "population": 0.54, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.36 - }, - { - "owner": "Flagist", - "x": 244.54, - "y": 540.74, - "number": 434, - "size": 980.94, - "name": "Vennio", - "resources": 9.54, - "capital": 4.4, - "material": 981.97, - "industry": 0.54, - "population": 0.54, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.54 - }, - { - "owner": "Flagist", - "x": 257.82, - "y": 504.58, - "number": 436, - "size": 1227.52, - "name": "Koscei", - "resources": 6.42, - "capital": 0, - "material": 890.84, - "industry": 234.83, - "population": 1227.52, - "colonists": 31.34, - "production": "Weapons_Research", - "freeIndustry": 483 - }, - { - "owner": "Flagist", - "x": 278.57, - "y": 522.31, - "number": 438, - "size": 1000, - "name": "Apokalipse", - "resources": 10, - "capital": 0, - "material": 862.4, - "industry": 73.61, - "population": 770.05, - "colonists": 0, - "production": "Capital", - "freeIndustry": 247.72 - }, - { - "owner": "Flagist", - "x": 271.31, - "y": 525.7, - "number": 569, - "size": 984.48, - "name": "Furija", - "resources": 3.85, - "capital": 42.99, - "material": 983, - "industry": 2.62, - "population": 2.62, - "colonists": 0, - "production": "Drone", - "freeIndustry": 2.62 - }, - { - "owner": "Flagist", - "x": 250.68, - "y": 533.74, - "number": 624, - "size": 500, - "name": "Arafiel", - "resources": 10, - "capital": 0, - "material": 499.77, - "industry": 0, - "population": 2.47, - "colonists": 0, - "production": "Drone", - "freeIndustry": 0.62 - }, - { - "owner": "Bupyc", - "x": 136.57, - "y": 49.85, - "number": 2, - "size": 601.86, - "name": "B2", - "resources": 8.66, - "capital": 0, - "material": 459.88, - "industry": 6, - "population": 176.32, - "colonists": 0, - "production": "drone", - "freeIndustry": 48.58 - }, - { - "owner": "Koreans", - "x": 25.41, - "y": 768, - "number": 28, - "size": 500, - "name": "DW-7156-0028", - "resources": 10, - "capital": 0, - "material": 233.4, - "industry": 0.02, - "population": 0.43, - "colonists": 0, - "production": "Capital", - "freeIndustry": 0.12 - }, - { - "owner": "Koreans", - "x": 30.05, - "y": 775.46, - "number": 45, - "size": 500, - "name": "DW-0690-0045", - "resources": 10, - "capital": 0, - "material": 240.84, - "industry": 0, - "population": 0.47, - "colonists": 0, - "production": "!", - "freeIndustry": 0.12 - }, - { - "owner": "Koreans", - "x": 145.88, - "y": 762.6, - "number": 49, - "size": 739.42, - "name": "Nnew49", - "resources": 2.16, - "capital": 0, - "material": 699.74, - "industry": 0, - "population": 0.86, - "colonists": 0, - "production": "!", - "freeIndustry": 0.22 - }, - { - "owner": "Koreans", - "x": 66.81, - "y": 733.6, - "number": 111, - "size": 973.04, - "name": "Norma", - "resources": 3.22, - "capital": 0, - "material": 1067.38, - "industry": 0.27, - "population": 0.43, - "colonists": 0, - "production": "!", - "freeIndustry": 0.31 - }, - { - "owner": "Koreans", - "x": 73.51, - "y": 729.44, - "number": 183, - "size": 1000, - "name": "HATUHA", - "resources": 10, - "capital": 34.68, - "material": 1098.97, - "industry": 0.43, - "population": 0.43, - "colonists": 0, - "production": "!", - "freeIndustry": 0.43 - }, - { - "owner": "Koreans", - "x": 70, - "y": 727.21, - "number": 190, - "size": 418.97, - "name": "MAL", - "resources": 23.21, - "capital": 0, - "material": 419.08, - "industry": 0, - "population": 0.43, - "colonists": 0, - "production": "!", - "freeIndustry": 0.11 - }, - { - "owner": "Koreans", - "x": 60.87, - "y": 774.17, - "number": 191, - "size": 2057.88, - "name": "S3", - "resources": 2.98, - "capital": 0, - "material": 0, - "industry": 347.89, - "population": 2057.88, - "colonists": 85.03, - "production": "d", - "freeIndustry": 775.39 - }, - { - "owner": "Koreans", - "x": 76.18, - "y": 738.51, - "number": 206, - "size": 680.27, - "name": "USPEL", - "resources": 1.74, - "capital": 0, - "material": 744.59, - "industry": 0.09, - "population": 0.43, - "colonists": 0, - "production": "!", - "freeIndustry": 0.17 - }, - { - "owner": "Koreans", - "x": 22.05, - "y": 797.27, - "number": 370, - "size": 2422.64, - "name": "S1", - "resources": 1.1, - "capital": 0, - "material": 677.96, - "industry": 1683.78, - "population": 1713.02, - "colonists": 0, - "production": "PolyCruiser:24x7.2", - "freeIndustry": 1691.09 - }, - { - "owner": "Koreans", - "x": 11.55, - "y": 12.44, - "number": 421, - "size": 724.52, - "name": "A6", - "resources": 4.32, - "capital": 3.45, - "material": 0, - "industry": 724.52, - "population": 724.52, - "colonists": 7.25, - "production": "d", - "freeIndustry": 724.52 - }, - { - "owner": "Koreans", - "x": 73.33, - "y": 726.1, - "number": 474, - "size": 500, - "name": "VotEtoNychka", - "resources": 10, - "capital": 0, - "material": 443.43, - "industry": 0, - "population": 0.43, - "colonists": 0, - "production": "!", - "freeIndustry": 0.11 - }, - { - "owner": "Koreans", - "x": 47.17, - "y": 772.75, - "number": 504, - "size": 1630.54, - "name": "Big1", - "resources": 9.97, - "capital": 0, - "material": 1679.91, - "industry": 0.39, - "population": 8.64, - "colonists": 0, - "production": "Capital", - "freeIndustry": 2.45 - }, - { - "owner": "Koreans", - "x": 115.36, - "y": 2.73, - "number": 519, - "size": 1000, - "name": "HomeWorld", - "resources": 10, - "capital": 0, - "material": 1000.06, - "industry": 0, - "population": 0.47, - "colonists": 0, - "production": "!", - "freeIndustry": 0.12 - }, - { - "owner": "Koreans", - "x": 58.5, - "y": 779.42, - "number": 549, - "size": 696.28, - "name": "B3", - "resources": 4.09, - "capital": 0, - "material": 0, - "industry": 43.12, - "population": 462.12, - "colonists": 0, - "production": "Capital", - "freeIndustry": 147.87 - }, - { - "owner": "Koreans", - "x": 54.74, - "y": 1.37, - "number": 552, - "size": 643.35, - "name": "Normal-2036-0552", - "resources": 0.71, - "capital": 0, - "material": 0, - "industry": 209.51, - "population": 643.35, - "colonists": 27.26, - "production": "Capital", - "freeIndustry": 317.97 - }, - { - "owner": "Koreans", - "x": 74.01, - "y": 721.87, - "number": 559, - "size": 500, - "name": "POLHATI", - "resources": 10, - "capital": 0.08, - "material": 501.42, - "industry": 0.86, - "population": 0.86, - "colonists": 0, - "production": "!", - "freeIndustry": 0.86 - }, - { - "owner": "Koreans", - "x": 56.98, - "y": 796.85, - "number": 602, - "size": 1000, - "name": "Hw2-602", - "resources": 10, - "capital": 0, - "material": 432.59, - "industry": 35.55, - "population": 371.59, - "colonists": 0, - "production": "Capital", - "freeIndustry": 119.56 - }, - { - "owner": "Koreans", - "x": 29.29, - "y": 774.48, - "number": 612, - "size": 854.88, - "name": "Normal-5496-0612", - "resources": 2.95, - "capital": 0, - "material": 0, - "industry": 264.6, - "population": 854.88, - "colonists": 46.17, - "production": "Capital", - "freeIndustry": 412.17 - }, - { - "owner": "Koreans", - "x": 61.35, - "y": 795.46, - "number": 697, - "size": 500, - "name": "DW-4659-0697", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 54.06, - "population": 500, - "colonists": 20, - "production": "Capital", - "freeIndustry": 165.55 - }, - { - "owner": "SSSan", - "x": 46.14, - "y": 693.57, - "number": 292, - "size": 775.46, - "name": "SmalGood", - "resources": 3.7, - "capital": 0, - "material": 342.55, - "industry": 393.56, - "population": 425.04, - "colonists": 0, - "production": "SD", - "freeIndustry": 401.43 - }, - { - "owner": "SSSan", - "x": 38.53, - "y": 691.01, - "number": 394, - "size": 500, - "name": "D1", - "resources": 10, - "capital": 0, - "material": 77.08, - "industry": 384.47, - "population": 415.23, - "colonists": 0, - "production": "PE", - "freeIndustry": 392.16 - }, - { - "owner": "Nails", - "x": 327.08, - "y": 702.71, - "number": 14, - "size": 500, - "name": "ARIES", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 500, - "population": 500, - "colonists": 23.42, - "production": "59_1", - "freeIndustry": 500 - }, - { - "owner": "Nails", - "x": 345.25, - "y": 644.4, - "number": 48, - "size": 1000, - "name": "CANCER", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 0, - "population": 1000, - "colonists": 61.4, - "production": "pup", - "freeIndustry": 250 - }, - { - "owner": "Nails", - "x": 347.82, - "y": 651.21, - "number": 203, - "size": 83.47, - "name": "PISCES", - "resources": 15.25, - "capital": 0, - "material": 0, - "industry": 15.5, - "population": 83.47, - "colonists": 4.17, - "production": "pup", - "freeIndustry": 32.49 - }, - { - "owner": "Nails", - "x": 331.53, - "y": 699.98, - "number": 396, - "size": 500, - "name": "SCORPIO", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 494.97, - "population": 500, - "colonists": 28.27, - "production": "_pup_", - "freeIndustry": 496.23 - }, - { - "owner": "Nails", - "x": 321.8, - "y": 691.93, - "number": 425, - "size": 920.76, - "name": "SAGITTARIUS", - "resources": 5.57, - "capital": 0, - "material": 509.52, - "industry": 260.11, - "population": 920.76, - "colonists": 78.7, - "production": "pup", - "freeIndustry": 425.27 - }, - { - "owner": "Nails", - "x": 291.75, - "y": 698.54, - "number": 521, - "size": 4.75, - "name": "B-521", - "resources": 0.24, - "capital": 0, - "material": 0.03, - "industry": 0.24, - "population": 4.75, - "colonists": 0.05, - "production": "Capital", - "freeIndustry": 1.37 - }, - { - "owner": "Nails", - "x": 342.41, - "y": 643.3, - "number": 530, - "size": 500, - "name": "CAPRICORN", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 16.4, - "population": 500, - "colonists": 43.46, - "production": "pup", - "freeIndustry": 137.3 - }, - { - "owner": "Nails", - "x": 274.28, - "y": 701.54, - "number": 662, - "size": 1000, - "name": "B-662", - "resources": 10, - "capital": 0, - "material": 998.44, - "industry": 1.57, - "population": 10.58, - "colonists": 0, - "production": "Capital", - "freeIndustry": 3.82 - }, - { - "owner": "Nails", - "x": 345.92, - "y": 651.52, - "number": 673, - "size": 872.46, - "name": "GEMINI", - "resources": 5.51, - "capital": 0, - "material": 0, - "industry": 57.69, - "population": 872.46, - "colonists": 83.42, - "production": "pup", - "freeIndustry": 261.39 - }, - { - "owner": "Nails", - "x": 322.35, - "y": 703.51, - "number": 691, - "size": 8.24, - "name": "LIBRA", - "resources": 0.17, - "capital": 0.1, - "material": 0, - "industry": 8.24, - "population": 8.24, - "colonists": 30, - "production": "Drive_Research", - "freeIndustry": 8.24 - }, - { - "owner": "AbubaGerbographerPot", - "x": 118.17, - "y": 0.08, - "number": 268, - "size": 43.5, - "name": "R248", - "resources": 21.41, - "capital": 0.92, - "material": 0, - "industry": 43.5, - "population": 43.5, - "colonists": 6.8, - "production": "Drone", - "freeIndustry": 43.5 - }, - { - "owner": "AbubaGerbographerPot", - "x": 117.47, - "y": 0.33, - "number": 513, - "size": 500, - "name": "Dw1", - "resources": 10, - "capital": 0, - "material": 178.89, - "industry": 261.32, - "population": 310.74, - "colonists": 0, - "production": "Drone_2", - "freeIndustry": 273.68 - }, - { - "owner": "AbubaGerbographerPot", - "x": 112.74, - "y": 797.74, - "number": 596, - "size": 754.1, - "name": "N596", - "resources": 6.58, - "capital": 0, - "material": 167.78, - "industry": 537.25, - "population": 575.66, - "colonists": 0, - "production": "Drone_2", - "freeIndustry": 546.85 - }, - { - "owner": "Ricksha", - "x": 86.45, - "y": 513.1, - "number": 55, - "size": 816.39, - "name": "Antenna", - "resources": 2.68, - "capital": 0, - "material": 0, - "industry": 816.39, - "population": 816.39, - "colonists": 102.94, - "production": "Dron", - "freeIndustry": 816.39 - }, - { - "owner": "Ricksha", - "x": 151.65, - "y": 581.9, - "number": 139, - "size": 500, - "name": "Wyi", - "resources": 10, - "capital": 0, - "material": 459.65, - "industry": 0.07, - "population": 0.17, - "colonists": 0, - "production": "Dron", - "freeIndustry": 0.09 - }, - { - "owner": "Ricksha", - "x": 104.7, - "y": 514, - "number": 150, - "size": 369.72, - "name": "TuPA", - "resources": 20.33, - "capital": 0, - "material": 0, - "industry": 95.87, - "population": 114.97, - "colonists": 0, - "production": "Dron", - "freeIndustry": 100.65 - }, - { - "owner": "Ricksha", - "x": 80.1, - "y": 501.7, - "number": 173, - "size": 1926.88, - "name": "Legenda", - "resources": 1.37, - "capital": 7.59, - "material": 0, - "industry": 1926.88, - "population": 1926.88, - "colonists": 77.2, - "production": "T289", - "freeIndustry": 1926.88 - }, - { - "owner": "Ricksha", - "x": 167.56, - "y": 567.57, - "number": 298, - "size": 1325.17, - "name": "yppaIII", - "resources": 9.53, - "capital": 0, - "material": 870.59, - "industry": 0.04, - "population": 0.15, - "colonists": 0, - "production": "Dron", - "freeIndustry": 0.07 - }, - { - "owner": "Ricksha", - "x": 113.02, - "y": 515.8, - "number": 332, - "size": 500, - "name": "PEHKE", - "resources": 10, - "capital": 0, - "material": 226.42, - "industry": 216.18, - "population": 500, - "colonists": 16.06, - "production": "Dron", - "freeIndustry": 287.13 - }, - { - "owner": "Ricksha", - "x": 98.82, - "y": 516.82, - "number": 403, - "size": 675.77, - "name": "PAgOCTb", - "resources": 8.81, - "capital": 0, - "material": 414.41, - "industry": 244.92, - "population": 675.77, - "colonists": 15.13, - "production": "Dron", - "freeIndustry": 352.63 - }, - { - "owner": "Ricksha", - "x": 114.64, - "y": 517.46, - "number": 446, - "size": 500, - "name": "ILS", - "resources": 10, - "capital": 0, - "material": 279.21, - "industry": 170.26, - "population": 500, - "colonists": 14.36, - "production": "Dron", - "freeIndustry": 252.7 - }, - { - "owner": "Ricksha", - "x": 63.7, - "y": 560.33, - "number": 489, - "size": 500, - "name": "DW-1737-0489", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 7.89, - "population": 201.91, - "colonists": 0, - "production": "Dron", - "freeIndustry": 56.4 - }, - { - "owner": "Ricksha", - "x": 73.2, - "y": 556.76, - "number": 500, - "size": 797.02, - "name": "KPuT", - "resources": 8.21, - "capital": 152.42, - "material": 0, - "industry": 797.02, - "population": 797.02, - "colonists": 106.48, - "production": "Dron", - "freeIndustry": 797.02 - }, - { - "owner": "Ricksha", - "x": 92.35, - "y": 572.22, - "number": 506, - "size": 292.5, - "name": "VVHTREWW", - "resources": 16.94, - "capital": 0, - "material": 68.44, - "industry": 0.01, - "population": 0.11, - "colonists": 0, - "production": "Dron", - "freeIndustry": 0.03 - }, - { - "owner": "Ricksha", - "x": 146.22, - "y": 579.53, - "number": 507, - "size": 1000, - "name": "Tupo", - "resources": 10, - "capital": 0, - "material": 901.69, - "industry": 0.56, - "population": 1.65, - "colonists": 0, - "production": "Dron", - "freeIndustry": 0.83 - }, - { - "owner": "Ricksha", - "x": 88.04, - "y": 505.85, - "number": 525, - "size": 0.22, - "name": "Angel", - "resources": 0.63, - "capital": 0.21, - "material": 0, - "industry": 0.22, - "population": 0.22, - "colonists": 0.08, - "production": "Dron", - "freeIndustry": 0.22 - }, - { - "owner": "Ricksha", - "x": 151.54, - "y": 578.44, - "number": 532, - "size": 500, - "name": "Golo", - "resources": 10, - "capital": 0, - "material": 458.29, - "industry": 0.07, - "population": 0.17, - "colonists": 0, - "production": "Dron", - "freeIndustry": 0.09 - }, - { - "owner": "Ricksha", - "x": 107.38, - "y": 515.69, - "number": 535, - "size": 1000, - "name": "CAHKTyAPuu", - "resources": 10, - "capital": 0, - "material": 0, - "industry": 1000, - "population": 1000, - "colonists": 66.7, - "production": "Dron", - "freeIndustry": 1000 - }, - { - "owner": "Ricksha", - "x": 184.32, - "y": 531.62, - "number": 610, - "size": 673.5, - "name": "TEMJIyC", - "resources": 2.97, - "capital": 0, - "material": 0, - "industry": 5.58, - "population": 9.39, - "colonists": 0, - "production": "Dron", - "freeIndustry": 6.53 - }, - { - "owner": "Ricksha", - "x": 159.26, - "y": 532.61, - "number": 632, - "size": 659.52, - "name": "3BE3gA", - "resources": 2.12, - "capital": 0, - "material": 0.07, - "industry": 0.05, - "population": 0.16, - "colonists": 0, - "production": "Dron", - "freeIndustry": 0.08 - }, - { - "owner": "Ricksha", - "x": 132.16, - "y": 569.5, - "number": 641, - "size": 1408.58, - "name": "Tyno", - "resources": 3.11, - "capital": 0, - "material": 1393.75, - "industry": 0.01, - "population": 0.11, - "colonists": 0, - "production": "Dron", - "freeIndustry": 0.03 - }, - { - "owner": "Ricksha", - "x": 98.01, - "y": 516.69, - "number": 649, - "size": 831.72, - "name": "Labirint", - "resources": 6.32, - "capital": 0, - "material": 529.36, - "industry": 356.89, - "population": 831.72, - "colonists": 43.52, - "production": "Dron", - "freeIndustry": 475.6 - }, - { - "owner": "Ricksha", - "x": 140.92, - "y": 580.39, - "number": 669, - "size": 727.71, - "name": "Tovty", - "resources": 2.84, - "capital": 0, - "material": 693.74, - "industry": 0.02, - "population": 0.13, - "colonists": 0, - "production": "Dron", - "freeIndustry": 0.05 - } - ], - "uninhabitedPlanet": [ - { - "x": 117.87, - "y": 795.21, - "number": 9, - "size": 500, - "name": "Dw2", - "resources": 10, - "capital": 0, - "material": 500 - }, - { - "x": 75.94, - "y": 565.36, - "number": 20, - "size": 500, - "name": "DW-1207-0020", - "resources": 10, - "capital": 0, - "material": 0 - }, - { - "x": 87.82, - "y": 569.26, - "number": 46, - "size": 1114.17, - "name": "Povezlp", - "resources": 2.03, - "capital": 0, - "material": 160.12 - }, - { - "x": 265.59, - "y": 701.11, - "number": 69, - "size": 787.38, - "name": "B-069", - "resources": 9.54, - "capital": 0, - "material": 787.93 - }, - { - "x": 144.98, - "y": 48.16, - "number": 90, - "size": 500, - "name": "BDW1", - "resources": 10, - "capital": 0, - "material": 454.52 - }, - { - "x": 49.38, - "y": 797.57, - "number": 141, - "size": 612.38, - "name": "B1", - "resources": 1.96, - "capital": 0, - "material": 52.6 - }, - { - "x": 44.31, - "y": 686.97, - "number": 231, - "size": 500, - "name": "D2", - "resources": 10, - "capital": 0, - "material": 484.29 - }, - { - "x": 61.94, - "y": 0.02, - "number": 243, - "size": 500, - "name": "Dw2-243", - "resources": 10, - "capital": 7.69, - "material": 499.68 - }, - { - "x": 275.98, - "y": 710.09, - "number": 283, - "size": 622.27, - "name": "B-283", - "resources": 8.67, - "capital": 0, - "material": 565.45 - }, - { - "x": 42.43, - "y": 692.64, - "number": 369, - "size": 896.37, - "name": "SGood", - "resources": 9.74, - "capital": 0, - "material": 844.95 - }, - { - "x": 137.85, - "y": 63.39, - "number": 391, - "size": 757.09, - "name": "B391", - "resources": 3.41, - "capital": 0, - "material": 683.59 - }, - { - "x": 274.06, - "y": 696.52, - "number": 430, - "size": 500, - "name": "B-430", - "resources": 10, - "capital": 0, - "material": 328.32 - }, - { - "x": 120.65, - "y": 794.31, - "number": 431, - "size": 507.25, - "name": "N431", - "resources": 7.63, - "capital": 8.62, - "material": 504.06 - }, - { - "x": 89.75, - "y": 571.97, - "number": 432, - "size": 8.46, - "name": "1", - "resources": 0.7, - "capital": 0, - "material": 0.37 - }, - { - "x": 42.42, - "y": 695.7, - "number": 635, - "size": 451.34, - "name": "PGT", - "resources": 17.57, - "capital": 0, - "material": 450.18 - }, - { - "x": 72.41, - "y": 695.31, - "number": 654, - "size": 2066.7, - "name": "BedBig", - "resources": 0.25, - "capital": 0, - "material": 2058.68 - }, - { - "x": 37.67, - "y": 694.36, - "number": 693, - "size": 1000, - "name": "SSSanHom", - "resources": 10, - "capital": 0, - "material": 977.12 - } - ], - "unidentifiedPlanet": [ - { - "x": 738.08, - "y": 600.26, - "number": 0 - }, - { - "x": 579.12, - "y": 489.37, - "number": 1 - }, - { - "x": 679.78, - "y": 675.4, - "number": 3 - }, - { - "x": 749.22, - "y": 736.4, - "number": 4 - }, - { - "x": 746.13, - "y": 737.21, - "number": 5 - }, - { - "x": 627.55, - "y": 528.25, - "number": 6 - }, - { - "x": 271.69, - "y": 672.7, - "number": 7 - }, - { - "x": 657.2, - "y": 599.58, - "number": 8 - }, - { - "x": 83, - "y": 306.62, - "number": 10 - }, - { - "x": 127.62, - "y": 57.77, - "number": 11 - }, - { - "x": 12.04, - "y": 106.42, - "number": 13 - }, - { - "x": 495.86, - "y": 737.82, - "number": 16 - }, - { - "x": 373.72, - "y": 471.28, - "number": 18 - }, - { - "x": 535.08, - "y": 445.72, - "number": 19 - }, - { - "x": 498.76, - "y": 624.89, - "number": 21 - }, - { - "x": 171.39, - "y": 206.33, - "number": 22 - }, - { - "x": 500.82, - "y": 69.06, - "number": 23 - }, - { - "x": 793.91, - "y": 471.82, - "number": 26 - }, - { - "x": 282.41, - "y": 527.81, - "number": 27 - }, - { - "x": 272.24, - "y": 453.61, - "number": 29 - }, - { - "x": 438.37, - "y": 403.98, - "number": 30 - }, - { - "x": 711.64, - "y": 461.44, - "number": 31 - }, - { - "x": 270.61, - "y": 687.23, - "number": 32 - }, - { - "x": 373.11, - "y": 117.06, - "number": 33 - }, - { - "x": 82.94, - "y": 296.17, - "number": 34 - }, - { - "x": 196.1, - "y": 129.84, - "number": 35 - }, - { - "x": 491.28, - "y": 57.92, - "number": 36 - }, - { - "x": 770.4, - "y": 682.77, - "number": 37 - }, - { - "x": 681.65, - "y": 663, - "number": 39 - }, - { - "x": 405.24, - "y": 169.98, - "number": 40 - }, - { - "x": 200.84, - "y": 177.32, - "number": 41 - }, - { - "x": 463.85, - "y": 347.15, - "number": 42 - }, - { - "x": 293.44, - "y": 84.01, - "number": 43 - }, - { - "x": 738.6, - "y": 393.91, - "number": 44 - }, - { - "x": 745.85, - "y": 13.94, - "number": 47 - }, - { - "x": 749.58, - "y": 405.31, - "number": 50 - }, - { - "x": 454.71, - "y": 158.1, - "number": 51 - }, - { - "x": 317.8, - "y": 86.3, - "number": 52 - }, - { - "x": 435.88, - "y": 407.68, - "number": 53 - }, - { - "x": 251.01, - "y": 41.88, - "number": 54 - }, - { - "x": 505.79, - "y": 249.72, - "number": 57 - }, - { - "x": 652.61, - "y": 330.09, - "number": 58 - }, - { - "x": 546.7, - "y": 343.69, - "number": 59 - }, - { - "x": 363.53, - "y": 550.5, - "number": 60 - }, - { - "x": 441, - "y": 734.62, - "number": 61 - }, - { - "x": 653.45, - "y": 326.72, - "number": 62 - }, - { - "x": 730.81, - "y": 448.26, - "number": 63 - }, - { - "x": 489.59, - "y": 477.46, - "number": 64 - }, - { - "x": 188.83, - "y": 347.55, - "number": 65 - }, - { - "x": 403.89, - "y": 6.25, - "number": 66 - }, - { - "x": 757.57, - "y": 588.39, - "number": 67 - }, - { - "x": 191.54, - "y": 341.38, - "number": 68 - }, - { - "x": 506, - "y": 255.18, - "number": 70 - }, - { - "x": 537.59, - "y": 1.01, - "number": 71 - }, - { - "x": 8.72, - "y": 573.36, - "number": 73 - }, - { - "x": 257.77, - "y": 460.65, - "number": 74 - }, - { - "x": 718.99, - "y": 333.96, - "number": 75 - }, - { - "x": 117.65, - "y": 185.52, - "number": 76 - }, - { - "x": 375.11, - "y": 109.19, - "number": 77 - }, - { - "x": 202.26, - "y": 180.91, - "number": 78 - }, - { - "x": 498.69, - "y": 740.44, - "number": 80 - }, - { - "x": 479.43, - "y": 441.35, - "number": 81 - }, - { - "x": 15.71, - "y": 772.35, - "number": 82 - }, - { - "x": 253.71, - "y": 40.14, - "number": 83 - }, - { - "x": 538.56, - "y": 346.35, - "number": 84 - }, - { - "x": 490.92, - "y": 734.56, - "number": 86 - }, - { - "x": 592.2, - "y": 40.4, - "number": 88 - }, - { - "x": 723.29, - "y": 729.34, - "number": 89 - }, - { - "x": 296.01, - "y": 148.39, - "number": 91 - }, - { - "x": 585.53, - "y": 612.06, - "number": 92 - }, - { - "x": 380.68, - "y": 798.1, - "number": 93 - }, - { - "x": 635.49, - "y": 590.08, - "number": 94 - }, - { - "x": 659.02, - "y": 444.26, - "number": 96 - }, - { - "x": 234.33, - "y": 763.77, - "number": 97 - }, - { - "x": 649.08, - "y": 68.95, - "number": 98 - }, - { - "x": 716.98, - "y": 334.02, - "number": 99 - }, - { - "x": 650.08, - "y": 684.55, - "number": 100 - }, - { - "x": 567.25, - "y": 612.72, - "number": 101 - }, - { - "x": 74.61, - "y": 189.92, - "number": 102 - }, - { - "x": 531.61, - "y": 466.59, - "number": 103 - }, - { - "x": 184.83, - "y": 529.96, - "number": 104 - }, - { - "x": 763.96, - "y": 254.77, - "number": 105 - }, - { - "x": 578.4, - "y": 483.8, - "number": 106 - }, - { - "x": 449.31, - "y": 160.08, - "number": 107 - }, - { - "x": 242.28, - "y": 125.37, - "number": 109 - }, - { - "x": 587.44, - "y": 43.97, - "number": 110 - }, - { - "x": 108.16, - "y": 184.57, - "number": 112 - }, - { - "x": 482.84, - "y": 444.79, - "number": 113 - }, - { - "x": 779.73, - "y": 65.27, - "number": 115 - }, - { - "x": 424.82, - "y": 725.39, - "number": 117 - }, - { - "x": 694.75, - "y": 44.63, - "number": 118 - }, - { - "x": 589.01, - "y": 490.13, - "number": 120 - }, - { - "x": 578.8, - "y": 325.11, - "number": 121 - }, - { - "x": 718.75, - "y": 462.86, - "number": 122 - }, - { - "x": 774.24, - "y": 180.3, - "number": 123 - }, - { - "x": 496.77, - "y": 255.2, - "number": 124 - }, - { - "x": 340.09, - "y": 120.81, - "number": 125 - }, - { - "x": 779.91, - "y": 653.9, - "number": 126 - }, - { - "x": 261.88, - "y": 506.61, - "number": 127 - }, - { - "x": 786.08, - "y": 296.59, - "number": 128 - }, - { - "x": 327.97, - "y": 696.68, - "number": 129 - }, - { - "x": 632.56, - "y": 586.65, - "number": 131 - }, - { - "x": 536.32, - "y": 0.29, - "number": 132 - }, - { - "x": 670.83, - "y": 380.38, - "number": 133 - }, - { - "x": 71.73, - "y": 561.86, - "number": 134 - }, - { - "x": 501.2, - "y": 732.35, - "number": 135 - }, - { - "x": 791.5, - "y": 298.42, - "number": 136 - }, - { - "x": 180.18, - "y": 433.44, - "number": 137 - }, - { - "x": 474.92, - "y": 550.11, - "number": 138 - }, - { - "x": 789.69, - "y": 132.96, - "number": 140 - }, - { - "x": 362.21, - "y": 379.76, - "number": 142 - }, - { - "x": 757.59, - "y": 303.74, - "number": 143 - }, - { - "x": 662.93, - "y": 393.9, - "number": 144 - }, - { - "x": 453.43, - "y": 273.86, - "number": 145 - }, - { - "x": 388.91, - "y": 448.66, - "number": 146 - }, - { - "x": 496.57, - "y": 672.02, - "number": 147 - }, - { - "x": 617.74, - "y": 280.38, - "number": 148 - }, - { - "x": 621.44, - "y": 278.51, - "number": 149 - }, - { - "x": 478.41, - "y": 446.97, - "number": 151 - }, - { - "x": 633.42, - "y": 537.78, - "number": 152 - }, - { - "x": 403.99, - "y": 169.45, - "number": 153 - }, - { - "x": 419.74, - "y": 713.64, - "number": 154 - }, - { - "x": 496.26, - "y": 730.35, - "number": 155 - }, - { - "x": 395.36, - "y": 241.41, - "number": 156 - }, - { - "x": 355.23, - "y": 383.52, - "number": 157 - }, - { - "x": 770.85, - "y": 180.36, - "number": 158 - }, - { - "x": 642.38, - "y": 583.26, - "number": 159 - }, - { - "x": 203.53, - "y": 349.51, - "number": 160 - }, - { - "x": 356.19, - "y": 371.64, - "number": 161 - }, - { - "x": 337.59, - "y": 123.01, - "number": 162 - }, - { - "x": 533.41, - "y": 462.45, - "number": 163 - }, - { - "x": 267.44, - "y": 242.15, - "number": 164 - }, - { - "x": 622.34, - "y": 410.91, - "number": 165 - }, - { - "x": 781.41, - "y": 656.48, - "number": 166 - }, - { - "x": 154.45, - "y": 250.03, - "number": 167 - }, - { - "x": 270.15, - "y": 237.1, - "number": 168 - }, - { - "x": 273.49, - "y": 706.42, - "number": 169 - }, - { - "x": 539.42, - "y": 347.01, - "number": 170 - }, - { - "x": 16.41, - "y": 19.15, - "number": 171 - }, - { - "x": 548.47, - "y": 4.41, - "number": 172 - }, - { - "x": 16.31, - "y": 109.75, - "number": 174 - }, - { - "x": 76.38, - "y": 183.84, - "number": 175 - }, - { - "x": 679.93, - "y": 538.47, - "number": 178 - }, - { - "x": 611.05, - "y": 370.15, - "number": 179 - }, - { - "x": 630.67, - "y": 416.77, - "number": 180 - }, - { - "x": 609.88, - "y": 622.43, - "number": 181 - }, - { - "x": 229.52, - "y": 289.68, - "number": 182 - }, - { - "x": 460.01, - "y": 340.76, - "number": 184 - }, - { - "x": 640.68, - "y": 734.8, - "number": 185 - }, - { - "x": 415.56, - "y": 272.32, - "number": 186 - }, - { - "x": 757.66, - "y": 740.08, - "number": 187 - }, - { - "x": 332.29, - "y": 198.15, - "number": 188 - }, - { - "x": 618.7, - "y": 275.81, - "number": 189 - }, - { - "x": 513.56, - "y": 125.74, - "number": 192 - }, - { - "x": 494.93, - "y": 631.21, - "number": 193 - }, - { - "x": 368.98, - "y": 14.23, - "number": 194 - }, - { - "x": 743.39, - "y": 399.04, - "number": 195 - }, - { - "x": 204.87, - "y": 170.53, - "number": 197 - }, - { - "x": 363.59, - "y": 541.06, - "number": 198 - }, - { - "x": 757.69, - "y": 259.33, - "number": 199 - }, - { - "x": 287.32, - "y": 155.25, - "number": 200 - }, - { - "x": 263.97, - "y": 453.38, - "number": 201 - }, - { - "x": 632.08, - "y": 527.79, - "number": 202 - }, - { - "x": 576.6, - "y": 611.86, - "number": 204 - }, - { - "x": 416.57, - "y": 269.1, - "number": 205 - }, - { - "x": 724.32, - "y": 331.2, - "number": 208 - }, - { - "x": 769.13, - "y": 180.36, - "number": 209 - }, - { - "x": 161.45, - "y": 255.7, - "number": 210 - }, - { - "x": 534.22, - "y": 56.35, - "number": 211 - }, - { - "x": 787.14, - "y": 290.58, - "number": 212 - }, - { - "x": 253.73, - "y": 53.42, - "number": 213 - }, - { - "x": 384.34, - "y": 71.95, - "number": 214 - }, - { - "x": 655.96, - "y": 331.29, - "number": 215 - }, - { - "x": 200.95, - "y": 337.48, - "number": 216 - }, - { - "x": 766.53, - "y": 683.61, - "number": 217 - }, - { - "x": 388.73, - "y": 241.78, - "number": 218 - }, - { - "x": 778.17, - "y": 70.73, - "number": 219 - }, - { - "x": 490.1, - "y": 12.55, - "number": 220 - }, - { - "x": 250.19, - "y": 324.49, - "number": 221 - }, - { - "x": 260.28, - "y": 192.86, - "number": 224 - }, - { - "x": 327.03, - "y": 692.1, - "number": 225 - }, - { - "x": 514.86, - "y": 130.59, - "number": 226 - }, - { - "x": 41.51, - "y": 551.04, - "number": 227 - }, - { - "x": 354.87, - "y": 431.97, - "number": 228 - }, - { - "x": 767.33, - "y": 176.08, - "number": 229 - }, - { - "x": 639.57, - "y": 728.5, - "number": 230 - }, - { - "x": 487.61, - "y": 650.58, - "number": 232 - }, - { - "x": 270.76, - "y": 160.21, - "number": 233 - }, - { - "x": 514.62, - "y": 251.35, - "number": 234 - }, - { - "x": 473.64, - "y": 138.77, - "number": 235 - }, - { - "x": 560.51, - "y": 482.24, - "number": 236 - }, - { - "x": 789.55, - "y": 139.36, - "number": 237 - }, - { - "x": 370.54, - "y": 542.09, - "number": 238 - }, - { - "x": 409.17, - "y": 169.17, - "number": 239 - }, - { - "x": 572.78, - "y": 605.7, - "number": 240 - }, - { - "x": 734.06, - "y": 453.68, - "number": 241 - }, - { - "x": 199.93, - "y": 347.64, - "number": 242 - }, - { - "x": 751.85, - "y": 259.58, - "number": 244 - }, - { - "x": 395.47, - "y": 244.69, - "number": 245 - }, - { - "x": 205.33, - "y": 178.21, - "number": 246 - }, - { - "x": 584.81, - "y": 173.78, - "number": 247 - }, - { - "x": 372.3, - "y": 14.72, - "number": 248 - }, - { - "x": 341.22, - "y": 296.84, - "number": 249 - }, - { - "x": 546.65, - "y": 347.31, - "number": 250 - }, - { - "x": 758.58, - "y": 174.89, - "number": 252 - }, - { - "x": 438.03, - "y": 402.08, - "number": 254 - }, - { - "x": 171.2, - "y": 419.37, - "number": 255 - }, - { - "x": 62.96, - "y": 564.9, - "number": 256 - }, - { - "x": 600.43, - "y": 136.69, - "number": 257 - }, - { - "x": 371.35, - "y": 9.55, - "number": 258 - }, - { - "x": 359.82, - "y": 540.29, - "number": 259 - }, - { - "x": 339.78, - "y": 116.29, - "number": 260 - }, - { - "x": 2.42, - "y": 566.52, - "number": 261 - }, - { - "x": 653.51, - "y": 321.11, - "number": 262 - }, - { - "x": 661.48, - "y": 388.29, - "number": 263 - }, - { - "x": 481.71, - "y": 482.26, - "number": 264 - }, - { - "x": 710.28, - "y": 469.13, - "number": 265 - }, - { - "x": 451.6, - "y": 626.41, - "number": 266 - }, - { - "x": 664.2, - "y": 441.57, - "number": 267 - }, - { - "x": 681.25, - "y": 411.93, - "number": 269 - }, - { - "x": 799.31, - "y": 19.35, - "number": 270 - }, - { - "x": 627.73, - "y": 415.69, - "number": 271 - }, - { - "x": 510.97, - "y": 247.35, - "number": 272 - }, - { - "x": 478.33, - "y": 446.58, - "number": 273 - }, - { - "x": 105.86, - "y": 190.43, - "number": 274 - }, - { - "x": 257.06, - "y": 473.01, - "number": 275 - }, - { - "x": 688.94, - "y": 674.24, - "number": 276 - }, - { - "x": 769.51, - "y": 696.36, - "number": 277 - }, - { - "x": 619.26, - "y": 419.51, - "number": 278 - }, - { - "x": 667.04, - "y": 379.56, - "number": 279 - }, - { - "x": 643.77, - "y": 594.25, - "number": 280 - }, - { - "x": 264.84, - "y": 245.28, - "number": 281 - }, - { - "x": 459.14, - "y": 344.81, - "number": 284 - }, - { - "x": 418.99, - "y": 703.95, - "number": 285 - }, - { - "x": 741.65, - "y": 9.65, - "number": 286 - }, - { - "x": 782.67, - "y": 652.58, - "number": 287 - }, - { - "x": 604.97, - "y": 658.66, - "number": 288 - }, - { - "x": 164.38, - "y": 426.47, - "number": 289 - }, - { - "x": 425.59, - "y": 713.97, - "number": 290 - }, - { - "x": 490.23, - "y": 633.9, - "number": 291 - }, - { - "x": 130.28, - "y": 55.55, - "number": 293 - }, - { - "x": 169.51, - "y": 427.41, - "number": 294 - }, - { - "x": 788.62, - "y": 470.18, - "number": 295 - }, - { - "x": 259.51, - "y": 191.56, - "number": 297 - }, - { - "x": 157.42, - "y": 270.76, - "number": 299 - }, - { - "x": 629.57, - "y": 733.74, - "number": 300 - }, - { - "x": 745.45, - "y": 19.1, - "number": 301 - }, - { - "x": 7.79, - "y": 19.75, - "number": 302 - }, - { - "x": 418.18, - "y": 171.16, - "number": 303 - }, - { - "x": 561.36, - "y": 476.72, - "number": 304 - }, - { - "x": 181.78, - "y": 68.86, - "number": 306 - }, - { - "x": 4.17, - "y": 99.83, - "number": 307 - }, - { - "x": 244.3, - "y": 318.49, - "number": 308 - }, - { - "x": 386.67, - "y": 115.66, - "number": 309 - }, - { - "x": 555.63, - "y": 195.41, - "number": 310 - }, - { - "x": 82.17, - "y": 195.73, - "number": 311 - }, - { - "x": 254.45, - "y": 188.24, - "number": 312 - }, - { - "x": 454.36, - "y": 153.11, - "number": 313 - }, - { - "x": 87.14, - "y": 309.89, - "number": 315 - }, - { - "x": 644.12, - "y": 84.86, - "number": 316 - }, - { - "x": 655.15, - "y": 743.14, - "number": 317 - }, - { - "x": 697.87, - "y": 586.18, - "number": 318 - }, - { - "x": 499.33, - "y": 63.67, - "number": 319 - }, - { - "x": 520.84, - "y": 210.26, - "number": 320 - }, - { - "x": 786.23, - "y": 31.5, - "number": 321 - }, - { - "x": 315.96, - "y": 86.79, - "number": 322 - }, - { - "x": 666.13, - "y": 385.58, - "number": 323 - }, - { - "x": 761.72, - "y": 594, - "number": 324 - }, - { - "x": 275.21, - "y": 236.67, - "number": 325 - }, - { - "x": 491.93, - "y": 630.61, - "number": 326 - }, - { - "x": 159.56, - "y": 248.09, - "number": 327 - }, - { - "x": 765.62, - "y": 255.92, - "number": 328 - }, - { - "x": 486.38, - "y": 439.76, - "number": 329 - }, - { - "x": 520.41, - "y": 126.46, - "number": 330 - }, - { - "x": 355.21, - "y": 504.46, - "number": 331 - }, - { - "x": 561.91, - "y": 243.66, - "number": 333 - }, - { - "x": 265.76, - "y": 59.77, - "number": 334 - }, - { - "x": 381.99, - "y": 114.19, - "number": 335 - }, - { - "x": 520.28, - "y": 213.41, - "number": 336 - }, - { - "x": 647.46, - "y": 78.76, - "number": 337 - }, - { - "x": 425.31, - "y": 649.17, - "number": 339 - }, - { - "x": 165.83, - "y": 111.23, - "number": 341 - }, - { - "x": 246.76, - "y": 322.69, - "number": 342 - }, - { - "x": 62.01, - "y": 563.34, - "number": 343 - }, - { - "x": 338.79, - "y": 647.5, - "number": 344 - }, - { - "x": 186.95, - "y": 80.94, - "number": 345 - }, - { - "x": 723.64, - "y": 325.86, - "number": 346 - }, - { - "x": 403.02, - "y": 336.39, - "number": 347 - }, - { - "x": 450.99, - "y": 155.06, - "number": 348 - }, - { - "x": 540.28, - "y": 54, - "number": 349 - }, - { - "x": 499.61, - "y": 629.11, - "number": 350 - }, - { - "x": 292.09, - "y": 79.18, - "number": 351 - }, - { - "x": 479.07, - "y": 137.36, - "number": 352 - }, - { - "x": 364.75, - "y": 535.61, - "number": 353 - }, - { - "x": 770.79, - "y": 68.26, - "number": 354 - }, - { - "x": 423.38, - "y": 769.99, - "number": 355 - }, - { - "x": 474.62, - "y": 553.12, - "number": 356 - }, - { - "x": 763.79, - "y": 585.63, - "number": 357 - }, - { - "x": 780.46, - "y": 468.22, - "number": 358 - }, - { - "x": 736.58, - "y": 384.88, - "number": 359 - }, - { - "x": 687.46, - "y": 319.43, - "number": 360 - }, - { - "x": 750.35, - "y": 746.31, - "number": 361 - }, - { - "x": 195.2, - "y": 345.54, - "number": 362 - }, - { - "x": 357.67, - "y": 371.83, - "number": 363 - }, - { - "x": 335.1, - "y": 114.26, - "number": 364 - }, - { - "x": 391.3, - "y": 444.15, - "number": 365 - }, - { - "x": 643.98, - "y": 594.77, - "number": 367 - }, - { - "x": 677.53, - "y": 663.66, - "number": 368 - }, - { - "x": 712.4, - "y": 757.69, - "number": 371 - }, - { - "x": 774.17, - "y": 655.33, - "number": 372 - }, - { - "x": 119.54, - "y": 183.24, - "number": 373 - }, - { - "x": 420.5, - "y": 729.12, - "number": 374 - }, - { - "x": 754.39, - "y": 262.26, - "number": 375 - }, - { - "x": 223.57, - "y": 416.79, - "number": 376 - }, - { - "x": 280.9, - "y": 519.51, - "number": 377 - }, - { - "x": 757.4, - "y": 470.13, - "number": 378 - }, - { - "x": 540.45, - "y": 497.55, - "number": 379 - }, - { - "x": 160.17, - "y": 262.37, - "number": 380 - }, - { - "x": 377.84, - "y": 3.06, - "number": 381 - }, - { - "x": 542.34, - "y": 347.74, - "number": 382 - }, - { - "x": 596.73, - "y": 40.77, - "number": 383 - }, - { - "x": 609.6, - "y": 656.02, - "number": 384 - }, - { - "x": 14.77, - "y": 110.56, - "number": 386 - }, - { - "x": 291.51, - "y": 147.56, - "number": 387 - }, - { - "x": 487.07, - "y": 481.19, - "number": 388 - }, - { - "x": 375.84, - "y": 474.94, - "number": 389 - }, - { - "x": 619.35, - "y": 284.36, - "number": 390 - }, - { - "x": 244.95, - "y": 183.6, - "number": 392 - }, - { - "x": 343.03, - "y": 96.88, - "number": 393 - }, - { - "x": 400.54, - "y": 237.84, - "number": 395 - }, - { - "x": 694.3, - "y": 40.57, - "number": 397 - }, - { - "x": 141.16, - "y": 62.49, - "number": 398 - }, - { - "x": 145.78, - "y": 213.32, - "number": 399 - }, - { - "x": 79.35, - "y": 305.45, - "number": 400 - }, - { - "x": 16.99, - "y": 74.83, - "number": 401 - }, - { - "x": 71.6, - "y": 187.69, - "number": 402 - }, - { - "x": 564.1, - "y": 192.54, - "number": 404 - }, - { - "x": 484.89, - "y": 629.61, - "number": 405 - }, - { - "x": 444.36, - "y": 269.69, - "number": 406 - }, - { - "x": 536.34, - "y": 464.51, - "number": 407 - }, - { - "x": 253.52, - "y": 45.19, - "number": 408 - }, - { - "x": 778.82, - "y": 395.75, - "number": 410 - }, - { - "x": 6.47, - "y": 100.87, - "number": 411 - }, - { - "x": 157.52, - "y": 256.55, - "number": 412 - }, - { - "x": 787.33, - "y": 391.03, - "number": 413 - }, - { - "x": 601.24, - "y": 131.84, - "number": 414 - }, - { - "x": 259.46, - "y": 190.48, - "number": 415 - }, - { - "x": 398.62, - "y": 64.6, - "number": 416 - }, - { - "x": 11.4, - "y": 20.39, - "number": 417 - }, - { - "x": 588.86, - "y": 51.22, - "number": 418 - }, - { - "x": 497.64, - "y": 477.4, - "number": 419 - }, - { - "x": 606.75, - "y": 130.57, - "number": 420 - }, - { - "x": 486.68, - "y": 203.01, - "number": 422 - }, - { - "x": 682.81, - "y": 668.5, - "number": 423 - }, - { - "x": 280.06, - "y": 157.64, - "number": 424 - }, - { - "x": 281.67, - "y": 158.62, - "number": 426 - }, - { - "x": 790.24, - "y": 135.23, - "number": 427 - }, - { - "x": 339.65, - "y": 119.7, - "number": 428 - }, - { - "x": 650.63, - "y": 322.84, - "number": 429 - }, - { - "x": 357.77, - "y": 561.91, - "number": 433 - }, - { - "x": 755.87, - "y": 733.34, - "number": 435 - }, - { - "x": 511.2, - "y": 123.58, - "number": 437 - }, - { - "x": 455.08, - "y": 267.76, - "number": 439 - }, - { - "x": 533.97, - "y": 468.58, - "number": 440 - }, - { - "x": 412.15, - "y": 519.43, - "number": 441 - }, - { - "x": 451.99, - "y": 348.48, - "number": 442 - }, - { - "x": 492.55, - "y": 483.42, - "number": 443 - }, - { - "x": 741.4, - "y": 392.1, - "number": 444 - }, - { - "x": 192.95, - "y": 532.32, - "number": 445 - }, - { - "x": 422.68, - "y": 715.96, - "number": 448 - }, - { - "x": 229.3, - "y": 30.96, - "number": 449 - }, - { - "x": 786.19, - "y": 291.91, - "number": 450 - }, - { - "x": 512.42, - "y": 124.47, - "number": 451 - }, - { - "x": 552.56, - "y": 408.56, - "number": 452 - }, - { - "x": 719.46, - "y": 139.21, - "number": 453 - }, - { - "x": 772.73, - "y": 692.22, - "number": 454 - }, - { - "x": 80.38, - "y": 299.71, - "number": 455 - }, - { - "x": 478.24, - "y": 142.61, - "number": 456 - }, - { - "x": 388.17, - "y": 69.98, - "number": 457 - }, - { - "x": 4.98, - "y": 14.8, - "number": 460 - }, - { - "x": 141.95, - "y": 202.09, - "number": 462 - }, - { - "x": 754.71, - "y": 177.2, - "number": 463 - }, - { - "x": 166.97, - "y": 116.93, - "number": 464 - }, - { - "x": 357.29, - "y": 378.43, - "number": 465 - }, - { - "x": 559.33, - "y": 193.24, - "number": 466 - }, - { - "x": 240.96, - "y": 182.45, - "number": 467 - }, - { - "x": 539.08, - "y": 447.56, - "number": 468 - }, - { - "x": 412.39, - "y": 511.53, - "number": 469 - }, - { - "x": 186.63, - "y": 311.65, - "number": 470 - }, - { - "x": 261.38, - "y": 457.21, - "number": 471 - }, - { - "x": 394.88, - "y": 238.82, - "number": 472 - }, - { - "x": 573.09, - "y": 610.1, - "number": 473 - }, - { - "x": 616.38, - "y": 82.4, - "number": 475 - }, - { - "x": 537.06, - "y": 448.38, - "number": 476 - }, - { - "x": 393.75, - "y": 447.18, - "number": 477 - }, - { - "x": 70.84, - "y": 197.1, - "number": 478 - }, - { - "x": 592.46, - "y": 46.42, - "number": 480 - }, - { - "x": 636.81, - "y": 730.76, - "number": 481 - }, - { - "x": 644.53, - "y": 83.31, - "number": 482 - }, - { - "x": 631.22, - "y": 726.96, - "number": 483 - }, - { - "x": 797.07, - "y": 141.45, - "number": 484 - }, - { - "x": 334.5, - "y": 200.84, - "number": 485 - }, - { - "x": 381.22, - "y": 122.88, - "number": 486 - }, - { - "x": 350.93, - "y": 437.79, - "number": 487 - }, - { - "x": 760.88, - "y": 259.49, - "number": 488 - }, - { - "x": 448.27, - "y": 269.91, - "number": 490 - }, - { - "x": 343.1, - "y": 109.32, - "number": 491 - }, - { - "x": 176.42, - "y": 76.35, - "number": 492 - }, - { - "x": 651.69, - "y": 214.66, - "number": 493 - }, - { - "x": 143.05, - "y": 208.28, - "number": 494 - }, - { - "x": 411.27, - "y": 13.57, - "number": 496 - }, - { - "x": 689.35, - "y": 322.71, - "number": 497 - }, - { - "x": 543.84, - "y": 799.56, - "number": 498 - }, - { - "x": 582.56, - "y": 9.3, - "number": 499 - }, - { - "x": 765.66, - "y": 596.37, - "number": 501 - }, - { - "x": 628.71, - "y": 531.78, - "number": 502 - }, - { - "x": 639.48, - "y": 681.15, - "number": 503 - }, - { - "x": 697.95, - "y": 631.66, - "number": 505 - }, - { - "x": 769.55, - "y": 688.03, - "number": 508 - }, - { - "x": 283.31, - "y": 161.53, - "number": 509 - }, - { - "x": 719.75, - "y": 306.85, - "number": 510 - }, - { - "x": 730.08, - "y": 442.23, - "number": 511 - }, - { - "x": 572.48, - "y": 194.76, - "number": 512 - }, - { - "x": 635.99, - "y": 527.76, - "number": 514 - }, - { - "x": 656.77, - "y": 80.91, - "number": 515 - }, - { - "x": 741.17, - "y": 382.85, - "number": 516 - }, - { - "x": 739.01, - "y": 13.62, - "number": 517 - }, - { - "x": 291.37, - "y": 194.49, - "number": 518 - }, - { - "x": 181.76, - "y": 75.52, - "number": 520 - }, - { - "x": 93.92, - "y": 411.12, - "number": 522 - }, - { - "x": 564.25, - "y": 480.75, - "number": 524 - }, - { - "x": 256.31, - "y": 145.05, - "number": 526 - }, - { - "x": 762.17, - "y": 266.58, - "number": 527 - }, - { - "x": 17.24, - "y": 533.07, - "number": 528 - }, - { - "x": 453.81, - "y": 349.48, - "number": 529 - }, - { - "x": 129.42, - "y": 208.75, - "number": 531 - }, - { - "x": 483.9, - "y": 722.17, - "number": 533 - }, - { - "x": 779.04, - "y": 657.5, - "number": 534 - }, - { - "x": 376.33, - "y": 16.43, - "number": 536 - }, - { - "x": 139.82, - "y": 54.93, - "number": 537 - }, - { - "x": 175.41, - "y": 426.59, - "number": 538 - }, - { - "x": 609.69, - "y": 749.71, - "number": 539 - }, - { - "x": 759.91, - "y": 179.9, - "number": 540 - }, - { - "x": 83.18, - "y": 300, - "number": 541 - }, - { - "x": 789.57, - "y": 301.97, - "number": 542 - }, - { - "x": 548.63, - "y": 349, - "number": 543 - }, - { - "x": 356.75, - "y": 437.19, - "number": 544 - }, - { - "x": 414.74, - "y": 514.5, - "number": 545 - }, - { - "x": 453.36, - "y": 524.75, - "number": 546 - }, - { - "x": 342.31, - "y": 106.47, - "number": 547 - }, - { - "x": 36.87, - "y": 181.48, - "number": 548 - }, - { - "x": 309.48, - "y": 95.73, - "number": 550 - }, - { - "x": 775.51, - "y": 74.03, - "number": 551 - }, - { - "x": 429.35, - "y": 406.16, - "number": 553 - }, - { - "x": 631.04, - "y": 416.41, - "number": 554 - }, - { - "x": 340.75, - "y": 202.15, - "number": 555 - }, - { - "x": 393.76, - "y": 439.25, - "number": 556 - }, - { - "x": 717.18, - "y": 146.7, - "number": 557 - }, - { - "x": 520.09, - "y": 130.57, - "number": 560 - }, - { - "x": 134.18, - "y": 341.49, - "number": 561 - }, - { - "x": 348.93, - "y": 435.59, - "number": 562 - }, - { - "x": 281.98, - "y": 155.46, - "number": 563 - }, - { - "x": 777.09, - "y": 77.18, - "number": 564 - }, - { - "x": 427.07, - "y": 646.07, - "number": 565 - }, - { - "x": 197.11, - "y": 184.72, - "number": 566 - }, - { - "x": 396.55, - "y": 442.61, - "number": 567 - }, - { - "x": 241.98, - "y": 131.35, - "number": 568 - }, - { - "x": 348.97, - "y": 426.12, - "number": 570 - }, - { - "x": 290.98, - "y": 789.33, - "number": 571 - }, - { - "x": 459.25, - "y": 157.33, - "number": 573 - }, - { - "x": 507.28, - "y": 66.74, - "number": 574 - }, - { - "x": 586.25, - "y": 478.2, - "number": 575 - }, - { - "x": 627.99, - "y": 589, - "number": 576 - }, - { - "x": 582.39, - "y": 487.3, - "number": 577 - }, - { - "x": 380.74, - "y": 111.41, - "number": 578 - }, - { - "x": 592.92, - "y": 42.41, - "number": 579 - }, - { - "x": 39.21, - "y": 95.39, - "number": 580 - }, - { - "x": 34.23, - "y": 189.56, - "number": 581 - }, - { - "x": 238.39, - "y": 128.03, - "number": 582 - }, - { - "x": 750.98, - "y": 11.82, - "number": 583 - }, - { - "x": 179.45, - "y": 77.59, - "number": 584 - }, - { - "x": 788.73, - "y": 397.75, - "number": 585 - }, - { - "x": 755.9, - "y": 600.01, - "number": 586 - }, - { - "x": 713.1, - "y": 471.46, - "number": 588 - }, - { - "x": 638.86, - "y": 126.08, - "number": 589 - }, - { - "x": 332.93, - "y": 204.33, - "number": 590 - }, - { - "x": 643.62, - "y": 685.35, - "number": 591 - }, - { - "x": 720.87, - "y": 328.72, - "number": 592 - }, - { - "x": 784.89, - "y": 465.75, - "number": 593 - }, - { - "x": 649.6, - "y": 325.46, - "number": 594 - }, - { - "x": 141.1, - "y": 59.17, - "number": 595 - }, - { - "x": 411.75, - "y": 172.88, - "number": 597 - }, - { - "x": 599.09, - "y": 658.02, - "number": 598 - }, - { - "x": 787.6, - "y": 464.38, - "number": 599 - }, - { - "x": 130.08, - "y": 317.83, - "number": 600 - }, - { - "x": 393.35, - "y": 72.56, - "number": 601 - }, - { - "x": 636.22, - "y": 686.87, - "number": 603 - }, - { - "x": 736.46, - "y": 603.01, - "number": 604 - }, - { - "x": 650.19, - "y": 220.08, - "number": 605 - }, - { - "x": 798.85, - "y": 109.87, - "number": 606 - }, - { - "x": 534.85, - "y": 459.56, - "number": 607 - }, - { - "x": 22.97, - "y": 770.8, - "number": 608 - }, - { - "x": 249.57, - "y": 36.88, - "number": 609 - }, - { - "x": 0.66, - "y": 270.52, - "number": 611 - }, - { - "x": 1.36, - "y": 18.41, - "number": 613 - }, - { - "x": 149.11, - "y": 214.39, - "number": 614 - }, - { - "x": 547.48, - "y": 796.17, - "number": 615 - }, - { - "x": 5.39, - "y": 105.57, - "number": 616 - }, - { - "x": 781.17, - "y": 27.66, - "number": 617 - }, - { - "x": 696.04, - "y": 577.39, - "number": 618 - }, - { - "x": 378.66, - "y": 324.43, - "number": 619 - }, - { - "x": 644.29, - "y": 690.12, - "number": 620 - }, - { - "x": 687.26, - "y": 665.06, - "number": 621 - }, - { - "x": 379.11, - "y": 321.51, - "number": 623 - }, - { - "x": 788.99, - "y": 144.64, - "number": 625 - }, - { - "x": 159.6, - "y": 268.47, - "number": 626 - }, - { - "x": 380.44, - "y": 320.21, - "number": 627 - }, - { - "x": 150.56, - "y": 211.11, - "number": 628 - }, - { - "x": 5.25, - "y": 113.65, - "number": 629 - }, - { - "x": 270.66, - "y": 304.23, - "number": 630 - }, - { - "x": 604.41, - "y": 134.09, - "number": 631 - }, - { - "x": 441.22, - "y": 413.04, - "number": 633 - }, - { - "x": 245.79, - "y": 185.69, - "number": 634 - }, - { - "x": 581.98, - "y": 480.26, - "number": 637 - }, - { - "x": 602.09, - "y": 654.92, - "number": 638 - }, - { - "x": 395.15, - "y": 75.81, - "number": 639 - }, - { - "x": 312.78, - "y": 89.43, - "number": 640 - }, - { - "x": 495.38, - "y": 61.45, - "number": 642 - }, - { - "x": 766.72, - "y": 682.95, - "number": 643 - }, - { - "x": 450.49, - "y": 276.21, - "number": 644 - }, - { - "x": 398.63, - "y": 240.43, - "number": 645 - }, - { - "x": 266.71, - "y": 490.96, - "number": 646 - }, - { - "x": 791.17, - "y": 652.35, - "number": 648 - }, - { - "x": 253.16, - "y": 182.92, - "number": 650 - }, - { - "x": 137.86, - "y": 207.72, - "number": 651 - }, - { - "x": 643.32, - "y": 73.84, - "number": 652 - }, - { - "x": 386.34, - "y": 444.85, - "number": 653 - }, - { - "x": 249.59, - "y": 36.99, - "number": 655 - }, - { - "x": 265.51, - "y": 250.63, - "number": 656 - }, - { - "x": 799.02, - "y": 99.39, - "number": 657 - }, - { - "x": 456.54, - "y": 269.45, - "number": 658 - }, - { - "x": 40.58, - "y": 98.81, - "number": 659 - }, - { - "x": 378.53, - "y": 308.43, - "number": 660 - }, - { - "x": 257.12, - "y": 449.3, - "number": 661 - }, - { - "x": 268.48, - "y": 448.69, - "number": 664 - }, - { - "x": 284.36, - "y": 527.15, - "number": 665 - }, - { - "x": 389.96, - "y": 251.88, - "number": 666 - }, - { - "x": 545.94, - "y": 7.12, - "number": 667 - }, - { - "x": 569.79, - "y": 189.94, - "number": 668 - }, - { - "x": 15.8, - "y": 80.06, - "number": 670 - }, - { - "x": 183.7, - "y": 309.04, - "number": 671 - }, - { - "x": 758.49, - "y": 591.33, - "number": 672 - }, - { - "x": 491.71, - "y": 206.07, - "number": 674 - }, - { - "x": 385.66, - "y": 320.54, - "number": 675 - }, - { - "x": 601.57, - "y": 666.88, - "number": 676 - }, - { - "x": 713.79, - "y": 465.27, - "number": 677 - }, - { - "x": 426.02, - "y": 716.19, - "number": 678 - }, - { - "x": 538.13, - "y": 453.99, - "number": 680 - }, - { - "x": 381.84, - "y": 318.28, - "number": 681 - }, - { - "x": 374.02, - "y": 11.39, - "number": 682 - }, - { - "x": 626.89, - "y": 284.25, - "number": 683 - }, - { - "x": 428.36, - "y": 734.25, - "number": 684 - }, - { - "x": 268.74, - "y": 239.35, - "number": 686 - }, - { - "x": 683.03, - "y": 788.79, - "number": 687 - }, - { - "x": 334.72, - "y": 189.18, - "number": 688 - }, - { - "x": 114.19, - "y": 185.55, - "number": 689 - }, - { - "x": 417.48, - "y": 168.69, - "number": 692 - }, - { - "x": 272.79, - "y": 488.36, - "number": 694 - }, - { - "x": 577.93, - "y": 483.4, - "number": 695 - }, - { - "x": 368.57, - "y": 6.86, - "number": 696 - }, - { - "x": 170.34, - "y": 432.61, - "number": 698 - }, - { - "x": 501.95, - "y": 66.16, - "number": 699 - } - ], - "localGroup": [ - { - "number": 2, - "class": "Frontier", - "tech": { + "version": 1, + "report": { + "version": 0, + "turn": 39, + "mapWidth": 800, + "mapHeight": 800, + "mapPlanets": 700, + "race": "KnightErrants", + "votes": 16.02, + "voteFor": "KnightErrants", + "player": [ + { + "name": "3JO6HbIE", + "drive": 4.51, + "weapons": 2.24, + "shields": 1.8, "cargo": 1, - "drive": 5.05, - "shields": 0, - "weapons": 0 + "population": 3742.33, + "industry": 1191.49, + "planets": 7, + "relation": "War", + "votes": 3.74, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 685, - "speed": 0, - "mass": 12.37, - "id": "c1b96767-472f-5a96-8d83-369b5800b1c1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Furgon10", - "tech": { + { + "name": "6PATBA", + "drive": 9.03, + "weapons": 5.62, + "shields": 2.16, + "cargo": 1.53, + "population": 16360.02, + "industry": 10488.69, + "planets": 30, + "relation": "War", + "votes": 16.36, + "extinct": false + }, + { + "name": "AbubaGerbographerPot", + "drive": 6.95, + "weapons": 3.26, + "shields": 4.18, "cargo": 1, - "drive": 10.62, - "shields": 0, - "weapons": 0 + "population": 929.9, + "industry": 842.08, + "planets": 3, + "relation": "Peace", + "votes": 0.93, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 622, - "speed": 0, - "mass": 24.75, - "id": "d3c4e0e7-de33-5145-b28b-293b2e02c445", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.38 - }, - "cargo": "-", - "load": 0, - "destination": 114, - "speed": 0, - "mass": 1, - "id": "fe8805a6-d03c-5b66-a062-c9eaa2266d20", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.27 - }, - "cargo": "-", - "load": 0, - "destination": 223, - "speed": 0, - "mass": 1, - "id": "ce729a18-d695-5bed-857e-2806e576a1f1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 7, - "class": "Drone", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 46, - "speed": 0, - "mass": 7.07, - "id": "0d0263b4-ff6b-5d55-b7cd-ac73d873812c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.08 - }, - "cargo": "-", - "load": 0, - "destination": 495, - "speed": 0, - "mass": 1, - "id": "fde80508-8829-5e8f-afa4-e16d2ce3e24f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 447, - "speed": 0, - "mass": 1, - "id": "78449cc4-c2ec-53de-a0a3-87512990f742", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 77, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.71, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 1, - "id": "0f48d7f3-8e0d-539d-afbe-8a59f6ef2fcf", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 2.01 - }, - "cargo": "-", - "load": 0, - "destination": 223, - "speed": 0, - "mass": 1, - "id": "ee402052-9f78-5244-a57f-0c36e497ebef", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 495, - "speed": 0, - "mass": 1, - "id": "25de95f9-580a-5135-9ad7-f6ee91e74c9f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 679, - "speed": 0, - "mass": 1, - "id": "74c19316-4e30-574d-b7a6-3c98c13342d7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow105", - "tech": { + { + "name": "Acreators", + "drive": 9.5, + "weapons": 4.01, + "shields": 4.69, "cargo": 1, - "drive": 11.19, - "shields": 7.09, - "weapons": 4.76 + "population": 11773.07, + "industry": 9334.95, + "planets": 19, + "relation": "War", + "votes": 11.77, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 149.54, - "id": "6875713d-719e-5740-ae2b-1dae8925a18d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "CrossBow52x2", - "tech": { - "cargo": 1, - "drive": 11.19, - "shields": 7.09, - "weapons": 4.76 - }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 149.54, - "id": "ae51be3a-e3f7-59c1-83bd-ee193e3a0b6a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.24, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 635, - "speed": 0, - "mass": 1, - "id": "e9addad6-60b0-5401-8b2d-e77c7dcea116", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 431, - "speed": 0, - "mass": 1, - "id": "0ecedad6-87f3-5371-b0a5-1d8e44e934cd", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 183, - "speed": 0, - "mass": 1, - "id": "2a64b7aa-d58b-5a04-81c5-600d4743dd1a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 190, - "speed": 0, - "mass": 1, - "id": "ee77f33d-5bf5-5935-81b1-ae0b4c80bd06", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.53, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 292, - "speed": 0, - "mass": 1, - "id": "407c3512-cff7-57fe-8c61-1492eedf2f38", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.53, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 504, - "speed": 0, - "mass": 1, - "id": "8aa2ce73-3bfe-5f70-8993-da801d34f6ab", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Tormoz49", - "tech": { - "cargo": 1, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "CAP", - "load": 48.75, - "destination": 79, - "origin": 572, - "range": 29.86, - "speed": 0, - "mass": 98.25, - "id": "0885e23e-96a9-53a4-87bf-7ffdc8d25a63", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.53, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 369, - "speed": 0, - "mass": 1, - "id": "db5a16d7-ea0b-5576-bbbf-2cf7086b74f6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 2.83, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 231, - "speed": 0, - "mass": 1, - "id": "93151891-83e7-57ab-b22f-3ab7af738478", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Catapult8x7", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 3.3, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 99, - "id": "5f9fdb83-8163-56e2-a538-9cb04f860936", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Invalid", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 7.09, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 49.99, - "id": "4de87a01-538f-575b-aa07-5788768a44f7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Furgon10b", - "tech": { - "cargo": 1, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "COL", - "load": 9.25, - "destination": 79, - "speed": 0, - "mass": 34, - "id": "17d48fe8-b2cd-58b7-ada4-b16994cf0f91", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 693, - "speed": 0, - "mass": 1, - "id": "503d36af-4488-5ef0-b5de-9cd23cd41084", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 114, - "speed": 0, - "mass": 1, - "id": "64596118-d163-5699-ab59-c47355ed2cf1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 654, - "speed": 0, - "mass": 1, - "id": "0e551f01-bea8-5499-9295-4edd11ce9275", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.23, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 559, - "speed": 0, - "mass": 1, - "id": "998ee779-660a-5105-b749-dcceeb29b700", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.49, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 95, - "speed": 0, - "mass": 1, - "id": "cdd558d3-b4b7-52e3-959a-01c9bfc653d6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.49, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 49, - "speed": 0, - "mass": 1, - "id": "49870a7d-956f-5aa0-a0c9-66a0b661056e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.49, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 206, - "speed": 0, - "mass": 1, - "id": "6873b5e0-2a1b-567e-b4b6-ba48ea48e802", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.49, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 519, - "speed": 0, - "mass": 1, - "id": "06925742-c92a-5d80-8754-f6352ccdfc6e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 3, - "class": "Stop", - "tech": { - "cargo": 0, - "drive": 0, + { + "name": "Alike", + "drive": 4.57, + "weapons": 1, "shields": 1, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 523, - "speed": 0, - "mass": 2.26, - "id": "74bf52d3-1051-5785-b08e-d31561d7b2e8", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 1, - "id": "7e2aa02b-5dc4-5574-a33e-d4c216737347", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 3.77, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 111, - "speed": 0, - "mass": 1, - "id": "66380351-e3b3-54b1-9bb7-6615b9be62ca", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.17, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 391, - "speed": 0, - "mass": 1, - "id": "aa23b889-0780-5c75-be58-513f49d4a87e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.17, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 474, - "speed": 0, - "mass": 1, - "id": "87194948-6d67-5234-894d-25dbdea031db", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 572, - "speed": 0, - "mass": 1, - "id": "550e32b9-4068-5c7f-8237-a0dd1f26ece0", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.76, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 17, - "speed": 0, - "mass": 1, - "id": "d52f6245-4857-5703-8125-0ae3c3876baf", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 177, - "speed": 0, - "mass": 1, - "id": "9a818b63-4fc9-59d6-bfe3-03f683715a0e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.76, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 9, - "speed": 0, - "mass": 1, - "id": "d2cd96c7-fb2f-5ea2-a0b0-23aadc221cb9", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.76, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 394, - "speed": 0, - "mass": 1, - "id": "5a0ef736-42d3-5394-b385-6aa62527b0fc", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 5.34, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 519, - "speed": 0, - "mass": 1, - "id": "0561b727-bdca-5c26-865c-4845795e7edb", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 5.34, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 610, - "speed": 0, - "mass": 1, - "id": "58caa413-f1d5-5e5a-812c-e4c3977cd534", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 5.93, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 596, - "speed": 0, - "mass": 1, - "id": "f0890948-3c59-54b4-bdc6-092d383d5e62", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 558, - "speed": 0, - "mass": 1, - "id": "45955281-0c7c-5e4c-9e11-c2c40efb3e58", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 622, - "speed": 0, - "mass": 1, - "id": "86968f2e-fc10-5366-9336-af8ceec34f9d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 130, - "speed": 0, - "mass": 1, - "id": "8f0956d0-f58e-52b3-97b3-5b77616680c7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 268, - "speed": 0, - "mass": 1, - "id": "ab3be9b6-f441-5687-8538-06be6837dd23", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 458, - "speed": 0, - "mass": 1, - "id": "ce28e59d-1643-5c26-b3d1-74aaa3e796d6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 662, - "speed": 0, - "mass": 1, - "id": "2b76689e-2be9-5103-88b4-e929ac180b33", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 48, - "speed": 0, - "mass": 1, - "id": "2a13adc9-41f1-5f1e-b1f4-f9f7709fcaa9", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 253, - "speed": 0, - "mass": 1, - "id": "42f76fd5-39ef-5881-9e96-3090979df3e2", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 513, - "speed": 0, - "mass": 1, - "id": "04c131cb-f3f1-53c3-9162-2865caae0119", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 521, - "speed": 0, - "mass": 1, - "id": "7bc54e58-b931-55df-8864-e4b58748f559", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 69, - "speed": 0, - "mass": 1, - "id": "4ef24cc5-69b3-51c8-a8be-e54c2f047fa5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 14, - "speed": 0, - "mass": 1, - "id": "de8001eb-3bbd-5c4c-9b43-f57727b13d36", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.13, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 243, - "speed": 0, - "mass": 1, - "id": "43143f40-e0ed-5651-be78-4a59aea98398", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 8.13, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 191, - "speed": 0, - "mass": 1, - "id": "654d6549-470b-594f-bbf4-5f4b01b44597", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 697, - "speed": 0, - "mass": 1, - "id": "6b748afc-108b-5933-b605-dbfd1283c605", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 430, - "speed": 0, - "mass": 1, - "id": "2018e46b-c2cf-56ee-99b6-4198525138bf", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 45, - "speed": 0, - "mass": 1, - "id": "855d3f4f-5a4e-5678-b438-5ad9a51c2723", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 549, - "speed": 0, - "mass": 1, - "id": "0cb8bb36-2707-55b8-9d29-1d880530a1d0", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 1.67 - }, - "cargo": "-", - "load": 0, - "destination": 461, - "speed": 0, - "mass": 1, - "id": "33c78d02-ffc9-5df5-9017-918e005b5818", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 24, - "speed": 0, - "mass": 1, - "id": "5e0450e1-acec-5f13-bb51-ef5c727f5206", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 283, - "speed": 0, - "mass": 1, - "id": "0299ab68-b1d6-5c0d-98ec-a4dd0535c8e7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 587, - "speed": 0, - "mass": 1, - "id": "f0a94be5-3af6-534b-a8cd-7e9c2d31ad0f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 691, - "speed": 0, - "mass": 1, - "id": "353840c6-3720-5d10-86c7-d6667de4f529", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 479, - "speed": 0, - "mass": 1, - "id": "0ea4bdec-0e97-56e3-8bf9-9e5e2e303e91", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 7.25, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 425, - "speed": 0, - "mass": 1, - "id": "5515386b-054e-501e-84de-4e44adcab2ef", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 5.93, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 396, - "speed": 0, - "mass": 1, - "id": "19d4a93c-ae3e-59f3-9b84-3102cfe19579", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 673, - "speed": 0, - "mass": 1, - "id": "298455f2-a7c3-5019-b838-48dff1f77e90", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 203, - "speed": 0, - "mass": 1, - "id": "35f632d6-2f85-5862-8cbc-8be2efce421c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 6.52, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 530, - "speed": 0, - "mass": 1, - "id": "f081f7e2-4f20-5fab-afc8-7ee9e51e7eee", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 362, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.1, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 1, - "id": "e4e83504-fc42-5e69-ae10-4f416a679c3d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 141, - "speed": 0, - "mass": 1, - "id": "cff70000-645c-5f51-b811-39cb6caff8ff", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 12, - "speed": 0, - "mass": 1, - "id": "9fc146f9-586a-577e-b54c-761c9bde3fb2", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 622, - "speed": 0, - "mass": 1, - "id": "7a5bd189-caf0-5a9c-80f2-adc125936433", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 602, - "speed": 0, - "mass": 1, - "id": "1d92183d-f227-5431-950f-7aa289537315", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 552, - "speed": 0, - "mass": 1, - "id": "ea8a1391-c7b3-5d4b-b8bd-b18cd6eefb5d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 28, - "speed": 0, - "mass": 1, - "id": "637e0bbb-7382-5fba-8ee6-cbd019498aa1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 370, - "speed": 0, - "mass": 1, - "id": "00c3384d-233d-5df4-9900-a2acad0846f7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 532, - "speed": 0, - "mass": 1, - "id": "80134b6e-30aa-58e6-a5c7-a5e1c82f06b4", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 612, - "speed": 0, - "mass": 1, - "id": "c5caab15-aaee-5db6-89c9-9e2d234002a5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 139, - "speed": 0, - "mass": 1, - "id": "f3b90726-fffe-5d20-b43d-8d3204a03887", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 31, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 1, - "id": "f45acd56-3151-5882-a2dc-91d3cf3872f5", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 366, - "speed": 0, - "mass": 1, - "id": "2af0f802-d675-5687-803e-378b14e9ff58", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 178, - "class": "Buckler100", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 5.65, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 2, - "id": "0343ea81-cc37-5562-bdc3-e00ecb42c577", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 298, - "speed": 0, - "mass": 1, - "id": "0a865579-da92-598a-8e05-03a7c891fc7d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 119, - "speed": 0, - "mass": 1, - "id": "93873466-3dbb-5f00-ac9f-0beedc7afe33", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 507, - "speed": 0, - "mass": 1, - "id": "3ec33cc1-1e9c-5e0d-9c80-e584b286a82c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon5", - "tech": { "cargo": 1, - "drive": 10.62, - "shields": 0, - "weapons": 0 + "population": 3586.02, + "industry": 3354.56, + "planets": 5, + "relation": "War", + "votes": 3.59, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 523, - "speed": 0, - "mass": 12.37, - "id": "c3e70e95-3844-59d2-982e-415525119c5f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 90, - "speed": 0, - "mass": 1, - "id": "39cb4177-4aa4-58f4-99b1-70936f21a725", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 632, - "speed": 0, - "mass": 1, - "id": "7f5b8b02-78ef-5ca3-8884-15fc461d1a4c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 432, - "speed": 0, - "mass": 1, - "id": "9681f47a-b083-5aef-aeab-6ead2bbeea80", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 20, - "speed": 0, - "mass": 1, - "id": "3179ae8e-1dae-53f0-9245-1cf1370a9287", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 500, - "speed": 0, - "mass": 1, - "id": "f6aaf22a-a5aa-50af-a535-9c90a757bb01", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 489, - "speed": 0, - "mass": 1, - "id": "dd58d543-af7b-5e84-bfad-d164e99ec695", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 446, - "speed": 0, - "mass": 1, - "id": "dba04345-ee08-54b5-abac-2c689810060a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 332, - "speed": 0, - "mass": 1, - "id": "ffe92756-0d71-563f-8a65-579dbc46d30d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 403, - "speed": 0, - "mass": 1, - "id": "d41a5222-66c4-5837-bb17-b95ad029bcf8", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 649, - "speed": 0, - "mass": 1, - "id": "ff88b8a3-d203-509e-ac66-aac4d5d4a319", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 55, - "speed": 0, - "mass": 1, - "id": "2d864b2e-2417-5e55-be45-ba66075dfb51", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 25, - "speed": 0, - "mass": 1, - "id": "8c435432-7389-55e1-af96-5b8887f36c93", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 641, - "speed": 0, - "mass": 1, - "id": "93b7cd69-4f68-52cc-983e-cf825d5848ca", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 506, - "speed": 0, - "mass": 1, - "id": "f68781ae-6827-53aa-806d-e922a6544e7e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 685, - "speed": 0, - "mass": 1, - "id": "ad76f2da-a48a-5e80-8c17-1dede7bf6dad", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow105", - "tech": { + { + "name": "Argon", + "drive": 8.64, + "weapons": 3.01, + "shields": 3.22, "cargo": 1, - "drive": 11.19, - "shields": 3.3, - "weapons": 4.76 + "population": 5245.67, + "industry": 3835.95, + "planets": 14, + "relation": "War", + "votes": 5.25, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 149.54, - "id": "29b1c5a5-0093-5785-bc61-ef3f3d869826", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 54, - "class": "Buckler100", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 4.84, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 2, - "id": "b6de7be5-54a0-5c2b-8e91-94e7fe2dd9dd", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 46, - "speed": 0, - "mass": 1, - "id": "7d8c85ae-6a1d-5500-b2fc-cd354713117c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 207, - "speed": 0, - "mass": 1, - "id": "730a79a1-9432-5ab4-a5f9-f250892a5f87", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 459, - "speed": 0, - "mass": 1, - "id": "52db3931-bb37-5372-a13a-23b875a669f6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 196, - "speed": 0, - "mass": 1, - "id": "31233623-71a9-5b29-858d-77dcb14a6c02", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 85, - "speed": 0, - "mass": 1, - "id": "7053a306-faa3-50ca-934b-bbdb82db0da0", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 663, - "speed": 0, - "mass": 1, - "id": "0fe2d695-eb19-5286-aa75-88562126a37d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 56, - "speed": 0, - "mass": 1, - "id": "1d9bd461-a532-5752-bc9f-77a6d4e76d95", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 314, - "speed": 0, - "mass": 1, - "id": "d1531732-0e91-5043-ba68-ecf6655aa6ed", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 690, - "speed": 0, - "mass": 1, - "id": "b818a8cb-9e24-54a1-bbed-d69dafb2b7af", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon20", - "tech": { + { + "name": "AT-2560TX", + "drive": 16.29, + "weapons": 9.49, + "shields": 9.54, "cargo": 1, - "drive": 9.45, - "shields": 0, - "weapons": 4.76 + "population": 12737.63, + "industry": 12730.07, + "planets": 19, + "relation": "War", + "votes": 12.74, + "extinct": false }, - "cargo": "COL", - "load": 20, - "destination": 177, - "speed": 0, - "mass": 69.3, - "id": "be2849c1-45a7-5cf3-995a-fc2d8057ce65", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon100", - "tech": { + { + "name": "Barcarols", + "drive": 10.01, + "weapons": 4.78, + "shields": 5.05, "cargo": 1, - "drive": 11.19, - "shields": 0, - "weapons": 0 + "population": 16686.84, + "industry": 12423.19, + "planets": 24, + "relation": "War", + "votes": 16.69, + "extinct": false }, - "cargo": "COL", - "load": 100.02, - "destination": 114, - "speed": 0, - "mass": 198.85, - "id": "5f89851c-6aac-5389-88e0-4bd965eebdb7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon20", - "tech": { + { + "name": "Basilius_I", + "drive": 5.85, + "weapons": 2.54, + "shields": 2.2, + "cargo": 1.3, + "population": 1698.34, + "industry": 1368.09, + "planets": 7, + "relation": "War", + "votes": 1.7, + "extinct": false + }, + { + "name": "BlackCrows", + "drive": 8.4, + "weapons": 3.65, + "shields": 3.46, "cargo": 1, - "drive": 11.19, - "shields": 0, - "weapons": 4.76 + "population": 8762.31, + "industry": 7369.94, + "planets": 13, + "relation": "War", + "votes": 8.76, + "extinct": false }, - "cargo": "COL", - "load": 20, - "destination": 177, - "speed": 0, - "mass": 69.3, - "id": "962e84a3-7147-5754-8ee4-dacc5fc0a033", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 669, - "speed": 0, - "mass": 1, - "id": "983fb832-b457-5c86-896e-65d0ba5c288e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 9.09, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 525, - "speed": 0, - "mass": 1, - "id": "91f25671-93af-5bfb-af6c-6af2e25b93cf", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.58, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 647, - "speed": 0, - "mass": 1, - "id": "1210f8ec-7ca1-5c90-8ab2-8ed6555643f7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 535, - "speed": 0, - "mass": 1, - "id": "e98e75de-5217-5d02-8c68-8bcf4cbba97d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 173, - "speed": 0, - "mass": 1, - "id": "b6dbc0b9-d524-59e8-a4ea-0bbde0d7956e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 150, - "speed": 0, - "mass": 1, - "id": "bc283cda-1d59-5a33-9518-53a2550b92ec", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 79, - "speed": 0, - "mass": 1, - "id": "bc7a17d7-938e-5032-bbdf-4777116f0abc", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 636, - "speed": 0, - "mass": 1, - "id": "3c4f0aca-5af9-55ed-88ef-022cd4d2c27a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 2.07 - }, - "cargo": "-", - "load": 0, - "destination": 447, - "speed": 0, - "mass": 1, - "id": "958eadda-28f4-5966-9dc4-8ba2a99162e6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow55", - "tech": { + { + "name": "Bumbastik", + "drive": 5.16, + "weapons": 3.63, + "shields": 2.82, "cargo": 1, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 + "population": 3798.95, + "industry": 1098.07, + "planets": 5, + "relation": "War", + "votes": 3.8, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 99.39, - "id": "57fc1395-9108-533d-a25a-13a001337d09", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Catapult17x2.5", - "tech": { + { + "name": "Bupyc", + "drive": 4.98, + "weapons": 3.4, + "shields": 1.8, "cargo": 1, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 + "population": 3154.58, + "industry": 2970.8, + "planets": 4, + "relation": "Peace", + "votes": 3.15, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 86.85, - "id": "ac28588d-07e3-5b90-8fb6-6401cf38c7db", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Nonstop", - "tech": { - "cargo": 0, - "drive": 0, - "shields": 0, - "weapons": 4.76 - }, - "cargo": "-", - "load": 0, - "destination": 176, - "speed": 0, - "mass": 1, - "id": "75cf0597-eb5d-5441-b83e-b75c41ba0aff", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow49", - "tech": { + { + "name": "Cidonia", + "drive": 5.22, + "weapons": 2.39, + "shields": 2.39, "cargo": 1, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 92.05, - "id": "c9757095-f5c1-502c-b842-1fcd1b93c226", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Sword1x24", - "tech": { + { + "name": "Civilians", + "drive": 10.03, + "weapons": 5.91, + "shields": 5.91, "cargo": 1, - "drive": 10.62, - "shields": 6.6, - "weapons": 4.76 + "population": 18622.78, + "industry": 13339.6, + "planets": 33, + "relation": "War", + "votes": 18.62, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 91.35, - "id": "f4109d1a-9026-588f-b95e-d21b8b256130", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 296, - "speed": 0, - "mass": 1, - "id": "2a6941d9-e0c1-5c32-ab7d-a1f26fa74a59", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 108, - "speed": 0, - "mass": 1, - "id": "17f51955-c4f5-5fc6-9339-82e024fa835a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow55", - "tech": { + { + "name": "CosmicMonkeys", + "drive": 9.39, + "weapons": 1.92, + "shields": 1.89, "cargo": 1, - "drive": 10.62, - "shields": 7.09, - "weapons": 4.76 + "population": 13750.38, + "industry": 10475.77, + "planets": 22, + "relation": "War", + "votes": 13.75, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 99.39, - "id": "532aee0b-6fb8-5c5c-ae3c-4f753e8aef20", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Catapult17x2.5", - "tech": { + { + "name": "Enoxes", + "drive": 11.4, + "weapons": 6.69, + "shields": 5.64, "cargo": 1, - "drive": 10.62, - "shields": 7.09, - "weapons": 4.76 + "population": 10551.24, + "industry": 9949.2, + "planets": 15, + "relation": "War", + "votes": 10.55, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 86.85, - "id": "9ca8a80e-624f-54fa-91ab-44d2badb4bfa", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Bow49", - "tech": { + { + "name": "Flagist", + "drive": 8.49, + "weapons": 5.66, + "shields": 5.77, + "cargo": 1.2, + "population": 11606.08, + "industry": 7939.38, + "planets": 41, + "relation": "Peace", + "votes": 11.61, + "extinct": false + }, + { + "name": "Folland", + "drive": 6.32, + "weapons": 1.9, + "shields": 1.98, + "cargo": 1.12, + "population": 6886.06, + "industry": 5463.58, + "planets": 11, + "relation": "War", + "votes": 10.17, + "extinct": false + }, + { + "name": "Frightners", + "drive": 7.79, + "weapons": 4.81, + "shields": 5.15, "cargo": 1, - "drive": 10.62, - "shields": 7.09, - "weapons": 4.76 + "population": 10885.77, + "industry": 9356.2, + "planets": 18, + "relation": "War", + "votes": 10.89, + "extinct": false }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 92.05, - "id": "465703ad-7f21-520d-a3f6-4e49a72bb269", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Sword1x24", - "tech": { - "cargo": 1, - "drive": 10.62, - "shields": 7.09, - "weapons": 4.76 - }, - "cargo": "COL", - "load": 1.05, - "destination": 385, - "speed": 0, - "mass": 91.35, - "id": "3abc074b-4046-580b-8c72-197e6fa42e23", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 100, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 5.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 1, - "id": "49e9480a-6cfe-5ff5-99e4-8876bbec6882", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 338, - "speed": 0, - "mass": 1, - "id": "70381094-4273-5ec5-9d97-3a2daead4864", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 222, - "speed": 0, - "mass": 1, - "id": "6ee5da70-4255-5d2c-8ee2-f488a0118b96", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 15, - "speed": 0, - "mass": 1, - "id": "ac5cc7e9-4680-5078-80fd-edd56af41a11", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 251, - "speed": 0, - "mass": 1, - "id": "3fb60e08-66f1-5e2f-91e1-7a387f0f0c1d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 72, - "speed": 0, - "mass": 1, - "id": "1258fd4e-661b-5c85-a2e7-f922a1aba59e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 434, - "speed": 0, - "mass": 1, - "id": "84775467-eac9-58b8-8466-88eb48cbba8c", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 340, - "speed": 0, - "mass": 1, - "id": "cbcb1b66-59a9-59ca-b2b8-7abf154dc6a6", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 305, - "speed": 0, - "mass": 1, - "id": "ccd6f110-97a5-5081-a007-38f8e1387de7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 409, - "speed": 0, - "mass": 1, - "id": "10f8b324-13a3-5912-a887-64d0e503c591", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 4.6, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 624, - "speed": 0, - "mass": 1, - "id": "6e6a5177-71de-5f7d-834d-4fe153bd0d73", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 57, - "class": "PeaceShip", - "tech": { - "cargo": 0, + { + "name": "Glaurung", "drive": 9.11, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 1, - "id": "7d90339f-488f-58d8-a118-737dfe82eb0f", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 96, - "class": "Buckler100", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 4.84, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 385, - "speed": 0, - "mass": 2, - "id": "7d56f165-c2aa-51fa-84d3-239dfa277f79", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 116, - "speed": 0, - "mass": 1, - "id": "b66af58a-7039-57dd-96e6-f268d81dc80a", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 10.62, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 38, - "speed": 0, - "mass": 1, - "id": "2aec44f4-b3fc-53f7-af01-06565eda6fa7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 438, - "speed": 0, - "mass": 1, - "id": "e204b22e-3112-59d6-8571-2aecf3a0be4e", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 2, - "speed": 0, - "mass": 1, - "id": "4c565d59-f50a-5509-8765-bcaf42f056ec", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 421, - "speed": 0, - "mass": 1, - "id": "51288ce4-b69d-561a-a4a0-a4b408831118", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 569, - "speed": 0, - "mass": 1, - "id": "f3aed80b-f85f-5cd1-b6c5-e5e99c03918d", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 436, - "speed": 0, - "mass": 1, - "id": "e59329f5-4a55-59af-b48e-688d7dbb94b1", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "Furgon10", - "tech": { + "weapons": 4.77, + "shields": 4.25, "cargo": 1, - "drive": 10.62, - "shields": 0, - "weapons": 0 + "population": 11406.58, + "industry": 9622.37, + "planets": 16, + "relation": "War", + "votes": 11.41, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 572, - "speed": 0, - "mass": 24.75, - "id": "2e57764e-c658-562c-92da-299af97960d7", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 2, - "class": "Col12", - "tech": { + { + "name": "HAEMHuKu-2000", + "drive": 7.1, + "weapons": 5.61, + "shields": 5.08, "cargo": 1, - "drive": 8.56, - "shields": 0, - "weapons": 0 + "population": 13194.95, + "industry": 10534.65, + "planets": 17, + "relation": "Peace", + "votes": 13.19, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 495, - "origin": 618, - "range": 152.03, - "speed": 0, - "mass": 24.72, - "id": "8a4edf71-a9c0-5c2d-ab80-d7f7842e3fd2", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "Col10", - "tech": { + { + "name": "Kellerants", + "drive": 4.25, + "weapons": 2.52, + "shields": 2.16, "cargo": 1, - "drive": 7.96, - "shields": 0, - "weapons": 0 + "population": 0, + "industry": 0, + "planets": 0, + "relation": "Peace", + "votes": 0, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 495, - "origin": 502, - "range": 257.28, - "speed": 0, - "mass": 16.5, - "id": "d0f02b60-afe1-5ad0-95f7-416c28486d19", - "state": "In_Space", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 176, - "speed": 0, - "mass": 1, - "id": "61dd202c-344a-595a-afcb-44a33ed76787", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 223, - "speed": 0, - "mass": 1, - "id": "291c8956-14ab-5283-936c-08f84bf97a80", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, - "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 447, - "speed": 0, - "mass": 1, - "id": "d72f12bc-7a7f-5dd0-bcab-0881081c1806", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 7, - "class": "SpetsNaz", - "tech": { + { + "name": "kenguri", + "drive": 5.77, + "weapons": 2.81, + "shields": 1.95, "cargo": 1, - "drive": 11.19, + "population": 5525.68, + "industry": 4665.12, + "planets": 9, + "relation": "War", + "votes": 5.53, + "extinct": false + }, + { + "name": "KnightErrants", + "drive": 13.25, + "weapons": 6.11, "shields": 7.09, - "weapons": 6.11 + "cargo": 1, + "population": 16015.04, + "industry": 13668.76, + "planets": 22, + "relation": "-", + "votes": 16.02, + "extinct": false }, - "cargo": "-", - "load": 0, - "destination": 523, - "speed": 0, - "mass": 7.1, - "id": "13a322b6-93d4-53c8-ab6b-02b6bafc575b", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, + { + "name": "Koreans", + "drive": 9.87, + "weapons": 5.96, + "shields": 4.86, + "cargo": 1, + "population": 17219.68, + "industry": 10772.78, + "planets": 32, + "relation": "Peace", + "votes": 17.22, + "extinct": false + }, + { + "name": "Manya", + "drive": 10.74, + "weapons": 7.63, + "shields": 6.08, + "cargo": 1, + "population": 16636.2, + "industry": 11990.65, + "planets": 24, + "relation": "War", + "votes": 16.64, + "extinct": false + }, + { + "name": "Meeps", + "drive": 14.25, + "weapons": 6.5, + "shields": 6.5, + "cargo": 1, + "population": 17898.73, + "industry": 11277.72, + "planets": 40, + "relation": "War", + "votes": 17.9, + "extinct": false + }, + { + "name": "Minbari", + "drive": 6.18, + "weapons": 2.6, + "shields": 3, + "cargo": 1, + "population": 2503.59, + "industry": 1357.36, + "planets": 15, + "relation": "War", + "votes": 2.5, + "extinct": false + }, + { + "name": "Monstrai", + "drive": 5.46, + "weapons": 2, + "shields": 3.08, + "cargo": 1, + "population": 550.87, + "industry": 339.91, + "planets": 5, + "relation": "Peace", + "votes": 0.55, + "extinct": false + }, + { + "name": "Nails", + "drive": 4.98, + "weapons": 3.97, + "shields": 3.19, + "cargo": 1, + "population": 5621.86, + "industry": 1441.97, + "planets": 14, + "relation": "Peace", + "votes": 5.62, + "extinct": false + }, + { + "name": "Onix", + "drive": 8.32, + "weapons": 8.1, + "shields": 5.93, + "cargo": 1, + "population": 12714.51, + "industry": 12361.96, + "planets": 14, + "relation": "War", + "votes": 12.71, + "extinct": false + }, + { + "name": "Orla", + "drive": 8.13, + "weapons": 3.7, + "shields": 3.7, + "cargo": 2, + "population": 6577.64, + "industry": 6376.51, + "planets": 10, + "relation": "War", + "votes": 6.58, + "extinct": false + }, + { + "name": "Oselots", + "drive": 10, + "weapons": 5.46, + "shields": 5.2, + "cargo": 1, + "population": 14388.51, + "industry": 13910.51, + "planets": 23, + "relation": "War", + "votes": 14.39, + "extinct": false + }, + { + "name": "Ricksha", + "drive": 7.63, + "weapons": 3.36, + "shields": 3.95, + "cargo": 1, + "population": 9671.14, + "industry": 6485.63, + "planets": 23, + "relation": "War", + "votes": 9.67, + "extinct": false + }, + { + "name": "Shuriki", + "drive": 7.98, + "weapons": 3.39, + "shields": 3.41, + "cargo": 1.42, + "population": 4214.77, + "industry": 2993.78, + "planets": 13, + "relation": "War", + "votes": 4.21, + "extinct": false + }, + { + "name": "sidiki", + "drive": 8.5, + "weapons": 3.79, + "shields": 4.54, + "cargo": 1.1, + "population": 10172.24, + "industry": 7091.68, + "planets": 12, + "relation": "War", + "votes": 6.89, + "extinct": false + }, + { + "name": "Slimes", + "drive": 5.79, + "weapons": 4.05, + "shields": 3.01, + "cargo": 1.73, + "population": 8596.02, + "industry": 5372.62, + "planets": 13, + "relation": "Peace", + "votes": 8.6, + "extinct": false + }, + { + "name": "SSSan", + "drive": 14.1, + "weapons": 8.23, + "shields": 6.37, + "cargo": 1.1, + "population": 2033.87, + "industry": 1590.06, + "planets": 4, + "relation": "Peace", + "votes": 2.03, + "extinct": false + }, + { + "name": "TwelvePointedCross", + "drive": 8.75, + "weapons": 5.26, + "shields": 4.2, + "cargo": 1, + "population": 16050.81, + "industry": 12423.45, + "planets": 22, + "relation": "Peace", + "votes": 16.05, + "extinct": false + }, + { + "name": "Umbra", + "drive": 11.37, + "weapons": 3.94, + "shields": 2.58, + "cargo": 1, + "population": 7272.35, + "industry": 6974.03, + "planets": 10, + "relation": "War", + "votes": 7.27, + "extinct": false + }, + { + "name": "Zerg", + "drive": 5.22, + "weapons": 3.77, + "shields": 1.91, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": false + }, + { + "name": "Zodiac", + "drive": 10.14, + "weapons": 4.74, + "shields": 4.61, + "cargo": 1, + "population": 15097.89, + "industry": 9607.73, + "planets": 25, + "relation": "Peace", + "votes": 15.1, + "extinct": false + }, + { + "name": "argo", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Arkoid", + "drive": 4.02, + "weapons": 1.12, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Atoms", + "drive": 3.2, + "weapons": 3.67, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Baravykai", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Baton", + "drive": 6.8, + "weapons": 3.31, + "shields": 1.91, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Believes", + "drive": 3.9, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Boroda", + "drive": 5.6, + "weapons": 1.2, + "shields": 1.2, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "BrainLess", + "drive": 6.29, + "weapons": 4.13, + "shields": 1.45, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "Peace", + "votes": 0, + "extinct": true + }, + { + "name": "Cezar", + "drive": 3.2, + "weapons": 2.68, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "DevilMasters", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "diminoid", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Fanatics", + "drive": 3.19, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "FIREBART", + "drive": 3.9, + "weapons": 1.3, + "shields": 1.2, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Fomi4", + "drive": 4.84, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "FOX", + "drive": 3.92, + "weapons": 3.17, + "shields": 2.87, + "cargo": 3.37, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Fredoids", + "drive": 2, + "weapons": 1, + "shields": 1.57, + "cargo": 1.4, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "garbage", + "drive": 1.4, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Ghost", + "drive": 3.8, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "goodee", + "drive": 4.99, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Greedy", + "drive": 6.4, + "weapons": 2.45, + "shields": 3.05, + "cargo": 1.1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Guardhogs", + "drive": 7.79, + "weapons": 1.3, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Half-griffons", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Jedi", + "drive": 4.34, + "weapons": 1.52, + "shields": 1.6, + "cargo": 1.1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "killer", + "drive": 6.55, + "weapons": 3.65, + "shields": 1.35, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "KOBA", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "KOPEW", + "drive": 4.2, + "weapons": 1.8, + "shields": 1.93, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "KRUTIE", + "drive": 2.9, + "weapons": 2.43, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Lawyers", + "drive": 4.2, + "weapons": 1, + "shields": 7, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Lox", + "drive": 5.6, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "MiniDisc", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Morpheus", + "drive": 4.08, + "weapons": 1, + "shields": 1.68, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "Peace", + "votes": 0, + "extinct": true + }, + { + "name": "Nova", + "drive": 6.22, + "weapons": 3.82, + "shields": 3.82, + "cargo": 1.03, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "OldRelikt", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Orda", + "drive": 6.62, + "weapons": 2.4, + "shields": 1.56, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Paradox", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "People", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Piligrims", + "drive": 7.1, + "weapons": 1, + "shields": 2.3, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Protoss", + "drive": 3.3, + "weapons": 2.48, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Relikt", + "drive": 4.99, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "S-Lord", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Ser_Arthur_Empire", + "drive": 1.6, + "weapons": 1.01, + "shields": 1.61, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "ShivanDragon", + "drive": 7.01, + "weapons": 1.4, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Smile", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Spag", + "drive": 4.6, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "SystemError", + "drive": 5.6, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "UkrFerry", + "drive": 4.46, + "weapons": 1.44, + "shields": 1.44, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "Untochebal", + "drive": 4.88, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "VlaSvr", + "drive": 1.6, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + }, + { + "name": "WinDemons", + "drive": 5, + "weapons": 1, + "shields": 1, + "cargo": 1, + "population": 0, + "industry": 0, + "planets": 0, + "relation": "War", + "votes": 0, + "extinct": true + } + ], + "localScience": [ + { + "name": "Temp", + "drive": 0.3, + "weapons": 0.7, "shields": 0, - "weapons": 0 - }, - "cargo": "-", - "load": 0, - "destination": 636, - "speed": 0, - "mass": 1, - "id": "d39b1831-22e6-5131-bd25-4690f4277a23", - "state": "In_Orbit", - "fleet": null - }, - { - "number": 1, - "class": "PeaceShip", - "tech": { - "cargo": 0, - "drive": 11.19, + "cargo": 0 + } + ], + "otherScience": [ + { + "race": "Zodiac", + "name": "WS_45x55", + "drive": 0, + "weapons": 0.45, + "shields": 0.55, + "cargo": 0 + } + ], + "localShipClass": [ + { + "name": "Frontier", + "drive": 11.37, + "armament": 0, + "weapons": 0, "shields": 0, - "weapons": 0 + "cargo": 1, + "mass": 12.37 }, - "cargo": "-", - "load": 0, - "destination": 685, - "speed": 0, - "mass": 1, - "id": "f96cd083-0e78-56e2-a2fd-79ca77ea635f", - "state": "In_Orbit", - "fleet": null + { + "name": "Furgon5", + "drive": 8.22, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 4.15, + "mass": 12.37 + }, + { + "name": "Furgon10", + "drive": 17.14, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 7.61, + "mass": 24.75 + }, + { + "name": "Nonstop", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "name": "Drone", + "drive": 2.5, + "armament": 1, + "weapons": 2.08, + "shields": 2.49, + "cargo": 0, + "mass": 7.07 + }, + { + "name": "PeaceShip", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "name": "Bow105", + "drive": 74.77, + "armament": 105, + "weapons": 1, + "shields": 19.72, + "cargo": 1, + "mass": 148.49 + }, + { + "name": "CrossBow52x2", + "drive": 74.77, + "armament": 52, + "weapons": 2, + "shields": 19.72, + "cargo": 1, + "mass": 148.49 + }, + { + "name": "Catapult5x25", + "drive": 99.53, + "armament": 5, + "weapons": 25.3, + "shields": 21.57, + "cargo": 1, + "mass": 198 + }, + { + "name": "Tormoz49", + "drive": 26.63, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 22.87, + "mass": 49.5 + }, + { + "name": "Catapult8x7", + "drive": 49.5, + "armament": 8, + "weapons": 7, + "shields": 18, + "cargo": 0, + "mass": 99 + }, + { + "name": "Invalid", + "drive": 25, + "armament": 1, + "weapons": 17, + "shields": 7.99, + "cargo": 0, + "mass": 49.99 + }, + { + "name": "Furgon10b", + "drive": 17.42, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 7.33, + "mass": 24.75 + }, + { + "name": "Stop", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 1.26, + "cargo": 0, + "mass": 2.26 + }, + { + "name": "Buckler100", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "name": "Furgon20", + "drive": 35.94, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 12.36, + "mass": 49.3 + }, + { + "name": "Furgon100", + "drive": 63, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 35.83, + "mass": 98.83 + }, + { + "name": "Bow55", + "drive": 49.17, + "armament": 55, + "weapons": 1, + "shields": 20.17, + "cargo": 1, + "mass": 98.34 + }, + { + "name": "Sword1x24", + "drive": 45.16, + "armament": 1, + "weapons": 24.67, + "shields": 19.47, + "cargo": 1, + "mass": 90.3 + }, + { + "name": "Catapult17x2.5", + "drive": 42.9, + "armament": 17, + "weapons": 2.53, + "shields": 19.13, + "cargo": 1, + "mass": 85.8 + }, + { + "name": "Bow49", + "drive": 45.51, + "armament": 49, + "weapons": 1, + "shields": 19.49, + "cargo": 1, + "mass": 91 + }, + { + "name": "SpetsNaz", + "drive": 3.3, + "armament": 1, + "weapons": 1, + "shields": 1.8, + "cargo": 1, + "mass": 7.1 + }, + { + "name": "Col12", + "drive": 16.28, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 8.44, + "mass": 24.72 + }, + { + "name": "Col10", + "drive": 9.18, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 7.32, + "mass": 16.5 + } + ], + "otherShipClass": [ + { + "race": "Monstrai", + "name": "Dragon", + "drive": 16.7, + "armament": 1, + "weapons": 1.1, + "shields": 1, + "cargo": 1, + "mass": 19.8 + }, + { + "race": "Monstrai", + "name": "Muxa_CC", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Monstrai", + "name": "UrodX151", + "drive": 99, + "armament": 151, + "weapons": 1, + "shields": 23, + "cargo": 0, + "mass": 198 + }, + { + "race": "Monstrai", + "name": "UrodX70", + "drive": 95.95, + "armament": 70, + "weapons": 2, + "shields": 24.95, + "cargo": 0, + "mass": 191.9 + }, + { + "race": "Monstrai", + "name": "UrodX10", + "drive": 78.47, + "armament": 10, + "weapons": 10, + "shields": 23.47, + "cargo": 0, + "mass": 156.94 + }, + { + "race": "Monstrai", + "name": "Igla", + "drive": 48.48, + "armament": 1, + "weapons": 32.48, + "shields": 15, + "cargo": 0, + "mass": 95.96 + }, + { + "race": "TwelvePointedCross", + "name": "DeadPig", + "drive": 31.5, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 17.93, + "mass": 49.43 + }, + { + "race": "TwelvePointedCross", + "name": "DeadHippo", + "drive": 44, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 54.03, + "mass": 98.03 + }, + { + "race": "TwelvePointedCross", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "TwelvePointedCross", + "name": "Vanity", + "drive": 17.4, + "armament": 4, + "weapons": 9.2, + "shields": 9, + "cargo": 0, + "mass": 49.4 + }, + { + "race": "HAEMHuKu-2000", + "name": "dr", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Orla", + "name": "Orldr_sh", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Orla", + "name": "Orlcol_sh", + "drive": 24.5, + "armament": 1, + "weapons": 1, + "shields": 1, + "cargo": 23, + "mass": 49.5 + }, + { + "race": "Orla", + "name": "Orlbum_sh", + "drive": 35, + "armament": 2, + "weapons": 30.53, + "shields": 18.21, + "cargo": 0, + "mass": 99 + }, + { + "race": "Orla", + "name": "Orlperf_sh", + "drive": 25, + "armament": 28, + "weapons": 3, + "shields": 30.5, + "cargo": 0, + "mass": 99 + }, + { + "race": "Orla", + "name": "Orldrs_sh2", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Bumbastik", + "name": "Pistolet", + "drive": 5.11, + "armament": 1, + "weapons": 3.11, + "shields": 8.27, + "cargo": 0, + "mass": 16.49 + }, + { + "race": "Bumbastik", + "name": "BAX", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bumbastik", + "name": "Br-2", + "drive": 3.6, + "armament": 1, + "weapons": 1.15, + "shields": 5.1, + "cargo": 0, + "mass": 9.85 + }, + { + "race": "Bumbastik", + "name": "Tb-12_9.48", + "drive": 0, + "armament": 12, + "weapons": 9.48, + "shields": 54.63, + "cargo": 0, + "mass": 116.25 + }, + { + "race": "Bumbastik", + "name": "Pb-125_56.94", + "drive": 0, + "armament": 125, + "weapons": 1, + "shields": 56.94, + "cargo": 0, + "mass": 119.94 + }, + { + "race": "Bumbastik", + "name": "P110", + "drive": 46.57, + "armament": 110, + "weapons": 1.04, + "shields": 13.81, + "cargo": 1, + "mass": 119.1 + }, + { + "race": "Bumbastik", + "name": "T9", + "drive": 38.76, + "armament": 9, + "weapons": 9.24, + "shields": 12.99, + "cargo": 1, + "mass": 98.95 + }, + { + "race": "Bumbastik", + "name": "D18.56", + "drive": 19.59, + "armament": 1, + "weapons": 18.56, + "shields": 10.35, + "cargo": 1, + "mass": 49.5 + }, + { + "race": "Bumbastik", + "name": "8-D", + "drive": 0, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bumbastik", + "name": "K-1", + "drive": 16.12, + "armament": 1, + "weapons": 2.67, + "shields": 5.32, + "cargo": 0, + "mass": 24.11 + }, + { + "race": "Bumbastik", + "name": "K-2", + "drive": 21.51, + "armament": 1, + "weapons": 4.8, + "shields": 5.86, + "cargo": 0, + "mass": 32.17 + }, + { + "race": "Bumbastik", + "name": "Gun", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bumbastik", + "name": "P-1.5", + "drive": 0, + "armament": 122, + "weapons": 1.5, + "shields": 27.57, + "cargo": 0, + "mass": 119.82 + }, + { + "race": "Zodiac", + "name": "Makar", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Zodiac", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Zodiac", + "name": "Gruz_35", + "drive": 65, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 35, + "mass": 100 + }, + { + "race": "Zodiac", + "name": "Perf_156x1", + "drive": 99.5, + "armament": 156, + "weapons": 1, + "shields": 15, + "cargo": 1, + "mass": 194 + }, + { + "race": "Zodiac", + "name": "3axBaT", + "drive": 3.5, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1, + "mass": 4.5 + }, + { + "race": "Zodiac", + "name": "Tur_8x7", + "drive": 54.5, + "armament": 8, + "weapons": 7, + "shields": 19, + "cargo": 1, + "mass": 106 + }, + { + "race": "Zodiac", + "name": "Krysha", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Zodiac", + "name": "Perf_100x1", + "drive": 34, + "armament": 100, + "weapons": 1, + "shields": 10, + "cargo": 1, + "mass": 95.5 + }, + { + "race": "Zodiac", + "name": "Ataker_1x15", + "drive": 115.73, + "armament": 1, + "weapons": 15, + "shields": 103.27, + "cargo": 1, + "mass": 235 + }, + { + "race": "Zodiac", + "name": "Gruz_55W", + "drive": 160, + "armament": 1, + "weapons": 10, + "shields": 10, + "cargo": 55, + "mass": 235 + }, + { + "race": "Oselots", + "name": "DDD", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Flagist", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Flagist", + "name": "Muxa_CC", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Flagist", + "name": "Vakain_Perf", + "drive": 145.88, + "armament": 345, + "weapons": 1, + "shields": 36.55, + "cargo": 0, + "mass": 355.43 + }, + { + "race": "Flagist", + "name": "HDrone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Flagist", + "name": "Hi", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Flagist", + "name": "Anla_Gun", + "drive": 41, + "armament": 1, + "weapons": 42.3, + "shields": 14.7, + "cargo": 1, + "mass": 99 + }, + { + "race": "Flagist", + "name": "Vakain_TurretA", + "drive": 73.73, + "armament": 14, + "weapons": 10, + "shields": 28.04, + "cargo": 1, + "mass": 177.77 + }, + { + "race": "Flagist", + "name": "Kin_PerTu", + "drive": 66.77, + "armament": 28, + "weapons": 5, + "shields": 20.5, + "cargo": 1, + "mass": 160.77 + }, + { + "race": "Flagist", + "name": "Cargo_67", + "drive": 74.03, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 24.9, + "mass": 98.93 + }, + { + "race": "Flagist", + "name": "Cargo_82", + "drive": 50.9, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 28.4, + "mass": 80.3 + }, + { + "race": "Flagist", + "name": "Spores", + "drive": 3, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 1, + "mass": 5 + }, + { + "race": "Manya", + "name": "Dron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bupyc", + "name": "drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Bupyc", + "name": "KuHa_He_6ygeT", + "drive": 1, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 2 + }, + { + "race": "CosmicMonkeys", + "name": "DPOH", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "CosmicMonkeys", + "name": "d", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "Marker", + "drive": 14.5, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 1, + "mass": 16.5 + }, + { + "race": "Koreans", + "name": "Cargo:20", + "drive": 85.6, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 12.36, + "mass": 98.96 + }, + { + "race": "Koreans", + "name": "!", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "Capavoz100", + "drive": 63, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 36, + "mass": 99 + }, + { + "race": "Koreans", + "name": "colovoz10", + "drive": 42.14, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 7.32, + "mass": 49.46 + }, + { + "race": "Koreans", + "name": "d", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "TYPKA", + "drive": 25, + "armament": 3, + "weapons": 5.13, + "shields": 14.17, + "cargo": 0, + "mass": 49.43 + }, + { + "race": "Koreans", + "name": "Perfik", + "drive": 50.55, + "armament": 60, + "weapons": 1, + "shields": 17.86, + "cargo": 0, + "mass": 98.91 + }, + { + "race": "Koreans", + "name": "PolyCruiser:96x1.6", + "drive": 100, + "armament": 96, + "weapons": 1.6, + "shields": 18.77, + "cargo": 1, + "mass": 197.37 + }, + { + "race": "Koreans", + "name": "Cruiser:5x6.71", + "drive": 33.25, + "armament": 5, + "weapons": 6.71, + "shields": 13.03, + "cargo": 0, + "mass": 66.41 + }, + { + "race": "Koreans", + "name": "Col27", + "drive": 58.3, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 15.3, + "mass": 73.6 + }, + { + "race": "Koreans", + "name": "PolyGun:112x1.6", + "drive": 111, + "armament": 112, + "weapons": 1.6, + "shields": 19.52, + "cargo": 1, + "mass": 221.92 + }, + { + "race": "Koreans", + "name": "PolyGun:103x1.5", + "drive": 97.2, + "armament": 103, + "weapons": 1.5, + "shields": 18.69, + "cargo": 1, + "mass": 194.89 + }, + { + "race": "Koreans", + "name": "Cruiser:5x6.9", + "drive": 35, + "armament": 5, + "weapons": 6.9, + "shields": 13.16, + "cargo": 1, + "mass": 69.86 + }, + { + "race": "Koreans", + "name": "MonoGun:1x55", + "drive": 73.66, + "armament": 1, + "weapons": 55, + "shields": 17.52, + "cargo": 1, + "mass": 147.18 + }, + { + "race": "Koreans", + "name": "PolyGun:57x1", + "drive": 44, + "armament": 57, + "weapons": 1, + "shields": 14.12, + "cargo": 0, + "mass": 87.12 + }, + { + "race": "Koreans", + "name": "Cruiser:6x6", + "drive": 34.2, + "armament": 6, + "weapons": 6, + "shields": 12.99, + "cargo": 0, + "mass": 68.19 + }, + { + "race": "Koreans", + "name": "PolyCruiser:21x7.1", + "drive": 97.2, + "armament": 21, + "weapons": 7.1, + "shields": 18.69, + "cargo": 1, + "mass": 194.99 + }, + { + "race": "Koreans", + "name": "PolyCruiser:24x7.2", + "drive": 111, + "armament": 24, + "weapons": 7.2, + "shields": 19.52, + "cargo": 1, + "mass": 221.52 + }, + { + "race": "Koreans", + "name": "MonoGun1x33", + "drive": 50, + "armament": 1, + "weapons": 33, + "shields": 15, + "cargo": 1, + "mass": 99 + }, + { + "race": "Koreans", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "DPOH", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Koreans", + "name": "FortStone:1x70", + "drive": 0, + "armament": 1, + "weapons": 70, + "shields": 151, + "cargo": 1, + "mass": 222 + }, + { + "race": "Koreans", + "name": "Cruiser:5x7.65", + "drive": 37, + "armament": 5, + "weapons": 7.65, + "shields": 13.59, + "cargo": 0, + "mass": 73.54 + }, + { + "race": "Koreans", + "name": "Cruiser:7x8.24", + "drive": 50, + "armament": 7, + "weapons": 8.24, + "shields": 14.94, + "cargo": 1, + "mass": 98.9 + }, + { + "race": "Koreans", + "name": "Defender:1x7", + "drive": 28, + "armament": 1, + "weapons": 7, + "shields": 35.58, + "cargo": 0, + "mass": 70.58 + }, + { + "race": "Koreans", + "name": "Defender:1x6", + "drive": 23.51, + "armament": 1, + "weapons": 6, + "shields": 35.58, + "cargo": 0, + "mass": 65.09 + }, + { + "race": "Koreans", + "name": "dperf:54x1", + "drive": 19.3, + "armament": 54, + "weapons": 1, + "shields": 11.56, + "cargo": 0, + "mass": 58.36 + }, + { + "race": "Kellerants", + "name": "Atom", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Barcarols", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Onix", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "SSSan", + "name": "SMCol", + "drive": 10.69, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 5.81, + "mass": 16.5 + }, + { + "race": "SSSan", + "name": "Popka", + "drive": 14.5, + "armament": 1, + "weapons": 1, + "shields": 1, + "cargo": 0, + "mass": 16.5 + }, + { + "race": "SSSan", + "name": "Dr", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "SSSan", + "name": "DDRR", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "SSSan", + "name": "Per", + "drive": 76.55, + "armament": 90, + "weapons": 2, + "shields": 28.7, + "cargo": 0, + "mass": 196.25 + }, + { + "race": "SSSan", + "name": "SD", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1.08, + "cargo": 0, + "mass": 2.08 + }, + { + "race": "SSSan", + "name": "SD1", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "SSSan", + "name": "Dulko1", + "drive": 37.75, + "armament": 1, + "weapons": 25, + "shields": 25.96, + "cargo": 0, + "mass": 88.71 + }, + { + "race": "SSSan", + "name": "PE", + "drive": 21.04, + "armament": 31, + "weapons": 1.02, + "shields": 12.08, + "cargo": 0, + "mass": 49.44 + }, + { + "race": "SSSan", + "name": "LTurretA_N", + "drive": 9.87, + "armament": 1, + "weapons": 3.9, + "shields": 8.14, + "cargo": 0, + "mass": 21.91 + }, + { + "race": "SSSan", + "name": "Drone_2", + "drive": 2.03, + "armament": 0, + "weapons": 0, + "shields": 2, + "cargo": 0, + "mass": 4.03 + }, + { + "race": "SSSan", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "SSSan", + "name": "Puf", + "drive": 1, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 2 + }, + { + "race": "Shuriki", + "name": "SDron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Civilians", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "AT-2560TX", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Acreators", + "name": "DPOH", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "BlackCrows", + "name": "Colo", + "drive": 5.18, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1, + "mass": 6.18 + }, + { + "race": "BlackCrows", + "name": "Dron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Nails", + "name": "cal", + "drive": 48, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1.35, + "mass": 49.35 + }, + { + "race": "Nails", + "name": "cargonoid2", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1.4, + "mass": 2.4 + }, + { + "race": "Nails", + "name": "cargonoid3", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1.6, + "mass": 2.6 + }, + { + "race": "Nails", + "name": "cargonoid4", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 2.5, + "mass": 3.5 + }, + { + "race": "Nails", + "name": "dron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Nails", + "name": "justcargo", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1, + "mass": 2 + }, + { + "race": "Nails", + "name": "Aerosmith", + "drive": 1.8, + "armament": 1, + "weapons": 3.1, + "shields": 9.18, + "cargo": 0, + "mass": 14.08 + }, + { + "race": "Nails", + "name": "pup", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Nails", + "name": "kil-VI-5", + "drive": 5.3, + "armament": 5, + "weapons": 7.1, + "shields": 39.9, + "cargo": 0, + "mass": 66.5 + }, + { + "race": "Nails", + "name": "at-AR-3", + "drive": 6, + "armament": 3, + "weapons": 5, + "shields": 33.5, + "cargo": 0, + "mass": 49.5 + }, + { + "race": "Nails", + "name": "perf-VI-30", + "drive": 42.72, + "armament": 30, + "weapons": 1, + "shields": 7.34, + "cargo": 1, + "mass": 66.56 + }, + { + "race": "Nails", + "name": "48", + "drive": 56.5, + "armament": 48, + "weapons": 1, + "shields": 7, + "cargo": 1, + "mass": 89 + }, + { + "race": "Nails", + "name": "1", + "drive": 42.7, + "armament": 1, + "weapons": 14, + "shields": 8.86, + "cargo": 1, + "mass": 66.56 + }, + { + "race": "Nails", + "name": "18a", + "drive": 32, + "armament": 18, + "weapons": 1, + "shields": 6.94, + "cargo": 1, + "mass": 49.44 + }, + { + "race": "Nails", + "name": "18b", + "drive": 32.85, + "armament": 18, + "weapons": 1, + "shields": 7.15, + "cargo": 0, + "mass": 49.5 + }, + { + "race": "Nails", + "name": "1a", + "drive": 56.35, + "armament": 1, + "weapons": 20.5, + "shields": 11.3, + "cargo": 1, + "mass": 89.15 + }, + { + "race": "Nails", + "name": "1b", + "drive": 32, + "armament": 1, + "weapons": 9.1, + "shields": 7.34, + "cargo": 1, + "mass": 49.44 + }, + { + "race": "Nails", + "name": "5", + "drive": 32, + "armament": 5, + "weapons": 3.4, + "shields": 6.2, + "cargo": 1, + "mass": 49.4 + }, + { + "race": "Nails", + "name": "54", + "drive": 53.3, + "armament": 54, + "weapons": 1, + "shields": 7.3, + "cargo": 1, + "mass": 89.1 + }, + { + "race": "Nails", + "name": "1big", + "drive": 41, + "armament": 1, + "weapons": 17, + "shields": 8.55, + "cargo": 0, + "mass": 66.55 + }, + { + "race": "Nails", + "name": "25", + "drive": 31.1, + "armament": 25, + "weapons": 1, + "shields": 4.9, + "cargo": 0, + "mass": 49 + }, + { + "race": "Nails", + "name": "40", + "drive": 40.8, + "armament": 40, + "weapons": 1, + "shields": 4.98, + "cargo": 0, + "mass": 66.28 + }, + { + "race": "Nails", + "name": "59_1", + "drive": 62, + "armament": 59, + "weapons": 1, + "shields": 6, + "cargo": 0, + "mass": 98 + }, + { + "race": "Nails", + "name": "_pup_", + "drive": 1.17, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2.17 + }, + { + "race": "AbubaGerbographerPot", + "name": "Drone", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "AbubaGerbographerPot", + "name": "BigCol", + "drive": 34.5, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 15, + "mass": 49.5 + }, + { + "race": "AbubaGerbographerPot", + "name": "Drone_2", + "drive": 2.03, + "armament": 0, + "weapons": 0, + "shields": 2, + "cargo": 0, + "mass": 4.03 + }, + { + "race": "AbubaGerbographerPot", + "name": "Puf", + "drive": 1, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 2 + }, + { + "race": "6PATBA", + "name": "6pamuwka", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Ricksha", + "name": "Colonaizer", + "drive": 7.13, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 1.12, + "mass": 8.25 + }, + { + "race": "Ricksha", + "name": "Colovozka", + "drive": 37.13, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 12.37, + "mass": 49.5 + }, + { + "race": "Ricksha", + "name": "TAPAHTAuKA", + "drive": 63.6, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 35.4, + "mass": 99 + }, + { + "race": "Ricksha", + "name": "Dron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Ricksha", + "name": "HE_CMOTPETb", + "drive": 0, + "armament": 1, + "weapons": 1, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Ricksha", + "name": "OXPAHA", + "drive": 49.5, + "armament": 8, + "weapons": 8.3, + "shields": 12.15, + "cargo": 0, + "mass": 99 + }, + { + "race": "Ricksha", + "name": "ME4TA", + "drive": 100, + "armament": 150, + "weapons": 1, + "shields": 21.5, + "cargo": 1, + "mass": 198 + }, + { + "race": "Ricksha", + "name": "HDron", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "Ricksha", + "name": "T805", + "drive": 34, + "armament": 1, + "weapons": 21.05, + "shields": 10.1, + "cargo": 0, + "mass": 65.15 + }, + { + "race": "Ricksha", + "name": "T541", + "drive": 25.65, + "armament": 1, + "weapons": 18, + "shields": 5.85, + "cargo": 0, + "mass": 49.5 + }, + { + "race": "Ricksha", + "name": "T16", + "drive": 25.91, + "armament": 1, + "weapons": 17.74, + "shields": 5.85, + "cargo": 0, + "mass": 49.5 + }, + { + "race": "Ricksha", + "name": "T717", + "drive": 125, + "armament": 8, + "weapons": 24, + "shields": 15, + "cargo": 1, + "mass": 249 + }, + { + "race": "Ricksha", + "name": "T6901", + "drive": 63, + "armament": 3, + "weapons": 22, + "shields": 16.33, + "cargo": 1, + "mass": 124.33 + }, + { + "race": "Ricksha", + "name": "SuperGuard", + "drive": 38.77, + "armament": 1, + "weapons": 14, + "shields": 45.23, + "cargo": 1, + "mass": 99 + }, + { + "race": "Ricksha", + "name": "T747", + "drive": 180, + "armament": 25, + "weapons": 11.91, + "shields": 23.3, + "cargo": 1, + "mass": 359.13 + }, + { + "race": "Ricksha", + "name": "T845", + "drive": 40, + "armament": 1, + "weapons": 23.7, + "shields": 14, + "cargo": 1, + "mass": 78.7 + }, + { + "race": "Ricksha", + "name": "T612", + "drive": 50, + "armament": 2, + "weapons": 20, + "shields": 18, + "cargo": 1, + "mass": 99 + }, + { + "race": "Ricksha", + "name": "T289", + "drive": 180, + "armament": 150, + "weapons": 2, + "shields": 27.1, + "cargo": 1, + "mass": 359.1 + }, + { + "race": "Enoxes", + "name": "Gnat", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "Enoxes", + "name": "Track", + "drive": 81.49, + "armament": 1, + "weapons": 2.1, + "shields": 12, + "cargo": 54, + "mass": 149.59 + }, + { + "race": "Enoxes", + "name": "Storm", + "drive": 69.38, + "armament": 8, + "weapons": 10.9, + "shields": 30.17, + "cargo": 1, + "mass": 149.6 + }, + { + "race": "Enoxes", + "name": "FS-6", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1.06, + "cargo": 0, + "mass": 2.06 + }, + { + "race": "Enoxes", + "name": "Pinta", + "drive": 47.62, + "armament": 5, + "weapons": 10.16, + "shields": 19.9, + "cargo": 1, + "mass": 99 + }, + { + "race": "3JO6HbIE", + "name": "MHE_BCE_uHTEPECHO", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 0, + "cargo": 0, + "mass": 1 + }, + { + "race": "3JO6HbIE", + "name": "HP_60x2", + "drive": 99, + "armament": 60, + "weapons": 2, + "shields": 38, + "cargo": 1, + "mass": 199 + }, + { + "race": "3JO6HbIE", + "name": "T_2x16", + "drive": 50, + "armament": 2, + "weapons": 16, + "shields": 25, + "cargo": 1, + "mass": 100 + }, + { + "race": "3JO6HbIE", + "name": "HD", + "drive": 1, + "armament": 0, + "weapons": 0, + "shields": 1, + "cargo": 0, + "mass": 2 + }, + { + "race": "3JO6HbIE", + "name": "MP_80x1.5", + "drive": 99, + "armament": 80, + "weapons": 1.5, + "shields": 38.25, + "cargo": 1, + "mass": 199 + }, + { + "race": "3JO6HbIE", + "name": "G_1x24", + "drive": 50, + "armament": 1, + "weapons": 24, + "shields": 25, + "cargo": 1, + "mass": 100 + }, + { + "race": "3JO6HbIE", + "name": "LP_120x1", + "drive": 99, + "armament": 120, + "weapons": 1, + "shields": 38.5, + "cargo": 1, + "mass": 199 + }, + { + "race": "3JO6HbIE", + "name": "HP_70x2_N", + "drive": 99, + "armament": 70, + "weapons": 2, + "shields": 28, + "cargo": 1, + "mass": 199 + }, + { + "race": "3JO6HbIE", + "name": "G_1x15", + "drive": 30.01, + "armament": 1, + "weapons": 15, + "shields": 15.01, + "cargo": 1, + "mass": 61.02 + }, + { + "race": "3JO6HbIE", + "name": "LT_10x5.84", + "drive": 50.27, + "armament": 10, + "weapons": 5.84, + "shields": 16.61, + "cargo": 1, + "mass": 100 + }, + { + "race": "3JO6HbIE", + "name": "HP_22x2.8", + "drive": 50.27, + "armament": 22, + "weapons": 2.8, + "shields": 16.53, + "cargo": 1, + "mass": 100 + }, + { + "race": "3JO6HbIE", + "name": "G_1x11", + "drive": 24.75, + "armament": 1, + "weapons": 11.75, + "shields": 13, + "cargo": 0, + "mass": 49.5 + } + ], + "battle": [ + { + "id": "867cdc3e-8bdf-57d2-8401-0b92af7151fa", + "planet": 7, + "shots": 1 + }, + { + "id": "97dae5d0-00f1-5ad6-b2ac-6094b605d5ad", + "planet": 32, + "shots": 1 + }, + { + "id": "3bae45ff-10c5-5297-9c5a-d1039c944e76", + "planet": 45, + "shots": 1 + }, + { + "id": "5b487499-547f-5ea5-8ec8-c228bdfec129", + "planet": 97, + "shots": 1 + }, + { + "id": "748784c5-911f-509b-a6d8-25d984c7e2f3", + "planet": 169, + "shots": 1 + }, + { + "id": "60112197-fe47-5056-950a-1bec90737b6b", + "planet": 225, + "shots": 1 + }, + { + "id": "42e9f113-d436-553f-b8fa-60746eed7f3c", + "planet": 243, + "shots": 2 + }, + { + "id": "40d81f10-88b6-521a-9700-c2b6b1522b6b", + "planet": 292, + "shots": 1 + }, + { + "id": "e67d0a22-8096-55ec-8654-d0026ae7d7fb", + "planet": 344, + "shots": 16 + }, + { + "id": "1951c81b-6d0d-597c-8eb1-877a5dbb7317", + "planet": 394, + "shots": 1 + }, + { + "id": "efeacace-34e0-5551-8fe3-d7f62484a04c", + "planet": 571, + "shots": 1 + }, + { + "id": "1c8f40a1-4469-5aed-b6b1-c7557c864f07", + "planet": 635, + "shots": 1 + }, + { + "id": "a9968f83-5b80-5799-9ef1-fe87ce0a49db", + "planet": 9, + "shots": 47 + }, + { + "id": "f4ee8fc1-4e3b-5dc1-b0a0-cdb4fcbcc0ea", + "planet": 46, + "shots": 5 + }, + { + "id": "e0b9fe57-2772-5060-bdb1-0c18238745a0", + "planet": 104, + "shots": 1 + }, + { + "id": "a588d0e8-05c9-5484-a8bb-82dba7c32b47", + "planet": 129, + "shots": 2 + }, + { + "id": "e4a8b24e-6187-58b6-b256-1e727842563d", + "planet": 141, + "shots": 9 + }, + { + "id": "ac708e4f-1202-5f53-8a2f-09622a43025a", + "planet": 292, + "shots": 3 + }, + { + "id": "51f99594-35c0-5070-acaa-20cb079d695b", + "planet": 370, + "shots": 8 + }, + { + "id": "284aa96c-dad3-5a79-8627-cd779042b3de", + "planet": 385, + "shots": 1 + }, + { + "id": "8ae64d21-927c-5e14-aefb-6a133cd04329", + "planet": 394, + "shots": 3 + }, + { + "id": "8bc65ffe-c016-57d6-8cb0-5c5592530b6b", + "planet": 445, + "shots": 1 + }, + { + "id": "dad43ae8-d33a-5275-bdc2-3a09de0dc72a", + "planet": 449, + "shots": 653 + }, + { + "id": "831a3e55-7c55-52f9-8bdc-32680bac0d78", + "planet": 513, + "shots": 11 + }, + { + "id": "dd9d1fe8-a624-51e4-a11c-23564feadfd7", + "planet": 596, + "shots": 50 + }, + { + "id": "8a5eb73c-f3e1-5d18-ab58-80cb0d3fe78c", + "planet": 635, + "shots": 2 + }, + { + "id": "f319c219-9b3d-5e83-b4d5-8da594176a10", + "planet": 636, + "shots": 1 + }, + { + "id": "228d740f-64b0-5d27-a557-2d32d625ac53", + "planet": 654, + "shots": 288 + } + ], + "bombing": [ + { + "planet": 9, + "planetName": "Dw2", + "owner": "AbubaGerbographerPot", + "attacker": "Koreans", + "production": "Drone_2", + "industry": 500, + "population": 500, + "colonists": 49.2, + "capital": 0, + "material": 0, + "attack": 1539.01, + "wiped": true + }, + { + "planet": 46, + "planetName": "Povezlp", + "owner": "Ricksha", + "attacker": "KnightErrants", + "production": "Dron", + "industry": 0.01, + "population": 0.11, + "colonists": 0, + "capital": 0, + "material": 160.1, + "attack": 91.11, + "wiped": true + }, + { + "planet": 141, + "planetName": "B1", + "owner": "Koreans", + "attacker": "SSSan", + "production": "Capital", + "industry": 52.6, + "population": 612.38, + "colonists": 17.32, + "capital": 0, + "material": 0, + "attack": 2082.42, + "wiped": true + }, + { + "planet": 231, + "planetName": "D2", + "owner": "SSSan", + "attacker": "Koreans", + "production": "Dulko", + "industry": 157.13, + "population": 169.7, + "colonists": 0, + "capital": 0, + "material": 327.15, + "attack": 342.87, + "wiped": true + }, + { + "planet": 243, + "planetName": "Dw2-243", + "owner": "AbubaGerbographerPot", + "attacker": "Koreans", + "production": "Drone_2", + "industry": 33.4, + "population": 33.4, + "colonists": 0, + "capital": 7.69, + "material": 466.28, + "attack": 400.41, + "wiped": true + }, + { + "planet": 283, + "planetName": "B-283", + "owner": "Bumbastik", + "attacker": "Nails", + "production": "BAX", + "industry": 0, + "population": 445.99, + "colonists": 0, + "capital": 0, + "material": 565.45, + "attack": 475.62, + "wiped": true + }, + { + "planet": 292, + "planetName": "SmalGood", + "owner": "SSSan", + "attacker": "Koreans", + "production": "SD", + "industry": 775.46, + "population": 775.46, + "colonists": 119.08, + "capital": 0, + "material": 0, + "attack": 381.9, + "wiped": false + }, + { + "planet": 369, + "planetName": "SGood", + "owner": "SSSan", + "attacker": "Koreans", + "production": "Dulko2", + "industry": 514.47, + "population": 555.63, + "colonists": 0, + "capital": 0, + "material": 330.48, + "attack": 4274.24, + "wiped": true + }, + { + "planet": 370, + "planetName": "S1", + "owner": "Koreans", + "attacker": "SSSan", + "production": "PolyCruiser:24x7.2", + "industry": 2422.64, + "population": 2422.64, + "colonists": 0, + "capital": 97.66, + "material": 0.07, + "attack": 836.51, + "wiped": false + }, + { + "planet": 394, + "planetName": "D1", + "owner": "SSSan", + "attacker": "Koreans", + "production": "PE", + "industry": 500, + "population": 500, + "colonists": 80, + "capital": 0, + "material": 0, + "attack": 115.53, + "wiped": false + }, + { + "planet": 430, + "planetName": "B-430", + "owner": "Bumbastik", + "attacker": "Nails", + "production": "BAX", + "industry": 163.44, + "population": 241.95, + "colonists": 0, + "capital": 0, + "material": 164.87, + "attack": 305.65, + "wiped": true + }, + { + "planet": 513, + "planetName": "Dw1", + "owner": "AbubaGerbographerPot", + "attacker": "Koreans", + "production": "Drone_2", + "industry": 329.99, + "population": 356.39, + "colonists": 0, + "capital": 0, + "material": 137.01, + "attack": 68.67, + "wiped": false + }, + { + "planet": 596, + "planetName": "N596", + "owner": "AbubaGerbographerPot", + "attacker": "Koreans", + "production": "Drone_2", + "industry": 754.1, + "population": 754.1, + "colonists": 82.95, + "capital": 4.24, + "material": 0, + "attack": 221.08, + "wiped": false + }, + { + "planet": 635, + "planetName": "PGT", + "owner": "SSSan", + "attacker": "Koreans", + "production": "SD", + "industry": 450.18, + "population": 451.34, + "colonists": 73.73, + "capital": 0, + "material": 0, + "attack": 472.51, + "wiped": true + }, + { + "planet": 654, + "planetName": "BedBig", + "owner": "SSSan", + "attacker": "Koreans", + "production": "Per", + "industry": 2058.68, + "population": 2066.7, + "colonists": 159.85, + "capital": 0, + "material": 0, + "attack": 2191.54, + "wiped": true + }, + { + "planet": 693, + "planetName": "SSSanHom", + "owner": "SSSan", + "attacker": "Koreans", + "production": "Per1", + "industry": 240.97, + "population": 259.05, + "colonists": 0, + "capital": 0, + "material": 736.15, + "attack": 3026.25, + "wiped": true + } + ], + "localPlanet": [ + { + "x": 171.05, + "y": 700.24, + "number": 17, + "size": 1000, + "name": "Castle", + "resources": 10, + "capital": 0, + "material": 0.68, + "industry": 1000, + "population": 1000, + "colonists": 88.78, + "production": "Drive_Research", + "freeIndustry": 1000 + }, + { + "x": 169.59, + "y": 694.49, + "number": 87, + "size": 500, + "name": "NorthFortress", + "resources": 10, + "capital": 0, + "material": 0.52, + "industry": 500, + "population": 500, + "colonists": 35.76, + "production": "Drive_Research", + "freeIndustry": 500 + }, + { + "x": 163.99, + "y": 703.07, + "number": 338, + "size": 500, + "name": "WestFortress", + "resources": 10, + "capital": 15.8, + "material": 0.51, + "industry": 500, + "population": 500, + "colonists": 68.97, + "production": "Drive_Research", + "freeIndustry": 500 + }, + { + "x": 161.5, + "y": 698.7, + "number": 282, + "size": 977.87, + "name": "DayBreak", + "resources": 6.62, + "capital": 0, + "material": 0.68, + "industry": 933.28, + "population": 977.87, + "colonists": 67.63, + "production": "Drive_Research", + "freeIndustry": 944.43 + }, + { + "x": 163.56, + "y": 705.31, + "number": 38, + "size": 956.94, + "name": "Afterglow", + "resources": 1.18, + "capital": 0, + "material": 0.58, + "industry": 930.56, + "population": 956.94, + "colonists": 102.34, + "production": "Drive_Research", + "freeIndustry": 937.15 + }, + { + "x": 179.07, + "y": 704, + "number": 296, + "size": 928.74, + "name": "PochtiHom", + "resources": 4.78, + "capital": 18.78, + "material": 0.69, + "industry": 928.74, + "population": 928.74, + "colonists": 65.8, + "production": "Drive_Research", + "freeIndustry": 928.74 + }, + { + "x": 188.8, + "y": 716.7, + "number": 114, + "size": 1879.68, + "name": "HighWay", + "resources": 0.53, + "capital": 0, + "material": 2.05, + "industry": 1856.44, + "population": 1879.68, + "colonists": 56.62, + "production": "Drive_Research", + "freeIndustry": 1862.25 + }, + { + "x": 129.66, + "y": 702.65, + "number": 223, + "size": 9.76, + "name": "SuperGig", + "resources": 0.18, + "capital": 0, + "material": 0, + "industry": 0, + "population": 9.46, + "colonists": 0, + "production": "PeaceShip", + "freeIndustry": 2.37 + }, + { + "x": 127.81, + "y": 705.42, + "number": 495, + "size": 1405.32, + "name": "Asteroid", + "resources": 1.09, + "capital": 0, + "material": 0, + "industry": 1368.3, + "population": 1405.32, + "colonists": 144.43, + "production": "Drive_Research", + "freeIndustry": 1377.56 + }, + { + "x": 114.94, + "y": 694.43, + "number": 447, + "size": 7.9, + "name": "DbIPKA_OT_6Y6JIUKA", + "resources": 0.14, + "capital": 0, + "material": 0, + "industry": 0, + "population": 7.9, + "colonists": 2.46, + "production": "PeaceShip", + "freeIndustry": 1.98 + }, + { + "x": 152.03, + "y": 693.16, + "number": 176, + "size": 6.95, + "name": "Monstr", + "resources": 0.42, + "capital": 0, + "material": 0, + "industry": 0, + "population": 5.48, + "colonists": 0, + "production": "PeaceShip", + "freeIndustry": 1.37 + }, + { + "x": 177.32, + "y": 731.91, + "number": 679, + "size": 1668.72, + "name": "SteelPower", + "resources": 7.79, + "capital": 0, + "material": 0, + "industry": 1668.67, + "population": 1668.72, + "colonists": 149.11, + "production": "Drive_Research", + "freeIndustry": 1668.69 + }, + { + "x": 189.12, + "y": 654.88, + "number": 523, + "size": 500, + "name": "NorthAlpha", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 500, + "population": 500, + "colonists": 15.59, + "production": "SpetsNaz", + "freeIndustry": 500 + }, + { + "x": 197.71, + "y": 655, + "number": 572, + "size": 1000, + "name": "NorthPrime", + "resources": 10, + "capital": 0, + "material": 56.98, + "industry": 1000, + "population": 1000, + "colonists": 10, + "production": "Drive_Research", + "freeIndustry": 1000 + }, + { + "x": 195.98, + "y": 651.58, + "number": 177, + "size": 500, + "name": "NorthBeta", + "resources": 10, + "capital": 76.85, + "material": 393.12, + "industry": 144.43, + "population": 144.43, + "colonists": 0, + "production": "Capital", + "freeIndustry": 144.43 + }, + { + "x": 192.54, + "y": 656.4, + "number": 622, + "size": 764.66, + "name": "NorthS", + "resources": 1.59, + "capital": 0, + "material": 0, + "industry": 664, + "population": 764.66, + "colonists": 25.37, + "production": "Capital", + "freeIndustry": 689.16 + }, + { + "x": 204.46, + "y": 655.59, + "number": 558, + "size": 998.5, + "name": "NorthE", + "resources": 9.19, + "capital": 0, + "material": 0, + "industry": 455.79, + "population": 998.5, + "colonists": 14.17, + "production": "Capital", + "freeIndustry": 591.46 + }, + { + "x": 198.71, + "y": 648.74, + "number": 458, + "size": 935.27, + "name": "NorthN", + "resources": 3.87, + "capital": 0, + "material": 58.52, + "industry": 159.18, + "population": 915.73, + "colonists": 0, + "production": "Capital", + "freeIndustry": 348.31 + }, + { + "x": 149.59, + "y": 659.18, + "number": 461, + "size": 1023.35, + "name": "AGdeDW?", + "resources": 8.46, + "capital": 0, + "material": 0, + "industry": 859.01, + "population": 1023.35, + "colonists": 30.2, + "production": "Capital", + "freeIndustry": 900.1 + }, + { + "x": 273.89, + "y": 582.17, + "number": 685, + "size": 1980.42, + "name": "Trofei", + "resources": 2.98, + "capital": 37.4, + "material": 61.51, + "industry": 88.59, + "population": 88.59, + "colonists": 0, + "production": "PeaceShip", + "freeIndustry": 88.59 + }, + { + "x": 267.37, + "y": 597.19, + "number": 79, + "size": 1899.01, + "name": "PriceOfVictory", + "resources": 2.19, + "capital": 0, + "material": 285.79, + "industry": 111.76, + "population": 722.04, + "colonists": 0, + "production": "Capital", + "freeIndustry": 264.33 + }, + { + "x": 307.83, + "y": 564.19, + "number": 636, + "size": 950.07, + "name": "Vedma", + "resources": 5.69, + "capital": 0, + "material": 183.1, + "industry": 0, + "population": 17.63, + "colonists": 0, + "production": "PeaceShip", + "freeIndustry": 4.41 + } + ], + "shipProduction": [ + { + "planet": 223, + "class": "PeaceShip", + "cost": 10, + "prodUsed": 0.311, + "percent": 0.02, + "free": 2.37 + }, + { + "planet": 447, + "class": "PeaceShip", + "cost": 10, + "prodUsed": 0.343, + "percent": 0.02, + "free": 1.98 + }, + { + "planet": 176, + "class": "PeaceShip", + "cost": 10, + "prodUsed": 0.124, + "percent": 0.01, + "free": 1.37 + }, + { + "planet": 523, + "class": "SpetsNaz", + "cost": 71, + "prodUsed": 46.612, + "percent": 0.65, + "free": 500 + }, + { + "planet": 685, + "class": "PeaceShip", + "cost": 10, + "prodUsed": 0.1, + "percent": 0.01, + "free": 88.59 + }, + { + "planet": 636, + "class": "PeaceShip", + "cost": 10, + "prodUsed": 0.1, + "percent": 0.01, + "free": 4.41 + } + ], + "otherPlanet": [ + { + "owner": "Monstrai", + "x": 303.84, + "y": 579.23, + "number": 12, + "size": 618.95, + "name": "Normal-4826-0012", + "resources": 1.56, + "capital": 0.16, + "material": 53.28, + "industry": 24.67, + "population": 24.67, + "colonists": 0, + "production": "Capital", + "freeIndustry": 24.67 + }, + { + "owner": "Monstrai", + "x": 262.49, + "y": 508.26, + "number": 25, + "size": 1.06, + "name": "Rycar", + "resources": 0.82, + "capital": 0.2, + "material": 0, + "industry": 1.06, + "population": 1.06, + "colonists": 0.34, + "production": "Drive_Research", + "freeIndustry": 1.06 + }, + { + "owner": "Monstrai", + "x": 304.44, + "y": 574.57, + "number": 130, + "size": 500, + "name": "Skarabei", + "resources": 10, + "capital": 0, + "material": 70.99, + "industry": 289.04, + "population": 500, + "colonists": 20.03, + "production": "Capital", + "freeIndustry": 341.78 + }, + { + "owner": "Monstrai", + "x": 312.91, + "y": 565.56, + "number": 253, + "size": 819.93, + "name": "Hiena", + "resources": 0.17, + "capital": 0.74, + "material": 35.29, + "industry": 6.34, + "population": 6.34, + "colonists": 0, + "production": "Capital", + "freeIndustry": 6.34 + }, + { + "owner": "Monstrai", + "x": 310.41, + "y": 577.18, + "number": 366, + "size": 500, + "name": "DW-5754-0366", + "resources": 10, + "capital": 107.03, + "material": 472.35, + "industry": 18.8, + "population": 18.8, + "colonists": 0, + "production": "Capital", + "freeIndustry": 18.8 + }, + { + "owner": "TwelvePointedCross", + "x": 417.24, + "y": 582.13, + "number": 56, + "size": 930.77, + "name": "Medio-56", + "resources": 9.58, + "capital": 0, + "material": 904.15, + "industry": 161, + "population": 579.22, + "colonists": 0, + "production": "Capital", + "freeIndustry": 265.56 + }, + { + "owner": "TwelvePointedCross", + "x": 434.36, + "y": 592.79, + "number": 85, + "size": 865.81, + "name": "Source-85", + "resources": 5.15, + "capital": 193.28, + "material": 0, + "industry": 865.81, + "population": 865.81, + "colonists": 26.37, + "production": "Capital", + "freeIndustry": 865.81 + }, + { + "owner": "TwelvePointedCross", + "x": 416.19, + "y": 576.64, + "number": 196, + "size": 686.91, + "name": "Terminal-196", + "resources": 5.26, + "capital": 103.5, + "material": 386.38, + "industry": 686.91, + "population": 686.91, + "colonists": 29.53, + "production": "Shields_Research", + "freeIndustry": 686.91 + }, + { + "owner": "TwelvePointedCross", + "x": 411, + "y": 582.44, + "number": 207, + "size": 1000, + "name": "Herward-207", + "resources": 10, + "capital": 0, + "material": 880.43, + "industry": 128.07, + "population": 945.14, + "colonists": 0, + "production": "Capital", + "freeIndustry": 332.34 + }, + { + "owner": "TwelvePointedCross", + "x": 414.38, + "y": 580.92, + "number": 314, + "size": 500, + "name": "Greedy-314", + "resources": 10, + "capital": 0, + "material": 486.74, + "industry": 13.26, + "population": 18.65, + "colonists": 0, + "production": "Capital", + "freeIndustry": 14.61 + }, + { + "owner": "TwelvePointedCross", + "x": 415.39, + "y": 577.82, + "number": 459, + "size": 946.09, + "name": "Normal-8330-0459", + "resources": 3.38, + "capital": 14.48, + "material": 888.46, + "industry": 30.22, + "population": 30.22, + "colonists": 0, + "production": "Capital", + "freeIndustry": 30.22 + }, + { + "owner": "TwelvePointedCross", + "x": 436.61, + "y": 589.01, + "number": 663, + "size": 1938.58, + "name": "PowerCube-663", + "resources": 0.52, + "capital": 0, + "material": 0, + "industry": 905.53, + "population": 1877.23, + "colonists": 0, + "production": "Capital", + "freeIndustry": 1148.46 + }, + { + "owner": "TwelvePointedCross", + "x": 418.42, + "y": 585.36, + "number": 690, + "size": 500, + "name": "Resist-690", + "resources": 10, + "capital": 0, + "material": 464.5, + "industry": 36, + "population": 322.34, + "colonists": 0, + "production": "Capital", + "freeIndustry": 107.59 + }, + { + "owner": "Orla", + "x": 293.03, + "y": 47.27, + "number": 95, + "size": 939.5, + "name": "Orl1", + "resources": 2.91, + "capital": 0, + "material": 0, + "industry": 939.5, + "population": 939.5, + "colonists": 150.32, + "production": "Orlperf_sh", + "freeIndustry": 939.5 + }, + { + "owner": "Bumbastik", + "x": 299.03, + "y": 700.92, + "number": 24, + "size": 2278.86, + "name": "B-024", + "resources": 0.58, + "capital": 0, + "material": 94.44, + "industry": 38, + "population": 1116.83, + "colonists": 0, + "production": "BAX", + "freeIndustry": 307.71 + }, + { + "owner": "Bumbastik", + "x": 323.84, + "y": 699.66, + "number": 479, + "size": 1000, + "name": "AQUARIUS", + "resources": 10, + "capital": 0, + "material": 927, + "industry": 0, + "population": 0.43, + "colonists": 0, + "production": "Gun", + "freeIndustry": 0.11 + }, + { + "owner": "Bumbastik", + "x": 301.16, + "y": 721.65, + "number": 587, + "size": 1051.7, + "name": "B-587", + "resources": 1.04, + "capital": 0, + "material": 116.91, + "industry": 0, + "population": 395.15, + "colonists": 0, + "production": "K-2", + "freeIndustry": 98.79 + }, + { + "owner": "Zodiac", + "x": 337.19, + "y": 543.38, + "number": 108, + "size": 2340.94, + "name": "FatBoy", + "resources": 0.39, + "capital": 172.55, + "material": 317.56, + "industry": 2340.94, + "population": 2340.94, + "colonists": 23.41, + "production": "WS_45x55_Research", + "freeIndustry": 2340.94 + }, + { + "owner": "Zodiac", + "x": 305.62, + "y": 538.86, + "number": 116, + "size": 1966.14, + "name": "Armagedon", + "resources": 1.51, + "capital": 0, + "material": 1686.83, + "industry": 0.03, + "population": 0.59, + "colonists": 0, + "production": "Capital", + "freeIndustry": 0.17 + }, + { + "owner": "Zodiac", + "x": 305.33, + "y": 570.48, + "number": 119, + "size": 1000, + "name": "Sirena", + "resources": 10, + "capital": 0, + "material": 900.43, + "industry": 0, + "population": 0.47, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.12 + }, + { + "owner": "Zodiac", + "x": 327.52, + "y": 554.61, + "number": 647, + "size": 1801.57, + "name": "Dracula", + "resources": 4.76, + "capital": 0, + "material": 53.77, + "industry": 82.44, + "population": 1728.47, + "colonists": 0, + "production": "Capital", + "freeIndustry": 493.94 + }, + { + "owner": "Flagist", + "x": 191.63, + "y": 535.12, + "number": 15, + "size": 243.6, + "name": "Rich-5201-0015", + "resources": 16.61, + "capital": 0, + "material": 0, + "industry": 0, + "population": 2.43, + "colonists": 0, + "production": "Hi", + "freeIndustry": 0.61 + }, + { + "owner": "Flagist", + "x": 189.39, + "y": 533.79, + "number": 72, + "size": 318.9, + "name": "Hlam", + "resources": 23.46, + "capital": 0, + "material": 0, + "industry": 0, + "population": 2.43, + "colonists": 0, + "production": "Hi", + "freeIndustry": 0.61 + }, + { + "owner": "Flagist", + "x": 242.15, + "y": 558.1, + "number": 222, + "size": 1638.46, + "name": "Goovin", + "resources": 1.09, + "capital": 0, + "material": 1639.3, + "industry": 0, + "population": 2.29, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.57 + }, + { + "owner": "Flagist", + "x": 189.7, + "y": 534.95, + "number": 251, + "size": 500, + "name": "Stun", + "resources": 10, + "capital": 0, + "material": 0.25, + "industry": 0, + "population": 2.43, + "colonists": 0, + "production": "Hi", + "freeIndustry": 0.61 + }, + { + "owner": "Flagist", + "x": 245.2, + "y": 535, + "number": 305, + "size": 1000, + "name": "Mikolin", + "resources": 10, + "capital": 0, + "material": 999.79, + "industry": 0, + "population": 2.35, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.59 + }, + { + "owner": "Flagist", + "x": 241.93, + "y": 538.14, + "number": 340, + "size": 500, + "name": "Heauru", + "resources": 10, + "capital": 93.6, + "material": 499.03, + "industry": 2.47, + "population": 2.47, + "colonists": 0, + "production": "Drone", + "freeIndustry": 2.47 + }, + { + "owner": "Flagist", + "x": 144.38, + "y": 571.64, + "number": 385, + "size": 19.53, + "name": "Kroshka", + "resources": 16.91, + "capital": 8.44, + "material": 19.45, + "industry": 0.86, + "population": 0.86, + "colonists": 0, + "production": "Hi", + "freeIndustry": 0.86 + }, + { + "owner": "Flagist", + "x": 237.52, + "y": 528.94, + "number": 409, + "size": 741.42, + "name": "Altinopi", + "resources": 2.45, + "capital": 0, + "material": 743.81, + "industry": 0.3, + "population": 0.54, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.36 + }, + { + "owner": "Flagist", + "x": 244.54, + "y": 540.74, + "number": 434, + "size": 980.94, + "name": "Vennio", + "resources": 9.54, + "capital": 4.4, + "material": 981.97, + "industry": 0.54, + "population": 0.54, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.54 + }, + { + "owner": "Flagist", + "x": 257.82, + "y": 504.58, + "number": 436, + "size": 1227.52, + "name": "Koscei", + "resources": 6.42, + "capital": 0, + "material": 890.84, + "industry": 234.83, + "population": 1227.52, + "colonists": 31.34, + "production": "Weapons_Research", + "freeIndustry": 483 + }, + { + "owner": "Flagist", + "x": 278.57, + "y": 522.31, + "number": 438, + "size": 1000, + "name": "Apokalipse", + "resources": 10, + "capital": 0, + "material": 862.4, + "industry": 73.61, + "population": 770.05, + "colonists": 0, + "production": "Capital", + "freeIndustry": 247.72 + }, + { + "owner": "Flagist", + "x": 271.31, + "y": 525.7, + "number": 569, + "size": 984.48, + "name": "Furija", + "resources": 3.85, + "capital": 42.99, + "material": 983, + "industry": 2.62, + "population": 2.62, + "colonists": 0, + "production": "Drone", + "freeIndustry": 2.62 + }, + { + "owner": "Flagist", + "x": 250.68, + "y": 533.74, + "number": 624, + "size": 500, + "name": "Arafiel", + "resources": 10, + "capital": 0, + "material": 499.77, + "industry": 0, + "population": 2.47, + "colonists": 0, + "production": "Drone", + "freeIndustry": 0.62 + }, + { + "owner": "Bupyc", + "x": 136.57, + "y": 49.85, + "number": 2, + "size": 601.86, + "name": "B2", + "resources": 8.66, + "capital": 0, + "material": 459.88, + "industry": 6, + "population": 176.32, + "colonists": 0, + "production": "drone", + "freeIndustry": 48.58 + }, + { + "owner": "Koreans", + "x": 25.41, + "y": 768, + "number": 28, + "size": 500, + "name": "DW-7156-0028", + "resources": 10, + "capital": 0, + "material": 233.4, + "industry": 0.02, + "population": 0.43, + "colonists": 0, + "production": "Capital", + "freeIndustry": 0.12 + }, + { + "owner": "Koreans", + "x": 30.05, + "y": 775.46, + "number": 45, + "size": 500, + "name": "DW-0690-0045", + "resources": 10, + "capital": 0, + "material": 240.84, + "industry": 0, + "population": 0.47, + "colonists": 0, + "production": "!", + "freeIndustry": 0.12 + }, + { + "owner": "Koreans", + "x": 145.88, + "y": 762.6, + "number": 49, + "size": 739.42, + "name": "Nnew49", + "resources": 2.16, + "capital": 0, + "material": 699.74, + "industry": 0, + "population": 0.86, + "colonists": 0, + "production": "!", + "freeIndustry": 0.22 + }, + { + "owner": "Koreans", + "x": 66.81, + "y": 733.6, + "number": 111, + "size": 973.04, + "name": "Norma", + "resources": 3.22, + "capital": 0, + "material": 1067.38, + "industry": 0.27, + "population": 0.43, + "colonists": 0, + "production": "!", + "freeIndustry": 0.31 + }, + { + "owner": "Koreans", + "x": 73.51, + "y": 729.44, + "number": 183, + "size": 1000, + "name": "HATUHA", + "resources": 10, + "capital": 34.68, + "material": 1098.97, + "industry": 0.43, + "population": 0.43, + "colonists": 0, + "production": "!", + "freeIndustry": 0.43 + }, + { + "owner": "Koreans", + "x": 70, + "y": 727.21, + "number": 190, + "size": 418.97, + "name": "MAL", + "resources": 23.21, + "capital": 0, + "material": 419.08, + "industry": 0, + "population": 0.43, + "colonists": 0, + "production": "!", + "freeIndustry": 0.11 + }, + { + "owner": "Koreans", + "x": 60.87, + "y": 774.17, + "number": 191, + "size": 2057.88, + "name": "S3", + "resources": 2.98, + "capital": 0, + "material": 0, + "industry": 347.89, + "population": 2057.88, + "colonists": 85.03, + "production": "d", + "freeIndustry": 775.39 + }, + { + "owner": "Koreans", + "x": 76.18, + "y": 738.51, + "number": 206, + "size": 680.27, + "name": "USPEL", + "resources": 1.74, + "capital": 0, + "material": 744.59, + "industry": 0.09, + "population": 0.43, + "colonists": 0, + "production": "!", + "freeIndustry": 0.17 + }, + { + "owner": "Koreans", + "x": 22.05, + "y": 797.27, + "number": 370, + "size": 2422.64, + "name": "S1", + "resources": 1.1, + "capital": 0, + "material": 677.96, + "industry": 1683.78, + "population": 1713.02, + "colonists": 0, + "production": "PolyCruiser:24x7.2", + "freeIndustry": 1691.09 + }, + { + "owner": "Koreans", + "x": 11.55, + "y": 12.44, + "number": 421, + "size": 724.52, + "name": "A6", + "resources": 4.32, + "capital": 3.45, + "material": 0, + "industry": 724.52, + "population": 724.52, + "colonists": 7.25, + "production": "d", + "freeIndustry": 724.52 + }, + { + "owner": "Koreans", + "x": 73.33, + "y": 726.1, + "number": 474, + "size": 500, + "name": "VotEtoNychka", + "resources": 10, + "capital": 0, + "material": 443.43, + "industry": 0, + "population": 0.43, + "colonists": 0, + "production": "!", + "freeIndustry": 0.11 + }, + { + "owner": "Koreans", + "x": 47.17, + "y": 772.75, + "number": 504, + "size": 1630.54, + "name": "Big1", + "resources": 9.97, + "capital": 0, + "material": 1679.91, + "industry": 0.39, + "population": 8.64, + "colonists": 0, + "production": "Capital", + "freeIndustry": 2.45 + }, + { + "owner": "Koreans", + "x": 115.36, + "y": 2.73, + "number": 519, + "size": 1000, + "name": "HomeWorld", + "resources": 10, + "capital": 0, + "material": 1000.06, + "industry": 0, + "population": 0.47, + "colonists": 0, + "production": "!", + "freeIndustry": 0.12 + }, + { + "owner": "Koreans", + "x": 58.5, + "y": 779.42, + "number": 549, + "size": 696.28, + "name": "B3", + "resources": 4.09, + "capital": 0, + "material": 0, + "industry": 43.12, + "population": 462.12, + "colonists": 0, + "production": "Capital", + "freeIndustry": 147.87 + }, + { + "owner": "Koreans", + "x": 54.74, + "y": 1.37, + "number": 552, + "size": 643.35, + "name": "Normal-2036-0552", + "resources": 0.71, + "capital": 0, + "material": 0, + "industry": 209.51, + "population": 643.35, + "colonists": 27.26, + "production": "Capital", + "freeIndustry": 317.97 + }, + { + "owner": "Koreans", + "x": 74.01, + "y": 721.87, + "number": 559, + "size": 500, + "name": "POLHATI", + "resources": 10, + "capital": 0.08, + "material": 501.42, + "industry": 0.86, + "population": 0.86, + "colonists": 0, + "production": "!", + "freeIndustry": 0.86 + }, + { + "owner": "Koreans", + "x": 56.98, + "y": 796.85, + "number": 602, + "size": 1000, + "name": "Hw2-602", + "resources": 10, + "capital": 0, + "material": 432.59, + "industry": 35.55, + "population": 371.59, + "colonists": 0, + "production": "Capital", + "freeIndustry": 119.56 + }, + { + "owner": "Koreans", + "x": 29.29, + "y": 774.48, + "number": 612, + "size": 854.88, + "name": "Normal-5496-0612", + "resources": 2.95, + "capital": 0, + "material": 0, + "industry": 264.6, + "population": 854.88, + "colonists": 46.17, + "production": "Capital", + "freeIndustry": 412.17 + }, + { + "owner": "Koreans", + "x": 61.35, + "y": 795.46, + "number": 697, + "size": 500, + "name": "DW-4659-0697", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 54.06, + "population": 500, + "colonists": 20, + "production": "Capital", + "freeIndustry": 165.55 + }, + { + "owner": "SSSan", + "x": 46.14, + "y": 693.57, + "number": 292, + "size": 775.46, + "name": "SmalGood", + "resources": 3.7, + "capital": 0, + "material": 342.55, + "industry": 393.56, + "population": 425.04, + "colonists": 0, + "production": "SD", + "freeIndustry": 401.43 + }, + { + "owner": "SSSan", + "x": 38.53, + "y": 691.01, + "number": 394, + "size": 500, + "name": "D1", + "resources": 10, + "capital": 0, + "material": 77.08, + "industry": 384.47, + "population": 415.23, + "colonists": 0, + "production": "PE", + "freeIndustry": 392.16 + }, + { + "owner": "Nails", + "x": 327.08, + "y": 702.71, + "number": 14, + "size": 500, + "name": "ARIES", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 500, + "population": 500, + "colonists": 23.42, + "production": "59_1", + "freeIndustry": 500 + }, + { + "owner": "Nails", + "x": 345.25, + "y": 644.4, + "number": 48, + "size": 1000, + "name": "CANCER", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 0, + "population": 1000, + "colonists": 61.4, + "production": "pup", + "freeIndustry": 250 + }, + { + "owner": "Nails", + "x": 347.82, + "y": 651.21, + "number": 203, + "size": 83.47, + "name": "PISCES", + "resources": 15.25, + "capital": 0, + "material": 0, + "industry": 15.5, + "population": 83.47, + "colonists": 4.17, + "production": "pup", + "freeIndustry": 32.49 + }, + { + "owner": "Nails", + "x": 331.53, + "y": 699.98, + "number": 396, + "size": 500, + "name": "SCORPIO", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 494.97, + "population": 500, + "colonists": 28.27, + "production": "_pup_", + "freeIndustry": 496.23 + }, + { + "owner": "Nails", + "x": 321.8, + "y": 691.93, + "number": 425, + "size": 920.76, + "name": "SAGITTARIUS", + "resources": 5.57, + "capital": 0, + "material": 509.52, + "industry": 260.11, + "population": 920.76, + "colonists": 78.7, + "production": "pup", + "freeIndustry": 425.27 + }, + { + "owner": "Nails", + "x": 291.75, + "y": 698.54, + "number": 521, + "size": 4.75, + "name": "B-521", + "resources": 0.24, + "capital": 0, + "material": 0.03, + "industry": 0.24, + "population": 4.75, + "colonists": 0.05, + "production": "Capital", + "freeIndustry": 1.37 + }, + { + "owner": "Nails", + "x": 342.41, + "y": 643.3, + "number": 530, + "size": 500, + "name": "CAPRICORN", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 16.4, + "population": 500, + "colonists": 43.46, + "production": "pup", + "freeIndustry": 137.3 + }, + { + "owner": "Nails", + "x": 274.28, + "y": 701.54, + "number": 662, + "size": 1000, + "name": "B-662", + "resources": 10, + "capital": 0, + "material": 998.44, + "industry": 1.57, + "population": 10.58, + "colonists": 0, + "production": "Capital", + "freeIndustry": 3.82 + }, + { + "owner": "Nails", + "x": 345.92, + "y": 651.52, + "number": 673, + "size": 872.46, + "name": "GEMINI", + "resources": 5.51, + "capital": 0, + "material": 0, + "industry": 57.69, + "population": 872.46, + "colonists": 83.42, + "production": "pup", + "freeIndustry": 261.39 + }, + { + "owner": "Nails", + "x": 322.35, + "y": 703.51, + "number": 691, + "size": 8.24, + "name": "LIBRA", + "resources": 0.17, + "capital": 0.1, + "material": 0, + "industry": 8.24, + "population": 8.24, + "colonists": 30, + "production": "Drive_Research", + "freeIndustry": 8.24 + }, + { + "owner": "AbubaGerbographerPot", + "x": 118.17, + "y": 0.08, + "number": 268, + "size": 43.5, + "name": "R248", + "resources": 21.41, + "capital": 0.92, + "material": 0, + "industry": 43.5, + "population": 43.5, + "colonists": 6.8, + "production": "Drone", + "freeIndustry": 43.5 + }, + { + "owner": "AbubaGerbographerPot", + "x": 117.47, + "y": 0.33, + "number": 513, + "size": 500, + "name": "Dw1", + "resources": 10, + "capital": 0, + "material": 178.89, + "industry": 261.32, + "population": 310.74, + "colonists": 0, + "production": "Drone_2", + "freeIndustry": 273.68 + }, + { + "owner": "AbubaGerbographerPot", + "x": 112.74, + "y": 797.74, + "number": 596, + "size": 754.1, + "name": "N596", + "resources": 6.58, + "capital": 0, + "material": 167.78, + "industry": 537.25, + "population": 575.66, + "colonists": 0, + "production": "Drone_2", + "freeIndustry": 546.85 + }, + { + "owner": "Ricksha", + "x": 86.45, + "y": 513.1, + "number": 55, + "size": 816.39, + "name": "Antenna", + "resources": 2.68, + "capital": 0, + "material": 0, + "industry": 816.39, + "population": 816.39, + "colonists": 102.94, + "production": "Dron", + "freeIndustry": 816.39 + }, + { + "owner": "Ricksha", + "x": 151.65, + "y": 581.9, + "number": 139, + "size": 500, + "name": "Wyi", + "resources": 10, + "capital": 0, + "material": 459.65, + "industry": 0.07, + "population": 0.17, + "colonists": 0, + "production": "Dron", + "freeIndustry": 0.09 + }, + { + "owner": "Ricksha", + "x": 104.7, + "y": 514, + "number": 150, + "size": 369.72, + "name": "TuPA", + "resources": 20.33, + "capital": 0, + "material": 0, + "industry": 95.87, + "population": 114.97, + "colonists": 0, + "production": "Dron", + "freeIndustry": 100.65 + }, + { + "owner": "Ricksha", + "x": 80.1, + "y": 501.7, + "number": 173, + "size": 1926.88, + "name": "Legenda", + "resources": 1.37, + "capital": 7.59, + "material": 0, + "industry": 1926.88, + "population": 1926.88, + "colonists": 77.2, + "production": "T289", + "freeIndustry": 1926.88 + }, + { + "owner": "Ricksha", + "x": 167.56, + "y": 567.57, + "number": 298, + "size": 1325.17, + "name": "yppaIII", + "resources": 9.53, + "capital": 0, + "material": 870.59, + "industry": 0.04, + "population": 0.15, + "colonists": 0, + "production": "Dron", + "freeIndustry": 0.07 + }, + { + "owner": "Ricksha", + "x": 113.02, + "y": 515.8, + "number": 332, + "size": 500, + "name": "PEHKE", + "resources": 10, + "capital": 0, + "material": 226.42, + "industry": 216.18, + "population": 500, + "colonists": 16.06, + "production": "Dron", + "freeIndustry": 287.13 + }, + { + "owner": "Ricksha", + "x": 98.82, + "y": 516.82, + "number": 403, + "size": 675.77, + "name": "PAgOCTb", + "resources": 8.81, + "capital": 0, + "material": 414.41, + "industry": 244.92, + "population": 675.77, + "colonists": 15.13, + "production": "Dron", + "freeIndustry": 352.63 + }, + { + "owner": "Ricksha", + "x": 114.64, + "y": 517.46, + "number": 446, + "size": 500, + "name": "ILS", + "resources": 10, + "capital": 0, + "material": 279.21, + "industry": 170.26, + "population": 500, + "colonists": 14.36, + "production": "Dron", + "freeIndustry": 252.7 + }, + { + "owner": "Ricksha", + "x": 63.7, + "y": 560.33, + "number": 489, + "size": 500, + "name": "DW-1737-0489", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 7.89, + "population": 201.91, + "colonists": 0, + "production": "Dron", + "freeIndustry": 56.4 + }, + { + "owner": "Ricksha", + "x": 73.2, + "y": 556.76, + "number": 500, + "size": 797.02, + "name": "KPuT", + "resources": 8.21, + "capital": 152.42, + "material": 0, + "industry": 797.02, + "population": 797.02, + "colonists": 106.48, + "production": "Dron", + "freeIndustry": 797.02 + }, + { + "owner": "Ricksha", + "x": 92.35, + "y": 572.22, + "number": 506, + "size": 292.5, + "name": "VVHTREWW", + "resources": 16.94, + "capital": 0, + "material": 68.44, + "industry": 0.01, + "population": 0.11, + "colonists": 0, + "production": "Dron", + "freeIndustry": 0.03 + }, + { + "owner": "Ricksha", + "x": 146.22, + "y": 579.53, + "number": 507, + "size": 1000, + "name": "Tupo", + "resources": 10, + "capital": 0, + "material": 901.69, + "industry": 0.56, + "population": 1.65, + "colonists": 0, + "production": "Dron", + "freeIndustry": 0.83 + }, + { + "owner": "Ricksha", + "x": 88.04, + "y": 505.85, + "number": 525, + "size": 0.22, + "name": "Angel", + "resources": 0.63, + "capital": 0.21, + "material": 0, + "industry": 0.22, + "population": 0.22, + "colonists": 0.08, + "production": "Dron", + "freeIndustry": 0.22 + }, + { + "owner": "Ricksha", + "x": 151.54, + "y": 578.44, + "number": 532, + "size": 500, + "name": "Golo", + "resources": 10, + "capital": 0, + "material": 458.29, + "industry": 0.07, + "population": 0.17, + "colonists": 0, + "production": "Dron", + "freeIndustry": 0.09 + }, + { + "owner": "Ricksha", + "x": 107.38, + "y": 515.69, + "number": 535, + "size": 1000, + "name": "CAHKTyAPuu", + "resources": 10, + "capital": 0, + "material": 0, + "industry": 1000, + "population": 1000, + "colonists": 66.7, + "production": "Dron", + "freeIndustry": 1000 + }, + { + "owner": "Ricksha", + "x": 184.32, + "y": 531.62, + "number": 610, + "size": 673.5, + "name": "TEMJIyC", + "resources": 2.97, + "capital": 0, + "material": 0, + "industry": 5.58, + "population": 9.39, + "colonists": 0, + "production": "Dron", + "freeIndustry": 6.53 + }, + { + "owner": "Ricksha", + "x": 159.26, + "y": 532.61, + "number": 632, + "size": 659.52, + "name": "3BE3gA", + "resources": 2.12, + "capital": 0, + "material": 0.07, + "industry": 0.05, + "population": 0.16, + "colonists": 0, + "production": "Dron", + "freeIndustry": 0.08 + }, + { + "owner": "Ricksha", + "x": 132.16, + "y": 569.5, + "number": 641, + "size": 1408.58, + "name": "Tyno", + "resources": 3.11, + "capital": 0, + "material": 1393.75, + "industry": 0.01, + "population": 0.11, + "colonists": 0, + "production": "Dron", + "freeIndustry": 0.03 + }, + { + "owner": "Ricksha", + "x": 98.01, + "y": 516.69, + "number": 649, + "size": 831.72, + "name": "Labirint", + "resources": 6.32, + "capital": 0, + "material": 529.36, + "industry": 356.89, + "population": 831.72, + "colonists": 43.52, + "production": "Dron", + "freeIndustry": 475.6 + }, + { + "owner": "Ricksha", + "x": 140.92, + "y": 580.39, + "number": 669, + "size": 727.71, + "name": "Tovty", + "resources": 2.84, + "capital": 0, + "material": 693.74, + "industry": 0.02, + "population": 0.13, + "colonists": 0, + "production": "Dron", + "freeIndustry": 0.05 + } + ], + "uninhabitedPlanet": [ + { + "x": 117.87, + "y": 795.21, + "number": 9, + "size": 500, + "name": "Dw2", + "resources": 10, + "capital": 0, + "material": 500 + }, + { + "x": 75.94, + "y": 565.36, + "number": 20, + "size": 500, + "name": "DW-1207-0020", + "resources": 10, + "capital": 0, + "material": 0 + }, + { + "x": 87.82, + "y": 569.26, + "number": 46, + "size": 1114.17, + "name": "Povezlp", + "resources": 2.03, + "capital": 0, + "material": 160.12 + }, + { + "x": 265.59, + "y": 701.11, + "number": 69, + "size": 787.38, + "name": "B-069", + "resources": 9.54, + "capital": 0, + "material": 787.93 + }, + { + "x": 144.98, + "y": 48.16, + "number": 90, + "size": 500, + "name": "BDW1", + "resources": 10, + "capital": 0, + "material": 454.52 + }, + { + "x": 49.38, + "y": 797.57, + "number": 141, + "size": 612.38, + "name": "B1", + "resources": 1.96, + "capital": 0, + "material": 52.6 + }, + { + "x": 44.31, + "y": 686.97, + "number": 231, + "size": 500, + "name": "D2", + "resources": 10, + "capital": 0, + "material": 484.29 + }, + { + "x": 61.94, + "y": 0.02, + "number": 243, + "size": 500, + "name": "Dw2-243", + "resources": 10, + "capital": 7.69, + "material": 499.68 + }, + { + "x": 275.98, + "y": 710.09, + "number": 283, + "size": 622.27, + "name": "B-283", + "resources": 8.67, + "capital": 0, + "material": 565.45 + }, + { + "x": 42.43, + "y": 692.64, + "number": 369, + "size": 896.37, + "name": "SGood", + "resources": 9.74, + "capital": 0, + "material": 844.95 + }, + { + "x": 137.85, + "y": 63.39, + "number": 391, + "size": 757.09, + "name": "B391", + "resources": 3.41, + "capital": 0, + "material": 683.59 + }, + { + "x": 274.06, + "y": 696.52, + "number": 430, + "size": 500, + "name": "B-430", + "resources": 10, + "capital": 0, + "material": 328.32 + }, + { + "x": 120.65, + "y": 794.31, + "number": 431, + "size": 507.25, + "name": "N431", + "resources": 7.63, + "capital": 8.62, + "material": 504.06 + }, + { + "x": 89.75, + "y": 571.97, + "number": 432, + "size": 8.46, + "name": "1", + "resources": 0.7, + "capital": 0, + "material": 0.37 + }, + { + "x": 42.42, + "y": 695.7, + "number": 635, + "size": 451.34, + "name": "PGT", + "resources": 17.57, + "capital": 0, + "material": 450.18 + }, + { + "x": 72.41, + "y": 695.31, + "number": 654, + "size": 2066.7, + "name": "BedBig", + "resources": 0.25, + "capital": 0, + "material": 2058.68 + }, + { + "x": 37.67, + "y": 694.36, + "number": 693, + "size": 1000, + "name": "SSSanHom", + "resources": 10, + "capital": 0, + "material": 977.12 + } + ], + "unidentifiedPlanet": [ + { + "x": 738.08, + "y": 600.26, + "number": 0 + }, + { + "x": 579.12, + "y": 489.37, + "number": 1 + }, + { + "x": 679.78, + "y": 675.4, + "number": 3 + }, + { + "x": 749.22, + "y": 736.4, + "number": 4 + }, + { + "x": 746.13, + "y": 737.21, + "number": 5 + }, + { + "x": 627.55, + "y": 528.25, + "number": 6 + }, + { + "x": 271.69, + "y": 672.7, + "number": 7 + }, + { + "x": 657.2, + "y": 599.58, + "number": 8 + }, + { + "x": 83, + "y": 306.62, + "number": 10 + }, + { + "x": 127.62, + "y": 57.77, + "number": 11 + }, + { + "x": 12.04, + "y": 106.42, + "number": 13 + }, + { + "x": 495.86, + "y": 737.82, + "number": 16 + }, + { + "x": 373.72, + "y": 471.28, + "number": 18 + }, + { + "x": 535.08, + "y": 445.72, + "number": 19 + }, + { + "x": 498.76, + "y": 624.89, + "number": 21 + }, + { + "x": 171.39, + "y": 206.33, + "number": 22 + }, + { + "x": 500.82, + "y": 69.06, + "number": 23 + }, + { + "x": 793.91, + "y": 471.82, + "number": 26 + }, + { + "x": 282.41, + "y": 527.81, + "number": 27 + }, + { + "x": 272.24, + "y": 453.61, + "number": 29 + }, + { + "x": 438.37, + "y": 403.98, + "number": 30 + }, + { + "x": 711.64, + "y": 461.44, + "number": 31 + }, + { + "x": 270.61, + "y": 687.23, + "number": 32 + }, + { + "x": 373.11, + "y": 117.06, + "number": 33 + }, + { + "x": 82.94, + "y": 296.17, + "number": 34 + }, + { + "x": 196.1, + "y": 129.84, + "number": 35 + }, + { + "x": 491.28, + "y": 57.92, + "number": 36 + }, + { + "x": 770.4, + "y": 682.77, + "number": 37 + }, + { + "x": 681.65, + "y": 663, + "number": 39 + }, + { + "x": 405.24, + "y": 169.98, + "number": 40 + }, + { + "x": 200.84, + "y": 177.32, + "number": 41 + }, + { + "x": 463.85, + "y": 347.15, + "number": 42 + }, + { + "x": 293.44, + "y": 84.01, + "number": 43 + }, + { + "x": 738.6, + "y": 393.91, + "number": 44 + }, + { + "x": 745.85, + "y": 13.94, + "number": 47 + }, + { + "x": 749.58, + "y": 405.31, + "number": 50 + }, + { + "x": 454.71, + "y": 158.1, + "number": 51 + }, + { + "x": 317.8, + "y": 86.3, + "number": 52 + }, + { + "x": 435.88, + "y": 407.68, + "number": 53 + }, + { + "x": 251.01, + "y": 41.88, + "number": 54 + }, + { + "x": 505.79, + "y": 249.72, + "number": 57 + }, + { + "x": 652.61, + "y": 330.09, + "number": 58 + }, + { + "x": 546.7, + "y": 343.69, + "number": 59 + }, + { + "x": 363.53, + "y": 550.5, + "number": 60 + }, + { + "x": 441, + "y": 734.62, + "number": 61 + }, + { + "x": 653.45, + "y": 326.72, + "number": 62 + }, + { + "x": 730.81, + "y": 448.26, + "number": 63 + }, + { + "x": 489.59, + "y": 477.46, + "number": 64 + }, + { + "x": 188.83, + "y": 347.55, + "number": 65 + }, + { + "x": 403.89, + "y": 6.25, + "number": 66 + }, + { + "x": 757.57, + "y": 588.39, + "number": 67 + }, + { + "x": 191.54, + "y": 341.38, + "number": 68 + }, + { + "x": 506, + "y": 255.18, + "number": 70 + }, + { + "x": 537.59, + "y": 1.01, + "number": 71 + }, + { + "x": 8.72, + "y": 573.36, + "number": 73 + }, + { + "x": 257.77, + "y": 460.65, + "number": 74 + }, + { + "x": 718.99, + "y": 333.96, + "number": 75 + }, + { + "x": 117.65, + "y": 185.52, + "number": 76 + }, + { + "x": 375.11, + "y": 109.19, + "number": 77 + }, + { + "x": 202.26, + "y": 180.91, + "number": 78 + }, + { + "x": 498.69, + "y": 740.44, + "number": 80 + }, + { + "x": 479.43, + "y": 441.35, + "number": 81 + }, + { + "x": 15.71, + "y": 772.35, + "number": 82 + }, + { + "x": 253.71, + "y": 40.14, + "number": 83 + }, + { + "x": 538.56, + "y": 346.35, + "number": 84 + }, + { + "x": 490.92, + "y": 734.56, + "number": 86 + }, + { + "x": 592.2, + "y": 40.4, + "number": 88 + }, + { + "x": 723.29, + "y": 729.34, + "number": 89 + }, + { + "x": 296.01, + "y": 148.39, + "number": 91 + }, + { + "x": 585.53, + "y": 612.06, + "number": 92 + }, + { + "x": 380.68, + "y": 798.1, + "number": 93 + }, + { + "x": 635.49, + "y": 590.08, + "number": 94 + }, + { + "x": 659.02, + "y": 444.26, + "number": 96 + }, + { + "x": 234.33, + "y": 763.77, + "number": 97 + }, + { + "x": 649.08, + "y": 68.95, + "number": 98 + }, + { + "x": 716.98, + "y": 334.02, + "number": 99 + }, + { + "x": 650.08, + "y": 684.55, + "number": 100 + }, + { + "x": 567.25, + "y": 612.72, + "number": 101 + }, + { + "x": 74.61, + "y": 189.92, + "number": 102 + }, + { + "x": 531.61, + "y": 466.59, + "number": 103 + }, + { + "x": 184.83, + "y": 529.96, + "number": 104 + }, + { + "x": 763.96, + "y": 254.77, + "number": 105 + }, + { + "x": 578.4, + "y": 483.8, + "number": 106 + }, + { + "x": 449.31, + "y": 160.08, + "number": 107 + }, + { + "x": 242.28, + "y": 125.37, + "number": 109 + }, + { + "x": 587.44, + "y": 43.97, + "number": 110 + }, + { + "x": 108.16, + "y": 184.57, + "number": 112 + }, + { + "x": 482.84, + "y": 444.79, + "number": 113 + }, + { + "x": 779.73, + "y": 65.27, + "number": 115 + }, + { + "x": 424.82, + "y": 725.39, + "number": 117 + }, + { + "x": 694.75, + "y": 44.63, + "number": 118 + }, + { + "x": 589.01, + "y": 490.13, + "number": 120 + }, + { + "x": 578.8, + "y": 325.11, + "number": 121 + }, + { + "x": 718.75, + "y": 462.86, + "number": 122 + }, + { + "x": 774.24, + "y": 180.3, + "number": 123 + }, + { + "x": 496.77, + "y": 255.2, + "number": 124 + }, + { + "x": 340.09, + "y": 120.81, + "number": 125 + }, + { + "x": 779.91, + "y": 653.9, + "number": 126 + }, + { + "x": 261.88, + "y": 506.61, + "number": 127 + }, + { + "x": 786.08, + "y": 296.59, + "number": 128 + }, + { + "x": 327.97, + "y": 696.68, + "number": 129 + }, + { + "x": 632.56, + "y": 586.65, + "number": 131 + }, + { + "x": 536.32, + "y": 0.29, + "number": 132 + }, + { + "x": 670.83, + "y": 380.38, + "number": 133 + }, + { + "x": 71.73, + "y": 561.86, + "number": 134 + }, + { + "x": 501.2, + "y": 732.35, + "number": 135 + }, + { + "x": 791.5, + "y": 298.42, + "number": 136 + }, + { + "x": 180.18, + "y": 433.44, + "number": 137 + }, + { + "x": 474.92, + "y": 550.11, + "number": 138 + }, + { + "x": 789.69, + "y": 132.96, + "number": 140 + }, + { + "x": 362.21, + "y": 379.76, + "number": 142 + }, + { + "x": 757.59, + "y": 303.74, + "number": 143 + }, + { + "x": 662.93, + "y": 393.9, + "number": 144 + }, + { + "x": 453.43, + "y": 273.86, + "number": 145 + }, + { + "x": 388.91, + "y": 448.66, + "number": 146 + }, + { + "x": 496.57, + "y": 672.02, + "number": 147 + }, + { + "x": 617.74, + "y": 280.38, + "number": 148 + }, + { + "x": 621.44, + "y": 278.51, + "number": 149 + }, + { + "x": 478.41, + "y": 446.97, + "number": 151 + }, + { + "x": 633.42, + "y": 537.78, + "number": 152 + }, + { + "x": 403.99, + "y": 169.45, + "number": 153 + }, + { + "x": 419.74, + "y": 713.64, + "number": 154 + }, + { + "x": 496.26, + "y": 730.35, + "number": 155 + }, + { + "x": 395.36, + "y": 241.41, + "number": 156 + }, + { + "x": 355.23, + "y": 383.52, + "number": 157 + }, + { + "x": 770.85, + "y": 180.36, + "number": 158 + }, + { + "x": 642.38, + "y": 583.26, + "number": 159 + }, + { + "x": 203.53, + "y": 349.51, + "number": 160 + }, + { + "x": 356.19, + "y": 371.64, + "number": 161 + }, + { + "x": 337.59, + "y": 123.01, + "number": 162 + }, + { + "x": 533.41, + "y": 462.45, + "number": 163 + }, + { + "x": 267.44, + "y": 242.15, + "number": 164 + }, + { + "x": 622.34, + "y": 410.91, + "number": 165 + }, + { + "x": 781.41, + "y": 656.48, + "number": 166 + }, + { + "x": 154.45, + "y": 250.03, + "number": 167 + }, + { + "x": 270.15, + "y": 237.1, + "number": 168 + }, + { + "x": 273.49, + "y": 706.42, + "number": 169 + }, + { + "x": 539.42, + "y": 347.01, + "number": 170 + }, + { + "x": 16.41, + "y": 19.15, + "number": 171 + }, + { + "x": 548.47, + "y": 4.41, + "number": 172 + }, + { + "x": 16.31, + "y": 109.75, + "number": 174 + }, + { + "x": 76.38, + "y": 183.84, + "number": 175 + }, + { + "x": 679.93, + "y": 538.47, + "number": 178 + }, + { + "x": 611.05, + "y": 370.15, + "number": 179 + }, + { + "x": 630.67, + "y": 416.77, + "number": 180 + }, + { + "x": 609.88, + "y": 622.43, + "number": 181 + }, + { + "x": 229.52, + "y": 289.68, + "number": 182 + }, + { + "x": 460.01, + "y": 340.76, + "number": 184 + }, + { + "x": 640.68, + "y": 734.8, + "number": 185 + }, + { + "x": 415.56, + "y": 272.32, + "number": 186 + }, + { + "x": 757.66, + "y": 740.08, + "number": 187 + }, + { + "x": 332.29, + "y": 198.15, + "number": 188 + }, + { + "x": 618.7, + "y": 275.81, + "number": 189 + }, + { + "x": 513.56, + "y": 125.74, + "number": 192 + }, + { + "x": 494.93, + "y": 631.21, + "number": 193 + }, + { + "x": 368.98, + "y": 14.23, + "number": 194 + }, + { + "x": 743.39, + "y": 399.04, + "number": 195 + }, + { + "x": 204.87, + "y": 170.53, + "number": 197 + }, + { + "x": 363.59, + "y": 541.06, + "number": 198 + }, + { + "x": 757.69, + "y": 259.33, + "number": 199 + }, + { + "x": 287.32, + "y": 155.25, + "number": 200 + }, + { + "x": 263.97, + "y": 453.38, + "number": 201 + }, + { + "x": 632.08, + "y": 527.79, + "number": 202 + }, + { + "x": 576.6, + "y": 611.86, + "number": 204 + }, + { + "x": 416.57, + "y": 269.1, + "number": 205 + }, + { + "x": 724.32, + "y": 331.2, + "number": 208 + }, + { + "x": 769.13, + "y": 180.36, + "number": 209 + }, + { + "x": 161.45, + "y": 255.7, + "number": 210 + }, + { + "x": 534.22, + "y": 56.35, + "number": 211 + }, + { + "x": 787.14, + "y": 290.58, + "number": 212 + }, + { + "x": 253.73, + "y": 53.42, + "number": 213 + }, + { + "x": 384.34, + "y": 71.95, + "number": 214 + }, + { + "x": 655.96, + "y": 331.29, + "number": 215 + }, + { + "x": 200.95, + "y": 337.48, + "number": 216 + }, + { + "x": 766.53, + "y": 683.61, + "number": 217 + }, + { + "x": 388.73, + "y": 241.78, + "number": 218 + }, + { + "x": 778.17, + "y": 70.73, + "number": 219 + }, + { + "x": 490.1, + "y": 12.55, + "number": 220 + }, + { + "x": 250.19, + "y": 324.49, + "number": 221 + }, + { + "x": 260.28, + "y": 192.86, + "number": 224 + }, + { + "x": 327.03, + "y": 692.1, + "number": 225 + }, + { + "x": 514.86, + "y": 130.59, + "number": 226 + }, + { + "x": 41.51, + "y": 551.04, + "number": 227 + }, + { + "x": 354.87, + "y": 431.97, + "number": 228 + }, + { + "x": 767.33, + "y": 176.08, + "number": 229 + }, + { + "x": 639.57, + "y": 728.5, + "number": 230 + }, + { + "x": 487.61, + "y": 650.58, + "number": 232 + }, + { + "x": 270.76, + "y": 160.21, + "number": 233 + }, + { + "x": 514.62, + "y": 251.35, + "number": 234 + }, + { + "x": 473.64, + "y": 138.77, + "number": 235 + }, + { + "x": 560.51, + "y": 482.24, + "number": 236 + }, + { + "x": 789.55, + "y": 139.36, + "number": 237 + }, + { + "x": 370.54, + "y": 542.09, + "number": 238 + }, + { + "x": 409.17, + "y": 169.17, + "number": 239 + }, + { + "x": 572.78, + "y": 605.7, + "number": 240 + }, + { + "x": 734.06, + "y": 453.68, + "number": 241 + }, + { + "x": 199.93, + "y": 347.64, + "number": 242 + }, + { + "x": 751.85, + "y": 259.58, + "number": 244 + }, + { + "x": 395.47, + "y": 244.69, + "number": 245 + }, + { + "x": 205.33, + "y": 178.21, + "number": 246 + }, + { + "x": 584.81, + "y": 173.78, + "number": 247 + }, + { + "x": 372.3, + "y": 14.72, + "number": 248 + }, + { + "x": 341.22, + "y": 296.84, + "number": 249 + }, + { + "x": 546.65, + "y": 347.31, + "number": 250 + }, + { + "x": 758.58, + "y": 174.89, + "number": 252 + }, + { + "x": 438.03, + "y": 402.08, + "number": 254 + }, + { + "x": 171.2, + "y": 419.37, + "number": 255 + }, + { + "x": 62.96, + "y": 564.9, + "number": 256 + }, + { + "x": 600.43, + "y": 136.69, + "number": 257 + }, + { + "x": 371.35, + "y": 9.55, + "number": 258 + }, + { + "x": 359.82, + "y": 540.29, + "number": 259 + }, + { + "x": 339.78, + "y": 116.29, + "number": 260 + }, + { + "x": 2.42, + "y": 566.52, + "number": 261 + }, + { + "x": 653.51, + "y": 321.11, + "number": 262 + }, + { + "x": 661.48, + "y": 388.29, + "number": 263 + }, + { + "x": 481.71, + "y": 482.26, + "number": 264 + }, + { + "x": 710.28, + "y": 469.13, + "number": 265 + }, + { + "x": 451.6, + "y": 626.41, + "number": 266 + }, + { + "x": 664.2, + "y": 441.57, + "number": 267 + }, + { + "x": 681.25, + "y": 411.93, + "number": 269 + }, + { + "x": 799.31, + "y": 19.35, + "number": 270 + }, + { + "x": 627.73, + "y": 415.69, + "number": 271 + }, + { + "x": 510.97, + "y": 247.35, + "number": 272 + }, + { + "x": 478.33, + "y": 446.58, + "number": 273 + }, + { + "x": 105.86, + "y": 190.43, + "number": 274 + }, + { + "x": 257.06, + "y": 473.01, + "number": 275 + }, + { + "x": 688.94, + "y": 674.24, + "number": 276 + }, + { + "x": 769.51, + "y": 696.36, + "number": 277 + }, + { + "x": 619.26, + "y": 419.51, + "number": 278 + }, + { + "x": 667.04, + "y": 379.56, + "number": 279 + }, + { + "x": 643.77, + "y": 594.25, + "number": 280 + }, + { + "x": 264.84, + "y": 245.28, + "number": 281 + }, + { + "x": 459.14, + "y": 344.81, + "number": 284 + }, + { + "x": 418.99, + "y": 703.95, + "number": 285 + }, + { + "x": 741.65, + "y": 9.65, + "number": 286 + }, + { + "x": 782.67, + "y": 652.58, + "number": 287 + }, + { + "x": 604.97, + "y": 658.66, + "number": 288 + }, + { + "x": 164.38, + "y": 426.47, + "number": 289 + }, + { + "x": 425.59, + "y": 713.97, + "number": 290 + }, + { + "x": 490.23, + "y": 633.9, + "number": 291 + }, + { + "x": 130.28, + "y": 55.55, + "number": 293 + }, + { + "x": 169.51, + "y": 427.41, + "number": 294 + }, + { + "x": 788.62, + "y": 470.18, + "number": 295 + }, + { + "x": 259.51, + "y": 191.56, + "number": 297 + }, + { + "x": 157.42, + "y": 270.76, + "number": 299 + }, + { + "x": 629.57, + "y": 733.74, + "number": 300 + }, + { + "x": 745.45, + "y": 19.1, + "number": 301 + }, + { + "x": 7.79, + "y": 19.75, + "number": 302 + }, + { + "x": 418.18, + "y": 171.16, + "number": 303 + }, + { + "x": 561.36, + "y": 476.72, + "number": 304 + }, + { + "x": 181.78, + "y": 68.86, + "number": 306 + }, + { + "x": 4.17, + "y": 99.83, + "number": 307 + }, + { + "x": 244.3, + "y": 318.49, + "number": 308 + }, + { + "x": 386.67, + "y": 115.66, + "number": 309 + }, + { + "x": 555.63, + "y": 195.41, + "number": 310 + }, + { + "x": 82.17, + "y": 195.73, + "number": 311 + }, + { + "x": 254.45, + "y": 188.24, + "number": 312 + }, + { + "x": 454.36, + "y": 153.11, + "number": 313 + }, + { + "x": 87.14, + "y": 309.89, + "number": 315 + }, + { + "x": 644.12, + "y": 84.86, + "number": 316 + }, + { + "x": 655.15, + "y": 743.14, + "number": 317 + }, + { + "x": 697.87, + "y": 586.18, + "number": 318 + }, + { + "x": 499.33, + "y": 63.67, + "number": 319 + }, + { + "x": 520.84, + "y": 210.26, + "number": 320 + }, + { + "x": 786.23, + "y": 31.5, + "number": 321 + }, + { + "x": 315.96, + "y": 86.79, + "number": 322 + }, + { + "x": 666.13, + "y": 385.58, + "number": 323 + }, + { + "x": 761.72, + "y": 594, + "number": 324 + }, + { + "x": 275.21, + "y": 236.67, + "number": 325 + }, + { + "x": 491.93, + "y": 630.61, + "number": 326 + }, + { + "x": 159.56, + "y": 248.09, + "number": 327 + }, + { + "x": 765.62, + "y": 255.92, + "number": 328 + }, + { + "x": 486.38, + "y": 439.76, + "number": 329 + }, + { + "x": 520.41, + "y": 126.46, + "number": 330 + }, + { + "x": 355.21, + "y": 504.46, + "number": 331 + }, + { + "x": 561.91, + "y": 243.66, + "number": 333 + }, + { + "x": 265.76, + "y": 59.77, + "number": 334 + }, + { + "x": 381.99, + "y": 114.19, + "number": 335 + }, + { + "x": 520.28, + "y": 213.41, + "number": 336 + }, + { + "x": 647.46, + "y": 78.76, + "number": 337 + }, + { + "x": 425.31, + "y": 649.17, + "number": 339 + }, + { + "x": 165.83, + "y": 111.23, + "number": 341 + }, + { + "x": 246.76, + "y": 322.69, + "number": 342 + }, + { + "x": 62.01, + "y": 563.34, + "number": 343 + }, + { + "x": 338.79, + "y": 647.5, + "number": 344 + }, + { + "x": 186.95, + "y": 80.94, + "number": 345 + }, + { + "x": 723.64, + "y": 325.86, + "number": 346 + }, + { + "x": 403.02, + "y": 336.39, + "number": 347 + }, + { + "x": 450.99, + "y": 155.06, + "number": 348 + }, + { + "x": 540.28, + "y": 54, + "number": 349 + }, + { + "x": 499.61, + "y": 629.11, + "number": 350 + }, + { + "x": 292.09, + "y": 79.18, + "number": 351 + }, + { + "x": 479.07, + "y": 137.36, + "number": 352 + }, + { + "x": 364.75, + "y": 535.61, + "number": 353 + }, + { + "x": 770.79, + "y": 68.26, + "number": 354 + }, + { + "x": 423.38, + "y": 769.99, + "number": 355 + }, + { + "x": 474.62, + "y": 553.12, + "number": 356 + }, + { + "x": 763.79, + "y": 585.63, + "number": 357 + }, + { + "x": 780.46, + "y": 468.22, + "number": 358 + }, + { + "x": 736.58, + "y": 384.88, + "number": 359 + }, + { + "x": 687.46, + "y": 319.43, + "number": 360 + }, + { + "x": 750.35, + "y": 746.31, + "number": 361 + }, + { + "x": 195.2, + "y": 345.54, + "number": 362 + }, + { + "x": 357.67, + "y": 371.83, + "number": 363 + }, + { + "x": 335.1, + "y": 114.26, + "number": 364 + }, + { + "x": 391.3, + "y": 444.15, + "number": 365 + }, + { + "x": 643.98, + "y": 594.77, + "number": 367 + }, + { + "x": 677.53, + "y": 663.66, + "number": 368 + }, + { + "x": 712.4, + "y": 757.69, + "number": 371 + }, + { + "x": 774.17, + "y": 655.33, + "number": 372 + }, + { + "x": 119.54, + "y": 183.24, + "number": 373 + }, + { + "x": 420.5, + "y": 729.12, + "number": 374 + }, + { + "x": 754.39, + "y": 262.26, + "number": 375 + }, + { + "x": 223.57, + "y": 416.79, + "number": 376 + }, + { + "x": 280.9, + "y": 519.51, + "number": 377 + }, + { + "x": 757.4, + "y": 470.13, + "number": 378 + }, + { + "x": 540.45, + "y": 497.55, + "number": 379 + }, + { + "x": 160.17, + "y": 262.37, + "number": 380 + }, + { + "x": 377.84, + "y": 3.06, + "number": 381 + }, + { + "x": 542.34, + "y": 347.74, + "number": 382 + }, + { + "x": 596.73, + "y": 40.77, + "number": 383 + }, + { + "x": 609.6, + "y": 656.02, + "number": 384 + }, + { + "x": 14.77, + "y": 110.56, + "number": 386 + }, + { + "x": 291.51, + "y": 147.56, + "number": 387 + }, + { + "x": 487.07, + "y": 481.19, + "number": 388 + }, + { + "x": 375.84, + "y": 474.94, + "number": 389 + }, + { + "x": 619.35, + "y": 284.36, + "number": 390 + }, + { + "x": 244.95, + "y": 183.6, + "number": 392 + }, + { + "x": 343.03, + "y": 96.88, + "number": 393 + }, + { + "x": 400.54, + "y": 237.84, + "number": 395 + }, + { + "x": 694.3, + "y": 40.57, + "number": 397 + }, + { + "x": 141.16, + "y": 62.49, + "number": 398 + }, + { + "x": 145.78, + "y": 213.32, + "number": 399 + }, + { + "x": 79.35, + "y": 305.45, + "number": 400 + }, + { + "x": 16.99, + "y": 74.83, + "number": 401 + }, + { + "x": 71.6, + "y": 187.69, + "number": 402 + }, + { + "x": 564.1, + "y": 192.54, + "number": 404 + }, + { + "x": 484.89, + "y": 629.61, + "number": 405 + }, + { + "x": 444.36, + "y": 269.69, + "number": 406 + }, + { + "x": 536.34, + "y": 464.51, + "number": 407 + }, + { + "x": 253.52, + "y": 45.19, + "number": 408 + }, + { + "x": 778.82, + "y": 395.75, + "number": 410 + }, + { + "x": 6.47, + "y": 100.87, + "number": 411 + }, + { + "x": 157.52, + "y": 256.55, + "number": 412 + }, + { + "x": 787.33, + "y": 391.03, + "number": 413 + }, + { + "x": 601.24, + "y": 131.84, + "number": 414 + }, + { + "x": 259.46, + "y": 190.48, + "number": 415 + }, + { + "x": 398.62, + "y": 64.6, + "number": 416 + }, + { + "x": 11.4, + "y": 20.39, + "number": 417 + }, + { + "x": 588.86, + "y": 51.22, + "number": 418 + }, + { + "x": 497.64, + "y": 477.4, + "number": 419 + }, + { + "x": 606.75, + "y": 130.57, + "number": 420 + }, + { + "x": 486.68, + "y": 203.01, + "number": 422 + }, + { + "x": 682.81, + "y": 668.5, + "number": 423 + }, + { + "x": 280.06, + "y": 157.64, + "number": 424 + }, + { + "x": 281.67, + "y": 158.62, + "number": 426 + }, + { + "x": 790.24, + "y": 135.23, + "number": 427 + }, + { + "x": 339.65, + "y": 119.7, + "number": 428 + }, + { + "x": 650.63, + "y": 322.84, + "number": 429 + }, + { + "x": 357.77, + "y": 561.91, + "number": 433 + }, + { + "x": 755.87, + "y": 733.34, + "number": 435 + }, + { + "x": 511.2, + "y": 123.58, + "number": 437 + }, + { + "x": 455.08, + "y": 267.76, + "number": 439 + }, + { + "x": 533.97, + "y": 468.58, + "number": 440 + }, + { + "x": 412.15, + "y": 519.43, + "number": 441 + }, + { + "x": 451.99, + "y": 348.48, + "number": 442 + }, + { + "x": 492.55, + "y": 483.42, + "number": 443 + }, + { + "x": 741.4, + "y": 392.1, + "number": 444 + }, + { + "x": 192.95, + "y": 532.32, + "number": 445 + }, + { + "x": 422.68, + "y": 715.96, + "number": 448 + }, + { + "x": 229.3, + "y": 30.96, + "number": 449 + }, + { + "x": 786.19, + "y": 291.91, + "number": 450 + }, + { + "x": 512.42, + "y": 124.47, + "number": 451 + }, + { + "x": 552.56, + "y": 408.56, + "number": 452 + }, + { + "x": 719.46, + "y": 139.21, + "number": 453 + }, + { + "x": 772.73, + "y": 692.22, + "number": 454 + }, + { + "x": 80.38, + "y": 299.71, + "number": 455 + }, + { + "x": 478.24, + "y": 142.61, + "number": 456 + }, + { + "x": 388.17, + "y": 69.98, + "number": 457 + }, + { + "x": 4.98, + "y": 14.8, + "number": 460 + }, + { + "x": 141.95, + "y": 202.09, + "number": 462 + }, + { + "x": 754.71, + "y": 177.2, + "number": 463 + }, + { + "x": 166.97, + "y": 116.93, + "number": 464 + }, + { + "x": 357.29, + "y": 378.43, + "number": 465 + }, + { + "x": 559.33, + "y": 193.24, + "number": 466 + }, + { + "x": 240.96, + "y": 182.45, + "number": 467 + }, + { + "x": 539.08, + "y": 447.56, + "number": 468 + }, + { + "x": 412.39, + "y": 511.53, + "number": 469 + }, + { + "x": 186.63, + "y": 311.65, + "number": 470 + }, + { + "x": 261.38, + "y": 457.21, + "number": 471 + }, + { + "x": 394.88, + "y": 238.82, + "number": 472 + }, + { + "x": 573.09, + "y": 610.1, + "number": 473 + }, + { + "x": 616.38, + "y": 82.4, + "number": 475 + }, + { + "x": 537.06, + "y": 448.38, + "number": 476 + }, + { + "x": 393.75, + "y": 447.18, + "number": 477 + }, + { + "x": 70.84, + "y": 197.1, + "number": 478 + }, + { + "x": 592.46, + "y": 46.42, + "number": 480 + }, + { + "x": 636.81, + "y": 730.76, + "number": 481 + }, + { + "x": 644.53, + "y": 83.31, + "number": 482 + }, + { + "x": 631.22, + "y": 726.96, + "number": 483 + }, + { + "x": 797.07, + "y": 141.45, + "number": 484 + }, + { + "x": 334.5, + "y": 200.84, + "number": 485 + }, + { + "x": 381.22, + "y": 122.88, + "number": 486 + }, + { + "x": 350.93, + "y": 437.79, + "number": 487 + }, + { + "x": 760.88, + "y": 259.49, + "number": 488 + }, + { + "x": 448.27, + "y": 269.91, + "number": 490 + }, + { + "x": 343.1, + "y": 109.32, + "number": 491 + }, + { + "x": 176.42, + "y": 76.35, + "number": 492 + }, + { + "x": 651.69, + "y": 214.66, + "number": 493 + }, + { + "x": 143.05, + "y": 208.28, + "number": 494 + }, + { + "x": 411.27, + "y": 13.57, + "number": 496 + }, + { + "x": 689.35, + "y": 322.71, + "number": 497 + }, + { + "x": 543.84, + "y": 799.56, + "number": 498 + }, + { + "x": 582.56, + "y": 9.3, + "number": 499 + }, + { + "x": 765.66, + "y": 596.37, + "number": 501 + }, + { + "x": 628.71, + "y": 531.78, + "number": 502 + }, + { + "x": 639.48, + "y": 681.15, + "number": 503 + }, + { + "x": 697.95, + "y": 631.66, + "number": 505 + }, + { + "x": 769.55, + "y": 688.03, + "number": 508 + }, + { + "x": 283.31, + "y": 161.53, + "number": 509 + }, + { + "x": 719.75, + "y": 306.85, + "number": 510 + }, + { + "x": 730.08, + "y": 442.23, + "number": 511 + }, + { + "x": 572.48, + "y": 194.76, + "number": 512 + }, + { + "x": 635.99, + "y": 527.76, + "number": 514 + }, + { + "x": 656.77, + "y": 80.91, + "number": 515 + }, + { + "x": 741.17, + "y": 382.85, + "number": 516 + }, + { + "x": 739.01, + "y": 13.62, + "number": 517 + }, + { + "x": 291.37, + "y": 194.49, + "number": 518 + }, + { + "x": 181.76, + "y": 75.52, + "number": 520 + }, + { + "x": 93.92, + "y": 411.12, + "number": 522 + }, + { + "x": 564.25, + "y": 480.75, + "number": 524 + }, + { + "x": 256.31, + "y": 145.05, + "number": 526 + }, + { + "x": 762.17, + "y": 266.58, + "number": 527 + }, + { + "x": 17.24, + "y": 533.07, + "number": 528 + }, + { + "x": 453.81, + "y": 349.48, + "number": 529 + }, + { + "x": 129.42, + "y": 208.75, + "number": 531 + }, + { + "x": 483.9, + "y": 722.17, + "number": 533 + }, + { + "x": 779.04, + "y": 657.5, + "number": 534 + }, + { + "x": 376.33, + "y": 16.43, + "number": 536 + }, + { + "x": 139.82, + "y": 54.93, + "number": 537 + }, + { + "x": 175.41, + "y": 426.59, + "number": 538 + }, + { + "x": 609.69, + "y": 749.71, + "number": 539 + }, + { + "x": 759.91, + "y": 179.9, + "number": 540 + }, + { + "x": 83.18, + "y": 300, + "number": 541 + }, + { + "x": 789.57, + "y": 301.97, + "number": 542 + }, + { + "x": 548.63, + "y": 349, + "number": 543 + }, + { + "x": 356.75, + "y": 437.19, + "number": 544 + }, + { + "x": 414.74, + "y": 514.5, + "number": 545 + }, + { + "x": 453.36, + "y": 524.75, + "number": 546 + }, + { + "x": 342.31, + "y": 106.47, + "number": 547 + }, + { + "x": 36.87, + "y": 181.48, + "number": 548 + }, + { + "x": 309.48, + "y": 95.73, + "number": 550 + }, + { + "x": 775.51, + "y": 74.03, + "number": 551 + }, + { + "x": 429.35, + "y": 406.16, + "number": 553 + }, + { + "x": 631.04, + "y": 416.41, + "number": 554 + }, + { + "x": 340.75, + "y": 202.15, + "number": 555 + }, + { + "x": 393.76, + "y": 439.25, + "number": 556 + }, + { + "x": 717.18, + "y": 146.7, + "number": 557 + }, + { + "x": 520.09, + "y": 130.57, + "number": 560 + }, + { + "x": 134.18, + "y": 341.49, + "number": 561 + }, + { + "x": 348.93, + "y": 435.59, + "number": 562 + }, + { + "x": 281.98, + "y": 155.46, + "number": 563 + }, + { + "x": 777.09, + "y": 77.18, + "number": 564 + }, + { + "x": 427.07, + "y": 646.07, + "number": 565 + }, + { + "x": 197.11, + "y": 184.72, + "number": 566 + }, + { + "x": 396.55, + "y": 442.61, + "number": 567 + }, + { + "x": 241.98, + "y": 131.35, + "number": 568 + }, + { + "x": 348.97, + "y": 426.12, + "number": 570 + }, + { + "x": 290.98, + "y": 789.33, + "number": 571 + }, + { + "x": 459.25, + "y": 157.33, + "number": 573 + }, + { + "x": 507.28, + "y": 66.74, + "number": 574 + }, + { + "x": 586.25, + "y": 478.2, + "number": 575 + }, + { + "x": 627.99, + "y": 589, + "number": 576 + }, + { + "x": 582.39, + "y": 487.3, + "number": 577 + }, + { + "x": 380.74, + "y": 111.41, + "number": 578 + }, + { + "x": 592.92, + "y": 42.41, + "number": 579 + }, + { + "x": 39.21, + "y": 95.39, + "number": 580 + }, + { + "x": 34.23, + "y": 189.56, + "number": 581 + }, + { + "x": 238.39, + "y": 128.03, + "number": 582 + }, + { + "x": 750.98, + "y": 11.82, + "number": 583 + }, + { + "x": 179.45, + "y": 77.59, + "number": 584 + }, + { + "x": 788.73, + "y": 397.75, + "number": 585 + }, + { + "x": 755.9, + "y": 600.01, + "number": 586 + }, + { + "x": 713.1, + "y": 471.46, + "number": 588 + }, + { + "x": 638.86, + "y": 126.08, + "number": 589 + }, + { + "x": 332.93, + "y": 204.33, + "number": 590 + }, + { + "x": 643.62, + "y": 685.35, + "number": 591 + }, + { + "x": 720.87, + "y": 328.72, + "number": 592 + }, + { + "x": 784.89, + "y": 465.75, + "number": 593 + }, + { + "x": 649.6, + "y": 325.46, + "number": 594 + }, + { + "x": 141.1, + "y": 59.17, + "number": 595 + }, + { + "x": 411.75, + "y": 172.88, + "number": 597 + }, + { + "x": 599.09, + "y": 658.02, + "number": 598 + }, + { + "x": 787.6, + "y": 464.38, + "number": 599 + }, + { + "x": 130.08, + "y": 317.83, + "number": 600 + }, + { + "x": 393.35, + "y": 72.56, + "number": 601 + }, + { + "x": 636.22, + "y": 686.87, + "number": 603 + }, + { + "x": 736.46, + "y": 603.01, + "number": 604 + }, + { + "x": 650.19, + "y": 220.08, + "number": 605 + }, + { + "x": 798.85, + "y": 109.87, + "number": 606 + }, + { + "x": 534.85, + "y": 459.56, + "number": 607 + }, + { + "x": 22.97, + "y": 770.8, + "number": 608 + }, + { + "x": 249.57, + "y": 36.88, + "number": 609 + }, + { + "x": 0.66, + "y": 270.52, + "number": 611 + }, + { + "x": 1.36, + "y": 18.41, + "number": 613 + }, + { + "x": 149.11, + "y": 214.39, + "number": 614 + }, + { + "x": 547.48, + "y": 796.17, + "number": 615 + }, + { + "x": 5.39, + "y": 105.57, + "number": 616 + }, + { + "x": 781.17, + "y": 27.66, + "number": 617 + }, + { + "x": 696.04, + "y": 577.39, + "number": 618 + }, + { + "x": 378.66, + "y": 324.43, + "number": 619 + }, + { + "x": 644.29, + "y": 690.12, + "number": 620 + }, + { + "x": 687.26, + "y": 665.06, + "number": 621 + }, + { + "x": 379.11, + "y": 321.51, + "number": 623 + }, + { + "x": 788.99, + "y": 144.64, + "number": 625 + }, + { + "x": 159.6, + "y": 268.47, + "number": 626 + }, + { + "x": 380.44, + "y": 320.21, + "number": 627 + }, + { + "x": 150.56, + "y": 211.11, + "number": 628 + }, + { + "x": 5.25, + "y": 113.65, + "number": 629 + }, + { + "x": 270.66, + "y": 304.23, + "number": 630 + }, + { + "x": 604.41, + "y": 134.09, + "number": 631 + }, + { + "x": 441.22, + "y": 413.04, + "number": 633 + }, + { + "x": 245.79, + "y": 185.69, + "number": 634 + }, + { + "x": 581.98, + "y": 480.26, + "number": 637 + }, + { + "x": 602.09, + "y": 654.92, + "number": 638 + }, + { + "x": 395.15, + "y": 75.81, + "number": 639 + }, + { + "x": 312.78, + "y": 89.43, + "number": 640 + }, + { + "x": 495.38, + "y": 61.45, + "number": 642 + }, + { + "x": 766.72, + "y": 682.95, + "number": 643 + }, + { + "x": 450.49, + "y": 276.21, + "number": 644 + }, + { + "x": 398.63, + "y": 240.43, + "number": 645 + }, + { + "x": 266.71, + "y": 490.96, + "number": 646 + }, + { + "x": 791.17, + "y": 652.35, + "number": 648 + }, + { + "x": 253.16, + "y": 182.92, + "number": 650 + }, + { + "x": 137.86, + "y": 207.72, + "number": 651 + }, + { + "x": 643.32, + "y": 73.84, + "number": 652 + }, + { + "x": 386.34, + "y": 444.85, + "number": 653 + }, + { + "x": 249.59, + "y": 36.99, + "number": 655 + }, + { + "x": 265.51, + "y": 250.63, + "number": 656 + }, + { + "x": 799.02, + "y": 99.39, + "number": 657 + }, + { + "x": 456.54, + "y": 269.45, + "number": 658 + }, + { + "x": 40.58, + "y": 98.81, + "number": 659 + }, + { + "x": 378.53, + "y": 308.43, + "number": 660 + }, + { + "x": 257.12, + "y": 449.3, + "number": 661 + }, + { + "x": 268.48, + "y": 448.69, + "number": 664 + }, + { + "x": 284.36, + "y": 527.15, + "number": 665 + }, + { + "x": 389.96, + "y": 251.88, + "number": 666 + }, + { + "x": 545.94, + "y": 7.12, + "number": 667 + }, + { + "x": 569.79, + "y": 189.94, + "number": 668 + }, + { + "x": 15.8, + "y": 80.06, + "number": 670 + }, + { + "x": 183.7, + "y": 309.04, + "number": 671 + }, + { + "x": 758.49, + "y": 591.33, + "number": 672 + }, + { + "x": 491.71, + "y": 206.07, + "number": 674 + }, + { + "x": 385.66, + "y": 320.54, + "number": 675 + }, + { + "x": 601.57, + "y": 666.88, + "number": 676 + }, + { + "x": 713.79, + "y": 465.27, + "number": 677 + }, + { + "x": 426.02, + "y": 716.19, + "number": 678 + }, + { + "x": 538.13, + "y": 453.99, + "number": 680 + }, + { + "x": 381.84, + "y": 318.28, + "number": 681 + }, + { + "x": 374.02, + "y": 11.39, + "number": 682 + }, + { + "x": 626.89, + "y": 284.25, + "number": 683 + }, + { + "x": 428.36, + "y": 734.25, + "number": 684 + }, + { + "x": 268.74, + "y": 239.35, + "number": 686 + }, + { + "x": 683.03, + "y": 788.79, + "number": 687 + }, + { + "x": 334.72, + "y": 189.18, + "number": 688 + }, + { + "x": 114.19, + "y": 185.55, + "number": 689 + }, + { + "x": 417.48, + "y": 168.69, + "number": 692 + }, + { + "x": 272.79, + "y": 488.36, + "number": 694 + }, + { + "x": 577.93, + "y": 483.4, + "number": 695 + }, + { + "x": 368.57, + "y": 6.86, + "number": 696 + }, + { + "x": 170.34, + "y": 432.61, + "number": 698 + }, + { + "x": 501.95, + "y": 66.16, + "number": 699 + } + ], + "localGroup": [ + { + "number": 2, + "class": "Frontier", + "tech": { + "cargo": 1, + "drive": 5.05, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 12.37, + "race": "KnightErrants", + "id": "c1b96767-472f-5a96-8d83-369b5800b1c1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Furgon10", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 24.75, + "race": "KnightErrants", + "id": "d3c4e0e7-de33-5145-b28b-293b2e02c445", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.38 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "fe8805a6-d03c-5b66-a062-c9eaa2266d20", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.27 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ce729a18-d695-5bed-857e-2806e576a1f1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 7, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 46, + "speed": 0, + "mass": 7.07, + "race": "KnightErrants", + "id": "0d0263b4-ff6b-5d55-b7cd-ac73d873812c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.08 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "fde80508-8829-5e8f-afa4-e16d2ce3e24f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "78449cc4-c2ec-53de-a0a3-87512990f742", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 77, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "0f48d7f3-8e0d-539d-afbe-8a59f6ef2fcf", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.01 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ee402052-9f78-5244-a57f-0c36e497ebef", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "25de95f9-580a-5135-9ad7-f6ee91e74c9f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "74c19316-4e30-574d-b7a6-3c98c13342d7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow105", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 149.54, + "race": "KnightErrants", + "id": "6875713d-719e-5740-ae2b-1dae8925a18d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "CrossBow52x2", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 149.54, + "race": "KnightErrants", + "id": "ae51be3a-e3f7-59c1-83bd-ee193e3a0b6a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.24, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 635, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "e9addad6-60b0-5401-8b2d-e77c7dcea116", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "0ecedad6-87f3-5371-b0a5-1d8e44e934cd", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "2a64b7aa-d58b-5a04-81c5-600d4743dd1a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ee77f33d-5bf5-5935-81b1-ae0b4c80bd06", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.53, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "407c3512-cff7-57fe-8c61-1492eedf2f38", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.53, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "8aa2ce73-3bfe-5f70-8993-da801d34f6ab", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Tormoz49", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 48.75, + "destination": 79, + "origin": 572, + "range": 29.86, + "speed": 0, + "mass": 98.25, + "race": "KnightErrants", + "id": "0885e23e-96a9-53a4-87bf-7ffdc8d25a63", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.53, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "db5a16d7-ea0b-5576-bbbf-2cf7086b74f6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 2.83, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "93151891-83e7-57ab-b22f-3ab7af738478", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Catapult8x7", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 3.3, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 99, + "race": "KnightErrants", + "id": "5f9fdb83-8163-56e2-a538-9cb04f860936", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Invalid", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 49.99, + "race": "KnightErrants", + "id": "4de87a01-538f-575b-aa07-5788768a44f7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Furgon10b", + "tech": { + "cargo": 1, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 9.25, + "destination": 79, + "speed": 0, + "mass": 34, + "race": "KnightErrants", + "id": "17d48fe8-b2cd-58b7-ada4-b16994cf0f91", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "503d36af-4488-5ef0-b5de-9cd23cd41084", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "64596118-d163-5699-ab59-c47355ed2cf1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "0e551f01-bea8-5499-9295-4edd11ce9275", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "998ee779-660a-5105-b749-dcceeb29b700", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "cdd558d3-b4b7-52e3-959a-01c9bfc653d6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 49, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "49870a7d-956f-5aa0-a0c9-66a0b661056e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "6873b5e0-2a1b-567e-b4b6-ba48ea48e802", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "06925742-c92a-5d80-8754-f6352ccdfc6e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 3, + "class": "Stop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 1, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 2.26, + "race": "KnightErrants", + "id": "74bf52d3-1051-5785-b08e-d31561d7b2e8", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "7e2aa02b-5dc4-5574-a33e-d4c216737347", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 3.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "66380351-e3b3-54b1-9bb7-6615b9be62ca", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 391, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "aa23b889-0780-5c75-be58-513f49d4a87e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 474, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "87194948-6d67-5234-894d-25dbdea031db", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "550e32b9-4068-5c7f-8237-a0dd1f26ece0", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "d52f6245-4857-5703-8125-0ae3c3876baf", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 177, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "9a818b63-4fc9-59d6-bfe3-03f683715a0e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 9, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "d2cd96c7-fb2f-5ea2-a0b0-23aadc221cb9", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 394, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "5a0ef736-42d3-5394-b385-6aa62527b0fc", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.34, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "0561b727-bdca-5c26-865c-4845795e7edb", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.34, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 610, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "58caa413-f1d5-5e5a-812c-e4c3977cd534", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "f0890948-3c59-54b4-bdc6-092d383d5e62", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 558, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "45955281-0c7c-5e4c-9e11-c2c40efb3e58", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "86968f2e-fc10-5366-9336-af8ceec34f9d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "8f0956d0-f58e-52b3-97b3-5b77616680c7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ab3be9b6-f441-5687-8538-06be6837dd23", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 458, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ce28e59d-1643-5c26-b3d1-74aaa3e796d6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 662, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "2b76689e-2be9-5103-88b4-e929ac180b33", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 48, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "2a13adc9-41f1-5f1e-b1f4-f9f7709fcaa9", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 253, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "42f76fd5-39ef-5881-9e96-3090979df3e2", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 513, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "04c131cb-f3f1-53c3-9162-2865caae0119", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 521, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "7bc54e58-b931-55df-8864-e4b58748f559", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 69, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "4ef24cc5-69b3-51c8-a8be-e54c2f047fa5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "de8001eb-3bbd-5c4c-9b43-f57727b13d36", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.13, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "43143f40-e0ed-5651-be78-4a59aea98398", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 8.13, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "654d6549-470b-594f-bbf4-5f4b01b44597", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "6b748afc-108b-5933-b605-dbfd1283c605", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 430, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "2018e46b-c2cf-56ee-99b6-4198525138bf", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "855d3f4f-5a4e-5678-b438-5ad9a51c2723", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "0cb8bb36-2707-55b8-9d29-1d880530a1d0", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.67 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "33c78d02-ffc9-5df5-9017-918e005b5818", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 24, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "5e0450e1-acec-5f13-bb51-ef5c727f5206", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 283, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "0299ab68-b1d6-5c0d-98ec-a4dd0535c8e7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 587, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "f0a94be5-3af6-534b-a8cd-7e9c2d31ad0f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 691, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "353840c6-3720-5d10-86c7-d6667de4f529", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 479, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "0ea4bdec-0e97-56e3-8bf9-9e5e2e303e91", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 7.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "5515386b-054e-501e-84de-4e44adcab2ef", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "19d4a93c-ae3e-59f3-9b84-3102cfe19579", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "298455f2-a7c3-5019-b838-48dff1f77e90", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "35f632d6-2f85-5862-8cbc-8be2efce421c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 6.52, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "f081f7e2-4f20-5fab-afc8-7ee9e51e7eee", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 362, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "e4e83504-fc42-5e69-ae10-4f416a679c3d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "cff70000-645c-5f51-b811-39cb6caff8ff", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "9fc146f9-586a-577e-b54c-761c9bde3fb2", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "7a5bd189-caf0-5a9c-80f2-adc125936433", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "1d92183d-f227-5431-950f-7aa289537315", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ea8a1391-c7b3-5d4b-b8bd-b18cd6eefb5d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "637e0bbb-7382-5fba-8ee6-cbd019498aa1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "00c3384d-233d-5df4-9900-a2acad0846f7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "80134b6e-30aa-58e6-a5c7-a5e1c82f06b4", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "c5caab15-aaee-5db6-89c9-9e2d234002a5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 139, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "f3b90726-fffe-5d20-b43d-8d3204a03887", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 31, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "f45acd56-3151-5882-a2dc-91d3cf3872f5", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "2af0f802-d675-5687-803e-378b14e9ff58", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 178, + "class": "Buckler100", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 5.65, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 2, + "race": "KnightErrants", + "id": "0343ea81-cc37-5562-bdc3-e00ecb42c577", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "0a865579-da92-598a-8e05-03a7c891fc7d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "93873466-3dbb-5f00-ac9f-0beedc7afe33", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "3ec33cc1-1e9c-5e0d-9c80-e584b286a82c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon5", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 12.37, + "race": "KnightErrants", + "id": "c3e70e95-3844-59d2-982e-415525119c5f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 90, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "39cb4177-4aa4-58f4-99b1-70936f21a725", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "7f5b8b02-78ef-5ca3-8884-15fc461d1a4c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "9681f47a-b083-5aef-aeab-6ead2bbeea80", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 20, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "3179ae8e-1dae-53f0-9245-1cf1370a9287", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "f6aaf22a-a5aa-50af-a535-9c90a757bb01", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "dd58d543-af7b-5e84-bfad-d164e99ec695", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "dba04345-ee08-54b5-abac-2c689810060a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ffe92756-0d71-563f-8a65-579dbc46d30d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "d41a5222-66c4-5837-bb17-b95ad029bcf8", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ff88b8a3-d203-509e-ac66-aac4d5d4a319", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "2d864b2e-2417-5e55-be45-ba66075dfb51", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "8c435432-7389-55e1-af96-5b8887f36c93", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "93b7cd69-4f68-52cc-983e-cf825d5848ca", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "f68781ae-6827-53aa-806d-e922a6544e7e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ad76f2da-a48a-5e80-8c17-1dede7bf6dad", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow105", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 3.3, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 149.54, + "race": "KnightErrants", + "id": "29b1c5a5-0093-5785-bc61-ef3f3d869826", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 54, + "class": "Buckler100", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 4.84, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 2, + "race": "KnightErrants", + "id": "b6de7be5-54a0-5c2b-8e91-94e7fe2dd9dd", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 46, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "7d8c85ae-6a1d-5500-b2fc-cd354713117c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "730a79a1-9432-5ab4-a5f9-f250892a5f87", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "52db3931-bb37-5372-a13a-23b875a669f6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "31233623-71a9-5b29-858d-77dcb14a6c02", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "7053a306-faa3-50ca-934b-bbdb82db0da0", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "0fe2d695-eb19-5286-aa75-88562126a37d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "1d9bd461-a532-5752-bc9f-77a6d4e76d95", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "d1531732-0e91-5043-ba68-ecf6655aa6ed", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "b818a8cb-9e24-54a1-bbed-d69dafb2b7af", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon20", + "tech": { + "cargo": 1, + "drive": 9.45, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 20, + "destination": 177, + "speed": 0, + "mass": 69.3, + "race": "KnightErrants", + "id": "be2849c1-45a7-5cf3-995a-fc2d8057ce65", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon100", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 100.02, + "destination": 114, + "speed": 0, + "mass": 198.85, + "race": "KnightErrants", + "id": "5f89851c-6aac-5389-88e0-4bd965eebdb7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon20", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 20, + "destination": 177, + "speed": 0, + "mass": 69.3, + "race": "KnightErrants", + "id": "962e84a3-7147-5754-8ee4-dacc5fc0a033", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "983fb832-b457-5c86-896e-65d0ba5c288e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.09, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "91f25671-93af-5bfb-af6c-6af2e25b93cf", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.58, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "1210f8ec-7ca1-5c90-8ab2-8ed6555643f7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 535, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "e98e75de-5217-5d02-8c68-8bcf4cbba97d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "b6dbc0b9-d524-59e8-a4ea-0bbde0d7956e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 150, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "bc283cda-1d59-5a33-9518-53a2550b92ec", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "bc7a17d7-938e-5032-bbdf-4777116f0abc", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "3c4f0aca-5af9-55ed-88ef-022cd4d2c27a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.07 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "958eadda-28f4-5966-9dc4-8ba2a99162e6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow55", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 99.39, + "race": "KnightErrants", + "id": "57fc1395-9108-533d-a25a-13a001337d09", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Catapult17x2.5", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 86.85, + "race": "KnightErrants", + "id": "ac28588d-07e3-5b90-8fb6-6401cf38c7db", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Nonstop", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.76 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "75cf0597-eb5d-5441-b83e-b75c41ba0aff", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow49", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 92.05, + "race": "KnightErrants", + "id": "c9757095-f5c1-502c-b842-1fcd1b93c226", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Sword1x24", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 6.6, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 91.35, + "race": "KnightErrants", + "id": "f4109d1a-9026-588f-b95e-d21b8b256130", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "2a6941d9-e0c1-5c32-ab7d-a1f26fa74a59", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "17f51955-c4f5-5fc6-9339-82e024fa835a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow55", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 99.39, + "race": "KnightErrants", + "id": "532aee0b-6fb8-5c5c-ae3c-4f753e8aef20", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Catapult17x2.5", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 86.85, + "race": "KnightErrants", + "id": "9ca8a80e-624f-54fa-91ab-44d2badb4bfa", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Bow49", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 92.05, + "race": "KnightErrants", + "id": "465703ad-7f21-520d-a3f6-4e49a72bb269", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Sword1x24", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 7.09, + "weapons": 4.76 + }, + "cargo": "COL", + "load": 1.05, + "destination": 385, + "speed": 0, + "mass": 91.35, + "race": "KnightErrants", + "id": "3abc074b-4046-580b-8c72-197e6fa42e23", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 100, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 5.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "49e9480a-6cfe-5ff5-99e4-8876bbec6882", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "70381094-4273-5ec5-9d97-3a2daead4864", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "6ee5da70-4255-5d2c-8ee2-f488a0118b96", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ac5cc7e9-4680-5078-80fd-edd56af41a11", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 251, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "3fb60e08-66f1-5e2f-91e1-7a387f0f0c1d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "1258fd4e-661b-5c85-a2e7-f922a1aba59e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "84775467-eac9-58b8-8466-88eb48cbba8c", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "cbcb1b66-59a9-59ca-b2b8-7abf154dc6a6", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "ccd6f110-97a5-5081-a007-38f8e1387de7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "10f8b324-13a3-5912-a887-64d0e503c591", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 4.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "6e6a5177-71de-5f7d-834d-4fe153bd0d73", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 57, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 9.11, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "7d90339f-488f-58d8-a118-737dfe82eb0f", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 96, + "class": "Buckler100", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 4.84, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 2, + "race": "KnightErrants", + "id": "7d56f165-c2aa-51fa-84d3-239dfa277f79", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "b66af58a-7039-57dd-96e6-f268d81dc80a", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "2aec44f4-b3fc-53f7-af01-06565eda6fa7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "e204b22e-3112-59d6-8571-2aecf3a0be4e", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "4c565d59-f50a-5509-8765-bcaf42f056ec", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "51288ce4-b69d-561a-a4a0-a4b408831118", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "f3aed80b-f85f-5cd1-b6c5-e5e99c03918d", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "e59329f5-4a55-59af-b48e-688d7dbb94b1", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "Furgon10", + "tech": { + "cargo": 1, + "drive": 10.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 24.75, + "race": "KnightErrants", + "id": "2e57764e-c658-562c-92da-299af97960d7", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 2, + "class": "Col12", + "tech": { + "cargo": 1, + "drive": 8.56, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "origin": 618, + "range": 152.03, + "speed": 0, + "mass": 24.72, + "race": "KnightErrants", + "id": "8a4edf71-a9c0-5c2d-ab80-d7f7842e3fd2", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "Col10", + "tech": { + "cargo": 1, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "origin": 502, + "range": 257.28, + "speed": 0, + "mass": 16.5, + "race": "KnightErrants", + "id": "d0f02b60-afe1-5ad0-95f7-416c28486d19", + "state": "In_Space", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "61dd202c-344a-595a-afcb-44a33ed76787", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "291c8956-14ab-5283-936c-08f84bf97a80", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "d72f12bc-7a7f-5dd0-bcab-0881081c1806", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 7, + "class": "SpetsNaz", + "tech": { + "cargo": 1, + "drive": 11.19, + "shields": 7.09, + "weapons": 6.11 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 7.1, + "race": "KnightErrants", + "id": "13a322b6-93d4-53c8-ab6b-02b6bafc575b", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "d39b1831-22e6-5131-bd25-4690f4277a23", + "state": "In_Orbit", + "fleet": null + }, + { + "number": 1, + "class": "PeaceShip", + "tech": { + "cargo": 0, + "drive": 11.19, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "KnightErrants", + "id": "f96cd083-0e78-56e2-a2fd-79ca77ea635f", + "state": "In_Orbit", + "fleet": null + } + ], + "otherGroup": [ + { + "number": 1, + "class": "Dragon", + "tech": { + "cargo": 1, + "drive": 4.1, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 19.8, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "UrodX151", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 3.08, + "weapons": 2 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 198, + "race": "Monstrai" + }, + { + "number": 1, + "class": "UrodX70", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 3.08, + "weapons": 2 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 191.9, + "race": "Monstrai" + }, + { + "number": 1, + "class": "UrodX10", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 3.08, + "weapons": 2 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 156.94, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Igla", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 3.08, + "weapons": 2 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 95.96, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 46, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 43, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 30, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 45, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 10, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 21, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 23, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.46, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "DeadHippo", + "tech": { + "cargo": 1, + "drive": 5.58, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 98.03, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "DeadHippo", + "tech": { + "cargo": 1, + "drive": 5.58, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 199.99, + "destination": 663, + "speed": 0, + "mass": 298.02, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.99, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 2, + "class": "Vanity", + "tech": { + "cargo": 0, + "drive": 8.75, + "shields": 3.92, + "weapons": 5.26 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 49.4, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.99, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.99, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 41, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 479, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 29, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 691, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 2, + "class": "DeadPig", + "tech": { + "cargo": 1, + "drive": 8.75, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 34, + "destination": 459, + "speed": 0, + "mass": 83.43, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 253, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.75, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 2.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 3.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 3.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 2.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 513, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 9, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 474, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 635, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 394, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 49, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 391, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 7.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 7.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 90, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "Orldr_sh", + "tech": { + "cargo": 0, + "drive": 1.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "Orla" + }, + { + "number": 1, + "class": "Orldr_sh", + "tech": { + "cargo": 0, + "drive": 5.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "Orla" + }, + { + "number": 3, + "class": "Orlperf_sh", + "tech": { + "cargo": 0, + "drive": 8.13, + "shields": 3.7, + "weapons": 3.7 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 99, + "race": "Orla" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 3.58, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 139, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 521, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 69, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 662, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 28, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 24, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "Gun", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 3.63 + }, + "cargo": "-", + "load": 0, + "destination": 479, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 253, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Makar", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Gruz_35", + "tech": { + "cargo": 1, + "drive": 4.44, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 100, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 691, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Perf_156x1", + "tech": { + "cargo": 1, + "drive": 6.14, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "COL", + "load": 1.05, + "destination": 108, + "speed": 0, + "mass": 195.05, + "race": "Zodiac" + }, + { + "number": 9, + "class": "3axBaT", + "tech": { + "cargo": 1, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 1.05, + "destination": 647, + "speed": 0, + "mass": 5.55, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Tur_8x7", + "tech": { + "cargo": 1, + "drive": 6.14, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "COL", + "load": 1.05, + "destination": 108, + "speed": 0, + "mass": 107.05, + "race": "Zodiac" + }, + { + "number": 2, + "class": "3axBaT", + "tech": { + "cargo": 1, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 4.5, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 139, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 2, + "class": "Perf_100x1", + "tech": { + "cargo": 1, + "drive": 8.64, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "COL", + "load": 1.05, + "destination": 108, + "speed": 0, + "mass": 96.55, + "race": "Zodiac" + }, + { + "number": 330, + "class": "Krysha", + "tech": { + "cargo": 0, + "drive": 8.64, + "shields": 2.75, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 2, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 2, + "class": "Makar", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.07 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 165, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 458, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 177, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 558, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 33, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Ataker_1x15", + "tech": { + "cargo": 1, + "drive": 8.64, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "COL", + "load": 1, + "destination": 108, + "speed": 0, + "mass": 236, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 20, + "class": "Krysha", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 2.75, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 2, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Gruz_55W", + "tech": { + "cargo": 1, + "drive": 10.14, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "COL", + "load": 205.84, + "destination": 116, + "speed": 0, + "mass": 440.84, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Makar", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.07 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Makar", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.07 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 7.33, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 253, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 251, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 195, + "class": "HDrone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 3.23, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 2, + "race": "Flagist" + }, + { + "number": 201, + "class": "HDrone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 3.23, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 2, + "race": "Flagist" + }, + { + "number": 1, + "class": "Vakain_Perf", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 355.43, + "race": "Flagist" + }, + { + "number": 1, + "class": "Anla_Gun", + "tech": { + "cargo": 1.2, + "drive": 6.18, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "COL", + "load": 1, + "destination": 72, + "speed": 0, + "mass": 99.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Kin_PerTu", + "tech": { + "cargo": 1.2, + "drive": 6.75, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "COL", + "load": 1, + "destination": 72, + "speed": 0, + "mass": 161.6, + "race": "Flagist" + }, + { + "number": 1, + "class": "Anla_Gun", + "tech": { + "cargo": 1.2, + "drive": 6.75, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "COL", + "load": 1.05, + "destination": 72, + "speed": 0, + "mass": 99.88, + "race": "Flagist" + }, + { + "number": 1, + "class": "Vakain_TurretA", + "tech": { + "cargo": 1.2, + "drive": 6.75, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "COL", + "load": 0.95, + "destination": 72, + "speed": 0, + "mass": 178.56, + "race": "Flagist" + }, + { + "number": 88, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Cargo_67", + "tech": { + "cargo": 1.2, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 67.08, + "destination": 222, + "speed": 0, + "mass": 154.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Cargo_82", + "tech": { + "cargo": 1.2, + "drive": 7.32, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 82.47, + "destination": 569, + "speed": 0, + "mass": 149.03, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 91, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 139, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 0.9, + "destination": 385, + "speed": 0, + "mass": 5.75, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 1, + "destination": 251, + "speed": 0, + "mass": 5.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 1, + "destination": 15, + "speed": 0, + "mass": 5.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 1, + "destination": 72, + "speed": 0, + "mass": 5.83, + "race": "Flagist" + }, + { + "number": 51, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 201, + "class": "HDrone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 4.73, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 2, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 150, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 251, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 610, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 535, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 458, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 177, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 558, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 385, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "drone", + "tech": { + "cargo": 0, + "drive": 4.39, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 1, + "race": "Bupyc" + }, + { + "number": 1, + "class": "KuHa_He_6ygeT", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 391, + "speed": 0, + "mass": 2, + "race": "Bupyc" + }, + { + "number": 1, + "class": "KuHa_He_6ygeT", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 90, + "speed": 0, + "mass": 2, + "race": "Bupyc" + }, + { + "number": 1, + "class": "KuHa_He_6ygeT", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 2, + "race": "Bupyc" + }, + { + "number": 9, + "class": "drone", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 1, + "race": "Bupyc" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 1.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 3.28, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "Marker", + "tech": { + "cargo": 1, + "drive": 1, + "shields": 0, + "weapons": 1 + }, + "cargo": "COL", + "load": 0.5, + "destination": 504, + "speed": 0, + "mass": 17, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cargo:20", + "tech": { + "cargo": 1, + "drive": 7.99, + "shields": 0, + "weapons": 1.81 + }, + "cargo": "COL", + "load": 19, + "destination": 504, + "speed": 0, + "mass": 117.96, + "race": "Koreans" + }, + { + "number": 1, + "class": "colovoz10", + "tech": { + "cargo": 1, + "drive": 3.92, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 10, + "destination": 421, + "speed": 0, + "mass": 59.46, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Capavoz100", + "tech": { + "cargo": 1, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 66.01, + "destination": 421, + "speed": 0, + "mass": 165.01, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 1.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 1.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Perfik", + "tech": { + "cargo": 0, + "drive": 7.99, + "shields": 2.59, + "weapons": 2.45 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 98.91, + "race": "Koreans" + }, + { + "number": 1, + "class": "TYPKA", + "tech": { + "cargo": 0, + "drive": 7.99, + "shields": 2.98, + "weapons": 2.45 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 49.43, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "PolyCruiser:96x1.6", + "tech": { + "cargo": 1, + "drive": 7.99, + "shields": 2.98, + "weapons": 2.45 + }, + "cargo": "COL", + "load": 1.05, + "destination": 654, + "speed": 0, + "mass": 198.42, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:5x6.71", + "tech": { + "cargo": 0, + "drive": 7.99, + "shields": 2.59, + "weapons": 2.45 + }, + "cargo": "-", + "load": 0, + "destination": 394, + "speed": 0, + "mass": 66.41, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 3.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Col27", + "tech": { + "cargo": 1, + "drive": 4.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 16.88, + "destination": 421, + "speed": 0, + "mass": 90.48, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 5.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 5.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 5.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Capavoz100", + "tech": { + "cargo": 1, + "drive": 5.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 71.64, + "destination": 504, + "speed": 0, + "mass": 170.64, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 5.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 3, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 3, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.8 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.8 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 16, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.45 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.45 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:6x6", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 9, + "speed": 0, + "mass": 68.19, + "race": "Koreans" + }, + { + "number": 1, + "class": "PolyGun:103x1.5", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 0.9, + "destination": 9, + "speed": 0, + "mass": 195.79, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:5x6.9", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 1.05, + "destination": 693, + "speed": 0, + "mass": 70.91, + "race": "Koreans" + }, + { + "number": 2, + "class": "PolyGun:57x1", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 87.12, + "race": "Koreans" + }, + { + "number": 91, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.62, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 29, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 40, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "MonoGun:1x55", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 1, + "destination": 693, + "speed": 0, + "mass": 148.18, + "race": "Koreans" + }, + { + "number": 1, + "class": "MonoGun1x33", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 0.9, + "destination": 635, + "speed": 0, + "mass": 99.9, + "race": "Koreans" + }, + { + "number": 1, + "class": "PolyCruiser:21x7.1", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 1, + "destination": 369, + "speed": 0, + "mass": 195.99, + "race": "Koreans" + }, + { + "number": 1, + "class": "PolyCruiser:24x7.2", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 1, + "destination": 369, + "speed": 0, + "mass": 222.52, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:6x6", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 68.19, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:5x7.65", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 73.54, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:5x6.9", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 1, + "destination": 693, + "speed": 0, + "mass": 70.86, + "race": "Koreans" + }, + { + "number": 1, + "class": "PolyGun:57x1", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 87.12, + "race": "Koreans" + }, + { + "number": 56, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 2, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 2, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 133, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 18, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "dperf:54x1", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 58.36, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:6x6", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 68.19, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:7x8.24", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 1, + "destination": 693, + "speed": 0, + "mass": 99.9, + "race": "Koreans" + }, + { + "number": 1, + "class": "PolyGun:112x1.6", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 1, + "destination": 654, + "speed": 0, + "mass": 222.92, + "race": "Koreans" + }, + { + "number": 1, + "class": "Defender:1x7", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 513, + "speed": 0, + "mass": 70.58, + "race": "Koreans" + }, + { + "number": 56, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 31, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 7, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 9, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 37, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:5x6.9", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "COL", + "load": 1, + "destination": 369, + "speed": 0, + "mass": 70.86, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cruiser:6x6", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 68.19, + "race": "Koreans" + }, + { + "number": 1, + "class": "Defender:1x6", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 65.09, + "race": "Koreans" + }, + { + "number": 170, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 66, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 45, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 2, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 2, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 19, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 474, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 49, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 75, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 70, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 474, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 2.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 150, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 535, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 139, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 253, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 20, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 3.76, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 46, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 610, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Atom", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "Kellerants" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 521, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.56, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 20, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.56, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.56, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 2, + "class": "SMCol", + "tech": { + "cargo": 1.1, + "drive": 10.85, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 2.31, + "destination": 370, + "speed": 0, + "mass": 18.6, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 177, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 458, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 157, + "class": "SD", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 2.08, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dulko1", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 8.23 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 88.71, + "race": "SSSan" + }, + { + "number": 24, + "class": "SD1", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 2, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 558, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "PE", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 8.23 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 49.44, + "race": "SSSan" + }, + { + "number": 1, + "class": "Per", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 8.23 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 196.25, + "race": "SSSan" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.95, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "SMCol", + "tech": { + "cargo": 1.1, + "drive": 10.85, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 1.51, + "destination": 141, + "speed": 0, + "mass": 17.87, + "race": "SSSan" + }, + { + "number": 19, + "class": "SD", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 2.08, + "race": "SSSan" + }, + { + "number": 1, + "class": "SDron", + "tech": { + "cargo": 0, + "drive": 1.91, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "race": "Shuriki" + }, + { + "number": 1, + "class": "SDron", + "tech": { + "cargo": 0, + "drive": 1.91, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 20, + "speed": 0, + "mass": 1, + "race": "Shuriki" + }, + { + "number": 1, + "class": "SDron", + "tech": { + "cargo": 0, + "drive": 1.91, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "race": "Shuriki" + }, + { + "number": 1, + "class": "SDron", + "tech": { + "cargo": 0, + "drive": 1.91, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "Shuriki" + }, + { + "number": 1, + "class": "SDron", + "tech": { + "cargo": 0, + "drive": 6.56, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "race": "Shuriki" + }, + { + "number": 1, + "class": "SDron", + "tech": { + "cargo": 0, + "drive": 6.56, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Shuriki" + }, + { + "number": 1, + "class": "SDron", + "tech": { + "cargo": 0, + "drive": 6.56, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Shuriki" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "Civilians" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "AT-2560TX" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 6.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 6.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 6.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 6.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "Colo", + "tech": { + "cargo": 1, + "drive": 1.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 0.08, + "destination": 370, + "speed": 0, + "mass": 6.26, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 635, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 5.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 5.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 394, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 513, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 9, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 474, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 49, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "cal", + "tech": { + "cargo": 1, + "drive": 1.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 691, + "speed": 0, + "mass": 49.35, + "race": "Nails" + }, + { + "number": 8, + "class": "cargonoid4", + "tech": { + "cargo": 1, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 3.5, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 19, + "class": "cargonoid2", + "tech": { + "cargo": 1, + "drive": 1.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 2.4, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "Aerosmith", + "tech": { + "cargo": 0, + "drive": 3.21, + "shields": 1, + "weapons": 1.3 + }, + "cargo": "-", + "load": 0, + "destination": 691, + "speed": 0, + "mass": 14.08, + "race": "Nails" + }, + { + "number": 1, + "class": "at-AR-3", + "tech": { + "cargo": 0, + "drive": 4.96, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 49.5, + "race": "Nails" + }, + { + "number": 5, + "class": "justcargo", + "tech": { + "cargo": 1, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 2, + "race": "Nails" + }, + { + "number": 1, + "class": "perf-VI-30", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 283, + "speed": 0, + "mass": 67.61, + "race": "Nails" + }, + { + "number": 1, + "class": "48", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 14, + "speed": 0, + "mass": 90.05, + "race": "Nails" + }, + { + "number": 1, + "class": "18a", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 430, + "speed": 0, + "mass": 50.49, + "race": "Nails" + }, + { + "number": 1, + "class": "1", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 430, + "speed": 0, + "mass": 67.61, + "race": "Nails" + }, + { + "number": 1, + "class": "18b", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "-", + "load": 0, + "destination": 283, + "speed": 0, + "mass": 49.5, + "race": "Nails" + }, + { + "number": 1, + "class": "1", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 14, + "speed": 0, + "mass": 67.61, + "race": "Nails" + }, + { + "number": 1, + "class": "1a", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 283, + "speed": 0, + "mass": 90.2, + "race": "Nails" + }, + { + "number": 1, + "class": "5", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 283, + "speed": 0, + "mass": 50.45, + "race": "Nails" + }, + { + "number": 25, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "1", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 14, + "speed": 0, + "mass": 67.61, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 521, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 99, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "1big", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "-", + "load": 0, + "destination": 430, + "speed": 0, + "mass": 66.55, + "race": "Nails" + }, + { + "number": 1, + "class": "54", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 14, + "speed": 0, + "mass": 90.15, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 283, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 587, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 430, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "25", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 49, + "race": "Nails" + }, + { + "number": 105, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "40", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 66.28, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "cargonoid3", + "tech": { + "cargo": 1, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 2.6, + "race": "Nails" + }, + { + "number": 291, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 69, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 662, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 212, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 76, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 283, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 24, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 118, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 48, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 430, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 479, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "59_1", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "-", + "load": 0, + "destination": 14, + "speed": 0, + "mass": 98, + "race": "Nails" + }, + { + "number": 24, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 48, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 3, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 22, + "class": "_pup_", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 3.19, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 2.17, + "race": "Nails" + }, + { + "number": 42, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 13, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 25, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "BigCol", + "tech": { + "cargo": 1, + "drive": 5.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 26.25, + "destination": 559, + "speed": 0, + "mass": 75.75, + "race": "AbubaGerbographerPot" + }, + { + "number": 5, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.95, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "AbubaGerbographerPot" + }, + { + "number": 7, + "class": "Drone_2", + "tech": { + "cargo": 0, + "drive": 6.95, + "shields": 4.18, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 513, + "speed": 0, + "mass": 4.03, + "race": "AbubaGerbographerPot" + }, + { + "number": 14, + "class": "Drone_2", + "tech": { + "cargo": 0, + "drive": 6.95, + "shields": 4.18, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 4.03, + "race": "AbubaGerbographerPot" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 6.53, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "Colonaizer", + "tech": { + "cargo": 1, + "drive": 1, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 1.18, + "destination": 20, + "speed": 0, + "mass": 9.43, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Colonaizer", + "tech": { + "cargo": 1, + "drive": 1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 8.25, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Colovozka", + "tech": { + "cargo": 1, + "drive": 4.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 20.02, + "destination": 641, + "speed": 0, + "mass": 69.52, + "race": "Ricksha" + }, + { + "number": 1, + "class": "TAPAHTAuKA", + "tech": { + "cargo": 1, + "drive": 5.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 99, + "race": "Ricksha" + }, + { + "number": 15, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 150, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 535, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "HE_CMOTPETb", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 150, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "HE_CMOTPETb", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "HE_CMOTPETb", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "HE_CMOTPETb", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 610, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 6, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 24, + "class": "HDron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 3.95, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 2, + "race": "Ricksha" + }, + { + "number": 1, + "class": "OXPAHA", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 99, + "race": "Ricksha" + }, + { + "number": 1, + "class": "ME4TA", + "tech": { + "cargo": 1, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "COL", + "load": 1.03, + "destination": 632, + "speed": 0, + "mass": 199.03, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Colovozka", + "tech": { + "cargo": 1, + "drive": 4.42, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 20.02, + "destination": 489, + "speed": 0, + "mass": 69.52, + "race": "Ricksha" + }, + { + "number": 37, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 5.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 5, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 500, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T805", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 65.15, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T541", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 49.5, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T717", + "tech": { + "cargo": 1, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "COL", + "load": 1.02, + "destination": 632, + "speed": 0, + "mass": 250.02, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T16", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 49.5, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T541", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 49.5, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T6901", + "tech": { + "cargo": 1, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "COL", + "load": 1.03, + "destination": 632, + "speed": 0, + "mass": 125.36, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 48, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T6901", + "tech": { + "cargo": 1, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 124.33, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 5.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "SuperGuard", + "tech": { + "cargo": 1, + "drive": 6.88, + "shields": 3.95, + "weapons": 1.5 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 99, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 139, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T845", + "tech": { + "cargo": 1, + "drive": 7.63, + "shields": 3.95, + "weapons": 3.36 + }, + "cargo": "COL", + "load": 1.05, + "destination": 632, + "speed": 0, + "mass": 79.75, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T612", + "tech": { + "cargo": 1, + "drive": 7.63, + "shields": 3.95, + "weapons": 3.36 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 99, + "race": "Ricksha" + }, + { + "number": 88, + "class": "HDron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 3.95, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 2, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T747", + "tech": { + "cargo": 1, + "drive": 7.63, + "shields": 3.95, + "weapons": 3.36 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 359.13, + "race": "Ricksha" + }, + { + "number": 157, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 139, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 19, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 150, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 57, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 70, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 50, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 10, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 157, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 198, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 535, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 610, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 95, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 2, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "T289", + "tech": { + "cargo": 1, + "drive": 7.63, + "shields": 3.95, + "weapons": 3.36 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 359.1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 7.73, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 7.73, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 7.73, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 610, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 251, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 535, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 150, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 139, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 20, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "MHE_BCE_uHTEPECHO", + "tech": { + "cargo": 0, + "drive": 2.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "3JO6HbIE" + }, + { + "number": 1, + "class": "MHE_BCE_uHTEPECHO", + "tech": { + "cargo": 0, + "drive": 4.51, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "3JO6HbIE" + } + ], + "unidentifiedGroup": [ + { + "x": 472.11, + "y": 618.81 + }, + { + "x": 489.61, + "y": 5.39 + }, + { + "x": 478.92, + "y": 631.37 + }, + { + "x": 440.65, + "y": 599.67 + }, + { + "x": 426.52, + "y": 648.77 + }, + { + "x": 78.91, + "y": 71.44 + }, + { + "x": 78.91, + "y": 71.44 + }, + { + "x": 78.91, + "y": 71.44 + }, + { + "x": 78.91, + "y": 71.44 + }, + { + "x": 78.91, + "y": 71.44 + }, + { + "x": 78.91, + "y": 71.44 + }, + { + "x": 575.29, + "y": 475.63 + }, + { + "x": 551.12, + "y": 385.29 + }, + { + "x": 499.21, + "y": 374.72 + }, + { + "x": 636.87, + "y": 359.98 + }, + { + "x": 624.82, + "y": 348.36 + }, + { + "x": 479.09, + "y": 388.15 + }, + { + "x": 441.84, + "y": 404.24 + }, + { + "x": 536.73, + "y": 352 + }, + { + "x": 451.35, + "y": 524.22 + }, + { + "x": 540.26, + "y": 496.87 + }, + { + "x": 794.64, + "y": 512.18 + }, + { + "x": 737.85, + "y": 467.95 + }, + { + "x": 758.57, + "y": 469.94 + }, + { + "x": 251.74, + "y": 512.08 + }, + { + "x": 233.28, + "y": 329.87 + }, + { + "x": 317.69, + "y": 422.98 + }, + { + "x": 398.7, + "y": 438.96 + }, + { + "x": 463.53, + "y": 727.1 + }, + { + "x": 416.04, + "y": 783.64 + }, + { + "x": 401.84, + "y": 787.51 + }, + { + "x": 437.53, + "y": 764.44 + }, + { + "x": 322.51, + "y": 279.79 + }, + { + "x": 177.87, + "y": 416.93 + }, + { + "x": 34.9, + "y": 99.64 + }, + { + "x": 0.04, + "y": 17.92 + }, + { + "x": 796.01, + "y": 15.65 + }, + { + "x": 608.55, + "y": 650.61 + }, + { + "x": 797.89, + "y": 135.91 + }, + { + "x": 34.69, + "y": 99.82 + }, + { + "x": 755.09, + "y": 566.28 + }, + { + "x": 605.18, + "y": 138.93 + }, + { + "x": 453.75, + "y": 210.31 + }, + { + "x": 294.82, + "y": 287.05 + }, + { + "x": 66.5, + "y": 203.89 + }, + { + "x": 719.87, + "y": 140.66 + }, + { + "x": 64.69, + "y": 200.54 + }, + { + "x": 278.37, + "y": 699.86 + }, + { + "x": 363.27, + "y": 704.9 + }, + { + "x": 271.49, + "y": 691.65 + }, + { + "x": 425.57, + "y": 716.13 + }, + { + "x": 422.79, + "y": 729.52 + }, + { + "x": 408.56, + "y": 759.64 + }, + { + "x": 144.17, + "y": 46.92 + }, + { + "x": 75.79, + "y": 724.85 + }, + { + "x": 70.24, + "y": 698.25 + }, + { + "x": 261.67, + "y": 151.09 + }, + { + "x": 432.12, + "y": 294.76 + }, + { + "x": 689.89, + "y": 688.49 + }, + { + "x": 605.51, + "y": 680.33 + }, + { + "x": 787.85, + "y": 310.21 + }, + { + "x": 398.42, + "y": 116.46 + }, + { + "x": 398.69, + "y": 112.94 + }, + { + "x": 428.72, + "y": 21.47 + }, + { + "x": 449.67, + "y": 793.01 + }, + { + "x": 471.9, + "y": 771.15 + }, + { + "x": 728.84, + "y": 761.19 + }, + { + "x": 450.24, + "y": 125.23 + }, + { + "x": 117.81, + "y": 442.01 + }, + { + "x": 118.15, + "y": 442.26 + }, + { + "x": 246.73, + "y": 55.19 + }, + { + "x": 220.99, + "y": 59.42 + } + ] + }, + "battles": { + "1951c81b-6d0d-597c-8eb1-877a5dbb7317": { + "id": "1951c81b-6d0d-597c-8eb1-877a5dbb7317", + "planet": 394, + "planetName": "D1", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "12ac1971-a391-528a-87d5-b40e331bce1a", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 3.28 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "SSSan", + "className": "Popka", + "tech": { + "DRIVE": 2.9, + "SHIELDS": 1, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 6.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 5.3 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 3, + "sa": 3, + "d": 2, + "sd": 2, + "x": true + } + ] + }, + "1c8f40a1-4469-5aed-b6b1-c7557c864f07": { + "id": "1c8f40a1-4469-5aed-b6b1-c7557c864f07", + "planet": 635, + "planetName": "PGT", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "12ac1971-a391-528a-87d5-b40e331bce1a", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 2.24 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 4.47 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "SSSan", + "className": "Popka", + "tech": { + "DRIVE": 2.9, + "SHIELDS": 1, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 6.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 2.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 3, + "sa": 3, + "d": 2, + "sd": 2, + "x": true + } + ] + }, + "228d740f-64b0-5d27-a557-2d32d625ac53": { + "id": "228d740f-64b0-5d27-a557-2d32d625ac53", + "planet": 654, + "planetName": "BedBig", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "12ac1971-a391-528a-87d5-b40e331bce1a", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "6": "f6db6531-cdbe-53ae-9312-e64068b17d7a" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 3.23 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "10": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 6.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "11": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 6 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "12": { + "race": "AbubaGerbographerPot", + "className": "Drone", + "tech": { + "DRIVE": 5.9 + }, + "num": 13, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "13": { + "race": "AbubaGerbographerPot", + "className": "Puf", + "tech": { + "DRIVE": 6.95, + "WEAPONS": 3.26 + }, + "num": 6, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "14": { + "race": "AbubaGerbographerPot", + "className": "Drone_2", + "tech": { + "DRIVE": 6.95, + "SHIELDS": 3.99 + }, + "num": 62, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Koreans", + "className": "PolyCruiser:96x1.6", + "tech": { + "CARGO": 1, + "DRIVE": 7.99, + "SHIELDS": 2.98, + "WEAPONS": 2.45 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "3": { + "race": "Koreans", + "className": "Cruiser:6x6", + "tech": { + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Koreans", + "className": "PolyGun:112x1.6", + "tech": { + "CARGO": 1, + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1, + "inBattle": true + }, + "5": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 9.87 + }, + "num": 57, + "numLeft": 56, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Koreans", + "className": "DPOH", + "tech": { + "DRIVE": 4.89 + }, + "num": 170, + "numLeft": 170, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "SSSan", + "className": "LTurretA_N", + "tech": { + "DRIVE": 5.9, + "SHIELDS": 1.27, + "WEAPONS": 2.33 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "SSSan", + "className": "Puf", + "tech": { + "DRIVE": 6.95, + "WEAPONS": 3.26 + }, + "num": 2, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "9": { + "race": "SSSan", + "className": "Drone", + "tech": { + "DRIVE": 6.95 + }, + "num": 7, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 3, + "sa": 8, + "d": 2, + "sd": 5, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 13, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 7, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 8, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 13, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 7, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 4, + "sd": 10, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 13, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 13, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 13, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 3, + "sd": 9, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 8, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 13, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 12, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": false + }, + { + "a": 2, + "sa": 4, + "d": 6, + "sd": 14, + "x": true + } + ] + }, + "284aa96c-dad3-5a79-8627-cd779042b3de": { + "id": "284aa96c-dad3-5a79-8627-cd779042b3de", + "planet": 385, + "planetName": "Kroshka", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "4b34c651-2636-5014-b486-72211e2ed65a", + "2": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "3": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 8.71 + }, + "num": 629, + "numLeft": 629, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "Bow105", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 2, + "numLeft": 2, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "10": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "11": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "12": { + "race": "Flagist", + "className": "Spores", + "tech": { + "CARGO": 1.2, + "DRIVE": 7.64, + "WEAPONS": 4.53 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.9, + "inBattle": false + }, + "13": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 11.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "CrossBow52x2", + "tech": { + "CARGO": 1, + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "3": { + "race": "KnightErrants", + "className": "Catapult8x7", + "tech": { + "DRIVE": 11.19, + "SHIELDS": 3.3, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "KnightErrants", + "className": "Invalid", + "tech": { + "DRIVE": 11.19, + "SHIELDS": 7.09, + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "KnightErrants", + "className": "Buckler100", + "tech": { + "DRIVE": 11.19, + "SHIELDS": 5.65 + }, + "num": 328, + "numLeft": 328, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "KnightErrants", + "className": "Bow55", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 2, + "numLeft": 2, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "7": { + "race": "KnightErrants", + "className": "Catapult17x2.5", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 2, + "numLeft": 2, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "8": { + "race": "KnightErrants", + "className": "Bow49", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 2, + "numLeft": 2, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "9": { + "race": "KnightErrants", + "className": "Sword1x24", + "tech": { + "CARGO": 1, + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 2, + "numLeft": 2, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 9, + "d": 3, + "sd": 13, + "x": true + } + ] + }, + "3bae45ff-10c5-5297-9c5a-d1039c944e76": { + "id": "3bae45ff-10c5-5297-9c5a-d1039c944e76", + "planet": 45, + "planetName": "DW-0690-0045", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "47c803af-2855-5973-9141-b3887a6cf367", + "4": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "5": "e7d5b8a1-69a4-521f-a5d5-643b1ccda246", + "6": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 2.8 + }, + "num": 32, + "numLeft": 32, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Koreans", + "className": "!", + "tech": { + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Onix", + "className": "Drone", + "tech": { + "DRIVE": 6.18 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "SSSan", + "className": "Dr", + "tech": { + "DRIVE": 2.9 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Acreators", + "className": "DPOH", + "tech": { + "DRIVE": 6.5 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "7": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 2, + "sa": 3, + "d": 4, + "sd": 5, + "x": true + } + ] + }, + "40d81f10-88b6-521a-9700-c2b6b1522b6b": { + "id": "40d81f10-88b6-521a-9700-c2b6b1522b6b", + "planet": 292, + "planetName": "SmalGood", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "12ac1971-a391-528a-87d5-b40e331bce1a", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 2.53 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 2.8 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "SSSan", + "className": "Popka", + "tech": { + "DRIVE": 2.9, + "SHIELDS": 1, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 6.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "5": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 6.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 3, + "sa": 3, + "d": 2, + "sd": 2, + "x": true + } + ] + }, + "42e9f113-d436-553f-b8fa-60746eed7f3c": { + "id": "42e9f113-d436-553f-b8fa-60746eed7f3c", + "planet": 243, + "planetName": "Dw2-243", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 8.13 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "dperf:54x1", + "tech": { + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 2.8 + }, + "num": 46, + "numLeft": 46, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "SSSan", + "className": "Drone_2", + "tech": { + "DRIVE": 6.95, + "SHIELDS": 4.18 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 4, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 4, + "x": true + } + ] + }, + "51f99594-35c0-5070-acaa-20cb079d695b": { + "id": "51f99594-35c0-5070-acaa-20cb079d695b", + "planet": 370, + "planetName": "S1", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "9d3315bb-337a-553b-96bb-7d13546c48d8", + "3": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "4": "47c803af-2855-5973-9141-b3887a6cf367", + "5": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "6": "e7d5b8a1-69a4-521f-a5d5-643b1ccda246", + "7": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 2.6 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "10": { + "race": "SSSan", + "className": "Dulko1", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37, + "WEAPONS": 8.23 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "11": { + "race": "SSSan", + "className": "SD1", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37 + }, + "num": 24, + "numLeft": 24, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "12": { + "race": "SSSan", + "className": "PE", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37, + "WEAPONS": 8.23 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "13": { + "race": "Acreators", + "className": "DPOH", + "tech": { + "DRIVE": 6.5 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "14": { + "race": "BlackCrows", + "className": "Colo", + "tech": { + "CARGO": 1, + "DRIVE": 1.64 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.08, + "inBattle": false + }, + "15": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 2.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "CosmicMonkeys", + "className": "DPOH", + "tech": { + "DRIVE": 4.35 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Koreans", + "className": "Capavoz100", + "tech": { + "CARGO": 1, + "DRIVE": 9.87 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 95.61, + "inBattle": true + }, + "4": { + "race": "Koreans", + "className": "!", + "tech": { + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Koreans", + "className": "FortStone:1x70", + "tech": { + "CARGO": 1, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "6": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 2.8 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Onix", + "className": "Drone", + "tech": { + "DRIVE": 6.18 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "SSSan", + "className": "SMCol", + "tech": { + "CARGO": 1.1, + "DRIVE": 10.85 + }, + "num": 2, + "numLeft": 2, + "loadType": "COL", + "loadQuantity": 2.31, + "inBattle": true + }, + "9": { + "race": "SSSan", + "className": "SD", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37 + }, + "num": 158, + "numLeft": 157, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 5, + "sa": 12, + "d": 6, + "sd": 13, + "x": true + }, + { + "a": 5, + "sa": 12, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 5, + "sa": 12, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 5, + "sa": 12, + "d": 3, + "sd": 6, + "x": true + }, + { + "a": 5, + "sa": 12, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 5, + "sa": 12, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 3, + "sa": 5, + "d": 5, + "sd": 9, + "x": true + }, + { + "a": 5, + "sa": 10, + "d": 3, + "sd": 5, + "x": true + } + ] + }, + "5b487499-547f-5ea5-8ec8-c228bdfec129": { + "id": "5b487499-547f-5ea5-8ec8-c228bdfec129", + "planet": 97, + "planetName": "Y2K", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "77e28126-6c7a-55c2-87ff-25b02470c02a" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 8.13 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Bumbastik", + "className": "K-2", + "tech": { + "DRIVE": 5.16, + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 2, + "sa": 3, + "d": 1, + "sd": 1, + "x": true + } + ] + }, + "60112197-fe47-5056-950a-1bec90737b6b": { + "id": "60112197-fe47-5056-950a-1bec90737b6b", + "planet": 225, + "planetName": "LEO", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 5.93 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "Gun", + "tech": { + "WEAPONS": 3.63 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 2, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "748784c5-911f-509b-a6d8-25d984c7e2f3": { + "id": "748784c5-911f-509b-a6d8-25d984c7e2f3", + "planet": 169, + "planetName": "B-169", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 6.52 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "Br-2", + "tech": { + "DRIVE": 5.16, + "SHIELDS": 2.3, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 1, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "831a3e55-7c55-52f9-8bdc-32680bac0d78": { + "id": "831a3e55-7c55-52f9-8bdc-32680bac0d78", + "planet": 513, + "planetName": "Dw1", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 7.25 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "Defender:1x7", + "tech": { + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "SSSan", + "className": "Drone_2", + "tech": { + "DRIVE": 6.95, + "SHIELDS": 4.18 + }, + "num": 8, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": false + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + } + ] + }, + "867cdc3e-8bdf-57d2-8401-0b92af7151fa": { + "id": "867cdc3e-8bdf-57d2-8401-0b92af7151fa", + "planet": 7, + "planetName": "B-007", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "Pistolet", + "tech": { + "DRIVE": 1.6, + "SHIELDS": 1, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "Tb-12_9.48", + "tech": { + "SHIELDS": 2.3, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Bumbastik", + "className": "Pb-125_56.94", + "tech": { + "SHIELDS": 2.3, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Bumbastik", + "className": "8-D", + "tech": { + "SHIELDS": 2.82 + }, + "num": 238, + "numLeft": 238, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Bumbastik", + "className": "P-1.5", + "tech": { + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 5, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "8a5eb73c-f3e1-5d18-ab58-80cb0d3fe78c": { + "id": "8a5eb73c-f3e1-5d18-ab58-80cb0d3fe78c", + "planet": 635, + "planetName": "PGT", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "12ac1971-a391-528a-87d5-b40e331bce1a", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 2.24 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "MonoGun1x33", + "tech": { + "CARGO": 1, + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.9, + "inBattle": true + }, + "3": { + "race": "SSSan", + "className": "Popka", + "tech": { + "DRIVE": 2.9, + "SHIELDS": 1, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 6.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 2.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 4, + "sd": 4, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + } + ] + }, + "8ae64d21-927c-5e14-aefb-6a133cd04329": { + "id": "8ae64d21-927c-5e14-aefb-6a133cd04329", + "planet": 394, + "planetName": "D1", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "12ac1971-a391-528a-87d5-b40e331bce1a", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "6": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "Cruiser:5x6.71", + "tech": { + "DRIVE": 7.99, + "SHIELDS": 2.59, + "WEAPONS": 2.45 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "SSSan", + "className": "Popka", + "tech": { + "DRIVE": 2.9, + "SHIELDS": 1, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 6.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 5.3 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 4, + "sd": 4, + "x": true + }, + { + "a": 2, + "sa": 2, + "d": 6, + "sd": 6, + "x": true + } + ] + }, + "8bc65ffe-c016-57d6-8cb0-5c5592530b6b": { + "id": "8bc65ffe-c016-57d6-8cb0-5c5592530b6b", + "planet": 445, + "planetName": "Maolin", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 4.6 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 6.08 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Flagist", + "className": "Spores", + "tech": { + "CARGO": 1.2, + "DRIVE": 7.64, + "WEAPONS": 4.53 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.26, + "inBattle": false + }, + "3": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 141, + "numLeft": 141, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Enoxes", + "className": "Track", + "tech": { + "CARGO": 1, + "DRIVE": 11.2, + "SHIELDS": 2.13, + "WEAPONS": 4.22 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 146.76, + "inBattle": true + }, + "5": { + "race": "Enoxes", + "className": "Pinta", + "tech": { + "CARGO": 1, + "DRIVE": 11.4, + "SHIELDS": 5.1, + "WEAPONS": 5.44 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 2, + "sa": 4, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "97dae5d0-00f1-5ad6-b2ac-6094b605d5ad": { + "id": "97dae5d0-00f1-5ad6-b2ac-6094b605d5ad", + "planet": 32, + "planetName": "B-032", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 6.52 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "Gun", + "tech": { + "WEAPONS": 3.63 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 1, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "a588d0e8-05c9-5484-a8bb-82dba7c32b47": { + "id": "a588d0e8-05c9-5484-a8bb-82dba7c32b47", + "planet": 129, + "planetName": "VIRGO", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "2": "4b34c651-2636-5014-b486-72211e2ed65a" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 5.93 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1007, + "numLeft": 1007, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "D18.56", + "tech": { + "CARGO": 1, + "DRIVE": 5.16, + "SHIELDS": 2.3, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1, + "inBattle": true + }, + "3": { + "race": "Bumbastik", + "className": "P110", + "tech": { + "CARGO": 1, + "DRIVE": 5.16, + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1, + "inBattle": true + }, + "4": { + "race": "Bumbastik", + "className": "T9", + "tech": { + "CARGO": 1, + "DRIVE": 5.16, + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1, + "inBattle": true + }, + "5": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 5.84 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 3, + "d": 2, + "sd": 5, + "x": true + }, + { + "a": 1, + "sa": 3, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "a9968f83-5b80-5799-9ef1-fe87ce0a49db": { + "id": "a9968f83-5b80-5799-9ef1-fe87ce0a49db", + "planet": 9, + "planetName": "Dw2", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "a35ad315-ad83-551f-99a5-abcb4ead0fc7", + "2": "7df9743c-8f73-5105-bd5c-483255e7d079", + "3": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "4": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "6": "eece5991-e9d6-5454-8196-c683232a7a53" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "Orla", + "className": "Orldr_sh", + "tech": { + "DRIVE": 1.3 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Koreans", + "className": "Cruiser:6x6", + "tech": { + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Koreans", + "className": "PolyGun:103x1.5", + "tech": { + "CARGO": 1, + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.9, + "inBattle": true + }, + "5": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 9.87 + }, + "num": 7, + "numLeft": 7, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "SSSan", + "className": "Dr", + "tech": { + "DRIVE": 2.9 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "SSSan", + "className": "Drone_2", + "tech": { + "DRIVE": 6.95, + "SHIELDS": 4.18 + }, + "num": 12, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "9": { + "race": "3JO6HbIE", + "className": "MHE_BCE_uHTEPECHO", + "tech": { + "DRIVE": 4.51 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 6, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + } + ] + }, + "ac708e4f-1202-5f53-8a2f-09622a43025a": { + "id": "ac708e4f-1202-5f53-8a2f-09622a43025a", + "planet": 292, + "planetName": "SmalGood", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "3": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "4": "12ac1971-a391-528a-87d5-b40e331bce1a", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 2.53 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Koreans", + "className": "DPOH", + "tech": { + "DRIVE": 4.25 + }, + "num": 30, + "numLeft": 29, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Koreans", + "className": "Cruiser:5x7.65", + "tech": { + "DRIVE": 9.87, + "SHIELDS": 4.86, + "WEAPONS": 5.96 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "SSSan", + "className": "Popka", + "tech": { + "DRIVE": 2.9, + "SHIELDS": 1, + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 6.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 6.4 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 3, + "sa": 4, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 2, + "sa": 3, + "d": 4, + "sd": 5, + "x": true + } + ] + }, + "dad43ae8-d33a-5275-bdc2-3a09de0dc72a": { + "id": "dad43ae8-d33a-5275-bdc2-3a09de0dc72a", + "planet": 449, + "planetName": "Orlenium", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "a35ad315-ad83-551f-99a5-abcb4ead0fc7", + "2": "7df9743c-8f73-5105-bd5c-483255e7d079", + "3": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "4": "24679346-ce5a-5c80-ad67-c7f082bf089a", + "5": "4cea13f9-e4e6-5bb7-bda9-9764cd37d413", + "6": "3195ed84-74af-5171-954a-19f9d1e84024", + "7": "eece5991-e9d6-5454-8196-c683232a7a53" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Orla", + "className": "Orlcol_sh", + "tech": { + "CARGO": 2, + "DRIVE": 6.51, + "SHIELDS": 3.06, + "WEAPONS": 3.05 + }, + "num": 6, + "numLeft": 0, + "loadType": "CAP", + "loadQuantity": 33.585, + "inBattle": true + }, + "10": { + "race": "3JO6HbIE", + "className": "T_2x16", + "tech": { + "CARGO": 1, + "DRIVE": 4.51, + "SHIELDS": 1.8, + "WEAPONS": 1.8 + }, + "num": 2, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0.525, + "inBattle": true + }, + "11": { + "race": "3JO6HbIE", + "className": "HP_60x2", + "tech": { + "CARGO": 1, + "DRIVE": 4.47, + "SHIELDS": 1.79, + "WEAPONS": 1.79 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.03, + "inBattle": true + }, + "12": { + "race": "3JO6HbIE", + "className": "G_1x24", + "tech": { + "CARGO": 1, + "DRIVE": 4.51, + "SHIELDS": 1.8, + "WEAPONS": 1.8 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 0.5, + "inBattle": true + }, + "13": { + "race": "3JO6HbIE", + "className": "MP_80x1.5", + "tech": { + "CARGO": 1, + "DRIVE": 4.51, + "SHIELDS": 1.8, + "WEAPONS": 1.8 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "14": { + "race": "3JO6HbIE", + "className": "HD", + "tech": { + "DRIVE": 4.51, + "SHIELDS": 1.8 + }, + "num": 314, + "numLeft": 230, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "15": { + "race": "3JO6HbIE", + "className": "MHE_BCE_uHTEPECHO", + "tech": { + "DRIVE": 2.3 + }, + "num": 1018, + "numLeft": 745, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "16": { + "race": "3JO6HbIE", + "className": "LP_120x1", + "tech": { + "CARGO": 1, + "DRIVE": 4.51, + "SHIELDS": 1.8, + "WEAPONS": 1.8 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.02, + "inBattle": true + }, + "17": { + "race": "3JO6HbIE", + "className": "HP_70x2_N", + "tech": { + "CARGO": 1, + "DRIVE": 4.51, + "SHIELDS": 1.8, + "WEAPONS": 1.8 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.03, + "inBattle": true + }, + "18": { + "race": "3JO6HbIE", + "className": "G_1x15", + "tech": { + "CARGO": 1, + "DRIVE": 4.51, + "SHIELDS": 1.8, + "WEAPONS": 1.8 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "19": { + "race": "3JO6HbIE", + "className": "LT_10x5.84", + "tech": { + "CARGO": 1, + "DRIVE": 4.51, + "SHIELDS": 1.8, + "WEAPONS": 1.8 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "2": { + "race": "Orla", + "className": "Orlperf_sh", + "tech": { + "DRIVE": 8.13, + "SHIELDS": 3.7, + "WEAPONS": 3.7 + }, + "num": 2, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "20": { + "race": "3JO6HbIE", + "className": "HP_22x2.8", + "tech": { + "CARGO": 1, + "DRIVE": 4.51, + "SHIELDS": 1.8, + "WEAPONS": 1.8 + }, + "num": 5, + "numLeft": 4, + "loadType": "", + "loadQuantity": 0.525, + "inBattle": true + }, + "21": { + "race": "3JO6HbIE", + "className": "G_1x11", + "tech": { + "DRIVE": 4.51, + "SHIELDS": 1.8, + "WEAPONS": 2.24 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Orla", + "className": "Orldrs_sh2", + "tech": { + "DRIVE": 8.13, + "SHIELDS": 3.7 + }, + "num": 50, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Orla", + "className": "Orlbum_sh", + "tech": { + "DRIVE": 8.13, + "SHIELDS": 3.7, + "WEAPONS": 3.7 + }, + "num": 6, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 3.77 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "Manya", + "className": "Dron", + "tech": { + "DRIVE": 5.24 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "AT-2560TX", + "className": "Drone", + "tech": { + "DRIVE": 2.9 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "9": { + "race": "6PATBA", + "className": "6pamuwka", + "tech": { + "DRIVE": 7.06 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 1, + "sa": 1, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 7, + "sa": 21, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 0, + "sd": 0, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 1, + "sa": 1, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 3, + "sd": 6, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 2, + "sd": 5, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 11, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 17, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 13, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 12, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 7, + "sa": 19, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 19, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 19, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 19, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 19, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 19, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 7, + "sa": 18, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": false + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 7, + "sa": 20, + "d": 1, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 12, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 21, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 7, + "sa": 18, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 13, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 7, + "sa": 18, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 7, + "sa": 21, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 12, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 20, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 18, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 21, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 4, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 12, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": false + }, + { + "a": 7, + "sa": 21, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 18, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 4, + "x": true + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 12, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 21, + "d": 1, + "sd": 2, + "x": true + }, + { + "a": 7, + "sa": 12, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 10, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 20, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 18, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 10, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 14, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 11, + "x": false + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 7, + "sd": 15, + "x": true + }, + { + "a": 7, + "sa": 21, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 18, + "d": 1, + "sd": 2, + "x": false + }, + { + "a": 7, + "sa": 12, + "d": 1, + "sd": 2, + "x": true + } + ] + }, + "dd9d1fe8-a624-51e4-a11c-23564feadfd7": { + "id": "dd9d1fe8-a624-51e4-a11c-23564feadfd7", + "planet": 596, + "planetName": "N596", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "a35ad315-ad83-551f-99a5-abcb4ead0fc7", + "2": "7df9743c-8f73-5105-bd5c-483255e7d079", + "3": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "4": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "5": "63492966-9c61-5ab5-86e9-0edeae824bb7", + "6": "eece5991-e9d6-5454-8196-c683232a7a53" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "Orla", + "className": "Orldr_sh", + "tech": { + "DRIVE": 1.3 + }, + "num": 2, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 5.93 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Koreans", + "className": "Perfik", + "tech": { + "DRIVE": 7.99, + "SHIELDS": 2.59, + "WEAPONS": 2.45 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Koreans", + "className": "TYPKA", + "tech": { + "DRIVE": 7.99, + "SHIELDS": 2.98, + "WEAPONS": 2.45 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 9.87 + }, + "num": 18, + "numLeft": 18, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "SSSan", + "className": "Dr", + "tech": { + "DRIVE": 2.9 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "SSSan", + "className": "Drone_2", + "tech": { + "DRIVE": 6.95, + "SHIELDS": 4.18 + }, + "num": 18, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "8": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 2.7 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "9": { + "race": "3JO6HbIE", + "className": "MHE_BCE_uHTEPECHO", + "tech": { + "DRIVE": 4.51 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 6, + "sd": 9, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 1, + "sd": 1, + "x": true + }, + { + "a": 3, + "sa": 3, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": false + }, + { + "a": 3, + "sa": 4, + "d": 4, + "sd": 7, + "x": true + } + ] + }, + "e0b9fe57-2772-5060-bdb1-0c18238745a0": { + "id": "e0b9fe57-2772-5060-bdb1-0c18238745a0", + "planet": 104, + "planetName": "San", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "2": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 4.6 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 6.08 + }, + "num": 2, + "numLeft": 2, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "Flagist", + "className": "Hi", + "tech": { + "WEAPONS": 4.53 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 9.07 + }, + "num": 50, + "numLeft": 50, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Enoxes", + "className": "Storm", + "tech": { + "CARGO": 1, + "DRIVE": 11.4, + "SHIELDS": 4.44, + "WEAPONS": 5.44 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.05, + "inBattle": true + }, + "5": { + "race": "Enoxes", + "className": "FS-6", + "tech": { + "DRIVE": 11.4, + "SHIELDS": 5.1 + }, + "num": 24, + "numLeft": 24, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 2, + "sa": 4, + "d": 0, + "sd": 0, + "x": true + } + ] + }, + "e4a8b24e-6187-58b6-b256-1e727842563d": { + "id": "e4a8b24e-6187-58b6-b256-1e727842563d", + "planet": 141, + "planetName": "B1", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "9d3315bb-337a-553b-96bb-7d13546c48d8", + "3": "1c4e6a18-4d45-5242-9467-031cabe8ad55", + "4": "47c803af-2855-5973-9141-b3887a6cf367", + "5": "d9c5bcf6-bdd3-5fd8-be22-22fc57a63e07", + "6": "63492966-9c61-5ab5-86e9-0edeae824bb7" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 9.09 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "2": { + "race": "CosmicMonkeys", + "className": "d", + "tech": { + "DRIVE": 2.8 + }, + "num": 2, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Koreans", + "className": "!", + "tech": { + "WEAPONS": 1 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Koreans", + "className": "d", + "tech": { + "DRIVE": 4.89 + }, + "num": 5, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "Onix", + "className": "Drone", + "tech": { + "DRIVE": 6.18 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "SSSan", + "className": "Per", + "tech": { + "DRIVE": 14.1, + "SHIELDS": 6.37, + "WEAPONS": 8.23 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "7": { + "race": "SSSan", + "className": "SMCol", + "tech": { + "CARGO": 1.1, + "DRIVE": 10.85 + }, + "num": 1, + "numLeft": 1, + "loadType": "COL", + "loadQuantity": 1.51, + "inBattle": true + }, + "8": { + "race": "BlackCrows", + "className": "Dron", + "tech": { + "DRIVE": 8.2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + } + }, + "protocol": [ + { + "a": 5, + "sa": 6, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 5, + "sa": 6, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 5, + "sa": 6, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 5, + "sa": 6, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 5, + "sa": 6, + "d": 4, + "sd": 5, + "x": true + }, + { + "a": 5, + "sa": 6, + "d": 3, + "sd": 4, + "x": true + }, + { + "a": 5, + "sa": 6, + "d": 3, + "sd": 3, + "x": true + }, + { + "a": 5, + "sa": 6, + "d": 2, + "sd": 2, + "x": true + }, + { + "a": 5, + "sa": 6, + "d": 3, + "sd": 4, + "x": true + } + ] + }, + "e67d0a22-8096-55ec-8654-d0026ae7d7fb": { + "id": "e67d0a22-8096-55ec-8654-d0026ae7d7fb", + "planet": 344, + "planetName": "TAURUS", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "77e28126-6c7a-55c2-87ff-25b02470c02a", + "2": "8cf165df-7fd5-5ce5-ba7a-6c49ddb64c85" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 5.93 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 3 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "K-1", + "tech": { + "DRIVE": 5.16, + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Nails", + "className": "pup", + "tech": { + "DRIVE": 4.98 + }, + "num": 15, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 0, + "sd": 0, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 1, + "sa": 2, + "d": 2, + "sd": 3, + "x": true + } + ] + }, + "efeacace-34e0-5551-8fe3-d7f62484a04c": { + "id": "efeacace-34e0-5551-8fe3-d7f62484a04c", + "planet": 571, + "planetName": "HYPNOTIC", + "races": { + "0": "bd502f3c-514d-5073-afe1-afab3b9df8a4", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "77e28126-6c7a-55c2-87ff-25b02470c02a" + }, + "ships": { + "0": { + "race": "HAEMHuKu-2000", + "className": "dr", + "tech": { + "DRIVE": 6.31 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 4.17 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Bumbastik", + "className": "K-2", + "tech": { + "DRIVE": 5.16, + "SHIELDS": 2.82, + "WEAPONS": 3.63 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Bumbastik", + "className": "BAX", + "tech": { + "DRIVE": 5.16 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 2, + "sa": 2, + "d": 1, + "sd": 1, + "x": true + } + ] + }, + "f319c219-9b3d-5e83-b4d5-8da594176a10": { + "id": "f319c219-9b3d-5e83-b4d5-8da594176a10", + "planet": 636, + "planetName": "Vedma", + "races": { + "0": "72081c93-d589-5964-bb56-51bd8c787e20", + "1": "7df9743c-8f73-5105-bd5c-483255e7d079", + "2": "4b34c651-2636-5014-b486-72211e2ed65a", + "3": "2929f814-6393-549e-a5b1-0ad1d097e03a", + "4": "5ce1d8e0-30bf-562c-9b6d-813031058ceb" + }, + "ships": { + "0": { + "race": "Monstrai", + "className": "UrodX151", + "tech": { + "DRIVE": 5.45, + "SHIELDS": 3.08, + "WEAPONS": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "Monstrai", + "className": "UrodX70", + "tech": { + "DRIVE": 5.45, + "SHIELDS": 3.08, + "WEAPONS": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Monstrai", + "className": "UrodX10", + "tech": { + "DRIVE": 5.45, + "SHIELDS": 3.08, + "WEAPONS": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "3": { + "race": "Monstrai", + "className": "Igla", + "tech": { + "DRIVE": 5.45, + "SHIELDS": 3.08, + "WEAPONS": 2 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Monstrai", + "className": "Muxa_CC", + "tech": { + "DRIVE": 5.45 + }, + "num": 175, + "numLeft": 175, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "5": { + "race": "KnightErrants", + "className": "Nonstop", + "tech": { + "WEAPONS": 4.76 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "6": { + "race": "Zodiac", + "className": "Drone", + "tech": { + "DRIVE": 4.04 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "7": { + "race": "Flagist", + "className": "Drone", + "tech": { + "DRIVE": 7.32 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "8": { + "race": "Kellerants", + "className": "Atom", + "tech": { + "DRIVE": 4.25 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 1, + "d": 4, + "sd": 8, + "x": true + } + ] + }, + "f4ee8fc1-4e3b-5dc1-b0a0-cdb4fcbcc0ea": { + "id": "f4ee8fc1-4e3b-5dc1-b0a0-cdb4fcbcc0ea", + "planet": 46, + "planetName": "Povezlp", + "races": { + "0": "7df9743c-8f73-5105-bd5c-483255e7d079", + "1": "5ce1d8e0-30bf-562c-9b6d-813031058ceb", + "2": "12ac1971-a391-528a-87d5-b40e331bce1a", + "3": "eedb8b43-f4d0-5903-b2c3-5acd0190cd3a", + "4": "d9b8f5cd-1ebc-5407-af1b-2a36323d0fe0" + }, + "ships": { + "0": { + "race": "KnightErrants", + "className": "Drone", + "tech": { + "DRIVE": 10.62, + "SHIELDS": 6.6, + "WEAPONS": 4.76 + }, + "num": 7, + "numLeft": 7, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "1": { + "race": "KnightErrants", + "className": "PeaceShip", + "tech": { + "DRIVE": 4.6 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "2": { + "race": "Kellerants", + "className": "Atom", + "tech": { + "DRIVE": 4.25 + }, + "num": 1, + "numLeft": 1, + "loadType": "", + "loadQuantity": 0, + "inBattle": false + }, + "3": { + "race": "Shuriki", + "className": "SDron", + "tech": { + "DRIVE": 6.56 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "4": { + "race": "Ricksha", + "className": "Colovozka", + "tech": { + "CARGO": 1, + "DRIVE": 4.43 + }, + "num": 1, + "numLeft": 0, + "loadType": "COL", + "loadQuantity": 20.02, + "inBattle": true + }, + "5": { + "race": "Ricksha", + "className": "Dron", + "tech": { + "DRIVE": 6.88 + }, + "num": 2, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + }, + "6": { + "race": "Enoxes", + "className": "Gnat", + "tech": { + "DRIVE": 11.4 + }, + "num": 1, + "numLeft": 0, + "loadType": "", + "loadQuantity": 0, + "inBattle": true + } + }, + "protocol": [ + { + "a": 0, + "sa": 0, + "d": 3, + "sd": 5, + "x": true + }, + { + "a": 0, + "sa": 0, + "d": 2, + "sd": 3, + "x": true + }, + { + "a": 0, + "sa": 0, + "d": 4, + "sd": 6, + "x": true + }, + { + "a": 0, + "sa": 0, + "d": 3, + "sd": 5, + "x": true + }, + { + "a": 0, + "sa": 0, + "d": 3, + "sd": 4, + "x": true + } + ] } - ] + } } diff --git a/tools/local-dev/reports/dg/KNNTS041.json b/tools/local-dev/reports/dg/KNNTS041.json index f5c5eb5..896fb5c 100644 --- a/tools/local-dev/reports/dg/KNNTS041.json +++ b/tools/local-dev/reports/dg/KNNTS041.json @@ -9498,6 +9498,7 @@ "destination": 458, "speed": 0, "mass": 13.42, + "race": "KnightErrants", "id": "c1b96767-472f-5a96-8d83-369b5800b1c1", "state": "In_Orbit", "fleet": null @@ -9516,6 +9517,7 @@ "destination": 461, "speed": 0, "mass": 24.75, + "race": "KnightErrants", "id": "d3c4e0e7-de33-5145-b28b-293b2e02c445", "state": "In_Orbit", "fleet": null @@ -9534,6 +9536,7 @@ "destination": 114, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "fe8805a6-d03c-5b66-a062-c9eaa2266d20", "state": "In_Orbit", "fleet": null @@ -9552,6 +9555,7 @@ "destination": 223, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ce729a18-d695-5bed-857e-2806e576a1f1", "state": "In_Orbit", "fleet": null @@ -9570,6 +9574,7 @@ "destination": 332, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "0d0263b4-ff6b-5d55-b7cd-ac73d873812c", "state": "In_Orbit", "fleet": null @@ -9588,6 +9593,7 @@ "destination": 495, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "fde80508-8829-5e8f-afa4-e16d2ce3e24f", "state": "In_Orbit", "fleet": null @@ -9606,6 +9612,7 @@ "destination": 447, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "78449cc4-c2ec-53de-a0a3-87512990f742", "state": "In_Orbit", "fleet": null @@ -9624,6 +9631,7 @@ "destination": 332, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0f48d7f3-8e0d-539d-afbe-8a59f6ef2fcf", "state": "In_Orbit", "fleet": null @@ -9642,6 +9650,7 @@ "destination": 223, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ee402052-9f78-5244-a57f-0c36e497ebef", "state": "In_Orbit", "fleet": null @@ -9660,6 +9669,7 @@ "destination": 495, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "25de95f9-580a-5135-9ad7-f6ee91e74c9f", "state": "In_Orbit", "fleet": null @@ -9678,6 +9688,7 @@ "destination": 679, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "74c19316-4e30-574d-b7a6-3c98c13342d7", "state": "In_Orbit", "fleet": null @@ -9696,6 +9707,7 @@ "destination": 227, "speed": 0, "mass": 148.79, + "race": "KnightErrants", "id": "6875713d-719e-5740-ae2b-1dae8925a18d", "state": "In_Orbit", "fleet": null @@ -9714,6 +9726,7 @@ "destination": 649, "speed": 0, "mass": 149.54, + "race": "KnightErrants", "id": "ae51be3a-e3f7-59c1-83bd-ee193e3a0b6a", "state": "In_Orbit", "fleet": null @@ -9732,6 +9745,7 @@ "destination": 635, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e9addad6-60b0-5401-8b2d-e77c7dcea116", "state": "In_Orbit", "fleet": null @@ -9750,6 +9764,7 @@ "destination": 431, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0ecedad6-87f3-5371-b0a5-1d8e44e934cd", "state": "In_Orbit", "fleet": null @@ -9768,6 +9783,7 @@ "destination": 183, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2a64b7aa-d58b-5a04-81c5-600d4743dd1a", "state": "In_Orbit", "fleet": null @@ -9786,6 +9802,7 @@ "destination": 190, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ee77f33d-5bf5-5935-81b1-ae0b4c80bd06", "state": "In_Orbit", "fleet": null @@ -9804,6 +9821,7 @@ "destination": 292, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "407c3512-cff7-57fe-8c61-1492eedf2f38", "state": "In_Orbit", "fleet": null @@ -9822,6 +9840,7 @@ "destination": 504, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8aa2ce73-3bfe-5f70-8993-da801d34f6ab", "state": "In_Orbit", "fleet": null @@ -9842,6 +9861,7 @@ "range": 26.27, "speed": 0, "mass": 49.5, + "race": "KnightErrants", "id": "0885e23e-96a9-53a4-87bf-7ffdc8d25a63", "state": "In_Space", "fleet": null @@ -9860,6 +9880,7 @@ "destination": 369, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "db5a16d7-ea0b-5576-bbbf-2cf7086b74f6", "state": "In_Orbit", "fleet": null @@ -9878,6 +9899,7 @@ "destination": 231, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "93151891-83e7-57ab-b22f-3ab7af738478", "state": "In_Orbit", "fleet": null @@ -9896,6 +9918,7 @@ "destination": 500, "speed": 0, "mass": 99, + "race": "KnightErrants", "id": "5f9fdb83-8163-56e2-a538-9cb04f860936", "state": "In_Orbit", "fleet": null @@ -9914,6 +9937,7 @@ "destination": 403, "speed": 0, "mass": 49.99, + "race": "KnightErrants", "id": "4de87a01-538f-575b-aa07-5788768a44f7", "state": "In_Orbit", "fleet": null @@ -9932,6 +9956,7 @@ "destination": 685, "speed": 0, "mass": 28.91, + "race": "KnightErrants", "id": "17d48fe8-b2cd-58b7-ada4-b16994cf0f91", "state": "In_Orbit", "fleet": null @@ -9950,6 +9975,7 @@ "destination": 693, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "503d36af-4488-5ef0-b5de-9cd23cd41084", "state": "In_Orbit", "fleet": null @@ -9968,6 +9994,7 @@ "destination": 114, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "64596118-d163-5699-ab59-c47355ed2cf1", "state": "In_Orbit", "fleet": null @@ -9986,6 +10013,7 @@ "destination": 654, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0e551f01-bea8-5499-9295-4edd11ce9275", "state": "In_Orbit", "fleet": null @@ -10004,6 +10032,7 @@ "destination": 559, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "998ee779-660a-5105-b749-dcceeb29b700", "state": "In_Orbit", "fleet": null @@ -10022,6 +10051,7 @@ "destination": 95, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cdd558d3-b4b7-52e3-959a-01c9bfc653d6", "state": "In_Orbit", "fleet": null @@ -10040,6 +10070,7 @@ "destination": 49, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49870a7d-956f-5aa0-a0c9-66a0b661056e", "state": "In_Orbit", "fleet": null @@ -10058,6 +10089,7 @@ "destination": 206, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6873b5e0-2a1b-567e-b4b6-ba48ea48e802", "state": "In_Orbit", "fleet": null @@ -10076,6 +10108,7 @@ "destination": 519, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "06925742-c92a-5d80-8754-f6352ccdfc6e", "state": "In_Orbit", "fleet": null @@ -10094,6 +10127,7 @@ "destination": 523, "speed": 0, "mass": 2.26, + "race": "KnightErrants", "id": "74bf52d3-1051-5785-b08e-d31561d7b2e8", "state": "In_Orbit", "fleet": null @@ -10112,6 +10146,7 @@ "destination": 20, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7e2aa02b-5dc4-5574-a33e-d4c216737347", "state": "In_Orbit", "fleet": null @@ -10130,6 +10165,7 @@ "destination": 111, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "66380351-e3b3-54b1-9bb7-6615b9be62ca", "state": "In_Orbit", "fleet": null @@ -10148,6 +10184,7 @@ "destination": 391, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "aa23b889-0780-5c75-be58-513f49d4a87e", "state": "In_Orbit", "fleet": null @@ -10166,6 +10203,7 @@ "destination": 474, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "87194948-6d67-5234-894d-25dbdea031db", "state": "In_Orbit", "fleet": null @@ -10184,6 +10222,7 @@ "destination": 572, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "550e32b9-4068-5c7f-8237-a0dd1f26ece0", "state": "In_Orbit", "fleet": null @@ -10202,6 +10241,7 @@ "destination": 17, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d52f6245-4857-5703-8125-0ae3c3876baf", "state": "In_Orbit", "fleet": null @@ -10220,6 +10260,7 @@ "destination": 177, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9a818b63-4fc9-59d6-bfe3-03f683715a0e", "state": "In_Orbit", "fleet": null @@ -10238,6 +10279,7 @@ "destination": 9, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d2cd96c7-fb2f-5ea2-a0b0-23aadc221cb9", "state": "In_Orbit", "fleet": null @@ -10256,6 +10298,7 @@ "destination": 394, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5a0ef736-42d3-5394-b385-6aa62527b0fc", "state": "In_Orbit", "fleet": null @@ -10274,6 +10317,7 @@ "destination": 519, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0561b727-bdca-5c26-865c-4845795e7edb", "state": "In_Orbit", "fleet": null @@ -10292,6 +10336,7 @@ "destination": 596, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "58caa413-f1d5-5e5a-812c-e4c3977cd534", "state": "In_Orbit", "fleet": null @@ -10310,6 +10355,7 @@ "destination": 558, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f0890948-3c59-54b4-bdc6-092d383d5e62", "state": "In_Orbit", "fleet": null @@ -10328,6 +10374,7 @@ "destination": 622, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "45955281-0c7c-5e4c-9e11-c2c40efb3e58", "state": "In_Orbit", "fleet": null @@ -10346,6 +10393,7 @@ "destination": 130, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "86968f2e-fc10-5366-9336-af8ceec34f9d", "state": "In_Orbit", "fleet": null @@ -10364,6 +10412,7 @@ "destination": 268, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8f0956d0-f58e-52b3-97b3-5b77616680c7", "state": "In_Orbit", "fleet": null @@ -10382,6 +10431,7 @@ "destination": 458, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ab3be9b6-f441-5687-8538-06be6837dd23", "state": "In_Orbit", "fleet": null @@ -10400,6 +10450,7 @@ "destination": 48, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ce28e59d-1643-5c26-b3d1-74aaa3e796d6", "state": "In_Orbit", "fleet": null @@ -10418,6 +10469,7 @@ "destination": 253, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2b76689e-2be9-5103-88b4-e929ac180b33", "state": "In_Orbit", "fleet": null @@ -10436,6 +10488,7 @@ "destination": 513, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2a13adc9-41f1-5f1e-b1f4-f9f7709fcaa9", "state": "In_Orbit", "fleet": null @@ -10454,6 +10507,7 @@ "destination": 69, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "42f76fd5-39ef-5881-9e96-3090979df3e2", "state": "In_Orbit", "fleet": null @@ -10472,6 +10526,7 @@ "destination": 243, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "04c131cb-f3f1-53c3-9162-2865caae0119", "state": "In_Orbit", "fleet": null @@ -10490,6 +10545,7 @@ "destination": 191, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7bc54e58-b931-55df-8864-e4b58748f559", "state": "In_Orbit", "fleet": null @@ -10508,6 +10564,7 @@ "destination": 697, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "4ef24cc5-69b3-51c8-a8be-e54c2f047fa5", "state": "In_Orbit", "fleet": null @@ -10526,6 +10583,7 @@ "destination": 430, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "de8001eb-3bbd-5c4c-9b43-f57727b13d36", "state": "In_Orbit", "fleet": null @@ -10544,6 +10602,7 @@ "destination": 45, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "43143f40-e0ed-5651-be78-4a59aea98398", "state": "In_Orbit", "fleet": null @@ -10562,6 +10621,7 @@ "destination": 549, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "654d6549-470b-594f-bbf4-5f4b01b44597", "state": "In_Orbit", "fleet": null @@ -10580,6 +10640,7 @@ "destination": 461, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6b748afc-108b-5933-b605-dbfd1283c605", "state": "In_Orbit", "fleet": null @@ -10598,6 +10659,7 @@ "destination": 24, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2018e46b-c2cf-56ee-99b6-4198525138bf", "state": "In_Orbit", "fleet": null @@ -10616,6 +10678,7 @@ "destination": 587, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "855d3f4f-5a4e-5678-b438-5ad9a51c2723", "state": "In_Orbit", "fleet": null @@ -10634,6 +10697,7 @@ "destination": 691, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0cb8bb36-2707-55b8-9d29-1d880530a1d0", "state": "In_Orbit", "fleet": null @@ -10652,6 +10716,7 @@ "destination": 425, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "33c78d02-ffc9-5df5-9017-918e005b5818", "state": "In_Orbit", "fleet": null @@ -10670,6 +10735,7 @@ "destination": 396, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5e0450e1-acec-5f13-bb51-ef5c727f5206", "state": "In_Orbit", "fleet": null @@ -10688,6 +10754,7 @@ "destination": 673, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0299ab68-b1d6-5c0d-98ec-a4dd0535c8e7", "state": "In_Orbit", "fleet": null @@ -10706,6 +10773,7 @@ "destination": 203, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f0a94be5-3af6-534b-a8cd-7e9c2d31ad0f", "state": "In_Orbit", "fleet": null @@ -10724,6 +10792,7 @@ "destination": 530, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "353840c6-3720-5d10-86c7-d6667de4f529", "state": "In_Orbit", "fleet": null @@ -10742,6 +10811,7 @@ "destination": 227, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0ea4bdec-0e97-56e3-8bf9-9e5e2e303e91", "state": "In_Orbit", "fleet": null @@ -10760,6 +10830,7 @@ "destination": 141, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5515386b-054e-501e-84de-4e44adcab2ef", "state": "In_Orbit", "fleet": null @@ -10778,6 +10849,7 @@ "destination": 12, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "19d4a93c-ae3e-59f3-9b84-3102cfe19579", "state": "In_Orbit", "fleet": null @@ -10796,6 +10868,7 @@ "destination": 46, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "298455f2-a7c3-5019-b838-48dff1f77e90", "state": "In_Orbit", "fleet": null @@ -10814,6 +10887,7 @@ "destination": 602, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "35f632d6-2f85-5862-8cbc-8be2efce421c", "state": "In_Orbit", "fleet": null @@ -10832,6 +10906,7 @@ "destination": 552, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f081f7e2-4f20-5fab-afc8-7ee9e51e7eee", "state": "In_Orbit", "fleet": null @@ -10850,6 +10925,7 @@ "destination": 28, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e4e83504-fc42-5e69-ae10-4f416a679c3d", "state": "In_Orbit", "fleet": null @@ -10868,6 +10944,7 @@ "destination": 370, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cff70000-645c-5f51-b811-39cb6caff8ff", "state": "In_Orbit", "fleet": null @@ -10886,6 +10963,7 @@ "destination": 532, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9fc146f9-586a-577e-b54c-761c9bde3fb2", "state": "In_Orbit", "fleet": null @@ -10904,6 +10982,7 @@ "destination": 612, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7a5bd189-caf0-5a9c-80f2-adc125936433", "state": "In_Orbit", "fleet": null @@ -10922,6 +11001,7 @@ "destination": 585, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1d92183d-f227-5431-950f-7aa289537315", "state": "In_Orbit", "fleet": null @@ -10940,6 +11020,7 @@ "destination": 366, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ea8a1391-c7b3-5d4b-b8bd-b18cd6eefb5d", "state": "In_Orbit", "fleet": null @@ -10958,6 +11039,7 @@ "destination": 500, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "637e0bbb-7382-5fba-8ee6-cbd019498aa1", "state": "In_Orbit", "fleet": null @@ -10976,6 +11058,7 @@ "destination": 298, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "00c3384d-233d-5df4-9900-a2acad0846f7", "state": "In_Orbit", "fleet": null @@ -10994,6 +11077,7 @@ "destination": 119, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "80134b6e-30aa-58e6-a5c7-a5e1c82f06b4", "state": "In_Orbit", "fleet": null @@ -11012,6 +11096,7 @@ "destination": 507, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c5caab15-aaee-5db6-89c9-9e2d234002a5", "state": "In_Orbit", "fleet": null @@ -11030,6 +11115,7 @@ "destination": 461, "speed": 0, "mass": 12.37, + "race": "KnightErrants", "id": "f3b90726-fffe-5d20-b43d-8d3204a03887", "state": "In_Orbit", "fleet": null @@ -11048,6 +11134,7 @@ "destination": 90, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f45acd56-3151-5882-a2dc-91d3cf3872f5", "state": "In_Orbit", "fleet": null @@ -11066,6 +11153,7 @@ "destination": 632, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2af0f802-d675-5687-803e-378b14e9ff58", "state": "In_Orbit", "fleet": null @@ -11084,6 +11172,7 @@ "destination": 506, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0343ea81-cc37-5562-bdc3-e00ecb42c577", "state": "In_Orbit", "fleet": null @@ -11102,6 +11191,7 @@ "destination": 227, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0a865579-da92-598a-8e05-03a7c891fc7d", "state": "In_Orbit", "fleet": null @@ -11120,6 +11210,7 @@ "destination": 343, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "93873466-3dbb-5f00-ac9f-0beedc7afe33", "state": "In_Orbit", "fleet": null @@ -11138,6 +11229,7 @@ "destination": 403, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3ec33cc1-1e9c-5e0d-9c80-e584b286a82c", "state": "In_Orbit", "fleet": null @@ -11156,6 +11248,7 @@ "destination": 332, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c3e70e95-3844-59d2-982e-415525119c5f", "state": "In_Orbit", "fleet": null @@ -11174,6 +11267,7 @@ "destination": 525, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "39cb4177-4aa4-58f4-99b1-70936f21a725", "state": "In_Orbit", "fleet": null @@ -11192,6 +11286,7 @@ "destination": 25, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7f5b8b02-78ef-5ca3-8884-15fc461d1a4c", "state": "In_Orbit", "fleet": null @@ -11210,6 +11305,7 @@ "destination": 432, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9681f47a-b083-5aef-aeab-6ead2bbeea80", "state": "In_Orbit", "fleet": null @@ -11228,6 +11324,7 @@ "destination": 685, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3179ae8e-1dae-53f0-9245-1cf1370a9287", "state": "In_Orbit", "fleet": null @@ -11246,6 +11343,7 @@ "destination": 403, "speed": 0, "mass": 148.99, + "race": "KnightErrants", "id": "f6aaf22a-a5aa-50af-a535-9c90a757bb01", "state": "In_Orbit", "fleet": null @@ -11264,6 +11362,7 @@ "destination": 649, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "dd58d543-af7b-5e84-bfad-d164e99ec695", "state": "In_Orbit", "fleet": null @@ -11282,6 +11381,7 @@ "destination": 134, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "dba04345-ee08-54b5-abac-2c689810060a", "state": "In_Orbit", "fleet": null @@ -11300,6 +11400,7 @@ "destination": 207, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ffe92756-0d71-563f-8a65-579dbc46d30d", "state": "In_Orbit", "fleet": null @@ -11318,6 +11419,7 @@ "destination": 459, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d41a5222-66c4-5837-bb17-b95ad029bcf8", "state": "In_Orbit", "fleet": null @@ -11336,6 +11438,7 @@ "destination": 196, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ff88b8a3-d203-509e-ac66-aac4d5d4a319", "state": "In_Orbit", "fleet": null @@ -11354,6 +11457,7 @@ "destination": 85, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2d864b2e-2417-5e55-be45-ba66075dfb51", "state": "In_Orbit", "fleet": null @@ -11372,6 +11476,7 @@ "destination": 663, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8c435432-7389-55e1-af96-5b8887f36c93", "state": "In_Orbit", "fleet": null @@ -11390,6 +11495,7 @@ "destination": 56, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "93b7cd69-4f68-52cc-983e-cf825d5848ca", "state": "In_Orbit", "fleet": null @@ -11408,6 +11514,7 @@ "destination": 314, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f68781ae-6827-53aa-806d-e922a6544e7e", "state": "In_Orbit", "fleet": null @@ -11426,6 +11533,7 @@ "destination": 690, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ad76f2da-a48a-5e80-8c17-1dede7bf6dad", "state": "In_Orbit", "fleet": null @@ -11444,6 +11552,7 @@ "destination": 669, "speed": 0, "mass": 69.3, + "race": "KnightErrants", "id": "29b1c5a5-0093-5785-bc61-ef3f3d869826", "state": "In_Orbit", "fleet": null @@ -11462,6 +11571,7 @@ "destination": 79, "speed": 0, "mass": 197.13, + "race": "KnightErrants", "id": "b6de7be5-54a0-5c2b-8e91-94e7fe2dd9dd", "state": "In_Orbit", "fleet": null @@ -11480,6 +11590,7 @@ "destination": 685, "speed": 0, "mass": 69.3, + "race": "KnightErrants", "id": "7d8c85ae-6a1d-5500-b2fc-cd354713117c", "state": "In_Orbit", "fleet": null @@ -11498,6 +11609,7 @@ "destination": 669, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "730a79a1-9432-5ab4-a5f9-f250892a5f87", "state": "In_Orbit", "fleet": null @@ -11516,6 +11628,7 @@ "destination": 647, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "52db3931-bb37-5372-a13a-23b875a669f6", "state": "In_Orbit", "fleet": null @@ -11534,6 +11647,7 @@ "destination": 649, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "31233623-71a9-5b29-858d-77dcb14a6c02", "state": "In_Orbit", "fleet": null @@ -11552,6 +11666,7 @@ "destination": 55, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7053a306-faa3-50ca-934b-bbdb82db0da0", "state": "In_Orbit", "fleet": null @@ -11570,6 +11685,7 @@ "destination": 79, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0fe2d695-eb19-5286-aa75-88562126a37d", "state": "In_Orbit", "fleet": null @@ -11588,6 +11704,7 @@ "destination": 636, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1d9bd461-a532-5752-bc9f-77a6d4e76d95", "state": "In_Orbit", "fleet": null @@ -11606,6 +11723,7 @@ "destination": 227, "speed": 0, "mass": 98.64, + "race": "KnightErrants", "id": "d1531732-0e91-5043-ba68-ecf6655aa6ed", "state": "In_Orbit", "fleet": null @@ -11624,6 +11742,7 @@ "destination": 227, "speed": 0, "mass": 86.1, + "race": "KnightErrants", "id": "b818a8cb-9e24-54a1-bbed-d69dafb2b7af", "state": "In_Orbit", "fleet": null @@ -11642,6 +11761,7 @@ "destination": 176, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "be2849c1-45a7-5cf3-995a-fc2d8057ce65", "state": "In_Orbit", "fleet": null @@ -11660,6 +11780,7 @@ "destination": 227, "speed": 0, "mass": 91.3, + "race": "KnightErrants", "id": "5f89851c-6aac-5389-88e0-4bd965eebdb7", "state": "In_Orbit", "fleet": null @@ -11678,6 +11799,7 @@ "destination": 227, "speed": 0, "mass": 90.6, + "race": "KnightErrants", "id": "962e84a3-7147-5754-8ee4-dacc5fc0a033", "state": "In_Orbit", "fleet": null @@ -11696,6 +11818,7 @@ "destination": 296, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "983fb832-b457-5c86-896e-65d0ba5c288e", "state": "In_Orbit", "fleet": null @@ -11714,6 +11837,7 @@ "destination": 108, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "91f25671-93af-5bfb-af6c-6af2e25b93cf", "state": "In_Orbit", "fleet": null @@ -11732,6 +11856,7 @@ "destination": 332, "speed": 0, "mass": 98.64, + "race": "KnightErrants", "id": "1210f8ec-7ca1-5c90-8ab2-8ed6555643f7", "state": "In_Orbit", "fleet": null @@ -11750,6 +11875,7 @@ "destination": 649, "speed": 0, "mass": 86.3, + "race": "KnightErrants", "id": "e98e75de-5217-5d02-8c68-8bcf4cbba97d", "state": "In_Orbit", "fleet": null @@ -11768,6 +11894,7 @@ "destination": 500, "speed": 0, "mass": 91.5, + "race": "KnightErrants", "id": "b6dbc0b9-d524-59e8-a4ea-0bbde0d7956e", "state": "In_Orbit", "fleet": null @@ -11786,6 +11913,7 @@ "destination": 500, "speed": 0, "mass": 90.8, + "race": "KnightErrants", "id": "bc283cda-1d59-5a33-9518-53a2550b92ec", "state": "In_Orbit", "fleet": null @@ -11804,6 +11932,7 @@ "destination": 500, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "bc7a17d7-938e-5032-bbdf-4777116f0abc", "state": "In_Orbit", "fleet": null @@ -11822,6 +11951,7 @@ "destination": 338, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3c4f0aca-5af9-55ed-88ef-022cd4d2c27a", "state": "In_Orbit", "fleet": null @@ -11840,6 +11970,7 @@ "destination": 222, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "958eadda-28f4-5966-9dc4-8ba2a99162e6", "state": "In_Orbit", "fleet": null @@ -11858,6 +11989,7 @@ "destination": 15, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "57fc1395-9108-533d-a25a-13a001337d09", "state": "In_Orbit", "fleet": null @@ -11876,6 +12008,7 @@ "destination": 251, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ac28588d-07e3-5b90-8fb6-6401cf38c7db", "state": "In_Orbit", "fleet": null @@ -11894,6 +12027,7 @@ "destination": 72, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "75cf0597-eb5d-5441-b83e-b75c41ba0aff", "state": "In_Orbit", "fleet": null @@ -11912,6 +12046,7 @@ "destination": 434, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c9757095-f5c1-502c-b842-1fcd1b93c226", "state": "In_Orbit", "fleet": null @@ -11930,6 +12065,7 @@ "destination": 340, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f4109d1a-9026-588f-b95e-d21b8b256130", "state": "In_Orbit", "fleet": null @@ -11948,6 +12084,7 @@ "destination": 305, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2a6941d9-e0c1-5c32-ab7d-a1f26fa74a59", "state": "In_Orbit", "fleet": null @@ -11966,6 +12103,7 @@ "destination": 409, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "17f51955-c4f5-5fc6-9339-82e024fa835a", "state": "In_Orbit", "fleet": null @@ -11984,6 +12122,7 @@ "destination": 624, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "532aee0b-6fb8-5c5c-ae3c-4f753e8aef20", "state": "In_Orbit", "fleet": null @@ -12002,6 +12141,7 @@ "destination": 500, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9ca8a80e-624f-54fa-91ab-44d2badb4bfa", "state": "In_Orbit", "fleet": null @@ -12020,6 +12160,7 @@ "destination": 227, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "465703ad-7f21-520d-a3f6-4e49a72bb269", "state": "In_Orbit", "fleet": null @@ -12038,6 +12179,7 @@ "destination": 116, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3abc074b-4046-580b-8c72-197e6fa42e23", "state": "In_Orbit", "fleet": null @@ -12056,6 +12198,7 @@ "destination": 38, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49e9480a-6cfe-5ff5-99e4-8876bbec6882", "state": "In_Orbit", "fleet": null @@ -12074,6 +12217,7 @@ "destination": 438, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "70381094-4273-5ec5-9d97-3a2daead4864", "state": "In_Orbit", "fleet": null @@ -12092,6 +12236,7 @@ "destination": 2, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6ee5da70-4255-5d2c-8ee2-f488a0118b96", "state": "In_Orbit", "fleet": null @@ -12110,6 +12255,7 @@ "destination": 421, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ac5cc7e9-4680-5078-80fd-edd56af41a11", "state": "In_Orbit", "fleet": null @@ -12128,6 +12274,7 @@ "destination": 569, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3fb60e08-66f1-5e2f-91e1-7a387f0f0c1d", "state": "In_Orbit", "fleet": null @@ -12146,6 +12293,7 @@ "destination": 436, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1258fd4e-661b-5c85-a2e7-f922a1aba59e", "state": "In_Orbit", "fleet": null @@ -12164,6 +12312,7 @@ "destination": 523, "speed": 0, "mass": 24.75, + "race": "KnightErrants", "id": "84775467-eac9-58b8-8466-88eb48cbba8c", "state": "In_Orbit", "fleet": null @@ -12182,6 +12331,7 @@ "destination": 495, "speed": 0, "mass": 24.72, + "race": "KnightErrants", "id": "cbcb1b66-59a9-59ca-b2b8-7abf154dc6a6", "state": "In_Orbit", "fleet": null @@ -12202,6 +12352,7 @@ "range": 80.13, "speed": 0, "mass": 16.5, + "race": "KnightErrants", "id": "ccd6f110-97a5-5081-a007-38f8e1387de7", "state": "In_Space", "fleet": null @@ -12220,6 +12371,7 @@ "destination": 225, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "10f8b324-13a3-5912-a887-64d0e503c591", "state": "In_Orbit", "fleet": null @@ -12238,6 +12390,7 @@ "destination": 344, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6e6a5177-71de-5f7d-834d-4fe153bd0d73", "state": "In_Orbit", "fleet": null @@ -12256,6 +12409,7 @@ "destination": 127, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7d90339f-488f-58d8-a118-737dfe82eb0f", "state": "In_Orbit", "fleet": null @@ -12274,6 +12428,7 @@ "destination": 632, "speed": 0, "mass": 8.15, + "race": "KnightErrants", "id": "7d56f165-c2aa-51fa-84d3-239dfa277f79", "state": "In_Orbit", "fleet": null @@ -12292,6 +12447,7 @@ "destination": 20, "speed": 0, "mass": 7.2, + "race": "KnightErrants", "id": "b66af58a-7039-57dd-96e6-f268d81dc80a", "state": "In_Orbit", "fleet": null @@ -12310,6 +12466,7 @@ "destination": 134, "speed": 0, "mass": 7.2, + "race": "KnightErrants", "id": "2aec44f4-b3fc-53f7-af01-06565eda6fa7", "state": "In_Orbit", "fleet": null @@ -12328,6 +12485,7 @@ "destination": 506, "speed": 0, "mass": 7.2, + "race": "KnightErrants", "id": "e204b22e-3112-59d6-8571-2aecf3a0be4e", "state": "In_Orbit", "fleet": null @@ -12346,6 +12504,7 @@ "destination": 46, "speed": 0, "mass": 7.2, + "race": "KnightErrants", "id": "4c565d59-f50a-5509-8765-bcaf42f056ec", "state": "In_Orbit", "fleet": null @@ -12364,6 +12523,7 @@ "destination": 343, "speed": 0, "mass": 7.81, + "race": "KnightErrants", "id": "51288ce4-b69d-561a-a4a0-a4b408831118", "state": "In_Orbit", "fleet": null @@ -12382,6 +12542,7 @@ "destination": 506, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "f3aed80b-f85f-5cd1-b6c5-e5e99c03918d", "state": "In_Orbit", "fleet": null @@ -12400,6 +12561,7 @@ "destination": 489, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "e59329f5-4a55-59af-b48e-688d7dbb94b1", "state": "In_Orbit", "fleet": null @@ -12418,6 +12580,7 @@ "destination": 525, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "2e57764e-c658-562c-92da-299af97960d7", "state": "In_Orbit", "fleet": null @@ -12436,6 +12599,7 @@ "destination": 669, "speed": 0, "mass": 33.7, + "race": "KnightErrants", "id": "8a4edf71-a9c0-5c2d-ab80-d7f7842e3fd2", "state": "In_Orbit", "fleet": null @@ -12454,6 +12618,7 @@ "destination": 403, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "d0f02b60-afe1-5ad0-95f7-416c28486d19", "state": "In_Orbit", "fleet": null @@ -12472,6 +12637,7 @@ "destination": 649, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "61dd202c-344a-595a-afcb-44a33ed76787", "state": "In_Orbit", "fleet": null @@ -12490,6 +12656,7 @@ "destination": 500, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "291c8956-14ab-5283-936c-08f84bf97a80", "state": "In_Orbit", "fleet": null @@ -12508,6 +12675,7 @@ "destination": 403, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "d72f12bc-7a7f-5dd0-bcab-0881081c1806", "state": "In_Orbit", "fleet": null @@ -12526,6 +12694,7 @@ "destination": 489, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "13a322b6-93d4-53c8-ab6b-02b6bafc575b", "state": "In_Orbit", "fleet": null @@ -12544,6 +12713,7 @@ "destination": 500, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d39b1831-22e6-5131-bd25-4690f4277a23", "state": "In_Orbit", "fleet": null @@ -12562,6 +12732,7 @@ "destination": 646, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f96cd083-0e78-56e2-a2fd-79ca77ea635f", "state": "In_Orbit", "fleet": null @@ -12580,6 +12751,7 @@ "destination": 694, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3f4fbdbb-63e1-5055-977e-2921093fddc3", "state": "In_Orbit", "fleet": null @@ -12598,6 +12770,7 @@ "destination": 275, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "33c431fa-5878-5fc0-9e3d-0ba3cd7c1b09", "state": "In_Orbit", "fleet": null @@ -12616,6 +12789,7 @@ "destination": 74, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5c133747-4900-5436-94a8-64cd06190a8c", "state": "In_Orbit", "fleet": null @@ -12634,6 +12808,7 @@ "destination": 661, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3a70f27e-4c13-5643-ba15-57cc89684d2a", "state": "In_Orbit", "fleet": null @@ -12652,6 +12827,7 @@ "destination": 201, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "50361e29-9d6c-5d28-be0b-00c4d82b966f", "state": "In_Orbit", "fleet": null @@ -12670,6 +12846,7 @@ "destination": 29, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "bc9e5a72-4f34-5c4f-910a-9b1e52393dd4", "state": "In_Orbit", "fleet": null @@ -12688,6 +12865,7 @@ "destination": 377, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "35014c45-88d1-57f9-b40c-8f79519f8dff", "state": "In_Orbit", "fleet": null @@ -12706,6 +12884,7 @@ "destination": 665, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c61ba59f-e2ba-5c1b-bfe4-92ea3cdd00cd", "state": "In_Orbit", "fleet": null @@ -12724,6 +12903,7 @@ "destination": 27, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2328307c-3792-53cf-a84d-f1294cab0189", "state": "In_Orbit", "fleet": null @@ -12742,6 +12922,7 @@ "destination": 32, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cc45c6bc-b2ef-5ec1-be90-c3e0586ca304", "state": "In_Orbit", "fleet": null @@ -12760,6 +12941,7 @@ "destination": 669, "speed": 0, "mass": 100.06, + "race": "KnightErrants", "id": "91090a79-7fbc-5fd9-ae7c-3550391f2aa5", "state": "In_Orbit", "fleet": null @@ -12778,6 +12960,7 @@ "destination": 669, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "9ae98c52-5324-56d3-ac98-65995c1c2e0f", "state": "In_Orbit", "fleet": null @@ -12796,6 +12979,7 @@ "destination": 669, "speed": 0, "mass": 69.52, + "race": "KnightErrants", "id": "58db4d5f-ad25-5098-99bf-466bc4dec96c", "state": "In_Orbit", "fleet": null @@ -12814,6 +12998,7 @@ "destination": 461, "speed": 0, "mass": 158.01, + "race": "KnightErrants", "id": "a1cecd6f-27a1-51b0-9d7f-28803ac6ae2d", "state": "In_Orbit", "fleet": null @@ -12832,6 +13017,7 @@ "destination": 97, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d4d24c73-a2d9-53bc-a6bf-1c89261084e6", "state": "In_Orbit", "fleet": null @@ -12850,6 +13036,7 @@ "destination": 461, "speed": 0, "mass": 94.08, + "race": "KnightErrants", "id": "9a726455-7d55-5a64-a229-38c8c957b513", "state": "In_Orbit", "fleet": null @@ -12868,6 +13055,7 @@ "destination": 461, "speed": 0, "mass": 2.02, + "race": "KnightErrants", "id": "c3865190-4716-5e3b-8704-c828d90f43b3", "state": "In_Orbit", "fleet": null @@ -12886,6 +13074,7 @@ "destination": 461, "speed": 0, "mass": 2.06, + "race": "KnightErrants", "id": "6ee84555-12e2-578a-abd9-54c4d0276589", "state": "In_Orbit", "fleet": null @@ -12904,6 +13093,7 @@ "destination": 449, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "350d3d10-78b4-5e79-a1d8-ac9838e56251", "state": "In_Orbit", "fleet": null @@ -12924,6 +13114,7 @@ "range": 95.14, "speed": 0, "mass": 226.18, + "race": "KnightErrants", "id": "cd9a9406-459f-5bc2-a895-0483c5917c27", "state": "In_Space", "fleet": null @@ -12942,6 +13133,7 @@ "destination": 461, "speed": 0, "mass": 100.6, + "race": "KnightErrants", "id": "5d5f54c1-993b-52fe-9187-104198ef50a9", "state": "In_Orbit", "fleet": null @@ -12960,6 +13152,7 @@ "destination": 682, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "79e1f511-7254-5072-a4bd-2256e8f6eff7", "state": "In_Orbit", "fleet": null @@ -12978,6 +13171,7 @@ "destination": 461, "speed": 0, "mass": 165.77, + "race": "KnightErrants", "id": "adfd2df2-fe26-5811-8a48-0b7b0cf4760a", "state": "In_Orbit", "fleet": null @@ -12996,6 +13190,7 @@ "destination": 685, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6b736c27-0a5e-5cf4-94ee-c81a9e43c434", "state": "In_Orbit", "fleet": null @@ -13014,6 +13209,7 @@ "destination": 403, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "df096589-4b23-5156-82c5-27d5bfd50ce5", "state": "In_Orbit", "fleet": null @@ -13032,6 +13228,7 @@ "destination": 446, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "38778841-5b4d-51a4-9765-2a42f2a6c61a", "state": "In_Orbit", "fleet": null @@ -13050,6 +13247,7 @@ "destination": 535, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "169e12ff-a2b1-5010-bd05-a70049b5d284", "state": "In_Orbit", "fleet": null @@ -13068,6 +13266,7 @@ "destination": 173, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "509fcd47-3d3a-5bc3-901d-ac3869d056da", "state": "In_Orbit", "fleet": null @@ -13086,6 +13285,7 @@ "destination": 641, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "769d8820-2baa-5cc1-a2d1-decaac6e6e39", "state": "In_Orbit", "fleet": null @@ -13104,6 +13304,7 @@ "destination": 528, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "aff5ca15-82a3-5424-88bd-030dcb6d1130", "state": "In_Orbit", "fleet": null @@ -13122,6 +13323,7 @@ "destination": 698, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7026f391-018a-5991-8e99-70bfcb261ac9", "state": "In_Orbit", "fleet": null @@ -13140,6 +13342,7 @@ "destination": 538, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cf41bf43-c875-5cba-8fba-f1fa3067870e", "state": "In_Orbit", "fleet": null @@ -13158,6 +13361,7 @@ "destination": 73, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "fc8b445f-939b-5961-9869-89a010c9b9fa", "state": "In_Orbit", "fleet": null @@ -13176,6 +13380,7 @@ "destination": 261, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49233dcb-32e6-5e8e-b986-373658c35306", "state": "In_Orbit", "fleet": null @@ -13194,6 +13399,7 @@ "destination": 26, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8a3eef0f-26b6-5ce9-9c8b-a8b89325700d", "state": "In_Orbit", "fleet": null @@ -13212,6 +13418,7 @@ "destination": 295, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "4d28e2de-c5b2-589c-be0d-b6e7ca70f231", "state": "In_Orbit", "fleet": null @@ -13230,6 +13437,7 @@ "destination": 599, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "b8b47be5-4b11-51aa-baa2-5483c8f9975a", "state": "In_Orbit", "fleet": null @@ -13248,6 +13456,7 @@ "destination": 593, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "374545f0-4bcf-5620-9889-c74a29458daf", "state": "In_Orbit", "fleet": null @@ -13266,6 +13475,7 @@ "destination": 358, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "46cabe0d-cb7d-560b-840f-005445357416", "state": "In_Orbit", "fleet": null @@ -13284,6 +13494,7 @@ "destination": 376, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7d677af7-fb32-5fbd-ac9c-94348b1027e5", "state": "In_Orbit", "fleet": null @@ -13302,6 +13513,7 @@ "destination": 471, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ebae3df4-1e9b-5de6-9db8-a412c82dfaa4", "state": "In_Orbit", "fleet": null @@ -13320,6 +13532,7 @@ "destination": 378, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "28f206c8-9ea1-57d9-9492-7076d9970d7c", "state": "In_Orbit", "fleet": null @@ -13338,6 +13551,7 @@ "destination": 664, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2e50b560-1497-599e-8360-c165e9867fd2", "state": "In_Orbit", "fleet": null @@ -13358,6 +13572,7 @@ "range": 7.01, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "52d1646e-a78b-52e3-8e7e-9c452545ee99", "state": "In_Space", "fleet": null @@ -13378,6 +13593,7 @@ "range": 9.92, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6d9628be-7884-5da6-ae10-064423bc9005", "state": "In_Space", "fleet": null @@ -13398,6 +13614,7 @@ "range": 10.57, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "65e88f1f-caf2-57ba-b412-da5def6e0b45", "state": "In_Space", "fleet": null @@ -13416,6 +13633,7 @@ "destination": 410, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9960a580-efc5-5ee5-a2f7-18f94c2281ee", "state": "In_Orbit", "fleet": null @@ -13436,6 +13654,7 @@ "range": 4.83, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2e0cd1ed-2579-54f4-9564-581528b5c474", "state": "In_Space", "fleet": null @@ -13456,6 +13675,7 @@ "range": 11.57, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "53550698-fc7e-55b3-a36b-77a912116143", "state": "In_Space", "fleet": null @@ -13476,6 +13696,7 @@ "range": 9.48, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "48343ed7-3ff2-5680-a59d-e5f5bb7a1eeb", "state": "In_Space", "fleet": null @@ -13496,6 +13717,7 @@ "range": 9.85, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "aa9fa0a4-25da-557d-8c58-0f37de7a67c4", "state": "In_Space", "fleet": null @@ -13516,6 +13738,7 @@ "range": 9.99, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "01a3fae0-6e6e-5d24-a2c6-d7b5f34fefde", "state": "In_Space", "fleet": null @@ -13536,6 +13759,7 @@ "range": 76.76, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "67e328f5-f066-51b1-9bf1-d941b9f8d170", "state": "In_Space", "fleet": null @@ -13556,6 +13780,7 @@ "range": 106.34, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "78077809-c920-5502-b23c-e3e75e6e4735", "state": "In_Space", "fleet": null @@ -13576,6 +13801,7 @@ "range": 82.19, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "a6ad6c1c-da81-52d3-aeb2-b6be314867b1", "state": "In_Space", "fleet": null @@ -13596,6 +13822,7 @@ "range": 138.68, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "aaac542c-ccca-5ed1-b6c4-d4a86462b9be", "state": "In_Space", "fleet": null @@ -13616,6 +13843,7 @@ "range": 148.21, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "62ad9d00-ccde-5c0a-8e00-28d77f4f1382", "state": "In_Space", "fleet": null @@ -13636,6 +13864,7 @@ "range": 127.47, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "4d8191b7-6ddc-5e23-9224-9c1ac15e7443", "state": "In_Space", "fleet": null @@ -13656,6 +13885,7 @@ "range": 134.93, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49b975eb-908c-59ef-90ba-d889adf1b758", "state": "In_Space", "fleet": null @@ -13676,6 +13906,7 @@ "range": 56.65, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f47cb79d-a1c7-5283-b96a-35e33475879a", "state": "In_Space", "fleet": null @@ -13696,6 +13927,7 @@ "range": 106.82, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9827abd5-0454-5632-b366-1c7c22e55601", "state": "In_Space", "fleet": null @@ -13716,6 +13948,7 @@ "range": 176.96, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "b04c507a-e2b4-5887-879c-305fe8e91e3b", "state": "In_Space", "fleet": null @@ -13736,6 +13969,7 @@ "range": 180.71, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e0e00db1-29e4-515f-821a-89e1fe1b70b0", "state": "In_Space", "fleet": null @@ -13756,6 +13990,7 @@ "range": 138.38, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0fad5faf-9c6d-5265-84e2-d5d649f2eced", "state": "In_Space", "fleet": null @@ -13776,6 +14011,7 @@ "range": 165.96, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "016c0596-ebd8-57be-9b6a-fa72595a2010", "state": "In_Space", "fleet": null @@ -13796,6 +14032,7 @@ "range": 151.98, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "07919134-41a3-5a58-a1f9-98e40424ba7a", "state": "In_Space", "fleet": null @@ -13816,6 +14053,7 @@ "range": 79.27, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "164e3a90-74ef-5cbd-b5bb-f78c79b2e9ae", "state": "In_Space", "fleet": null @@ -13836,6 +14074,7 @@ "range": 112.45, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "13f3eede-a2a6-5924-b21a-0a22733ba83e", "state": "In_Space", "fleet": null @@ -13856,6 +14095,7 @@ "range": 163.8, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "a5a90c23-0feb-5895-8ce3-e87176312a04", "state": "In_Space", "fleet": null @@ -13876,6 +14116,7 @@ "range": 181.65, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "b4208d2a-8959-588a-80f2-de007751164d", "state": "In_Space", "fleet": null @@ -13896,6 +14137,7 @@ "range": 77.54, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "dd4e8b6f-d2a7-5ba5-a348-2b8ece7a78dd", "state": "In_Space", "fleet": null @@ -13916,6 +14158,7 @@ "range": 66.8, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "acb18d01-8671-5456-9e2b-4b7f67a9b20f", "state": "In_Space", "fleet": null @@ -13936,6 +14179,7 @@ "range": 85.39, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2e1bb879-b5c2-5bc5-ae75-f5dc8371840e", "state": "In_Space", "fleet": null @@ -13956,6 +14200,7 @@ "range": 98.75, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d7e9985e-3983-5a86-abf6-7657721f9750", "state": "In_Space", "fleet": null @@ -13976,6 +14221,7 @@ "range": 30.77, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c000a716-3604-52ea-ac35-139e6e21c04b", "state": "In_Space", "fleet": null @@ -13996,6 +14242,7 @@ "range": 33.14, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "25daa7d2-1782-5fe6-a90f-ef0b2a04a33a", "state": "In_Space", "fleet": null @@ -14016,6 +14263,7 @@ "range": 19.25, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "708ff4b5-27f4-5737-9362-6546c4959498", "state": "In_Space", "fleet": null @@ -14036,6 +14284,7 @@ "range": 26.12, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "47486a43-b0c1-5f70-8386-ff21e55540d9", "state": "In_Space", "fleet": null @@ -14056,6 +14305,7 @@ "range": 77.9, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e3e4d91d-ce2b-5ff3-8be3-21a1b5b9defd", "state": "In_Space", "fleet": null @@ -14076,6 +14326,7 @@ "range": 79.76, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1db9842b-4b0c-5d31-bcd6-32445a88e738", "state": "In_Space", "fleet": null @@ -14096,6 +14347,7 @@ "range": 82.09, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e737e25b-773c-5423-8fec-906f61690042", "state": "In_Space", "fleet": null @@ -14116,6 +14368,7 @@ "range": 81.16, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "72ee480b-c932-59df-9ec8-cbb4ad2f6a65", "state": "In_Space", "fleet": null @@ -14136,6 +14389,7 @@ "range": 36.89, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e798af87-055f-5745-81e3-2788d6ac499c", "state": "In_Space", "fleet": null @@ -14156,6 +14410,7 @@ "range": 38.29, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "bcbafa36-3fdb-54e0-96c6-1e59d42938dd", "state": "In_Space", "fleet": null @@ -14176,6 +14431,7 @@ "range": 74.9, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "10209860-d32f-56f7-833b-20391a0299ee", "state": "In_Space", "fleet": null @@ -14196,6 +14452,7 @@ "range": 85.16, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "411af855-85bb-59ae-ae91-682bac107273", "state": "In_Space", "fleet": null @@ -14216,6 +14473,7 @@ "range": 56.07, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "77da9a3b-afa2-5f13-81bb-2698b653e577", "state": "In_Space", "fleet": null @@ -14236,6 +14494,7 @@ "range": 58.07, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7f8045a1-1a35-5eb1-b2ff-58d7cb749ad1", "state": "In_Space", "fleet": null @@ -14256,6 +14515,7 @@ "range": 19.28, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8745bcb9-5738-51ed-9392-bb2fbf41afb3", "state": "In_Space", "fleet": null @@ -14276,6 +14536,7 @@ "range": 75.66, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "514c69ff-50c6-599f-9992-18ebd055cd8c", "state": "In_Space", "fleet": null @@ -14294,6 +14555,7 @@ "destination": 523, "speed": 0, "mass": 2.26, + "race": "KnightErrants", "id": "62289ba3-3ed7-5038-9445-4bcb48cdc74b", "state": "In_Orbit", "fleet": null @@ -14312,6 +14574,7 @@ "destination": 447, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "af00a2ad-a24b-5401-a91a-b9c6a84c22a2", "state": "In_Orbit", "fleet": null @@ -14330,6 +14593,7 @@ "destination": 176, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5ddf5b06-d550-5df7-a0ba-3a5d9f44b9a9", "state": "In_Orbit", "fleet": null @@ -14348,6 +14612,7 @@ "destination": 17, "speed": 0, "mass": 99.01, + "race": "KnightErrants", "id": "a8adb08d-5cb8-53a1-b44e-d98ddc8d5e82", "state": "In_Orbit", "fleet": null @@ -14366,6 +14631,7 @@ "destination": 38, "speed": 0, "mass": 86.39, + "race": "KnightErrants", "id": "0f998df9-a71d-58fe-a417-4fc5ae5bdda1", "state": "In_Orbit", "fleet": null @@ -14384,6 +14650,7 @@ "destination": 87, "speed": 0, "mass": 2.06, + "race": "KnightErrants", "id": "24d0b57c-eef0-54f8-804c-f6cf2158159e", "state": "In_Orbit", "fleet": null @@ -14402,6 +14669,7 @@ "destination": 114, "speed": 0, "mass": 156.96, + "race": "KnightErrants", "id": "c543c1e7-bf75-5166-936d-85e205f40e08", "state": "In_Orbit", "fleet": null @@ -14420,6 +14688,7 @@ "destination": 176, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "30266a09-a9a6-52a4-a74d-5ae9d025cf37", "state": "In_Orbit", "fleet": null @@ -14438,6 +14707,7 @@ "destination": 223, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c52da430-b8d5-58ca-a46a-45e5229db11b", "state": "In_Orbit", "fleet": null @@ -14456,6 +14726,7 @@ "destination": 282, "speed": 0, "mass": 93.03, + "race": "KnightErrants", "id": "bfd105c5-999c-5726-bf24-34e392780b82", "state": "In_Orbit", "fleet": null @@ -14474,6 +14745,7 @@ "destination": 296, "speed": 0, "mass": 2.02, + "race": "KnightErrants", "id": "f92f17a9-42cc-5197-9c55-74a0791389a5", "state": "In_Orbit", "fleet": null @@ -14492,6 +14764,7 @@ "destination": 338, "speed": 0, "mass": 2.06, + "race": "KnightErrants", "id": "deafac4a-ce58-5420-a78f-5a172fbd0cee", "state": "In_Orbit", "fleet": null @@ -14510,6 +14783,7 @@ "destination": 446, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5deafca8-eb6b-5931-be45-05ded30e8f98", "state": "In_Orbit", "fleet": null @@ -14528,6 +14802,7 @@ "destination": 447, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d4d73402-bd32-5d01-bfa5-9f41ede0ba3a", "state": "In_Orbit", "fleet": null @@ -14546,6 +14821,7 @@ "destination": 495, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "c889d72f-ad40-56d8-9907-a789a95d0e4a", "state": "In_Orbit", "fleet": null @@ -14564,6 +14840,7 @@ "destination": 507, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5353f355-7b04-5b0c-b788-e3a95b616dc5", "state": "In_Orbit", "fleet": null @@ -14582,6 +14859,7 @@ "destination": 523, "speed": 0, "mass": 2.06, + "race": "KnightErrants", "id": "97c4d8da-fba5-5a50-a824-dc266c95d09b", "state": "In_Orbit", "fleet": null @@ -14600,6 +14878,7 @@ "destination": 532, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5f57860f-c7bb-5814-8c72-1b50d7d29aa8", "state": "In_Orbit", "fleet": null @@ -14618,6 +14897,7 @@ "destination": 535, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "de535a00-ff5c-50ce-ac08-2b59b616ae79", "state": "In_Orbit", "fleet": null @@ -14636,6 +14916,7 @@ "destination": 572, "speed": 0, "mass": 99.55, + "race": "KnightErrants", "id": "205440a2-16bc-5bea-8b11-87aac240a7be", "state": "In_Orbit", "fleet": null @@ -14654,6 +14935,7 @@ "destination": 622, "speed": 0, "mass": 2.04, + "race": "KnightErrants", "id": "63f96192-6da0-5893-9990-1f489505b3ed", "state": "In_Orbit", "fleet": null @@ -14672,6 +14954,7 @@ "destination": 636, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f656f713-f27d-5dee-b4a8-5410045e105a", "state": "In_Orbit", "fleet": null @@ -14690,6 +14973,7 @@ "destination": 669, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3993de6e-18b2-503a-a52d-3338c79e5026", "state": "In_Orbit", "fleet": null @@ -14708,10 +14992,13763 @@ "destination": 679, "speed": 0, "mass": 164.72, + "race": "KnightErrants", "id": "796fa3f5-b229-5fa8-8389-757e90c7c437", "state": "In_Orbit", "fleet": null } + ], + "otherGroup": [ + { + "number": 1, + "class": "Dragon", + "tech": { + "cargo": 1, + "drive": 4.1, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 19.8, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 646, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 694, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 275, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 74, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 471, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 29, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 201, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 664, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 661, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "UrodX151", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 3.08, + "weapons": 2 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 198, + "race": "Monstrai" + }, + { + "number": 1, + "class": "UrodX70", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 3.08, + "weapons": 2 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 191.9, + "race": "Monstrai" + }, + { + "number": 1, + "class": "UrodX10", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 3.08, + "weapons": 2 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 156.94, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Igla", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 3.08, + "weapons": 2 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 95.96, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 46, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 43, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 30, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 665, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 27, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 45, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 10, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 21, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 23, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.46, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 377, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 5.45, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Monstrai" + }, + { + "number": 1, + "class": "Tocka", + "tech": { + "cargo": 1, + "drive": 5.46, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 34.17, + "race": "Monstrai" + }, + { + "number": 1, + "class": "DeadPig", + "tech": { + "cargo": 1, + "drive": 5.58, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 34, + "destination": 314, + "speed": 0, + "mass": 83.43, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "DeadHippo", + "tech": { + "cargo": 1, + "drive": 5.58, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 98.03, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "DeadHippo", + "tech": { + "cargo": 1, + "drive": 5.58, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 166.69, + "destination": 663, + "speed": 0, + "mass": 264.72, + "race": "TwelvePointedCross" + }, + { + "number": 2, + "class": "Vanity", + "tech": { + "cargo": 0, + "drive": 8.75, + "shields": 3.92, + "weapons": 5.26 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 49.4, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.99, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.99, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "DeadCow", + "tech": { + "cargo": 1, + "drive": 8.73, + "shields": 0, + "weapons": 4.82 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 98.81, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 691, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "DeadPig", + "tech": { + "cargo": 1, + "drive": 8.75, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 34, + "destination": 314, + "speed": 0, + "mass": 83.43, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 253, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "DeadPig", + "tech": { + "cargo": 1, + "drive": 7.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 34, + "destination": 459, + "speed": 0, + "mass": 83.43, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.75, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "Spiral", + "tech": { + "cargo": 0, + "drive": 8.73, + "shields": 3.56, + "weapons": 4.82 + }, + "cargo": "-", + "load": 0, + "destination": 682, + "speed": 0, + "mass": 96.31, + "race": "TwelvePointedCross" + }, + { + "number": 21, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.75, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 682, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.75, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 682, + "speed": 0, + "mass": 1, + "race": "TwelvePointedCross" + }, + { + "number": 44, + "class": "Drone-10", + "tech": { + "cargo": 0, + "drive": 8.75, + "shields": 3.92, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 682, + "speed": 0, + "mass": 2, + "race": "TwelvePointedCross" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 2.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 3.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 3.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 2.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 513, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 9, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 474, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 635, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 394, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 97, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 49, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 6.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 7.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 7.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 90, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 7.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 391, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "dr", + "tech": { + "cargo": 0, + "drive": 7.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "race": "HAEMHuKu-2000" + }, + { + "number": 1, + "class": "Orldr_sh", + "tech": { + "cargo": 0, + "drive": 5.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 682, + "speed": 0, + "mass": 1, + "race": "Orla" + }, + { + "number": 5, + "class": "Orlperf_sh", + "tech": { + "cargo": 0, + "drive": 8.13, + "shields": 3.7, + "weapons": 3.7 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 99, + "race": "Orla" + }, + { + "number": 1, + "class": "Orlbum_sh", + "tech": { + "cargo": 0, + "drive": 8.13, + "shields": 3.7, + "weapons": 3.7 + }, + "cargo": "-", + "load": 0, + "destination": 449, + "speed": 0, + "mass": 99, + "race": "Orla" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 3.58, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 449, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 587, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 32, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 69, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 48, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 344, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 225, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 430, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 33, + "class": "BAX", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 24, + "speed": 0, + "mass": 1, + "race": "Bumbastik" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 661, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 253, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 664, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Makar", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Gruz_35", + "tech": { + "cargo": 1, + "drive": 4.44, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 100, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 201, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 376, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 694, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Gruz_58", + "tech": { + "cargo": 1, + "drive": 4.35, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 172.55, + "destination": 647, + "speed": 0, + "mass": 371.55, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 74, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 471, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 691, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Perf_156x1", + "tech": { + "cargo": 1, + "drive": 6.14, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "COL", + "load": 1.05, + "destination": 108, + "speed": 0, + "mass": 195.05, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.04, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 9, + "class": "3axBaT", + "tech": { + "cargo": 1, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 1.05, + "destination": 647, + "speed": 0, + "mass": 5.55, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Tur_8x7", + "tech": { + "cargo": 1, + "drive": 6.14, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "COL", + "load": 1.05, + "destination": 108, + "speed": 0, + "mass": 107.05, + "race": "Zodiac" + }, + { + "number": 2, + "class": "3axBaT", + "tech": { + "cargo": 1, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 4.5, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 127, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 665, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 275, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 458, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 2, + "class": "Perf_100x1", + "tech": { + "cargo": 1, + "drive": 8.64, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "COL", + "load": 1.05, + "destination": 108, + "speed": 0, + "mass": 96.55, + "race": "Zodiac" + }, + { + "number": 330, + "class": "Krysha", + "tech": { + "cargo": 0, + "drive": 8.64, + "shields": 2.75, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 2, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 2, + "class": "Makar", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.07 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 165, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 177, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 558, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 376, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 29, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 33, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Ataker_1x15", + "tech": { + "cargo": 1, + "drive": 8.64, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "COL", + "load": 1, + "destination": 108, + "speed": 0, + "mass": 236, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 20, + "class": "Krysha", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 2.75, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 2, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 5.84, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 646, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 27, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Gruz_55W", + "tech": { + "cargo": 1, + "drive": 10.14, + "shields": 2.75, + "weapons": 4.07 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 235, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 377, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Makar", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.07 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Makar", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.07 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 10.14, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Zodiac" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 7.33, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 1, + "class": "DDD", + "tech": { + "cargo": 0, + "drive": 6.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Oselots" + }, + { + "number": 8, + "class": "Settler_1", + "tech": { + "cargo": 1.59, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 599, + "speed": 0, + "mass": 14, + "race": "Slimes" + }, + { + "number": 2, + "class": "Far_Settler_1", + "tech": { + "cargo": 1, + "drive": 4.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 1.71, + "destination": 358, + "speed": 0, + "mass": 18.23, + "race": "Slimes" + }, + { + "number": 1, + "class": "Striker_1", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 2.1, + "weapons": 1.92 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 8.25, + "race": "Slimes" + }, + { + "number": 1, + "class": "Striker_1", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 1.1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 73, + "speed": 0, + "mass": 8.25, + "race": "Slimes" + }, + { + "number": 169, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 528, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 1, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 410, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 1, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 585, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 3, + "class": "Settler_1", + "tech": { + "cargo": 1.59, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 14, + "race": "Slimes" + }, + { + "number": 1, + "class": "NoAccess_1", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 2.6, + "weapons": 3.98 + }, + "cargo": "-", + "load": 0, + "destination": 261, + "speed": 0, + "mass": 35.23, + "race": "Slimes" + }, + { + "number": 1, + "class": "Small_Buravchik_1", + "tech": { + "cargo": 0, + "drive": 5.16, + "shields": 2.1, + "weapons": 3.52 + }, + "cargo": "-", + "load": 0, + "destination": 528, + "speed": 0, + "mass": 35.44, + "race": "Slimes" + }, + { + "number": 1, + "class": "Far_Settler_2", + "tech": { + "cargo": 1.73, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "MAT", + "load": 34.95, + "destination": 26, + "speed": 0, + "mass": 53.32, + "race": "Slimes" + }, + { + "number": 2, + "class": "Perf_2", + "tech": { + "cargo": 1.73, + "drive": 6.02, + "shields": 3.01, + "weapons": 4.05 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 140.95, + "race": "Slimes" + }, + { + "number": 2, + "class": "Perf_1", + "tech": { + "cargo": 0, + "drive": 6.02, + "shields": 3.01, + "weapons": 4.05 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 49.5, + "race": "Slimes" + }, + { + "number": 243, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 6.02, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 2, + "class": "Far_Settler_3", + "tech": { + "cargo": 1.73, + "drive": 5.16, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 45.76, + "destination": 295, + "speed": 0, + "mass": 73.65, + "race": "Slimes" + }, + { + "number": 1, + "class": "Fort_2", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 3.92 + }, + "cargo": "-", + "load": 0, + "destination": 26, + "speed": 0, + "mass": 42.1, + "race": "Slimes" + }, + { + "number": 182, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.79, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 73, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 6, + "class": "Sverlo_1", + "tech": { + "cargo": 1.73, + "drive": 6.02, + "shields": 3.01, + "weapons": 4.05 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 65.15, + "race": "Slimes" + }, + { + "number": 71, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.79, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 26, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 12, + "class": "Fort_2_Perf", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.05 + }, + "cargo": "-", + "load": 0, + "destination": 295, + "speed": 0, + "mass": 7.5, + "race": "Slimes" + }, + { + "number": 105, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.79, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 128, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.79, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 295, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 3, + "class": "Settler_1", + "tech": { + "cargo": 1.73, + "drive": 5.79, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 8.3, + "destination": 73, + "speed": 0, + "mass": 18.8, + "race": "Slimes" + }, + { + "number": 2, + "class": "Perf_3", + "tech": { + "cargo": 1.73, + "drive": 6.02, + "shields": 3.01, + "weapons": 4.05 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 141.84, + "race": "Slimes" + }, + { + "number": 4, + "class": "Fort_3_Perf", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 3.01, + "weapons": 4.05 + }, + "cargo": "-", + "load": 0, + "destination": 73, + "speed": 0, + "mass": 11.58, + "race": "Slimes" + }, + { + "number": 4, + "class": "Fort_3_Perf", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 3.01, + "weapons": 4.05 + }, + "cargo": "-", + "load": 0, + "destination": 261, + "speed": 0, + "mass": 11.58, + "race": "Slimes" + }, + { + "number": 1, + "class": "Far_Settler_4", + "tech": { + "cargo": 1.73, + "drive": 5.79, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 45.41, + "destination": 528, + "speed": 0, + "mass": 73.11, + "race": "Slimes" + }, + { + "number": 1, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.79, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 227, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 1, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.79, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 1, + "class": "Fly_1", + "tech": { + "cargo": 0, + "drive": 5.79, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "race": "Slimes" + }, + { + "number": 1, + "class": "Perf_3", + "tech": { + "cargo": 1.73, + "drive": 6.02, + "shields": 3.01, + "weapons": 4.05 + }, + "cargo": "-", + "load": 0, + "destination": 26, + "speed": 0, + "mass": 141.84, + "race": "Slimes" + }, + { + "number": 1, + "class": "ColoVoz", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 664, + "speed": 0, + "mass": 33, + "race": "Flagist" + }, + { + "number": 1, + "class": "BlockPost", + "tech": { + "cargo": 1, + "drive": 1.3, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 376, + "speed": 0, + "mass": 49.47, + "race": "Flagist" + }, + { + "number": 1, + "class": "ColoVoz", + "tech": { + "cargo": 1.2, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 646, + "speed": 0, + "mass": 33, + "race": "Flagist" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 471, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Small", + "tech": { + "cargo": 0, + "drive": 2.5, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 664, + "speed": 0, + "mass": 6, + "race": "Flagist" + }, + { + "number": 1, + "class": "Small", + "tech": { + "cargo": 0, + "drive": 2.5, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 275, + "speed": 0, + "mass": 6, + "race": "Flagist" + }, + { + "number": 5, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 275, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Small", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "-", + "load": 0, + "destination": 646, + "speed": 0, + "mass": 6, + "race": "Flagist" + }, + { + "number": 1, + "class": "Small", + "tech": { + "cargo": 0, + "drive": 2.5, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 694, + "speed": 0, + "mass": 6, + "race": "Flagist" + }, + { + "number": 5, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 694, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Small", + "tech": { + "cargo": 0, + "drive": 2.5, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 74, + "speed": 0, + "mass": 6, + "race": "Flagist" + }, + { + "number": 1, + "class": "Small", + "tech": { + "cargo": 0, + "drive": 2.5, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 661, + "speed": 0, + "mass": 6, + "race": "Flagist" + }, + { + "number": 1, + "class": "Small", + "tech": { + "cargo": 0, + "drive": 2.5, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 29, + "speed": 0, + "mass": 6, + "race": "Flagist" + }, + { + "number": 1, + "class": "Small", + "tech": { + "cargo": 0, + "drive": 2.5, + "shields": 1, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 201, + "speed": 0, + "mass": 6, + "race": "Flagist" + }, + { + "number": 3, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 376, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 3, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 661, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 3, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 29, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 3, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 201, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 1.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 8, + "class": "Small", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 3.96, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 471, + "speed": 0, + "mass": 6, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 646, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 377, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 27, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 130, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 116, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "CapaVoz", + "tech": { + "cargo": 1.2, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "CAP", + "load": 256.15, + "destination": 436, + "speed": 0, + "mass": 312.46, + "race": "Flagist" + }, + { + "number": 1, + "class": "Kinbin_Cargo", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 29, + "speed": 0, + "mass": 49.5, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Muxa_CC", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 665, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 253, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 108, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 119, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 251, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 195, + "class": "HDrone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 3.23, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 2, + "race": "Flagist" + }, + { + "number": 201, + "class": "HDrone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 3.23, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 2, + "race": "Flagist" + }, + { + "number": 1, + "class": "Vakain_Perf", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 355.43, + "race": "Flagist" + }, + { + "number": 1, + "class": "Anla_Gun", + "tech": { + "cargo": 1.2, + "drive": 6.18, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "COL", + "load": 1, + "destination": 624, + "speed": 0, + "mass": 99.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Vakain_TurretA", + "tech": { + "cargo": 1.2, + "drive": 6.18, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "COL", + "load": 0.9, + "destination": 127, + "speed": 0, + "mass": 178.52, + "race": "Flagist" + }, + { + "number": 1, + "class": "Kin_PerTu", + "tech": { + "cargo": 1.2, + "drive": 6.75, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "COL", + "load": 1, + "destination": 624, + "speed": 0, + "mass": 161.6, + "race": "Flagist" + }, + { + "number": 1, + "class": "Anla_Gun", + "tech": { + "cargo": 1.2, + "drive": 6.75, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "COL", + "load": 1.05, + "destination": 624, + "speed": 0, + "mass": 99.88, + "race": "Flagist" + }, + { + "number": 1, + "class": "Vakain_TurretA", + "tech": { + "cargo": 1.2, + "drive": 6.75, + "shields": 3.23, + "weapons": 4.43 + }, + "cargo": "COL", + "load": 0.95, + "destination": 624, + "speed": 0, + "mass": 178.56, + "race": "Flagist" + }, + { + "number": 88, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 632, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Cargo_67", + "tech": { + "cargo": 1.2, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 67.08, + "destination": 305, + "speed": 0, + "mass": 154.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Vacain_Gun", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 3.23, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 664, + "speed": 0, + "mass": 149.41, + "race": "Flagist" + }, + { + "number": 48, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 127, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Cargo_56", + "tech": { + "cargo": 1.2, + "drive": 7.32, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 56.87, + "destination": 305, + "speed": 0, + "mass": 107.46, + "race": "Flagist" + }, + { + "number": 1, + "class": "Cargo_82", + "tech": { + "cargo": 1.2, + "drive": 7.32, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 82.47, + "destination": 409, + "speed": 0, + "mass": 149.03, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 91, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 8, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 1.26, + "destination": 74, + "speed": 0, + "mass": 6.05, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 669, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 20, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 1, + "destination": 377, + "speed": 0, + "mass": 5.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 1, + "destination": 27, + "speed": 0, + "mass": 5.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 0.9, + "destination": 134, + "speed": 0, + "mass": 5.75, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 1, + "destination": 251, + "speed": 0, + "mass": 5.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 1, + "destination": 15, + "speed": 0, + "mass": 5.83, + "race": "Flagist" + }, + { + "number": 1, + "class": "Spores", + "tech": { + "cargo": 1.2, + "drive": 7.64, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "COL", + "load": 1, + "destination": 72, + "speed": 0, + "mass": 5.83, + "race": "Flagist" + }, + { + "number": 51, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 201, + "class": "HDrone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 4.73, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 2, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 647, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 27, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 377, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 665, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 649, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 403, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 27, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 15, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 4.53 + }, + "cargo": "-", + "load": 0, + "destination": 251, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 377, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 4, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 665, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 535, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 525, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 500, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 134, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 343, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 458, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 177, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 558, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 685, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 636, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 46, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 506, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Hi", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.66 + }, + "cargo": "-", + "load": 0, + "destination": 127, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 2, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 251, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.49, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 227, + "speed": 0, + "mass": 1, + "race": "Flagist" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 225, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 24, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 48, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 344, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "Manya" + }, + { + "number": 1, + "class": "drone", + "tech": { + "cargo": 0, + "drive": 4.39, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 1, + "race": "Bupyc" + }, + { + "number": 1, + "class": "KuHa_He_6ygeT", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 391, + "speed": 0, + "mass": 2, + "race": "Bupyc" + }, + { + "number": 1, + "class": "KuHa_He_6ygeT", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 90, + "speed": 0, + "mass": 2, + "race": "Bupyc" + }, + { + "number": 1, + "class": "KuHa_He_6ygeT", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 2, + "race": "Bupyc" + }, + { + "number": 19, + "class": "drone", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 2, + "speed": 0, + "mass": 1, + "race": "Bupyc" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.34, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 664, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3.29, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.34, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 201, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.94, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 661, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.94, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 471, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.94, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 275, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.94, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 29, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.94, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 376, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.94, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 74, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 1.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 3.28, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 8.54, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 9.39, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 1, + "race": "CosmicMonkeys" + }, + { + "number": 1, + "class": "Marker", + "tech": { + "cargo": 1, + "drive": 1, + "shields": 0, + "weapons": 1 + }, + "cargo": "COL", + "load": 0.5, + "destination": 504, + "speed": 0, + "mass": 17, + "race": "Koreans" + }, + { + "number": 1, + "class": "Cargo:20", + "tech": { + "cargo": 1, + "drive": 7.99, + "shields": 0, + "weapons": 1.83 + }, + "cargo": "COL", + "load": 19, + "destination": 504, + "speed": 0, + "mass": 117.96, + "race": "Koreans" + }, + { + "number": 1, + "class": "colovoz10", + "tech": { + "cargo": 1, + "drive": 3.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 10, + "destination": 421, + "speed": 0, + "mass": 59.46, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Capavoz100", + "tech": { + "cargo": 1, + "drive": 8.01, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 66.01, + "destination": 421, + "speed": 0, + "mass": 165.01, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 1.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 1.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Perfik", + "tech": { + "cargo": 0, + "drive": 7.99, + "shields": 2.59, + "weapons": 2.45 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 98.91, + "race": "Koreans" + }, + { + "number": 1, + "class": "TYPKA", + "tech": { + "cargo": 0, + "drive": 7.99, + "shields": 2.98, + "weapons": 2.45 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 49.43, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 3.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Col27", + "tech": { + "cargo": 1, + "drive": 4.91, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 16.88, + "destination": 421, + "speed": 0, + "mass": 90.48, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 5.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 5.23, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 5.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Capavoz100", + "tech": { + "cargo": 1, + "drive": 5.95, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 71.64, + "destination": 504, + "speed": 0, + "mass": 170.64, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 5.93, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 3, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 3, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.8 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 1.8 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 16, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.45 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 2.45 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 2, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 2, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 18, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "dperf:54x1", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 58.36, + "race": "Koreans" + }, + { + "number": 1, + "class": "Defender:1x7", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 70.58, + "race": "Koreans" + }, + { + "number": 7, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 9, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Defender:1x6", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 65.09, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 4, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 4, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.89, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 2.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 2, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 49, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 3, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 3, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 3, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 474, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 3, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 2, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "FortPoly:87x1.3", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 4.86, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 70.32, + "race": "Koreans" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 4.25, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 6, + "class": "MAPK2", + "tech": { + "cargo": 1, + "drive": 9.87, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 12.5, + "race": "Koreans" + }, + { + "number": 1, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 394, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 70, + "class": "stone", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 4.86, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 15, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 28, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 13, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 40, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 635, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "!", + "tech": { + "cargo": 0, + "drive": 0, + "shields": 0, + "weapons": 5.96 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 16, + "class": "d", + "tech": { + "cargo": 0, + "drive": 9.87, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Koreans" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.08, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 73, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 358, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 26, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.32, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 261, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 4.75, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 528, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 7.96, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "Barcarols" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 6.18, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "race": "Onix" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 114, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 447, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 176, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 223, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 495, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 177, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 523, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dr", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 679, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 572, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 461, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 458, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 622, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 44, + "class": "SD", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 2.08, + "race": "SSSan" + }, + { + "number": 1, + "class": "Dulko1", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 8.23 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 88.71, + "race": "SSSan" + }, + { + "number": 5, + "class": "SD1", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 2, + "race": "SSSan" + }, + { + "number": 1, + "class": "DDRR", + "tech": { + "cargo": 0, + "drive": 8.17, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 558, + "speed": 0, + "mass": 1, + "race": "SSSan" + }, + { + "number": 1, + "class": "Per", + "tech": { + "cargo": 0, + "drive": 14.1, + "shields": 6.37, + "weapons": 8.23 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 196.25, + "race": "SSSan" + }, + { + "number": 1, + "class": "SDron", + "tech": { + "cargo": 0, + "drive": 1.91, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "race": "Shuriki" + }, + { + "number": 1, + "class": "SDron", + "tech": { + "cargo": 0, + "drive": 6.56, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Shuriki" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 682, + "speed": 0, + "mass": 1, + "race": "Civilians" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "Civilians" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "AT-2560TX" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 449, + "speed": 0, + "mass": 1, + "race": "AT-2560TX" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 682, + "speed": 0, + "mass": 1, + "race": "AT-2560TX" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 8.21, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 587, + "speed": 0, + "mass": 1, + "race": "AT-2560TX" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 6.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 6.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 6.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 6.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 9.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 9.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 9.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 9.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 9.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 9.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 9.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "DPOH", + "tech": { + "cargo": 0, + "drive": 9.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "Acreators" + }, + { + "number": 1, + "class": "Colo", + "tech": { + "cargo": 1, + "drive": 1.64, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 0.08, + "destination": 370, + "speed": 0, + "mass": 6.26, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 635, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 559, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 596, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 549, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 370, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 421, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 111, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 206, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 190, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.7, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 183, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 2.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 28, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.5, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 431, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 5.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 5.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 394, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.6, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 612, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 513, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 141, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 519, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 552, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 268, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 697, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 9, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 243, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 191, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 474, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 45, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 504, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 49, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 8.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 602, + "speed": 0, + "mass": 1, + "race": "BlackCrows" + }, + { + "number": 28, + "class": "cargonoid2", + "tech": { + "cargo": 1, + "drive": 1.9, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 225, + "speed": 0, + "mass": 2.4, + "race": "Nails" + }, + { + "number": 8, + "class": "cargonoid4", + "tech": { + "cargo": 1, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 2.81, + "destination": 425, + "speed": 0, + "mass": 6.31, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 314, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 196, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 207, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 56, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 663, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 85, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 459, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "dron", + "tech": { + "cargo": 0, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 366, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "Aerosmith", + "tech": { + "cargo": 0, + "drive": 3.21, + "shields": 1, + "weapons": 1.3 + }, + "cargo": "-", + "load": 0, + "destination": 691, + "speed": 0, + "mass": 14.08, + "race": "Nails" + }, + { + "number": 1, + "class": "kil-VI-5", + "tech": { + "cargo": 0, + "drive": 4.96, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 66.5, + "race": "Nails" + }, + { + "number": 5, + "class": "justcargo", + "tech": { + "cargo": 1, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 2, + "race": "Nails" + }, + { + "number": 25, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 97, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "1", + "tech": { + "cargo": 1, + "drive": 4.97, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "COL", + "load": 1.05, + "destination": 97, + "speed": 0, + "mass": 67.61, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 587, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "cargonoid3", + "tech": { + "cargo": 1, + "drive": 2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 2.6, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 69, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.97, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 24, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 32, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 682, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 430, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 449, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 25, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 48, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 3, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 203, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 9, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 225, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 15, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 344, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "F23", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "-", + "load": 0, + "destination": 396, + "speed": 0, + "mass": 48.9, + "race": "Nails" + }, + { + "number": 1, + "class": "24", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 3.19, + "weapons": 3.97 + }, + "cargo": "-", + "load": 0, + "destination": 425, + "speed": 0, + "mass": 42.52, + "race": "Nails" + }, + { + "number": 13, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 530, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 26, + "class": "pup", + "tech": { + "cargo": 0, + "drive": 4.98, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 673, + "speed": 0, + "mass": 1, + "race": "Nails" + }, + { + "number": 1, + "class": "b", + "tech": { + "cargo": 0, + "drive": 5.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 358, + "speed": 0, + "mass": 1, + "race": "kenguri" + }, + { + "number": 1, + "class": "b", + "tech": { + "cargo": 0, + "drive": 5.71, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 593, + "speed": 0, + "mass": 1, + "race": "kenguri" + }, + { + "number": 1, + "class": "b", + "tech": { + "cargo": 0, + "drive": 5.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 599, + "speed": 0, + "mass": 1, + "race": "kenguri" + }, + { + "number": 1, + "class": "b", + "tech": { + "cargo": 0, + "drive": 5.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 585, + "speed": 0, + "mass": 1, + "race": "kenguri" + }, + { + "number": 1, + "class": "b", + "tech": { + "cargo": 0, + "drive": 5.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 410, + "speed": 0, + "mass": 1, + "race": "kenguri" + }, + { + "number": 1, + "class": "Drone", + "tech": { + "cargo": 0, + "drive": 2.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "AbubaGerbographerPot" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 6.53, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 7.06, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 449, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 7.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 29, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 7.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 7.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 661, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 7.69, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 646, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 9.03, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 201, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 8.36, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 9.03, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 664, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 9.03, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 471, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 9.03, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 74, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 9.03, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 275, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 9.03, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 694, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "6pamuwka", + "tech": { + "cargo": 0, + "drive": 9.03, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 376, + "speed": 0, + "mass": 1, + "race": "6PATBA" + }, + { + "number": 1, + "class": "Colovozka", + "tech": { + "cargo": 1, + "drive": 4.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 20, + "destination": 641, + "speed": 0, + "mass": 69.5, + "race": "Ricksha" + }, + { + "number": 1, + "class": "TAPAHTAuKA", + "tech": { + "cargo": 1, + "drive": 5.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "COL", + "load": 98.06, + "destination": 641, + "speed": 0, + "mass": 197.06, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 4.77, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 338, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 585, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 410, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 358, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 599, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 38, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 173, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 296, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 17, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 282, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 6.88, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 79, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 593, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 231, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 394, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 369, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 292, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 693, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 635, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 654, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 87, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 12, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 507, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 532, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 298, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 3.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 446, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 18, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 55, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 4, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 332, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 4, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 489, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Dron", + "tech": { + "cargo": 0, + "drive": 7.63, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Ricksha" + }, + { + "number": 1, + "class": "Scream", + "tech": { + "cargo": 0, + "drive": 3.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 378, + "speed": 0, + "mass": 1, + "race": "Frightners" + }, + { + "number": 6, + "class": "Scream", + "tech": { + "cargo": 0, + "drive": 6.91, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 410, + "speed": 0, + "mass": 1, + "race": "Frightners" + }, + { + "number": 6, + "class": "Scream", + "tech": { + "cargo": 0, + "drive": 6.91, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 585, + "speed": 0, + "mass": 1, + "race": "Frightners" + }, + { + "number": 1, + "class": "Drone_1", + "tech": { + "cargo": 0, + "drive": 2.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 1, + "race": "sidiki" + }, + { + "number": 1, + "class": "Drone_1", + "tech": { + "cargo": 0, + "drive": 2.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 1, + "race": "sidiki" + }, + { + "number": 1, + "class": "Drone_1", + "tech": { + "cargo": 0, + "drive": 2.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 410, + "speed": 0, + "mass": 1, + "race": "sidiki" + }, + { + "number": 1, + "class": "Drone_1", + "tech": { + "cargo": 0, + "drive": 2.2, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 585, + "speed": 0, + "mass": 1, + "race": "sidiki" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 376, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 661, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 74, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 201, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 275, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 664, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 29, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 694, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.1, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 25, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 5.8, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 646, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 7.73, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 641, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 72, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 251, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 15, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 409, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 436, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 305, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 340, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 624, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 569, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 377, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 690, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 665, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 9.07, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 432, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 8.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 8.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 434, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 358, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 26, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 471, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 438, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 222, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 585, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 410, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 295, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 1, + "class": "Gnat", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 599, + "speed": 0, + "mass": 1, + "race": "Enoxes" + }, + { + "number": 24, + "class": "FS-6", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 5.64, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 2.06, + "race": "Enoxes" + }, + { + "number": 24, + "class": "FS-6", + "tech": { + "cargo": 0, + "drive": 11.4, + "shields": 5.64, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 2.06, + "race": "Enoxes" + }, + { + "number": 24, + "class": "FS-6", + "tech": { + "cargo": 0, + "drive": 11.65, + "shields": 5.64, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 538, + "speed": 0, + "mass": 2.06, + "race": "Enoxes" + }, + { + "number": 24, + "class": "FS-6", + "tech": { + "cargo": 0, + "drive": 11.65, + "shields": 5.64, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 698, + "speed": 0, + "mass": 2.06, + "race": "Enoxes" + }, + { + "number": 1, + "class": "MHE_BCE_uHTEPECHO", + "tech": { + "cargo": 0, + "drive": 2.3, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 95, + "speed": 0, + "mass": 1, + "race": "3JO6HbIE" + }, + { + "number": 1, + "class": "MHE_BCE_uHTEPECHO", + "tech": { + "cargo": 0, + "drive": 2.31, + "shields": 0, + "weapons": 0 + }, + "cargo": "-", + "load": 0, + "destination": 449, + "speed": 0, + "mass": 1, + "race": "3JO6HbIE" + } + ], + "unidentifiedGroup": [ + { + "x": 537.37, + "y": 799.99 + }, + { + "x": 439.48, + "y": 595.72 + }, + { + "x": 120.66, + "y": 86.57 + }, + { + "x": 662.05, + "y": 439.85 + }, + { + "x": 660.32, + "y": 436.36 + }, + { + "x": 573.28, + "y": 373.11 + }, + { + "x": 575.48, + "y": 369.26 + }, + { + "x": 572.68, + "y": 372.64 + }, + { + "x": 637.5, + "y": 347.97 + }, + { + "x": 572, + "y": 465.9 + }, + { + "x": 584.38, + "y": 472.87 + }, + { + "x": 615.89, + "y": 375.69 + }, + { + "x": 622.61, + "y": 408.26 + }, + { + "x": 602.73, + "y": 390.37 + }, + { + "x": 732.73, + "y": 460.66 + }, + { + "x": 782.56, + "y": 512.03 + }, + { + "x": 382.29, + "y": 479.61 + }, + { + "x": 351.54, + "y": 458.34 + }, + { + "x": 354.92, + "y": 441.69 + }, + { + "x": 359.48, + "y": 441.59 + }, + { + "x": 418.7, + "y": 515.55 + }, + { + "x": 718.31, + "y": 465.77 + }, + { + "x": 730.91, + "y": 467.18 + }, + { + "x": 732.81, + "y": 465.5 + }, + { + "x": 732.39, + "y": 470.88 + }, + { + "x": 764.19, + "y": 582.87 + }, + { + "x": 58.1, + "y": 554.13 + }, + { + "x": 55.62, + "y": 556.31 + }, + { + "x": 709.62, + "y": 559.82 + }, + { + "x": 673.4, + "y": 512.34 + }, + { + "x": 464.77, + "y": 150.74 + }, + { + "x": 463.93, + "y": 149.15 + }, + { + "x": 203.79, + "y": 345.58 + }, + { + "x": 320.73, + "y": 402.79 + }, + { + "x": 426.92, + "y": 744.57 + }, + { + "x": 408.42, + "y": 51.82 + }, + { + "x": 458.97, + "y": 770.85 + }, + { + "x": 500.89, + "y": 732.34 + }, + { + "x": 484.75, + "y": 742.75 + }, + { + "x": 400.22, + "y": 51.36 + }, + { + "x": 373.96, + "y": 13.27 + }, + { + "x": 568.46, + "y": 669.86 + }, + { + "x": 571.02, + "y": 676.99 + }, + { + "x": 569.23, + "y": 671.9 + }, + { + "x": 567.93, + "y": 668.5 + }, + { + "x": 568.99, + "y": 671.26 + }, + { + "x": 559.39, + "y": 650.52 + }, + { + "x": 545.6, + "y": 629.85 + }, + { + "x": 546.39, + "y": 630.86 + }, + { + "x": 548.14, + "y": 633.15 + }, + { + "x": 550.67, + "y": 636.64 + }, + { + "x": 544.55, + "y": 628.54 + }, + { + "x": 174.34, + "y": 75.14 + }, + { + "x": 177.78, + "y": 67.54 + }, + { + "x": 175.73, + "y": 72.56 + }, + { + "x": 174.84, + "y": 74.25 + }, + { + "x": 174.54, + "y": 74.78 + }, + { + "x": 158.26, + "y": 245.67 + }, + { + "x": 311.59, + "y": 357.94 + }, + { + "x": 58.6, + "y": 59.95 + }, + { + "x": 35.62, + "y": 94.32 + }, + { + "x": 33.4, + "y": 98.73 + }, + { + "x": 32.39, + "y": 100.84 + }, + { + "x": 31.69, + "y": 102.33 + }, + { + "x": 55.33, + "y": 63.95 + }, + { + "x": 57.66, + "y": 61.08 + }, + { + "x": 575.29, + "y": 675.84 + }, + { + "x": 612.89, + "y": 561.19 + }, + { + "x": 579.41, + "y": 618.06 + }, + { + "x": 572.54, + "y": 671.73 + }, + { + "x": 575.12, + "y": 675.62 + }, + { + "x": 575.89, + "y": 676.59 + }, + { + "x": 757.21, + "y": 716.95 + }, + { + "x": 765.85, + "y": 710.55 + }, + { + "x": 783.77, + "y": 634.32 + }, + { + "x": 789.61, + "y": 648.54 + }, + { + "x": 764.17, + "y": 592.13 + }, + { + "x": 776.08, + "y": 622.44 + }, + { + "x": 760.44, + "y": 624.51 + }, + { + "x": 522.14, + "y": 30.81 + }, + { + "x": 526.01, + "y": 28.54 + }, + { + "x": 635.01, + "y": 192.72 + }, + { + "x": 381.34, + "y": 296.94 + }, + { + "x": 625.89, + "y": 249.02 + }, + { + "x": 361.5, + "y": 115.41 + }, + { + "x": 377.16, + "y": 121.34 + }, + { + "x": 553.42, + "y": 62.44 + }, + { + "x": 743.48, + "y": 156.32 + }, + { + "x": 556.94, + "y": 63.56 + }, + { + "x": 556.94, + "y": 63.56 + }, + { + "x": 596.42, + "y": 714.51 + }, + { + "x": 551.35, + "y": 61.78 + }, + { + "x": 467.82, + "y": 696.35 + }, + { + "x": 617.68, + "y": 272.4 + }, + { + "x": 585.42, + "y": 619.32 + }, + { + "x": 565.24, + "y": 714.41 + }, + { + "x": 723.6, + "y": 711.46 + }, + { + "x": 672.36, + "y": 674.01 + }, + { + "x": 400.11, + "y": 12.21 + }, + { + "x": 399.99, + "y": 75.01 + }, + { + "x": 405.81, + "y": 99.76 + }, + { + "x": 680.02, + "y": 678.05 + }, + { + "x": 678.17, + "y": 677.03 + }, + { + "x": 675.17, + "y": 675.44 + }, + { + "x": 684.96, + "y": 680.9 + }, + { + "x": 734.43, + "y": 723.58 + }, + { + "x": 735.03, + "y": 724.32 + }, + { + "x": 731.76, + "y": 720.39 + }, + { + "x": 399.04, + "y": 19.39 + }, + { + "x": 399.17, + "y": 18.37 + }, + { + "x": 399.62, + "y": 15.3 + }, + { + "x": 399.18, + "y": 18.34 + }, + { + "x": 400.96, + "y": 7.57 + }, + { + "x": 401.95, + "y": 2.82 + }, + { + "x": 399.04, + "y": 68.56 + }, + { + "x": 399.47, + "y": 71.66 + }, + { + "x": 408.51, + "y": 107.87 + }, + { + "x": 407.65, + "y": 105.42 + }, + { + "x": 406.81, + "y": 102.91 + }, + { + "x": 409.99, + "y": 111.87 + }, + { + "x": 437.4, + "y": 727.4 + }, + { + "x": 433.92, + "y": 732.03 + }, + { + "x": 430.91, + "y": 736.28 + }, + { + "x": 438.47, + "y": 726.04 + }, + { + "x": 431.03, + "y": 736.09 + }, + { + "x": 439.31, + "y": 724.99 + }, + { + "x": 437.42, + "y": 727.38 + }, + { + "x": 441.33, + "y": 722.52 + }, + { + "x": 465.89, + "y": 697.93 + }, + { + "x": 466.63, + "y": 152.65 + }, + { + "x": 465.92, + "y": 150.77 + }, + { + "x": 464.92, + "y": 147.99 + }, + { + "x": 483.22, + "y": 185.91 + }, + { + "x": 455.45, + "y": 107.28 + }, + { + "x": 482.48, + "y": 184.71 + }, + { + "x": 556.17, + "y": 719.73 + }, + { + "x": 556.98, + "y": 719.22 + }, + { + "x": 552.27, + "y": 722.23 + }, + { + "x": 550.56, + "y": 723.37 + }, + { + "x": 549.51, + "y": 724.09 + }, + { + "x": 537.52, + "y": 732.99 + }, + { + "x": 596.61, + "y": 700.69 + }, + { + "x": 540.67, + "y": 730.51 + }, + { + "x": 542.36, + "y": 729.22 + }, + { + "x": 600.68, + "y": 699.38 + }, + { + "x": 601.31, + "y": 699.19 + }, + { + "x": 602.51, + "y": 698.82 + }, + { + "x": 564.48, + "y": 714.83 + }, + { + "x": 642.11, + "y": 270.65 + }, + { + "x": 643.17, + "y": 270.5 + }, + { + "x": 644.88, + "y": 270.25 + }, + { + "x": 643.88, + "y": 270.4 + }, + { + "x": 645.58, + "y": 270.14 + }, + { + "x": 646.22, + "y": 270.04 + }, + { + "x": 670.95, + "y": 264.39 + }, + { + "x": 671.58, + "y": 264.2 + }, + { + "x": 626.26, + "y": 272.14 + }, + { + "x": 619.17, + "y": 272.38 + }, + { + "x": 621.28, + "y": 272.34 + }, + { + "x": 775.41, + "y": 216.66 + }, + { + "x": 754.19, + "y": 225.09 + }, + { + "x": 42.47, + "y": 164.13 + }, + { + "x": 31.61, + "y": 176.42 + }, + { + "x": 38.39, + "y": 169 + }, + { + "x": 748.2, + "y": 226.96 + }, + { + "x": 750.64, + "y": 226.22 + }, + { + "x": 744.96, + "y": 227.87 + }, + { + "x": 743.53, + "y": 228.26 + }, + { + "x": 755.17, + "y": 224.77 + }, + { + "x": 749.98, + "y": 226.43 + }, + { + "x": 42.55, + "y": 164.02 + }, + { + "x": 45.55, + "y": 160.21 + }, + { + "x": 10.97, + "y": 45.6 + }, + { + "x": 787.92, + "y": 8.27 + }, + { + "x": 640.81, + "y": 736.09 + }, + { + "x": 12.05, + "y": 47.95 + }, + { + "x": 12.04, + "y": 47.92 + }, + { + "x": 12.38, + "y": 48.67 + }, + { + "x": 10.88, + "y": 45.39 + }, + { + "x": 10.91, + "y": 45.46 + }, + { + "x": 784.03, + "y": 3.5 + }, + { + "x": 782.89, + "y": 2.16 + }, + { + "x": 784.49, + "y": 4.04 + }, + { + "x": 783.42, + "y": 2.79 + }, + { + "x": 782.31, + "y": 1.5 + }, + { + "x": 641.8, + "y": 736.1 + }, + { + "x": 641.67, + "y": 736.1 + }, + { + "x": 636.95, + "y": 736.09 + }, + { + "x": 719.97, + "y": 699.99 + }, + { + "x": 685.13, + "y": 688.49 + }, + { + "x": 740.93, + "y": 710.83 + }, + { + "x": 652.92, + "y": 684.08 + }, + { + "x": 636.21, + "y": 683.97 + }, + { + "x": 633.11, + "y": 684.11 + }, + { + "x": 676.59, + "y": 686.77 + }, + { + "x": 705.11, + "y": 694.17 + }, + { + "x": 705.51, + "y": 694.3 + }, + { + "x": 715.57, + "y": 698.11 + }, + { + "x": 715.05, + "y": 697.9 + }, + { + "x": 713.92, + "y": 697.44 + }, + { + "x": 717.36, + "y": 698.86 + }, + { + "x": 744.58, + "y": 713.07 + }, + { + "x": 743.56, + "y": 712.43 + }, + { + "x": 745.21, + "y": 713.47 + }, + { + "x": 748.81, + "y": 715.81 + }, + { + "x": 454.56, + "y": 86.81 + }, + { + "x": 406.19, + "y": 77.53 + }, + { + "x": 408.51, + "y": 88.97 + }, + { + "x": 410.25, + "y": 95.11 + }, + { + "x": 410.93, + "y": 97.32 + }, + { + "x": 411.18, + "y": 98.13 + }, + { + "x": 409.59, + "y": 92.86 + }, + { + "x": 411.47, + "y": 99.03 + }, + { + "x": 409.08, + "y": 91.07 + }, + { + "x": 454.72, + "y": 91.85 + }, + { + "x": 454.54, + "y": 85.05 + }, + { + "x": 454.54, + "y": 85.32 + }, + { + "x": 756.7, + "y": 746.1 + }, + { + "x": 404.73, + "y": 68.55 + }, + { + "x": 404.32, + "y": 65.46 + }, + { + "x": 755.49, + "y": 744.07 + }, + { + "x": 754.66, + "y": 742.71 + }, + { + "x": 615.6, + "y": 663.11 + }, + { + "x": 764.03, + "y": 663.83 + }, + { + "x": 758.13, + "y": 740.51 + }, + { + "x": 38.66, + "y": 56.36 + }, + { + "x": 760.36, + "y": 744.2 + }, + { + "x": 759.45, + "y": 742.67 + }, + { + "x": 744.27, + "y": 657.26 + }, + { + "x": 641.98, + "y": 668.79 + }, + { + "x": 616.26, + "y": 663.2 + }, + { + "x": 799.07, + "y": 752.33 + }, + { + "x": 38.92, + "y": 61.33 + }, + { + "x": 38.86, + "y": 59.91 + }, + { + "x": 39.04, + "y": 65.29 + }, + { + "x": 641.8, + "y": 376.65 + }, + { + "x": 332.89, + "y": 198.35 + }, + { + "x": 335.99, + "y": 189.67 + }, + { + "x": 387.57, + "y": 116.72 + }, + { + "x": 486.75, + "y": 436.36 + }, + { + "x": 385.67, + "y": 118.37 + }, + { + "x": 480.26, + "y": 435.55 + }, + { + "x": 362.78, + "y": 367.81 + }, + { + "x": 362.15, + "y": 367 + }, + { + "x": 368.3, + "y": 374.49 + }, + { + "x": 386.31, + "y": 117.81 + }, + { + "x": 483.91, + "y": 436.04 + }, + { + "x": 379.68, + "y": 123.88 + }, + { + "x": 677.75, + "y": 315.99 + }, + { + "x": 533.48, + "y": 435.3 + }, + { + "x": 365.72, + "y": 371.45 + }, + { + "x": 479.93, + "y": 435.5 + }, + { + "x": 480.06, + "y": 435.52 + }, + { + "x": 615.05, + "y": 401.14 + }, + { + "x": 536.88, + "y": 434.74 + }, + { + "x": 676.97, + "y": 318.15 + }, + { + "x": 534.92, + "y": 435.07 + }, + { + "x": 384.37, + "y": 119.52 + }, + { + "x": 367.26, + "y": 373.28 + }, + { + "x": 609.4, + "y": 405.2 + }, + { + "x": 535.07, + "y": 435.05 + }, + { + "x": 616.1, + "y": 400.35 + }, + { + "x": 650.2, + "y": 366.55 + }, + { + "x": 617.66, + "y": 399.16 + }, + { + "x": 617.3, + "y": 399.44 + }, + { + "x": 644.4, + "y": 373.68 + }, + { + "x": 531.47, + "y": 435.59 + }, + { + "x": 647.28, + "y": 370.23 + }, + { + "x": 651.09, + "y": 365.39 + }, + { + "x": 529.89, + "y": 435.81 + }, + { + "x": 642.52, + "y": 375.85 + }, + { + "x": 410.21, + "y": 100.19 + }, + { + "x": 532.13, + "y": 435.5 + }, + { + "x": 527.91, + "y": 436.06 + }, + { + "x": 364.41, + "y": 140.51 + }, + { + "x": 362.67, + "y": 142.69 + }, + { + "x": 364.73, + "y": 140.12 + }, + { + "x": 410.34, + "y": 100.11 + }, + { + "x": 529.68, + "y": 435.83 + }, + { + "x": 411.14, + "y": 410.74 + }, + { + "x": 366.18, + "y": 138.35 + }, + { + "x": 414.12, + "y": 412.52 + }, + { + "x": 370.26, + "y": 133.64 + }, + { + "x": 416.56, + "y": 96.44 + }, + { + "x": 408.2, + "y": 101.46 + }, + { + "x": 683.1, + "y": 297.99 + }, + { + "x": 405.22, + "y": 103.39 + }, + { + "x": 574.57, + "y": 86.38 + }, + { + "x": 411.46, + "y": 410.93 + }, + { + "x": 371.14, + "y": 132.66 + }, + { + "x": 365.43, + "y": 139.27 + }, + { + "x": 499.15, + "y": 437.25 + }, + { + "x": 414.04, + "y": 412.47 + }, + { + "x": 492.59, + "y": 436.89 + }, + { + "x": 330.67, + "y": 205.6 + }, + { + "x": 408.79, + "y": 409.28 + }, + { + "x": 676.67, + "y": 318.96 + }, + { + "x": 411.66, + "y": 411.06 + }, + { + "x": 490.79, + "y": 436.74 + }, + { + "x": 676.88, + "y": 318.39 + }, + { + "x": 678.38, + "y": 314.18 + }, + { + "x": 375.31, + "y": 128.23 + }, + { + "x": 550.17, + "y": 431.95 + }, + { + "x": 486.62, + "y": 436.35 + }, + { + "x": 495.28, + "y": 437.06 + }, + { + "x": 679.29, + "y": 311.46 + }, + { + "x": 678.07, + "y": 315.1 + }, + { + "x": 324.38, + "y": 240.62 + }, + { + "x": 382.74, + "y": 389.36 + }, + { + "x": 387.61, + "y": 393.67 + }, + { + "x": 551.56, + "y": 431.59 + }, + { + "x": 548.53, + "y": 432.35 + }, + { + "x": 758.08, + "y": 707.59 + }, + { + "x": 773.15, + "y": 673.09 + }, + { + "x": 764.67, + "y": 699.65 + }, + { + "x": 340.68, + "y": 701.4 + }, + { + "x": 237.15, + "y": 731.82 + }, + { + "x": 383.43, + "y": 752.26 + }, + { + "x": 680.61, + "y": 346.37 + }, + { + "x": 759.98, + "y": 210.62 + }, + { + "x": 723.61, + "y": 684.22 + }, + { + "x": 575.56, + "y": 782.23 + }, + { + "x": 719.37, + "y": 685.38 + }, + { + "x": 716.19, + "y": 684.47 + }, + { + "x": 527.94, + "y": 660.76 + }, + { + "x": 587.31, + "y": 1.67 + }, + { + "x": 604.55, + "y": 9.73 + }, + { + "x": 706.4, + "y": 711.45 + }, + { + "x": 709.55, + "y": 735.52 + }, + { + "x": 549.57, + "y": 734.22 + }, + { + "x": 581.88, + "y": 797.97 + }, + { + "x": 637.38, + "y": 13.36 + }, + { + "x": 622.5, + "y": 13.43 + }, + { + "x": 639.37, + "y": 13.14 + }, + { + "x": 644.11, + "y": 12.41 + }, + { + "x": 637.53, + "y": 13.34 + }, + { + "x": 637.24, + "y": 13.37 + }, + { + "x": 567.26, + "y": 683.57 + }, + { + "x": 565.92, + "y": 685.27 + }, + { + "x": 565.55, + "y": 685.77 + }, + { + "x": 564.54, + "y": 687.15 + }, + { + "x": 559.92, + "y": 773.1 + }, + { + "x": 629.23, + "y": 653.74 + }, + { + "x": 628.78, + "y": 653.74 + }, + { + "x": 630.54, + "y": 653.75 + }, + { + "x": 632.06, + "y": 653.78 + }, + { + "x": 736.18, + "y": 304.31 + }, + { + "x": 244.85, + "y": 53.95 + }, + { + "x": 219.52, + "y": 57.39 + } ] }, "battles": { diff --git a/ui/docs/cargo-routes-ux.md b/ui/docs/cargo-routes-ux.md index 6d27897..c8ddfb4 100644 --- a/ui/docs/cargo-routes-ux.md +++ b/ui/docs/cargo-routes-ux.md @@ -1,9 +1,10 @@ # Cargo routes UX -This document covers the cargo-route surface: the four-slot -inspector subsection, the map-driven destination pick, and the -optimistic overlay that keeps the inspector and the map in lock-step -with the local order draft. The engine semantics are quoted from +This document covers the cargo-route surface: the inspector +subsection (a single-row dropdown + contextual actions after +F8-05), the map-driven destination pick, and the optimistic +overlay that keeps the inspector and the map in lock-step with +the local order draft. The engine semantics are quoted from [`game/rules.txt`](../../game/rules.txt) section "Грузовые маршруты" (lines 808–843); this file is the source of truth for how the UI surfaces those rules. @@ -25,29 +26,35 @@ than `40 × driveTech` world units along the torus-shortest path destination becomes unreachable at the next turn is auto-removed (`RemoveUnreachableRoutes`). -## Four-slot inspector subsection +## Single-row inspector subsection The cargo-routes subsection renders below the production controls -on every owned planet inspector. Slots appear in -`CARGO_LOAD_TYPE_VALUES` order (COL, CAP, MAT, EMP) so visual order -matches the engine's load priority — players who scan top-down see -the highest-priority cargo first. +on every owned planet inspector. F8-05 collapsed the previous +four-slot grid into a single `` with a single ✓ confirm icon on the right; Escape (or +leaving the inspector) cancels the edit without touching the +draft. ## Command status state machine @@ -178,6 +182,17 @@ optimistic overlay rewrites `planet.production` using mirrors the engine's `Cache.PlanetProductionDisplayName` so the overlay stays byte-equal with the next server report. +The inspector surface that composes a `setProductionType` +(`lib/inspectors/planet/production.svelte`) is two dropdowns on +one row — a primary `industry / materials / research / ship` +plus a secondary one (tech / science / ship class) that appears +for the `research` and `ship` contexts — together with a green ✓ +apply and yellow ✗ cancel icon. The ✓ button stays disabled +until the row selection differs from the planet's current +effective production; ✗ resets the local row state back to that +effective value without touching the draft. The Order tab is +the only place that can revoke an already-applied command. + ### Collapse-by-target rule `setProductionType` carries a collapse-by-target rule. diff --git a/ui/docs/science-designer-ux.md b/ui/docs/science-designer-ux.md index afd83c9..701c100 100644 --- a/ui/docs/science-designer-ux.md +++ b/ui/docs/science-designer-ux.md @@ -74,22 +74,26 @@ which surfaces as `rejected` in the order tab. ## Production-picker integration -The planet inspector's Research sub-row -(`lib/inspectors/planet/production.svelte`) renders the four tech -buttons and one extra button per defined science from the player's -`localScience` overlay. A click on a science button dispatches +The planet inspector's production row +(`lib/inspectors/planet/production.svelte`) is two ` - {#each THEME_CHOICES as entry (entry.id)} - - {/each} - - - - - - {/if} - - - diff --git a/ui/frontend/src/lib/header/game-mode-theme-toggle.svelte b/ui/frontend/src/lib/header/game-mode-theme-toggle.svelte new file mode 100644 index 0000000..3f397d4 --- /dev/null +++ b/ui/frontend/src/lib/header/game-mode-theme-toggle.svelte @@ -0,0 +1,60 @@ + + + + + + diff --git a/ui/frontend/src/lib/header/header.svelte b/ui/frontend/src/lib/header/header.svelte index b1dd0f5..eaf5191 100644 --- a/ui/frontend/src/lib/header/header.svelte +++ b/ui/frontend/src/lib/header/header.svelte @@ -2,9 +2,13 @@ Top header for the in-game shell. Composes the in-game ID strip (race name @ game name) followed by the Phase 26 turn navigator (a `← Turn N →` triplet with a popover of every turn), the view -dropdown / hamburger, and the account menu. The sidebar-toggle slot -to its left appears only on tablet viewports (768–1024 px) and is -wired by `+layout.svelte`. +dropdown / hamburger, and the in-game ephemeral light/dark theme +toggle. The sidebar-toggle slot to its left appears only on tablet +viewports (768–1024 px) and is wired by `+layout.svelte`. + +The persisted theme choice (and the language picker, logout, etc.) +lives in the lobby — the in-game header carries only the ephemeral +toggle for quick visual flips during a session. The race name is read from the engine's `Report.race`, the game name from the lobby's `GameSummary.gameName`. While either piece @@ -24,7 +28,7 @@ absent until Phase 24 wires push-event state. type GameStateStore, } from "$lib/game-state.svelte"; import ViewMenu from "./view-menu.svelte"; - import AccountMenu from "./account-menu.svelte"; + import GameModeThemeToggle from "./game-mode-theme-toggle.svelte"; import TurnNavigator from "./turn-navigator.svelte"; type Props = { @@ -78,7 +82,7 @@ absent until Phase 24 wires push-event state. ⤧ - + diff --git a/ui/frontend/src/lib/i18n/locales/en.ts b/ui/frontend/src/lib/i18n/locales/en.ts index 54cfd74..8e51f42 100644 --- a/ui/frontend/src/lib/i18n/locales/en.ts +++ b/ui/frontend/src/lib/i18n/locales/en.ts @@ -144,16 +144,9 @@ const en = { "game.shell.menu.close_sidebar": "close sidebar", "game.shell.menu.open_views": "open views menu", "game.shell.menu.close_views": "close views menu", - "game.shell.menu.account": "account", - "game.shell.menu.settings": "settings", - "game.shell.menu.sessions": "sessions", - "game.shell.menu.theme": "theme", - "game.shell.menu.theme_system": "system", - "game.shell.menu.theme_light": "light", - "game.shell.menu.theme_dark": "dark", - "game.shell.menu.language": "language", "game.shell.menu.return_to_lobby": "return to lobby", - "game.shell.menu.logout": "logout", + "game.shell.theme_toggle.to_light": "switch to light theme", + "game.shell.theme_toggle.to_dark": "switch to dark theme", "game.shell.coming_soon": "coming soon", "game.shell.turn.label": "turn {turn}", "game.shell.turn.list_item": "turn #{turn}", @@ -183,9 +176,6 @@ const en = { "game.map.toggles.unidentified_planets": "unidentified planets", "game.map.toggles.unreachable_planets": "show unreachable planets", "game.map.toggles.visible_hyperspace": "visible hyperspace", - "game.map.toggles.wrap.label": "wrap scrolling", - "game.map.toggles.wrap.torus": "torus", - "game.map.toggles.wrap.no_wrap": "no-wrap", "game.view.table": "table", "game.view.table.planets": "planets", "game.view.table.ship_classes": "ship classes", @@ -293,7 +283,6 @@ const en = { "game.inspector.planet.action.rename": "rename", "game.inspector.planet.rename.title": "rename planet", "game.inspector.planet.rename.confirm": "save", - "game.inspector.planet.rename.cancel": "cancel", "game.inspector.planet.rename.invalid.empty": "name cannot be empty", "game.inspector.planet.rename.invalid.too_long": "name is too long (30 characters max)", "game.inspector.planet.rename.invalid.starts_with_special": "name cannot start with a special character", @@ -302,6 +291,7 @@ const en = { "game.inspector.planet.rename.invalid.whitespace": "name cannot contain spaces", "game.inspector.planet.rename.invalid.disallowed_character": "name contains disallowed characters", "game.inspector.planet.production.title": "production", + "game.inspector.planet.production.main.aria": "production type", "game.inspector.planet.production.option.industry": "industry", "game.inspector.planet.production.option.materials": "materials", "game.inspector.planet.production.option.research": "research", @@ -310,8 +300,14 @@ const en = { "game.inspector.planet.production.research.weapons": "weapons", "game.inspector.planet.production.research.shields": "shields", "game.inspector.planet.production.research.cargo": "cargo", + "game.inspector.planet.production.target.research.aria": "research target", + "game.inspector.planet.production.target.research.placeholder": "(tech or science)", + "game.inspector.planet.production.target.ship.aria": "ship class", + "game.inspector.planet.production.target.ship.placeholder": "(ship class)", "game.inspector.planet.production.ship.no_classes": "no ship classes designed yet", - "game.inspector.planet.cargo.title": "cargo routes", + "game.inspector.planet.production.apply": "apply production change", + "game.inspector.planet.production.cancel": "discard production change", + "game.inspector.planet.cargo.placeholder": "manage routes", "game.inspector.planet.cargo.slot.col": "colonists", "game.inspector.planet.cargo.slot.cap": "industry", "game.inspector.planet.cargo.slot.mat": "materials", @@ -602,11 +598,9 @@ const en = { "game.inspector.ship_group.action.invalid.level": "level must be in ({current}, {max}]", "game.inspector.ship_group.action.invalid.fleet_name": "fleet name does not match the entity-name rules", + "game.inspector.planet.ship_groups.race_filter.aria": "stationed race", "game.inspector.planet.ship_groups.title": "stationed ship groups", - "game.inspector.planet.ship_groups.row.count": "{count} ships", - "game.inspector.planet.ship_groups.row.mass": "mass {mass}", "game.inspector.planet.ship_groups.race.unknown": "unknown", - "game.inspector.planet.ship_groups.race.foreign": "foreign", "game.report.loading": "loading report…", "game.report.back_to_map": "back to map", diff --git a/ui/frontend/src/lib/i18n/locales/ru.ts b/ui/frontend/src/lib/i18n/locales/ru.ts index f9ddca3..a2994e7 100644 --- a/ui/frontend/src/lib/i18n/locales/ru.ts +++ b/ui/frontend/src/lib/i18n/locales/ru.ts @@ -145,16 +145,9 @@ const ru: Record = { "game.shell.menu.close_sidebar": "закрыть боковую панель", "game.shell.menu.open_views": "открыть меню видов", "game.shell.menu.close_views": "закрыть меню видов", - "game.shell.menu.account": "аккаунт", - "game.shell.menu.settings": "настройки", - "game.shell.menu.sessions": "сессии", - "game.shell.menu.theme": "тема", - "game.shell.menu.theme_system": "системная", - "game.shell.menu.theme_light": "светлая", - "game.shell.menu.theme_dark": "тёмная", - "game.shell.menu.language": "язык", "game.shell.menu.return_to_lobby": "вернуться в лобби", - "game.shell.menu.logout": "выйти", + "game.shell.theme_toggle.to_light": "переключить на светлую тему", + "game.shell.theme_toggle.to_dark": "переключить на тёмную тему", "game.shell.coming_soon": "скоро будет", "game.shell.turn.label": "ход {turn}", "game.shell.turn.list_item": "ход #{turn}", @@ -184,9 +177,6 @@ const ru: Record = { "game.map.toggles.unidentified_planets": "неопознанные планеты", "game.map.toggles.unreachable_planets": "показывать недостижимые планеты", "game.map.toggles.visible_hyperspace": "видимое гиперпространство", - "game.map.toggles.wrap.label": "перенос карты", - "game.map.toggles.wrap.torus": "тор", - "game.map.toggles.wrap.no_wrap": "без переноса", "game.view.table": "таблица", "game.view.table.planets": "планеты", "game.view.table.ship_classes": "классы кораблей", @@ -294,7 +284,6 @@ const ru: Record = { "game.inspector.planet.action.rename": "переименовать", "game.inspector.planet.rename.title": "переименование планеты", "game.inspector.planet.rename.confirm": "сохранить", - "game.inspector.planet.rename.cancel": "отмена", "game.inspector.planet.rename.invalid.empty": "имя не может быть пустым", "game.inspector.planet.rename.invalid.too_long": "имя слишком длинное (максимум 30 символов)", "game.inspector.planet.rename.invalid.starts_with_special": "имя не может начинаться со спецсимвола", @@ -303,6 +292,7 @@ const ru: Record = { "game.inspector.planet.rename.invalid.whitespace": "имя не может содержать пробелы", "game.inspector.planet.rename.invalid.disallowed_character": "имя содержит недопустимые символы", "game.inspector.planet.production.title": "производство", + "game.inspector.planet.production.main.aria": "тип производства", "game.inspector.planet.production.option.industry": "промышленность", "game.inspector.planet.production.option.materials": "сырьё", "game.inspector.planet.production.option.research": "исследование", @@ -311,8 +301,14 @@ const ru: Record = { "game.inspector.planet.production.research.weapons": "оружие", "game.inspector.planet.production.research.shields": "щиты", "game.inspector.planet.production.research.cargo": "трюм", + "game.inspector.planet.production.target.research.aria": "цель исследования", + "game.inspector.planet.production.target.research.placeholder": "(технология или наука)", + "game.inspector.planet.production.target.ship.aria": "класс корабля", + "game.inspector.planet.production.target.ship.placeholder": "(класс корабля)", "game.inspector.planet.production.ship.no_classes": "классы кораблей ещё не спроектированы", - "game.inspector.planet.cargo.title": "грузовые маршруты", + "game.inspector.planet.production.apply": "применить изменение производства", + "game.inspector.planet.production.cancel": "отменить изменение производства", + "game.inspector.planet.cargo.placeholder": "управление маршрутами", "game.inspector.planet.cargo.slot.col": "колонисты", "game.inspector.planet.cargo.slot.cap": "промышленность", "game.inspector.planet.cargo.slot.mat": "сырьё", @@ -603,11 +599,9 @@ const ru: Record = { "game.inspector.ship_group.action.invalid.level": "уровень должен быть в ({current}, {max}]", "game.inspector.ship_group.action.invalid.fleet_name": "имя флота не соответствует правилам имён сущностей", + "game.inspector.planet.ship_groups.race_filter.aria": "раса в орбите", "game.inspector.planet.ship_groups.title": "корабли на орбите", - "game.inspector.planet.ship_groups.row.count": "{count} кораблей", - "game.inspector.planet.ship_groups.row.mass": "масса {mass}", "game.inspector.planet.ship_groups.race.unknown": "неизвестно", - "game.inspector.planet.ship_groups.race.foreign": "чужие", "game.report.loading": "загрузка отчёта…", "game.report.back_to_map": "назад к карте", diff --git a/ui/frontend/src/lib/inspectors/planet.svelte b/ui/frontend/src/lib/inspectors/planet.svelte index 1c2073f..79415de 100644 --- a/ui/frontend/src/lib/inspectors/planet.svelte +++ b/ui/frontend/src/lib/inspectors/planet.svelte @@ -1,16 +1,20 @@
-

- {i18n.t("game.inspector.planet.cargo.title")} -

-
- {#each CARGO_LOAD_TYPE_VALUES as loadType (loadType)} - {@const entry = slotEntries[loadType]} - {@const slug = loadType.toLowerCase()} -
-
+
+ + + {#if selected !== ""} + {#if activeEntry === null} + + {:else} + + → {destinationName(activeEntry.destinationPlanetNumber)} + + + + {/if} + {/if} +
+ {#if pendingSlot !== null}
- {:else if reach > 0 && reachableSet().size === 0} + {:else if selected !== "" && reach > 0 && reachableSet().size === 0}