Add button to show service statistics

This commit is contained in:
Sebastian Seedorf
2022-09-09 21:30:34 +02:00
parent d964748a66
commit 2eaf8f719b
17 changed files with 1496 additions and 19 deletions

View File

@@ -42,6 +42,12 @@ export const FactoryProvider: FC<Props> = ({ children }) => {
return factories
}, [locale])
//const zip = 'bY3BCsNACET/xlP30KY9NODHGFeKsNld1JR+fjeQHgrBQZiReWYKwmsa8wSjEHTgjjdYteIEi5RA+XQT9xRG1XuzSHsMGrI6Un5TZcmJ1XjTmG2+P0BftZmgWqupl4G9cOtd7DBjeyinhQzWlrciJyCfZjn0azMtRf4OUoRjfBmwk94X'
//const zip = 'bU/RasMwDPwbP8UPXTboMvwxiqwVgWMbSR7t39cbTkm3YWHEnU53imAQTr6/dydgFNRhDS9u4xxmt1KyQNcqpOpNIGstYv4bdmy0aaBEaFIyo0cWbGyLLK9vE8QvyEjxGa1SsK/ifPEt7+AKZiS3oUNsW0tgRX4Ax5dchAKWWkl87QxN3A1H23+1br6CTNrSZxO3ldgSaTiu0nmhUX+jHck9zI5NwxhhTfQ0+c/lR/r3qXV+1EefO4+0XQ3I8SG9Aw=='
//const zip = 'bVHBcgMhCP0bT+WQpD10Z/wYmqXG6SoO4mw+v+qmU206coAHPB+woqI9QX3vRlDJZnNN9myCj/ZiPmhTS/cklDOoYMyJRaHBxiuFbJNPBMrghEtcF1lOLw3qTlYWdDWN8asDVxTHsKPj2OPPrfh1ijGQ3oR3koOqhPTT+VQBWkRIO07R+UhQom/x65vxLrKQ9cIR0lYHq2qItsM3gdeyUbaNNl8WetgkcMRH+hGfBNO5G/0rcu76HXvEu1hHKLDfqtbnXBd//HNseaz4c4kp1dY4AsMuHnTTrYbSbw=='
//const unzip = inflateRaw(Buffer.from(zip, 'base64'), {to: 'string'})
//console.log(unzip)
const findFactory = useMemo(() => {
const detailsMap = Object.fromEntries(
internationalizedFactories.map((detail: EnrichedEntity) => [detail.href, detail])

View File

@@ -2,13 +2,10 @@ import { FC, HTMLProps } from 'react'
import { EnrichedEntity } from '../../../src/types'
import cx from 'classnames'
import styles from './NodeOverview.module.css'
import Link from 'next/link'
import { EntityIcon } from '../../home/EntityIcon/EntityIcon'
import { GraphNode } from '../../../src/graph-untangle/types'
import { fixedEncodeURIComponent } from '../../../src/utils'
import { useRouter } from 'next/router'
import { GraphIcon } from '../../icons/GraphIcon'
import { I18n } from '../../shared/I18n/I18n'
import { ButtonVisualize } from '../../shared/ButtonVisualize/ButtonVisualize'
export type OverviewGraphNode = GraphNode<{
icons: (EnrichedEntity | string)[]
@@ -19,20 +16,10 @@ interface Props extends HTMLProps<HTMLDivElement> {
}
export const NodeOverview: FC<Props> = ({ node, className, ...props }) => {
const { query } = useRouter()
return (
<div {...props} className={cx(className, styles.root)}>
<h3>
<span className={styles.linkOut}>
<Link
href={{
pathname: `/visualize/${fixedEncodeURIComponent(node.name)}`,
query
}}
>
<GraphIcon />
</Link>
</span>
<ButtonVisualize groupId={node.name} />
{node.name}
</h3>
{node.icons?.length ? (

View File

@@ -1,6 +1,6 @@
import { useRouter } from 'next/router'
import { useGroups } from '../contexts/GroupProvider'
import { FC, useMemo } from 'react'
import { FC, useMemo, useState } from 'react'
import { calculateInputs } from '../../src/calculateInputs'
import { DetailGraphNode, NodeDetails } from './NodeDetails/NodeDetails'
import { groupBy, isNonNullable, uniquify } from '../../src/utils'
@@ -11,6 +11,8 @@ import { ProducingGraph } from './ProducingGraph/ProducingGraph'
import { useFactories } from '../contexts/FactoryProvider'
import { i18n, I18n } from '../shared/I18n/I18n'
import { useIntl } from 'react-intl'
import { Button } from '../shared/Button/Button'
import { useAsyncEffect } from '../../src/hooks/useAsyncEffect'
export const PageDetails: FC = () => {
const intl = useIntl()
@@ -61,6 +63,91 @@ export const PageDetails: FC = () => {
)
}, [findFactory, group, intermediateFactories])
const [savingModuleText, setSavingModuleText] = useState<string | undefined>()
// eslint-disable-next-line react-hooks/exhaustive-deps
useAsyncEffect(async () => {
const res = await fetch('/factorio/modules/energy-saving.csv')
if (res.ok) setSavingModuleText(await res.text())
}, [])
const [optimalModuleText, setOptimalModuleText] = useState<string | undefined>()
// eslint-disable-next-line react-hooks/exhaustive-deps
useAsyncEffect(async () => {
const res = await fetch('/factorio/modules/few-beacons.csv')
if (res.ok) setOptimalModuleText(await res.text())
}, [])
const statisticsUrl = useMemo(() => {
const toDashedKey = (n: string) => n.slice(1).toLowerCase().replace(/_/g, '-')
const checkIfPresent = (dashedKey: string) => {
const b =
!!optimalModuleText?.match(new RegExp(`${dashedKey};`)) && dashedKey !== 'rail-signal'
return b
}
const getModuleString = (dashedKey: string, powerSaving?: boolean) => {
const match = (powerSaving ? savingModuleText : optimalModuleText)?.match(
new RegExp(`${dashedKey};.*;(\\d+);(\\d+);(\\d+);(\\d+)`)
)
if (match) {
const map = 'spe'
const [beacons, ...modules] = match.slice(1).map(x => +x)
let beaconModules = beacons == 1 ? 8 : beacons == 5 ? 12 : 0
const maxIdx = modules.reduce((m, c, i, arr) => (c > arr[m] ? i : m), 0)
modules[maxIdx] -= beaconModules
if (modules[maxIdx] < 0) {
const newMaxIdx = modules.reduce((m, c, i, arr) => (c > arr[m] ? i : m), 0)
modules[newMaxIdx] += modules[maxIdx]
beaconModules += modules[maxIdx]
modules[maxIdx] = 0
}
let res = [
dashedKey,
...[0, 1, 2].flatMap(idx => Array(modules[idx]).fill(`${map[idx]}3`))
].join(':')
if (beacons + modules[0] + modules[1] === 0 && modules[2] === 2)
res = res.replace(/e3/g, 'e2')
else if (beacons + modules[0] + modules[1] === 0 && modules[2] >= 3)
res = res.replace(/e3/g, 'ee')
// console.log(beacons, modules, res, dashedKey)
return res + (beaconModules ? `;${map[maxIdx]}3:${beaconModules}` : '')
}
return dashedKey
}
const params = {
data: '1-1-19',
rate: 's',
cp: '2',
min: '3',
belt: 'express-transport-belt',
items: [
group?.malls
.map(toDashedKey)
.filter(checkIfPresent)
.map(n => `${n}:r:1`) ?? [],
group?.exports
.map(toDashedKey)
.filter(checkIfPresent)
.map(n => `${n}:r:45`) ?? []
].join(','),
ignore: inputFactories.map(toDashedKey).filter(checkIfPresent).join(','),
modules: [
...([...(group?.exports ?? []), ...intermediateFactories, ...inputFactories]
.map(toDashedKey)
.filter(checkIfPresent)
.map(n => getModuleString(n)) ?? []),
...((group?.malls ?? [])
.map(toDashedKey)
.filter(checkIfPresent)
.map(n => getModuleString(n, true)) ?? [])
].join(',')
}
const paramString = Object.entries(params)
.map(keyValue => keyValue.join('='))
.join('&')
// console.log('params', 'https://kirkmcdonald.github.io/calc.html#' + paramString)
return 'https://kirkmcdonald.github.io/calc.html#' + paramString
}, [group, inputFactories, savingModuleText, optimalModuleText, intermediateFactories])
return (
<>
<Head>
@@ -74,6 +161,9 @@ export const PageDetails: FC = () => {
<h1>
<I18n id={'page.visualize.details.title'} values={{ name: group?.name ?? '' }} />
</h1>
<Button onClick={() => window.open(statisticsUrl, '_blank')}>
<I18n id={'page.visualize.details.statistics.button'} />
</Button>
<ProducingGraph
nodes={producingNodes}
inputs={inputFactories}

View File

@@ -32,14 +32,14 @@ export const PageOverview: FC = () => {
<>
<Head>
<title>
<I18n id={'page.visualize.details.title'} />
<I18n id={'page.visualize.overview.title'} />
</title>
<meta name='description' content={i18n(intl, 'page.home.head.meta.description')} />
</Head>
<main>
<ScrollContainer>
<h1>
<I18n id={'page.visualize.details.title'} />
<I18n id={'page.visualize.overview.title'} />
</h1>
<ProducingGraph
nodes={producingNodes}

View File

@@ -0,0 +1,193 @@
name;work;time;beason;speed;prod;eff
pipe;114;0.3;0;1;0;3
flying-robot-frame;7092;10.7;0;1;0;3
empty-barrel;784;0.9;0;0;1;3
radar;3412;0.3;0;1;0;3
logistic-chest-buffer;8320;0.3;0;1;0;3
big-electric-pole;4722;0.3;0;1;0;3
speed-module;8919;8.0;0;1;0;3
combat-shotgun;13712;5.3;0;1;0;3
fusion-reactor-equipment;2002250;5.3;0;1;0;3
stone-furnace;200;0.3;0;1;0;3
gate;2768;0.3;0;1;0;3
power-switch;1400;1.1;0;1;0;3
rocket-control-unit;18867;16.0;0;1;0;3
steel-furnace;5952;1.6;0;1;0;3
logistic-science-pack;1005;3.2;0;1;0;3
refined-concrete;398;8.0;0;1;0;3
roboport;105638;2.7;0;1;0;3
fast-transport-belt;1216;0.3;0;1;0;3
iron-stick;57;0.3;0;1;0;3
centrifuge;207507;2.1;0;1;0;3
speed-module-2;87516;16.0;0;1;0;3
submachine-gun;3876;5.3;0;1;0;3
iron-plate;94;1.6;0;0;0;2
refined-hazard-concrete;399;0.1;0;1;0;3
crude-oil;2;1.0;0;0;0;2
rocket-part;214147;0.5;1;8;4;0
advanced-circuit;1380;3.2;0;1;0;3
logistic-chest-requester;8320;0.3;0;1;0;3
spidertron;6834741;5.3;0;1;0;3
modular-armor;79796;8.0;0;1;0;3
flamethrower-ammo;4212;6.0;0;0;0;3
automation-science-pack;501;2.7;0;1;0;3
fluid-wagon;20909;0.8;0;1;0;3
steam-turbine;17432;1.6;0;1;0;3
cluster-grenade;13198;4.3;0;1;0;3
fast-loader;12992;1.6;0;1;0;3
battery-equipment;12217;5.3;0;1;0;3
heavy-armor;47480;4.3;0;1;0;3
copper-cable;57;0.3;0;1;0;3
artillery-turret;89349;21.3;0;1;0;3
piercing-shotgun-shell;3289;4.3;0;1;0;3
electric-energy-interface;1627;0.3;0;1;0;3
accumulator;4844;5.3;0;1;0;3
boiler;674;0.3;0;1;0;3
logistic-robot;9872;0.3;0;1;0;3
stone-brick;130;1.6;0;0;0;2
fast-splitter;7562;1.1;0;1;0;3
iron-ore;36;2.0;0;0;0;3
poison-capsule;3800;4.3;0;1;0;3
utility-science-pack;12463;12.3;1;1;3;8
wooden-chest;20;0.3;0;1;0;3
effectivity-module-2;87516;16.0;0;1;0;3
heat-pipe;9472;0.5;0;1;0;3
rocket-silo;3222807;16.0;0;1;0;3
artillery-shell;16119;8.0;0;1;0;3
heat-exchanger;18176;1.6;0;1;0;3
locomotive;57488;2.1;0;1;0;3
pump;2540;1.1;0;1;0;3
electric-engine-unit;2981;5.3;0;1;0;3
fast-inserter;1380;0.3;0;1;0;3
pipe-to-ground;812;0.3;0;1;0;3
uranium-rounds-magazine;6228;5.3;0;1;0;3
filter-inserter;2536;0.3;0;1;0;3
long-handed-inserter;926;0.3;0;1;0;3
shotgun;3776;5.3;0;1;0;3
rocket-fuel;5868;16.0;0;1;0;3
assembling-machine-2;6170;0.3;0;1;0;3
flamethrower-turret;35676;10.7;0;1;0;3
personal-roboport-mk2-equipment;1356104;10.7;0;1;0;3
arithmetic-combinator;1724;0.3;0;1;0;3
stack-inserter;10148;0.3;0;1;0;3
logistic-chest-passive-provider;8320;0.3;0;1;0;3
satellite;3065250;2.7;0;1;0;3
rocket-launcher;3324;5.3;0;1;0;3
slowdown-capsule;2580;4.3;0;1;0;3
firearm-magazine;414;0.5;0;1;0;3
hazard-concrete;109;0.1;0;1;0;3
burner-mining-drill;1182;1.1;0;1;0;3
train-stop;4610;0.3;0;1;0;3
artillery-targeting-remote;12180;0.3;0;1;0;3
cannon-shell;2389;4.3;0;1;0;3
rocket;1004;4.3;0;1;0;3
oil-refinery;19004;4.3;0;1;0;3
beacon;42005;8.0;0;1;0;3
belt-immunity-equipment;14859;5.3;0;1;0;3
solar-panel-equipment;15848;5.3;0;1;0;3
fast-underground-belt;5073;1.1;0;1;0;3
steel-chest;6068;0.3;0;1;0;3
grenade;1148;4.3;0;1;0;3
cargo-wagon;19104;0.5;0;1;0;3
coal;36;2.0;0;0;0;3
battery;851;4.0;0;0;0;3
battery-mk2-equipment;279018;5.3;0;1;0;3
personal-roboport-equipment;75921;5.3;0;1;0;3
uranium-cannon-shell;6939;6.4;0;1;0;3
storage-tank;5772;1.6;0;1;0;3
express-loader;32754;5.3;0;1;0;3
light-armor;3864;1.6;0;1;0;3
low-density-structure;5046;10.7;0;1;0;3
offshore-pump;909;0.3;0;1;0;3
gun-turret;5200;4.3;0;1;0;3
lubricant;28;1.0;0;0;0;3
military-science-pack;2321;5.3;0;1;0;3
plastic-bar;172;1.0;0;0;0;3
productivity-module-3;490618;32.0;0;1;0;3
speed-module-3;490618;32.0;0;1;0;3
energy-shield-equipment;14859;5.3;0;1;0;3
small-lamp;568;0.3;0;1;0;3
defender-capsule;7069;4.3;0;1;0;3
express-transport-belt;3872;0.3;0;1;0;3
assembling-machine-1;2750;0.3;0;1;0;3
uranium-ore;320;4.0;0;0;0;3
power-armor;440581;10.7;0;1;0;3
energy-shield-mk2-equipment;217961;5.3;0;1;0;3
pistol;1136;2.7;0;1;0;3
steam-engine;3182;0.3;0;1;0;3
pumpjack;8608;2.7;0;1;0;3
power-armor-mk2;5172288;13.3;0;1;0;3
decider-combinator;1724;0.3;0;1;0;3
distractor-capsule;33015;8.0;0;1;0;3
landfill;740;0.3;0;1;0;3
effectivity-module;8919;8.0;0;1;0;3
shotgun-shell;494;1.6;0;1;0;3
explosives;212;4.0;0;0;0;3
copper-plate;94;1.6;0;0;0;2
production-science-pack;11997;12.3;1;1;3;8
programmable-speaker;2008;1.1;0;1;0;3
construction-robot;7680;0.3;0;1;0;3
chemical-plant;7004;2.7;0;1;0;3
uranium-fuel-cell;47366;1.3;1;8;4;0
green-wire;361;0.3;0;1;0;3
personal-laser-defense-equipment;359671;5.3;0;1;0;3
inserter;605;0.3;0;1;0;3
underground-belt;889;0.5;0;1;0;3
explosive-rocket;1749;4.3;0;1;0;3
night-vision-equipment;14859;5.3;0;1;0;3
repair-pack;1002;0.3;0;1;0;3
splitter;2570;0.5;0;1;0;3
artillery-wagon;163673;2.1;0;1;0;3
red-wire;361;0.3;0;1;0;3
lab;5634;1.1;0;1;0;3
discharge-defense-equipment;377432;5.3;0;1;0;3
atomic-bomb;17512225;26.7;0;1;0;3
logistic-chest-active-provider;8320;0.3;0;1;0;3
productivity-module-2;87516;16.0;0;1;0;3
rail-chain-signal;772;0.3;0;1;0;3
iron-gear-wheel;207;0.3;0;1;0;3
productivity-module;8919;8.0;0;1;0;3
burner-inserter;321;0.3;0;1;0;3
iron-chest;769;0.3;0;1;0;3
substation;14947;0.3;0;1;0;3
stone;36;2.0;0;0;0;3
sulfuric-acid;25;1.0;0;0;0;3
nuclear-fuel;520360;62.5;1;1;2;7
express-underground-belt;13965;1.1;0;1;0;3
electronic-circuit;284;0.3;0;1;0;3
stack-filter-inserter;11588;0.3;0;1;0;3
chemical-science-pack;4251;12.8;0;1;0;3
destroyer-capsule;141579;8.0;0;1;0;3
electric-furnace;15955;2.7;0;1;0;3
sulfur;221;1.0;0;0;0;3
rail;434;0.3;0;1;0;3
exoskeleton-equipment;192440;5.3;0;1;0;3
loader;6790;0.5;0;1;0;3
steel-plate;756;8.0;0;0;0;2
effectivity-module-3;490618;32.0;0;1;0;3
piercing-rounds-magazine;1758;1.6;0;1;0;3
processing-unit;8748;8.6;0;0;1;3
electric-mining-drill;2904;1.1;0;1;0;3
express-splitter;25768;1.1;0;1;0;3
assembling-machine-3;48038;0.3;0;1;0;3
transport-belt;160;0.3;0;1;0;3
copper-ore;36;2.0;0;0;0;3
explosive-cannon-shell;2602;4.3;0;1;0;3
flamethrower;6252;5.3;0;1;0;3
stone-wall;668;0.3;0;1;0;3
small-electric-pole;67;0.3;0;1;0;3
tank;105799;2.7;0;1;0;3
nuclear-reactor;1169253;4.3;0;1;0;3
concrete;108;5.3;0;1;0;3
rail-signal;772;0.3;0;1;0;3
constant-combinator;872;0.3;0;1;0;3
laser-turret;31817;10.7;0;1;0;3
car;18455;1.1;0;1;0;3
cliff-explosives;4377;4.3;0;1;0;3
medium-electric-pole;1946;0.3;0;1;0;3
explosive-uranium-cannon-shell;7151;6.4;0;1;0;3
discharge-defense-remote;304;0.3;0;1;0;3
land-mine;345;2.7;0;1;0;3
engine-unit;1590;5.3;0;1;0;3
logistic-chest-storage;8320;0.3;0;1;0;3
solar-panel;8908;5.3;0;1;0;3
1 name work time beason speed prod eff
2 pipe 114 0.3 0 1 0 3
3 flying-robot-frame 7092 10.7 0 1 0 3
4 empty-barrel 784 0.9 0 0 1 3
5 radar 3412 0.3 0 1 0 3
6 logistic-chest-buffer 8320 0.3 0 1 0 3
7 big-electric-pole 4722 0.3 0 1 0 3
8 speed-module 8919 8.0 0 1 0 3
9 combat-shotgun 13712 5.3 0 1 0 3
10 fusion-reactor-equipment 2002250 5.3 0 1 0 3
11 stone-furnace 200 0.3 0 1 0 3
12 gate 2768 0.3 0 1 0 3
13 power-switch 1400 1.1 0 1 0 3
14 rocket-control-unit 18867 16.0 0 1 0 3
15 steel-furnace 5952 1.6 0 1 0 3
16 logistic-science-pack 1005 3.2 0 1 0 3
17 refined-concrete 398 8.0 0 1 0 3
18 roboport 105638 2.7 0 1 0 3
19 fast-transport-belt 1216 0.3 0 1 0 3
20 iron-stick 57 0.3 0 1 0 3
21 centrifuge 207507 2.1 0 1 0 3
22 speed-module-2 87516 16.0 0 1 0 3
23 submachine-gun 3876 5.3 0 1 0 3
24 iron-plate 94 1.6 0 0 0 2
25 refined-hazard-concrete 399 0.1 0 1 0 3
26 crude-oil 2 1.0 0 0 0 2
27 rocket-part 214147 0.5 1 8 4 0
28 advanced-circuit 1380 3.2 0 1 0 3
29 logistic-chest-requester 8320 0.3 0 1 0 3
30 spidertron 6834741 5.3 0 1 0 3
31 modular-armor 79796 8.0 0 1 0 3
32 flamethrower-ammo 4212 6.0 0 0 0 3
33 automation-science-pack 501 2.7 0 1 0 3
34 fluid-wagon 20909 0.8 0 1 0 3
35 steam-turbine 17432 1.6 0 1 0 3
36 cluster-grenade 13198 4.3 0 1 0 3
37 fast-loader 12992 1.6 0 1 0 3
38 battery-equipment 12217 5.3 0 1 0 3
39 heavy-armor 47480 4.3 0 1 0 3
40 copper-cable 57 0.3 0 1 0 3
41 artillery-turret 89349 21.3 0 1 0 3
42 piercing-shotgun-shell 3289 4.3 0 1 0 3
43 electric-energy-interface 1627 0.3 0 1 0 3
44 accumulator 4844 5.3 0 1 0 3
45 boiler 674 0.3 0 1 0 3
46 logistic-robot 9872 0.3 0 1 0 3
47 stone-brick 130 1.6 0 0 0 2
48 fast-splitter 7562 1.1 0 1 0 3
49 iron-ore 36 2.0 0 0 0 3
50 poison-capsule 3800 4.3 0 1 0 3
51 utility-science-pack 12463 12.3 1 1 3 8
52 wooden-chest 20 0.3 0 1 0 3
53 effectivity-module-2 87516 16.0 0 1 0 3
54 heat-pipe 9472 0.5 0 1 0 3
55 rocket-silo 3222807 16.0 0 1 0 3
56 artillery-shell 16119 8.0 0 1 0 3
57 heat-exchanger 18176 1.6 0 1 0 3
58 locomotive 57488 2.1 0 1 0 3
59 pump 2540 1.1 0 1 0 3
60 electric-engine-unit 2981 5.3 0 1 0 3
61 fast-inserter 1380 0.3 0 1 0 3
62 pipe-to-ground 812 0.3 0 1 0 3
63 uranium-rounds-magazine 6228 5.3 0 1 0 3
64 filter-inserter 2536 0.3 0 1 0 3
65 long-handed-inserter 926 0.3 0 1 0 3
66 shotgun 3776 5.3 0 1 0 3
67 rocket-fuel 5868 16.0 0 1 0 3
68 assembling-machine-2 6170 0.3 0 1 0 3
69 flamethrower-turret 35676 10.7 0 1 0 3
70 personal-roboport-mk2-equipment 1356104 10.7 0 1 0 3
71 arithmetic-combinator 1724 0.3 0 1 0 3
72 stack-inserter 10148 0.3 0 1 0 3
73 logistic-chest-passive-provider 8320 0.3 0 1 0 3
74 satellite 3065250 2.7 0 1 0 3
75 rocket-launcher 3324 5.3 0 1 0 3
76 slowdown-capsule 2580 4.3 0 1 0 3
77 firearm-magazine 414 0.5 0 1 0 3
78 hazard-concrete 109 0.1 0 1 0 3
79 burner-mining-drill 1182 1.1 0 1 0 3
80 train-stop 4610 0.3 0 1 0 3
81 artillery-targeting-remote 12180 0.3 0 1 0 3
82 cannon-shell 2389 4.3 0 1 0 3
83 rocket 1004 4.3 0 1 0 3
84 oil-refinery 19004 4.3 0 1 0 3
85 beacon 42005 8.0 0 1 0 3
86 belt-immunity-equipment 14859 5.3 0 1 0 3
87 solar-panel-equipment 15848 5.3 0 1 0 3
88 fast-underground-belt 5073 1.1 0 1 0 3
89 steel-chest 6068 0.3 0 1 0 3
90 grenade 1148 4.3 0 1 0 3
91 cargo-wagon 19104 0.5 0 1 0 3
92 coal 36 2.0 0 0 0 3
93 battery 851 4.0 0 0 0 3
94 battery-mk2-equipment 279018 5.3 0 1 0 3
95 personal-roboport-equipment 75921 5.3 0 1 0 3
96 uranium-cannon-shell 6939 6.4 0 1 0 3
97 storage-tank 5772 1.6 0 1 0 3
98 express-loader 32754 5.3 0 1 0 3
99 light-armor 3864 1.6 0 1 0 3
100 low-density-structure 5046 10.7 0 1 0 3
101 offshore-pump 909 0.3 0 1 0 3
102 gun-turret 5200 4.3 0 1 0 3
103 lubricant 28 1.0 0 0 0 3
104 military-science-pack 2321 5.3 0 1 0 3
105 plastic-bar 172 1.0 0 0 0 3
106 productivity-module-3 490618 32.0 0 1 0 3
107 speed-module-3 490618 32.0 0 1 0 3
108 energy-shield-equipment 14859 5.3 0 1 0 3
109 small-lamp 568 0.3 0 1 0 3
110 defender-capsule 7069 4.3 0 1 0 3
111 express-transport-belt 3872 0.3 0 1 0 3
112 assembling-machine-1 2750 0.3 0 1 0 3
113 uranium-ore 320 4.0 0 0 0 3
114 power-armor 440581 10.7 0 1 0 3
115 energy-shield-mk2-equipment 217961 5.3 0 1 0 3
116 pistol 1136 2.7 0 1 0 3
117 steam-engine 3182 0.3 0 1 0 3
118 pumpjack 8608 2.7 0 1 0 3
119 power-armor-mk2 5172288 13.3 0 1 0 3
120 decider-combinator 1724 0.3 0 1 0 3
121 distractor-capsule 33015 8.0 0 1 0 3
122 landfill 740 0.3 0 1 0 3
123 effectivity-module 8919 8.0 0 1 0 3
124 shotgun-shell 494 1.6 0 1 0 3
125 explosives 212 4.0 0 0 0 3
126 copper-plate 94 1.6 0 0 0 2
127 production-science-pack 11997 12.3 1 1 3 8
128 programmable-speaker 2008 1.1 0 1 0 3
129 construction-robot 7680 0.3 0 1 0 3
130 chemical-plant 7004 2.7 0 1 0 3
131 uranium-fuel-cell 47366 1.3 1 8 4 0
132 green-wire 361 0.3 0 1 0 3
133 personal-laser-defense-equipment 359671 5.3 0 1 0 3
134 inserter 605 0.3 0 1 0 3
135 underground-belt 889 0.5 0 1 0 3
136 explosive-rocket 1749 4.3 0 1 0 3
137 night-vision-equipment 14859 5.3 0 1 0 3
138 repair-pack 1002 0.3 0 1 0 3
139 splitter 2570 0.5 0 1 0 3
140 artillery-wagon 163673 2.1 0 1 0 3
141 red-wire 361 0.3 0 1 0 3
142 lab 5634 1.1 0 1 0 3
143 discharge-defense-equipment 377432 5.3 0 1 0 3
144 atomic-bomb 17512225 26.7 0 1 0 3
145 logistic-chest-active-provider 8320 0.3 0 1 0 3
146 productivity-module-2 87516 16.0 0 1 0 3
147 rail-chain-signal 772 0.3 0 1 0 3
148 iron-gear-wheel 207 0.3 0 1 0 3
149 productivity-module 8919 8.0 0 1 0 3
150 burner-inserter 321 0.3 0 1 0 3
151 iron-chest 769 0.3 0 1 0 3
152 substation 14947 0.3 0 1 0 3
153 stone 36 2.0 0 0 0 3
154 sulfuric-acid 25 1.0 0 0 0 3
155 nuclear-fuel 520360 62.5 1 1 2 7
156 express-underground-belt 13965 1.1 0 1 0 3
157 electronic-circuit 284 0.3 0 1 0 3
158 stack-filter-inserter 11588 0.3 0 1 0 3
159 chemical-science-pack 4251 12.8 0 1 0 3
160 destroyer-capsule 141579 8.0 0 1 0 3
161 electric-furnace 15955 2.7 0 1 0 3
162 sulfur 221 1.0 0 0 0 3
163 rail 434 0.3 0 1 0 3
164 exoskeleton-equipment 192440 5.3 0 1 0 3
165 loader 6790 0.5 0 1 0 3
166 steel-plate 756 8.0 0 0 0 2
167 effectivity-module-3 490618 32.0 0 1 0 3
168 piercing-rounds-magazine 1758 1.6 0 1 0 3
169 processing-unit 8748 8.6 0 0 1 3
170 electric-mining-drill 2904 1.1 0 1 0 3
171 express-splitter 25768 1.1 0 1 0 3
172 assembling-machine-3 48038 0.3 0 1 0 3
173 transport-belt 160 0.3 0 1 0 3
174 copper-ore 36 2.0 0 0 0 3
175 explosive-cannon-shell 2602 4.3 0 1 0 3
176 flamethrower 6252 5.3 0 1 0 3
177 stone-wall 668 0.3 0 1 0 3
178 small-electric-pole 67 0.3 0 1 0 3
179 tank 105799 2.7 0 1 0 3
180 nuclear-reactor 1169253 4.3 0 1 0 3
181 concrete 108 5.3 0 1 0 3
182 rail-signal 772 0.3 0 1 0 3
183 constant-combinator 872 0.3 0 1 0 3
184 laser-turret 31817 10.7 0 1 0 3
185 car 18455 1.1 0 1 0 3
186 cliff-explosives 4377 4.3 0 1 0 3
187 medium-electric-pole 1946 0.3 0 1 0 3
188 explosive-uranium-cannon-shell 7151 6.4 0 1 0 3
189 discharge-defense-remote 304 0.3 0 1 0 3
190 land-mine 345 2.7 0 1 0 3
191 engine-unit 1590 5.3 0 1 0 3
192 logistic-chest-storage 8320 0.3 0 1 0 3
193 solar-panel 8908 5.3 0 1 0 3

193
public/modules/fast.csv Normal file
View File

@@ -0,0 +1,193 @@
name;work;time;beason;speed;prod;eff
pipe;1908;0.0;5;16;0;0
flying-robot-frame;75815;1.7;5;14;2;0
empty-barrel;10260;0.1;5;14;2;0
radar;49547;0.0;5;16;0;0
logistic-chest-buffer;120255;0.0;5;16;0;0
big-electric-pole;72746;0.0;5;16;0;0
speed-module;107459;1.3;5;16;0;0
combat-shotgun;214147;0.9;5;16;0;0
fusion-reactor-equipment;22393364;0.9;5;16;0;0
stone-furnace;4351;0.0;5;16;0;0
gate;42809;0.0;5;16;0;0
power-switch;20688;0.2;5;16;0;0
rocket-control-unit;187246;2.6;5;14;2;0
steel-furnace;94666;0.3;5;16;0;0
logistic-science-pack;12827;0.5;5;14;2;0
refined-concrete;6991;1.3;5;16;0;0
roboport;1375467;0.4;5;16;0;0
fast-transport-belt;17591;0.0;5;16;0;0
iron-stick;818;0.0;5;14;2;0
centrifuge;2677062;0.4;5;16;0;0
speed-module-2;1004494;2.7;5;16;0;0
submachine-gun;59855;0.9;5;16;0;0
iron-plate;1598;0.2;5;13;1;0
refined-hazard-concrete;7007;0.0;5;16;0;0
crude-oil;42;0.1;5;14;0;0
rocket-part;2625842;0.3;5;14;2;0
advanced-circuit;15949;0.5;5;14;2;0
logistic-chest-requester;120255;0.0;5;16;0;0
spidertron;78191991;0.9;5;16;0;0
modular-armor;1066751;1.3;5;16;0;0
flamethrower-ammo;65512;0.7;5;15;0;0
automation-science-pack;6857;0.4;5;14;2;0
fluid-wagon;322873;0.1;5;16;0;0
steam-turbine;268344;0.3;5;16;0;0
cluster-grenade;223261;0.7;5;16;0;0
fast-loader;186669;0.3;5;16;0;0
battery-equipment;170475;0.9;5;16;0;0
heavy-armor;743745;0.7;5;16;0;0
copper-cable;818;0.0;5;14;2;0
artillery-turret;1279618;3.6;5;16;0;0
piercing-shotgun-shell;52613;0.7;5;16;0;0
electric-energy-interface;21921;0.0;5;16;0;0
accumulator;57873;0.9;5;16;0;0
boiler;12293;0.0;5;16;0;0
logistic-robot;108022;0.0;5;16;0;0
stone-brick;2333;0.2;5;13;1;0
fast-splitter;104532;0.2;5;16;0;0
iron-ore;808;0.2;5;15;0;0
poison-capsule;58830;0.7;5;16;0;0
utility-science-pack;133832;1.8;5;14;2;0
wooden-chest;996;0.0;5;16;0;0
effectivity-module-2;1004494;2.7;5;16;0;0
heat-pipe;148377;0.1;5;16;0;0
rocket-silo;39742168;2.7;5;16;0;0
artillery-shell;229907;1.3;5;16;0;0
heat-exchanger;296536;0.3;5;16;0;0
locomotive;814849;0.4;5;16;0;0
pump;36135;0.2;5;16;0;0
electric-engine-unit;34309;0.9;5;14;2;0
fast-inserter;19431;0.0;5;16;0;0
pipe-to-ground;13690;0.0;5;16;0;0
uranium-rounds-magazine;85006;0.9;5;16;0;0
filter-inserter;34473;0.0;5;16;0;0
long-handed-inserter;13436;0.0;5;16;0;0
shotgun;62707;0.9;5;16;0;0
rocket-fuel;60949;2.6;5;14;2;0
assembling-machine-2;89944;0.0;5;16;0;0
flamethrower-turret;530436;1.8;5;16;0;0
personal-roboport-mk2-equipment;15634125;1.8;5;16;0;0
arithmetic-combinator;22817;0.0;5;16;0;0
stack-inserter;135461;0.0;5;16;0;0
logistic-chest-passive-provider;120255;0.0;5;16;0;0
satellite;38014271;0.4;5;16;0;0
rocket-launcher;47447;0.9;5;16;0;0
slowdown-capsule;39526;0.7;5;16;0;0
firearm-magazine;7012;0.1;5;16;0;0
hazard-concrete;2054;0.0;5;16;0;0
burner-mining-drill;19291;0.2;5;16;0;0
train-stop;67962;0.0;5;16;0;0
artillery-targeting-remote;145120;0.0;5;16;0;0
cannon-shell;34859;0.7;5;16;0;0
rocket;14474;0.7;5;16;0;0
oil-refinery;287577;0.7;5;16;0;0
beacon;525916;1.3;5;16;0;0
belt-immunity-equipment;201741;0.9;5;16;0;0
solar-panel-equipment;223329;0.9;5;16;0;0
fast-underground-belt;74386;0.2;5;16;0;0
steel-chest;92948;0.0;5;16;0;0
grenade;21032;0.7;5;16;0;0
cargo-wagon;293859;0.1;5;16;0;0
coal;808;0.2;5;15;0;0
battery;9695;0.5;5;13;2;0
battery-mk2-equipment;3473347;0.9;5;16;0;0
personal-roboport-equipment;952320;0.9;5;16;0;0
uranium-cannon-shell;92663;1.1;5;16;0;0
storage-tank;91718;0.3;5;16;0;0
express-loader;464618;0.9;5;16;0;0
light-armor;65780;0.3;5;16;0;0
low-density-structure;66691;1.7;5;14;2;0
offshore-pump;12552;0.0;5;16;0;0
gun-turret;82585;0.7;5;16;0;0
lubricant;338;0.1;5;13;2;0
military-science-pack;33644;0.9;5;14;2;0
plastic-bar;2052;0.1;5;13;2;0
productivity-module-3;5615731;5.3;5;16;0;0
speed-module-3;5615731;5.3;5;16;0;0
energy-shield-equipment;201741;0.9;5;16;0;0
small-lamp;8046;0.0;5;16;0;0
defender-capsule;110239;0.7;5;16;0;0
express-transport-belt;54350;0.0;5;16;0;0
assembling-machine-1;40583;0.0;5;16;0;0
uranium-ore;4487;0.5;5;15;0;0
power-armor;4972293;1.8;5;16;0;0
energy-shield-mk2-equipment;2833384;0.9;5;16;0;0
pistol;19080;0.4;5;16;0;0
steam-engine;49578;0.0;5;16;0;0
pumpjack;128178;0.4;5;16;0;0
power-armor-mk2;59329090;2.2;5;16;0;0
decider-combinator;22817;0.0;5;16;0;0
distractor-capsule;498103;1.3;5;16;0;0
landfill;16475;0.0;5;16;0;0
effectivity-module;107459;1.3;5;16;0;0
shotgun-shell;8252;0.3;5;16;0;0
explosives;2635;0.5;5;13;2;0
copper-plate;1598;0.2;5;13;1;0
production-science-pack;152099;1.8;5;14;2;0
programmable-speaker;28131;0.2;5;16;0;0
construction-robot;83491;0.0;5;16;0;0
chemical-plant;103796;0.4;5;16;0;0
uranium-fuel-cell;677064;0.9;5;14;2;0
green-wire;4811;0.0;5;16;0;0
personal-laser-defense-equipment;4414909;0.9;5;16;0;0
inserter;8559;0.0;5;16;0;0
underground-belt;14396;0.1;5;16;0;0
explosive-rocket;24705;0.7;5;16;0;0
night-vision-equipment;201741;0.9;5;16;0;0
repair-pack;13613;0.0;5;16;0;0
splitter;36778;0.1;5;16;0;0
artillery-wagon;2214932;0.4;5;16;0;0
red-wire;4811;0.0;5;16;0;0
lab;77507;0.2;5;16;0;0
discharge-defense-equipment;5054095;0.9;5;16;0;0
atomic-bomb;216266125;4.4;5;16;0;0
logistic-chest-active-provider;120255;0.0;5;16;0;0
productivity-module-2;1004494;2.7;5;16;0;0
rail-chain-signal;11983;0.0;5;16;0;0
iron-gear-wheel;2969;0.0;5;14;2;0
productivity-module;107459;1.3;5;16;0;0
burner-inserter;4876;0.0;5;16;0;0
iron-chest;13094;0.0;5;16;0;0
substation;203841;0.0;5;16;0;0
stone;808;0.2;5;15;0;0
sulfuric-acid;287;0.1;5;13;2;0
nuclear-fuel;6619632;11.1;5;13;1;0
express-underground-belt;200510;0.2;5;16;0;0
electronic-circuit;3683;0.0;5;14;2;0
stack-filter-inserter;154186;0.0;5;16;0;0
chemical-science-pack;46203;2.1;5;14;2;0
destroyer-capsule;2109170;1.3;5;16;0;0
electric-furnace;221969;0.4;5;16;0;0
sulfur;2647;0.1;5;13;2;0
rail;6758;0.0;5;16;0;0
exoskeleton-equipment;2219696;0.9;5;16;0;0
loader;96855;0.1;5;16;0;0
steel-plate;11580;1.0;5;13;1;0
effectivity-module-3;5615731;5.3;5;16;0;0
piercing-rounds-magazine;28442;0.3;5;16;0;0
processing-unit;95263;0.9;5;14;2;0
electric-mining-drill;43111;0.2;5;16;0;0
express-splitter;322001;0.2;5;16;0;0
assembling-machine-3;610033;0.0;5;16;0;0
transport-belt;2438;0.0;5;16;0;0
copper-ore;808;0.2;5;15;0;0
explosive-cannon-shell;37494;0.7;5;16;0;0
flamethrower;93784;0.9;5;16;0;0
stone-wall;11974;0.0;5;16;0;0
small-electric-pole;1145;0.0;5;16;0;0
tank;1471139;0.4;5;16;0;0
nuclear-reactor;15587539;0.7;5;16;0;0
concrete;2039;0.9;5;16;0;0
rail-signal;11983;0.0;5;16;0;0
constant-combinator;11768;0.0;5;16;0;0
laser-turret;433998;1.8;5;16;0;0
car;262358;0.2;5;16;0;0
cliff-explosives;62606;0.7;5;16;0;0
medium-electric-pole;29939;0.0;5;16;0;0
explosive-uranium-cannon-shell;95299;1.1;5;16;0;0
discharge-defense-remote;3993;0.0;5;16;0;0
land-mine;4988;0.4;5;16;0;0
engine-unit;21407;0.9;5;14;2;0
logistic-chest-storage;120255;0.0;5;16;0;0
solar-panel;127332;0.9;5;16;0;0
1 name work time beason speed prod eff
2 pipe 1908 0.0 5 16 0 0
3 flying-robot-frame 75815 1.7 5 14 2 0
4 empty-barrel 10260 0.1 5 14 2 0
5 radar 49547 0.0 5 16 0 0
6 logistic-chest-buffer 120255 0.0 5 16 0 0
7 big-electric-pole 72746 0.0 5 16 0 0
8 speed-module 107459 1.3 5 16 0 0
9 combat-shotgun 214147 0.9 5 16 0 0
10 fusion-reactor-equipment 22393364 0.9 5 16 0 0
11 stone-furnace 4351 0.0 5 16 0 0
12 gate 42809 0.0 5 16 0 0
13 power-switch 20688 0.2 5 16 0 0
14 rocket-control-unit 187246 2.6 5 14 2 0
15 steel-furnace 94666 0.3 5 16 0 0
16 logistic-science-pack 12827 0.5 5 14 2 0
17 refined-concrete 6991 1.3 5 16 0 0
18 roboport 1375467 0.4 5 16 0 0
19 fast-transport-belt 17591 0.0 5 16 0 0
20 iron-stick 818 0.0 5 14 2 0
21 centrifuge 2677062 0.4 5 16 0 0
22 speed-module-2 1004494 2.7 5 16 0 0
23 submachine-gun 59855 0.9 5 16 0 0
24 iron-plate 1598 0.2 5 13 1 0
25 refined-hazard-concrete 7007 0.0 5 16 0 0
26 crude-oil 42 0.1 5 14 0 0
27 rocket-part 2625842 0.3 5 14 2 0
28 advanced-circuit 15949 0.5 5 14 2 0
29 logistic-chest-requester 120255 0.0 5 16 0 0
30 spidertron 78191991 0.9 5 16 0 0
31 modular-armor 1066751 1.3 5 16 0 0
32 flamethrower-ammo 65512 0.7 5 15 0 0
33 automation-science-pack 6857 0.4 5 14 2 0
34 fluid-wagon 322873 0.1 5 16 0 0
35 steam-turbine 268344 0.3 5 16 0 0
36 cluster-grenade 223261 0.7 5 16 0 0
37 fast-loader 186669 0.3 5 16 0 0
38 battery-equipment 170475 0.9 5 16 0 0
39 heavy-armor 743745 0.7 5 16 0 0
40 copper-cable 818 0.0 5 14 2 0
41 artillery-turret 1279618 3.6 5 16 0 0
42 piercing-shotgun-shell 52613 0.7 5 16 0 0
43 electric-energy-interface 21921 0.0 5 16 0 0
44 accumulator 57873 0.9 5 16 0 0
45 boiler 12293 0.0 5 16 0 0
46 logistic-robot 108022 0.0 5 16 0 0
47 stone-brick 2333 0.2 5 13 1 0
48 fast-splitter 104532 0.2 5 16 0 0
49 iron-ore 808 0.2 5 15 0 0
50 poison-capsule 58830 0.7 5 16 0 0
51 utility-science-pack 133832 1.8 5 14 2 0
52 wooden-chest 996 0.0 5 16 0 0
53 effectivity-module-2 1004494 2.7 5 16 0 0
54 heat-pipe 148377 0.1 5 16 0 0
55 rocket-silo 39742168 2.7 5 16 0 0
56 artillery-shell 229907 1.3 5 16 0 0
57 heat-exchanger 296536 0.3 5 16 0 0
58 locomotive 814849 0.4 5 16 0 0
59 pump 36135 0.2 5 16 0 0
60 electric-engine-unit 34309 0.9 5 14 2 0
61 fast-inserter 19431 0.0 5 16 0 0
62 pipe-to-ground 13690 0.0 5 16 0 0
63 uranium-rounds-magazine 85006 0.9 5 16 0 0
64 filter-inserter 34473 0.0 5 16 0 0
65 long-handed-inserter 13436 0.0 5 16 0 0
66 shotgun 62707 0.9 5 16 0 0
67 rocket-fuel 60949 2.6 5 14 2 0
68 assembling-machine-2 89944 0.0 5 16 0 0
69 flamethrower-turret 530436 1.8 5 16 0 0
70 personal-roboport-mk2-equipment 15634125 1.8 5 16 0 0
71 arithmetic-combinator 22817 0.0 5 16 0 0
72 stack-inserter 135461 0.0 5 16 0 0
73 logistic-chest-passive-provider 120255 0.0 5 16 0 0
74 satellite 38014271 0.4 5 16 0 0
75 rocket-launcher 47447 0.9 5 16 0 0
76 slowdown-capsule 39526 0.7 5 16 0 0
77 firearm-magazine 7012 0.1 5 16 0 0
78 hazard-concrete 2054 0.0 5 16 0 0
79 burner-mining-drill 19291 0.2 5 16 0 0
80 train-stop 67962 0.0 5 16 0 0
81 artillery-targeting-remote 145120 0.0 5 16 0 0
82 cannon-shell 34859 0.7 5 16 0 0
83 rocket 14474 0.7 5 16 0 0
84 oil-refinery 287577 0.7 5 16 0 0
85 beacon 525916 1.3 5 16 0 0
86 belt-immunity-equipment 201741 0.9 5 16 0 0
87 solar-panel-equipment 223329 0.9 5 16 0 0
88 fast-underground-belt 74386 0.2 5 16 0 0
89 steel-chest 92948 0.0 5 16 0 0
90 grenade 21032 0.7 5 16 0 0
91 cargo-wagon 293859 0.1 5 16 0 0
92 coal 808 0.2 5 15 0 0
93 battery 9695 0.5 5 13 2 0
94 battery-mk2-equipment 3473347 0.9 5 16 0 0
95 personal-roboport-equipment 952320 0.9 5 16 0 0
96 uranium-cannon-shell 92663 1.1 5 16 0 0
97 storage-tank 91718 0.3 5 16 0 0
98 express-loader 464618 0.9 5 16 0 0
99 light-armor 65780 0.3 5 16 0 0
100 low-density-structure 66691 1.7 5 14 2 0
101 offshore-pump 12552 0.0 5 16 0 0
102 gun-turret 82585 0.7 5 16 0 0
103 lubricant 338 0.1 5 13 2 0
104 military-science-pack 33644 0.9 5 14 2 0
105 plastic-bar 2052 0.1 5 13 2 0
106 productivity-module-3 5615731 5.3 5 16 0 0
107 speed-module-3 5615731 5.3 5 16 0 0
108 energy-shield-equipment 201741 0.9 5 16 0 0
109 small-lamp 8046 0.0 5 16 0 0
110 defender-capsule 110239 0.7 5 16 0 0
111 express-transport-belt 54350 0.0 5 16 0 0
112 assembling-machine-1 40583 0.0 5 16 0 0
113 uranium-ore 4487 0.5 5 15 0 0
114 power-armor 4972293 1.8 5 16 0 0
115 energy-shield-mk2-equipment 2833384 0.9 5 16 0 0
116 pistol 19080 0.4 5 16 0 0
117 steam-engine 49578 0.0 5 16 0 0
118 pumpjack 128178 0.4 5 16 0 0
119 power-armor-mk2 59329090 2.2 5 16 0 0
120 decider-combinator 22817 0.0 5 16 0 0
121 distractor-capsule 498103 1.3 5 16 0 0
122 landfill 16475 0.0 5 16 0 0
123 effectivity-module 107459 1.3 5 16 0 0
124 shotgun-shell 8252 0.3 5 16 0 0
125 explosives 2635 0.5 5 13 2 0
126 copper-plate 1598 0.2 5 13 1 0
127 production-science-pack 152099 1.8 5 14 2 0
128 programmable-speaker 28131 0.2 5 16 0 0
129 construction-robot 83491 0.0 5 16 0 0
130 chemical-plant 103796 0.4 5 16 0 0
131 uranium-fuel-cell 677064 0.9 5 14 2 0
132 green-wire 4811 0.0 5 16 0 0
133 personal-laser-defense-equipment 4414909 0.9 5 16 0 0
134 inserter 8559 0.0 5 16 0 0
135 underground-belt 14396 0.1 5 16 0 0
136 explosive-rocket 24705 0.7 5 16 0 0
137 night-vision-equipment 201741 0.9 5 16 0 0
138 repair-pack 13613 0.0 5 16 0 0
139 splitter 36778 0.1 5 16 0 0
140 artillery-wagon 2214932 0.4 5 16 0 0
141 red-wire 4811 0.0 5 16 0 0
142 lab 77507 0.2 5 16 0 0
143 discharge-defense-equipment 5054095 0.9 5 16 0 0
144 atomic-bomb 216266125 4.4 5 16 0 0
145 logistic-chest-active-provider 120255 0.0 5 16 0 0
146 productivity-module-2 1004494 2.7 5 16 0 0
147 rail-chain-signal 11983 0.0 5 16 0 0
148 iron-gear-wheel 2969 0.0 5 14 2 0
149 productivity-module 107459 1.3 5 16 0 0
150 burner-inserter 4876 0.0 5 16 0 0
151 iron-chest 13094 0.0 5 16 0 0
152 substation 203841 0.0 5 16 0 0
153 stone 808 0.2 5 15 0 0
154 sulfuric-acid 287 0.1 5 13 2 0
155 nuclear-fuel 6619632 11.1 5 13 1 0
156 express-underground-belt 200510 0.2 5 16 0 0
157 electronic-circuit 3683 0.0 5 14 2 0
158 stack-filter-inserter 154186 0.0 5 16 0 0
159 chemical-science-pack 46203 2.1 5 14 2 0
160 destroyer-capsule 2109170 1.3 5 16 0 0
161 electric-furnace 221969 0.4 5 16 0 0
162 sulfur 2647 0.1 5 13 2 0
163 rail 6758 0.0 5 16 0 0
164 exoskeleton-equipment 2219696 0.9 5 16 0 0
165 loader 96855 0.1 5 16 0 0
166 steel-plate 11580 1.0 5 13 1 0
167 effectivity-module-3 5615731 5.3 5 16 0 0
168 piercing-rounds-magazine 28442 0.3 5 16 0 0
169 processing-unit 95263 0.9 5 14 2 0
170 electric-mining-drill 43111 0.2 5 16 0 0
171 express-splitter 322001 0.2 5 16 0 0
172 assembling-machine-3 610033 0.0 5 16 0 0
173 transport-belt 2438 0.0 5 16 0 0
174 copper-ore 808 0.2 5 15 0 0
175 explosive-cannon-shell 37494 0.7 5 16 0 0
176 flamethrower 93784 0.9 5 16 0 0
177 stone-wall 11974 0.0 5 16 0 0
178 small-electric-pole 1145 0.0 5 16 0 0
179 tank 1471139 0.4 5 16 0 0
180 nuclear-reactor 15587539 0.7 5 16 0 0
181 concrete 2039 0.9 5 16 0 0
182 rail-signal 11983 0.0 5 16 0 0
183 constant-combinator 11768 0.0 5 16 0 0
184 laser-turret 433998 1.8 5 16 0 0
185 car 262358 0.2 5 16 0 0
186 cliff-explosives 62606 0.7 5 16 0 0
187 medium-electric-pole 29939 0.0 5 16 0 0
188 explosive-uranium-cannon-shell 95299 1.1 5 16 0 0
189 discharge-defense-remote 3993 0.0 5 16 0 0
190 land-mine 4988 0.4 5 16 0 0
191 engine-unit 21407 0.9 5 14 2 0
192 logistic-chest-storage 120255 0.0 5 16 0 0
193 solar-panel 127332 0.9 5 16 0 0

View File

@@ -0,0 +1,193 @@
name;work;time;beason;speed;prod;eff
pipe;114;0.3;0;1;0;3
flying-robot-frame;7158;10.7;0;1;0;3
empty-barrel;784;0.9;0;0;1;3
radar;3412;0.3;0;1;0;3
logistic-chest-buffer;8320;0.3;0;1;0;3
big-electric-pole;4722;0.3;0;1;0;3
speed-module;10539;4.0;1;4;0;8
combat-shotgun;17889;1.1;1;12;0;0
fusion-reactor-equipment;2579133;1.1;1;12;0;0
stone-furnace;200;0.3;0;1;0;3
gate;2768;0.3;0;1;0;3
power-switch;1616;0.5;1;4;0;8
rocket-control-unit;25290;9.3;1;3;1;8
steel-furnace;7205;0.3;1;12;0;0
logistic-science-pack;1005;3.2;0;1;0;3
refined-concrete;398;8.0;0;1;0;3
roboport;107727;0.6;1;12;0;0
fast-transport-belt;1216;0.3;0;1;0;3
iron-stick;57;0.3;0;1;0;3
centrifuge;209178;0.5;1;12;0;0
speed-module-2;120845;3.4;1;12;0;0
submachine-gun;3876;5.3;0;1;0;3
iron-plate;94;1.6;0;0;0;2
refined-hazard-concrete;399;0.1;0;1;0;3
crude-oil;2;1.0;0;0;0;2
rocket-part;273351;0.5;1;8;4;0
advanced-circuit;1380;3.2;0;1;0;3
logistic-chest-requester;8320;0.3;0;1;0;3
spidertron;8638749;1.1;1;12;0;0
modular-armor;86062;1.7;1;12;0;0
flamethrower-ammo;6090;0.9;1;11;0;0
automation-science-pack;501;2.7;0;1;0;3
fluid-wagon;22789;0.2;1;12;0;0
steam-turbine;18685;0.3;1;12;0;0
cluster-grenade;16540;0.9;1;12;0;0
fast-loader;14245;0.3;1;12;0;0
battery-equipment;13936;2.3;1;5;0;7
heavy-armor;50822;0.9;1;12;0;0
copper-cable;57;0.3;0;1;0;3
artillery-turret;106058;4.6;1;12;0;0
piercing-shotgun-shell;3289;4.3;0;1;0;3
electric-energy-interface;1627;0.3;0;1;0;3
accumulator;5009;5.3;0;1;0;3
boiler;674;0.3;0;1;0;3
logistic-robot;9938;0.3;0;1;0;3
stone-brick;130;1.6;0;0;0;2
fast-splitter;8397;0.2;1;12;0;0
iron-ore;36;2.0;0;0;0;3
poison-capsule;3800;4.3;0;1;0;3
utility-science-pack;14615;2.7;1;8;4;0
wooden-chest;20;0.3;0;1;0;3
effectivity-module-2;120845;3.4;1;12;0;0
heat-pipe;9472;0.5;0;1;0;3
rocket-silo;3808044;3.4;1;12;0;0
artillery-shell;17739;4.0;1;4;0;8
heat-exchanger;19429;0.3;1;12;0;0
locomotive;59159;0.5;1;12;0;0
pump;3375;0.2;1;12;0;0
electric-engine-unit;2981;5.3;0;1;0;3
fast-inserter;1380;0.3;0;1;0;3
pipe-to-ground;812;0.3;0;1;0;3
uranium-rounds-magazine;7797;2.7;1;4;0;8
filter-inserter;2536;0.3;0;1;0;3
long-handed-inserter;926;0.3;0;1;0;3
shotgun;3776;5.3;0;1;0;3
rocket-fuel;7734;16.0;0;1;0;3
assembling-machine-2;6170;0.3;0;1;0;3
flamethrower-turret;44030;2.3;1;12;0;0
personal-roboport-mk2-equipment;1679084;2.3;1;12;0;0
arithmetic-combinator;1724;0.3;0;1;0;3
stack-inserter;10148;0.3;0;1;0;3
logistic-chest-passive-provider;8320;0.3;0;1;0;3
satellite;3571402;0.6;1;12;0;0
rocket-launcher;3324;5.3;0;1;0;3
slowdown-capsule;2580;4.3;0;1;0;3
firearm-magazine;414;0.5;0;1;0;3
hazard-concrete;109;0.1;0;1;0;3
burner-mining-drill;1398;0.5;1;4;0;8
train-stop;4610;0.3;0;1;0;3
artillery-targeting-remote;15043;0.3;0;1;0;3
cannon-shell;2389;4.3;0;1;0;3
rocket;1004;4.3;0;1;0;3
oil-refinery;22346;0.9;1;12;0;0
beacon;48271;1.7;1;12;0;0
belt-immunity-equipment;19036;1.1;1;12;0;0
solar-panel-equipment;21105;1.1;1;12;0;0
fast-underground-belt;5491;0.2;1;12;0;0
steel-chest;6068;0.3;0;1;0;3
grenade;1148;4.3;0;1;0;3
cargo-wagon;19104;0.5;0;1;0;3
coal;36;2.0;0;0;0;3
battery;884;4.0;0;0;0;3
battery-mk2-equipment;343332;1.1;1;12;0;0
personal-roboport-equipment;81576;1.1;1;12;0;0
uranium-cannon-shell;8400;3.2;1;4;0;8
storage-tank;7025;0.3;1;12;0;0
express-loader;38184;1.1;1;12;0;0
light-armor;5117;0.3;1;12;0;0
low-density-structure;5046;10.7;0;1;0;3
offshore-pump;909;0.3;0;1;0;3
gun-turret;6064;2.1;1;4;0;8
lubricant;28;1.0;0;0;0;3
military-science-pack;2483;5.3;0;1;0;3
plastic-bar;172;1.0;0;0;0;3
productivity-module-3;696644;6.9;1;12;0;0
speed-module-3;696644;6.9;1;12;0;0
energy-shield-equipment;19036;1.1;1;12;0;0
small-lamp;568;0.3;0;1;0;3
defender-capsule;8905;2.1;1;4;0;8
express-transport-belt;3872;0.3;0;1;0;3
assembling-machine-1;2750;0.3;0;1;0;3
uranium-ore;337;4.0;0;0;0;3
power-armor;563477;2.3;1;12;0;0
energy-shield-mk2-equipment;278227;1.1;1;12;0;0
pistol;1136;2.7;0;1;0;3
steam-engine;3182;0.3;0;1;0;3
pumpjack;10697;0.6;1;12;0;0
power-armor-mk2;7020996;2.9;1;12;0;0
decider-combinator;1724;0.3;0;1;0;3
distractor-capsule;46625;1.7;1;12;0;0
landfill;740;0.3;0;1;0;3
effectivity-module;10539;4.0;1;4;0;8
shotgun-shell;494;1.6;0;1;0;3
explosives;212;4.0;0;0;0;3
copper-plate;94;1.6;0;0;0;2
production-science-pack;13686;2.7;1;8;4;0
programmable-speaker;2224;0.5;1;4;0;8
construction-robot;7746;0.3;0;1;0;3
chemical-plant;9093;0.6;1;12;0;0
uranium-fuel-cell;49266;1.3;1;8;4;0
green-wire;361;0.3;0;1;0;3
personal-laser-defense-equipment;464860;1.1;1;12;0;0
inserter;605;0.3;0;1;0;3
underground-belt;889;0.5;0;1;0;3
explosive-rocket;1749;4.3;0;1;0;3
night-vision-equipment;19036;1.1;1;12;0;0
repair-pack;1002;0.3;0;1;0;3
splitter;2570;0.5;0;1;0;3
artillery-wagon;165343;0.5;1;12;0;0
red-wire;361;0.3;0;1;0;3
lab;6469;0.2;1;12;0;0
discharge-defense-equipment;483409;1.1;1;12;0;0
atomic-bomb;18300848;5.7;1;12;0;0
logistic-chest-active-provider;8320;0.3;0;1;0;3
productivity-module-2;120845;3.4;1;12;0;0
rail-chain-signal;772;0.3;0;1;0;3
iron-gear-wheel;207;0.3;0;1;0;3
productivity-module;10539;4.0;1;4;0;8
burner-inserter;321;0.3;0;1;0;3
iron-chest;769;0.3;0;1;0;3
substation;14947;0.3;0;1;0;3
stone;36;2.0;0;0;0;3
sulfuric-acid;26;0.2;1;8;3;0
nuclear-fuel;560540;16.0;1;8;2;0
express-underground-belt;14800;0.2;1;12;0;0
electronic-circuit;284;0.3;0;1;0;3
stack-filter-inserter;11588;0.3;0;1;0;3
chemical-science-pack;4251;12.8;0;1;0;3
destroyer-capsule;203903;1.7;1;12;0;0
electric-furnace;18044;0.6;1;12;0;0
sulfur;221;1.0;0;0;0;3
rail;434;0.3;0;1;0;3
exoskeleton-equipment;225253;1.1;1;12;0;0
loader;6790;0.5;0;1;0;3
steel-plate;756;8.0;0;0;0;2
effectivity-module-3;696644;6.9;1;12;0;0
piercing-rounds-magazine;2082;0.8;1;4;0;8
processing-unit;11611;1.2;1;9;3;0
electric-mining-drill;3739;0.2;1;12;0;0
express-splitter;27439;0.2;1;12;0;0
assembling-machine-3;54518;0.3;0;1;0;3
transport-belt;160;0.3;0;1;0;3
copper-ore;36;2.0;0;0;0;3
explosive-cannon-shell;2602;4.3;0;1;0;3
flamethrower;7332;2.7;1;4;0;8
stone-wall;668;0.3;0;1;0;3
small-electric-pole;67;0.3;0;1;0;3
tank;107888;0.6;1;12;0;0
nuclear-reactor;1172595;0.9;1;12;0;0
concrete;108;5.3;0;1;0;3
rail-signal;772;0.3;0;1;0;3
constant-combinator;872;0.3;0;1;0;3
laser-turret;40566;2.3;1;12;0;0
car;19291;0.2;1;12;0;0
cliff-explosives;4377;4.3;0;1;0;3
medium-electric-pole;1946;0.3;0;1;0;3
explosive-uranium-cannon-shell;8613;3.2;1;4;0;8
discharge-defense-remote;304;0.3;0;1;0;3
land-mine;345;2.7;0;1;0;3
engine-unit;1590;5.3;0;1;0;3
logistic-chest-storage;8320;0.3;0;1;0;3
solar-panel;9988;2.7;1;4;0;8
1 name work time beason speed prod eff
2 pipe 114 0.3 0 1 0 3
3 flying-robot-frame 7158 10.7 0 1 0 3
4 empty-barrel 784 0.9 0 0 1 3
5 radar 3412 0.3 0 1 0 3
6 logistic-chest-buffer 8320 0.3 0 1 0 3
7 big-electric-pole 4722 0.3 0 1 0 3
8 speed-module 10539 4.0 1 4 0 8
9 combat-shotgun 17889 1.1 1 12 0 0
10 fusion-reactor-equipment 2579133 1.1 1 12 0 0
11 stone-furnace 200 0.3 0 1 0 3
12 gate 2768 0.3 0 1 0 3
13 power-switch 1616 0.5 1 4 0 8
14 rocket-control-unit 25290 9.3 1 3 1 8
15 steel-furnace 7205 0.3 1 12 0 0
16 logistic-science-pack 1005 3.2 0 1 0 3
17 refined-concrete 398 8.0 0 1 0 3
18 roboport 107727 0.6 1 12 0 0
19 fast-transport-belt 1216 0.3 0 1 0 3
20 iron-stick 57 0.3 0 1 0 3
21 centrifuge 209178 0.5 1 12 0 0
22 speed-module-2 120845 3.4 1 12 0 0
23 submachine-gun 3876 5.3 0 1 0 3
24 iron-plate 94 1.6 0 0 0 2
25 refined-hazard-concrete 399 0.1 0 1 0 3
26 crude-oil 2 1.0 0 0 0 2
27 rocket-part 273351 0.5 1 8 4 0
28 advanced-circuit 1380 3.2 0 1 0 3
29 logistic-chest-requester 8320 0.3 0 1 0 3
30 spidertron 8638749 1.1 1 12 0 0
31 modular-armor 86062 1.7 1 12 0 0
32 flamethrower-ammo 6090 0.9 1 11 0 0
33 automation-science-pack 501 2.7 0 1 0 3
34 fluid-wagon 22789 0.2 1 12 0 0
35 steam-turbine 18685 0.3 1 12 0 0
36 cluster-grenade 16540 0.9 1 12 0 0
37 fast-loader 14245 0.3 1 12 0 0
38 battery-equipment 13936 2.3 1 5 0 7
39 heavy-armor 50822 0.9 1 12 0 0
40 copper-cable 57 0.3 0 1 0 3
41 artillery-turret 106058 4.6 1 12 0 0
42 piercing-shotgun-shell 3289 4.3 0 1 0 3
43 electric-energy-interface 1627 0.3 0 1 0 3
44 accumulator 5009 5.3 0 1 0 3
45 boiler 674 0.3 0 1 0 3
46 logistic-robot 9938 0.3 0 1 0 3
47 stone-brick 130 1.6 0 0 0 2
48 fast-splitter 8397 0.2 1 12 0 0
49 iron-ore 36 2.0 0 0 0 3
50 poison-capsule 3800 4.3 0 1 0 3
51 utility-science-pack 14615 2.7 1 8 4 0
52 wooden-chest 20 0.3 0 1 0 3
53 effectivity-module-2 120845 3.4 1 12 0 0
54 heat-pipe 9472 0.5 0 1 0 3
55 rocket-silo 3808044 3.4 1 12 0 0
56 artillery-shell 17739 4.0 1 4 0 8
57 heat-exchanger 19429 0.3 1 12 0 0
58 locomotive 59159 0.5 1 12 0 0
59 pump 3375 0.2 1 12 0 0
60 electric-engine-unit 2981 5.3 0 1 0 3
61 fast-inserter 1380 0.3 0 1 0 3
62 pipe-to-ground 812 0.3 0 1 0 3
63 uranium-rounds-magazine 7797 2.7 1 4 0 8
64 filter-inserter 2536 0.3 0 1 0 3
65 long-handed-inserter 926 0.3 0 1 0 3
66 shotgun 3776 5.3 0 1 0 3
67 rocket-fuel 7734 16.0 0 1 0 3
68 assembling-machine-2 6170 0.3 0 1 0 3
69 flamethrower-turret 44030 2.3 1 12 0 0
70 personal-roboport-mk2-equipment 1679084 2.3 1 12 0 0
71 arithmetic-combinator 1724 0.3 0 1 0 3
72 stack-inserter 10148 0.3 0 1 0 3
73 logistic-chest-passive-provider 8320 0.3 0 1 0 3
74 satellite 3571402 0.6 1 12 0 0
75 rocket-launcher 3324 5.3 0 1 0 3
76 slowdown-capsule 2580 4.3 0 1 0 3
77 firearm-magazine 414 0.5 0 1 0 3
78 hazard-concrete 109 0.1 0 1 0 3
79 burner-mining-drill 1398 0.5 1 4 0 8
80 train-stop 4610 0.3 0 1 0 3
81 artillery-targeting-remote 15043 0.3 0 1 0 3
82 cannon-shell 2389 4.3 0 1 0 3
83 rocket 1004 4.3 0 1 0 3
84 oil-refinery 22346 0.9 1 12 0 0
85 beacon 48271 1.7 1 12 0 0
86 belt-immunity-equipment 19036 1.1 1 12 0 0
87 solar-panel-equipment 21105 1.1 1 12 0 0
88 fast-underground-belt 5491 0.2 1 12 0 0
89 steel-chest 6068 0.3 0 1 0 3
90 grenade 1148 4.3 0 1 0 3
91 cargo-wagon 19104 0.5 0 1 0 3
92 coal 36 2.0 0 0 0 3
93 battery 884 4.0 0 0 0 3
94 battery-mk2-equipment 343332 1.1 1 12 0 0
95 personal-roboport-equipment 81576 1.1 1 12 0 0
96 uranium-cannon-shell 8400 3.2 1 4 0 8
97 storage-tank 7025 0.3 1 12 0 0
98 express-loader 38184 1.1 1 12 0 0
99 light-armor 5117 0.3 1 12 0 0
100 low-density-structure 5046 10.7 0 1 0 3
101 offshore-pump 909 0.3 0 1 0 3
102 gun-turret 6064 2.1 1 4 0 8
103 lubricant 28 1.0 0 0 0 3
104 military-science-pack 2483 5.3 0 1 0 3
105 plastic-bar 172 1.0 0 0 0 3
106 productivity-module-3 696644 6.9 1 12 0 0
107 speed-module-3 696644 6.9 1 12 0 0
108 energy-shield-equipment 19036 1.1 1 12 0 0
109 small-lamp 568 0.3 0 1 0 3
110 defender-capsule 8905 2.1 1 4 0 8
111 express-transport-belt 3872 0.3 0 1 0 3
112 assembling-machine-1 2750 0.3 0 1 0 3
113 uranium-ore 337 4.0 0 0 0 3
114 power-armor 563477 2.3 1 12 0 0
115 energy-shield-mk2-equipment 278227 1.1 1 12 0 0
116 pistol 1136 2.7 0 1 0 3
117 steam-engine 3182 0.3 0 1 0 3
118 pumpjack 10697 0.6 1 12 0 0
119 power-armor-mk2 7020996 2.9 1 12 0 0
120 decider-combinator 1724 0.3 0 1 0 3
121 distractor-capsule 46625 1.7 1 12 0 0
122 landfill 740 0.3 0 1 0 3
123 effectivity-module 10539 4.0 1 4 0 8
124 shotgun-shell 494 1.6 0 1 0 3
125 explosives 212 4.0 0 0 0 3
126 copper-plate 94 1.6 0 0 0 2
127 production-science-pack 13686 2.7 1 8 4 0
128 programmable-speaker 2224 0.5 1 4 0 8
129 construction-robot 7746 0.3 0 1 0 3
130 chemical-plant 9093 0.6 1 12 0 0
131 uranium-fuel-cell 49266 1.3 1 8 4 0
132 green-wire 361 0.3 0 1 0 3
133 personal-laser-defense-equipment 464860 1.1 1 12 0 0
134 inserter 605 0.3 0 1 0 3
135 underground-belt 889 0.5 0 1 0 3
136 explosive-rocket 1749 4.3 0 1 0 3
137 night-vision-equipment 19036 1.1 1 12 0 0
138 repair-pack 1002 0.3 0 1 0 3
139 splitter 2570 0.5 0 1 0 3
140 artillery-wagon 165343 0.5 1 12 0 0
141 red-wire 361 0.3 0 1 0 3
142 lab 6469 0.2 1 12 0 0
143 discharge-defense-equipment 483409 1.1 1 12 0 0
144 atomic-bomb 18300848 5.7 1 12 0 0
145 logistic-chest-active-provider 8320 0.3 0 1 0 3
146 productivity-module-2 120845 3.4 1 12 0 0
147 rail-chain-signal 772 0.3 0 1 0 3
148 iron-gear-wheel 207 0.3 0 1 0 3
149 productivity-module 10539 4.0 1 4 0 8
150 burner-inserter 321 0.3 0 1 0 3
151 iron-chest 769 0.3 0 1 0 3
152 substation 14947 0.3 0 1 0 3
153 stone 36 2.0 0 0 0 3
154 sulfuric-acid 26 0.2 1 8 3 0
155 nuclear-fuel 560540 16.0 1 8 2 0
156 express-underground-belt 14800 0.2 1 12 0 0
157 electronic-circuit 284 0.3 0 1 0 3
158 stack-filter-inserter 11588 0.3 0 1 0 3
159 chemical-science-pack 4251 12.8 0 1 0 3
160 destroyer-capsule 203903 1.7 1 12 0 0
161 electric-furnace 18044 0.6 1 12 0 0
162 sulfur 221 1.0 0 0 0 3
163 rail 434 0.3 0 1 0 3
164 exoskeleton-equipment 225253 1.1 1 12 0 0
165 loader 6790 0.5 0 1 0 3
166 steel-plate 756 8.0 0 0 0 2
167 effectivity-module-3 696644 6.9 1 12 0 0
168 piercing-rounds-magazine 2082 0.8 1 4 0 8
169 processing-unit 11611 1.2 1 9 3 0
170 electric-mining-drill 3739 0.2 1 12 0 0
171 express-splitter 27439 0.2 1 12 0 0
172 assembling-machine-3 54518 0.3 0 1 0 3
173 transport-belt 160 0.3 0 1 0 3
174 copper-ore 36 2.0 0 0 0 3
175 explosive-cannon-shell 2602 4.3 0 1 0 3
176 flamethrower 7332 2.7 1 4 0 8
177 stone-wall 668 0.3 0 1 0 3
178 small-electric-pole 67 0.3 0 1 0 3
179 tank 107888 0.6 1 12 0 0
180 nuclear-reactor 1172595 0.9 1 12 0 0
181 concrete 108 5.3 0 1 0 3
182 rail-signal 772 0.3 0 1 0 3
183 constant-combinator 872 0.3 0 1 0 3
184 laser-turret 40566 2.3 1 12 0 0
185 car 19291 0.2 1 12 0 0
186 cliff-explosives 4377 4.3 0 1 0 3
187 medium-electric-pole 1946 0.3 0 1 0 3
188 explosive-uranium-cannon-shell 8613 3.2 1 4 0 8
189 discharge-defense-remote 304 0.3 0 1 0 3
190 land-mine 345 2.7 0 1 0 3
191 engine-unit 1590 5.3 0 1 0 3
192 logistic-chest-storage 8320 0.3 0 1 0 3
193 solar-panel 9988 2.7 1 4 0 8

193
public/modules/mix.csv Normal file
View File

@@ -0,0 +1,193 @@
name;work;time;beason;speed;prod;eff
pipe;858;0.0;5;16;0;0
flying-robot-frame;39987;1.8;5;12;4;0
empty-barrel;5380;0.1;5;12;4;0
radar;18643;0.0;5;16;0;0
logistic-chest-buffer;65811;0.0;5;16;0;0
big-electric-pole;39096;0.0;5;16;0;0
speed-module;54897;1.3;5;16;0;0
combat-shotgun;116808;0.9;5;16;0;0
fusion-reactor-equipment;9301922;0.9;5;16;0;0
stone-furnace;490;0.0;5;16;0;0
gate;19762;0.0;5;16;0;0
power-switch;8693;0.2;5;16;0;0
rocket-control-unit;85810;2.7;5;12;4;0
steel-furnace;47549;0.3;5;16;0;0
logistic-science-pack;7103;0.5;5;13;3;0
refined-concrete;3709;1.3;5;16;0;0
roboport;695748;0.4;5;16;0;0
fast-transport-belt;6794;0.0;5;16;0;0
iron-stick;355;0.0;5;12;4;0
centrifuge;1301180;0.4;5;16;0;0
speed-module-2;469031;2.7;5;16;0;0
submachine-gun;25429;0.9;5;16;0;0
iron-plate;548;0.3;1;10;0;0
refined-hazard-concrete;3725;0.0;5;16;0;0
crude-oil;2;1.0;0;0;0;2
rocket-part;1079288;0.3;5;12;4;0
advanced-circuit;7650;0.5;5;12;4;0
logistic-chest-requester;65811;0.0;5;16;0;0
spidertron;34466987;0.9;5;16;0;0
modular-armor;570868;1.3;5;16;0;0
flamethrower-ammo;36787;0.7;5;15;0;0
automation-science-pack;4362;0.4;5;13;3;0
fluid-wagon;171096;0.1;5;16;0;0
steam-turbine;101467;0.3;5;16;0;0
cluster-grenade;99632;0.7;5;16;0;0
fast-loader;74084;0.3;5;16;0;0
battery-equipment;93318;0.9;5;16;0;0
heavy-armor;391837;0.7;5;16;0;0
copper-cable;355;0.0;5;12;4;0
artillery-turret;675260;3.6;5;16;0;0
piercing-shotgun-shell;29087;0.7;5;16;0;0
electric-energy-interface;8754;0.0;5;16;0;0
accumulator;27999;0.9;5;16;0;0
boiler;4232;0.0;5;16;0;0
logistic-robot;55596;0.0;5;16;0;0
stone-brick;584;0.3;1;10;0;0
fast-splitter;41573;0.2;5;16;0;0
iron-ore;36;2.0;0;0;0;3
poison-capsule;29654;0.7;5;16;0;0
utility-science-pack;55058;1.9;5;12;4;0
wooden-chest;20;0.3;0;1;0;3
effectivity-module-2;469031;2.7;5;16;0;0
heat-pipe;77995;0.1;5;16;0;0
rocket-silo;19132739;2.7;5;16;0;0
artillery-shell;121086;1.3;5;16;0;0
heat-exchanger;131655;0.3;5;16;0;0
locomotive;478777;0.4;5;16;0;0
pump;21857;0.2;5;16;0;0
electric-engine-unit;18837;0.9;5;12;4;0
fast-inserter;7774;0.0;5;16;0;0
pipe-to-ground;5815;0.0;5;16;0;0
uranium-rounds-magazine;41658;0.9;5;16;0;0
filter-inserter;13963;0.0;5;16;0;0
long-handed-inserter;5388;0.0;5;16;0;0
shotgun;25405;0.9;5;16;0;0
rocket-fuel;33191;2.6;5;13;3;0
assembling-machine-2;38663;0.0;5;16;0;0
flamethrower-turret;302329;1.8;5;16;0;0
personal-roboport-mk2-equipment;6730531;1.8;5;16;0;0
arithmetic-combinator;9432;0.0;5;16;0;0
stack-inserter;54293;0.0;5;16;0;0
logistic-chest-passive-provider;65811;0.0;5;16;0;0
satellite;18010852;0.4;5;16;0;0
rocket-launcher;21793;0.9;5;16;0;0
slowdown-capsule;21362;0.7;5;16;0;0
firearm-magazine;2812;0.1;5;16;0;0
hazard-concrete;931;0.0;5;16;0;0
burner-mining-drill;6677;0.2;5;16;0;0
train-stop;33000;0.0;5;16;0;0
artillery-targeting-remote;57472;0.0;5;16;0;0
cannon-shell;20259;0.7;5;16;0;0
rocket;8534;0.7;5;16;0;0
oil-refinery;144709;0.7;5;16;0;0
beacon;261651;1.3;5;16;0;0
belt-immunity-equipment;110864;0.9;5;16;0;0
solar-panel-equipment;118900;0.9;5;16;0;0
fast-underground-belt;28137;0.2;5;16;0;0
steel-chest;53442;0.0;5;16;0;0
grenade;8060;0.7;5;16;0;0
cargo-wagon;155420;0.1;5;16;0;0
coal;36;2.0;0;0;0;3
battery;4141;0.5;5;12;3;0
battery-mk2-equipment;1676362;0.9;5;16;0;0
personal-roboport-equipment;445893;0.9;5;16;0;0
uranium-cannon-shell;49104;1.1;5;16;0;0
storage-tank;46028;0.3;5;16;0;0
express-loader;180242;0.9;5;16;0;0
light-armor;23780;0.3;5;16;0;0
low-density-structure;31839;1.8;5;12;4;0
offshore-pump;5208;0.0;5;16;0;0
gun-turret;32409;0.7;5;16;0;0
lubricant;94;0.1;5;12;3;0
military-science-pack;13386;0.9;5;12;4;0
plastic-bar;504;0.1;5;12;3;0
productivity-module-3;2613198;5.3;5;16;0;0
speed-module-3;2613198;5.3;5;16;0;0
energy-shield-equipment;110864;0.9;5;16;0;0
small-lamp;3392;0.0;5;16;0;0
defender-capsule;54833;0.7;5;16;0;0
express-transport-belt;19992;0.0;5;16;0;0
assembling-machine-1;15156;0.0;5;16;0;0
uranium-ore;1431;0.6;1;11;0;0
power-armor;2195560;1.8;5;16;0;0
energy-shield-mk2-equipment;1466627;0.9;5;16;0;0
pistol;8580;0.4;5;16;0;0
steam-engine;18888;0.0;5;16;0;0
pumpjack;63246;0.4;5;16;0;0
power-armor-mk2;27486823;2.2;5;16;0;0
decider-combinator;9432;0.0;5;16;0;0
distractor-capsule;251579;1.3;5;16;0;0
landfill;1030;0.0;5;16;0;0
effectivity-module;54897;1.3;5;16;0;0
shotgun-shell;4052;0.3;5;16;0;0
explosives;1009;0.6;1;10;1;0
copper-plate;548;0.3;1;10;0;0
production-science-pack;70795;1.9;5;12;4;0
programmable-speaker;11956;0.2;5;16;0;0
construction-robot;43236;0.0;5;16;0;0
chemical-plant;53451;0.4;5;16;0;0
uranium-fuel-cell;246961;0.9;5;12;4;0
green-wire;2134;0.0;5;16;0;0
personal-laser-defense-equipment;2057333;0.9;5;16;0;0
inserter;3429;0.0;5;16;0;0
underground-belt;5499;0.1;5;16;0;0
explosive-rocket;15512;0.7;5;16;0;0
night-vision-equipment;110864;0.9;5;16;0;0
repair-pack;5451;0.0;5;16;0;0
splitter;14626;0.1;5;16;0;0
artillery-wagon;1285403;0.4;5;16;0;0
red-wire;2134;0.0;5;16;0;0
lab;30864;0.2;5;16;0;0
discharge-defense-equipment;2574747;0.9;5;16;0;0
atomic-bomb;91990796;4.4;5;16;0;0
logistic-chest-active-provider;65811;0.0;5;16;0;0
productivity-module-2;469031;2.7;5;16;0;0
rail-chain-signal;4520;0.0;5;16;0;0
iron-gear-wheel;1101;0.0;5;12;4;0
productivity-module;54897;1.3;5;16;0;0
burner-inserter;1959;0.0;5;16;0;0
iron-chest;4694;0.0;5;16;0;0
substation;107714;0.0;5;16;0;0
stone;36;2.0;0;0;0;3
sulfuric-acid;65;0.1;5;12;3;0
nuclear-fuel;2627944;11.2;5;12;2;0
express-underground-belt;74673;0.2;5;16;0;0
electronic-circuit;1470;0.0;5;12;4;0
stack-filter-inserter;61952;0.0;5;16;0;0
chemical-science-pack;25411;2.1;5;12;4;0
destroyer-capsule;1070514;1.3;5;16;0;0
electric-furnace;113604;0.4;5;16;0;0
sulfur;592;0.1;5;12;3;0
rail;3671;0.0;5;16;0;0
exoskeleton-equipment;1089331;0.9;5;16;0;0
loader;38254;0.1;5;16;0;0
steel-plate;6642;1.0;5;12;2;0
effectivity-module-3;2613198;5.3;5;16;0;0
piercing-rounds-magazine;14054;0.3;5;16;0;0
processing-unit;38519;0.9;5;12;4;0
electric-mining-drill;16634;0.2;5;16;0;0
express-splitter;137831;0.2;5;16;0;0
assembling-machine-3;297223;0.0;5;16;0;0
transport-belt;979;0.0;5;16;0;0
copper-ore;36;2.0;0;0;0;3
explosive-cannon-shell;21268;0.7;5;16;0;0
flamethrower;50417;0.9;5;16;0;0
stone-wall;3230;0.0;5;16;0;0
small-electric-pole;510;0.0;5;16;0;0
tank;847953;0.4;5;16;0;0
nuclear-reactor;7882375;0.7;5;16;0;0
concrete;916;0.9;5;16;0;0
rail-signal;4520;0.0;5;16;0;0
constant-combinator;5023;0.0;5;16;0;0
laser-turret;224312;1.8;5;16;0;0
car;150349;0.2;5;16;0;0
cliff-explosives;28488;0.7;5;16;0;0
medium-electric-pole;16108;0.0;5;16;0;0
explosive-uranium-cannon-shell;50113;1.1;5;16;0;0
discharge-defense-remote;1780;0.0;5;16;0;0
land-mine;2940;0.4;5;16;0;0
engine-unit;13118;0.9;5;12;4;0
logistic-chest-storage;65811;0.0;5;16;0;0
solar-panel;64193;0.9;5;16;0;0
1 name work time beason speed prod eff
2 pipe 858 0.0 5 16 0 0
3 flying-robot-frame 39987 1.8 5 12 4 0
4 empty-barrel 5380 0.1 5 12 4 0
5 radar 18643 0.0 5 16 0 0
6 logistic-chest-buffer 65811 0.0 5 16 0 0
7 big-electric-pole 39096 0.0 5 16 0 0
8 speed-module 54897 1.3 5 16 0 0
9 combat-shotgun 116808 0.9 5 16 0 0
10 fusion-reactor-equipment 9301922 0.9 5 16 0 0
11 stone-furnace 490 0.0 5 16 0 0
12 gate 19762 0.0 5 16 0 0
13 power-switch 8693 0.2 5 16 0 0
14 rocket-control-unit 85810 2.7 5 12 4 0
15 steel-furnace 47549 0.3 5 16 0 0
16 logistic-science-pack 7103 0.5 5 13 3 0
17 refined-concrete 3709 1.3 5 16 0 0
18 roboport 695748 0.4 5 16 0 0
19 fast-transport-belt 6794 0.0 5 16 0 0
20 iron-stick 355 0.0 5 12 4 0
21 centrifuge 1301180 0.4 5 16 0 0
22 speed-module-2 469031 2.7 5 16 0 0
23 submachine-gun 25429 0.9 5 16 0 0
24 iron-plate 548 0.3 1 10 0 0
25 refined-hazard-concrete 3725 0.0 5 16 0 0
26 crude-oil 2 1.0 0 0 0 2
27 rocket-part 1079288 0.3 5 12 4 0
28 advanced-circuit 7650 0.5 5 12 4 0
29 logistic-chest-requester 65811 0.0 5 16 0 0
30 spidertron 34466987 0.9 5 16 0 0
31 modular-armor 570868 1.3 5 16 0 0
32 flamethrower-ammo 36787 0.7 5 15 0 0
33 automation-science-pack 4362 0.4 5 13 3 0
34 fluid-wagon 171096 0.1 5 16 0 0
35 steam-turbine 101467 0.3 5 16 0 0
36 cluster-grenade 99632 0.7 5 16 0 0
37 fast-loader 74084 0.3 5 16 0 0
38 battery-equipment 93318 0.9 5 16 0 0
39 heavy-armor 391837 0.7 5 16 0 0
40 copper-cable 355 0.0 5 12 4 0
41 artillery-turret 675260 3.6 5 16 0 0
42 piercing-shotgun-shell 29087 0.7 5 16 0 0
43 electric-energy-interface 8754 0.0 5 16 0 0
44 accumulator 27999 0.9 5 16 0 0
45 boiler 4232 0.0 5 16 0 0
46 logistic-robot 55596 0.0 5 16 0 0
47 stone-brick 584 0.3 1 10 0 0
48 fast-splitter 41573 0.2 5 16 0 0
49 iron-ore 36 2.0 0 0 0 3
50 poison-capsule 29654 0.7 5 16 0 0
51 utility-science-pack 55058 1.9 5 12 4 0
52 wooden-chest 20 0.3 0 1 0 3
53 effectivity-module-2 469031 2.7 5 16 0 0
54 heat-pipe 77995 0.1 5 16 0 0
55 rocket-silo 19132739 2.7 5 16 0 0
56 artillery-shell 121086 1.3 5 16 0 0
57 heat-exchanger 131655 0.3 5 16 0 0
58 locomotive 478777 0.4 5 16 0 0
59 pump 21857 0.2 5 16 0 0
60 electric-engine-unit 18837 0.9 5 12 4 0
61 fast-inserter 7774 0.0 5 16 0 0
62 pipe-to-ground 5815 0.0 5 16 0 0
63 uranium-rounds-magazine 41658 0.9 5 16 0 0
64 filter-inserter 13963 0.0 5 16 0 0
65 long-handed-inserter 5388 0.0 5 16 0 0
66 shotgun 25405 0.9 5 16 0 0
67 rocket-fuel 33191 2.6 5 13 3 0
68 assembling-machine-2 38663 0.0 5 16 0 0
69 flamethrower-turret 302329 1.8 5 16 0 0
70 personal-roboport-mk2-equipment 6730531 1.8 5 16 0 0
71 arithmetic-combinator 9432 0.0 5 16 0 0
72 stack-inserter 54293 0.0 5 16 0 0
73 logistic-chest-passive-provider 65811 0.0 5 16 0 0
74 satellite 18010852 0.4 5 16 0 0
75 rocket-launcher 21793 0.9 5 16 0 0
76 slowdown-capsule 21362 0.7 5 16 0 0
77 firearm-magazine 2812 0.1 5 16 0 0
78 hazard-concrete 931 0.0 5 16 0 0
79 burner-mining-drill 6677 0.2 5 16 0 0
80 train-stop 33000 0.0 5 16 0 0
81 artillery-targeting-remote 57472 0.0 5 16 0 0
82 cannon-shell 20259 0.7 5 16 0 0
83 rocket 8534 0.7 5 16 0 0
84 oil-refinery 144709 0.7 5 16 0 0
85 beacon 261651 1.3 5 16 0 0
86 belt-immunity-equipment 110864 0.9 5 16 0 0
87 solar-panel-equipment 118900 0.9 5 16 0 0
88 fast-underground-belt 28137 0.2 5 16 0 0
89 steel-chest 53442 0.0 5 16 0 0
90 grenade 8060 0.7 5 16 0 0
91 cargo-wagon 155420 0.1 5 16 0 0
92 coal 36 2.0 0 0 0 3
93 battery 4141 0.5 5 12 3 0
94 battery-mk2-equipment 1676362 0.9 5 16 0 0
95 personal-roboport-equipment 445893 0.9 5 16 0 0
96 uranium-cannon-shell 49104 1.1 5 16 0 0
97 storage-tank 46028 0.3 5 16 0 0
98 express-loader 180242 0.9 5 16 0 0
99 light-armor 23780 0.3 5 16 0 0
100 low-density-structure 31839 1.8 5 12 4 0
101 offshore-pump 5208 0.0 5 16 0 0
102 gun-turret 32409 0.7 5 16 0 0
103 lubricant 94 0.1 5 12 3 0
104 military-science-pack 13386 0.9 5 12 4 0
105 plastic-bar 504 0.1 5 12 3 0
106 productivity-module-3 2613198 5.3 5 16 0 0
107 speed-module-3 2613198 5.3 5 16 0 0
108 energy-shield-equipment 110864 0.9 5 16 0 0
109 small-lamp 3392 0.0 5 16 0 0
110 defender-capsule 54833 0.7 5 16 0 0
111 express-transport-belt 19992 0.0 5 16 0 0
112 assembling-machine-1 15156 0.0 5 16 0 0
113 uranium-ore 1431 0.6 1 11 0 0
114 power-armor 2195560 1.8 5 16 0 0
115 energy-shield-mk2-equipment 1466627 0.9 5 16 0 0
116 pistol 8580 0.4 5 16 0 0
117 steam-engine 18888 0.0 5 16 0 0
118 pumpjack 63246 0.4 5 16 0 0
119 power-armor-mk2 27486823 2.2 5 16 0 0
120 decider-combinator 9432 0.0 5 16 0 0
121 distractor-capsule 251579 1.3 5 16 0 0
122 landfill 1030 0.0 5 16 0 0
123 effectivity-module 54897 1.3 5 16 0 0
124 shotgun-shell 4052 0.3 5 16 0 0
125 explosives 1009 0.6 1 10 1 0
126 copper-plate 548 0.3 1 10 0 0
127 production-science-pack 70795 1.9 5 12 4 0
128 programmable-speaker 11956 0.2 5 16 0 0
129 construction-robot 43236 0.0 5 16 0 0
130 chemical-plant 53451 0.4 5 16 0 0
131 uranium-fuel-cell 246961 0.9 5 12 4 0
132 green-wire 2134 0.0 5 16 0 0
133 personal-laser-defense-equipment 2057333 0.9 5 16 0 0
134 inserter 3429 0.0 5 16 0 0
135 underground-belt 5499 0.1 5 16 0 0
136 explosive-rocket 15512 0.7 5 16 0 0
137 night-vision-equipment 110864 0.9 5 16 0 0
138 repair-pack 5451 0.0 5 16 0 0
139 splitter 14626 0.1 5 16 0 0
140 artillery-wagon 1285403 0.4 5 16 0 0
141 red-wire 2134 0.0 5 16 0 0
142 lab 30864 0.2 5 16 0 0
143 discharge-defense-equipment 2574747 0.9 5 16 0 0
144 atomic-bomb 91990796 4.4 5 16 0 0
145 logistic-chest-active-provider 65811 0.0 5 16 0 0
146 productivity-module-2 469031 2.7 5 16 0 0
147 rail-chain-signal 4520 0.0 5 16 0 0
148 iron-gear-wheel 1101 0.0 5 12 4 0
149 productivity-module 54897 1.3 5 16 0 0
150 burner-inserter 1959 0.0 5 16 0 0
151 iron-chest 4694 0.0 5 16 0 0
152 substation 107714 0.0 5 16 0 0
153 stone 36 2.0 0 0 0 3
154 sulfuric-acid 65 0.1 5 12 3 0
155 nuclear-fuel 2627944 11.2 5 12 2 0
156 express-underground-belt 74673 0.2 5 16 0 0
157 electronic-circuit 1470 0.0 5 12 4 0
158 stack-filter-inserter 61952 0.0 5 16 0 0
159 chemical-science-pack 25411 2.1 5 12 4 0
160 destroyer-capsule 1070514 1.3 5 16 0 0
161 electric-furnace 113604 0.4 5 16 0 0
162 sulfur 592 0.1 5 12 3 0
163 rail 3671 0.0 5 16 0 0
164 exoskeleton-equipment 1089331 0.9 5 16 0 0
165 loader 38254 0.1 5 16 0 0
166 steel-plate 6642 1.0 5 12 2 0
167 effectivity-module-3 2613198 5.3 5 16 0 0
168 piercing-rounds-magazine 14054 0.3 5 16 0 0
169 processing-unit 38519 0.9 5 12 4 0
170 electric-mining-drill 16634 0.2 5 16 0 0
171 express-splitter 137831 0.2 5 16 0 0
172 assembling-machine-3 297223 0.0 5 16 0 0
173 transport-belt 979 0.0 5 16 0 0
174 copper-ore 36 2.0 0 0 0 3
175 explosive-cannon-shell 21268 0.7 5 16 0 0
176 flamethrower 50417 0.9 5 16 0 0
177 stone-wall 3230 0.0 5 16 0 0
178 small-electric-pole 510 0.0 5 16 0 0
179 tank 847953 0.4 5 16 0 0
180 nuclear-reactor 7882375 0.7 5 16 0 0
181 concrete 916 0.9 5 16 0 0
182 rail-signal 4520 0.0 5 16 0 0
183 constant-combinator 5023 0.0 5 16 0 0
184 laser-turret 224312 1.8 5 16 0 0
185 car 150349 0.2 5 16 0 0
186 cliff-explosives 28488 0.7 5 16 0 0
187 medium-electric-pole 16108 0.0 5 16 0 0
188 explosive-uranium-cannon-shell 50113 1.1 5 16 0 0
189 discharge-defense-remote 1780 0.0 5 16 0 0
190 land-mine 2940 0.4 5 16 0 0
191 engine-unit 13118 0.9 5 12 4 0
192 logistic-chest-storage 65811 0.0 5 16 0 0
193 solar-panel 64193 0.9 5 16 0 0

View File

@@ -0,0 +1,193 @@
name;work;time;beason;speed;prod;eff
pipe;618;0.4;0;0;0;0
flying-robot-frame;40236;16.0;0;0;0;0
empty-barrel;4080;0.8;0;0;0;0
radar;17985;0.4;0;0;0;0
logistic-chest-buffer;43024;0.4;0;0;0;0
big-electric-pole;23862;0.4;0;0;0;0
speed-module;51472;12.0;0;0;0;0
combat-shotgun;69810;8.0;0;0;0;0
fusion-reactor-equipment;11408210;8.0;0;0;0;0
stone-furnace;1050;0.4;0;0;0;0
gate;14190;0.4;0;0;0;0
power-switch;7575;1.6;0;0;0;0
rocket-control-unit;110691;24.0;0;0;0;0
steel-furnace;30060;2.4;0;0;0;0
logistic-science-pack;5901;4.8;0;0;0;0
refined-concrete;2359;12.0;0;0;0;0
roboport;573690;4.0;0;0;0;0
fast-transport-belt;6432;0.4;0;0;0;0
iron-stick;309;0.4;0;0;0;0
centrifuge;1147933;3.2;0;0;0;0
speed-module-2;505228;24.0;0;0;0;0
submachine-gun;20880;8.0;0;0;0;0
iron-plate;468;1.6;0;0;0;0
refined-hazard-concrete;2367;0.2;0;0;0;0
crude-oil;9;1.0;0;0;0;0
rocket-part;1703340;3.0;0;0;0;0
advanced-circuit;7849;4.8;0;0;0;0
logistic-chest-requester;43024;0.4;0;0;0;0
spidertron;38853633;8.0;0;0;0;0
modular-armor;428980;12.0;0;0;0;0
flamethrower-ammo;21060;6.0;0;0;0;0
automation-science-pack;3054;4.0;0;0;0;0
fluid-wagon;105894;1.2;0;0;0;0
steam-turbine;90960;2.4;0;0;0;0
cluster-grenade;72392;6.4;0;0;0;0
fast-loader;69360;2.4;0;0;0;0
battery-equipment;62086;8.0;0;0;0;0
heavy-armor;238200;6.4;0;0;0;0
copper-cable;309;0.4;0;0;0;0
artillery-turret;477747;32.0;0;0;0;0
piercing-shotgun-shell;17844;6.4;0;0;0;0
electric-energy-interface;8811;0.4;0;0;0;0
accumulator;25222;8.0;0;0;0;0
boiler;3672;0.4;0;0;0;0
logistic-robot;56085;0.4;0;0;0;0
stone-brick;648;1.6;0;0;0;0
fast-splitter;40683;1.6;0;0;0;0
iron-ore;180;2.0;0;0;0;0
poison-capsule;20175;6.4;0;0;0;0
utility-science-pack;76220;16.8;0;0;0;0
wooden-chest;150;0.4;0;0;0;0
effectivity-module-2;505228;24.0;0;0;0;0
heat-pipe;47460;0.8;0;0;0;0
rocket-silo;17997993;24.0;0;0;0;0
artillery-shell;86218;12.0;0;0;0;0
heat-exchanger;91680;2.4;0;0;0;0
locomotive;312090;3.2;0;0;0;0
pump;14100;1.6;0;0;0;0
electric-engine-unit;17307;8.0;0;0;0;0
fast-inserter;7425;0.4;0;0;0;0
pipe-to-ground;4335;0.4;0;0;0;0
uranium-rounds-magazine;32540;8.0;0;0;0;0
filter-inserter;13755;0.4;0;0;0;0
long-handed-inserter;4953;0.4;0;0;0;0
shotgun;20130;8.0;0;0;0;0
rocket-fuel;32340;24.0;0;0;0;0
assembling-machine-2;32202;0.4;0;0;0;0
flamethrower-turret;187380;16.0;0;0;0;0
personal-roboport-mk2-equipment;7533000;16.0;0;0;0;0
arithmetic-combinator;9420;0.4;0;0;0;0
stack-inserter;54889;0.4;0;0;0;0
logistic-chest-passive-provider;43024;0.4;0;0;0;0
satellite;16716855;4.0;0;0;0;0
rocket-launcher;18495;8.0;0;0;0;0
slowdown-capsule;13950;6.4;0;0;0;0
firearm-magazine;2172;0.8;0;0;0;0
hazard-concrete;650;0.2;0;0;0;0
burner-mining-drill;6312;1.6;0;0;0;0
train-stop;23877;0.4;0;0;0;0
artillery-targeting-remote;68354;0.4;0;0;0;0
cannon-shell;12746;6.4;0;0;0;0
rocket;5944;6.4;0;0;0;0
oil-refinery;98070;6.4;0;0;0;0
beacon;233277;12.0;0;0;0;0
belt-immunity-equipment;80047;8.0;0;0;0;0
solar-panel-equipment;85014;8.0;0;0;0;0
fast-underground-belt;26640;1.6;0;0;0;0
steel-chest;30390;0.4;0;0;0;0
grenade;6540;6.4;0;0;0;0
cargo-wagon;96120;0.8;0;0;0;0
coal;180;2.0;0;0;0;0
battery;4257;4.0;0;0;0;0
battery-mk2-equipment;1513286;8.0;0;0;0;0
personal-roboport-equipment;392107;8.0;0;0;0;0
uranium-cannon-shell;36694;9.6;0;0;0;0
storage-tank;29160;2.4;0;0;0;0
express-loader;173670;8.0;0;0;0;0
light-armor;19620;2.4;0;0;0;0
low-density-structure;27228;16.0;0;0;0;0
offshore-pump;4944;0.4;0;0;0;0
gun-turret;27300;6.4;0;0;0;0
lubricant;141;1.0;0;0;0;0
military-science-pack;12756;8.0;0;0;0;0
plastic-bar;862;1.0;0;0;0;0
productivity-module-3;2834482;48.0;0;0;0;0
speed-module-3;2834482;48.0;0;0;0;0
energy-shield-equipment;80047;8.0;0;0;0;0
small-lamp;3090;0.4;0;0;0;0
defender-capsule;37869;6.4;0;0;0;0
express-transport-belt;20262;0.4;0;0;0;0
assembling-machine-1;14427;0.4;0;0;0;0
uranium-ore;1601;4.0;0;0;0;0
power-armor;2512099;16.0;0;0;0;0
energy-shield-mk2-equipment;1190703;8.0;0;0;0;0
pistol;6180;4.0;0;0;0;0
steam-engine;16608;0.4;0;0;0;0
pumpjack;45165;4.0;0;0;0;0
power-armor-mk2;29791176;20.0;0;0;0;0
decider-combinator;9420;0.4;0;0;0;0
distractor-capsule;179524;12.0;0;0;0;0
landfill;3750;0.4;0;0;0;0
effectivity-module;51472;12.0;0;0;0;0
shotgun-shell;2772;2.4;0;0;0;0
explosives;1062;4.0;0;0;0;0
copper-plate;468;1.6;0;0;0;0
production-science-pack;69694;16.8;0;0;0;0
programmable-speaker;10965;1.6;0;0;0;0
construction-robot;43476;0.4;0;0;0;0
chemical-plant;36645;4.0;0;0;0;0
uranium-fuel-cell;328087;8.0;0;0;0;0
green-wire;2004;0.4;0;0;0;0
personal-laser-defense-equipment;1961453;8.0;0;0;0;0
inserter;3249;0.4;0;0;0;0
underground-belt;4620;0.8;0;0;0;0
explosive-rocket;10468;6.4;0;0;0;0
night-vision-equipment;80047;8.0;0;0;0;0
repair-pack;5412;0.4;0;0;0;0
splitter;13773;0.8;0;0;0;0
artillery-wagon;912663;3.2;0;0;0;0
red-wire;2004;0.4;0;0;0;0
lab;30318;1.6;0;0;0;0
discharge-defense-equipment;1965559;8.0;0;0;0;0
atomic-bomb;87729674;40.0;0;0;0;0
logistic-chest-active-provider;43024;0.4;0;0;0;0
productivity-module-2;505228;24.0;0;0;0;0
rail-chain-signal;4035;0.4;0;0;0;0
iron-gear-wheel;1086;0.4;0;0;0;0
productivity-module;51472;12.0;0;0;0;0
burner-inserter;1704;0.4;0;0;0;0
iron-chest;3894;0.4;0;0;0;0
substation;79537;0.4;0;0;0;0
stone;180;2.0;0;0;0;0
sulfuric-acid;124;1.0;0;0;0;0
nuclear-fuel;2950411;90.0;0;0;0;0
express-underground-belt;73200;1.6;0;0;0;0
electronic-circuit;1545;0.4;0;0;0;0
stack-filter-inserter;62764;0.4;0;0;0;0
chemical-science-pack;25029;19.2;0;0;0;0
destroyer-capsule;774068;12.0;0;0;0;0
electric-furnace;85027;4.0;0;0;0;0
sulfur;1105;1.0;0;0;0;0
rail;2210;0.4;0;0;0;0
exoskeleton-equipment;1100000;8.0;0;0;0;0
loader;36300;0.8;0;0;0;0
steel-plate;3780;8.0;0;0;0;0
effectivity-module-3;2834482;48.0;0;0;0;0
piercing-rounds-magazine;9192;2.4;0;0;0;0
processing-unit;50219;8.0;0;0;0;0
electric-mining-drill;15345;1.6;0;0;0;0
express-splitter;141916;1.6;0;0;0;0
assembling-machine-3;270441;0.4;0;0;0;0
transport-belt;852;0.4;0;0;0;0
copper-ore;180;2.0;0;0;0;0
explosive-cannon-shell;13808;6.4;0;0;0;0
flamethrower;32760;8.0;0;0;0;0
stone-wall;3390;0.4;0;0;0;0
small-electric-pole;384;0.4;0;0;0;0
tank;576547;4.0;0;0;0;0
nuclear-reactor;6372067;6.4;0;0;0;0
concrete;642;8.0;0;0;0;0
rail-signal;4035;0.4;0;0;0;0
constant-combinator;4785;0.4;0;0;0;0
laser-turret;163586;16.0;0;0;0;0
car;101676;1.6;0;0;0;0
cliff-explosives;23645;6.4;0;0;0;0
medium-electric-pole;9882;0.4;0;0;0;0
explosive-uranium-cannon-shell;37757;9.6;0;0;0;0
discharge-defense-remote;1695;0.4;0;0;0;0
land-mine;1851;4.0;0;0;0;0
engine-unit;9102;8.0;0;0;0;0
logistic-chest-storage;43024;0.4;0;0;0;0
solar-panel;47415;8.0;0;0;0;0
1 name work time beason speed prod eff
2 pipe 618 0.4 0 0 0 0
3 flying-robot-frame 40236 16.0 0 0 0 0
4 empty-barrel 4080 0.8 0 0 0 0
5 radar 17985 0.4 0 0 0 0
6 logistic-chest-buffer 43024 0.4 0 0 0 0
7 big-electric-pole 23862 0.4 0 0 0 0
8 speed-module 51472 12.0 0 0 0 0
9 combat-shotgun 69810 8.0 0 0 0 0
10 fusion-reactor-equipment 11408210 8.0 0 0 0 0
11 stone-furnace 1050 0.4 0 0 0 0
12 gate 14190 0.4 0 0 0 0
13 power-switch 7575 1.6 0 0 0 0
14 rocket-control-unit 110691 24.0 0 0 0 0
15 steel-furnace 30060 2.4 0 0 0 0
16 logistic-science-pack 5901 4.8 0 0 0 0
17 refined-concrete 2359 12.0 0 0 0 0
18 roboport 573690 4.0 0 0 0 0
19 fast-transport-belt 6432 0.4 0 0 0 0
20 iron-stick 309 0.4 0 0 0 0
21 centrifuge 1147933 3.2 0 0 0 0
22 speed-module-2 505228 24.0 0 0 0 0
23 submachine-gun 20880 8.0 0 0 0 0
24 iron-plate 468 1.6 0 0 0 0
25 refined-hazard-concrete 2367 0.2 0 0 0 0
26 crude-oil 9 1.0 0 0 0 0
27 rocket-part 1703340 3.0 0 0 0 0
28 advanced-circuit 7849 4.8 0 0 0 0
29 logistic-chest-requester 43024 0.4 0 0 0 0
30 spidertron 38853633 8.0 0 0 0 0
31 modular-armor 428980 12.0 0 0 0 0
32 flamethrower-ammo 21060 6.0 0 0 0 0
33 automation-science-pack 3054 4.0 0 0 0 0
34 fluid-wagon 105894 1.2 0 0 0 0
35 steam-turbine 90960 2.4 0 0 0 0
36 cluster-grenade 72392 6.4 0 0 0 0
37 fast-loader 69360 2.4 0 0 0 0
38 battery-equipment 62086 8.0 0 0 0 0
39 heavy-armor 238200 6.4 0 0 0 0
40 copper-cable 309 0.4 0 0 0 0
41 artillery-turret 477747 32.0 0 0 0 0
42 piercing-shotgun-shell 17844 6.4 0 0 0 0
43 electric-energy-interface 8811 0.4 0 0 0 0
44 accumulator 25222 8.0 0 0 0 0
45 boiler 3672 0.4 0 0 0 0
46 logistic-robot 56085 0.4 0 0 0 0
47 stone-brick 648 1.6 0 0 0 0
48 fast-splitter 40683 1.6 0 0 0 0
49 iron-ore 180 2.0 0 0 0 0
50 poison-capsule 20175 6.4 0 0 0 0
51 utility-science-pack 76220 16.8 0 0 0 0
52 wooden-chest 150 0.4 0 0 0 0
53 effectivity-module-2 505228 24.0 0 0 0 0
54 heat-pipe 47460 0.8 0 0 0 0
55 rocket-silo 17997993 24.0 0 0 0 0
56 artillery-shell 86218 12.0 0 0 0 0
57 heat-exchanger 91680 2.4 0 0 0 0
58 locomotive 312090 3.2 0 0 0 0
59 pump 14100 1.6 0 0 0 0
60 electric-engine-unit 17307 8.0 0 0 0 0
61 fast-inserter 7425 0.4 0 0 0 0
62 pipe-to-ground 4335 0.4 0 0 0 0
63 uranium-rounds-magazine 32540 8.0 0 0 0 0
64 filter-inserter 13755 0.4 0 0 0 0
65 long-handed-inserter 4953 0.4 0 0 0 0
66 shotgun 20130 8.0 0 0 0 0
67 rocket-fuel 32340 24.0 0 0 0 0
68 assembling-machine-2 32202 0.4 0 0 0 0
69 flamethrower-turret 187380 16.0 0 0 0 0
70 personal-roboport-mk2-equipment 7533000 16.0 0 0 0 0
71 arithmetic-combinator 9420 0.4 0 0 0 0
72 stack-inserter 54889 0.4 0 0 0 0
73 logistic-chest-passive-provider 43024 0.4 0 0 0 0
74 satellite 16716855 4.0 0 0 0 0
75 rocket-launcher 18495 8.0 0 0 0 0
76 slowdown-capsule 13950 6.4 0 0 0 0
77 firearm-magazine 2172 0.8 0 0 0 0
78 hazard-concrete 650 0.2 0 0 0 0
79 burner-mining-drill 6312 1.6 0 0 0 0
80 train-stop 23877 0.4 0 0 0 0
81 artillery-targeting-remote 68354 0.4 0 0 0 0
82 cannon-shell 12746 6.4 0 0 0 0
83 rocket 5944 6.4 0 0 0 0
84 oil-refinery 98070 6.4 0 0 0 0
85 beacon 233277 12.0 0 0 0 0
86 belt-immunity-equipment 80047 8.0 0 0 0 0
87 solar-panel-equipment 85014 8.0 0 0 0 0
88 fast-underground-belt 26640 1.6 0 0 0 0
89 steel-chest 30390 0.4 0 0 0 0
90 grenade 6540 6.4 0 0 0 0
91 cargo-wagon 96120 0.8 0 0 0 0
92 coal 180 2.0 0 0 0 0
93 battery 4257 4.0 0 0 0 0
94 battery-mk2-equipment 1513286 8.0 0 0 0 0
95 personal-roboport-equipment 392107 8.0 0 0 0 0
96 uranium-cannon-shell 36694 9.6 0 0 0 0
97 storage-tank 29160 2.4 0 0 0 0
98 express-loader 173670 8.0 0 0 0 0
99 light-armor 19620 2.4 0 0 0 0
100 low-density-structure 27228 16.0 0 0 0 0
101 offshore-pump 4944 0.4 0 0 0 0
102 gun-turret 27300 6.4 0 0 0 0
103 lubricant 141 1.0 0 0 0 0
104 military-science-pack 12756 8.0 0 0 0 0
105 plastic-bar 862 1.0 0 0 0 0
106 productivity-module-3 2834482 48.0 0 0 0 0
107 speed-module-3 2834482 48.0 0 0 0 0
108 energy-shield-equipment 80047 8.0 0 0 0 0
109 small-lamp 3090 0.4 0 0 0 0
110 defender-capsule 37869 6.4 0 0 0 0
111 express-transport-belt 20262 0.4 0 0 0 0
112 assembling-machine-1 14427 0.4 0 0 0 0
113 uranium-ore 1601 4.0 0 0 0 0
114 power-armor 2512099 16.0 0 0 0 0
115 energy-shield-mk2-equipment 1190703 8.0 0 0 0 0
116 pistol 6180 4.0 0 0 0 0
117 steam-engine 16608 0.4 0 0 0 0
118 pumpjack 45165 4.0 0 0 0 0
119 power-armor-mk2 29791176 20.0 0 0 0 0
120 decider-combinator 9420 0.4 0 0 0 0
121 distractor-capsule 179524 12.0 0 0 0 0
122 landfill 3750 0.4 0 0 0 0
123 effectivity-module 51472 12.0 0 0 0 0
124 shotgun-shell 2772 2.4 0 0 0 0
125 explosives 1062 4.0 0 0 0 0
126 copper-plate 468 1.6 0 0 0 0
127 production-science-pack 69694 16.8 0 0 0 0
128 programmable-speaker 10965 1.6 0 0 0 0
129 construction-robot 43476 0.4 0 0 0 0
130 chemical-plant 36645 4.0 0 0 0 0
131 uranium-fuel-cell 328087 8.0 0 0 0 0
132 green-wire 2004 0.4 0 0 0 0
133 personal-laser-defense-equipment 1961453 8.0 0 0 0 0
134 inserter 3249 0.4 0 0 0 0
135 underground-belt 4620 0.8 0 0 0 0
136 explosive-rocket 10468 6.4 0 0 0 0
137 night-vision-equipment 80047 8.0 0 0 0 0
138 repair-pack 5412 0.4 0 0 0 0
139 splitter 13773 0.8 0 0 0 0
140 artillery-wagon 912663 3.2 0 0 0 0
141 red-wire 2004 0.4 0 0 0 0
142 lab 30318 1.6 0 0 0 0
143 discharge-defense-equipment 1965559 8.0 0 0 0 0
144 atomic-bomb 87729674 40.0 0 0 0 0
145 logistic-chest-active-provider 43024 0.4 0 0 0 0
146 productivity-module-2 505228 24.0 0 0 0 0
147 rail-chain-signal 4035 0.4 0 0 0 0
148 iron-gear-wheel 1086 0.4 0 0 0 0
149 productivity-module 51472 12.0 0 0 0 0
150 burner-inserter 1704 0.4 0 0 0 0
151 iron-chest 3894 0.4 0 0 0 0
152 substation 79537 0.4 0 0 0 0
153 stone 180 2.0 0 0 0 0
154 sulfuric-acid 124 1.0 0 0 0 0
155 nuclear-fuel 2950411 90.0 0 0 0 0
156 express-underground-belt 73200 1.6 0 0 0 0
157 electronic-circuit 1545 0.4 0 0 0 0
158 stack-filter-inserter 62764 0.4 0 0 0 0
159 chemical-science-pack 25029 19.2 0 0 0 0
160 destroyer-capsule 774068 12.0 0 0 0 0
161 electric-furnace 85027 4.0 0 0 0 0
162 sulfur 1105 1.0 0 0 0 0
163 rail 2210 0.4 0 0 0 0
164 exoskeleton-equipment 1100000 8.0 0 0 0 0
165 loader 36300 0.8 0 0 0 0
166 steel-plate 3780 8.0 0 0 0 0
167 effectivity-module-3 2834482 48.0 0 0 0 0
168 piercing-rounds-magazine 9192 2.4 0 0 0 0
169 processing-unit 50219 8.0 0 0 0 0
170 electric-mining-drill 15345 1.6 0 0 0 0
171 express-splitter 141916 1.6 0 0 0 0
172 assembling-machine-3 270441 0.4 0 0 0 0
173 transport-belt 852 0.4 0 0 0 0
174 copper-ore 180 2.0 0 0 0 0
175 explosive-cannon-shell 13808 6.4 0 0 0 0
176 flamethrower 32760 8.0 0 0 0 0
177 stone-wall 3390 0.4 0 0 0 0
178 small-electric-pole 384 0.4 0 0 0 0
179 tank 576547 4.0 0 0 0 0
180 nuclear-reactor 6372067 6.4 0 0 0 0
181 concrete 642 8.0 0 0 0 0
182 rail-signal 4035 0.4 0 0 0 0
183 constant-combinator 4785 0.4 0 0 0 0
184 laser-turret 163586 16.0 0 0 0 0
185 car 101676 1.6 0 0 0 0
186 cliff-explosives 23645 6.4 0 0 0 0
187 medium-electric-pole 9882 0.4 0 0 0 0
188 explosive-uranium-cannon-shell 37757 9.6 0 0 0 0
189 discharge-defense-remote 1695 0.4 0 0 0 0
190 land-mine 1851 4.0 0 0 0 0
191 engine-unit 9102 8.0 0 0 0 0
192 logistic-chest-storage 43024 0.4 0 0 0 0
193 solar-panel 47415 8.0 0 0 0 0

View File

@@ -0,0 +1,193 @@
name;work;time;beason;speed;prod;eff
pipe;114;0.3;0;1;0;3
flying-robot-frame;7158;10.7;0;1;0;3
empty-barrel;784;0.9;0;0;1;3
radar;3412;0.3;0;1;0;3
logistic-chest-buffer;8320;0.3;0;1;0;3
big-electric-pole;4722;0.3;0;1;0;3
speed-module;10539;4.0;1;4;0;8
combat-shotgun;17889;1.1;1;12;0;0
fusion-reactor-equipment;2755376;0.9;5;16;0;0
stone-furnace;200;0.3;0;1;0;3
gate;2768;0.3;0;1;0;3
power-switch;1616;0.5;1;4;0;8
rocket-control-unit;32763;3.7;1;9;3;0
steel-furnace;7205;0.3;1;12;0;0
logistic-science-pack;1005;3.2;0;1;0;3
refined-concrete;398;8.0;0;1;0;3
roboport;108538;0.4;5;16;0;0
fast-transport-belt;1216;0.3;0;1;0;3
iron-stick;57;0.3;0;1;0;3
centrifuge;209827;0.4;5;16;0;0
speed-module-2;130079;2.7;5;16;0;0
submachine-gun;3876;5.3;0;1;0;3
iron-plate;94;1.6;0;0;0;2
refined-hazard-concrete;399;0.1;0;1;0;3
crude-oil;2;1.0;0;0;0;2
rocket-part;327164;0.3;5;12;4;0
advanced-circuit;1380;3.2;0;1;0;3
logistic-chest-requester;8320;0.3;0;1;0;3
spidertron;9274393;0.9;5;16;0;0
modular-armor;88496;1.3;5;16;0;0
flamethrower-ammo;6090;0.9;1;11;0;0
automation-science-pack;501;2.7;0;1;0;3
fluid-wagon;23032;0.1;5;16;0;0
steam-turbine;19172;0.3;5;16;0;0
cluster-grenade;16540;0.9;1;12;0;0
fast-loader;14732;0.3;5;16;0;0
battery-equipment;13936;2.3;1;5;0;7
heavy-armor;52120;0.7;5;16;0;0
copper-cable;57;0.3;0;1;0;3
artillery-turret;112549;3.6;5;16;0;0
piercing-shotgun-shell;3289;4.3;0;1;0;3
electric-energy-interface;1627;0.3;0;1;0;3
accumulator;5009;5.3;0;1;0;3
boiler;674;0.3;0;1;0;3
logistic-robot;9938;0.3;0;1;0;3
stone-brick;130;1.6;0;0;0;2
fast-splitter;8722;0.2;5;16;0;0
iron-ore;36;2.0;0;0;0;3
poison-capsule;3800;4.3;0;1;0;3
utility-science-pack;15706;1.9;5;12;4;0
wooden-chest;20;0.3;0;1;0;3
effectivity-module-2;130079;2.7;5;16;0;0
heat-pipe;9472;0.5;0;1;0;3
rocket-silo;3987533;2.7;5;16;0;0
artillery-shell;17739;4.0;1;4;0;8
heat-exchanger;19916;0.3;5;16;0;0
locomotive;59808;0.4;5;16;0;0
pump;3375;0.2;1;12;0;0
electric-engine-unit;2981;5.3;0;1;0;3
fast-inserter;1380;0.3;0;1;0;3
pipe-to-ground;812;0.3;0;1;0;3
uranium-rounds-magazine;7797;2.7;1;4;0;8
filter-inserter;2536;0.3;0;1;0;3
long-handed-inserter;926;0.3;0;1;0;3
shotgun;3776;5.3;0;1;0;3
rocket-fuel;7734;16.0;0;1;0;3
assembling-machine-2;6170;0.3;0;1;0;3
flamethrower-turret;44030;2.3;1;12;0;0
personal-roboport-mk2-equipment;1777754;1.8;5;16;0;0
arithmetic-combinator;1724;0.3;0;1;0;3
stack-inserter;10148;0.3;0;1;0;3
logistic-chest-passive-provider;8320;0.3;0;1;0;3
satellite;3659524;0.4;5;16;0;0
rocket-launcher;3324;5.3;0;1;0;3
slowdown-capsule;2580;4.3;0;1;0;3
firearm-magazine;414;0.5;0;1;0;3
hazard-concrete;109;0.1;0;1;0;3
burner-mining-drill;1398;0.5;1;4;0;8
train-stop;4610;0.3;0;1;0;3
artillery-targeting-remote;15916;0.3;0;1;0;3
cannon-shell;2389;4.3;0;1;0;3
rocket;1004;4.3;0;1;0;3
oil-refinery;23644;0.7;5;16;0;0
beacon;50705;1.3;5;16;0;0
belt-immunity-equipment;19036;1.1;1;12;0;0
solar-panel-equipment;21105;1.1;1;12;0;0
fast-underground-belt;5653;0.2;5;16;0;0
steel-chest;6068;0.3;0;1;0;3
grenade;1148;4.3;0;1;0;3
cargo-wagon;19104;0.5;0;1;0;3
coal;36;2.0;0;0;0;3
battery;884;4.0;0;0;0;3
battery-mk2-equipment;358052;0.9;5;16;0;0
personal-roboport-equipment;83199;0.9;5;16;0;0
uranium-cannon-shell;8400;3.2;1;4;0;8
storage-tank;7025;0.3;1;12;0;0
express-loader;40294;0.9;5;16;0;0
light-armor;5117;0.3;1;12;0;0
low-density-structure;5046;10.7;0;1;0;3
offshore-pump;909;0.3;0;1;0;3
gun-turret;6064;2.1;1;4;0;8
lubricant;28;1.0;0;0;0;3
military-science-pack;2483;5.3;0;1;0;3
plastic-bar;172;1.0;0;0;0;3
productivity-module-3;756917;5.3;5;16;0;0
speed-module-3;756917;5.3;5;16;0;0
energy-shield-equipment;19036;1.1;1;12;0;0
small-lamp;568;0.3;0;1;0;3
defender-capsule;8905;2.1;1;4;0;8
express-transport-belt;3872;0.3;0;1;0;3
assembling-machine-1;2750;0.3;0;1;0;3
uranium-ore;337;4.0;0;0;0;3
power-armor;601647;1.8;5;16;0;0
energy-shield-mk2-equipment;284215;0.9;5;16;0;0
pistol;1136;2.7;0;1;0;3
steam-engine;3182;0.3;0;1;0;3
pumpjack;10697;0.6;1;12;0;0
power-armor-mk2;7539143;2.2;5;16;0;0
decider-combinator;1724;0.3;0;1;0;3
distractor-capsule;49059;1.3;5;16;0;0
landfill;740;0.3;0;1;0;3
effectivity-module;10539;4.0;1;4;0;8
shotgun-shell;494;1.6;0;1;0;3
explosives;212;4.0;0;0;0;3
copper-plate;94;1.6;0;0;0;2
production-science-pack;14555;1.9;5;12;4;0
programmable-speaker;2224;0.5;1;4;0;8
construction-robot;7746;0.3;0;1;0;3
chemical-plant;9093;0.6;1;12;0;0
uranium-fuel-cell;49362;0.9;5;12;4;0
green-wire;361;0.3;0;1;0;3
personal-laser-defense-equipment;483945;0.9;5;16;0;0
inserter;605;0.3;0;1;0;3
underground-belt;889;0.5;0;1;0;3
explosive-rocket;1749;4.3;0;1;0;3
night-vision-equipment;19036;1.1;1;12;0;0
repair-pack;1002;0.3;0;1;0;3
splitter;2570;0.5;0;1;0;3
artillery-wagon;165993;0.4;5;16;0;0
red-wire;361;0.3;0;1;0;3
lab;6794;0.2;5;16;0;0
discharge-defense-equipment;489398;0.9;5;16;0;0
atomic-bomb;18383696;4.4;5;16;0;0
logistic-chest-active-provider;8320;0.3;0;1;0;3
productivity-module-2;130079;2.7;5;16;0;0
rail-chain-signal;772;0.3;0;1;0;3
iron-gear-wheel;207;0.3;0;1;0;3
productivity-module;10539;4.0;1;4;0;8
burner-inserter;321;0.3;0;1;0;3
iron-chest;769;0.3;0;1;0;3
substation;14947;0.3;0;1;0;3
stone;36;2.0;0;0;0;3
sulfuric-acid;26;0.2;1;8;3;0
nuclear-fuel;577045;11.2;5;12;2;0
express-underground-belt;15125;0.2;5;16;0;0
electronic-circuit;284;0.3;0;1;0;3
stack-filter-inserter;11588;0.3;0;1;0;3
chemical-science-pack;4251;12.8;0;1;0;3
destroyer-capsule;216075;1.3;5;16;0;0
electric-furnace;18855;0.4;5;16;0;0
sulfur;221;1.0;0;0;0;3
rail;434;0.3;0;1;0;3
exoskeleton-equipment;235607;0.9;5;16;0;0
loader;6790;0.5;0;1;0;3
steel-plate;756;8.0;0;0;0;2
effectivity-module-3;756917;5.3;5;16;0;0
piercing-rounds-magazine;2082;0.8;1;4;0;8
processing-unit;12484;0.9;5;12;4;0
electric-mining-drill;3739;0.2;1;12;0;0
express-splitter;28088;0.2;5;16;0;0
assembling-machine-3;54518;0.3;0;1;0;3
transport-belt;160;0.3;0;1;0;3
copper-ore;36;2.0;0;0;0;3
explosive-cannon-shell;2602;4.3;0;1;0;3
flamethrower;7332;2.7;1;4;0;8
stone-wall;668;0.3;0;1;0;3
small-electric-pole;67;0.3;0;1;0;3
tank;108699;0.4;5;16;0;0
nuclear-reactor;1173893;0.7;5;16;0;0
concrete;108;5.3;0;1;0;3
rail-signal;772;0.3;0;1;0;3
constant-combinator;872;0.3;0;1;0;3
laser-turret;40566;2.3;1;12;0;0
car;19615;0.2;5;16;0;0
cliff-explosives;4377;4.3;0;1;0;3
medium-electric-pole;1946;0.3;0;1;0;3
explosive-uranium-cannon-shell;8613;3.2;1;4;0;8
discharge-defense-remote;304;0.3;0;1;0;3
land-mine;345;2.7;0;1;0;3
engine-unit;1590;5.3;0;1;0;3
logistic-chest-storage;8320;0.3;0;1;0;3
solar-panel;9988;2.7;1;4;0;8
1 name work time beason speed prod eff
2 pipe 114 0.3 0 1 0 3
3 flying-robot-frame 7158 10.7 0 1 0 3
4 empty-barrel 784 0.9 0 0 1 3
5 radar 3412 0.3 0 1 0 3
6 logistic-chest-buffer 8320 0.3 0 1 0 3
7 big-electric-pole 4722 0.3 0 1 0 3
8 speed-module 10539 4.0 1 4 0 8
9 combat-shotgun 17889 1.1 1 12 0 0
10 fusion-reactor-equipment 2755376 0.9 5 16 0 0
11 stone-furnace 200 0.3 0 1 0 3
12 gate 2768 0.3 0 1 0 3
13 power-switch 1616 0.5 1 4 0 8
14 rocket-control-unit 32763 3.7 1 9 3 0
15 steel-furnace 7205 0.3 1 12 0 0
16 logistic-science-pack 1005 3.2 0 1 0 3
17 refined-concrete 398 8.0 0 1 0 3
18 roboport 108538 0.4 5 16 0 0
19 fast-transport-belt 1216 0.3 0 1 0 3
20 iron-stick 57 0.3 0 1 0 3
21 centrifuge 209827 0.4 5 16 0 0
22 speed-module-2 130079 2.7 5 16 0 0
23 submachine-gun 3876 5.3 0 1 0 3
24 iron-plate 94 1.6 0 0 0 2
25 refined-hazard-concrete 399 0.1 0 1 0 3
26 crude-oil 2 1.0 0 0 0 2
27 rocket-part 327164 0.3 5 12 4 0
28 advanced-circuit 1380 3.2 0 1 0 3
29 logistic-chest-requester 8320 0.3 0 1 0 3
30 spidertron 9274393 0.9 5 16 0 0
31 modular-armor 88496 1.3 5 16 0 0
32 flamethrower-ammo 6090 0.9 1 11 0 0
33 automation-science-pack 501 2.7 0 1 0 3
34 fluid-wagon 23032 0.1 5 16 0 0
35 steam-turbine 19172 0.3 5 16 0 0
36 cluster-grenade 16540 0.9 1 12 0 0
37 fast-loader 14732 0.3 5 16 0 0
38 battery-equipment 13936 2.3 1 5 0 7
39 heavy-armor 52120 0.7 5 16 0 0
40 copper-cable 57 0.3 0 1 0 3
41 artillery-turret 112549 3.6 5 16 0 0
42 piercing-shotgun-shell 3289 4.3 0 1 0 3
43 electric-energy-interface 1627 0.3 0 1 0 3
44 accumulator 5009 5.3 0 1 0 3
45 boiler 674 0.3 0 1 0 3
46 logistic-robot 9938 0.3 0 1 0 3
47 stone-brick 130 1.6 0 0 0 2
48 fast-splitter 8722 0.2 5 16 0 0
49 iron-ore 36 2.0 0 0 0 3
50 poison-capsule 3800 4.3 0 1 0 3
51 utility-science-pack 15706 1.9 5 12 4 0
52 wooden-chest 20 0.3 0 1 0 3
53 effectivity-module-2 130079 2.7 5 16 0 0
54 heat-pipe 9472 0.5 0 1 0 3
55 rocket-silo 3987533 2.7 5 16 0 0
56 artillery-shell 17739 4.0 1 4 0 8
57 heat-exchanger 19916 0.3 5 16 0 0
58 locomotive 59808 0.4 5 16 0 0
59 pump 3375 0.2 1 12 0 0
60 electric-engine-unit 2981 5.3 0 1 0 3
61 fast-inserter 1380 0.3 0 1 0 3
62 pipe-to-ground 812 0.3 0 1 0 3
63 uranium-rounds-magazine 7797 2.7 1 4 0 8
64 filter-inserter 2536 0.3 0 1 0 3
65 long-handed-inserter 926 0.3 0 1 0 3
66 shotgun 3776 5.3 0 1 0 3
67 rocket-fuel 7734 16.0 0 1 0 3
68 assembling-machine-2 6170 0.3 0 1 0 3
69 flamethrower-turret 44030 2.3 1 12 0 0
70 personal-roboport-mk2-equipment 1777754 1.8 5 16 0 0
71 arithmetic-combinator 1724 0.3 0 1 0 3
72 stack-inserter 10148 0.3 0 1 0 3
73 logistic-chest-passive-provider 8320 0.3 0 1 0 3
74 satellite 3659524 0.4 5 16 0 0
75 rocket-launcher 3324 5.3 0 1 0 3
76 slowdown-capsule 2580 4.3 0 1 0 3
77 firearm-magazine 414 0.5 0 1 0 3
78 hazard-concrete 109 0.1 0 1 0 3
79 burner-mining-drill 1398 0.5 1 4 0 8
80 train-stop 4610 0.3 0 1 0 3
81 artillery-targeting-remote 15916 0.3 0 1 0 3
82 cannon-shell 2389 4.3 0 1 0 3
83 rocket 1004 4.3 0 1 0 3
84 oil-refinery 23644 0.7 5 16 0 0
85 beacon 50705 1.3 5 16 0 0
86 belt-immunity-equipment 19036 1.1 1 12 0 0
87 solar-panel-equipment 21105 1.1 1 12 0 0
88 fast-underground-belt 5653 0.2 5 16 0 0
89 steel-chest 6068 0.3 0 1 0 3
90 grenade 1148 4.3 0 1 0 3
91 cargo-wagon 19104 0.5 0 1 0 3
92 coal 36 2.0 0 0 0 3
93 battery 884 4.0 0 0 0 3
94 battery-mk2-equipment 358052 0.9 5 16 0 0
95 personal-roboport-equipment 83199 0.9 5 16 0 0
96 uranium-cannon-shell 8400 3.2 1 4 0 8
97 storage-tank 7025 0.3 1 12 0 0
98 express-loader 40294 0.9 5 16 0 0
99 light-armor 5117 0.3 1 12 0 0
100 low-density-structure 5046 10.7 0 1 0 3
101 offshore-pump 909 0.3 0 1 0 3
102 gun-turret 6064 2.1 1 4 0 8
103 lubricant 28 1.0 0 0 0 3
104 military-science-pack 2483 5.3 0 1 0 3
105 plastic-bar 172 1.0 0 0 0 3
106 productivity-module-3 756917 5.3 5 16 0 0
107 speed-module-3 756917 5.3 5 16 0 0
108 energy-shield-equipment 19036 1.1 1 12 0 0
109 small-lamp 568 0.3 0 1 0 3
110 defender-capsule 8905 2.1 1 4 0 8
111 express-transport-belt 3872 0.3 0 1 0 3
112 assembling-machine-1 2750 0.3 0 1 0 3
113 uranium-ore 337 4.0 0 0 0 3
114 power-armor 601647 1.8 5 16 0 0
115 energy-shield-mk2-equipment 284215 0.9 5 16 0 0
116 pistol 1136 2.7 0 1 0 3
117 steam-engine 3182 0.3 0 1 0 3
118 pumpjack 10697 0.6 1 12 0 0
119 power-armor-mk2 7539143 2.2 5 16 0 0
120 decider-combinator 1724 0.3 0 1 0 3
121 distractor-capsule 49059 1.3 5 16 0 0
122 landfill 740 0.3 0 1 0 3
123 effectivity-module 10539 4.0 1 4 0 8
124 shotgun-shell 494 1.6 0 1 0 3
125 explosives 212 4.0 0 0 0 3
126 copper-plate 94 1.6 0 0 0 2
127 production-science-pack 14555 1.9 5 12 4 0
128 programmable-speaker 2224 0.5 1 4 0 8
129 construction-robot 7746 0.3 0 1 0 3
130 chemical-plant 9093 0.6 1 12 0 0
131 uranium-fuel-cell 49362 0.9 5 12 4 0
132 green-wire 361 0.3 0 1 0 3
133 personal-laser-defense-equipment 483945 0.9 5 16 0 0
134 inserter 605 0.3 0 1 0 3
135 underground-belt 889 0.5 0 1 0 3
136 explosive-rocket 1749 4.3 0 1 0 3
137 night-vision-equipment 19036 1.1 1 12 0 0
138 repair-pack 1002 0.3 0 1 0 3
139 splitter 2570 0.5 0 1 0 3
140 artillery-wagon 165993 0.4 5 16 0 0
141 red-wire 361 0.3 0 1 0 3
142 lab 6794 0.2 5 16 0 0
143 discharge-defense-equipment 489398 0.9 5 16 0 0
144 atomic-bomb 18383696 4.4 5 16 0 0
145 logistic-chest-active-provider 8320 0.3 0 1 0 3
146 productivity-module-2 130079 2.7 5 16 0 0
147 rail-chain-signal 772 0.3 0 1 0 3
148 iron-gear-wheel 207 0.3 0 1 0 3
149 productivity-module 10539 4.0 1 4 0 8
150 burner-inserter 321 0.3 0 1 0 3
151 iron-chest 769 0.3 0 1 0 3
152 substation 14947 0.3 0 1 0 3
153 stone 36 2.0 0 0 0 3
154 sulfuric-acid 26 0.2 1 8 3 0
155 nuclear-fuel 577045 11.2 5 12 2 0
156 express-underground-belt 15125 0.2 5 16 0 0
157 electronic-circuit 284 0.3 0 1 0 3
158 stack-filter-inserter 11588 0.3 0 1 0 3
159 chemical-science-pack 4251 12.8 0 1 0 3
160 destroyer-capsule 216075 1.3 5 16 0 0
161 electric-furnace 18855 0.4 5 16 0 0
162 sulfur 221 1.0 0 0 0 3
163 rail 434 0.3 0 1 0 3
164 exoskeleton-equipment 235607 0.9 5 16 0 0
165 loader 6790 0.5 0 1 0 3
166 steel-plate 756 8.0 0 0 0 2
167 effectivity-module-3 756917 5.3 5 16 0 0
168 piercing-rounds-magazine 2082 0.8 1 4 0 8
169 processing-unit 12484 0.9 5 12 4 0
170 electric-mining-drill 3739 0.2 1 12 0 0
171 express-splitter 28088 0.2 5 16 0 0
172 assembling-machine-3 54518 0.3 0 1 0 3
173 transport-belt 160 0.3 0 1 0 3
174 copper-ore 36 2.0 0 0 0 3
175 explosive-cannon-shell 2602 4.3 0 1 0 3
176 flamethrower 7332 2.7 1 4 0 8
177 stone-wall 668 0.3 0 1 0 3
178 small-electric-pole 67 0.3 0 1 0 3
179 tank 108699 0.4 5 16 0 0
180 nuclear-reactor 1173893 0.7 5 16 0 0
181 concrete 108 5.3 0 1 0 3
182 rail-signal 772 0.3 0 1 0 3
183 constant-combinator 872 0.3 0 1 0 3
184 laser-turret 40566 2.3 1 12 0 0
185 car 19615 0.2 5 16 0 0
186 cliff-explosives 4377 4.3 0 1 0 3
187 medium-electric-pole 1946 0.3 0 1 0 3
188 explosive-uranium-cannon-shell 8613 3.2 1 4 0 8
189 discharge-defense-remote 304 0.3 0 1 0 3
190 land-mine 345 2.7 0 1 0 3
191 engine-unit 1590 5.3 0 1 0 3
192 logistic-chest-storage 8320 0.3 0 1 0 3
193 solar-panel 9988 2.7 1 4 0 8

View File

@@ -0,0 +1,193 @@
name;work;time;beason;speed;prod;eff
pipe;683;0.1;1;5;0;7
flying-robot-frame;39191;1.8;5;12;4;0
empty-barrel;4359;0.1;5;12;4;0
radar;19549;0.0;5;16;0;0
logistic-chest-buffer;55150;0.0;5;16;0;0
big-electric-pole;32236;0.0;5;16;0;0
speed-module;58246;1.3;5;16;0;0
combat-shotgun;95990;0.9;5;16;0;0
fusion-reactor-equipment;9656642;0.9;5;16;0;0
stone-furnace;200;0.3;0;1;0;3
gate;17166;0.0;5;16;0;0
power-switch;9053;0.2;5;16;0;0
rocket-control-unit;89517;2.7;5;12;4;0
steel-furnace;39278;0.3;5;16;0;0
logistic-science-pack;7101;0.5;5;12;4;0
refined-concrete;1740;4.0;1;4;0;8
roboport;661453;0.4;5;16;0;0
fast-transport-belt;7102;0.0;5;16;0;0
iron-stick;368;0.0;5;12;4;0
centrifuge;1240015;0.4;5;16;0;0
speed-module-2;494705;2.7;5;16;0;0
submachine-gun;24887;1.1;1;12;0;0
iron-plate;585;0.3;1;8;2;0
refined-hazard-concrete;1755;0.0;5;16;0;0
crude-oil;2;1.0;0;0;0;2
rocket-part;1128959;0.3;5;12;4;0
advanced-circuit;8265;0.5;5;12;4;0
logistic-chest-requester;55150;0.0;5;16;0;0
spidertron;35416686;0.9;5;16;0;0
modular-armor;517823;1.3;5;16;0;0
flamethrower-ammo;29636;0.7;5;15;0;0
automation-science-pack;3940;0.6;1;8;4;0
fluid-wagon;140927;0.1;5;16;0;0
steam-turbine;102439;0.3;5;16;0;0
cluster-grenade;62720;0.7;5;16;0;0
fast-loader;77292;0.3;5;16;0;0
battery-equipment;79770;0.9;5;16;0;0
heavy-armor;324026;0.7;5;16;0;0
copper-cable;368;0.0;5;12;4;0
artillery-turret;569998;3.6;5;16;0;0
piercing-shotgun-shell;23875;0.7;5;16;0;0
electric-energy-interface;9101;0.0;5;16;0;0
accumulator;28825;0.9;5;16;0;0
boiler;3240;0.0;5;16;0;0
logistic-robot;56031;0.0;5;16;0;0
stone-brick;615;0.3;1;8;2;0
fast-splitter;43282;0.2;5;16;0;0
iron-ore;36;2.0;0;0;0;3
poison-capsule;25527;0.7;5;16;0;0
utility-science-pack;55554;1.9;5;12;4;0
wooden-chest;20;0.3;0;1;0;3
effectivity-module-2;494705;2.7;5;16;0;0
heat-pipe;64433;0.1;5;16;0;0
rocket-silo;17459151;2.7;5;16;0;0
artillery-shell;112721;1.3;5;16;0;0
heat-exchanger;119291;0.3;5;16;0;0
locomotive;411735;0.4;5;16;0;0
pump;19017;0.2;5;16;0;0
electric-engine-unit;18689;0.9;5;12;4;0
fast-inserter;8101;0.0;5;16;0;0
pipe-to-ground;5030;0.0;5;16;0;0
uranium-rounds-magazine;37499;0.9;5;16;0;0
filter-inserter;14508;0.0;5;16;0;0
long-handed-inserter;5621;0.0;5;16;0;0
shotgun;24968;1.1;1;12;0;0
rocket-fuel;36705;2.7;5;12;4;0
assembling-machine-2;36989;0.0;5;16;0;0
flamethrower-turret;252293;1.8;5;16;0;0
personal-roboport-mk2-equipment;6841351;1.8;5;16;0;0
arithmetic-combinator;9771;0.0;5;16;0;0
stack-inserter;56845;0.0;5;16;0;0
logistic-chest-passive-provider;55150;0.0;5;16;0;0
satellite;17816293;0.4;5;16;0;0
rocket-launcher;20891;1.1;1;12;0;0
slowdown-capsule;17313;0.9;1;12;0;0
firearm-magazine;2960;0.1;5;16;0;0
hazard-concrete;367;0.0;5;16;0;0
burner-mining-drill;6656;0.2;5;16;0;0
train-stop;29283;0.0;5;16;0;0
artillery-targeting-remote;60218;0.0;5;16;0;0
cannon-shell;17086;0.9;1;12;0;0
rocket;4308;4.3;0;1;0;3
oil-refinery;122887;0.7;5;16;0;0
beacon;260878;1.3;5;16;0;0
belt-immunity-equipment;99640;0.9;5;16;0;0
solar-panel-equipment;106834;0.9;5;16;0;0
fast-underground-belt;29488;0.2;5;16;0;0
steel-chest;42002;0.0;5;16;0;0
grenade;3604;4.3;0;1;0;3
cargo-wagon;128085;0.1;5;16;0;0
coal;36;2.0;0;0;0;3
battery;4291;0.7;1;8;3;0
battery-mk2-equipment;1567148;0.9;5;16;0;0
personal-roboport-equipment;432318;0.9;5;16;0;0
uranium-cannon-shell;42869;1.1;5;16;0;0
storage-tank;39615;0.3;5;16;0;0
express-loader;193749;0.9;5;16;0;0
light-armor;25256;0.3;5;16;0;0
low-density-structure;31572;1.8;5;12;4;0
offshore-pump;5195;0.0;5;16;0;0
gun-turret;34043;0.7;5;16;0;0
lubricant;155;0.2;1;8;3;0
military-science-pack;11513;0.9;5;12;4;0
plastic-bar;853;0.2;1;8;3;0
productivity-module-3;2753844;5.3;5;16;0;0
speed-module-3;2753844;5.3;5;16;0;0
energy-shield-equipment;99640;0.9;5;16;0;0
small-lamp;3523;0.0;5;16;0;0
defender-capsule;51860;0.7;5;16;0;0
express-transport-belt;22051;0.0;5;16;0;0
assembling-machine-1;15915;0.0;5;16;0;0
uranium-ore;1330;2.7;0;1;0;2
power-armor;2209018;1.8;5;16;0;0
energy-shield-mk2-equipment;1362253;0.9;5;16;0;0
pistol;6826;1.1;1;5;0;7
steam-engine;18801;0.0;5;16;0;0
pumpjack;55142;0.4;5;16;0;0
power-armor-mk2;28867013;2.2;5;16;0;0
decider-combinator;9771;0.0;5;16;0;0
distractor-capsule;241537;1.3;5;16;0;0
landfill;949;0.1;1;12;0;0
effectivity-module;58246;1.3;5;16;0;0
shotgun-shell;2784;0.8;1;4;0;8
explosives;1294;0.7;1;8;3;0
copper-plate;585;0.3;1;8;2;0
production-science-pack;63933;1.9;5;12;4;0
programmable-speaker;12403;0.2;5;16;0;0
construction-robot;42550;0.0;5;16;0;0
chemical-plant;45960;0.4;5;16;0;0
uranium-fuel-cell;211814;0.9;5;12;4;0
green-wire;2202;0.0;5;16;0;0
personal-laser-defense-equipment;1964282;0.9;5;16;0;0
inserter;3573;0.0;5;16;0;0
underground-belt;5795;0.1;5;16;0;0
explosive-rocket;8081;2.1;1;4;0;8
night-vision-equipment;99640;0.9;5;16;0;0
repair-pack;5666;0.0;5;16;0;0
splitter;15263;0.1;5;16;0;0
artillery-wagon;1159229;0.4;5;16;0;0
red-wire;2202;0.0;5;16;0;0
lab;32116;0.2;5;16;0;0
discharge-defense-equipment;2298302;0.9;5;16;0;0
atomic-bomb;79002735;4.4;5;16;0;0
logistic-chest-active-provider;55150;0.0;5;16;0;0
productivity-module-2;494705;2.7;5;16;0;0
rail-chain-signal;4759;0.0;5;16;0;0
iron-gear-wheel;1154;0.0;5;12;4;0
productivity-module;58246;1.3;5;16;0;0
burner-inserter;2049;0.0;5;16;0;0
iron-chest;4989;0.0;5;16;0;0
substation;96674;0.0;5;16;0;0
stone;36;2.0;0;0;0;3
sulfuric-acid;116;0.1;5;12;3;0
nuclear-fuel;2268984;11.2;5;12;2;0
express-underground-belt;79356;0.2;5;16;0;0
electronic-circuit;1524;0.0;5;12;4;0
stack-filter-inserter;64776;0.0;5;16;0;0
chemical-science-pack;25422;2.1;5;12;4;0
destroyer-capsule;1033693;1.3;5;16;0;0
electric-furnace;102689;0.4;5;16;0;0
sulfur;1245;0.1;5;12;3;0
rail;2963;0.0;5;16;0;0
exoskeleton-equipment;1074703;0.9;5;16;0;0
loader;39920;0.1;5;16;0;0
steel-plate;5212;1.4;1;8;2;0
effectivity-module-3;2753844;5.3;5;16;0;0
piercing-rounds-magazine;12956;0.3;5;16;0;0
processing-unit;40359;0.9;5;12;4;0
electric-mining-drill;17430;0.2;5;16;0;0
express-splitter;151118;0.2;5;16;0;0
assembling-machine-3;307272;0.0;5;16;0;0
transport-belt;1024;0.0;5;16;0;0
copper-ore;36;2.0;0;0;0;3
explosive-cannon-shell;18380;0.9;1;12;0;0
flamethrower;43794;0.9;5;16;0;0
stone-wall;3384;0.0;5;16;0;0
small-electric-pole;482;0.1;1;12;0;0
tank;743896;0.4;5;16;0;0
nuclear-reactor;7211144;0.7;5;16;0;0
concrete;351;5.3;0;1;0;3
rail-signal;4759;0.0;5;16;0;0
constant-combinator;5198;0.0;5;16;0;0
laser-turret;198608;1.8;5;16;0;0
car;134062;0.2;5;16;0;0
cliff-explosives;25865;0.7;5;16;0;0
medium-electric-pole;13375;0.0;5;16;0;0
explosive-uranium-cannon-shell;44163;1.1;5;16;0;0
discharge-defense-remote;1834;0.0;5;16;0;0
land-mine;2522;0.6;1;12;0;0
engine-unit;11883;0.9;5;12;4;0
logistic-chest-storage;55150;0.0;5;16;0;0
solar-panel;58046;0.9;5;16;0;0
1 name work time beason speed prod eff
2 pipe 683 0.1 1 5 0 7
3 flying-robot-frame 39191 1.8 5 12 4 0
4 empty-barrel 4359 0.1 5 12 4 0
5 radar 19549 0.0 5 16 0 0
6 logistic-chest-buffer 55150 0.0 5 16 0 0
7 big-electric-pole 32236 0.0 5 16 0 0
8 speed-module 58246 1.3 5 16 0 0
9 combat-shotgun 95990 0.9 5 16 0 0
10 fusion-reactor-equipment 9656642 0.9 5 16 0 0
11 stone-furnace 200 0.3 0 1 0 3
12 gate 17166 0.0 5 16 0 0
13 power-switch 9053 0.2 5 16 0 0
14 rocket-control-unit 89517 2.7 5 12 4 0
15 steel-furnace 39278 0.3 5 16 0 0
16 logistic-science-pack 7101 0.5 5 12 4 0
17 refined-concrete 1740 4.0 1 4 0 8
18 roboport 661453 0.4 5 16 0 0
19 fast-transport-belt 7102 0.0 5 16 0 0
20 iron-stick 368 0.0 5 12 4 0
21 centrifuge 1240015 0.4 5 16 0 0
22 speed-module-2 494705 2.7 5 16 0 0
23 submachine-gun 24887 1.1 1 12 0 0
24 iron-plate 585 0.3 1 8 2 0
25 refined-hazard-concrete 1755 0.0 5 16 0 0
26 crude-oil 2 1.0 0 0 0 2
27 rocket-part 1128959 0.3 5 12 4 0
28 advanced-circuit 8265 0.5 5 12 4 0
29 logistic-chest-requester 55150 0.0 5 16 0 0
30 spidertron 35416686 0.9 5 16 0 0
31 modular-armor 517823 1.3 5 16 0 0
32 flamethrower-ammo 29636 0.7 5 15 0 0
33 automation-science-pack 3940 0.6 1 8 4 0
34 fluid-wagon 140927 0.1 5 16 0 0
35 steam-turbine 102439 0.3 5 16 0 0
36 cluster-grenade 62720 0.7 5 16 0 0
37 fast-loader 77292 0.3 5 16 0 0
38 battery-equipment 79770 0.9 5 16 0 0
39 heavy-armor 324026 0.7 5 16 0 0
40 copper-cable 368 0.0 5 12 4 0
41 artillery-turret 569998 3.6 5 16 0 0
42 piercing-shotgun-shell 23875 0.7 5 16 0 0
43 electric-energy-interface 9101 0.0 5 16 0 0
44 accumulator 28825 0.9 5 16 0 0
45 boiler 3240 0.0 5 16 0 0
46 logistic-robot 56031 0.0 5 16 0 0
47 stone-brick 615 0.3 1 8 2 0
48 fast-splitter 43282 0.2 5 16 0 0
49 iron-ore 36 2.0 0 0 0 3
50 poison-capsule 25527 0.7 5 16 0 0
51 utility-science-pack 55554 1.9 5 12 4 0
52 wooden-chest 20 0.3 0 1 0 3
53 effectivity-module-2 494705 2.7 5 16 0 0
54 heat-pipe 64433 0.1 5 16 0 0
55 rocket-silo 17459151 2.7 5 16 0 0
56 artillery-shell 112721 1.3 5 16 0 0
57 heat-exchanger 119291 0.3 5 16 0 0
58 locomotive 411735 0.4 5 16 0 0
59 pump 19017 0.2 5 16 0 0
60 electric-engine-unit 18689 0.9 5 12 4 0
61 fast-inserter 8101 0.0 5 16 0 0
62 pipe-to-ground 5030 0.0 5 16 0 0
63 uranium-rounds-magazine 37499 0.9 5 16 0 0
64 filter-inserter 14508 0.0 5 16 0 0
65 long-handed-inserter 5621 0.0 5 16 0 0
66 shotgun 24968 1.1 1 12 0 0
67 rocket-fuel 36705 2.7 5 12 4 0
68 assembling-machine-2 36989 0.0 5 16 0 0
69 flamethrower-turret 252293 1.8 5 16 0 0
70 personal-roboport-mk2-equipment 6841351 1.8 5 16 0 0
71 arithmetic-combinator 9771 0.0 5 16 0 0
72 stack-inserter 56845 0.0 5 16 0 0
73 logistic-chest-passive-provider 55150 0.0 5 16 0 0
74 satellite 17816293 0.4 5 16 0 0
75 rocket-launcher 20891 1.1 1 12 0 0
76 slowdown-capsule 17313 0.9 1 12 0 0
77 firearm-magazine 2960 0.1 5 16 0 0
78 hazard-concrete 367 0.0 5 16 0 0
79 burner-mining-drill 6656 0.2 5 16 0 0
80 train-stop 29283 0.0 5 16 0 0
81 artillery-targeting-remote 60218 0.0 5 16 0 0
82 cannon-shell 17086 0.9 1 12 0 0
83 rocket 4308 4.3 0 1 0 3
84 oil-refinery 122887 0.7 5 16 0 0
85 beacon 260878 1.3 5 16 0 0
86 belt-immunity-equipment 99640 0.9 5 16 0 0
87 solar-panel-equipment 106834 0.9 5 16 0 0
88 fast-underground-belt 29488 0.2 5 16 0 0
89 steel-chest 42002 0.0 5 16 0 0
90 grenade 3604 4.3 0 1 0 3
91 cargo-wagon 128085 0.1 5 16 0 0
92 coal 36 2.0 0 0 0 3
93 battery 4291 0.7 1 8 3 0
94 battery-mk2-equipment 1567148 0.9 5 16 0 0
95 personal-roboport-equipment 432318 0.9 5 16 0 0
96 uranium-cannon-shell 42869 1.1 5 16 0 0
97 storage-tank 39615 0.3 5 16 0 0
98 express-loader 193749 0.9 5 16 0 0
99 light-armor 25256 0.3 5 16 0 0
100 low-density-structure 31572 1.8 5 12 4 0
101 offshore-pump 5195 0.0 5 16 0 0
102 gun-turret 34043 0.7 5 16 0 0
103 lubricant 155 0.2 1 8 3 0
104 military-science-pack 11513 0.9 5 12 4 0
105 plastic-bar 853 0.2 1 8 3 0
106 productivity-module-3 2753844 5.3 5 16 0 0
107 speed-module-3 2753844 5.3 5 16 0 0
108 energy-shield-equipment 99640 0.9 5 16 0 0
109 small-lamp 3523 0.0 5 16 0 0
110 defender-capsule 51860 0.7 5 16 0 0
111 express-transport-belt 22051 0.0 5 16 0 0
112 assembling-machine-1 15915 0.0 5 16 0 0
113 uranium-ore 1330 2.7 0 1 0 2
114 power-armor 2209018 1.8 5 16 0 0
115 energy-shield-mk2-equipment 1362253 0.9 5 16 0 0
116 pistol 6826 1.1 1 5 0 7
117 steam-engine 18801 0.0 5 16 0 0
118 pumpjack 55142 0.4 5 16 0 0
119 power-armor-mk2 28867013 2.2 5 16 0 0
120 decider-combinator 9771 0.0 5 16 0 0
121 distractor-capsule 241537 1.3 5 16 0 0
122 landfill 949 0.1 1 12 0 0
123 effectivity-module 58246 1.3 5 16 0 0
124 shotgun-shell 2784 0.8 1 4 0 8
125 explosives 1294 0.7 1 8 3 0
126 copper-plate 585 0.3 1 8 2 0
127 production-science-pack 63933 1.9 5 12 4 0
128 programmable-speaker 12403 0.2 5 16 0 0
129 construction-robot 42550 0.0 5 16 0 0
130 chemical-plant 45960 0.4 5 16 0 0
131 uranium-fuel-cell 211814 0.9 5 12 4 0
132 green-wire 2202 0.0 5 16 0 0
133 personal-laser-defense-equipment 1964282 0.9 5 16 0 0
134 inserter 3573 0.0 5 16 0 0
135 underground-belt 5795 0.1 5 16 0 0
136 explosive-rocket 8081 2.1 1 4 0 8
137 night-vision-equipment 99640 0.9 5 16 0 0
138 repair-pack 5666 0.0 5 16 0 0
139 splitter 15263 0.1 5 16 0 0
140 artillery-wagon 1159229 0.4 5 16 0 0
141 red-wire 2202 0.0 5 16 0 0
142 lab 32116 0.2 5 16 0 0
143 discharge-defense-equipment 2298302 0.9 5 16 0 0
144 atomic-bomb 79002735 4.4 5 16 0 0
145 logistic-chest-active-provider 55150 0.0 5 16 0 0
146 productivity-module-2 494705 2.7 5 16 0 0
147 rail-chain-signal 4759 0.0 5 16 0 0
148 iron-gear-wheel 1154 0.0 5 12 4 0
149 productivity-module 58246 1.3 5 16 0 0
150 burner-inserter 2049 0.0 5 16 0 0
151 iron-chest 4989 0.0 5 16 0 0
152 substation 96674 0.0 5 16 0 0
153 stone 36 2.0 0 0 0 3
154 sulfuric-acid 116 0.1 5 12 3 0
155 nuclear-fuel 2268984 11.2 5 12 2 0
156 express-underground-belt 79356 0.2 5 16 0 0
157 electronic-circuit 1524 0.0 5 12 4 0
158 stack-filter-inserter 64776 0.0 5 16 0 0
159 chemical-science-pack 25422 2.1 5 12 4 0
160 destroyer-capsule 1033693 1.3 5 16 0 0
161 electric-furnace 102689 0.4 5 16 0 0
162 sulfur 1245 0.1 5 12 3 0
163 rail 2963 0.0 5 16 0 0
164 exoskeleton-equipment 1074703 0.9 5 16 0 0
165 loader 39920 0.1 5 16 0 0
166 steel-plate 5212 1.4 1 8 2 0
167 effectivity-module-3 2753844 5.3 5 16 0 0
168 piercing-rounds-magazine 12956 0.3 5 16 0 0
169 processing-unit 40359 0.9 5 12 4 0
170 electric-mining-drill 17430 0.2 5 16 0 0
171 express-splitter 151118 0.2 5 16 0 0
172 assembling-machine-3 307272 0.0 5 16 0 0
173 transport-belt 1024 0.0 5 16 0 0
174 copper-ore 36 2.0 0 0 0 3
175 explosive-cannon-shell 18380 0.9 1 12 0 0
176 flamethrower 43794 0.9 5 16 0 0
177 stone-wall 3384 0.0 5 16 0 0
178 small-electric-pole 482 0.1 1 12 0 0
179 tank 743896 0.4 5 16 0 0
180 nuclear-reactor 7211144 0.7 5 16 0 0
181 concrete 351 5.3 0 1 0 3
182 rail-signal 4759 0.0 5 16 0 0
183 constant-combinator 5198 0.0 5 16 0 0
184 laser-turret 198608 1.8 5 16 0 0
185 car 134062 0.2 5 16 0 0
186 cliff-explosives 25865 0.7 5 16 0 0
187 medium-electric-pole 13375 0.0 5 16 0 0
188 explosive-uranium-cannon-shell 44163 1.1 5 16 0 0
189 discharge-defense-remote 1834 0.0 5 16 0 0
190 land-mine 2522 0.6 1 12 0 0
191 engine-unit 11883 0.9 5 12 4 0
192 logistic-chest-storage 55150 0.0 5 16 0 0
193 solar-panel 58046 0.9 5 16 0 0

View File

@@ -43,5 +43,6 @@
"page.visualize.overview.exports": "Exporte",
"page.visualize.overview.title": "Zusammenhänge der Services",
"page.visualize.details.title": "Group \"{name}\"",
"page.visualize.details.statistics.button": "Öffne Statistiken",
"component.recipe.arrow": "→"
}

View File

@@ -43,5 +43,6 @@
"page.visualize.overview.exports": "Exports",
"page.visualize.overview.title": "Interrelationships of Groups",
"page.visualize.details.title": "Group \"{name}\"",
"page.visualize.details.statistics.button": "Open statistics",
"component.recipe.arrow": "→"
}

View File

@@ -43,5 +43,6 @@
"page.visualize.overview.exports": "Uitvoer",
"page.visualize.overview.title": "Microservice Relaties",
"page.visualize.details.title": "Groep \"{name}\"",
"page.visualize.details.statistics.button": "Open statistieken",
"component.recipe.arrow": "→"
}

View File

@@ -2,7 +2,7 @@
import fetch from 'node-fetch'
import { HTMLElement, Node, parse, TextNode } from 'node-html-parser'
import { writeFile } from 'fs/promises'
import { promiseAllStepN } from '../utils/promiseAllStepN.js'
import { promiseAllStepN } from '../utils/promiseAllStepN'
import { retrieveRecipes } from '../utils/retrieveRecipes'
import { Entity, Recipe, UnfetchedEntity } from '../utils/types'

View File

@@ -94,6 +94,11 @@ export async function renameGroup(
return false
}
export async function getGroup(uuid: string, name: string) {
const data = await getData(uuid)
return data?.groups?.[name] ?? undefined
}
export async function addGroup(uuid: string, name: string): Promise<boolean> {
name = name.replace(/[.$]/g, '')
const data = await getData(uuid)

View File

@@ -0,0 +1,35 @@
import { DependencyList, useEffect } from 'react'
export const useAsyncEffect = <T>(
effect: (isMounted: () => boolean, signal: AbortSignal | undefined) => Promise<T>,
inputs?: DependencyList,
onDestroy?: (result: T | undefined) => void
) => {
const controller =
typeof AbortController !== 'undefined'
? new AbortController()
: {
signal: undefined,
abort() {
return
}
}
useEffect(() => {
let result: T | undefined = undefined
let mounted = true
const maybePromise = effect(() => mounted, controller.signal)
Promise.resolve(maybePromise).then(value => {
result = value
})
return () => {
mounted = false
controller.abort()
onDestroy?.(result)
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, inputs)
}