gitextract_z6v0w6cr/ ├── .env-example ├── .gitignore ├── BUILD.md ├── CONTRIB.md ├── LICENSE ├── README.md ├── package.json ├── resources/ │ ├── assets/ │ │ ├── icon-font/ │ │ │ ├── icarus-terminal.css │ │ │ ├── icarus-terminal.json │ │ │ ├── icarus-terminal.less │ │ │ ├── icarus-terminal.module.less │ │ │ ├── icarus-terminal.scss │ │ │ ├── icarus-terminal.styl │ │ │ ├── index.html │ │ │ ├── symbol.html │ │ │ └── unicode.html │ │ └── icon-manifest.json │ ├── data/ │ │ ├── ardent/ │ │ │ ├── commodities.json │ │ │ └── commodity-categories.json │ │ ├── edcd/ │ │ │ ├── coriolis/ │ │ │ │ ├── modifications/ │ │ │ │ │ ├── blueprints.json │ │ │ │ │ ├── modifications.json │ │ │ │ │ ├── modifierActions.json │ │ │ │ │ ├── modules.json │ │ │ │ │ └── specials.json │ │ │ │ ├── modules/ │ │ │ │ │ ├── hardpoints/ │ │ │ │ │ │ ├── abrasion_blaster.json │ │ │ │ │ │ ├── ax_missile_rack.json │ │ │ │ │ │ ├── ax_multi_cannon.json │ │ │ │ │ │ ├── beam_laser.json │ │ │ │ │ │ ├── burst_laser.json │ │ │ │ │ │ ├── cannon.json │ │ │ │ │ │ ├── cargo_scanner.json │ │ │ │ │ │ ├── chaff_launcher.json │ │ │ │ │ │ ├── electronic_countermeasure.json │ │ │ │ │ │ ├── enzyme_missile_rack.json │ │ │ │ │ │ ├── fragment_cannon.json │ │ │ │ │ │ ├── frame_shift_wake_scanner.json │ │ │ │ │ │ ├── guardian_gauss_cannon.json │ │ │ │ │ │ ├── guardian_plasma_charger.json │ │ │ │ │ │ ├── guardian_shard_cannon.json │ │ │ │ │ │ ├── heat_sink_launcher.json │ │ │ │ │ │ ├── kill_warrant_scanner.json │ │ │ │ │ │ ├── mine_launcher.json │ │ │ │ │ │ ├── mining_laser.json │ │ │ │ │ │ ├── missile_rack.json │ │ │ │ │ │ ├── multi_cannon.json │ │ │ │ │ │ ├── plasma_accelerator.json │ │ │ │ │ │ ├── point_defence.json │ │ │ │ │ │ ├── pulse_laser.json │ │ │ │ │ │ ├── pulse_wave_analyser.json │ │ │ │ │ │ ├── rail_gun.json │ │ │ │ │ │ ├── remote_release_flak_launcher.json │ │ │ │ │ │ ├── remote_release_flechette_launcher.json │ │ │ │ │ │ ├── seismic_charge_launcher.json │ │ │ │ │ │ ├── shield_booster.json │ │ │ │ │ │ ├── shock_cannon.json │ │ │ │ │ │ ├── shutdown_field_neutraliser.json │ │ │ │ │ │ ├── sub_surface_displacement_missile.json │ │ │ │ │ │ ├── torpedo_pylon.json │ │ │ │ │ │ └── xeno_scanner.json │ │ │ │ │ ├── internal/ │ │ │ │ │ │ ├── auto_field_maintenance_unit.json │ │ │ │ │ │ ├── bi_weave_shield_generator.json │ │ │ │ │ │ ├── business_passenger_cabin.json │ │ │ │ │ │ ├── cargo_rack.json │ │ │ │ │ │ ├── collector_limpet_controllers.json │ │ │ │ │ │ ├── decontamination_limpet_controller.json │ │ │ │ │ │ ├── docking_computer.json │ │ │ │ │ │ ├── economy_passenger_cabin.json │ │ │ │ │ │ ├── fighter_hangar.json │ │ │ │ │ │ ├── first_passenger_cabin.json │ │ │ │ │ │ ├── frame_shift_drive_interdictor.json │ │ │ │ │ │ ├── fuel_scoop.json │ │ │ │ │ │ ├── fuel_transfer_limpet_controllers.json │ │ │ │ │ │ ├── guardian_fsd_booster.json │ │ │ │ │ │ ├── guardian_hull_reinforcement_package.json │ │ │ │ │ │ ├── guardian_module_reinforcement_package.json │ │ │ │ │ │ ├── guardian_shield_reinforcement_package.json │ │ │ │ │ │ ├── hatch_breaker_limpet_controller.json │ │ │ │ │ │ ├── hull_reinforcement_package.json │ │ │ │ │ │ ├── internal_fuel_tank.json │ │ │ │ │ │ ├── luxury_passenger_cabin.json │ │ │ │ │ │ ├── meta_alloy_hull_reinforcement_package.json │ │ │ │ │ │ ├── module_reinforcement_package.json │ │ │ │ │ │ ├── planetary_vehicle_hanger.json │ │ │ │ │ │ ├── pristmatic_shield_generator.json │ │ │ │ │ │ ├── prospector_limpet_controllers.json │ │ │ │ │ │ ├── recon_limpet_controllers.json │ │ │ │ │ │ ├── refinery.json │ │ │ │ │ │ ├── repair_limpet_controller.json │ │ │ │ │ │ ├── research_limpet_controller.json │ │ │ │ │ │ ├── shield_cell_bank.json │ │ │ │ │ │ ├── shield_generator.json │ │ │ │ │ │ ├── supercruise_assist.json │ │ │ │ │ │ └── surface_scanner.json │ │ │ │ │ └── standard/ │ │ │ │ │ ├── frame_shift_drive.json │ │ │ │ │ ├── fuel_tank.json │ │ │ │ │ ├── life_support.json │ │ │ │ │ ├── planetary_approach_suite.json │ │ │ │ │ ├── power_distributor.json │ │ │ │ │ ├── power_plant.json │ │ │ │ │ ├── sensors.json │ │ │ │ │ └── thrusters.json │ │ │ │ └── ships/ │ │ │ │ ├── adder.json │ │ │ │ ├── alliance_challenger.json │ │ │ │ ├── alliance_chieftain.json │ │ │ │ ├── alliance_crusader.json │ │ │ │ ├── anaconda.json │ │ │ │ ├── asp.json │ │ │ │ ├── asp_scout.json │ │ │ │ ├── beluga.json │ │ │ │ ├── cobra_mk_iii.json │ │ │ │ ├── cobra_mk_iv.json │ │ │ │ ├── diamondback_explorer.json │ │ │ │ ├── diamondback_scout.json │ │ │ │ ├── dolphin.json │ │ │ │ ├── eagle.json │ │ │ │ ├── federal_assault_ship.json │ │ │ │ ├── federal_corvette.json │ │ │ │ ├── federal_dropship.json │ │ │ │ ├── federal_gunship.json │ │ │ │ ├── fer_de_lance.json │ │ │ │ ├── hauler.json │ │ │ │ ├── imperial_clipper.json │ │ │ │ ├── imperial_courier.json │ │ │ │ ├── imperial_cutter.json │ │ │ │ ├── imperial_eagle.json │ │ │ │ ├── keelback.json │ │ │ │ ├── krait_mkii.json │ │ │ │ ├── krait_phantom.json │ │ │ │ ├── mamba.json │ │ │ │ ├── orca.json │ │ │ │ ├── python.json │ │ │ │ ├── sidewinder.json │ │ │ │ ├── type_10_defender.json │ │ │ │ ├── type_6_transporter.json │ │ │ │ ├── type_7_transport.json │ │ │ │ ├── type_9_heavy.json │ │ │ │ ├── viper.json │ │ │ │ ├── viper_mk_iv.json │ │ │ │ └── vulture.json │ │ │ └── fdevids/ │ │ │ ├── How to determine MatTrader and Broker type │ │ │ ├── commodity.csv │ │ │ ├── crimes.csv │ │ │ ├── dockingdeniedreasons.csv │ │ │ ├── economy.csv │ │ │ ├── engineers.csv │ │ │ ├── factionstate.csv │ │ │ ├── government.csv │ │ │ ├── happiness.csv │ │ │ ├── material.csv │ │ │ ├── microresources.csv │ │ │ ├── outfitting.csv │ │ │ ├── rare_commodity.csv │ │ │ ├── rings.csv │ │ │ ├── security.csv │ │ │ ├── shipyard.csv │ │ │ ├── sku.csv │ │ │ ├── superpower.csv │ │ │ └── terraformingstate.csv │ │ ├── fandom/ │ │ │ ├── README.md │ │ │ ├── dumpgenerator.py │ │ │ └── elite_dangerousfandomcom-20220527-wikidump/ │ │ │ ├── config.txt │ │ │ ├── elite_dangerousfandomcom-20220527-current.xml │ │ │ └── elite_dangerousfandomcom-20220527-titles.txt │ │ └── rare-commodities-with-count.json │ ├── installer/ │ │ ├── installer.nsi │ │ └── webview2.nsh │ └── notes/ │ ├── location.md │ └── status-json.md ├── scripts/ │ ├── build-app.js │ ├── build-assets.js │ ├── build-clean.js │ ├── build-data.js │ ├── build-package.js │ ├── build-service.js │ ├── build-standalone.js │ └── lib/ │ └── build-options.js └── src/ ├── app/ │ ├── consts.go │ ├── execute.go │ ├── go.mod │ ├── go.sum │ ├── loader.go │ ├── main.go │ ├── process-group.go │ ├── updater.go │ └── windows.go ├── client/ │ ├── components/ │ │ ├── copy-on-click.js │ │ ├── header.js │ │ ├── layout/ │ │ │ └── main-layout.js │ │ ├── layout.js │ │ ├── loader.js │ │ ├── panel-navigation.js │ │ ├── panel.js │ │ ├── panels/ │ │ │ ├── eng/ │ │ │ │ └── materials.js │ │ │ ├── event-types-panel.js │ │ │ ├── log/ │ │ │ │ ├── log-inspector-panel.js │ │ │ │ └── log-list-panel.js │ │ │ ├── nav/ │ │ │ │ ├── navigation-inspector-panel.js │ │ │ │ ├── navigation-list-panel.js │ │ │ │ ├── navigation-system-map-panel.js │ │ │ │ └── system-map/ │ │ │ │ ├── system-map-object.js │ │ │ │ ├── system-map-star.js │ │ │ │ └── system-map.js │ │ │ └── ship/ │ │ │ ├── ship-module-inspector-panel.js │ │ │ ├── ship-modules-panel.js │ │ │ ├── ship-status/ │ │ │ │ ├── engineering-modifer.js │ │ │ │ ├── ship-instrumentation.js │ │ │ │ └── ship-modules.js │ │ │ └── ship-status-panel.js │ │ └── settings.js │ ├── css/ │ │ ├── form/ │ │ │ ├── button-group.css │ │ │ ├── button.css │ │ │ ├── checkbox.css │ │ │ ├── input.css │ │ │ └── select.css │ │ ├── fx/ │ │ │ ├── crt.css │ │ │ └── fx.css │ │ ├── main.css │ │ ├── overrides/ │ │ │ ├── firefox.css │ │ │ └── safari.css │ │ ├── panels/ │ │ │ ├── engineering-panel.css │ │ │ ├── navigation-panel.css │ │ │ └── ship-panel.css │ │ ├── system-map-realistic-planets.css │ │ ├── system-map.css │ │ ├── table.css │ │ ├── text.css │ │ ├── ui/ │ │ │ ├── inspector.css │ │ │ ├── layout.css │ │ │ ├── loader.css │ │ │ ├── modal-dialog.css │ │ │ ├── secondary-navigation.css │ │ │ └── sections.css │ │ ├── utils.css │ │ └── variables.css │ ├── jsconfig.json │ ├── lib/ │ │ ├── animate-table-effect.js │ │ ├── convert.js │ │ ├── format.js │ │ ├── icons.js │ │ ├── navigation-items.js │ │ ├── notification.js │ │ ├── socket.js │ │ └── window.js │ ├── pages/ │ │ ├── _app.js │ │ ├── _document.js │ │ ├── eng/ │ │ │ ├── blueprints.js │ │ │ ├── encoded-materials.js │ │ │ ├── engineers.js │ │ │ ├── index.js │ │ │ ├── manufactured-materials.js │ │ │ ├── raw-materials.js │ │ │ └── xeno-materials.js │ │ ├── index.js │ │ ├── launcher.js │ │ ├── log.js │ │ ├── nav/ │ │ │ ├── index.js │ │ │ ├── list.js │ │ │ ├── map.js │ │ │ └── route.js │ │ ├── ship/ │ │ │ ├── cargo.js │ │ │ ├── index.js │ │ │ ├── inventory.js │ │ │ ├── modules.js │ │ │ └── status.js │ │ └── test/ │ │ ├── codex.js │ │ ├── index.js │ │ └── status.js │ └── public/ │ ├── fonts/ │ │ └── icarus-terminal/ │ │ ├── icarus-terminal.css │ │ └── icarus-terminal.json │ └── manifest.json ├── service/ │ ├── data/ │ │ ├── all-commodites.json │ │ ├── commodity-descriptions.json │ │ ├── edcd/ │ │ │ ├── coriolis/ │ │ │ │ ├── blueprints.json │ │ │ │ └── modules.json │ │ │ └── fdevids/ │ │ │ ├── commodity.json │ │ │ ├── crimes.json │ │ │ ├── dockingdeniedreasons.json │ │ │ ├── economy.json │ │ │ ├── engineers.json │ │ │ ├── factionstate.json │ │ │ ├── government.json │ │ │ ├── happiness.json │ │ │ ├── material.json │ │ │ ├── microresources.json │ │ │ ├── outfitting.json │ │ │ ├── rare_commodity.json │ │ │ ├── rings.json │ │ │ ├── security.json │ │ │ ├── shipyard.json │ │ │ ├── sku.json │ │ │ ├── superpower.json │ │ │ └── terraformingstate.json │ │ ├── engineers.json │ │ └── material-uses.json │ ├── lib/ │ │ ├── data.js │ │ ├── edsm.js │ │ ├── elite-json.js │ │ ├── elite-log.js │ │ ├── event-handlers/ │ │ │ ├── blueprints.js │ │ │ ├── cmdr-status.js │ │ │ ├── engineers.js │ │ │ ├── inventory.js │ │ │ ├── materials.js │ │ │ ├── nav-route.js │ │ │ ├── ship-status.js │ │ │ ├── system.js │ │ │ └── text-to-speech.js │ │ ├── event-handlers.js │ │ ├── events.js │ │ ├── mission.js │ │ ├── poi.js │ │ ├── preferences.js │ │ ├── say/ │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── platform/ │ │ │ │ ├── base.js │ │ │ │ ├── darwin.js │ │ │ │ ├── linux.js │ │ │ │ └── win32.js │ │ │ └── typings.json │ │ └── system-map.js │ └── main.js └── shared/ ├── consts.js ├── distance.js └── faction-states.js