Jump to content

[KSP 1.10.0] Kerbal Simpit: A KSP serial mod for hardware controllers (1.4.1)


stibbons

Recommended Posts

No longer maintained:

I don't maintain this mod any more. @Simpit Team have taken over supporting and working on the mod, please see their new release thread.

What does it do?

This plugin maintains serial connections to one or more hardware devices. Each device can register to receive information that it explicitly wants to receive (for sending to a display, setting off an alarm, triggering a PC shutdown when your vessel runs out of power, etc). A device can also send commands back to the game (stage your rockets with a big red button, build a custom HOTAS to pilot planes, control your EVAing Kerbals with your treadmill, etc).

The plugin comes with a companion Arduino library, to make it easy to get started building interactive Kerbal hardware.

No really, what does it do?

It lets you build things like this:

What does it run on?

I officially support and test this plugin with 32- and 64- bit KSP on Windows 10, MacOS and Linux. Previous versions of Windows... probably work, but you're on your own.

Most microcontrollers should be supported, but only a few have been thoroughly tested so far. Refer to the Supported Devices page of the documentation wiki for more details. If you're using something different, I'd genuinely love to hear about it.

What sort of information can I send and receive?

The plugin currently sends:

  • Altitude data (sea level and surface.
  • Velocity data (orbital, surface and vertical).
  • Apsides data (apoapsis and periapsis). 
  • Time to next pair of apsides.
  • Resource levels (stock fuels, ore, ablator, etc).
  • Action group status.
  • Target information (distance, and relative velocity).
  • Current SoI.

The plugin is able to receive commands to control:

  • Custom action group commands, with full support for Action Groups Extended actions.
  • Regular action groups (staging, abort, RCS etc).
  • Main throttle.
  • Vessel rotation and translation.
  • Wheel steer and throttle.

Eventually the plugin will be capable of sending most of the telemetry you'd expect from stock KSP and mods such as KER. It will allow full control of vessels and Kerbals, and some limited interface control.

Where can I get it?

Search for "Kerbal Simpit" on CKAN. I only support installation of this plugin through CKAN or similar mod managers. The only other automated module manager I'm aware of KSP Mod Admin, but I've been struggling for weeks to get it to run on any of my test systems. :( If there are others around, I'd love to add support for them.

Note for the few folk who tried out prerelease builds: You should probably remove the custom CKAN repo from Settings -> CKAN Settings. I'm not uploading releases there any more, and it will eventually go away.

The source code is available from https://bitbucket.org/pjhardy/kerbalsimpit/overview . Binary releases sit in https://bitbucket.org/pjhardy/kerbalsimpit/downloads/ .

What else do I need?

  • This mod uses Alternate Resource Panel for all of its resource information. Without it, none of the resource providers will send data.
  • This mod will make use of Action Groups Extended if it's installed. With it, all 250 action groups can be accessed. Without it, only the stock 10 action groups will work.

Where can I get the Arduino library?

Search for "Kerbal Sim Pit" in the Arduino Library Manager. Its source repository is at https://bitbucket.org/pjhardy/kerbalsimpit-arduino/overview .

How can I use it?

For full documentation, refer to https://kerbalsimpit-arduino.readthedocs.io/en/stable/index.html

Quickstart guide:

  1. Install the plugin.
  2. Configure the plugin. An example config is in `GameData/KerbalSimpit/PluginData/Settings.cfg.sample`. Either copy that file to Settings.cfg or just launch the game once and let the plugin generate a default config. Refer to the Plugin Configuration page on the wiki for details on how to set up ports.
  3. Install the Arduino IDE and install the library. In the IDE, browse to File -> Examples -> Kerbal Simpit. Select the KerbalSimpitHelloWorld sketch and flash it to your board.
  4. Run the game again. The plugin will log successful device handshakes to KSP.log.

Changelog:

Full changelog is available from https://bitbucket.org/pjhardy/kerbalsimpit/src/master/CHANGELOG.md?fileviewer=file-view-default

License:

This project is licensed under the Simplified BSD License.

Edited by stibbons
1.4.1
Link to comment
Share on other sites

  • 2 weeks later...
On 31/01/2017 at 4:07 AM, stibbons said:

The event handling framework is in progress. The plugin will maintain a list of ToDevice and FromDevice events, and other classes will register handlers and dispatch new events to these as required.

Getting this right took me a lot longer than I thought. The system I've put in place for managing data received from serial devices isn't perfect, but works fairly well and should be flexible enough for this use case. Sending data from classes to serial devices should be easier now I've got a handle on how events work in C#.

The next step after that will be figuring out a scheduling mechanism. I'd like my plugin to handle scheduling serial data by sending events to the different classes indicating when it's their turn to send. The problem is, given a collection of methods, how do you decide how often to call each one? Just set a configurable delay between them and iterate through them? Give each method its own delay (slightly randomised to minimise overlap) at runtime? Distribute them through a fixed time slice? Something else? I suspect I'm overthinking this part, but it's bugging me a lot.

Link to comment
Share on other sites

Well, the limitation is bandwidth. You can't go above the bandwidth available on the serial link. At the same time, you don't want to run it as fast as possible because then you're just flooding the link.

Not knowing what you've already got going, I'd just do list on a delayed execution timer.

So you have a list of 5 classes that want to send data, stick them in a list.

Have each of them send data in order and record how much data was sent and how long it took to get your effective bitrate.

Then check that bitrate, is it below your serial link's bandwidth? Great, start again from the first class in the list.

However, if the bitrate is above your bandwidth, delay the next run through the list until enough time has passed to allow the serial hardware devices buffer to clear.

You'd also need a "never run more then once every X milliseconds" to avoid flooding to and you have to check bitrate every pass through the list as it is going to change.

 

But, that leaves:

1) One class is trying to send at twice the available bandwidth, how do you keep the other 4 classes passing data?

2) This only handles data out, how does the data coming in affect things in the setup your using? (Reduce available bandwidth out?)

3) Should there be priority? IE: Craft controls need to be as real-time as possible, but something in the map view could have a half second delay without being noticable.

 

Probably other issues that I'm missing, but that's what testing is for.

D.

Link to comment
Share on other sites

Nice! I have considered trying to hack KSPSIO to allow multiple arduinos (I need 2 as my second one will act as a guidance computer), but havnt had the time. Anyways, I hope the win10 issue will be solved for both KSPSIO and this. Good luck on the project :)

Link to comment
Share on other sites

This seems like a great iteration of the KSP communication concept. The KSPserialIO packet size did seem like an issue. Getting one Arduino to receive and distribute everything where it needed seemed like it was becoming a more and more daunting task for the minimal CPU, and particularly RAM. My own setup would likely have had no less than four different Arduinos, all performing some beefy functions. I need one to handle my digital displays, one to handle the motor and encoder of my tape meter, one to handle my FDAI (navball), and probably one to handle switches, analog meters, joysticks, etc. Depending if the latter unit had enough spare memory or CPU cycles to send and receive packets, as well as send to secondary micros, that's a minimum of either four to five Arduinos... It's be pretty awesome to just have each one get it's own custom packets! It'd eliminate the need for a packet arbitrator.

Link to comment
Share on other sites

On 09/02/2017 at 4:30 AM, Diazo said:

Well, the limitation is bandwidth. You can't go above the bandwidth available on the serial link. At the same time, you don't want to run it as fast as possible because then you're just flooding the link.

So, my practical experience with KSPSerialIO is that bandwidth on the serial link is nowhere near as limiting as you might think. Serial buffer size on the controller end is an issue, but I'm expecting sending lots of small packets instead of one large one to be much easier to keep the buffer drained.

You did make me realise that I'll probably need some sort of queueing, or at the very least a semaphore, in the serial class itself to make sure there's no concurrency issues. Apart from that, I was thinking I'd end up using the same sort of mechanism you describe.

1 hour ago, c4ooo said:

I have considered trying to hack KSPSIO to allow multiple arduinos (I need 2 as my second one will act as a guidance computer)

The way that I've been doing it in my build was to have one device receive a packet and then immediately send it to several others over I2C. That was incredibly efficient for me because my design also happened to only use that device for input back to the game. But could quickly get more complicated if you also need to be retrieving data from your I2C slaves instead of just sending to them.

1 hour ago, c4ooo said:

Anyways, I hope the win10 issue will be solved for both KSPSIO and this.

For the serial port library in KSPSerialIO, I'm almost completely certain that using an alternative serial chip on the device end is working for it. For my code, I'm a little less certain until I actually dedicate a weekend to doing it properly. Still a few options to work on, but it'll take me a decent chunk of time.

Link to comment
Share on other sites

Count me as an interested party. If you need testing on Windows 7, I will be happy to help.

BTW, did you ever work out the issue on EngNumber displaying numbers in the wrong order?

Edited by Freshmeat
Link to comment
Share on other sites

  • 3 weeks later...
On 16/02/2017 at 8:44 PM, Freshmeat said:

BTW, did you ever work out the issue on EngNumber displaying numbers in the wrong order?

I... forgot to. :( But it's something that also affects my hardware, so it'll definitely get some attention when I'm to rewriting the arduino code to support this plugin.

 

Link to comment
Share on other sites

On 09/02/2017 at 2:38 AM, stibbons said:

The next step after that will be figuring out a scheduling mechanism. I'd like my plugin to handle scheduling serial data by sending events to the different classes indicating when it's their turn to send. The problem is, given a collection of methods, how do you decide how often to call each one?

Apparently you set a refresh rate (I've hardcoded at 80ms), and evenly distribute the registered callback methods through it. I committed the code to do that as a first pass this week. It's almost certainly subject to change (or at least some minor optimisation), but I'll want to bed it down on a non-trivial hardware setup first.

Pretty sure my code's now at the point where all it needs is data to send. One goal that I have in mind for this is optimising on-wire data types, and eliminating the use of large floats wherever I can. Scalars like heading and throttle would end up as a two byte unsigned int. Distances and velocities will be fixed point numbers on the wire. The Arduino library will have code for getting/setting the integer and fractional parts of these, as well as converting them to and from floats if you need to.

Link to comment
Share on other sites

  • 2 weeks later...

Unsurprisingly, my current code is running fine in 1.2.9 after recompiling it. Will only be supporting 1.2.9/1.3 going forward.

My work trying to implement a simple echo provider (hardware sends an echo request, game responds with an echo reply) uncovered some poor assumptions, and I'm going to have to redesign the interface between provider classes and my serial ports. But that's good because I also recently realised the game exposes its own GameEvents interface for passing events between classes. I should be using this little fella instead of implementing my own events.

 

Link to comment
Share on other sites

Updated the OP. The base plugin works, and has a basic echo handler (device sends echo, game replies). The Arduino library is functional, but a little bit twitchy - it frequently doesn't start seeing full packets for me until a few seconds after the flight scene loads, sometimes not until I switch out and back in to it. Need to play with how it's dealing with partial packets, I think.

The big news that I'm happy about is that my plugin's working properly on Windows 10. My initial tests were looking a bit bleak, and I was worried I'd have to do a lot of platform-specific work. But a more careful look showed that most of my problems were related to some really dumb mistakes (a divide-by-zero in the setup that the Linux KSP build happily continues on from, but the Windows build seems to abort loading the plugin). There are still some weird issues with some devices in Windows that I really don't think I'm in a position to be able to fix, so can just point to them in the docs and back away slowly.

At this point I'm going to be scaling out the info it can send/receive, and see how stable the current serial stuff is under actual load.

 

Link to comment
Share on other sites

Updated the OP again. The serial parts are finished, and I've added some test handlers to get some basic data in and out of the game. The Arduino library is basically usable, and has some example sketches to demonstrate how the different parts of the plugin work.

I've started uploading prerelease builds compiled against the current pre-release 1.2.9 version of KSP. Would be very interested in seeing if people have any success with this on their operating systems, as well as expanding the supported devices documentation.

Link to comment
Share on other sites

12 hours ago, Freshmeat said:

I hope to test it against a Leonardo knockoff on win 7 and win 10.

I'm really keen to see how well this stuff works on Windows 7/8. Apparently I'm happy to buy lots of different development boards and serial adaptors, but trying to get another version of Windows running on my computer is a bridge too far. :wink:

Link to comment
Share on other sites

Just pushed up a 0.2 release, that adds new inbound packets for custom action groups. If Action Groups Extended is installed it should be able to activate all of its action groups, otherwise the usual stock 10 are supported.

I haven't actually properly tested this stuff yet, but will be adding some more example sketches to the arduino library shortly.

Link to comment
Share on other sites

Hej @stibbons.

I'm on Win7, KSPs 2.9 preRelease and using a Mega2650.

I loaded up the KerbalSimPitHelloWorld example, modified the settings (verbose = true & ttyS3 (Com4 (According to Arduino "Code-Editor"))).

 

To be sure there isn't an internal mixup I ran with configs from ttyS0 -> ttyS6. Just in case. But like the logfile states for ttyS3, none of them does exist.

EDIT: As I tried ttyS0, ttyS1, ttyS2, ttyS4, ttyS5 and ttyS6 the logentry < [LOG 14:03:25.177] KerbalSimPit: Found 1 serial ports > was not there. Seems like KSP finds something at ttyS3, but the next line states it isn't there.

Also I loaded the KerbalX on the launchpad to be sure that the serial port couldn't be opened and the Builtin-LED doesn't blink. It does not and there is no clue of a handshake in the logfile either.

 

That's the logfile:

[LOG 14:03:22.145] ******* Log Initiated for Kerbal Space Program - 1.2.9.1738 (WindowsPlayer x64)-pre en-us *******
Kerbal Space Program - 1.2.9.1738 (WindowsPlayer x64)-pre en-us


OS: Windows 7 Service Pack 1 (6.1.7601) 64bit
CPU: AMD FX-8370 Eight-Core Processor  (8)
RAM: 16341
GPU: NVIDIA GeForce GTX 970 (4008MB)
SM: 30 (Direct3D 9.0c [nvd3dumx.dll 21.21.13.7892])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, Default, ARGB2101010, DefaultHDR, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8


Log started: Thu, Mar 30, 2017 14:03:22


[LOG 14:03:22.210] AppCanvas MASK: 3458764513820540928
[LOG 14:03:22.211] ActionCanvas MASK: 3458764513820540928
[LOG 14:03:22.215] PhysicsGlobals: Loading database
[WRN 14:03:23.385] [SpaceNavigatorWindows]: Could not initialize device.

[LOG 14:03:23.388] MainCanvas MASK: 3458764513820540928
[LOG 14:03:23.408] Updating font: JD-LCD_rounded SDF to en-us
[LOG 14:03:24.436] Load(Assembly): KerbalSimPit/KerbalSimPit
[LOG 14:03:24.438] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\KerbalSimPit\KerbalSimPit.dll
[LOG 14:03:24.470] AssemblyLoader: KSPAssembly 'KerbalSimPit' V0.1
[LOG 14:03:24.471] Load(Assembly): KerbalSimPit/SerialPortLib2
[LOG 14:03:24.472] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\KerbalSimPit\SerialPortLib2.dll
[LOG 14:03:24.474] Load(Assembly): Squad/Plugins/KSPSteamCtrlr
[LOG 14:03:24.475] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\Plugins\KSPSteamCtrlr.dll
[LOG 14:03:24.477] Load(Assembly): Squad/Plugins/Steamworks.NET
[LOG 14:03:24.478] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\Plugins\Steamworks.NET.dll
[LOG 14:03:24.483] AssemblyLoader: Loading assemblies
[LOG 14:03:24.553] VesselModules: Found VesselModule of type CommNetVessel with order 999
[LOG 14:03:24.557] VesselModules: Found VesselModule of type FlightIntegrator with order 0
[LOG 14:03:24.559] VesselModules: Found 2 VesselModule types
[LOG 14:03:24.567] 
************************************************************************

Environment Info
Win32NT 7FFFFFFFFFFFFFFF  Args: KSP_x64.exe 

Mod DLLs found:
Stock assembly: Assembly-CSharp v1.0.0.0
KerbalSimPit v0.1.0.33512 / v0.1.0.*
SerialPortLib2 v1.0.2.0
Stock assembly: KSPSteamCtrlr v0.0.1.35
Stock assembly: Steamworks.NET v8.0.0.0 / v8.0.0

Folders and files in GameData:
KerbalSimPit
Stock folder: Squad


************************************************************************

[LOG 14:03:24.578] [AddonLoader]: Instantiating addon 'KerbalSimPit' from assembly 'KerbalSimPit'
[LOG 14:03:24.580] [AddonLoader]: Instantiating addon 'KSPSteamController' from assembly 'KSPSteamCtrlr'
[ERR 14:03:24.676] <color=orange><b>[KSPSteamController]:</b> Failed to initialize Steam API!</color>

[LOG 14:03:25.166] Load(Audio): Squad/Sounds/editorLoop01
[LOG 14:03:25.175] KerbalSimPit: Settings loaded.
[LOG 14:03:25.177] KerbalSimPit: Found 1 serial ports
[LOG 14:03:25.179] KerbalSimPit: Error opening serial port /dev/ttyS3: The port `/dev/ttyS3' does not exist.
[LOG 14:03:25.180] KerbalSimPit: Unable to open /dev/ttyS3
[LOG 14:03:25.182] KerbalSimPit: Started.
[LOG 14:03:25.182] KerbalSimPit: Starting event dispatch loop
[LOG 14:03:25.496] Load(Audio): Squad/Sounds/elev_loop
[LOG 14:03:25.512] Load(Audio): Squad/Sounds/elev_start
[LOG 14:03:25.551] Load(Audio): Squad/Sounds/elev_stop
[LOG 14:03:25.567] Load(Audio): Squad/Sounds/sound_ambience_nature
[LOG 14:03:25.600] Load(Audio): Squad/Sounds/sound_click_flick
[LOG 14:03:25.615] Load(Audio): Squad/Sounds/sound_click_latch
[LOG 14:03:25.634] Load(Audio): Squad/Sounds/sound_click_sharp
[LOG 14:03:25.651] Load(Audio): Squad/Sounds/sound_click_tick
[LOG 14:03:25.668] Load(Audio): Squad/Sounds/sound_click_tock
[LOG 14:03:25.685] Load(Audio): Squad/Sounds/sound_decoupler_fire
[LOG 14:03:25.702] Load(Audio): Squad/Sounds/sound_delete_bin
[LOG 14:03:25.719] Load(Audio): Squad/Sounds/sound_explosion_debris1
[LOG 14:03:25.733] Load(Audio): Squad/Sounds/sound_explosion_debris2
[LOG 14:03:25.745] Load(Audio): Squad/Sounds/sound_explosion_large
[LOG 14:03:25.757] Load(Audio): Squad/Sounds/sound_rocket_mini
[LOG 14:03:25.767] Load(Audio): Squad/Sounds/sound_rocket_spurts
[LOG 14:03:25.780] Load(Audio): Squad/Sounds/sound_servomotor
[LOG 14:03:25.791] Load(Audio): Squad/Sounds/sound_tab_extend
[LOG 14:03:25.800] Load(Audio): Squad/Sounds/sound_tab_retreat
[LOG 14:03:25.810] Load(Texture): Squad/Agencies/C7AerospaceDivision
[LOG 14:03:25.817] Load(Texture): Squad/Agencies/C7AerospaceDivision_scaled
[LOG 14:03:25.824] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium
[LOG 14:03:25.829] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium_scaled
[LOG 14:03:25.834] Load(Texture): Squad/Agencies/ExperimentalEngineering
[LOG 14:03:25.840] Load(Texture): Squad/Agencies/ExperimentalEngineering_scaled
[LOG 14:03:25.845] Load(Texture): Squad/Agencies/FlooydResearchLab
[LOG 14:03:25.850] Load(Texture): Squad/Agencies/FlooydResearchLab_scaled
[LOG 14:03:25.855] Load(Texture): Squad/Agencies/GoliathNationalProducts
[LOG 14:03:25.860] Load(Texture): Squad/Agencies/GoliathNationalProducts_scaled
[LOG 14:03:25.865] Load(Texture): Squad/Agencies/IntegratedIntegrals
[LOG 14:03:25.870] Load(Texture): Squad/Agencies/IntegratedIntegrals_scaled
[LOG 14:03:25.875] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics
[LOG 14:03:25.881] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics_scaled
[LOG 14:03:25.886] Load(Texture): Squad/Agencies/JebsJunkyard
[LOG 14:03:25.890] Load(Texture): Squad/Agencies/JebsJunkyard_scaled
[LOG 14:03:25.895] Load(Texture): Squad/Agencies/KerbalMotion
[LOG 14:03:25.899] Load(Texture): Squad/Agencies/KerbalMotion_scaled
[LOG 14:03:25.904] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety
[LOG 14:03:25.909] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety_scaled
[LOG 14:03:25.914] Load(Texture): Squad/Agencies/Kerbodyne
[LOG 14:03:25.918] Load(Texture): Squad/Agencies/Kerbodyne_scaled
[LOG 14:03:25.922] Load(Texture): Squad/Agencies/Kerlington
[LOG 14:03:25.927] Load(Texture): Squad/Agencies/Kerlington_scaled
[LOG 14:03:25.931] Load(Texture): Squad/Agencies/MaxoConstructionToys
[LOG 14:03:25.936] Load(Texture): Squad/Agencies/MaxoConstructionToys_scaled
[LOG 14:03:25.940] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup
[LOG 14:03:25.945] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup_scaled
[LOG 14:03:25.949] Load(Texture): Squad/Agencies/OMBDemolition
[LOG 14:03:25.969] Load(Texture): Squad/Agencies/OMBDemolition_scaled
[LOG 14:03:25.974] Load(Texture): Squad/Agencies/PeriapsisCo
[LOG 14:03:25.978] Load(Texture): Squad/Agencies/PeriapsisCo_scaled
[LOG 14:03:25.983] Load(Texture): Squad/Agencies/Probodobodyne
[LOG 14:03:25.988] Load(Texture): Squad/Agencies/Probodobodyne_scaled
[LOG 14:03:25.993] Load(Texture): Squad/Agencies/R&D
[LOG 14:03:25.997] Load(Texture): Squad/Agencies/R&D_scaled
[LOG 14:03:26.001] Load(Texture): Squad/Agencies/ReactionSystemsLtd
[LOG 14:03:26.006] Load(Texture): Squad/Agencies/ReactionSystemsLtd_scaled
[LOG 14:03:26.010] Load(Texture): Squad/Agencies/Rockomax
[LOG 14:03:26.014] Load(Texture): Squad/Agencies/Rockomax_scaled
[LOG 14:03:26.019] Load(Texture): Squad/Agencies/Rokea
[LOG 14:03:26.023] Load(Texture): Squad/Agencies/Rokea_scaled
[LOG 14:03:26.028] Load(Texture): Squad/Agencies/SeansCannery
[LOG 14:03:26.033] Load(Texture): Squad/Agencies/SeansCannery_scaled
[LOG 14:03:26.037] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps
[LOG 14:03:26.043] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps_scaled
[LOG 14:03:26.048] Load(Texture): Squad/Agencies/StrutCo
[LOG 14:03:26.052] Load(Texture): Squad/Agencies/StrutCo_scaled
[LOG 14:03:26.057] Load(Texture): Squad/Agencies/Vac-Co
[LOG 14:03:26.061] Load(Texture): Squad/Agencies/Vac-Co_scaled
[LOG 14:03:26.066] Load(Texture): Squad/Agencies/WinterOwl
[LOG 14:03:26.070] Load(Texture): Squad/Agencies/WinterOwl_scaled
[LOG 14:03:26.075] Load(Texture): Squad/Agencies/ZaltonicElectronics
[LOG 14:03:26.079] Load(Texture): Squad/Agencies/ZaltonicElectronics_scaled
[LOG 14:03:26.084] Load(Texture): Squad/Contracts/Icons/balloon
[LOG 14:03:26.088] Load(Texture): Squad/Contracts/Icons/custom
[LOG 14:03:26.093] Load(Texture): Squad/Contracts/Icons/default
[LOG 14:03:26.098] Load(Texture): Squad/Contracts/Icons/dish
[LOG 14:03:26.102] Load(Texture): Squad/Contracts/Icons/eva
[LOG 14:03:26.106] Load(Texture): Squad/Contracts/Icons/gravity
[LOG 14:03:26.110] Load(Texture): Squad/Contracts/Icons/marker
[LOG 14:03:26.115] Load(Texture): Squad/Contracts/Icons/pressure
[LOG 14:03:26.119] Load(Texture): Squad/Contracts/Icons/report
[LOG 14:03:26.124] Load(Texture): Squad/Contracts/Icons/sample
[LOG 14:03:26.128] Load(Texture): Squad/Contracts/Icons/seismic
[LOG 14:03:26.132] Load(Texture): Squad/Contracts/Icons/thermometer
[LOG 14:03:26.137] Load(Texture): Squad/Contracts/Icons/vessel
[LOG 14:03:26.142] Load(Texture): Squad/Flags/09
[LOG 14:03:26.160] Load(Texture): Squad/Flags/blorbs
[LOG 14:03:26.173] Load(Texture): Squad/Flags/bullseye
[LOG 14:03:26.186] Load(Texture): Squad/Flags/capsule
[LOG 14:03:26.199] Load(Texture): Squad/Flags/circles
[LOG 14:03:26.213] Load(Texture): Squad/Flags/default
[LOG 14:03:26.227] Load(Texture): Squad/Flags/esa_dark_blue
[LOG 14:03:26.241] Load(Texture): Squad/Flags/hexagon
[LOG 14:03:26.255] Load(Texture): Squad/Flags/hexagonCircles
[LOG 14:03:26.269] Load(Texture): Squad/Flags/kerbal1
[LOG 14:03:26.283] Load(Texture): Squad/Flags/kerbal2
[LOG 14:03:26.296] Load(Texture): Squad/Flags/kerbin
[LOG 14:03:26.310] Load(Texture): Squad/Flags/kerbinmunflag
[LOG 14:03:26.323] Load(Texture): Squad/Flags/line
[LOG 14:03:26.337] Load(Texture): Squad/Flags/minimalistic
[LOG 14:03:26.352] Load(Texture): Squad/Flags/NASA
[LOG 14:03:26.366] Load(Texture): Squad/Flags/orbit
[LOG 14:03:26.379] Load(Texture): Squad/Flags/orbs
[LOG 14:03:26.392] Load(Texture): Squad/Flags/retro
[LOG 14:03:26.406] Load(Texture): Squad/Flags/rings
[LOG 14:03:26.420] Load(Texture): Squad/Flags/rocketScience
[LOG 14:03:26.435] Load(Texture): Squad/Flags/satellite
[LOG 14:03:26.446] Load(Texture): Squad/Flags/spheres
[LOG 14:03:26.458] Load(Texture): Squad/Flags/squadLogo
[LOG 14:03:26.468] Load(Texture): Squad/Flags/squadLogo2
[LOG 14:03:26.478] Load(Texture): Squad/Flags/stripes
[LOG 14:03:26.487] Load(Texture): Squad/Flags/trees
[LOG 14:03:26.498] Load(Texture): Squad/Flags/trippy
[LOG 14:03:26.510] Load(Texture): Squad/Flags/uk_space_agency
[LOG 14:03:26.522] Load(Texture): Squad/FX/DiamondBlue
[LOG 14:03:26.524] Load(Texture): Squad/FX/FlameBlueOrange
[LOG 14:03:26.526] Load(Texture): Squad/FX/FlamePurple
[LOG 14:03:26.527] Load(Texture): Squad/FX/FlameRed
[LOG 14:03:26.529] Load(Texture): Squad/FX/FlameRedOrange
[LOG 14:03:26.531] Load(Texture): Squad/FX/Monoprop
[LOG 14:03:26.532] Load(Texture): Squad/FX/plasma2
[LOG 14:03:26.534] Load(Texture): Squad/FX/rocketplume2
[LOG 14:03:26.536] Load(Texture): Squad/FX/shockDiamond2
[LOG 14:03:26.538] Load(Texture): Squad/FX/smokepuff1
[LOG 14:03:26.539] Load(Texture): Squad/Interiors/Administration/AdminBuilding_Lvl1
[LOG 14:03:26.560] Load(Texture): Squad/Interiors/Administration/AdminBuilding_Lvl2
[LOG 14:03:26.579] Load(Texture): Squad/Interiors/Administration/AdminBuilding_Lvl3
[LOG 14:03:26.613] Load(Texture): Squad/MenuProps/MunOrBust
[LOG 14:03:26.620] Load(Texture): Squad/PartList/SimpleIcons/cs_main
[LOG 14:03:26.629] Load(Texture): Squad/PartList/SimpleIcons/cs_mk2
[LOG 14:03:26.638] Load(Texture): Squad/PartList/SimpleIcons/cs_mk3
[LOG 14:03:26.647] Load(Texture): Squad/PartList/SimpleIcons/cs_size0
[LOG 14:03:26.656] Load(Texture): Squad/PartList/SimpleIcons/cs_size1
[LOG 14:03:26.665] Load(Texture): Squad/PartList/SimpleIcons/cs_size2
[LOG 14:03:26.673] Load(Texture): Squad/PartList/SimpleIcons/cs_size3
[LOG 14:03:26.683] Load(Texture): Squad/PartList/SimpleIcons/cs_surface
[LOG 14:03:26.692] Load(Texture): Squad/PartList/SimpleIcons/fuels_monopropellant
[LOG 14:03:26.701] Load(Texture): Squad/PartList/SimpleIcons/fuels_ore
[LOG 14:03:26.710] Load(Texture): Squad/PartList/SimpleIcons/fuels_oxidizer
[LOG 14:03:26.719] Load(Texture): Squad/PartList/SimpleIcons/fuels_solidfuel
[LOG 14:03:26.728] Load(Texture): Squad/PartList/SimpleIcons/fuels_xenongas
[LOG 14:03:26.737] Load(Texture): Squad/PartList/SimpleIcons/number1
[LOG 14:03:26.746] Load(Texture): Squad/PartList/SimpleIcons/number2
[LOG 14:03:26.755] Load(Texture): Squad/PartList/SimpleIcons/number3
[LOG 14:03:26.764] Load(Texture): Squad/PartList/SimpleIcons/number4
[LOG 14:03:26.772] Load(Texture): Squad/PartList/SimpleIcons/number5
[LOG 14:03:26.781] Load(Texture): Squad/PartList/SimpleIcons/number6
[LOG 14:03:26.789] Load(Texture): Squad/PartList/SimpleIcons/number7
[LOG 14:03:26.798] Load(Texture): Squad/PartList/SimpleIcons/number8
[LOG 14:03:26.807] Load(Texture): Squad/PartList/SimpleIcons/number9
[LOG 14:03:26.816] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advaerodynamics
[LOG 14:03:26.824] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advancedmotors
[LOG 14:03:26.834] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advconstruction
[LOG 14:03:26.842] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advelectrics
[LOG 14:03:26.851] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advexploration
[LOG 14:03:26.861] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advflightcontrol
[LOG 14:03:26.870] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advlanding
[LOG 14:03:26.879] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advmetalworks
[LOG 14:03:26.888] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advrocketry
[LOG 14:03:26.897] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advsciencetech
[LOG 14:03:26.906] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advunmanned
[LOG 14:03:26.915] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerodynamicsystems
[LOG 14:03:26.924] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerospacetech
[LOG 14:03:26.933] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_automation
[LOG 14:03:26.945] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicprobes
[LOG 14:03:26.954] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicrocketry
[LOG 14:03:26.963] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_composites
[LOG 14:03:26.972] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electrics
[LOG 14:03:26.981] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electronics
[LOG 14:03:26.990] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_evatech
[LOG 14:03:26.999] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalaerodynamics
[LOG 14:03:27.009] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalelectrics
[LOG 14:03:27.018] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalmotors
[LOG 14:03:27.027] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalrocketry
[LOG 14:03:27.036] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalscience
[LOG 14:03:27.045] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fieldscience
[LOG 14:03:27.055] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_flightcontrol
[LOG 14:03:27.064] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fuelsystems
[LOG 14:03:27.073] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalconstruction
[LOG 14:03:27.082] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalrocketry
[LOG 14:03:27.091] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generic
[LOG 14:03:27.100] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavierrocketry
[LOG 14:03:27.109] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyaerodynamics
[LOG 14:03:27.118] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyrocketry
[LOG 14:03:27.126] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudeflight
[LOG 14:03:27.135] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudepropulsion
[LOG 14:03:27.144] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_hypersonicflight
[LOG 14:03:27.153] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_ionpropulsion
[LOG 14:03:27.162] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_landing
[LOG 14:03:27.171] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largecontrol
[LOG 14:03:27.180] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeelectrics
[LOG 14:03:27.188] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeprobes
[LOG 14:03:27.197] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_metamaterials
[LOG 14:03:27.206] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nanolathing
[LOG 14:03:27.215] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nuclearpropulsion
[LOG 14:03:27.225] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_precisionengineering
[LOG 14:03:27.234] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_robotics
[LOG 14:03:27.243] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_sciencetech
[LOG 14:03:27.252] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedconstruction
[LOG 14:03:27.262] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedcontrol
[LOG 14:03:27.271] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedelectrics
[LOG 14:03:27.280] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_stability
[LOG 14:03:27.289] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_start
[LOG 14:03:27.298] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_supersonicflight
[LOG 14:03:27.307] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_survivability
[LOG 14:03:27.315] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_unmannedtech
[LOG 14:03:27.324] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_veryheavyrocketry
[LOG 14:03:27.333] Load(Texture): Squad/PartList/SimpleIcons/RDicon_aerospaceTech2
[LOG 14:03:27.342] Load(Texture): Squad/PartList/SimpleIcons/RDicon_commandmodules
[LOG 14:03:27.351] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-advanced
[LOG 14:03:27.359] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-highPerformance
[LOG 14:03:27.369] Load(Texture): Squad/PartList/SimpleIcons/RDicon_largeVolumeContainment
[LOG 14:03:27.378] Load(Texture): Squad/PartList/SimpleIcons/RDicon_miniaturization
[LOG 14:03:27.387] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsion-precision
[LOG 14:03:27.395] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsionSystems
[LOG 14:03:27.404] Load(Texture): Squad/PartList/SimpleIcons/RDicon_telescope
[LOG 14:03:27.413] Load(Texture): Squad/Parts/Aero/aerodynamicNoseCone/Nosecone
[LOG 14:03:27.415] Load(Texture): Squad/Parts/Aero/airbrake/Airbrake
[LOG 14:03:27.417] Load(Texture): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 14:03:27.419] Load(Texture): Squad/Parts/Aero/airlinerWings/AirlinerWings
[LOG 14:03:27.436] Load(Texture): Squad/Parts/Aero/airplaneFins/AirplaneFins
[LOG 14:03:27.457] Load(Texture): Squad/Parts/Aero/basicFin/BasicFin
[LOG 14:03:27.459] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes
[LOG 14:03:27.461] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes_Heat
[LOG 14:03:27.463] Load(Texture): Squad/Parts/Aero/cones/Cones
[LOG 14:03:27.466] Load(Texture): Squad/Parts/Aero/cones/Cones_Heat
[LOG 14:03:27.468] Load(Texture): Squad/Parts/Aero/fairings/AutoTruss
[LOG 14:03:27.470] Load(Texture): Squad/Parts/Aero/fairings/FairingBase
[LOG 14:03:27.472] Load(Texture): Squad/Parts/Aero/fairings/fairings_diff
[LOG 14:03:27.475] Load(Texture): Squad/Parts/Aero/HeatShield/Fairing
[LOG 14:03:27.477] Load(Texture): Squad/Parts/Aero/HeatShield/heatshield
[LOG 14:03:27.479] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 14:03:27.483] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShieldFairing
[LOG 14:03:27.485] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield_NRM
[LOG 14:03:27.490] Load(Texture): Squad/Parts/Aero/intakeRadialLong/Radial_long
[LOG 14:03:27.492] Load(Texture): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 14:03:27.494] Load(Texture): Squad/Parts/Aero/protectiveRocketNoseMk7/model000
[LOG 14:03:27.497] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 14:03:27.499] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake_Heat
[LOG 14:03:27.502] Load(Texture): Squad/Parts/Aero/shuttleWings/ShuttleWings
[LOG 14:03:27.518] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model000
[LOG 14:03:27.536] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model001
[LOG 14:03:27.539] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model000
[LOG 14:03:27.541] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model001
[LOG 14:03:27.544] Load(Texture): Squad/Parts/Aero/wingletDeltaDeluxe/model000
[LOG 14:03:27.546] Load(Texture): Squad/Parts/Aero/wings/Wings
[LOG 14:03:27.551] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model000
[LOG 14:03:27.553] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model001
[LOG 14:03:27.555] Load(Texture): Squad/Parts/Command/cupola/cupola_Emissive
[LOG 14:03:27.558] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_diff
[LOG 14:03:27.563] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_normal
[LOG 14:03:27.567] Load(Texture): Squad/Parts/Command/cupola/window
[LOG 14:03:27.569] Load(Texture): Squad/Parts/Command/externalCommandSeat/model000
[LOG 14:03:27.573] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin
[LOG 14:03:27.579] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_Illum
[LOG 14:03:27.581] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_n
[LOG 14:03:27.587] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/window
[LOG 14:03:27.589] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model000
[LOG 14:03:27.591] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model001
[LOG 14:03:27.594] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model000
[LOG 14:03:27.596] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model001
[LOG 14:03:27.599] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model002
[LOG 14:03:27.601] Load(Texture): Squad/Parts/Command/Mk1-2Pod/ladder
[LOG 14:03:27.602] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch NRM
[LOG 14:03:27.623] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch
[LOG 14:03:27.626] Load(Texture): Squad/Parts/Command/Mk1-2Pod/Mk1-2_illum
[LOG 14:03:27.628] Load(Texture): Squad/Parts/Command/Mk1-2Pod/walls
[LOG 14:03:27.631] Load(Texture): Squad/Parts/Command/Mk1-2Pod/window
[LOG 14:03:27.633] Load(Texture): Squad/Parts/Command/mk1Cockpits/GLOW
[LOG 14:03:27.636] Load(Texture): Squad/Parts/Command/mk1Cockpits/Mk1Cockpit
[LOG 14:03:27.641] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_diff
[LOG 14:03:27.646] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_normal
[LOG 14:03:27.648] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_psd_illum
[LOG 14:03:27.651] Load(Texture): Squad/Parts/Command/mk1pod/hatch
[LOG 14:03:27.652] Load(Texture): Squad/Parts/Command/mk1pod/ladderrung
[LOG 14:03:27.654] Load(Texture): Squad/Parts/Command/mk1pod/outer shell NRM
[LOG 14:03:27.657] Load(Texture): Squad/Parts/Command/mk1pod/outer shell
[LOG 14:03:27.659] Load(Texture): Squad/Parts/Command/mk1pod/window
[LOG 14:03:27.661] Load(Texture): Squad/Parts/Command/mk1pod/window_illum
[LOG 14:03:27.663] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_A
[LOG 14:03:27.667] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_Emissive
[LOG 14:03:27.670] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_normal
[LOG 14:03:27.674] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit
[LOG 14:03:27.684] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_Lum
[LOG 14:03:27.702] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_NRM
[LOG 14:03:27.711] Load(Texture): Squad/Parts/Command/mk2DroneCore/mk2Dronecore
[LOG 14:03:27.714] Load(Texture): Squad/Parts/Command/mk2LanderCan/Illum
[LOG 14:03:27.716] Load(Texture): Squad/Parts/Command/mk2LanderCan/ladder
[LOG 14:03:27.717] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell
[LOG 14:03:27.723] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell_n
[LOG 14:03:27.725] Load(Texture): Squad/Parts/Command/mk2LanderCan/window
[LOG 14:03:27.727] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle
[LOG 14:03:27.731] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle_LUM
[LOG 14:03:27.733] Load(Texture): Squad/Parts/Command/probeCoreCube/model000
[LOG 14:03:27.735] Load(Texture): Squad/Parts/Command/probeCoreCube/model001
[LOG 14:03:27.737] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_diff
[LOG 14:03:27.742] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_normal
[LOG 14:03:27.745] Load(Texture): Squad/Parts/Command/probeCoreOcto/model000
[LOG 14:03:27.747] Load(Texture): Squad/Parts/Command/probeCoreOcto/model001
[LOG 14:03:27.749] Load(Texture): Squad/Parts/Command/probeCoreOcto2/model000
[LOG 14:03:27.751] Load(Texture): Squad/Parts/Command/probeRoverBody/model000
[LOG 14:03:27.753] Load(Texture): Squad/Parts/Command/probeRoverBody/model001
[LOG 14:03:27.756] Load(Texture): Squad/Parts/Command/probeStackLarge/model000
[LOG 14:03:27.761] Load(Texture): Squad/Parts/Command/probeStackLarge/model001
[LOG 14:03:27.766] Load(Texture): Squad/Parts/Command/probeStackSmall/model000
[LOG 14:03:27.786] Load(Texture): Squad/Parts/Command/probeStackSmall/model001
[LOG 14:03:27.792] Load(Texture): Squad/Parts/Command/probeStackSphere/model000
[LOG 14:03:27.794] Load(Texture): Squad/Parts/Command/probeStackSphere/model001
[LOG 14:03:27.796] Load(Texture): Squad/Parts/CompoundParts/fuelLine/FTX-2 External Fuel Duct
[LOG 14:03:27.799] Load(Texture): Squad/Parts/CompoundParts/strutConnector/EAS-4 Strut Connector
[LOG 14:03:27.801] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model000
[LOG 14:03:27.803] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model001
[LOG 14:03:27.805] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model002
[LOG 14:03:27.807] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model000
[LOG 14:03:27.809] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model001
[LOG 14:03:27.812] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model002
[LOG 14:03:27.814] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model000
[LOG 14:03:27.816] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model001
[LOG 14:03:27.818] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model002
[LOG 14:03:27.820] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model000
[LOG 14:03:27.822] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model001
[LOG 14:03:27.825] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model002
[LOG 14:03:27.827] Load(Texture): Squad/Parts/Electrical/gigantorXlSolarArray/panel
[LOG 14:03:27.829] Load(Texture): Squad/Parts/Electrical/radialFlatSolarPanel/model000
[LOG 14:03:27.832] Load(Texture): Squad/Parts/Electrical/RTG/model000
[LOG 14:03:27.833] Load(Texture): Squad/Parts/Electrical/z-100Battery/model000
[LOG 14:03:27.835] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model000
[LOG 14:03:27.838] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model001
[LOG 14:03:27.840] Load(Texture): Squad/Parts/Electrical/z-200Battery/ksp_m_batteryPack_diff
[LOG 14:03:27.842] Load(Texture): Squad/Parts/Electrical/z-400Battery/model000
[LOG 14:03:27.844] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_diff
[LOG 14:03:27.846] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_normal
[LOG 14:03:27.849] Load(Texture): Squad/Parts/Engine/ionEngine/model000
[LOG 14:03:27.851] Load(Texture): Squad/Parts/Engine/jetEngines/Jet Engines
[LOG 14:03:27.856] Load(Texture): Squad/Parts/Engine/jetEngines/Jet_Heat
[LOG 14:03:27.859] Load(Texture): Squad/Parts/Engine/liquidEngine24-77/model000
[LOG 14:03:27.861] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_diff
[LOG 14:03:27.864] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_norm
[LOG 14:03:27.866] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_norm
[LOG 14:03:27.869] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_psd
[LOG 14:03:27.872] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike
[LOG 14:03:27.874] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike_Heat
[LOG 14:03:27.876] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/alternatebracket
[LOG 14:03:27.878] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/engine
[LOG 14:03:27.880] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1R/ksp_r_microEngine_diff
[LOG 14:03:27.882] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/bigfairing
[LOG 14:03:27.884] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3
[LOG 14:03:27.886] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_emissive
[LOG 14:03:27.889] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_n
[LOG 14:03:27.891] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model000
[LOG 14:03:27.918] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model001
[LOG 14:03:27.921] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model002
[LOG 14:03:27.923] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model003
[LOG 14:03:27.926] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model000
[LOG 14:03:27.928] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model001
[LOG 14:03:27.931] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model002
[LOG 14:03:27.933] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model000
[LOG 14:03:27.935] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model001
[LOG 14:03:27.937] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model002
[LOG 14:03:27.939] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model003
[LOG 14:03:27.942] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model000
[LOG 14:03:27.944] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model001
[LOG 14:03:27.946] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model002
[LOG 14:03:27.949] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model003
[LOG 14:03:27.951] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model004
[LOG 14:03:27.953] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 14:03:27.956] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud_Heat
[LOG 14:03:27.958] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model000
[LOG 14:03:27.960] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model001
[LOG 14:03:27.962] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model002
[LOG 14:03:27.965] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model003
[LOG 14:03:27.967] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_diff
[LOG 14:03:27.970] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_emissive
[LOG 14:03:27.973] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_diff
[LOG 14:03:27.977] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_norm
[LOG 14:03:27.982] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_normal
[LOG 14:03:27.985] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 14:03:27.987] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_GLOW
[LOG 14:03:27.989] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_NRM
[LOG 14:03:27.991] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_cm
[LOG 14:03:27.994] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_em
[LOG 14:03:27.996] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_nm
[LOG 14:03:27.999] Load(Texture): Squad/Parts/Engine/miniJet/SmallJet
[LOG 14:03:28.001] Load(Texture): Squad/Parts/Engine/OMSEngine/engineoms 1
[LOG 14:03:28.003] Load(Texture): Squad/Parts/Engine/rapierEngine/rapierDiffuse
[LOG 14:03:28.006] Load(Texture): Squad/Parts/Engine/rapierEngine/rapieremit
[LOG 14:03:28.023] Load(Texture): Squad/Parts/Engine/Size2LFB/Size2LFBEmissive
[LOG 14:03:28.025] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_cm
[LOG 14:03:28.031] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_nm
[LOG 14:03:28.036] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/decoupler_and_adaptor_cm
[LOG 14:03:28.040] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineDiffuse
[LOG 14:03:28.046] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineEmissive
[LOG 14:03:28.048] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineNormal
[LOG 14:03:28.051] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/ClusterEngineEmit
[LOG 14:03:28.053] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_cm
[LOG 14:03:28.058] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_nm
[LOG 14:03:28.063] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model000
[LOG 14:03:28.066] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model001
[LOG 14:03:28.068] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model002
[LOG 14:03:28.071] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model000
[LOG 14:03:28.076] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model001
[LOG 14:03:28.078] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model002
[LOG 14:03:28.080] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5
[LOG 14:03:28.083] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5_N_NRM
[LOG 14:03:28.101] Load(Texture): Squad/Parts/Engine/solidBoosterSep/model000
[LOG 14:03:28.103] Load(Texture): Squad/Parts/Engine/vernorEngine/vernierEngine3UV
[LOG 14:03:28.105] Load(Texture): Squad/Parts/FuelTank/adapterTanks/Mk3Adapters
[LOG 14:03:28.114] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model000
[LOG 14:03:28.117] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model001
[LOG 14:03:28.121] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model000
[LOG 14:03:28.122] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model001
[LOG 14:03:28.124] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank
[LOG 14:03:28.129] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank_n
[LOG 14:03:28.133] Load(Texture): Squad/Parts/FuelTank/fuelTankT100/tank4
[LOG 14:03:28.136] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3
[LOG 14:03:28.138] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3_n
[LOG 14:03:28.141] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model000
[LOG 14:03:28.143] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model001
[LOG 14:03:28.147] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model000
[LOG 14:03:28.149] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model001
[LOG 14:03:28.152] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model000
[LOG 14:03:28.155] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model001
[LOG 14:03:28.157] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model000
[LOG 14:03:28.160] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model001
[LOG 14:03:28.162] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model000
[LOG 14:03:28.166] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model001
[LOG 14:03:28.169] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model000
[LOG 14:03:28.189] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model001
[LOG 14:03:28.192] Load(Texture): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 14:03:28.194] Load(Texture): Squad/Parts/FuelTank/mk2Adapters/mk2adapters1m
[LOG 14:03:28.199] Load(Texture): Squad/Parts/FuelTank/mk2FuselageLong/mk2Fuselage
[LOG 14:03:28.203] Load(Texture): Squad/Parts/FuelTank/mk2FuselageShort/mk2FuselageShort
[LOG 14:03:28.209] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage
[LOG 14:03:28.218] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage_LUM
[LOG 14:03:28.221] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model000
[LOG 14:03:28.223] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model001
[LOG 14:03:28.225] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_diff
[LOG 14:03:28.228] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_normal
[LOG 14:03:28.230] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/FL-R25 RCS Fuel Tank_D
[LOG 14:03:28.233] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/FL-R25 RCS Fuel Tank_N
[LOG 14:03:28.235] Load(Texture): Squad/Parts/FuelTank/RCSTankRadial/model000
[LOG 14:03:28.237] Load(Texture): Squad/Parts/FuelTank/RCStankRadialLong/ksp_r_rcsCylTank_diff
[LOG 14:03:28.240] Load(Texture): Squad/Parts/FuelTank/Size3Tanks/fueltTanks_cm
[LOG 14:03:28.244] Load(Texture): Squad/Parts/FuelTank/xenonTank/model000
[LOG 14:03:28.246] Load(Texture): Squad/Parts/FuelTank/xenonTank/model001
[LOG 14:03:28.249] Load(Texture): Squad/Parts/FuelTank/xenonTankLarge/tank
[LOG 14:03:28.267] Load(Texture): Squad/Parts/FuelTank/xenonTankRadial/ksp_r_xenonTank_diff
[LOG 14:03:28.269] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat
[LOG 14:03:28.272] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_glow
[LOG 14:03:28.274] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_N_NRM
[LOG 14:03:28.279] Load(Texture): Squad/Parts/Misc/AsteroidDay/default
[LOG 14:03:28.281] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe
[LOG 14:03:28.283] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe_NORM_NRM
[LOG 14:03:28.286] Load(Texture): Squad/Parts/Resources/FuelCell/FCLamp
[LOG 14:03:28.288] Load(Texture): Squad/Parts/Resources/FuelCell/FuelCellRack
[LOG 14:03:28.290] Load(Texture): Squad/Parts/Resources/FuelCell/fuellcell
[LOG 14:03:28.292] Load(Texture): Squad/Parts/Resources/ISRU/Processor_Large
[LOG 14:03:28.294] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_diff
[LOG 14:03:28.300] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_norm
[LOG 14:03:28.305] Load(Texture): Squad/Parts/Resources/MiniDrill/DustParticle
[LOG 14:03:28.307] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_diff
[LOG 14:03:28.312] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_PSD
[LOG 14:03:28.318] Load(Texture): Squad/Parts/Resources/MiniISRU/ksp_s_processorSmall_diff
[LOG 14:03:28.321] Load(Texture): Squad/Parts/Resources/OrbitalScanner/detector
[LOG 14:03:28.323] Load(Texture): Squad/Parts/Resources/RadialDrill/DustParticle
[LOG 14:03:28.325] Load(Texture): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 14:03:28.328] Load(Texture): Squad/Parts/Resources/RadialTank/ksp_r_resourceContainer_psd_2
[LOG 14:03:28.330] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_diff
[LOG 14:03:28.335] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_normal
[LOG 14:03:28.355] Load(Texture): Squad/Parts/Resources/SurfaceScanner/ksp_r_samplerAir_diff
[LOG 14:03:28.359] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish
[LOG 14:03:28.362] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish_n
[LOG 14:03:28.367] Load(Texture): Squad/Parts/Science/AtmosphereSensor/ksp_r_hydroscoop_diff
[LOG 14:03:28.371] Load(Texture): Squad/Parts/Science/GooExperiment/GooExperiment
[LOG 14:03:28.376] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab
[LOG 14:03:28.380] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab_glow
[LOG 14:03:28.390] Load(Texture): Squad/Parts/Science/LargeCrewedLab/window
[LOG 14:03:28.392] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 14:03:28.396] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_emit
[LOG 14:03:28.414] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_nrm
[LOG 14:03:28.417] Load(Texture): Squad/Parts/Science/MaterialBay/wires
[LOG 14:03:28.419] Load(Texture): Squad/Parts/Science/ScienceBox/Container
[LOG 14:03:28.421] Load(Texture): Squad/Parts/Science/sensorAccelerometer/model000
[LOG 14:03:28.423] Load(Texture): Squad/Parts/Science/sensorBarometer/model000
[LOG 14:03:28.425] Load(Texture): Squad/Parts/Science/sensorGravimeter/model000
[LOG 14:03:28.427] Load(Texture): Squad/Parts/Science/sensorThermometer/model000
[LOG 14:03:28.429] Load(Texture): Squad/Parts/Structural/adapterLargeSmallBi/ksp_l_biAdapter_diff
[LOG 14:03:28.432] Load(Texture): Squad/Parts/Structural/adapterLargeSmallQuad/ksp_l_quadAdapter_diff
[LOG 14:03:28.435] Load(Texture): Squad/Parts/Structural/adapterLargeSmallTri/ksp_l_triAdapter_diff
[LOG 14:03:28.439] Load(Texture): Squad/Parts/Structural/adapterSmallMiniShort/ksp_s_adapterShort_diff
[LOG 14:03:28.441] Load(Texture): Squad/Parts/Structural/adapterSmallMiniTall/ksp_s_adapterLong_diff
[LOG 14:03:28.444] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1Structural
[LOG 14:03:28.449] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1StructuralHeat
[LOG 14:03:28.455] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_cm
[LOG 14:03:28.460] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_nm
[LOG 14:03:28.465] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_cm
[LOG 14:03:28.470] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_nm
[LOG 14:03:28.475] Load(Texture): Squad/Parts/Structural/stationHub/model000
[LOG 14:03:28.494] Load(Texture): Squad/Parts/Structural/stationHub/model001
[LOG 14:03:28.496] Load(Texture): Squad/Parts/Structural/structuralIBeam200/model000
[LOG 14:03:28.498] Load(Texture): Squad/Parts/Structural/structuralIBeam200Pocket/model000
[LOG 14:03:28.500] Load(Texture): Squad/Parts/Structural/structuralIBeam650/model000
[LOG 14:03:28.502] Load(Texture): Squad/Parts/Structural/structuralMicronode/model000
[LOG 14:03:28.505] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model000
[LOG 14:03:28.507] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model001
[LOG 14:03:28.509] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model000
[LOG 14:03:28.511] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model001
[LOG 14:03:28.514] Load(Texture): Squad/Parts/Structural/structuralPylons/Pylons
[LOG 14:03:28.516] Load(Texture): Squad/Parts/Structural/strutCubicOcto/cubestrut
[LOG 14:03:28.518] Load(Texture): Squad/Parts/Structural/strutOcto/model000
[LOG 14:03:28.520] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model000
[LOG 14:03:28.522] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model001
[LOG 14:03:28.525] Load(Texture): Squad/Parts/Structural/trussGirderL/model000
[LOG 14:03:28.528] Load(Texture): Squad/Parts/Structural/trussGirderXL/model000
[LOG 14:03:28.531] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator
[LOG 14:03:28.534] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator_N_NRM
[LOG 14:03:28.539] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel
[LOG 14:03:28.542] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel_N_NRM
[LOG 14:03:28.546] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_array
[LOG 14:03:28.549] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_v2_diff
[LOG 14:03:28.551] Load(Texture): Squad/Parts/Utility/commDish88-88/model000
[LOG 14:03:28.553] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 14:03:28.559] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna_Emit
[LOG 14:03:28.561] Load(Texture): Squad/Parts/Utility/commsDish16/model000
[LOG 14:03:28.563] Load(Texture): Squad/Parts/Utility/decouplerRadialHDM/model000
[LOG 14:03:28.565] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model000
[LOG 14:03:28.567] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model001
[LOG 14:03:28.569] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-70/model000
[LOG 14:03:28.571] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model000
[LOG 14:03:28.574] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model001
[LOG 14:03:28.576] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-2C/model000
[LOG 14:03:28.578] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-XL/model000
[LOG 14:03:28.581] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model000
[LOG 14:03:28.583] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model001
[LOG 14:03:28.601] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model000
[LOG 14:03:28.603] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model001
[LOG 14:03:28.606] Load(Texture): Squad/Parts/Utility/decouplerStackTR-2V/model000
[LOG 14:03:28.608] Load(Texture): Squad/Parts/Utility/DirectAntennas/MiniAntenna
[LOG 14:03:28.610] Load(Texture): Squad/Parts/Utility/dockingPort/model000
[LOG 14:03:28.612] Load(Texture): Squad/Parts/Utility/dockingPort/model001
[LOG 14:03:28.614] Load(Texture): Squad/Parts/Utility/dockingPortInline/model000
[LOG 14:03:28.617] Load(Texture): Squad/Parts/Utility/dockingPortInline/model001
[LOG 14:03:28.620] Load(Texture): Squad/Parts/Utility/dockingPortInline/model002
[LOG 14:03:28.622] Load(Texture): Squad/Parts/Utility/dockingPortJr/model000
[LOG 14:03:28.624] Load(Texture): Squad/Parts/Utility/dockingPortJr/model001
[LOG 14:03:28.626] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model000
[LOG 14:03:28.629] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model001
[LOG 14:03:28.631] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model002
[LOG 14:03:28.633] Load(Texture): Squad/Parts/Utility/dockingPortSr/model000
[LOG 14:03:28.638] Load(Texture): Squad/Parts/Utility/dockingPortSr/model001
[LOG 14:03:28.643] Load(Texture): Squad/Parts/Utility/GrapplingDevice/grabberDiffuse
[LOG 14:03:28.645] Load(Texture): Squad/Parts/Utility/GrapplingDevice/window
[LOG 14:03:28.647] Load(Texture): Squad/Parts/Utility/ladderRadial/model000
[LOG 14:03:28.649] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model000
[LOG 14:03:28.652] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model001
[LOG 14:03:28.657] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model002
[LOG 14:03:28.660] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model000
[LOG 14:03:28.665] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model001
[LOG 14:03:28.670] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff
[LOG 14:03:28.689] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg
[LOG 14:03:28.691] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg
[LOG 14:03:28.693] Load(Texture): Squad/Parts/Utility/landingLegLT-5/model000
[LOG 14:03:28.695] Load(Texture): Squad/Parts/Utility/largeAdapter/model000
[LOG 14:03:28.697] Load(Texture): Squad/Parts/Utility/largeAdapterShort/model000
[LOG 14:03:28.700] Load(Texture): Squad/Parts/Utility/launchClamp1/model000
[LOG 14:03:28.702] Load(Texture): Squad/Parts/Utility/launchClamp1/model001
[LOG 14:03:28.704] Load(Texture): Squad/Parts/Utility/launchEscapeSystem/LES_Diffuse
[LOG 14:03:28.709] Load(Texture): Squad/Parts/Utility/linearRCS/rcs
[LOG 14:03:28.711] Load(Texture): Squad/Parts/Utility/mk2CargoBay/mk2CargoBay
[LOG 14:03:28.715] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin
[LOG 14:03:28.718] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin_LUM
[LOG 14:03:28.720] Load(Texture): Squad/Parts/Utility/mk2DockingPort/mk2DockingPort
[LOG 14:03:28.726] Load(Texture): Squad/Parts/Utility/mk3CargoBay/Mk3CargoBay
[LOG 14:03:28.730] Load(Texture): Squad/Parts/Utility/parachuteMk1/model000
[LOG 14:03:28.732] Load(Texture): Squad/Parts/Utility/parachuteMk1/model001
[LOG 14:03:28.735] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model000
[LOG 14:03:28.737] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model001
[LOG 14:03:28.739] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model000
[LOG 14:03:28.742] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model001
[LOG 14:03:28.744] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model000
[LOG 14:03:28.746] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model001
[LOG 14:03:28.748] Load(Texture): Squad/Parts/Utility/parachuteMk25/model000
[LOG 14:03:28.750] Load(Texture): Squad/Parts/Utility/parachuteMk25/model001
[LOG 14:03:28.752] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model000
[LOG 14:03:28.755] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model001
[LOG 14:03:28.757] Load(Texture): Squad/Parts/Utility/rcsBlockRV-105/rcs
[LOG 14:03:28.759] Load(Texture): Squad/Parts/Utility/RelayAntennas/DishAntenna
[LOG 14:03:28.762] Load(Texture): Squad/Parts/Utility/RelayAntennas/MiniAntenna
[LOG 14:03:28.764] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay
[LOG 14:03:28.767] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay_N_NRM
[LOG 14:03:28.769] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1
[LOG 14:03:28.771] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1_em
[LOG 14:03:28.788] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2
[LOG 14:03:28.790] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2_em
[LOG 14:03:28.792] Load(Texture): Squad/Parts/Utility/stackBiCoupler/model000
[LOG 14:03:28.794] Load(Texture): Squad/Parts/Utility/stackQuadCoupler/ksp_s_quadCoupler_diff
[LOG 14:03:28.798] Load(Texture): Squad/Parts/Utility/stackTriCoupler/model000
[LOG 14:03:28.800] Load(Texture): Squad/Parts/Wheel/LandingGear/Flare
[LOG 14:03:28.802] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear
[LOG 14:03:28.806] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear_Emissive
[LOG 14:03:28.808] Load(Texture): Squad/Parts/Wheel/roverWheelM1/model000
[LOG 14:03:28.810] Load(Texture): Squad/Parts/Wheel/roverWheelM1/roverwheel1
[LOG 14:03:28.830] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model000
[LOG 14:03:28.832] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model001
[LOG 14:03:28.834] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2
[LOG 14:03:28.841] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2_n
[LOG 14:03:28.856] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_diff
[LOG 14:03:28.862] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_normal
[LOG 14:03:28.866] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_diff
[LOG 14:03:28.871] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_normal
[LOG 14:03:28.877] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount
[LOG 14:03:28.881] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount_n
[LOG 14:03:28.900] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel
[LOG 14:03:28.902] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel_n
[LOG 14:03:28.904] Load(Texture): Squad/Props/AltimeterThreeHands/model000
[LOG 14:03:28.906] Load(Texture): Squad/Props/AltimeterThreeHands/model001
[LOG 14:03:28.908] Load(Texture): Squad/Props/AtmosphereDepth/model000
[LOG 14:03:28.910] Load(Texture): Squad/Props/AtmosphereDepth/model001
[LOG 14:03:28.912] Load(Texture): Squad/Props/AxisIndicator/model000
[LOG 14:03:28.914] Load(Texture): Squad/Props/buttonsGeneric/ButtonsAndSwitches
[LOG 14:03:28.915] Load(Texture): Squad/Props/ButtonSquare/model000
[LOG 14:03:28.918] Load(Texture): Squad/Props/circularButton/model000
[LOG 14:03:28.920] Load(Texture): Squad/Props/Compass/model000
[LOG 14:03:28.923] Load(Texture): Squad/Props/directionalKnob/model000
[LOG 14:03:28.925] Load(Texture): Squad/Props/directionalKnob2/model000
[LOG 14:03:28.927] Load(Texture): Squad/Props/IndicatorPanel/model000
[LOG 14:03:28.929] Load(Texture): Squad/Props/IndicatorPanel/model001
[LOG 14:03:28.931] Load(Texture): Squad/Props/IVANavBall/Arrows8dir
[LOG 14:03:28.933] Load(Texture): Squad/Props/IVANavBall/IVANavBall
[LOG 14:03:28.934] Load(Texture): Squad/Props/IVANavBall/IVANavBall_Glow
[LOG 14:03:28.936] Load(Texture): Squad/Props/IVANavBall/ManeuverNode_vectors
[LOG 14:03:28.939] Load(Texture): Squad/Props/IVANavBall/navball2
[LOG 14:03:28.940] Load(Texture): Squad/Props/IVANavBall/navBall_DV_IVA
[LOG 14:03:28.942] Load(Texture): Squad/Props/IVANavBall/navBall_vectors_IVA
[LOG 14:03:28.953] Load(Texture): Squad/Props/ledPanelSpeed/model000
[LOG 14:03:28.955] Load(Texture): Squad/Props/ledPanelSpeed/model001
[LOG 14:03:28.957] Load(Texture): Squad/Props/Monitor/Emissives
[LOG 14:03:28.959] Load(Texture): Squad/Props/Monitor/Emissives_glow
[LOG 14:03:28.961] Load(Texture): Squad/Props/Monitor/Monitor
[LOG 14:03:28.963] Load(Texture): Squad/Props/NavBall/model000
[LOG 14:03:28.965] Load(Texture): Squad/Props/NavBall/model001
[LOG 14:03:28.967] Load(Texture): Squad/Props/NavBall/model002
[LOG 14:03:28.969] Load(Texture): Squad/Props/NavBall/model003
[LOG 14:03:28.971] Load(Texture): Squad/Props/PropsGeneric/propsGeneric
[LOG 14:03:28.976] Load(Texture): Squad/Props/pullSwitch/model000
[LOG 14:03:28.978] Load(Texture): Squad/Props/pullSwitch/model001
[LOG 14:03:28.979] Load(Texture): Squad/Props/radarAltitude/model000
[LOG 14:03:28.982] Load(Texture): Squad/Props/squareButton/model000
[LOG 14:03:28.984] Load(Texture): Squad/Props/standingSwitch/model000
[LOG 14:03:28.986] Load(Texture): Squad/Props/standingSwitch/model001
[LOG 14:03:28.988] Load(Texture): Squad/Props/switch/model000
[LOG 14:03:28.990] Load(Texture): Squad/Props/switchGuard/model000
[LOG 14:03:28.992] Load(Texture): Squad/Props/switchWithGuards/model000
[LOG 14:03:28.994] Load(Texture): Squad/Props/switchWithGuards/model001
[LOG 14:03:28.996] Load(Texture): Squad/Props/switchWithGuards/model002
[LOG 14:03:28.998] Load(Texture): Squad/Props/throttle/model000
[LOG 14:03:29.000] Load(Texture): Squad/Props/throttle/model001
[LOG 14:03:29.005] Load(Texture): Squad/Props/VSI/model000
[LOG 14:03:29.007] Load(Texture): Squad/Spaces/crewCabinInternals/model000
[LOG 14:03:29.009] Load(Texture): Squad/Spaces/crewCabinInternals/model001
[LOG 14:03:29.019] Load(Texture): Squad/Spaces/crewCabinInternals/model002
[LOG 14:03:29.021] Load(Texture): Squad/Spaces/crewCabinInternals/model003
[LOG 14:03:29.026] Load(Texture): Squad/Spaces/crewCabinInternals/model004
[LOG 14:03:29.028] Load(Texture): Squad/Spaces/crewCabinInternals/model005
[LOG 14:03:29.048] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_diff
[LOG 14:03:29.065] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_normal
[LOG 14:03:29.083] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_windows_alpha
[LOG 14:03:29.104] Load(Texture): Squad/Spaces/cupolaInternal/pilot Seat
[LOG 14:03:29.108] Load(Texture): Squad/Spaces/GenericSpace1/model000
[LOG 14:03:29.113] Load(Texture): Squad/Spaces/GenericSpace1/model001
[LOG 14:03:29.118] Load(Texture): Squad/Spaces/GenericSpace1/model002
[LOG 14:03:29.122] Load(Texture): Squad/Spaces/GenericSpace1/model003
[LOG 14:03:29.127] Load(Texture): Squad/Spaces/GenericSpace1/model004
[LOG 14:03:29.131] Load(Texture): Squad/Spaces/GenericSpace1/model005
[LOG 14:03:29.137] Load(Texture): Squad/Spaces/GenericSpace3/model000
[LOG 14:03:29.142] Load(Texture): Squad/Spaces/GenericSpace3/model001
[LOG 14:03:29.144] Load(Texture): Squad/Spaces/GenericSpace3/model002
[LOG 14:03:29.149] Load(Texture): Squad/Spaces/GenericSpace3/model003
[LOG 14:03:29.168] Load(Texture): Squad/Spaces/GenericSpace3/model004
[LOG 14:03:29.174] Load(Texture): Squad/Spaces/GenericSpace3/model005
[LOG 14:03:29.178] Load(Texture): Squad/Spaces/GenericSpace3/model006
[LOG 14:03:29.181] Load(Texture): Squad/Spaces/GenericSpace3/model007
[LOG 14:03:29.186] Load(Texture): Squad/Spaces/landerCabinInternals/model000
[LOG 14:03:29.190] Load(Texture): Squad/Spaces/landerCabinInternals/model001
[LOG 14:03:29.195] Load(Texture): Squad/Spaces/landerCabinInternals/model002
[LOG 14:03:29.201] Load(Texture): Squad/Spaces/landerCabinInternals/model003
[LOG 14:03:29.210] Load(Texture): Squad/Spaces/landerCabinInternals/model004
[LOG 14:03:29.231] Load(Texture): Squad/Spaces/landerCabinInternals/model005
[LOG 14:03:29.233] Load(Texture): Squad/Spaces/landerCabinInternals/model006
[LOG 14:03:29.238] Load(Texture): Squad/Spaces/landerCabinInternals/model007
[LOG 14:03:29.240] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_diff
[LOG 14:03:29.257] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_normal
[LOG 14:03:29.279] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_window_alpha
[LOG 14:03:29.299] Load(Texture): Squad/Spaces/landerCabinSmallInternal/pilot Seat
[LOG 14:03:29.304] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/Glass
[LOG 14:03:29.307] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int
[LOG 14:03:29.324] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int_n_NRM
[LOG 14:03:29.328] Load(Texture): Squad/Spaces/mk1CabinInternal/Cabin_Lightmap
[LOG 14:03:29.330] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric
[LOG 14:03:29.332] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric_NRM
[LOG 14:03:29.334] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric
[LOG 14:03:29.336] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric_NRM
[LOG 14:03:29.338] Load(Texture): Squad/Spaces/mk1CockpitInternal/IVAMAP
[LOG 14:03:29.342] Load(Texture): Squad/Spaces/mk1CockpitInternal/Windows
[LOG 14:03:29.344] Load(Texture): Squad/Spaces/mk1InlineInternal/Canopy
[LOG 14:03:29.350] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric
[LOG 14:03:29.352] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric_NRM
[LOG 14:03:29.354] Load(Texture): Squad/Spaces/mk1InlineInternal/Mk1Inline_Lightmap
[LOG 14:03:29.357] Load(Texture): Squad/Spaces/mk1PodCockpit/model000
[LOG 14:03:29.362] Load(Texture): Squad/Spaces/mk1PodCockpit/model001
[LOG 14:03:29.382] Load(Texture): Squad/Spaces/mk1PodCockpit/model002
[LOG 14:03:29.387] Load(Texture): Squad/Spaces/mk1PodCockpit/model003
[LOG 14:03:29.392] Load(Texture): Squad/Spaces/mk1PodCockpit/model004
[LOG 14:03:29.401] Load(Texture): Squad/Spaces/mk1PodCockpit/model005
[LOG 14:03:29.404] Load(Texture): Squad/Spaces/mk1PodCockpit/model006
[LOG 14:03:29.409] Load(Texture): Squad/Spaces/mk1PodCockpit/model007
[LOG 14:03:29.411] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/CargoBagA
[LOG 14:03:29.413] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Mk2StandardIVA
[LOG 14:03:29.416] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Pilotseat
[LOG 14:03:29.418] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Windows
[LOG 14:03:29.420] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/CargoBagA
[LOG 14:03:29.422] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Glass
[LOG 14:03:29.425] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Mk2StandardIVA
[LOG 14:03:29.428] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Pilotseat
[LOG 14:03:29.430] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric
[LOG 14:03:29.435] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric_NRM
[LOG 14:03:29.440] Load(Texture): Squad/Spaces/mk2InlineInternal/Mk2InlineLightmap
[LOG 14:03:29.460] Load(Texture): Squad/Spaces/mk2InlineInternal/propsGeneric
[LOG 14:03:29.466] Load(Texture): Squad/Spaces/MK3CockpitInternal/Glass
[LOG 14:03:29.468] Load(Texture): Squad/Spaces/MK3CockpitInternal/Mk2StandardIVA
[LOG 14:03:29.471] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Glass
[LOG 14:03:29.474] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/GlassMK3CC
[LOG 14:03:29.476] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Mk2StandardIVA
[LOG 14:03:29.479] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 14:03:29.483] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int_n
[LOG 14:03:29.485] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Pilotseat
[LOG 14:03:29.488] Load(Texture): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 14:03:29.490] Load(Texture): Squad/Spaces/PodCockpit/model000
[LOG 14:03:29.495] Load(Texture): Squad/Spaces/PodCockpit/model001
[LOG 14:03:29.499] Load(Texture): Squad/Spaces/PodCockpit/model002
[LOG 14:03:29.504] Load(Texture): Squad/Spaces/PodCockpit/model003
[LOG 14:03:29.509] Load(Texture): Squad/Spaces/PodCockpit/model004
[LOG 14:03:29.513] Load(Texture): Squad/Spaces/PodCockpit/model005
[LOG 14:03:29.534] Load(Texture): Squad/Spaces/PodCockpit/model006
[LOG 14:03:29.537] Load(Texture): Squad/Spaces/PodCockpit/model007
[LOG 14:03:29.542] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric
[LOG 14:03:29.547] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric_NRM
[LOG 14:03:29.551] Load(Texture): Squad/Strategies/Icons/AggressiveNegotiations
[LOG 14:03:29.561] Load(Texture): Squad/Strategies/Icons/AppreciationCampaign
[LOG 14:03:29.572] Load(Texture): Squad/Strategies/Icons/BailOutGrant
[LOG 14:03:29.582] Load(Texture): Squad/Strategies/Icons/FundraisingCampaign
[LOG 14:03:29.592] Load(Texture): Squad/Strategies/Icons/LeadershipInitiative
[LOG 14:03:29.602] Load(Texture): Squad/Strategies/Icons/OpenSourceTechProgram
[LOG 14:03:29.612] Load(Texture): Squad/Strategies/Icons/OutsourcedResearch
[LOG 14:03:29.621] Load(Texture): Squad/Strategies/Icons/PatentsLicensing
[LOG 14:03:29.631] Load(Texture): Squad/Strategies/Icons/RecoveryTransponderFitting
[LOG 14:03:29.639] Load(Texture): Squad/Strategies/Icons/ResearchRightsSellOut
[LOG 14:03:29.648] Load(Texture): Squad/Strategies/Icons/UnpaidResearchProgram
[LOG 14:03:29.657] Load(Texture): Squad/Tutorials/ChuteColors
[LOG 14:03:29.666] Load(Texture): Squad/Tutorials/EditorCoM
[LOG 14:03:29.675] Load(Texture): Squad/Tutorials/EditorSnap
[LOG 14:03:29.684] Load(Texture): Squad/Tutorials/EditorSnap4x
[LOG 14:03:29.693] Load(Texture): Squad/Tutorials/EditorSymm
[LOG 14:03:29.703] Load(Texture): Squad/Tutorials/StagingStack
[LOG 14:03:29.713] Load(Texture): Squad/Tutorials/YPRDiagram
[LOG 14:03:29.726] Load(Model): Squad/FX/afterburner_flame
[LOG 14:03:29.736] Load(Model): Squad/FX/afterburner_shock
[LOG 14:03:29.739] Load(Model): Squad/FX/diamondBlue
[LOG 14:03:29.741] Load(Model): Squad/FX/exhaustFlames_blue
[LOG 14:03:29.743] Load(Model): Squad/FX/hydroLOXFlame
[LOG 14:03:29.745] Load(Model): Squad/FX/IonPlume
[LOG 14:03:29.747] Load(Model): Squad/FX/ks1_Exhaust
[LOG 14:03:29.749] Load(Model): Squad/FX/ks25_Exhaust
[LOG 14:03:29.751] Load(Model): Squad/FX/ksX_Exhaust
[LOG 14:03:29.753] Load(Model): Squad/FX/LES_Thruster
[LOG 14:03:29.756] Load(Model): Squad/FX/Monoprop_big
[LOG 14:03:29.758] Load(Model): Squad/FX/Monoprop_medium
[LOG 14:03:29.760] Load(Model): Squad/FX/Monoprop_small
[LOG 14:03:29.762] Load(Model): Squad/FX/shockExhaust_blue
[LOG 14:03:29.764] Load(Model): Squad/FX/shockExhaust_blue_small
[LOG 14:03:29.766] Load(Model): Squad/FX/shockExhaust_red_small
[LOG 14:03:29.768] Load(Model): Squad/FX/SRB_Large
[LOG 14:03:29.770] Load(Model): Squad/FX/SRB_LargeSparks
[LOG 14:03:29.772] Load(Model): Squad/Parts/Aero/aerodynamicNoseCone/model
[LOG 14:03:29.781] Load(Model): Squad/Parts/Aero/airbrake/Airbrake
[LOG 14:03:29.787] Load(Model): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 14:03:29.791] Load(Model): Squad/Parts/Aero/airlinerWings/ControlSurface
[LOG 14:03:29.794] Load(Model): Squad/Parts/Aero/airlinerWings/MainWing
[LOG 14:03:29.797] Load(Model): Squad/Parts/Aero/airlinerWings/TailFin
[LOG 14:03:29.804] Load(Model): Squad/Parts/Aero/airplaneFins/AdvCanard
[LOG 14:03:29.807] Load(Model): Squad/Parts/Aero/airplaneFins/Canard
[LOG 14:03:29.810] Load(Model): Squad/Parts/Aero/airplaneFins/Swept
[LOG 14:03:29.812] Load(Model): Squad/Parts/Aero/airplaneFins/TailFin
[LOG 14:03:29.815] Load(Model): Squad/Parts/Aero/basicFin/basicFin
[LOG 14:03:29.817] Load(Model): Squad/Parts/Aero/circularIntake/CircularIntake
[LOG 14:03:29.824] Load(Model): Squad/Parts/Aero/circularIntake/ConeIntake
[LOG 14:03:29.828] Load(Model): Squad/Parts/Aero/cones/AvioCone
[LOG 14:03:29.831] Load(Model): Squad/Parts/Aero/cones/ConeA
[LOG 14:03:29.834] Load(Model): Squad/Parts/Aero/cones/ConeB
[LOG 14:03:29.837] Load(Model): Squad/Parts/Aero/cones/NCS
[LOG 14:03:29.841] Load(Model): Squad/Parts/Aero/cones/TailA
[LOG 14:03:29.844] Load(Model): Squad/Parts/Aero/cones/TailB
[LOG 14:03:29.847] Load(Model): Squad/Parts/Aero/cones/TinyCone
[LOG 14:03:29.849] Load(Model): Squad/Parts/Aero/fairings/AutoTruss
[LOG 14:03:29.857] Load(Model): Squad/Parts/Aero/fairings/fairingSize1
[LOG 14:03:29.861] Load(Model): Squad/Parts/Aero/fairings/fairingSize2
[LOG 14:03:29.864] Load(Model): Squad/Parts/Aero/fairings/fairingSize3
[LOG 14:03:29.868] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield0
[LOG 14:03:29.872] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield1
[LOG 14:03:29.877] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield2
[LOG 14:03:29.882] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield3
[LOG 14:03:29.887] Load(Model): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 14:03:29.900] Load(Model): Squad/Parts/Aero/intakeRadialLong/IntakeRadial
[LOG 14:03:29.903] Load(Model): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 14:03:29.906] Load(Model): Squad/Parts/Aero/protectiveRocketNoseMk7/model
[LOG 14:03:29.910] Load(Model): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 14:03:29.913] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleDeltaWing
[LOG 14:03:29.916] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonA
[LOG 14:03:29.919] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonB
[LOG 14:03:29.921] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleRudder
[LOG 14:03:29.924] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleStrake
[LOG 14:03:29.927] Load(Model): Squad/Parts/Aero/wingletAV-R8/model
[LOG 14:03:29.930] Load(Model): Squad/Parts/Aero/wingletAV-T1/model
[LOG 14:03:29.932] Load(Model): Squad/Parts/Aero/wingletDeltaDeluxe/model
[LOG 14:03:29.934] Load(Model): Squad/Parts/Aero/wings/connector1
[LOG 14:03:29.937] Load(Model): Squad/Parts/Aero/wings/connector2
[LOG 14:03:29.939] Load(Model): Squad/Parts/Aero/wings/connector3
[LOG 14:03:29.941] Load(Model): Squad/Parts/Aero/wings/connector4
[LOG 14:03:29.943] Load(Model): Squad/Parts/Aero/wings/connector5
[LOG 14:03:29.945] Load(Model): Squad/Parts/Aero/wings/delta
[LOG 14:03:29.948] Load(Model): Squad/Parts/Aero/wings/delta_small
[LOG 14:03:29.950] Load(Model): Squad/Parts/Aero/wings/elevon1
[LOG 14:03:29.952] Load(Model): Squad/Parts/Aero/wings/elevon2
[LOG 14:03:29.955] Load(Model): Squad/Parts/Aero/wings/elevon3
[LOG 14:03:29.957] Load(Model): Squad/Parts/Aero/wings/elevon4
[LOG 14:03:29.959] Load(Model): Squad/Parts/Aero/wings/elevon5
[LOG 14:03:29.961] Load(Model): Squad/Parts/Aero/wings/strake
[LOG 14:03:29.963] Load(Model): Squad/Parts/Aero/wings/structural1
[LOG 14:03:29.966] Load(Model): Squad/Parts/Aero/wings/structural2
[LOG 14:03:29.968] Load(Model): Squad/Parts/Aero/wings/structural3
[LOG 14:03:29.970] Load(Model): Squad/Parts/Aero/wings/structural4
[LOG 14:03:29.973] Load(Model): Squad/Parts/Aero/wings/swept1
[LOG 14:03:29.975] Load(Model): Squad/Parts/Aero/wings/swept2
[LOG 14:03:29.977] Load(Model): Squad/Parts/Command/advancedSasModuleLarge/model
[LOG 14:03:29.983] Load(Model): Squad/Parts/Command/cupola/model
[LOG 14:03:29.993] Load(Model): Squad/Parts/Command/externalCommandSeat/model
[LOG 14:03:30.006] Load(Model): Squad/Parts/Command/hitchhikerStorageContainer/model
[LOG 14:03:30.012] Load(Model): Squad/Parts/Command/inlineAdvancedStabilizer/model
[LOG 14:03:30.015] Load(Model): Squad/Parts/Command/inlineReactionWheel/model
[LOG 14:03:30.019] Load(Model): Squad/Parts/Command/Mk1-2Pod/model
[LOG 14:03:30.024] Load(Model): Squad/Parts/Command/mk1Cockpits/Cabin
[LOG 14:03:30.027] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitInline
[LOG 14:03:30.032] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitStandard
[LOG 14:03:30.040] Load(Model): Squad/Parts/Command/mk1LanderCan/model
[LOG 14:03:30.044] Load(Model): Squad/Parts/Command/mk1pod/model
[LOG 14:03:30.048] Load(Model): Squad/Parts/Command/mk2CockpitInline/model
[LOG 14:03:30.054] Load(Model): Squad/Parts/Command/mk2CockpitStandard/model
[LOG 14:03:30.059] Load(Model): Squad/Parts/Command/mk2DroneCore/model
[LOG 14:03:30.063] Load(Model): Squad/Parts/Command/mk2LanderCan/model
[LOG 14:03:30.071] Load(Model): Squad/Parts/Command/mk3CockpitShuttle/model
[LOG 14:03:30.077] Load(Model): Squad/Parts/Command/probeCoreCube/model
[LOG 14:03:30.079] Load(Model): Squad/Parts/Command/probeCoreHex/model
[LOG 14:03:30.082] Load(Model): Squad/Parts/Command/probeCoreOcto/model
[LOG 14:03:30.085] Load(Model): Squad/Parts/Command/probeCoreOcto2/model
[LOG 14:03:30.088] Load(Model): Squad/Parts/Command/probeRoverBody/model
[LOG 14:03:30.090] Load(Model): Squad/Parts/Command/probeStackLarge/model
[LOG 14:03:30.094] Load(Model): Squad/Parts/Command/probeStackSmall/model
[LOG 14:03:30.098] Load(Model): Squad/Parts/Command/probeStackSphere/model
[LOG 14:03:30.101] Load(Model): Squad/Parts/CompoundParts/fuelLine/model
[LOG 14:03:30.104] Load(Model): Squad/Parts/CompoundParts/strutConnector/model
[LOG 14:03:30.107] Load(Model): Squad/Parts/Electrical/1x6ShroudSolarPanels/model
[LOG 14:03:30.111] Load(Model): Squad/Parts/Electrical/1x6SolarPanels/model
[LOG 14:03:30.115] Load(Model): Squad/Parts/Electrical/3x2ShroudSolarPanels/model
[LOG 14:03:30.119] Load(Model): Squad/Parts/Electrical/3x2SolarPanels/model
[LOG 14:03:30.123] Load(Model): Squad/Parts/Electrical/gigantorXlSolarArray/model
[LOG 14:03:30.127] Load(Model): Squad/Parts/Electrical/radialFlatSolarPanel/model
[LOG 14:03:30.129] Load(Model): Squad/Parts/Electrical/RTG/model
[LOG 14:03:30.131] Load(Model): Squad/Parts/Electrical/z-100Battery/model
[LOG 14:03:30.134] Load(Model): Squad/Parts/Electrical/z-1kBattery/model
[LOG 14:03:30.137] Load(Model): Squad/Parts/Electrical/z-200Battery/model
[LOG 14:03:30.140] Load(Model): Squad/Parts/Electrical/z-400Battery/model
[LOG 14:03:30.143] Load(Model): Squad/Parts/Electrical/z-4kBattery/model
[LOG 14:03:30.146] Load(Model): Squad/Parts/Engine/ionEngine/model
[LOG 14:03:30.150] Load(Model): Squad/Parts/Engine/jetEngines/turbineInside
[LOG 14:03:30.153] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize1
[LOG 14:03:30.158] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize2
[LOG 14:03:30.166] Load(Model): Squad/Parts/Engine/jetEngines/turboJet
[LOG 14:03:30.172] Load(Model): Squad/Parts/Engine/jetEngines/turboRamJet
[LOG 14:03:30.178] Load(Model): Squad/Parts/Engine/liquidEngine24-77/model
[LOG 14:03:30.181] Load(Model): Squad/Parts/Engine/liquidEngine48-7S/model
[LOG 14:03:30.185] Load(Model): Squad/Parts/Engine/liquidEngineAerospike/AeroSpike
[LOG 14:03:30.190] Load(Model): Squad/Parts/Engine/liquidEngineLV-1/model
[LOG 14:03:30.192] Load(Model): Squad/Parts/Engine/liquidEngineLV-1R/model
[LOG 14:03:30.195] Load(Model): Squad/Parts/Engine/liquidEngineLV-909/model
[LOG 14:03:30.199] Load(Model): Squad/Parts/Engine/liquidEngineLV-N/model
[LOG 14:03:30.206] Load(Model): Squad/Parts/Engine/liquidEngineLV-T30/model
[LOG 14:03:30.211] Load(Model): Squad/Parts/Engine/liquidEngineLV-T45/model
[LOG 14:03:30.217] Load(Model): Squad/Parts/Engine/liquidEngineMainsail/model
[LOG 14:03:30.224] Load(Model): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 14:03:30.228] Load(Model): Squad/Parts/Engine/liquidEnginePoodle/model
[LOG 14:03:30.234] Load(Model): Squad/Parts/Engine/liquidEngineSkipper/model
[LOG 14:03:30.240] Load(Model): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 14:03:30.246] Load(Model): Squad/Parts/Engine/MassiveSRB/MassiveSRB
[LOG 14:03:30.251] Load(Model): Squad/Parts/Engine/miniJet/SmallJet
[LOG 14:03:30.255] Load(Model): Squad/Parts/Engine/OMSEngine/NewModel
[LOG 14:03:30.257] Load(Model): Squad/Parts/Engine/rapierEngine/rapier
[LOG 14:03:30.263] Load(Model): Squad/Parts/Engine/Size2LFB/Size2LFB
[LOG 14:03:30.272] Load(Model): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngine
[LOG 14:03:30.279] Load(Model): Squad/Parts/Engine/Size3EngineCluster/Size3EngineCluster
[LOG 14:03:30.289] Load(Model): Squad/Parts/Engine/solidBoosterBACC/model
[LOG 14:03:30.293] Load(Model): Squad/Parts/Engine/solidBoosterRT-10/model
[LOG 14:03:30.298] Load(Model): Squad/Parts/Engine/solidBoosterRT-5/SRB_RT5
[LOG 14:03:30.320] Load(Model): Squad/Parts/Engine/solidBoosterSep/model
[LOG 14:03:30.322] Load(Model): Squad/Parts/Engine/vernorEngine/NewModel
[LOG 14:03:30.327] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2
[LOG 14:03:30.331] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2
[LOG 14:03:30.334] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant
[LOG 14:03:30.338] Load(Model): Squad/Parts/FuelTank/adapterTanks/ShuttleAdapter
[LOG 14:03:30.341] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Mk2
[LOG 14:03:30.345] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1
[LOG 14:03:30.348] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant
[LOG 14:03:30.351] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size3-Mk3
[LOG 14:03:30.354] Load(Model): Squad/Parts/FuelTank/fuelTankJumbo-64/model
[LOG 14:03:30.359] Load(Model): Squad/Parts/FuelTank/fuelTankOscarB/model
[LOG 14:03:30.362] Load(Model): Squad/Parts/FuelTank/fuelTankT100/model
[LOG 14:03:30.365] Load(Model): Squad/Parts/FuelTank/fuelTankT200/model
[LOG 14:03:30.369] Load(Model): Squad/Parts/FuelTank/fuelTankT400/model
[LOG 14:03:30.372] Load(Model): Squad/Parts/FuelTank/fuelTankT800/model
[LOG 14:03:30.376] Load(Model): Squad/Parts/FuelTank/fuelTankToroidal/model
[LOG 14:03:30.383] Load(Model): Squad/Parts/FuelTank/fuelTankX200-16/model
[LOG 14:03:30.387] Load(Model): Squad/Parts/FuelTank/fuelTankX200-32/model
[LOG 14:03:30.391] Load(Model): Squad/Parts/FuelTank/fuelTankX200-8/model
[LOG 14:03:30.395] Load(Model): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 14:03:30.398] Load(Model): Squad/Parts/FuelTank/mk2Adapters/bicoupler
[LOG 14:03:30.403] Load(Model): Squad/Parts/FuelTank/mk2Adapters/long
[LOG 14:03:30.406] Load(Model): Squad/Parts/FuelTank/mk2Adapters/standard
[LOG 14:03:30.409] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLFO
[LOG 14:03:30.412] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLiquid
[LOG 14:03:30.415] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLFO
[LOG 14:03:30.419] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLiquid
[LOG 14:03:30.422] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortMono
[LOG 14:03:30.425] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/CREW
[LOG 14:03:30.429] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_100
[LOG 14:03:30.432] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_25
[LOG 14:03:30.435] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_50
[LOG 14:03:30.438] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_100
[LOG 14:03:30.441] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_25
[LOG 14:03:30.443] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_50
[LOG 14:03:30.446] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/MONO
[LOG 14:03:30.449] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR1/model
[LOG 14:03:30.452] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR10/model
[LOG 14:03:30.455] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25
[LOG 14:03:30.459] Load(Model): Squad/Parts/FuelTank/RCSTankRadial/model
[LOG 14:03:30.461] Load(Model): Squad/Parts/FuelTank/RCStankRadialLong/model
[LOG 14:03:30.464] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3LargeTank
[LOG 14:03:30.469] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3MediumTank
[LOG 14:03:30.474] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3SmallTank
[LOG 14:03:30.479] Load(Model): Squad/Parts/FuelTank/xenonTank/model
[LOG 14:03:30.484] Load(Model): Squad/Parts/FuelTank/xenonTankLarge/model
[LOG 14:03:30.490] Load(Model): Squad/Parts/FuelTank/xenonTankRadial/model
[LOG 14:03:30.494] Load(Model): Squad/Parts/Misc/AsteroidDay/HECS2
[LOG 14:03:30.498] Load(Model): Squad/Parts/Misc/AsteroidDay/HighGainAntenna
[LOG 14:03:30.505] Load(Model): Squad/Parts/Misc/AsteroidDay/LgRadialSolar
[LOG 14:03:30.508] Load(Model): Squad/Parts/Misc/PotatoRoid/Cube
[LOG 14:03:30.511] Load(Model): Squad/Parts/Resources/FuelCell/FuelCell
[LOG 14:03:30.514] Load(Model): Squad/Parts/Resources/FuelCell/FuelCellArray
[LOG 14:03:30.522] Load(Model): Squad/Parts/Resources/ISRU/ISRU
[LOG 14:03:30.532] Load(Model): Squad/Parts/Resources/LargeTank/LargeTank
[LOG 14:03:30.536] Load(Model): Squad/Parts/Resources/MiniDrill/MiniDrill
[LOG 14:03:30.543] Load(Model): Squad/Parts/Resources/MiniISRU/MiniISRU
[LOG 14:03:30.549] Load(Model): Squad/Parts/Resources/OrbitalScanner/OrbitalScanner
[LOG 14:03:30.554] Load(Model): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 14:03:30.567] Load(Model): Squad/Parts/Resources/RadialTank/RadialOreTank
[LOG 14:03:30.572] Load(Model): Squad/Parts/Resources/SmallTank/SmallTank
[LOG 14:03:30.576] Load(Model): Squad/Parts/Resources/SurfaceScanner/SurfaceScanner
[LOG 14:03:30.580] Load(Model): Squad/Parts/Resources/SurveyScanner/SurveyScanner
[LOG 14:03:30.585] Load(Model): Squad/Parts/Science/AtmosphereSensor/model
[LOG 14:03:30.589] Load(Model): Squad/Parts/Science/GooExperiment/GooExperiment
[LOG 14:03:30.593] Load(Model): Squad/Parts/Science/LargeCrewedLab/large_crewed_lab
[LOG 14:03:30.606] Load(Model): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 14:03:30.613] Load(Model): Squad/Parts/Science/ScienceBox/ScienceBox
[LOG 14:03:30.617] Load(Model): Squad/Parts/Science/sensorAccelerometer/model
[LOG 14:03:30.620] Load(Model): Squad/Parts/Science/sensorBarometer/model
[LOG 14:03:30.623] Load(Model): Squad/Parts/Science/sensorGravimeter/model
[LOG 14:03:30.626] Load(Model): Squad/Parts/Science/sensorThermometer/model
[LOG 14:03:30.629] Load(Model): Squad/Parts/Structural/adapterLargeSmallBi/model
[LOG 14:03:30.633] Load(Model): Squad/Parts/Structural/adapterLargeSmallQuad/model
[LOG 14:03:30.638] Load(Model): Squad/Parts/Structural/adapterLargeSmallTri/model
[LOG 14:03:30.642] Load(Model): Squad/Parts/Structural/adapterSmallMiniShort/model
[LOG 14:03:30.646] Load(Model): Squad/Parts/Structural/adapterSmallMiniTall/model
[LOG 14:03:30.650] Load(Model): Squad/Parts/Structural/mk1Parts/Fuselage
[LOG 14:03:30.654] Load(Model): Squad/Parts/Structural/mk1Parts/IntakeFuselage
[LOG 14:03:30.659] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle1
[LOG 14:03:30.663] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle2
[LOG 14:03:30.668] Load(Model): Squad/Parts/Structural/mk1Parts/Structural
[LOG 14:03:30.672] Load(Model): Squad/Parts/Structural/mk1Parts/StructuralHollow
[LOG 14:03:30.676] Load(Model): Squad/Parts/Structural/Size3Decoupler/size3Decoupler
[LOG 14:03:30.682] Load(Model): Squad/Parts/Structural/Size3To2Adapter/Size3Adapter
[LOG 14:03:30.687] Load(Model): Squad/Parts/Structural/stationHub/model
[LOG 14:03:30.693] Load(Model): Squad/Parts/Structural/structuralIBeam200/model
[LOG 14:03:30.696] Load(Model): Squad/Parts/Structural/structuralIBeam200Pocket/model
[LOG 14:03:30.699] Load(Model): Squad/Parts/Structural/structuralIBeam650/model
[LOG 14:03:30.702] Load(Model): Squad/Parts/Structural/structuralMicronode/model
[LOG 14:03:30.706] Load(Model): Squad/Parts/Structural/structuralPanel1x1/model
[LOG 14:03:30.709] Load(Model): Squad/Parts/Structural/structuralPanel2x2/model
[LOG 14:03:30.713] Load(Model): Squad/Parts/Structural/structuralPylons/PylonBig
[LOG 14:03:30.717] Load(Model): Squad/Parts/Structural/structuralPylons/PylonSmall
[LOG 14:03:30.720] Load(Model): Squad/Parts/Structural/strutCubicOcto/model
[LOG 14:03:30.724] Load(Model): Squad/Parts/Structural/strutOcto/model
[LOG 14:03:30.728] Load(Model): Squad/Parts/Structural/trussGirderAdapter/model
[LOG 14:03:30.732] Load(Model): Squad/Parts/Structural/trussGirderL/model
[LOG 14:03:30.736] Load(Model): Squad/Parts/Structural/trussGirderXL/model
[LOG 14:03:30.741] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge
[LOG 14:03:30.767] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadMed
[LOG 14:03:30.779] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall
[LOG 14:03:30.791] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelEdge
[LOG 14:03:30.794] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelLg
[LOG 14:03:30.798] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelSm
[LOG 14:03:30.802] Load(Model): Squad/Parts/Utility/commDish88-88/model
[LOG 14:03:30.829] Load(Model): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 14:03:30.836] Load(Model): Squad/Parts/Utility/commsDish16/model
[LOG 14:03:30.840] Load(Model): Squad/Parts/Utility/decouplerRadialHDM/model
[LOG 14:03:30.843] Load(Model): Squad/Parts/Utility/decouplerRadialTT-38K/model
[LOG 14:03:30.847] Load(Model): Squad/Parts/Utility/decouplerRadialTT-70/model
[LOG 14:03:30.851] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-18D/model
[LOG 14:03:30.855] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-2C/model
[LOG 14:03:30.859] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-XL/model
[LOG 14:03:30.863] Load(Model): Squad/Parts/Utility/decouplerStack2m/model
[LOG 14:03:30.869] Load(Model): Squad/Parts/Utility/decouplerStackTR-18A/model
[LOG 14:03:30.873] Load(Model): Squad/Parts/Utility/decouplerStackTR-2V/model
[LOG 14:03:30.876] Load(Model): Squad/Parts/Utility/DirectAntennas/HGAntenna
[LOG 14:03:30.884] Load(Model): Squad/Parts/Utility/DirectAntennas/SurfAntenna
[LOG 14:03:30.888] Load(Model): Squad/Parts/Utility/dockingPort/model
[LOG 14:03:30.893] Load(Model): Squad/Parts/Utility/dockingPortInline/model
[LOG 14:03:30.901] Load(Model): Squad/Parts/Utility/dockingPortJr/model
[LOG 14:03:30.905] Load(Model): Squad/Parts/Utility/dockingPortShielded/model
[LOG 14:03:30.912] Load(Model): Squad/Parts/Utility/dockingPortSr/model
[LOG 14:03:30.917] Load(Model): Squad/Parts/Utility/GrapplingDevice/GrapplingArm
[LOG 14:03:30.949] Load(Model): Squad/Parts/Utility/ladderRadial/model
[LOG 14:03:30.953] Load(Model): Squad/Parts/Utility/ladderTelescopic/model
[LOG 14:03:30.960] Load(Model): Squad/Parts/Utility/ladderTelescopicBay/model
[LOG 14:03:30.971] Load(Model): Squad/Parts/Utility/landingLegLT-1/model
[LOG 14:03:30.977] Load(Model): Squad/Parts/Utility/landingLegLT-2/model
[LOG 14:03:30.982] Load(Model): Squad/Parts/Utility/landingLegLT-5/model
[WRN 14:03:30.987] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:30.987] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:30.989] Load(Model): Squad/Parts/Utility/largeAdapter/model
[LOG 14:03:30.993] Load(Model): Squad/Parts/Utility/largeAdapterShort/model
[LOG 14:03:30.998] Load(Model): Squad/Parts/Utility/launchClamp1/model
[LOG 14:03:31.002] Load(Model): Squad/Parts/Utility/launchEscapeSystem/LaunchEscapeSystem
[LOG 14:03:31.012] Load(Model): Squad/Parts/Utility/linearRCS/model
[LOG 14:03:31.015] Load(Model): Squad/Parts/Utility/mk2CargoBay/BayLarge
[LOG 14:03:31.021] Load(Model): Squad/Parts/Utility/mk2CargoBay/BaySmall
[LOG 14:03:31.028] Load(Model): Squad/Parts/Utility/mk2CrewCabin/model
[LOG 14:03:31.032] Load(Model): Squad/Parts/Utility/mk2DockingPort/model
[LOG 14:03:31.040] Load(Model): Squad/Parts/Utility/mk3CargoBay/long
[LOG 14:03:31.048] Load(Model): Squad/Parts/Utility/mk3CargoBay/medium
[LOG 14:03:31.054] Load(Model): Squad/Parts/Utility/mk3CargoBay/ramp
[LOG 14:03:31.067] Load(Model): Squad/Parts/Utility/mk3CargoBay/short
[LOG 14:03:31.073] Load(Model): Squad/Parts/Utility/parachuteMk1/model
[LOG 14:03:31.084] Load(Model): Squad/Parts/Utility/parachuteMk12-R/model
[LOG 14:03:31.088] Load(Model): Squad/Parts/Utility/parachuteMk16-XL/model
[LOG 14:03:31.095] Load(Model): Squad/Parts/Utility/parachuteMk2-R/model
[LOG 14:03:31.099] Load(Model): Squad/Parts/Utility/parachuteMk25/model
[LOG 14:03:31.105] Load(Model): Squad/Parts/Utility/radialAttachmentPoint/model
[LOG 14:03:31.109] Load(Model): Squad/Parts/Utility/rcsBlockRV-105/model
[LOG 14:03:31.113] Load(Model): Squad/Parts/Utility/RelayAntennas/HGAntenna
[LOG 14:03:31.121] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-100
[LOG 14:03:31.126] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-5
[LOG 14:03:31.130] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-50
[LOG 14:03:31.134] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_125
[LOG 14:03:31.146] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_250
[LOG 14:03:31.159] Load(Model): Squad/Parts/Utility/spotLightMk1/model
[LOG 14:03:31.163] Load(Model): Squad/Parts/Utility/spotLightMk2/model
[LOG 14:03:31.170] Load(Model): Squad/Parts/Utility/stackBiCoupler/model
[LOG 14:03:31.173] Load(Model): Squad/Parts/Utility/stackQuadCoupler/model
[LOG 14:03:31.178] Load(Model): Squad/Parts/Utility/stackTriCoupler/model
[LOG 14:03:31.183] Load(Model): Squad/Parts/Wheel/LandingGear/GearExtraLarge
[WRN 14:03:31.194] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.195] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.198] Load(Model): Squad/Parts/Wheel/LandingGear/GearFixed
[WRN 14:03:31.201] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.202] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.203] Load(Model): Squad/Parts/Wheel/LandingGear/GearFree
[WRN 14:03:31.205] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.206] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.209] Load(Model): Squad/Parts/Wheel/LandingGear/GearLarge
[WRN 14:03:31.211] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.211] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.218] Load(Model): Squad/Parts/Wheel/LandingGear/GearMedium
[WRN 14:03:31.224] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.224] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.226] Load(Model): Squad/Parts/Wheel/LandingGear/GearSmall
[WRN 14:03:31.228] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.229] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.250] Load(Model): Squad/Parts/Wheel/roverWheelM1/model
[WRN 14:03:31.257] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.257] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.259] Load(Model): Squad/Parts/Wheel/roverWheelS2/model
[WRN 14:03:31.261] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.261] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.267] Load(Model): Squad/Parts/Wheel/roverWheelTR-2L/model
[WRN 14:03:31.272] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.273] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.274] Load(Model): Squad/Parts/Wheel/roverWheelXL3/model
[WRN 14:03:31.289] WheelCollider requires an attached Rigidbody to function.
[WRN 14:03:31.290] WheelCollider requires an attached Rigidbody to function.
[LOG 14:03:31.291] Load(Model): Squad/Props/AltimeterThreeHands/model
[LOG 14:03:31.295] Load(Model): Squad/Props/AtmosphereDepth/model
[LOG 14:03:31.298] Load(Model): Squad/Props/AxisIndicator/model
[LOG 14:03:31.302] Load(Model): Squad/Props/buttonsGeneric/circularButton
[LOG 14:03:31.305] Load(Model): Squad/Props/buttonsGeneric/clusterButtons
[LOG 14:03:31.309] Load(Model): Squad/Props/buttonsGeneric/clusterButtons2
[LOG 14:03:31.312] Load(Model): Squad/Props/buttonsGeneric/clusterKnob
[LOG 14:03:31.316] Load(Model): Squad/Props/buttonsGeneric/clusterKnob2
[LOG 14:03:31.321] Load(Model): Squad/Props/buttonsGeneric/clusterMixed
[LOG 14:03:31.325] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches01
[LOG 14:03:31.335] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches02
[LOG 14:03:31.341] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches03
[LOG 14:03:31.348] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches04
[LOG 14:03:31.353] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches05
[LOG 14:03:31.358] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches06
[LOG 14:03:31.363] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches07
[LOG 14:03:31.367] Load(Model): Squad/Props/buttonsGeneric/directionalKnob
[LOG 14:03:31.370] Load(Model): Squad/Props/buttonsGeneric/directionalKnob2
[LOG 14:03:31.374] Load(Model): Squad/Props/buttonsGeneric/pullSwitch
[LOG 14:03:31.377] Load(Model): Squad/Props/buttonsGeneric/squareButton
[LOG 14:03:31.380] Load(Model): Squad/Props/buttonsGeneric/standingSwitch
[LOG 14:03:31.383] Load(Model): Squad/Props/buttonsGeneric/switch
[LOG 14:03:31.386] Load(Model): Squad/Props/buttonsGeneric/switchWithGuards
[LOG 14:03:31.390] Load(Model): Squad/Props/ButtonSquare/model
[LOG 14:03:31.393] Load(Model): Squad/Props/circularButton/model
[LOG 14:03:31.396] Load(Model): Squad/Props/Compass/model
[LOG 14:03:31.399] Load(Model): Squad/Props/directionalKnob/model
[LOG 14:03:31.402] Load(Model): Squad/Props/directionalKnob2/model
[LOG 14:03:31.406] Load(Model): Squad/Props/IndicatorPanel/model
[LOG 14:03:31.410] Load(Model): Squad/Props/IVANavBall/model
[LOG 14:03:31.417] Load(Model): Squad/Props/ledPanelSpeed/model
[LOG 14:03:31.420] Load(Model): Squad/Props/Monitor/MonitorDockingMode
[LOG 14:03:31.424] Load(Model): Squad/Props/NavBall/model
[LOG 14:03:31.429] Load(Model): Squad/Props/PropsGeneric/Button_DockingMode
[LOG 14:03:31.432] Load(Model): Squad/Props/PropsGeneric/CargoBagA
[LOG 14:03:31.438] Load(Model): Squad/Props/PropsGeneric/CargoBagB
[LOG 14:03:31.441] Load(Model): Squad/Props/PropsGeneric/CargoBagC
[LOG 14:03:31.445] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane
[LOG 14:03:31.448] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Curve90
[LOG 14:03:31.452] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Frame
[LOG 14:03:31.455] Load(Model): Squad/Props/PropsGeneric/Seat_Passenger
[LOG 14:03:31.458] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot
[LOG 14:03:31.463] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot_Helmet
[LOG 14:03:31.467] Load(Model): Squad/Props/PropsGeneric/SideStick
[LOG 14:03:31.470] Load(Model): Squad/Props/pullSwitch/model
[LOG 14:03:31.473] Load(Model): Squad/Props/radarAltitude/model
[LOG 14:03:31.476] Load(Model): Squad/Props/squareButton/model
[LOG 14:03:31.480] Load(Model): Squad/Props/standingSwitch/model
[LOG 14:03:31.483] Load(Model): Squad/Props/switch/model
[LOG 14:03:31.486] Load(Model): Squad/Props/switchGuard/model
[LOG 14:03:31.489] Load(Model): Squad/Props/switchWithGuards/model
[LOG 14:03:31.493] Load(Model): Squad/Props/throttle/model
[LOG 14:03:31.497] Load(Model): Squad/Props/VSI/model
[LOG 14:03:31.501] Load(Model): Squad/Spaces/crewCabinInternals/model
[LOG 14:03:31.519] Load(Model): Squad/Spaces/cupolaInternal/model
[LOG 14:03:31.529] Load(Model): Squad/Spaces/GenericSpace1/model
[LOG 14:03:31.545] Load(Model): Squad/Spaces/GenericSpace3/model
[LOG 14:03:31.565] Load(Model): Squad/Spaces/landerCabinInternals/model
[LOG 14:03:31.578] Load(Model): Squad/Spaces/landerCabinSmallInternal/model
[LOG 14:03:31.587] Load(Model): Squad/Spaces/LargeCrewedLabInternals/Large_Crewed_lab_Int
[LOG 14:03:31.611] Load(Model): Squad/Spaces/mk1CabinInternal/mk1cabin
[LOG 14:03:31.620] Load(Model): Squad/Spaces/mk1CockpitInternal/Mk1StandardIVA
[LOG 14:03:31.627] Load(Model): Squad/Spaces/mk1InlineInternal/Mk1InlineIVA
[LOG 14:03:31.637] Load(Model): Squad/Spaces/mk1PodCockpit/model
[LOG 14:03:31.650] Load(Model): Squad/Spaces/mk2CockpitStandardInternal/model
[LOG 14:03:31.662] Load(Model): Squad/Spaces/Mk2CrewCabinInternal/MK2_CrewCab_Int
[LOG 14:03:31.682] Load(Model): Squad/Spaces/mk2InlineInternal/mk2InlineIVA
[LOG 14:03:31.705] Load(Model): Squad/Spaces/MK3CockpitInternal/MK3_Cockpit_Int
[LOG 14:03:31.717] Load(Model): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 14:03:31.768] Load(Model): Squad/Spaces/OverlayMasks/CupolaMask
[LOG 14:03:31.771] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerBorder
[LOG 14:03:31.776] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerMask
[LOG 14:03:31.779] Load(Model): Squad/Spaces/OverlayMasks/LargeLabBorder
[LOG 14:03:31.783] Load(Model): Squad/Spaces/OverlayMasks/LargeLabMask
[LOG 14:03:31.787] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinBorder
[LOG 14:03:31.790] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinMask
[LOG 14:03:31.793] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask
[LOG 14:03:31.796] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask2
[LOG 14:03:31.799] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder2
[LOG 14:03:31.802] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder3
[LOG 14:03:31.806] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask
[LOG 14:03:31.810] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask2
[LOG 14:03:31.814] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask3
[LOG 14:03:31.818] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinBorder
[LOG 14:03:31.822] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinMask
[LOG 14:03:31.826] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineBorder
[LOG 14:03:31.829] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineMask
[LOG 14:03:31.833] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardBorder
[LOG 14:03:31.837] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardMask
[LOG 14:03:31.840] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinBorder
[LOG 14:03:31.844] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask
[LOG 14:03:31.847] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask2
[LOG 14:03:31.851] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleBorder
[LOG 14:03:31.855] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleMask
[LOG 14:03:31.859] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderBorder
[LOG 14:03:31.862] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderMask
[LOG 14:03:31.866] Load(Model): Squad/Spaces/OverlayMasks/Size1PodBorder
[LOG 14:03:31.869] Load(Model): Squad/Spaces/OverlayMasks/Size1PodMask
[LOG 14:03:31.872] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderBorder
[LOG 14:03:31.877] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderMask
[LOG 14:03:31.881] Load(Model): Squad/Spaces/OverlayMasks/Size2PodBorder
[LOG 14:03:31.885] Load(Model): Squad/Spaces/OverlayMasks/Size2PodMask
[LOG 14:03:31.888] Load(Model): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 14:03:31.894] Load(Model): Squad/Spaces/PodCockpit/model
[LOG 14:03:31.921] Loading Asset Bundle Definitions
[LOG 14:03:31.924] AssetLoader: Loading bundle definitions
[LOG 14:03:32.464] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\squadcore.ksp'
[LOG 14:03:32.529] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\squadcorefx.ksp'
[LOG 14:03:32.541] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia.ksp'
[LOG 14:03:32.623] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraft.ksp'
[LOG 14:03:32.667] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasics.ksp'
[LOG 14:03:32.700] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance.ksp'
[LOG 14:03:32.745] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance2.ksp'
[LOG 14:03:32.778] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicscol.ksp'
[LOG 14:03:32.825] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrol.ksp'
[LOG 14:03:32.861] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrolsurfaces.ksp'
[LOG 14:03:32.896] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsdrag.ksp'
[LOG 14:03:32.926] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsengines.ksp'
[LOG 14:03:32.955] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsforces.ksp'
[LOG 14:03:32.992] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsintakes.ksp'
[LOG 14:03:33.026] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicslandinggear.ksp'
[LOG 14:03:33.060] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicslift.ksp'
[LOG 14:03:33.103] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_career.ksp'
[LOG 14:03:33.131] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicscontracts.ksp'
[LOG 14:03:33.163] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicscrew.ksp'
[LOG 14:03:33.186] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicscurrencies.ksp'
[LOG 14:03:33.208] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicsexperience.ksp'
[LOG 14:03:33.249] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicsfacilities.ksp'
[LOG 14:03:33.279] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicsstrategies.ksp'
[LOG 14:03:33.303] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicstechnology.ksp'
[LOG 14:03:33.339] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-ac.ksp'
[LOG 14:03:33.377] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-admin.ksp'
[LOG 14:03:33.421] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-ksc.ksp'
[LOG 14:03:33.455] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-mc.ksp'
[LOG 14:03:33.486] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-sciencearchives.ksp'
[LOG 14:03:33.515] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-techtree.ksp'
[LOG 14:03:33.551] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-ts.ksp'
[LOG 14:03:33.613] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui.ksp'
[LOG 14:03:33.651] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnet.ksp'
[LOG 14:03:33.711] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetbasics.ksp'
[LOG 14:03:33.723] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetbuildingeffectivenetworks.ksp'
[LOG 14:03:33.734] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcalculatingrange.ksp'
[LOG 14:03:33.745] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcontrollevels.ksp'
[LOG 14:03:33.770] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcontrollinks.ksp'
[LOG 14:03:33.781] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcontrolpoints.ksp'
[LOG 14:03:33.809] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetgui.ksp'
[LOG 14:03:33.821] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetgui01.ksp'
[LOG 14:03:33.833] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetgui02.ksp'
[LOG 14:03:33.861] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetrange.ksp'
[LOG 14:03:33.892] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetrelays.ksp'
[LOG 14:03:33.904] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetsciencetransmission.ksp'
[LOG 14:03:33.915] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetsignalstrength.ksp'
[LOG 14:03:33.942] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnettransmission.ksp'
[LOG 14:03:33.975] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-actiongroups.ksp'
[LOG 14:03:34.009] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-applauncher.ksp'
[LOG 14:03:34.042] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-crew.ksp'
[LOG 14:03:34.080] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-engineersreport.ksp'
[LOG 14:03:34.111] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-gizmos.ksp'
[LOG 14:03:34.139] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-infos.ksp'
[LOG 14:03:34.168] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-partdetails.ksp'
[LOG 14:03:34.199] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-parts.ksp'
[LOG 14:03:34.230] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-symmetry.ksp'
[LOG 14:03:34.258] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-vesseldetails.ksp'
[LOG 14:03:34.309] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui.ksp'
[LOG 14:03:34.338] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-dockingmode.ksp'
[LOG 14:03:34.363] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-editor.ksp'
[LOG 14:03:34.393] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-editorgizmos.ksp'
[LOG 14:03:34.427] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-eva.ksp'
[LOG 14:03:34.459] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-flight.ksp'
[LOG 14:03:34.483] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-flightactivities.ksp'
[LOG 14:03:34.515] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-flightdirections.ksp'
[LOG 14:03:34.540] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-general.ksp'
[LOG 14:03:34.564] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-mapandtime.ksp'
[LOG 14:03:34.588] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-mouseconstruction.ksp'
[LOG 14:03:34.612] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-mouseflight.ksp'
[LOG 14:03:34.643] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-rcs.ksp'
[LOG 14:03:34.702] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls.ksp'
[LOG 14:03:34.737] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_eastereggs.ksp'
[LOG 14:03:34.780] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-ac.ksp'
[LOG 14:03:34.824] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-admin.ksp'
[LOG 14:03:34.860] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-context.ksp'
[LOG 14:03:34.918] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-ksc.ksp'
[LOG 14:03:34.960] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-launchpad.ksp'
[LOG 14:03:35.001] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-mc.ksp'
[LOG 14:03:35.042] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-randd.ksp'
[LOG 14:03:35.080] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-runway.ksp'
[LOG 14:03:35.121] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-sph.ksp'
[LOG 14:03:35.161] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-ts.ksp'
[LOG 14:03:35.200] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-vab.ksp'
[LOG 14:03:35.226] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-altimeter.ksp'
[LOG 14:03:35.255] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-applauncher.ksp'
[LOG 14:03:35.308] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-evaactivities.ksp'
[LOG 14:03:35.336] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-modecontrol.ksp'
[LOG 14:03:35.367] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-navball.ksp'
[LOG 14:03:35.401] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-portraits.ksp'
[LOG 14:03:35.427] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-staging.ksp'
[LOG 14:03:35.457] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-timeandaction.ksp'
[LOG 14:03:35.490] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui.ksp'
[LOG 14:03:35.531] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heat.ksp'
[LOG 14:03:35.558] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatactiveradiators.ksp'
[LOG 14:03:35.603] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatcore.ksp'
[LOG 14:03:35.627] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatengines.ksp'
[LOG 14:03:35.655] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatflow.ksp'
[LOG 14:03:35.698] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatpart.ksp'
[LOG 14:03:35.724] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatpassiveradiators.ksp'
[LOG 14:03:35.767] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatshields.ksp'
[LOG 14:03:35.813] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnet.ksp'
[LOG 14:03:35.837] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnetinterface.ksp'
[LOG 14:03:35.865] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnetmodes.ksp'
[LOG 14:03:35.894] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnetwaypoints.ksp'
[LOG 14:03:35.927] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_locations.ksp'
[LOG 14:03:35.951] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_manual.ksp'
[LOG 14:03:35.998] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui-mannodes.ksp'
[LOG 14:03:36.030] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes.ksp'
[LOG 14:03:36.078] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes2.ksp'
[LOG 14:03:36.109] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui.ksp'
[LOG 14:03:36.141] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-atmosphere.ksp'
[LOG 14:03:36.171] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingbackdown.ksp'
[LOG 14:03:36.203] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingupthere.ksp'
[LOG 14:03:36.233] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-gravityturn.ksp'
[LOG 14:03:36.261] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-orbits.ksp'
[LOG 14:03:36.291] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-stayingupthere.ksp'
[LOG 14:03:36.321] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics.ksp'
[LOG 14:03:36.349] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-appe.ksp'
[LOG 14:03:36.380] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-dirandinc.ksp'
[LOG 14:03:36.414] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-directions.ksp'
[LOG 14:03:36.445] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-eccentricity.ksp'
[LOG 14:03:36.476] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions.ksp'
[LOG 14:03:36.504] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-adjustinginclination.ksp'
[LOG 14:03:36.531] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-deltav.ksp'
[LOG 14:03:36.556] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-efficiency.ksp'
[LOG 14:03:36.583] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer.ksp'
[LOG 14:03:36.611] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer2.ksp'
[LOG 14:03:36.640] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-orbittypes.ksp'
[LOG 14:03:36.670] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-radandantirad.ksp'
[LOG 14:03:36.699] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-shapingup.ksp'
[LOG 14:03:36.727] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers.ksp'
[LOG 14:03:36.758] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-dres.ksp'
[LOG 14:03:36.793] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-duna.ksp'
[LOG 14:03:36.824] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-eeloo.ksp'
[LOG 14:03:36.854] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-eve.ksp'
[LOG 14:03:36.884] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-jool.ksp'
[LOG 14:03:36.916] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-kerbin.ksp'
[LOG 14:03:36.946] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-moho.ksp'
[LOG 14:03:36.985] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-sun.ksp'
[LOG 14:03:37.020] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-system.ksp'
[LOG 14:03:37.053] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-asteroidmining.ksp'
[LOG 14:03:37.065] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-conversionmanagement.ksp'
[LOG 14:03:37.091] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-drilling.ksp'
[LOG 14:03:37.125] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-findingit.ksp'
[LOG 14:03:37.156] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-findingit2.ksp'
[LOG 14:03:37.190] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-storageandconversion.ksp'
[LOG 14:03:37.224] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources.ksp'
[LOG 14:03:37.275] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketry.ksp'
[LOG 14:03:37.306] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-fairings.ksp'
[LOG 14:03:37.339] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-girders.ksp'
[LOG 14:03:37.382] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced.ksp'
[LOG 14:03:37.423] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasics.ksp'
[LOG 14:03:37.455] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsaero.ksp'
[LOG 14:03:37.483] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicscentered.ksp'
[LOG 14:03:37.514] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicschutes.ksp'
[LOG 14:03:37.546] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicscontrol.ksp'
[LOG 14:03:37.577] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsecrecharging.ksp'
[LOG 14:03:37.604] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsengines.ksp'
[LOG 14:03:37.631] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsforces.ksp'
[LOG 14:03:37.666] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicshatchesandladders.ksp'
[LOG 14:03:37.702] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsresources.ksp'
[LOG 14:03:37.734] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsservicecontainers.ksp'
[LOG 14:03:37.762] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsstability.ksp'
[LOG 14:03:37.792] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsstabilityassist.ksp'
[LOG 14:03:37.822] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsstaging.ksp'
[LOG 14:03:37.851] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicssymmetry.ksp'
[LOG 14:03:37.885] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_science.ksp'
[LOG 14:03:37.918] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_sciencedata.ksp'
[LOG 14:03:37.951] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_scienceexperiments.ksp'
[LOG 14:03:37.983] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_sciencelab.ksp'
[LOG 14:03:38.019] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_sciencetransmitted.ksp'
[LOG 14:03:38.054] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_spacetravel.ksp'
[LOG 14:03:38.057] AssetLoader: Finished loading. 172 bundle definitions loaded.
[LOG 14:03:38.060] Config(AGENT) Squad/Agencies/Agents/C7 Aerospace Division
[LOG 14:03:38.062] Config(AGENT) Squad/Agencies/Agents/Dinkelstein Kerman's Construction Emporium
[LOG 14:03:38.063] Config(AGENT) Squad/Agencies/Agents/Experimental Engineering Group
[LOG 14:03:38.064] Config(AGENT) Squad/Agencies/Agents/FLOOYD Dynamics Research Labs
[LOG 14:03:38.065] Config(AGENT) Squad/Agencies/Agents/Goliath National Products
[LOG 14:03:38.066] Config(AGENT) Squad/Agencies/Agents/Integrated Integrals
[LOG 14:03:38.067] Config(AGENT) Squad/Agencies/Agents/Ionic Symphonic Protonic Electronics
[LOG 14:03:38.068] Config(AGENT) Squad/Agencies/Agents/Jebediah Kerman's Junkyard and Spacecraft Parts Co
[LOG 14:03:38.069] Config(AGENT) Squad/Agencies/Agents/Kerbal Motion LLC
[LOG 14:03:38.070] Config(AGENT) Squad/Agencies/Agents/Kerbin World-Firsts Record-Keeping Society
[LOG 14:03:38.071] Config(AGENT) Squad/Agencies/Agents/Kerbodyne
[LOG 14:03:38.072] Config(AGENT) Squad/Agencies/Agents/Kerlington Model Rockets and Paper Products Inc
[LOG 14:03:38.073] Config(AGENT) Squad/Agencies/Agents/Maxo Construction Toys
[LOG 14:03:38.074] Config(AGENT) Squad/Agencies/Agents/Moving Parts Experts Group
[LOG 14:03:38.075] Config(AGENT) Squad/Agencies/Agents/O.M.B. Demolition Enterprises
[LOG 14:03:38.076] Config(AGENT) Squad/Agencies/Agents/Periapsis Rocket Supplies Co
[LOG 14:03:38.077] Config(AGENT) Squad/Agencies/Agents/Probodobodyne Inc
[LOG 14:03:38.078] Config(AGENT) Squad/Agencies/Agents/Research & Development Department
[LOG 14:03:38.079] Config(AGENT) Squad/Agencies/Agents/Reaction Systems Ltd
[LOG 14:03:38.080] Config(AGENT) Squad/Agencies/Agents/Rockomax Conglomerate
[LOG 14:03:38.081] Config(AGENT) Squad/Agencies/Agents/Rokea Inc
[LOG 14:03:38.082] Config(AGENT) Squad/Agencies/Agents/Sean's Cannery
[LOG 14:03:38.083] Config(AGENT) Squad/Agencies/Agents/STEADLER Engineering Corps
[LOG 14:03:38.084] Config(AGENT) Squad/Agencies/Agents/StrutCo
[LOG 14:03:38.085] Config(AGENT) Squad/Agencies/Agents/Vac-Co Advanced Suction Systems
[LOG 14:03:38.086] Config(AGENT) Squad/Agencies/Agents/WinterOwl Aircraft Emporium
[LOG 14:03:38.087] Config(AGENT) Squad/Agencies/Agents/Zaltonic Electronics
[LOG 14:03:38.088] Config(Contracts) Squad/Contracts/Contracts/Contracts
[LOG 14:03:38.089] Config(KEYBOARD_LAYOUT) Squad/Controls/Azerty/French AZERTY Keyboard
[LOG 14:03:38.090] Config(PITCH_DOWN) Squad/Controls/Azerty/PITCH_DOWN
[LOG 14:03:38.091] Config(PITCH_UP) Squad/Controls/Azerty/PITCH_UP
[LOG 14:03:38.092] Config(YAW_LEFT) Squad/Controls/Azerty/YAW_LEFT
[LOG 14:03:38.093] Config(YAW_RIGHT) Squad/Controls/Azerty/YAW_RIGHT
[LOG 14:03:38.094] Config(ROLL_LEFT) Squad/Controls/Azerty/ROLL_LEFT
[LOG 14:03:38.095] Config(ROLL_RIGHT) Squad/Controls/Azerty/ROLL_RIGHT
[LOG 14:03:38.096] Config(THROTTLE_UP) Squad/Controls/Azerty/THROTTLE_UP
[LOG 14:03:38.097] Config(THROTTLE_DOWN) Squad/Controls/Azerty/THROTTLE_DOWN
[LOG 14:03:38.098] Config(SAS_HOLD) Squad/Controls/Azerty/SAS_HOLD
[LOG 14:03:38.099] Config(SAS_TOGGLE) Squad/Controls/Azerty/SAS_TOGGLE
[LOG 14:03:38.100] Config(LAUNCH_STAGES) Squad/Controls/Azerty/LAUNCH_STAGES
[LOG 14:03:38.101] Config(Docking_toggleRotLin) Squad/Controls/Azerty/Docking_toggleRotLin
[LOG 14:03:38.102] Config(CAMERA_MODE) Squad/Controls/Azerty/CAMERA_MODE
[LOG 14:03:38.103] Config(CAMERA_NEXT) Squad/Controls/Azerty/CAMERA_NEXT
[LOG 14:03:38.104] Config(PAUSE) Squad/Controls/Azerty/PAUSE
[LOG 14:03:38.105] Config(PRECISION_CTRL) Squad/Controls/Azerty/PRECISION_CTRL
[LOG 14:03:38.106] Config(ZOOM_IN) Squad/Controls/Azerty/ZOOM_IN
[LOG 14:03:38.107] Config(ZOOM_OUT) Squad/Controls/Azerty/ZOOM_OUT
[LOG 14:03:38.108] Config(SCROLL_VIEW_UP) Squad/Controls/Azerty/SCROLL_VIEW_UP
[LOG 14:03:38.109] Config(SCROLL_VIEW_DOWN) Squad/Controls/Azerty/SCROLL_VIEW_DOWN
[LOG 14:03:38.111] Config(SCROLL_ICONS_UP) Squad/Controls/Azerty/SCROLL_ICONS_UP
[LOG 14:03:38.112] Config(SCROLL_ICONS_DOWN) Squad/Controls/Azerty/SCROLL_ICONS_DOWN
[LOG 14:03:38.113] Config(CAMERA_ORBIT_UP) Squad/Controls/Azerty/CAMERA_ORBIT_UP
[LOG 14:03:38.114] Config(CAMERA_ORBIT_DOWN) Squad/Controls/Azerty/CAMERA_ORBIT_DOWN
[LOG 14:03:38.115] Config(CAMERA_ORBIT_LEFT) Squad/Controls/Azerty/CAMERA_ORBIT_LEFT
[LOG 14:03:38.116] Config(CAMERA_ORBIT_RIGHT) Squad/Controls/Azerty/CAMERA_ORBIT_RIGHT
[LOG 14:03:38.117] Config(CAMERA_RESET) Squad/Controls/Azerty/CAMERA_RESET
[LOG 14:03:38.118] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Azerty/CAMERA_MOUSE_TOGGLE
[LOG 14:03:38.119] Config(TIME_WARP_INCREASE) Squad/Controls/Azerty/TIME_WARP_INCREASE
[LOG 14:03:38.121] Config(TIME_WARP_DECREASE) Squad/Controls/Azerty/TIME_WARP_DECREASE
[LOG 14:03:38.122] Config(TIME_WARP_STOP) Squad/Controls/Azerty/TIME_WARP_STOP
[LOG 14:03:38.123] Config(MAP_VIEW_TOGGLE) Squad/Controls/Azerty/MAP_VIEW_TOGGLE
[LOG 14:03:38.124] Config(NAVBALL_TOGGLE) Squad/Controls/Azerty/NAVBALL_TOGGLE
[LOG 14:03:38.125] Config(UIMODE_STAGING) Squad/Controls/Azerty/UIMODE_STAGING
[LOG 14:03:38.126] Config(UIMODE_DOCKING) Squad/Controls/Azerty/UIMODE_DOCKING
[LOG 14:03:38.127] Config(TRANSLATE_DOWN) Squad/Controls/Azerty/TRANSLATE_DOWN
[LOG 14:03:38.128] Config(TRANSLATE_UP) Squad/Controls/Azerty/TRANSLATE_UP
[LOG 14:03:38.129] Config(TRANSLATE_LEFT) Squad/Controls/Azerty/TRANSLATE_LEFT
[LOG 14:03:38.130] Config(TRANSLATE_RIGHT) Squad/Controls/Azerty/TRANSLATE_RIGHT
[LOG 14:03:38.131] Config(TRANSLATE_FWD) Squad/Controls/Azerty/TRANSLATE_FWD
[LOG 14:03:38.132] Config(TRANSLATE_BACK) Squad/Controls/Azerty/TRANSLATE_BACK
[LOG 14:03:38.133] Config(RCS_TOGGLE) Squad/Controls/Azerty/RCS_TOGGLE
[LOG 14:03:38.134] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Azerty/FOCUS_NEXT_VESSEL
[LOG 14:03:38.135] Config(FOCUS_PREV_VESSEL) Squad/Controls/Azerty/FOCUS_PREV_VESSEL
[LOG 14:03:38.136] Config(TOGGLE_UI) Squad/Controls/Azerty/TOGGLE_UI
[LOG 14:03:38.137] Config(TOGGLE_STATUS_SCREEN) Squad/Controls/Azerty/TOGGLE_STATUS_SCREEN
[LOG 14:03:38.138] Config(TAKE_SCREENSHOT) Squad/Controls/Azerty/TAKE_SCREENSHOT
[LOG 14:03:38.139] Config(TOGGLE_LABELS) Squad/Controls/Azerty/TOGGLE_LABELS
[LOG 14:03:38.140] Config(TOGGLE_TEMP_GAUGES) Squad/Controls/Azerty/TOGGLE_TEMP_GAUGES
[LOG 14:03:38.141] Config(TOGGLE_TEMP_OVERLAY) Squad/Controls/Azerty/TOGGLE_TEMP_OVERLAY
[LOG 14:03:38.142] Config(TOGGLE_FLIGHT_FORCES) Squad/Controls/Azerty/TOGGLE_FLIGHT_FORCES
[LOG 14:03:38.143] Config(QUICKSAVE) Squad/Controls/Azerty/QUICKSAVE
[LOG 14:03:38.144] Config(QUICKLOAD) Squad/Controls/Azerty/QUICKLOAD
[LOG 14:03:38.145] Config(THROTTLE_CUTOFF) Squad/Controls/Azerty/THROTTLE_CUTOFF
[LOG 14:03:38.146] Config(THROTTLE_FULL) Squad/Controls/Azerty/THROTTLE_FULL
[LOG 14:03:38.147] Config(LANDING_GEAR) Squad/Controls/Azerty/LANDING_GEAR
[LOG 14:03:38.148] Config(HEADLIGHT_TOGGLE) Squad/Controls/Azerty/HEADLIGHT_TOGGLE
[LOG 14:03:38.149] Config(BRAKES) Squad/Controls/Azerty/BRAKES
[LOG 14:03:38.150] Config(TOGGLE_SPACENAV_FLIGHT_CONTROL) Squad/Controls/Azerty/TOGGLE_SPACENAV_FLIGHT_CONTROL
[LOG 14:03:38.151] Config(TOGGLE_SPACENAV_ROLL_LOCK) Squad/Controls/Azerty/TOGGLE_SPACENAV_ROLL_LOCK
[LOG 14:03:38.152] Config(WHEEL_STEER_LEFT) Squad/Controls/Azerty/WHEEL_STEER_LEFT
[LOG 14:03:38.153] Config(WHEEL_STEER_RIGHT) Squad/Controls/Azerty/WHEEL_STEER_RIGHT
[LOG 14:03:38.154] Config(WHEEL_THROTTLE_DOWN) Squad/Controls/Azerty/WHEEL_THROTTLE_DOWN
[LOG 14:03:38.155] Config(WHEEL_THROTTLE_UP) Squad/Controls/Azerty/WHEEL_THROTTLE_UP
[LOG 14:03:38.156] Config(EVA_forward) Squad/Controls/Azerty/EVA_forward
[LOG 14:03:38.157] Config(EVA_back) Squad/Controls/Azerty/EVA_back
[LOG 14:03:38.158] Config(EVA_left) Squad/Controls/Azerty/EVA_left
[LOG 14:03:38.159] Config(EVA_right) Squad/Controls/Azerty/EVA_right
[LOG 14:03:38.160] Config(EVA_yaw_left) Squad/Controls/Azerty/EVA_yaw_left
[LOG 14:03:38.161] Config(EVA_yaw_right) Squad/Controls/Azerty/EVA_yaw_right
[LOG 14:03:38.162] Config(EVA_Pack_forward) Squad/Controls/Azerty/EVA_Pack_forward
[LOG 14:03:38.163] Config(EVA_Pack_back) Squad/Controls/Azerty/EVA_Pack_back
[LOG 14:03:38.164] Config(EVA_Pack_left) Squad/Controls/Azerty/EVA_Pack_left
[LOG 14:03:38.165] Config(EVA_Pack_right) Squad/Controls/Azerty/EVA_Pack_right
[LOG 14:03:38.166] Config(EVA_Pack_up) Squad/Controls/Azerty/EVA_Pack_up
[LOG 14:03:38.167] Config(EVA_Pack_down) Squad/Controls/Azerty/EVA_Pack_down
[LOG 14:03:38.168] Config(EVA_Jump) Squad/Controls/Azerty/EVA_Jump
[LOG 14:03:38.169] Config(EVA_Run) Squad/Controls/Azerty/EVA_Run
[LOG 14:03:38.170] Config(EVA_ToggleMovementMode) Squad/Controls/Azerty/EVA_ToggleMovementMode
[LOG 14:03:38.171] Config(EVA_TogglePack) Squad/Controls/Azerty/EVA_TogglePack
[LOG 14:03:38.172] Config(EVA_Use) Squad/Controls/Azerty/EVA_Use
[LOG 14:03:38.173] Config(EVA_Board) Squad/Controls/Azerty/EVA_Board
[LOG 14:03:38.174] Config(EVA_Orient) Squad/Controls/Azerty/EVA_Orient
[LOG 14:03:38.175] Config(EVA_Lights) Squad/Controls/Azerty/EVA_Lights
[LOG 14:03:38.176] Config(Editor_pitchUp) Squad/Controls/Azerty/Editor_pitchUp
[LOG 14:03:38.177] Config(Editor_pitchDown) Squad/Controls/Azerty/Editor_pitchDown
[LOG 14:03:38.178] Config(Editor_yawLeft) Squad/Controls/Azerty/Editor_yawLeft
[LOG 14:03:38.179] Config(Editor_yawRight) Squad/Controls/Azerty/Editor_yawRight
[LOG 14:03:38.180] Config(Editor_rollLeft) Squad/Controls/Azerty/Editor_rollLeft
[LOG 14:03:38.181] Config(Editor_rollRight) Squad/Controls/Azerty/Editor_rollRight
[LOG 14:03:38.182] Config(Editor_resetRotation) Squad/Controls/Azerty/Editor_resetRotation
[LOG 14:03:38.183] Config(Editor_modePlace) Squad/Controls/Azerty/Editor_modePlace
[LOG 14:03:38.184] Config(Editor_modeOffset) Squad/Controls/Azerty/Editor_modeOffset
[LOG 14:03:38.185] Config(Editor_modeRotate) Squad/Controls/Azerty/Editor_modeRotate
[LOG 14:03:38.186] Config(Editor_modeRoot) Squad/Controls/Azerty/Editor_modeRoot
[LOG 14:03:38.187] Config(Editor_coordSystem) Squad/Controls/Azerty/Editor_coordSystem
[LOG 14:03:38.188] Config(Editor_toggleSymMethod) Squad/Controls/Azerty/Editor_toggleSymMethod
[LOG 14:03:38.189] Config(Editor_toggleSymMode) Squad/Controls/Azerty/Editor_toggleSymMode
[LOG 14:03:38.190] Config(Editor_toggleAngleSnap) Squad/Controls/Azerty/Editor_toggleAngleSnap
[LOG 14:03:38.191] Config(Editor_fineTweak) Squad/Controls/Azerty/Editor_fineTweak
[LOG 14:03:38.192] Config(Editor_partSearch) Squad/Controls/Azerty/Editor_partSearch
[LOG 14:03:38.193] Config(Editor_zoomScrollModifier) Squad/Controls/Azerty/Editor_zoomScrollModifier
[LOG 14:03:38.194] Config(MODIFIER_KEY) Squad/Controls/Azerty/MODIFIER_KEY
[LOG 14:03:38.195] Config(AbortActionGroup) Squad/Controls/Azerty/AbortActionGroup
[LOG 14:03:38.196] Config(CustomActionGroup1) Squad/Controls/Azerty/CustomActionGroup1
[LOG 14:03:38.198] Config(CustomActionGroup2) Squad/Controls/Azerty/CustomActionGroup2
[LOG 14:03:38.199] Config(CustomActionGroup3) Squad/Controls/Azerty/CustomActionGroup3
[LOG 14:03:38.200] Config(CustomActionGroup4) Squad/Controls/Azerty/CustomActionGroup4
[LOG 14:03:38.201] Config(CustomActionGroup5) Squad/Controls/Azerty/CustomActionGroup5
[LOG 14:03:38.202] Config(CustomActionGroup6) Squad/Controls/Azerty/CustomActionGroup6
[LOG 14:03:38.203] Config(CustomActionGroup7) Squad/Controls/Azerty/CustomActionGroup7
[LOG 14:03:38.204] Config(CustomActionGroup8) Squad/Controls/Azerty/CustomActionGroup8
[LOG 14:03:38.205] Config(CustomActionGroup9) Squad/Controls/Azerty/CustomActionGroup9
[LOG 14:03:38.206] Config(CustomActionGroup10) Squad/Controls/Azerty/CustomActionGroup10
[LOG 14:03:38.207] Config(KEY_MAP) Squad/Controls/Azerty/KEY_MAP
[LOG 14:03:38.208] Config(KEYBOARD_LAYOUT) Squad/Controls/Dvorak/US Dvorak Keyboard
[LOG 14:03:38.209] Config(PITCH_DOWN) Squad/Controls/Dvorak/PITCH_DOWN
[LOG 14:03:38.210] Config(PITCH_UP) Squad/Controls/Dvorak/PITCH_UP
[LOG 14:03:38.211] Config(YAW_LEFT) Squad/Controls/Dvorak/YAW_LEFT
[LOG 14:03:38.212] Config(YAW_RIGHT) Squad/Controls/Dvorak/YAW_RIGHT
[LOG 14:03:38.213] Config(ROLL_LEFT) Squad/Controls/Dvorak/ROLL_LEFT
[LOG 14:03:38.214] Config(ROLL_RIGHT) Squad/Controls/Dvorak/ROLL_RIGHT
[LOG 14:03:38.215] Config(THROTTLE_UP) Squad/Controls/Dvorak/THROTTLE_UP
[LOG 14:03:38.216] Config(THROTTLE_DOWN) Squad/Controls/Dvorak/THROTTLE_DOWN
[LOG 14:03:38.217] Config(SAS_HOLD) Squad/Controls/Dvorak/SAS_HOLD
[LOG 14:03:38.218] Config(SAS_TOGGLE) Squad/Controls/Dvorak/SAS_TOGGLE
[LOG 14:03:38.219] Config(LAUNCH_STAGES) Squad/Controls/Dvorak/LAUNCH_STAGES
[LOG 14:03:38.219] Config(Docking_toggleRotLin) Squad/Controls/Dvorak/Docking_toggleRotLin
[LOG 14:03:38.221] Config(CAMERA_MODE) Squad/Controls/Dvorak/CAMERA_MODE
[LOG 14:03:38.222] Config(CAMERA_NEXT) Squad/Controls/Dvorak/CAMERA_NEXT
[LOG 14:03:38.222] Config(PAUSE) Squad/Controls/Dvorak/PAUSE
[LOG 14:03:38.223] Config(PRECISION_CTRL) Squad/Controls/Dvorak/PRECISION_CTRL
[LOG 14:03:38.224] Config(ZOOM_IN) Squad/Controls/Dvorak/ZOOM_IN
[LOG 14:03:38.225] Config(ZOOM_OUT) Squad/Controls/Dvorak/ZOOM_OUT
[LOG 14:03:38.226] Config(SCROLL_VIEW_UP) Squad/Controls/Dvorak/SCROLL_VIEW_UP
[LOG 14:03:38.227] Config(SCROLL_VIEW_DOWN) Squad/Controls/Dvorak/SCROLL_VIEW_DOWN
[LOG 14:03:38.228] Config(SCROLL_ICONS_UP) Squad/Controls/Dvorak/SCROLL_ICONS_UP
[LOG 14:03:38.229] Config(SCROLL_ICONS_DOWN) Squad/Controls/Dvorak/SCROLL_ICONS_DOWN
[LOG 14:03:38.230] Config(CAMERA_ORBIT_UP) Squad/Controls/Dvorak/CAMERA_ORBIT_UP
[LOG 14:03:38.231] Config(CAMERA_ORBIT_DOWN) Squad/Controls/Dvorak/CAMERA_ORBIT_DOWN
[LOG 14:03:38.232] Config(CAMERA_ORBIT_LEFT) Squad/Controls/Dvorak/CAMERA_ORBIT_LEFT
[LOG 14:03:38.233] Config(CAMERA_ORBIT_RIGHT) Squad/Controls/Dvorak/CAMERA_ORBIT_RIGHT
[LOG 14:03:38.234] Config(CAMERA_RESET) Squad/Controls/Dvorak/CAMERA_RESET
[LOG 14:03:38.235] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Dvorak/CAMERA_MOUSE_TOGGLE
[LOG 14:03:38.237] Config(TIME_WARP_INCREASE) Squad/Controls/Dvorak/TIME_WARP_INCREASE
[LOG 14:03:38.238] Config(TIME_WARP_DECREASE) Squad/Controls/Dvorak/TIME_WARP_DECREASE
[LOG 14:03:38.239] Config(TIME_WARP_STOP) Squad/Controls/Dvorak/TIME_WARP_STOP
[LOG 14:03:38.240] Config(MAP_VIEW_TOGGLE) Squad/Controls/Dvorak/MAP_VIEW_TOGGLE
[LOG 14:03:38.241] Config(NAVBALL_TOGGLE) Squad/Controls/Dvorak/NAVBALL_TOGGLE
[LOG 14:03:38.242] Config(UIMODE_STAGING) Squad/Controls/Dvorak/UIMODE_STAGING
[LOG 14:03:38.243] Config(UIMODE_DOCKING) Squad/Controls/Dvorak/UIMODE_DOCKING
[LOG 14:03:38.244] Config(TRANSLATE_DOWN) Squad/Controls/Dvorak/TRANSLATE_DOWN
[LOG 14:03:38.245] Config(TRANSLATE_UP) Squad/Controls/Dvorak/TRANSLATE_UP
[LOG 14:03:38.246] Config(TRANSLATE_LEFT) Squad/Controls/Dvorak/TRANSLATE_LEFT
[LOG 14:03:38.247] Config(TRANSLATE_RIGHT) Squad/Controls/Dvorak/TRANSLATE_RIGHT
[LOG 14:03:38.248] Config(TRANSLATE_FWD) Squad/Controls/Dvorak/TRANSLATE_FWD
[LOG 14:03:38.249] Config(TRANSLATE_BACK) Squad/Controls/Dvorak/TRANSLATE_BACK
[LOG 14:03:38.250] Config(RCS_TOGGLE) Squad/Controls/Dvorak/RCS_TOGGLE
[LOG 14:03:38.251] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Dvorak/FOCUS_NEXT_VESSEL
[LOG 14:03:38.252] Config(FOCUS_PREV_VESSEL) Squad/Controls/Dvorak/FOCUS_PREV_VESSEL
[LOG 14:03:38.253] Config(TOGGLE_UI) Squad/Controls/Dvorak/TOGGLE_UI
[LOG 14:03:38.254] Config(TOGGLE_STATUS_SCREEN) Squad/Controls/Dvorak/TOGGLE_STATUS_SCREEN
[LOG 14:03:38.255] Config(TAKE_SCREENSHOT) Squad/Controls/Dvorak/TAKE_SCREENSHOT
[LOG 14:03:38.256] Config(TOGGLE_LABELS) Squad/Controls/Dvorak/TOGGLE_LABELS
[LOG 14:03:38.257] Config(TOGGLE_TEMP_GAUGES) Squad/Controls/Dvorak/TOGGLE_TEMP_GAUGES
[LOG 14:03:38.258] Config(TOGGLE_TEMP_OVERLAY) Squad/Controls/Dvorak/TOGGLE_TEMP_OVERLAY
[LOG 14:03:38.259] Config(TOGGLE_FLIGHT_FORCES) Squad/Controls/Dvorak/TOGGLE_FLIGHT_FORCES
[LOG 14:03:38.260] Config(QUICKSAVE) Squad/Controls/Dvorak/QUICKSAVE
[LOG 14:03:38.261] Config(QUICKLOAD) Squad/Controls/Dvorak/QUICKLOAD
[LOG 14:03:38.262] Config(THROTTLE_CUTOFF) Squad/Controls/Dvorak/THROTTLE_CUTOFF
[LOG 14:03:38.263] Config(THROTTLE_FULL) Squad/Controls/Dvorak/THROTTLE_FULL
[LOG 14:03:38.264] Config(LANDING_GEAR) Squad/Controls/Dvorak/LANDING_GEAR
[LOG 14:03:38.265] Config(HEADLIGHT_TOGGLE) Squad/Controls/Dvorak/HEADLIGHT_TOGGLE
[LOG 14:03:38.266] Config(BRAKES) Squad/Controls/Dvorak/BRAKES
[LOG 14:03:38.267] Config(TOGGLE_SPACENAV_FLIGHT_CONTROL) Squad/Controls/Dvorak/TOGGLE_SPACENAV_FLIGHT_CONTROL
[LOG 14:03:38.268] Config(TOGGLE_SPACENAV_ROLL_LOCK) Squad/Controls/Dvorak/TOGGLE_SPACENAV_ROLL_LOCK
[LOG 14:03:38.269] Config(WHEEL_STEER_LEFT) Squad/Controls/Dvorak/WHEEL_STEER_LEFT
[LOG 14:03:38.270] Config(WHEEL_STEER_RIGHT) Squad/Controls/Dvorak/WHEEL_STEER_RIGHT
[LOG 14:03:38.271] Config(WHEEL_THROTTLE_DOWN) Squad/Controls/Dvorak/WHEEL_THROTTLE_DOWN
[LOG 14:03:38.272] Config(WHEEL_THROTTLE_UP) Squad/Controls/Dvorak/WHEEL_THROTTLE_UP
[LOG 14:03:38.273] Config(EVA_forward) Squad/Controls/Dvorak/EVA_forward
[LOG 14:03:38.274] Config(EVA_back) Squad/Controls/Dvorak/EVA_back
[LOG 14:03:38.275] Config(EVA_left) Squad/Controls/Dvorak/EVA_left
[LOG 14:03:38.276] Config(EVA_right) Squad/Controls/Dvorak/EVA_right
[LOG 14:03:38.277] Config(EVA_yaw_left) Squad/Controls/Dvorak/EVA_yaw_left
[LOG 14:03:38.278] Config(EVA_yaw_right) Squad/Controls/Dvorak/EVA_yaw_right
[LOG 14:03:38.279] Config(EVA_Pack_forward) Squad/Controls/Dvorak/EVA_Pack_forward
[LOG 14:03:38.280] Config(EVA_Pack_back) Squad/Controls/Dvorak/EVA_Pack_back
[LOG 14:03:38.281] Config(EVA_Pack_left) Squad/Controls/Dvorak/EVA_Pack_left
[LOG 14:03:38.282] Config(EVA_Pack_right) Squad/Controls/Dvorak/EVA_Pack_right
[LOG 14:03:38.283] Config(EVA_Pack_up) Squad/Controls/Dvorak/EVA_Pack_up
[LOG 14:03:38.284] Config(EVA_Pack_down) Squad/Controls/Dvorak/EVA_Pack_down
[LOG 14:03:38.285] Config(EVA_Jump) Squad/Controls/Dvorak/EVA_Jump
[LOG 14:03:38.286] Config(EVA_Run) Squad/Controls/Dvorak/EVA_Run
[LOG 14:03:38.287] Config(EVA_ToggleMovementMode) Squad/Controls/Dvorak/EVA_ToggleMovementMode
[LOG 14:03:38.288] Config(EVA_TogglePack) Squad/Controls/Dvorak/EVA_TogglePack
[LOG 14:03:38.289] Config(EVA_Use) Squad/Controls/Dvorak/EVA_Use
[LOG 14:03:38.290] Config(EVA_Board) Squad/Controls/Dvorak/EVA_Board
[LOG 14:03:38.291] Config(EVA_Orient) Squad/Controls/Dvorak/EVA_Orient
[LOG 14:03:38.292] Config(EVA_Lights) Squad/Controls/Dvorak/EVA_Lights
[LOG 14:03:38.293] Config(Editor_pitchUp) Squad/Controls/Dvorak/Editor_pitchUp
[LOG 14:03:38.294] Config(Editor_pitchDown) Squad/Controls/Dvorak/Editor_pitchDown
[LOG 14:03:38.295] Config(Editor_yawLeft) Squad/Controls/Dvorak/Editor_yawLeft
[LOG 14:03:38.296] Config(Editor_yawRight) Squad/Controls/Dvorak/Editor_yawRight
[LOG 14:03:38.297] Config(Editor_rollLeft) Squad/Controls/Dvorak/Editor_rollLeft
[LOG 14:03:38.298] Config(Editor_rollRight) Squad/Controls/Dvorak/Editor_rollRight
[LOG 14:03:38.299] Config(Editor_resetRotation) Squad/Controls/Dvorak/Editor_resetRotation
[LOG 14:03:38.300] Config(Editor_modePlace) Squad/Controls/Dvorak/Editor_modePlace
[LOG 14:03:38.301] Config(Editor_modeOffset) Squad/Controls/Dvorak/Editor_modeOffset
[LOG 14:03:38.302] Config(Editor_modeRotate) Squad/Controls/Dvorak/Editor_modeRotate
[LOG 14:03:38.303] Config(Editor_modeRoot) Squad/Controls/Dvorak/Editor_modeRoot
[LOG 14:03:38.304] Config(Editor_coordSystem) Squad/Controls/Dvorak/Editor_coordSystem
[LOG 14:03:38.305] Config(Editor_toggleSymMethod) Squad/Controls/Dvorak/Editor_toggleSymMethod
[LOG 14:03:38.306] Config(Editor_toggleSymMode) Squad/Controls/Dvorak/Editor_toggleSymMode
[LOG 14:03:38.307] Config(Editor_toggleAngleSnap) Squad/Controls/Dvorak/Editor_toggleAngleSnap
[LOG 14:03:38.308] Config(Editor_fineTweak) Squad/Controls/Dvorak/Editor_fineTweak
[LOG 14:03:38.309] Config(Editor_partSearch) Squad/Controls/Dvorak/Editor_partSearch
[LOG 14:03:38.310] Config(Editor_zoomScrollModifier) Squad/Controls/Dvorak/Editor_zoomScrollModifier
[LOG 14:03:38.312] Config(MODIFIER_KEY) Squad/Controls/Dvorak/MODIFIER_KEY
[LOG 14:03:38.313] Config(AbortActionGroup) Squad/Controls/Dvorak/AbortActionGroup
[LOG 14:03:38.314] Config(CustomActionGroup1) Squad/Controls/Dvorak/CustomActionGroup1
[LOG 14:03:38.315] Config(CustomActionGroup2) Squad/Controls/Dvorak/CustomActionGroup2
[LOG 14:03:38.316] Config(CustomActionGroup3) Squad/Controls/Dvorak/CustomActionGroup3
[LOG 14:03:38.317] Config(CustomActionGroup4) Squad/Controls/Dvorak/CustomActionGroup4
[LOG 14:03:38.318] Config(CustomActionGroup5) Squad/Controls/Dvorak/CustomActionGroup5
[LOG 14:03:38.319] Config(CustomActionGroup6) Squad/Controls/Dvorak/CustomActionGroup6
[LOG 14:03:38.320] Config(CustomActionGroup7) Squad/Controls/Dvorak/CustomActionGroup7
[LOG 14:03:38.321] Config(CustomActionGroup8) Squad/Controls/Dvorak/CustomActionGroup8
[LOG 14:03:38.322] Config(CustomActionGroup9) Squad/Controls/Dvorak/CustomActionGroup9
[LOG 14:03:38.323] Config(CustomActionGroup10) Squad/Controls/Dvorak/CustomActionGroup10
[LOG 14:03:38.324] Config(KEY_MAP) Squad/Controls/Dvorak/KEY_MAP
[LOG 14:03:38.325] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty/US Keyboard
[LOG 14:03:38.326] Config(PITCH_DOWN) Squad/Controls/Qwerty/PITCH_DOWN
[LOG 14:03:38.327] Config(PITCH_UP) Squad/Controls/Qwerty/PITCH_UP
[LOG 14:03:38.328] Config(YAW_LEFT) Squad/Controls/Qwerty/YAW_LEFT
[LOG 14:03:38.329] Config(YAW_RIGHT) Squad/Controls/Qwerty/YAW_RIGHT
[LOG 14:03:38.330] Config(ROLL_LEFT) Squad/Controls/Qwerty/ROLL_LEFT
[LOG 14:03:38.331] Config(ROLL_RIGHT) Squad/Controls/Qwerty/ROLL_RIGHT
[LOG 14:03:38.332] Config(THROTTLE_UP) Squad/Controls/Qwerty/THROTTLE_UP
[LOG 14:03:38.333] Config(THROTTLE_DOWN) Squad/Controls/Qwerty/THROTTLE_DOWN
[LOG 14:03:38.334] Config(SAS_HOLD) Squad/Controls/Qwerty/SAS_HOLD
[LOG 14:03:38.335] Config(SAS_TOGGLE) Squad/Controls/Qwerty/SAS_TOGGLE
[LOG 14:03:38.336] Config(LAUNCH_STAGES) Squad/Controls/Qwerty/LAUNCH_STAGES
[LOG 14:03:38.337] Config(Docking_toggleRotLin) Squad/Controls/Qwerty/Docking_toggleRotLin
[LOG 14:03:38.338] Config(CAMERA_MODE) Squad/Controls/Qwerty/CAMERA_MODE
[LOG 14:03:38.339] Config(CAMERA_NEXT) Squad/Controls/Qwerty/CAMERA_NEXT
[LOG 14:03:38.340] Config(PAUSE) Squad/Controls/Qwerty/PAUSE
[LOG 14:03:38.341] Config(PRECISION_CTRL) Squad/Controls/Qwerty/PRECISION_CTRL
[LOG 14:03:38.342] Config(ZOOM_IN) Squad/Controls/Qwerty/ZOOM_IN
[LOG 14:03:38.343] Config(ZOOM_OUT) Squad/Controls/Qwerty/ZOOM_OUT
[LOG 14:03:38.343] Config(SCROLL_VIEW_UP) Squad/Controls/Qwerty/SCROLL_VIEW_UP
[LOG 14:03:38.344] Config(SCROLL_VIEW_DOWN) Squad/Controls/Qwerty/SCROLL_VIEW_DOWN
[LOG 14:03:38.345] Config(SCROLL_ICONS_UP) Squad/Controls/Qwerty/SCROLL_ICONS_UP
[LOG 14:03:38.346] Config(SCROLL_ICONS_DOWN) Squad/Controls/Qwerty/SCROLL_ICONS_DOWN
[LOG 14:03:38.347] Config(CAMERA_ORBIT_UP) Squad/Controls/Qwerty/CAMERA_ORBIT_UP
[LOG 14:03:38.348] Config(CAMERA_ORBIT_DOWN) Squad/Controls/Qwerty/CAMERA_ORBIT_DOWN
[LOG 14:03:38.350] Config(CAMERA_ORBIT_LEFT) Squad/Controls/Qwerty/CAMERA_ORBIT_LEFT
[LOG 14:03:38.351] Config(CAMERA_ORBIT_RIGHT) Squad/Controls/Qwerty/CAMERA_ORBIT_RIGHT
[LOG 14:03:38.352] Config(CAMERA_RESET) Squad/Controls/Qwerty/CAMERA_RESET
[LOG 14:03:38.353] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwerty/CAMERA_MOUSE_TOGGLE
[LOG 14:03:38.354] Config(TIME_WARP_INCREASE) Squad/Controls/Qwerty/TIME_WARP_INCREASE
[LOG 14:03:38.355] Config(TIME_WARP_DECREASE) Squad/Controls/Qwerty/TIME_WARP_DECREASE
[LOG 14:03:38.356] Config(TIME_WARP_STOP) Squad/Controls/Qwerty/TIME_WARP_STOP
[LOG 14:03:38.357] Config(MAP_VIEW_TOGGLE) Squad/Controls/Qwerty/MAP_VIEW_TOGGLE
[LOG 14:03:38.358] Config(NAVBALL_TOGGLE) Squad/Controls/Qwerty/NAVBALL_TOGGLE
[LOG 14:03:38.359] Config(UIMODE_STAGING) Squad/Controls/Qwerty/UIMODE_STAGING
[LOG 14:03:38.360] Config(UIMODE_DOCKING) Squad/Controls/Qwerty/UIMODE_DOCKING
[LOG 14:03:38.361] Config(TRANSLATE_DOWN) Squad/Controls/Qwerty/TRANSLATE_DOWN
[LOG 14:03:38.362] Config(TRANSLATE_UP) Squad/Controls/Qwerty/TRANSLATE_UP
[LOG 14:03:38.363] Config(TRANSLATE_LEFT) Squad/Controls/Qwerty/TRANSLATE_LEFT
[LOG 14:03:38.364] Config(TRANSLATE_RIGHT) Squad/Controls/Qwerty/TRANSLATE_RIGHT
[LOG 14:03:38.365] Config(TRANSLATE_FWD) Squad/Controls/Qwerty/TRANSLATE_FWD
[LOG 14:03:38.366] Config(TRANSLATE_BACK) Squad/Controls/Qwerty/TRANSLATE_BACK
[LOG 14:03:38.367] Config(RCS_TOGGLE) Squad/Controls/Qwerty/RCS_TOGGLE
[LOG 14:03:38.368] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwerty/FOCUS_NEXT_VESSEL
[LOG 14:03:38.369] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwerty/FOCUS_PREV_VESSEL
[LOG 14:03:38.370] Config(TOGGLE_UI) Squad/Controls/Qwerty/TOGGLE_UI
[LOG 14:03:38.371] Config(TOGGLE_STATUS_SCREEN) Squad/Controls/Qwerty/TOGGLE_STATUS_SCREEN
[LOG 14:03:38.372] Config(TAKE_SCREENSHOT) Squad/Controls/Qwerty/TAKE_SCREENSHOT
[LOG 14:03:38.373] Config(TOGGLE_LABELS) Squad/Controls/Qwerty/TOGGLE_LABELS
[LOG 14:03:38.374] Config(TOGGLE_TEMP_GAUGES) Squad/Controls/Qwerty/TOGGLE_TEMP_GAUGES
[LOG 14:03:38.375] Config(TOGGLE_TEMP_OVERLAY) Squad/Controls/Qwerty/TOGGLE_TEMP_OVERLAY
[LOG 14:03:38.376] Config(TOGGLE_FLIGHT_FORCES) Squad/Controls/Qwerty/TOGGLE_FLIGHT_FORCES
[LOG 14:03:38.377] Config(QUICKSAVE) Squad/Controls/Qwerty/QUICKSAVE
[LOG 14:03:38.378] Config(QUICKLOAD) Squad/Controls/Qwerty/QUICKLOAD
[LOG 14:03:38.379] Config(THROTTLE_CUTOFF) Squad/Controls/Qwerty/THROTTLE_CUTOFF
[LOG 14:03:38.380] Config(THROTTLE_FULL) Squad/Controls/Qwerty/THROTTLE_FULL
[LOG 14:03:38.381] Config(LANDING_GEAR) Squad/Controls/Qwerty/LANDING_GEAR
[LOG 14:03:38.382] Config(HEADLIGHT_TOGGLE) Squad/Controls/Qwerty/HEADLIGHT_TOGGLE
[LOG 14:03:38.383] Config(BRAKES) Squad/Controls/Qwerty/BRAKES
[LOG 14:03:38.384] Config(TOGGLE_SPACENAV_FLIGHT_CONTROL) Squad/Controls/Qwerty/TOGGLE_SPACENAV_FLIGHT_CONTROL
[LOG 14:03:38.385] Config(TOGGLE_SPACENAV_ROLL_LOCK) Squad/Controls/Qwerty/TOGGLE_SPACENAV_ROLL_LOCK
[LOG 14:03:38.386] Config(WHEEL_STEER_LEFT) Squad/Controls/Qwerty/WHEEL_STEER_LEFT
[LOG 14:03:38.387] Config(WHEEL_STEER_RIGHT) Squad/Controls/Qwerty/WHEEL_STEER_RIGHT
[LOG 14:03:38.388] Config(WHEEL_THROTTLE_DOWN) Squad/Controls/Qwerty/WHEEL_THROTTLE_DOWN
[LOG 14:03:38.389] Config(WHEEL_THROTTLE_UP) Squad/Controls/Qwerty/WHEEL_THROTTLE_UP
[LOG 14:03:38.390] Config(EVA_forward) Squad/Controls/Qwerty/EVA_forward
[LOG 14:03:38.391] Config(EVA_back) Squad/Controls/Qwerty/EVA_back
[LOG 14:03:38.392] Config(EVA_left) Squad/Controls/Qwerty/EVA_left
[LOG 14:03:38.393] Config(EVA_right) Squad/Controls/Qwerty/EVA_right
[LOG 14:03:38.394] Config(EVA_yaw_left) Squad/Controls/Qwerty/EVA_yaw_left
[LOG 14:03:38.395] Config(EVA_yaw_right) Squad/Controls/Qwerty/EVA_yaw_right
[LOG 14:03:38.396] Config(EVA_Pack_forward) Squad/Controls/Qwerty/EVA_Pack_forward
[LOG 14:03:38.397] Config(EVA_Pack_back) Squad/Controls/Qwerty/EVA_Pack_back
[LOG 14:03:38.398] Config(EVA_Pack_left) Squad/Controls/Qwerty/EVA_Pack_left
[LOG 14:03:38.399] Config(EVA_Pack_right) Squad/Controls/Qwerty/EVA_Pack_right
[LOG 14:03:38.400] Config(EVA_Pack_up) Squad/Controls/Qwerty/EVA_Pack_up
[LOG 14:03:38.401] Config(EVA_Pack_down) Squad/Controls/Qwerty/EVA_Pack_down
[LOG 14:03:38.402] Config(EVA_Jump) Squad/Controls/Qwerty/EVA_Jump
[LOG 14:03:38.403] Config(EVA_Run) Squad/Controls/Qwerty/EVA_Run
[LOG 14:03:38.404] Config(EVA_ToggleMovementMode) Squad/Controls/Qwerty/EVA_ToggleMovementMode
[LOG 14:03:38.405] Config(EVA_TogglePack) Squad/Controls/Qwerty/EVA_TogglePack
[LOG 14:03:38.406] Config(EVA_Use) Squad/Controls/Qwerty/EVA_Use
[LOG 14:03:38.407] Config(EVA_Board) Squad/Controls/Qwerty/EVA_Board
[LOG 14:03:38.408] Config(EVA_Orient) Squad/Controls/Qwerty/EVA_Orient
[LOG 14:03:38.409] Config(EVA_Lights) Squad/Controls/Qwerty/EVA_Lights
[LOG 14:03:38.410] Config(Editor_pitchUp) Squad/Controls/Qwerty/Editor_pitchUp
[LOG 14:03:38.411] Config(Editor_pitchDown) Squad/Controls/Qwerty/Editor_pitchDown
[LOG 14:03:38.412] Config(Editor_yawLeft) Squad/Controls/Qwerty/Editor_yawLeft
[LOG 14:03:38.413] Config(Editor_yawRight) Squad/Controls/Qwerty/Editor_yawRight
[LOG 14:03:38.414] Config(Editor_rollLeft) Squad/Controls/Qwerty/Editor_rollLeft
[LOG 14:03:38.415] Config(Editor_rollRight) Squad/Controls/Qwerty/Editor_rollRight
[LOG 14:03:38.416] Config(Editor_resetRotation) Squad/Controls/Qwerty/Editor_resetRotation
[LOG 14:03:38.417] Config(Editor_modePlace) Squad/Controls/Qwerty/Editor_modePlace
[LOG 14:03:38.418] Config(Editor_modeOffset) Squad/Controls/Qwerty/Editor_modeOffset
[LOG 14:03:38.419] Config(Editor_modeRotate) Squad/Controls/Qwerty/Editor_modeRotate
[LOG 14:03:38.420] Config(Editor_modeRoot) Squad/Controls/Qwerty/Editor_modeRoot
[LOG 14:03:38.421] Config(Editor_coordSystem) Squad/Controls/Qwerty/Editor_coordSystem
[LOG 14:03:38.422] Config(Editor_toggleSymMethod) Squad/Controls/Qwerty/Editor_toggleSymMethod
[LOG 14:03:38.423] Config(Editor_toggleSymMode) Squad/Controls/Qwerty/Editor_toggleSymMode
[LOG 14:03:38.424] Config(Editor_toggleAngleSnap) Squad/Controls/Qwerty/Editor_toggleAngleSnap
[LOG 14:03:38.425] Config(Editor_fineTweak) Squad/Controls/Qwerty/Editor_fineTweak
[LOG 14:03:38.426] Config(Editor_partSearch) Squad/Controls/Qwerty/Editor_partSearch
[LOG 14:03:38.427] Config(Editor_zoomScrollModifier) Squad/Controls/Qwerty/Editor_zoomScrollModifier
[LOG 14:03:38.429] Config(MODIFIER_KEY) Squad/Controls/Qwerty/MODIFIER_KEY
[LOG 14:03:38.430] Config(AbortActionGroup) Squad/Controls/Qwerty/AbortActionGroup
[LOG 14:03:38.431] Config(CustomActionGroup1) Squad/Controls/Qwerty/CustomActionGroup1
[LOG 14:03:38.432] Config(CustomActionGroup2) Squad/Controls/Qwerty/CustomActionGroup2
[LOG 14:03:38.433] Config(CustomActionGroup3) Squad/Controls/Qwerty/CustomActionGroup3
[LOG 14:03:38.434] Config(CustomActionGroup4) Squad/Controls/Qwerty/CustomActionGroup4
[LOG 14:03:38.435] Config(CustomActionGroup5) Squad/Controls/Qwerty/CustomActionGroup5
[LOG 14:03:38.436] Config(CustomActionGroup6) Squad/Controls/Qwerty/CustomActionGroup6
[LOG 14:03:38.437] Config(CustomActionGroup7) Squad/Controls/Qwerty/CustomActionGroup7
[LOG 14:03:38.438] Config(CustomActionGroup8) Squad/Controls/Qwerty/CustomActionGroup8
[LOG 14:03:38.439] Config(CustomActionGroup9) Squad/Controls/Qwerty/CustomActionGroup9
[LOG 14:03:38.440] Config(CustomActionGroup10) Squad/Controls/Qwerty/CustomActionGroup10
[LOG 14:03:38.441] Config(KEY_MAP) Squad/Controls/Qwerty/KEY_MAP
[LOG 14:03:38.442] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty_en-GB/UK Keyboard
[LOG 14:03:38.443] Config(KEY_MAP) Squad/Controls/Qwerty_en-GB/KEY_MAP
[LOG 14:03:38.444] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty_es-LA/Latin America Keyboard
[LOG 14:03:38.445] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwerty_es-LA/CAMERA_MOUSE_TOGGLE
[LOG 14:03:38.446] Config(TIME_WARP_STOP) Squad/Controls/Qwerty_es-LA/TIME_WARP_STOP
[LOG 14:03:38.447] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwerty_es-LA/FOCUS_NEXT_VESSEL
[LOG 14:03:38.448] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwerty_es-LA/FOCUS_PREV_VESSEL
[LOG 14:03:38.449] Config(CAMERA_RESET) Squad/Controls/Qwerty_es-LA/CAMERA_RESET
[LOG 14:03:38.450] Config(Editor_partSearch) Squad/Controls/Qwerty_es-LA/Editor_partSearch
[LOG 14:03:38.451] Config(KEY_MAP) Squad/Controls/Qwerty_es-LA/KEY_MAP
[LOG 14:03:38.452] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty_it-IT/Italian Keyboard 105
[LOG 14:03:38.453] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwerty_it-IT/FOCUS_NEXT_VESSEL
[LOG 14:03:38.454] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwerty_it-IT/FOCUS_PREV_VESSEL
[LOG 14:03:38.456] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwerty_it-IT/CAMERA_MOUSE_TOGGLE
[LOG 14:03:38.457] Config(TIME_WARP_STOP) Squad/Controls/Qwerty_it-IT/TIME_WARP_STOP
[LOG 14:03:38.458] Config(CAMERA_RESET) Squad/Controls/Qwerty_it-IT/CAMERA_RESET
[LOG 14:03:38.459] Config(Editor_partSearch) Squad/Controls/Qwerty_it-IT/Editor_partSearch
[LOG 14:03:38.460] Config(KEY_MAP) Squad/Controls/Qwerty_it-IT/KEY_MAP
[LOG 14:03:38.461] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty_ja-JP/Japanese 109 Keyboard
[LOG 14:03:38.462] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwerty_ja-JP/FOCUS_NEXT_VESSEL
[LOG 14:03:38.463] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwerty_ja-JP/FOCUS_PREV_VESSEL
[LOG 14:03:38.464] Config(PRECISION_CTRL) Squad/Controls/Qwerty_ja-JP/PRECISION_CTRL
[LOG 14:03:38.465] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwerty_ja-JP/CAMERA_MOUSE_TOGGLE
[LOG 14:03:38.466] Config(Editor_partSearch) Squad/Controls/Qwerty_ja-JP/Editor_partSearch
[LOG 14:03:38.467] Config(CAMERA_RESET) Squad/Controls/Qwerty_ja-JP/CAMERA_RESET
[LOG 14:03:38.468] Config(KEY_MAP) Squad/Controls/Qwerty_ja-JP/KEY_MAP
[LOG 14:03:38.469] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwertz/German QWERTZ Keyboard
[LOG 14:03:38.470] Config(PITCH_DOWN) Squad/Controls/Qwertz/PITCH_DOWN
[LOG 14:03:38.471] Config(PITCH_UP) Squad/Controls/Qwertz/PITCH_UP
[LOG 14:03:38.472] Config(YAW_LEFT) Squad/Controls/Qwertz/YAW_LEFT
[LOG 14:03:38.473] Config(YAW_RIGHT) Squad/Controls/Qwertz/YAW_RIGHT
[LOG 14:03:38.474] Config(ROLL_LEFT) Squad/Controls/Qwertz/ROLL_LEFT
[LOG 14:03:38.475] Config(ROLL_RIGHT) Squad/Controls/Qwertz/ROLL_RIGHT
[LOG 14:03:38.476] Config(THROTTLE_UP) Squad/Controls/Qwertz/THROTTLE_UP
[LOG 14:03:38.477] Config(THROTTLE_DOWN) Squad/Controls/Qwertz/THROTTLE_DOWN
[LOG 14:03:38.478] Config(SAS_HOLD) Squad/Controls/Qwertz/SAS_HOLD
[LOG 14:03:38.479] Config(SAS_TOGGLE) Squad/Controls/Qwertz/SAS_TOGGLE
[LOG 14:03:38.480] Config(LAUNCH_STAGES) Squad/Controls/Qwertz/LAUNCH_STAGES
[LOG 14:03:38.481] Config(Docking_toggleRotLin) Squad/Controls/Qwertz/Docking_toggleRotLin
[LOG 14:03:38.482] Config(CAMERA_MODE) Squad/Controls/Qwertz/CAMERA_MODE
[LOG 14:03:38.483] Config(CAMERA_NEXT) Squad/Controls/Qwertz/CAMERA_NEXT
[LOG 14:03:38.484] Config(PAUSE) Squad/Controls/Qwertz/PAUSE
[LOG 14:03:38.485] Config(PRECISION_CTRL) Squad/Controls/Qwertz/PRECISION_CTRL
[LOG 14:03:38.486] Config(ZOOM_IN) Squad/Controls/Qwertz/ZOOM_IN
[LOG 14:03:38.486] Config(ZOOM_OUT) Squad/Controls/Qwertz/ZOOM_OUT
[LOG 14:03:38.487] Config(SCROLL_VIEW_UP) Squad/Controls/Qwertz/SCROLL_VIEW_UP
[LOG 14:03:38.488] Config(SCROLL_VIEW_DOWN) Squad/Controls/Qwertz/SCROLL_VIEW_DOWN
[LOG 14:03:38.489] Config(SCROLL_ICONS_UP) Squad/Controls/Qwertz/SCROLL_ICONS_UP
[LOG 14:03:38.490] Config(SCROLL_ICONS_DOWN) Squad/Controls/Qwertz/SCROLL_ICONS_DOWN
[LOG 14:03:38.491] Config(CAMERA_ORBIT_UP) Squad/Controls/Qwertz/CAMERA_ORBIT_UP
[LOG 14:03:38.492] Config(CAMERA_ORBIT_DOWN) Squad/Controls/Qwertz/CAMERA_ORBIT_DOWN
[LOG 14:03:38.493] Config(CAMERA_ORBIT_LEFT) Squad/Controls/Qwertz/CAMERA_ORBIT_LEFT
[LOG 14:03:38.495] Config(CAMERA_ORBIT_RIGHT) Squad/Controls/Qwertz/CAMERA_ORBIT_RIGHT
[LOG 14:03:38.496] Config(CAMERA_RESET) Squad/Controls/Qwertz/CAMERA_RESET
[LOG 14:03:38.497] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwertz/CAMERA_MOUSE_TOGGLE
[LOG 14:03:38.498] Config(TIME_WARP_INCREASE) Squad/Controls/Qwertz/TIME_WARP_INCREASE
[LOG 14:03:38.499] Config(TIME_WARP_DECREASE) Squad/Controls/Qwertz/TIME_WARP_DECREASE
[LOG 14:03:38.500] Config(TIME_WARP_STOP) Squad/Controls/Qwertz/TIME_WARP_STOP
[LOG 14:03:38.501] Config(MAP_VIEW_TOGGLE) Squad/Controls/Qwertz/MAP_VIEW_TOGGLE
[LOG 14:03:38.502] Config(NAVBALL_TOGGLE) Squad/Controls/Qwertz/NAVBALL_TOGGLE
[LOG 14:03:38.503] Config(UIMODE_STAGING) Squad/Controls/Qwertz/UIMODE_STAGING
[LOG 14:03:38.504] Config(UIMODE_DOCKING) Squad/Controls/Qwertz/UIMODE_DOCKING
[LOG 14:03:38.505] Config(TRANSLATE_DOWN) Squad/Controls/Qwertz/TRANSLATE_DOWN
[LOG 14:03:38.506] Config(TRANSLATE_UP) Squad/Controls/Qwertz/TRANSLATE_UP
[LOG 14:03:38.507] Config(TRANSLATE_LEFT) Squad/Controls/Qwertz/TRANSLATE_LEFT
[LOG 14:03:38.508] Config(TRANSLATE_RIGHT) Squad/Controls/Qwertz/TRANSLATE_RIGHT
[LOG 14:03:38.509] Config(TRANSLATE_FWD) Squad/Controls/Qwertz/TRANSLATE_FWD
[LOG 14:03:38.510] Config(TRANSLATE_BACK) Squad/Controls/Qwertz/TRANSLATE_BACK
[LOG 14:03:38.511] Config(RCS_TOGGLE) Squad/Controls/Qwertz/RCS_TOGGLE
[LOG 14:03:38.512] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwertz/FOCUS_NEXT_VESSEL
[LOG 14:03:38.513] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwertz/FOCUS_PREV_VESSEL
[LOG 14:03:38.514] Config(TOGGLE_UI) Squad/Controls/Qwertz/TOGGLE_UI
[LOG 14:03:38.515] Config(TOGGLE_STATUS_SCREEN) Squad/Controls/Qwertz/TOGGLE_STATUS_SCREEN
[LOG 14:03:38.516] Config(TAKE_SCREENSHOT) Squad/Controls/Qwertz/TAKE_SCREENSHOT
[LOG 14:03:38.517] Config(TOGGLE_LABELS) Squad/Controls/Qwertz/TOGGLE_LABELS
[LOG 14:03:38.518] Config(TOGGLE_TEMP_GAUGES) Squad/Controls/Qwertz/TOGGLE_TEMP_GAUGES
[LOG 14:03:38.519] Config(TOGGLE_TEMP_OVERLAY) Squad/Controls/Qwertz/TOGGLE_TEMP_OVERLAY
[LOG 14:03:38.520] Config(TOGGLE_FLIGHT_FORCES) Squad/Controls/Qwertz/TOGGLE_FLIGHT_FORCES
[LOG 14:03:38.521] Config(QUICKSAVE) Squad/Controls/Qwertz/QUICKSAVE
[LOG 14:03:38.522] Config(QUICKLOAD) Squad/Controls/Qwertz/QUICKLOAD
[LOG 14:03:38.523] Config(THROTTLE_CUTOFF) Squad/Controls/Qwertz/THROTTLE_CUTOFF
[LOG 14:03:38.524] Config(THROTTLE_FULL) Squad/Controls/Qwertz/THROTTLE_FULL
[LOG 14:03:38.525] Config(LANDING_GEAR) Squad/Controls/Qwertz/LANDING_GEAR
[LOG 14:03:38.526] Config(HEADLIGHT_TOGGLE) Squad/Controls/Qwertz/HEADLIGHT_TOGGLE
[LOG 14:03:38.527] Config(BRAKES) Squad/Controls/Qwertz/BRAKES
[LOG 14:03:38.528] Config(TOGGLE_SPACENAV_FLIGHT_CONTROL) Squad/Controls/Qwertz/TOGGLE_SPACENAV_FLIGHT_CONTROL
[LOG 14:03:38.529] Config(TOGGLE_SPACENAV_ROLL_LOCK) Squad/Controls/Qwertz/TOGGLE_SPACENAV_ROLL_LOCK
[LOG 14:03:38.530] Config(WHEEL_STEER_LEFT) Squad/Controls/Qwertz/WHEEL_STEER_LEFT
[LOG 14:03:38.531] Config(WHEEL_STEER_RIGHT) Squad/Controls/Qwertz/WHEEL_STEER_RIGHT
[LOG 14:03:38.532] Config(WHEEL_THROTTLE_DOWN) Squad/Controls/Qwertz/WHEEL_THROTTLE_DOWN
[LOG 14:03:38.533] Config(WHEEL_THROTTLE_UP) Squad/Controls/Qwertz/WHEEL_THROTTLE_UP
[LOG 14:03:38.534] Config(EVA_forward) Squad/Controls/Qwertz/EVA_forward
[LOG 14:03:38.535] Config(EVA_back) Squad/Controls/Qwertz/EVA_back
[LOG 14:03:38.536] Config(EVA_left) Squad/Controls/Qwertz/EVA_left
[LOG 14:03:38.537] Config(EVA_right) Squad/Controls/Qwertz/EVA_right
[LOG 14:03:38.538] Config(EVA_yaw_left) Squad/Controls/Qwertz/EVA_yaw_left
[LOG 14:03:38.539] Config(EVA_yaw_right) Squad/Controls/Qwertz/EVA_yaw_right
[LOG 14:03:38.540] Config(EVA_Pack_forward) Squad/Controls/Qwertz/EVA_Pack_forward
[LOG 14:03:38.541] Config(EVA_Pack_back) Squad/Controls/Qwertz/EVA_Pack_back
[LOG 14:03:38.542] Config(EVA_Pack_left) Squad/Controls/Qwertz/EVA_Pack_left
[LOG 14:03:38.543] Config(EVA_Pack_right) Squad/Controls/Qwertz/EVA_Pack_right
[LOG 14:03:38.544] Config(EVA_Pack_up) Squad/Controls/Qwertz/EVA_Pack_up
[LOG 14:03:38.545] Config(EVA_Pack_down) Squad/Controls/Qwertz/EVA_Pack_down
[LOG 14:03:38.546] Config(EVA_Jump) Squad/Controls/Qwertz/EVA_Jump
[LOG 14:03:38.547] Config(EVA_Run) Squad/Controls/Qwertz/EVA_Run
[LOG 14:03:38.548] Config(EVA_ToggleMovementMode) Squad/Controls/Qwertz/EVA_ToggleMovementMode
[LOG 14:03:38.549] Config(EVA_TogglePack) Squad/Controls/Qwertz/EVA_TogglePack
[LOG 14:03:38.550] Config(EVA_Use) Squad/Controls/Qwertz/EVA_Use
[LOG 14:03:38.551] Config(EVA_Board) Squad/Controls/Qwertz/EVA_Board
[LOG 14:03:38.552] Config(EVA_Orient) Squad/Controls/Qwertz/EVA_Orient
[LOG 14:03:38.553] Config(EVA_Lights) Squad/Controls/Qwertz/EVA_Lights
[LOG 14:03:38.554] Config(Editor_pitchUp) Squad/Controls/Qwertz/Editor_pitchUp
[LOG 14:03:38.555] Config(Editor_pitchDown) Squad/Controls/Qwertz/Editor_pitchDown
[LOG 14:03:38.556] Config(Editor_yawLeft) Squad/Controls/Qwertz/Editor_yawLeft
[LOG 14:03:38.557] Config(Editor_yawRight) Squad/Controls/Qwertz/Editor_yawRight
[LOG 14:03:38.558] Config(Editor_rollLeft) Squad/Controls/Qwertz/Editor_rollLeft
[LOG 14:03:38.559] Config(Editor_rollRight) Squad/Controls/Qwertz/Editor_rollRight
[LOG 14:03:38.560] Config(Editor_resetRotation) Squad/Controls/Qwertz/Editor_resetRotation
[LOG 14:03:38.561] Config(Editor_modePlace) Squad/Controls/Qwertz/Editor_modePlace
[LOG 14:03:38.562] Config(Editor_modeOffset) Squad/Controls/Qwertz/Editor_modeOffset
[LOG 14:03:38.563] Config(Editor_modeRotate) Squad/Controls/Qwertz/Editor_modeRotate
[LOG 14:03:38.564] Config(Editor_modeRoot) Squad/Controls/Qwertz/Editor_modeRoot
[LOG 14:03:38.565] Config(Editor_coordSystem) Squad/Controls/Qwertz/Editor_coordSystem
[LOG 14:03:38.566] Config(Editor_toggleSymMethod) Squad/Controls/Qwertz/Editor_toggleSymMethod
[LOG 14:03:38.567] Config(Editor_toggleSymMode) Squad/Controls/Qwertz/Editor_toggleSymMode
[LOG 14:03:38.568] Config(Editor_toggleAngleSnap) Squad/Controls/Qwertz/Editor_toggleAngleSnap
[LOG 14:03:38.569] Config(Editor_fineTweak) Squad/Controls/Qwertz/Editor_fineTweak
[LOG 14:03:38.570] Config(Editor_partSearch) Squad/Controls/Qwertz/Editor_partSearch
[LOG 14:03:38.571] Config(Editor_zoomScrollModifier) Squad/Controls/Qwertz/Editor_zoomScrollModifier
[LOG 14:03:38.572] Config(MODIFIER_KEY) Squad/Controls/Qwertz/MODIFIER_KEY
[LOG 14:03:38.573] Config(AbortActionGroup) Squad/Controls/Qwertz/AbortActionGroup
[LOG 14:03:38.574] Config(CustomActionGroup1) Squad/Controls/Qwertz/CustomActionGroup1
[LOG 14:03:38.575] Config(CustomActionGroup2) Squad/Controls/Qwertz/CustomActionGroup2
[LOG 14:03:38.576] Config(CustomActionGroup3) Squad/Controls/Qwertz/CustomActionGroup3
[LOG 14:03:38.577] Config(CustomActionGroup4) Squad/Controls/Qwertz/CustomActionGroup4
[LOG 14:03:38.578] Config(CustomActionGroup5) Squad/Controls/Qwertz/CustomActionGroup5
[LOG 14:03:38.579] Config(CustomActionGroup6) Squad/Controls/Qwertz/CustomActionGroup6
[LOG 14:03:38.580] Config(CustomActionGroup7) Squad/Controls/Qwertz/CustomActionGroup7
[LOG 14:03:38.581] Config(CustomActionGroup8) Squad/Controls/Qwertz/CustomActionGroup8
[LOG 14:03:38.582] Config(CustomActionGroup9) Squad/Controls/Qwertz/CustomActionGroup9
[LOG 14:03:38.583] Config(CustomActionGroup10) Squad/Controls/Qwertz/CustomActionGroup10
[LOG 14:03:38.585] Config(KEY_MAP) Squad/Controls/Qwertz/KEY_MAP
[LOG 14:03:38.585] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Pilot
[LOG 14:03:38.586] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Engineer
[LOG 14:03:38.587] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Scientist
[LOG 14:03:38.588] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Tourist
[LOG 14:03:38.589] Config(Localization) Squad/Localization/flights/Localization
[LOG 14:03:38.590] Config(Localization) Squad/Localization/game_settings/Localization
[LOG 14:03:38.591] Config(Localization) Squad/Localization/KSP_Missing Strings_part_1/Localization
[LOG 14:03:38.593] Config(Localization) Squad/Localization/loading_tips/Localization
[LOG 14:03:38.594] Config(Localization) Squad/Localization/misc/Localization
[LOG 14:03:38.595] Config(Localization) Squad/Localization/Missing strings_part_3/Localization
[LOG 14:03:38.596] Config(Localization) Squad/Localization/Missing strings_part_4/Localization
[LOG 14:03:38.597] Config(Localization) Squad/Localization/Missing strings_part_5/Localization
[LOG 14:03:38.598] Config(Localization) Squad/Localization/Missing_strings_part2/Localization
[LOG 14:03:38.599] Config(Localization) Squad/Localization/parts/Localization
[LOG 14:03:38.600] Config(Localization) Squad/Localization/planets/Localization
[LOG 14:03:38.601] Config(Localization) Squad/Localization/prefabs/Localization
[LOG 14:03:38.602] Config(Localization) Squad/Localization/refactor/Localization
[LOG 14:03:38.603] Config(Localization) Squad/Localization/scenarios/Localization
[LOG 14:03:38.604] Config(Localization) Squad/Localization/tutorials/Localization
[LOG 14:03:38.605] Config(Localization) Squad/Localization/ui/Localization
[LOG 14:03:38.606] Config(PART) Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone
[LOG 14:03:38.607] Config(PART) Squad/Parts/Aero/airbrake/Airbrake/airbrake1
[LOG 14:03:38.608] Config(PART) Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop
[LOG 14:03:38.609] Config(PART) Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf
[LOG 14:03:38.611] Config(PART) Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing
[LOG 14:03:38.612] Config(PART) Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin
[LOG 14:03:38.613] Config(PART) Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard
[LOG 14:03:38.614] Config(PART) Squad/Parts/Aero/airplaneFins/standardCanard/CanardController
[LOG 14:03:38.615] Config(PART) Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing
[LOG 14:03:38.616] Config(PART) Squad/Parts/Aero/airplaneFins/tailfin/tailfin
[LOG 14:03:38.617] Config(PART) Squad/Parts/Aero/basicFin/basicFin/basicFin
[LOG 14:03:38.618] Config(PART) Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake
[LOG 14:03:38.619] Config(PART) Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake
[LOG 14:03:38.620] Config(PART) Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone
[LOG 14:03:38.621] Config(PART) Squad/Parts/Aero/cones/ConeA/pointyNoseConeA
[LOG 14:03:38.622] Config(PART) Squad/Parts/Aero/cones/ConeB/pointyNoseConeB
[LOG 14:03:38.623] Config(PART) Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter
[LOG 14:03:38.624] Config(PART) Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone
[LOG 14:03:38.625] Config(PART) Squad/Parts/Aero/cones/tailConnectorA/airplaneTail
[LOG 14:03:38.626] Config(PART) Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB
[LOG 14:03:38.627] Config(PART) Squad/Parts/Aero/fairings/fairingSize1/fairingSize1
[LOG 14:03:38.628] Config(PART) Squad/Parts/Aero/fairings/fairingSize2/fairingSize2
[LOG 14:03:38.629] Config(PART) Squad/Parts/Aero/fairings/fairingSize3/fairingSize3
[LOG 14:03:38.630] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield0/HeatShield0
[LOG 14:03:38.631] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1
[LOG 14:03:38.632] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2
[LOG 14:03:38.633] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3
[LOG 14:03:38.634] Config(PART) Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield
[LOG 14:03:38.636] Config(PART) Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong
[LOG 14:03:38.637] Config(PART) Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake
[LOG 14:03:38.638] Config(PART) Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone
[LOG 14:03:38.639] Config(PART) Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake
[LOG 14:03:38.640] Config(PART) Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta
[LOG 14:03:38.641] Config(PART) Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1
[LOG 14:03:38.642] Config(PART) Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2
[LOG 14:03:38.643] Config(PART) Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder
[LOG 14:03:38.644] Config(PART) Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake
[LOG 14:03:38.645] Config(PART) Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet
[LOG 14:03:38.646] Config(PART) Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet
[LOG 14:03:38.647] Config(PART) Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3
[LOG 14:03:38.648] Config(PART) Squad/Parts/Aero/wings/connector1/wingConnector
[LOG 14:03:38.649] Config(PART) Squad/Parts/Aero/wings/connector2/wingConnector2
[LOG 14:03:38.650] Config(PART) Squad/Parts/Aero/wings/connector3/wingConnector3
[LOG 14:03:38.651] Config(PART) Squad/Parts/Aero/wings/connector4/wingConnector4
[LOG 14:03:38.653] Config(PART) Squad/Parts/Aero/wings/connector5/wingConnector5
[LOG 14:03:38.654] Config(PART) Squad/Parts/Aero/wings/delta/deltaWing
[LOG 14:03:38.654] Config(PART) Squad/Parts/Aero/wings/delta_small/delta_small
[LOG 14:03:38.655] Config(PART) Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf
[LOG 14:03:38.656] Config(PART) Squad/Parts/Aero/wings/elevon2/elevon2
[LOG 14:03:38.657] Config(PART) Squad/Parts/Aero/wings/elevon3/elevon3
[LOG 14:03:38.658] Config(PART) Squad/Parts/Aero/wings/elevon4/smallCtrlSrf
[LOG 14:03:38.659] Config(PART) Squad/Parts/Aero/wings/elevon5/elevon5
[LOG 14:03:38.660] Config(PART) Squad/Parts/Aero/wings/strake/wingStrake
[LOG 14:03:38.661] Config(PART) Squad/Parts/Aero/wings/structural1/structuralWing
[LOG 14:03:38.662] Config(PART) Squad/Parts/Aero/wings/structural2/structuralWing2
[LOG 14:03:38.663] Config(PART) Squad/Parts/Aero/wings/structural3/structuralWing3
[LOG 14:03:38.664] Config(PART) Squad/Parts/Aero/wings/structural4/structuralWing4
[LOG 14:03:38.665] Config(PART) Squad/Parts/Aero/wings/swept1/sweptWing1
[LOG 14:03:38.666] Config(PART) Squad/Parts/Aero/wings/swept2/sweptWing2
[LOG 14:03:38.667] Config(PART) Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2
[LOG 14:03:38.669] Config(PART) Squad/Parts/Command/cupola/cupola/cupola
[LOG 14:03:38.670] Config(PART) Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd
[LOG 14:03:38.671] Config(PART) Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin
[LOG 14:03:38.672] Config(PART) Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule
[LOG 14:03:38.673] Config(PART) Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule
[LOG 14:03:38.674] Config(PART) Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod
[LOG 14:03:38.675] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit
[LOG 14:03:38.676] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin
[LOG 14:03:38.678] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit
[LOG 14:03:38.679] Config(PART) Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall
[LOG 14:03:38.680] Config(PART) Squad/Parts/Command/mk1pod/mk1Pod/mk1pod
[LOG 14:03:38.681] Config(PART) Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline
[LOG 14:03:38.682] Config(PART) Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard
[LOG 14:03:38.683] Config(PART) Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore
[LOG 14:03:38.684] Config(PART) Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin
[LOG 14:03:38.685] Config(PART) Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle
[LOG 14:03:38.686] Config(PART) Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube
[LOG 14:03:38.687] Config(PART) Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex
[LOG 14:03:38.689] Config(PART) Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto
[LOG 14:03:38.690] Config(PART) Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2
[LOG 14:03:38.691] Config(PART) Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody
[LOG 14:03:38.692] Config(PART) Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge
[LOG 14:03:38.693] Config(PART) Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall
[LOG 14:03:38.694] Config(PART) Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere
[LOG 14:03:38.695] Config(PART) Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine
[LOG 14:03:38.696] Config(PART) Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector
[LOG 14:03:38.697] Config(PART) Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2
[LOG 14:03:38.699] Config(PART) Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4
[LOG 14:03:38.700] Config(PART) Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1
[LOG 14:03:38.701] Config(PART) Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3
[LOG 14:03:38.702] Config(PART) Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel
[LOG 14:03:38.703] Config(PART) Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5
[LOG 14:03:38.704] Config(PART) Squad/Parts/Electrical/RTG/RTG/rtg
[LOG 14:03:38.705] Config(PART) Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack
[LOG 14:03:38.706] Config(PART) Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank
[LOG 14:03:38.707] Config(PART) Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini
[LOG 14:03:38.709] Config(PART) Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack
[LOG 14:03:38.710] Config(PART) Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge
[LOG 14:03:38.711] Config(PART) Squad/Parts/Engine/ionEngine/ionEngine/ionEngine
[LOG 14:03:38.712] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet
[LOG 14:03:38.713] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine
[LOG 14:03:38.714] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2
[LOG 14:03:38.715] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine
[LOG 14:03:38.716] Config(PART) Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine
[LOG 14:03:38.717] Config(PART) Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini
[LOG 14:03:38.718] Config(PART) Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike
[LOG 14:03:38.720] Config(PART) Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine
[LOG 14:03:38.721] Config(PART) Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini
[LOG 14:03:38.722] Config(PART) Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3
[LOG 14:03:38.723] Config(PART) Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine
[LOG 14:03:38.724] Config(PART) Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine
[LOG 14:03:38.725] Config(PART) Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2
[LOG 14:03:38.726] Config(PART) Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2
[LOG 14:03:38.728] Config(PART) Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2
[LOG 14:03:38.729] Config(PART) Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2
[LOG 14:03:38.730] Config(PART) Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper
[LOG 14:03:38.731] Config(PART) Squad/Parts/Engine/liquidEngineSSME/SSME/SSME
[LOG 14:03:38.732] Config(PART) Squad/Parts/Engine/MassiveSRB/part/MassiveBooster
[LOG 14:03:38.733] Config(PART) Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine
[LOG 14:03:38.734] Config(PART) Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine
[LOG 14:03:38.735] Config(PART) Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER
[LOG 14:03:38.736] Config(PART) Squad/Parts/Engine/Size2LFB/part/Size2LFB
[LOG 14:03:38.737] Config(PART) Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine
[LOG 14:03:38.738] Config(PART) Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster
[LOG 14:03:38.739] Config(PART) Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1
[LOG 14:03:38.740] Config(PART) Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster
[LOG 14:03:38.742] Config(PART) Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm
[LOG 14:03:38.743] Config(PART) Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1
[LOG 14:03:38.744] Config(PART) Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine
[LOG 14:03:38.745] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2
[LOG 14:03:38.746] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines
[LOG 14:03:38.747] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2
[LOG 14:03:38.748] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant
[LOG 14:03:38.749] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2
[LOG 14:03:38.750] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1
[LOG 14:03:38.752] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant
[LOG 14:03:38.753] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3
[LOG 14:03:38.754] Config(PART) Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2
[LOG 14:03:38.755] Config(PART) Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank
[LOG 14:03:38.756] Config(PART) Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat
[LOG 14:03:38.757] Config(PART) Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall
[LOG 14:03:38.758] Config(PART) Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank
[LOG 14:03:38.759] Config(PART) Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long
[LOG 14:03:38.760] Config(PART) Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank
[LOG 14:03:38.761] Config(PART) Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2
[LOG 14:03:38.763] Config(PART) Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2
[LOG 14:03:38.764] Config(PART) Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2
[LOG 14:03:38.765] Config(PART) Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage
[LOG 14:03:38.766] Config(PART) Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler
[LOG 14:03:38.767] Config(PART) Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong
[LOG 14:03:38.768] Config(PART) Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter
[LOG 14:03:38.769] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO
[LOG 14:03:38.770] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage
[LOG 14:03:38.771] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO
[LOG 14:03:38.772] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid
[LOG 14:03:38.774] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono
[LOG 14:03:38.775] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin
[LOG 14:03:38.776] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100
[LOG 14:03:38.777] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25
[LOG 14:03:38.778] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50
[LOG 14:03:38.779] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100
[LOG 14:03:38.780] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25
[LOG 14:03:38.781] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50
[LOG 14:03:38.782] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO
[LOG 14:03:38.783] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2
[LOG 14:03:38.784] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini
[LOG 14:03:38.785] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank
[LOG 14:03:38.786] Config(PART) Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank
[LOG 14:03:38.787] Config(PART) Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong
[LOG 14:03:38.789] Config(PART) Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank
[LOG 14:03:38.790] Config(PART) Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank
[LOG 14:03:38.791] Config(PART) Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank
[LOG 14:03:38.792] Config(PART) Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank
[LOG 14:03:38.793] Config(PART) Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge
[LOG 14:03:38.794] Config(PART) Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial
[LOG 14:03:38.795] Config(PART) Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore
[LOG 14:03:38.796] Config(PART) Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna
[LOG 14:03:38.797] Config(PART) Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel
[LOG 14:03:38.798] Config(PART) Squad/Parts/Misc/PotatoRoid/part/PotatoRoid
[LOG 14:03:38.799] Config(PART) Squad/Parts/Prebuilt/flag/flag
[LOG 14:03:38.800] Config(PART) Squad/Parts/Prebuilt/kerbalEVA/kerbalEVA
[LOG 14:03:38.801] Config(PART) Squad/Parts/Prebuilt/kerbalEVAfemale/kerbalEVAfemale
[LOG 14:03:38.802] Config(PART) Squad/Parts/Resources/FuelCell/FuelCell/FuelCell
[LOG 14:03:38.803] Config(PART) Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray
[LOG 14:03:38.804] Config(PART) Squad/Parts/Resources/ISRU/ISRU/ISRU
[LOG 14:03:38.805] Config(PART) Squad/Parts/Resources/LargeTank/LargeTank/LargeTank
[LOG 14:03:38.806] Config(PART) Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill
[LOG 14:03:38.807] Config(PART) Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU
[LOG 14:03:38.808] Config(PART) Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner
[LOG 14:03:38.809] Config(PART) Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill
[LOG 14:03:38.810] Config(PART) Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank
[LOG 14:03:38.812] Config(PART) Squad/Parts/Resources/SmallTank/SmallTank/SmallTank
[LOG 14:03:38.813] Config(PART) Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner
[LOG 14:03:38.814] Config(PART) Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner
[LOG 14:03:38.815] Config(PART) Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere
[LOG 14:03:38.816] Config(PART) Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment
[LOG 14:03:38.817] Config(PART) Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab
[LOG 14:03:38.818] Config(PART) Squad/Parts/Science/MaterialBay/materialBay/science_module
[LOG 14:03:38.819] Config(PART) Squad/Parts/Science/ScienceBox/ScienceBox/ScienceBox
[LOG 14:03:38.820] Config(PART) Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer
[LOG 14:03:38.821] Config(PART) Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer
[LOG 14:03:38.823] Config(PART) Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter
[LOG 14:03:38.824] Config(PART) Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer
[LOG 14:03:38.825] Config(PART) Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi
[LOG 14:03:38.826] Config(PART) Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad
[LOG 14:03:38.827] Config(PART) Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri
[LOG 14:03:38.828] Config(PART) Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort
[LOG 14:03:38.830] Config(PART) Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall
[LOG 14:03:38.831] Config(PART) Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody
[LOG 14:03:38.832] Config(PART) Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody
[LOG 14:03:38.833] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage
[LOG 14:03:38.834] Config(PART) Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage
[LOG 14:03:38.835] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural
[LOG 14:03:38.836] Config(PART) Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler
[LOG 14:03:38.837] Config(PART) Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter
[LOG 14:03:38.839] Config(PART) Squad/Parts/Structural/stationHub/stationHub/stationHub
[LOG 14:03:38.840] Config(PART) Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2
[LOG 14:03:38.841] Config(PART) Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3
[LOG 14:03:38.842] Config(PART) Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1
[LOG 14:03:38.843] Config(PART) Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode
[LOG 14:03:38.844] Config(PART) Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1
[LOG 14:03:38.846] Config(PART) Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2
[LOG 14:03:38.847] Config(PART) Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint
[LOG 14:03:38.848] Config(PART) Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon
[LOG 14:03:38.849] Config(PART) Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube
[LOG 14:03:38.850] Config(PART) Squad/Parts/Structural/strutOcto/strutOcto/strutOcto
[LOG 14:03:38.851] Config(PART) Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter
[LOG 14:03:38.852] Config(PART) Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x
[LOG 14:03:38.853] Config(PART) Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x
[LOG 14:03:38.855] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge
[LOG 14:03:38.856] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed
[LOG 14:03:38.857] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall
[LOG 14:03:38.858] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge
[LOG 14:03:38.859] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg
[LOG 14:03:38.860] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm
[LOG 14:03:38.861] Config(PART) Squad/Parts/Utility/commDish88-88/commDish88-88/commDish
[LOG 14:03:38.862] Config(PART) Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna
[LOG 14:03:38.863] Config(PART) Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna
[LOG 14:03:38.864] Config(PART) Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2
[LOG 14:03:38.866] Config(PART) Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler
[LOG 14:03:38.867] Config(PART) Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2
[LOG 14:03:38.868] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator
[LOG 14:03:38.869] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini
[LOG 14:03:38.870] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig
[LOG 14:03:38.872] Config(PART) Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2
[LOG 14:03:38.873] Config(PART) Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler
[LOG 14:03:38.874] Config(PART) Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini
[LOG 14:03:38.875] Config(PART) Squad/Parts/Utility/DirectAntennas/C16S/SurfAntenna
[LOG 14:03:38.876] Config(PART) Squad/Parts/Utility/DirectAntennas/HG-5/HighGainAntenna5
[LOG 14:03:38.877] Config(PART) Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2
[LOG 14:03:38.878] Config(PART) Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral
[LOG 14:03:38.880] Config(PART) Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3
[LOG 14:03:38.881] Config(PART) Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1
[LOG 14:03:38.882] Config(PART) Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge
[LOG 14:03:38.883] Config(PART) Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice
[LOG 14:03:38.884] Config(PART) Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1
[LOG 14:03:38.885] Config(PART) Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder
[LOG 14:03:38.886] Config(PART) Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay
[LOG 14:03:38.887] Config(PART) Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1
[LOG 14:03:38.888] Config(PART) Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2
[LOG 14:03:38.889] Config(PART) Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg
[LOG 14:03:38.891] Config(PART) Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter
[LOG 14:03:38.892] Config(PART) Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2
[LOG 14:03:38.893] Config(PART) Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1
[LOG 14:03:38.894] Config(PART) Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem
[LOG 14:03:38.895] Config(PART) Squad/Parts/Utility/linearRCS/linearRCS/linearRcs
[LOG 14:03:38.896] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL
[LOG 14:03:38.897] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS
[LOG 14:03:38.898] Config(PART) Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin
[LOG 14:03:38.899] Config(PART) Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort
[LOG 14:03:38.900] Config(PART) Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL
[LOG 14:03:38.901] Config(PART) Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM
[LOG 14:03:38.902] Config(PART) Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp
[LOG 14:03:38.903] Config(PART) Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS
[LOG 14:03:38.904] Config(PART) Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle
[LOG 14:03:38.905] Config(PART) Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue
[LOG 14:03:38.906] Config(PART) Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge
[LOG 14:03:38.908] Config(PART) Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial
[LOG 14:03:38.909] Config(PART) Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue
[LOG 14:03:38.910] Config(PART) Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1
[LOG 14:03:38.911] Config(PART) Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock
[LOG 14:03:38.912] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-100/RelayAntenna100
[LOG 14:03:38.913] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-5/RelayAntenna5
[LOG 14:03:38.914] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-50/RelayAntenna50
[LOG 14:03:38.915] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125
[LOG 14:03:38.916] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250
[LOG 14:03:38.917] Config(PART) Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1
[LOG 14:03:38.918] Config(PART) Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2
[LOG 14:03:38.919] Config(PART) Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler
[LOG 14:03:38.921] Config(PART) Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler
[LOG 14:03:38.922] Config(PART) Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler
[LOG 14:03:38.923] Config(PART) Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge
[LOG 14:03:38.924] Config(PART) Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed
[LOG 14:03:38.925] Config(PART) Squad/Parts/Wheel/LandingGear/GearFree/GearFree
[LOG 14:03:38.926] Config(PART) Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium
[LOG 14:03:38.927] Config(PART) Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall
[LOG 14:03:38.928] Config(PART) Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay
[LOG 14:03:38.929] Config(PART) Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1
[LOG 14:03:38.930] Config(PART) Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2
[LOG 14:03:38.931] Config(PART) Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed
[LOG 14:03:38.932] Config(PART) Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3
[LOG 14:03:38.933] Config(PROP) Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands
[LOG 14:03:38.934] Config(PROP) Squad/Props/AtmosphereDepth/prop/AtmosphereDepth
[LOG 14:03:38.935] Config(PROP) Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch
[LOG 14:03:38.936] Config(PROP) Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll
[LOG 14:03:38.938] Config(PROP) Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw
[LOG 14:03:38.939] Config(PROP) Squad/Props/buttonsGeneric/circularButton/genericCircularButton
[LOG 14:03:38.940] Config(PROP) Squad/Props/buttonsGeneric/clusterButtons/genericClusterButtons
[LOG 14:03:38.941] Config(PROP) Squad/Props/buttonsGeneric/clusterButtons2/genericClusterButtons2
[LOG 14:03:38.942] Config(PROP) Squad/Props/buttonsGeneric/clusterKnob/genericClusterKnobs
[LOG 14:03:38.943] Config(PROP) Squad/Props/buttonsGeneric/clusterKnob2/genericClusterKnobs2
[LOG 14:03:38.944] Config(PROP) Squad/Props/buttonsGeneric/clusterMixed/genericClusterMixed
[LOG 14:03:38.945] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches01/genericClusterSwitches01
[LOG 14:03:38.946] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches02/genericClusterSwitches02
[LOG 14:03:38.947] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches03/genericClusterSwitches03
[LOG 14:03:38.949] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches04/genericClusterSwitches04
[LOG 14:03:38.950] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches05/genericClusterSwitches05
[LOG 14:03:38.951] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches06/genericClusterSwitches06
[LOG 14:03:38.952] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches07/genericClusterSwitches07
[LOG 14:03:38.953] Config(PROP) Squad/Props/buttonsGeneric/directionalKnob/genericDirectionalKnob
[LOG 14:03:38.954] Config(PROP) Squad/Props/buttonsGeneric/directionalKnob2/genericDirectionalKnob2
[LOG 14:03:38.955] Config(PROP) Squad/Props/buttonsGeneric/pullSwitch/genericPullSwitch
[LOG 14:03:38.956] Config(PROP) Squad/Props/buttonsGeneric/squareButton/genericSquareButton
[LOG 14:03:38.957] Config(PROP) Squad/Props/buttonsGeneric/standingSwitch/genericStandingSwitch
[LOG 14:03:38.959] Config(PROP) Squad/Props/buttonsGeneric/switch/genericSwitch
[LOG 14:03:38.960] Config(PROP) Squad/Props/buttonsGeneric/switchWithGuards/genericSwitchWithGuards
[LOG 14:03:38.961] Config(PROP) Squad/Props/ButtonSquare/prop/ButtonSquare
[LOG 14:03:38.962] Config(PROP) Squad/Props/circularButton/prop/circularButton
[LOG 14:03:38.963] Config(PROP) Squad/Props/Compass/prop/Compass
[LOG 14:03:38.964] Config(PROP) Squad/Props/directionalKnob/prop/directionalKnob
[LOG 14:03:38.965] Config(PROP) Squad/Props/directionalKnob2/prop/directionalKnob2
[LOG 14:03:38.966] Config(PROP) Squad/Props/IndicatorPanel/prop/IndicatorPanel
[LOG 14:03:38.967] Config(PROP) Squad/Props/IVANavBall/prop/NavBall
[LOG 14:03:38.968] Config(PROP) Squad/Props/ledPanelSpeed/prop/ledPanelSpeed
[LOG 14:03:38.969] Config(PROP) Squad/Props/Monitor/DockingMode/MonitorDockingMode
[LOG 14:03:38.970] Config(PROP) Squad/Props/NavBall/prop/NavBall
[LOG 14:03:38.971] Config(PROP) Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode
[LOG 14:03:38.972] Config(PROP) Squad/Props/PropsGeneric/CargoBagA/CargoBagA
[LOG 14:03:38.973] Config(PROP) Squad/Props/PropsGeneric/CargoBagB/CargoBagB
[LOG 14:03:38.974] Config(PROP) Squad/Props/PropsGeneric/CargoBagC/CargoBagC
[LOG 14:03:38.975] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane
[LOG 14:03:38.976] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90
[LOG 14:03:38.977] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame
[LOG 14:03:38.978] Config(PROP) Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger
[LOG 14:03:38.979] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot
[LOG 14:03:38.980] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet
[LOG 14:03:38.981] Config(PROP) Squad/Props/PropsGeneric/SideStick/SideStick
[LOG 14:03:38.982] Config(PROP) Squad/Props/pullSwitch/prop/pullSwitch
[LOG 14:03:38.983] Config(PROP) Squad/Props/radarAltitude/prop/RadarAltimeter
[LOG 14:03:38.984] Config(PROP) Squad/Props/squareButton/prop/squareButton
[LOG 14:03:38.985] Config(PROP) Squad/Props/standingSwitch/prop/standingSwitch
[LOG 14:03:38.986] Config(PROP) Squad/Props/switch/prop/switch
[LOG 14:03:38.987] Config(PROP) Squad/Props/switchGuard/prop/switchGuard
[LOG 14:03:38.988] Config(PROP) Squad/Props/switchWithGuards/prop/switchWithGuards
[LOG 14:03:38.989] Config(PROP) Squad/Props/throttle/prop/throttle
[LOG 14:03:38.990] Config(PROP) Squad/Props/VSI/prop/VSI
[LOG 14:03:38.991] Config(GLOBAL_RESOURCE) Squad/Resources/Ore/GLOBAL_RESOURCE
[LOG 14:03:38.992] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 14:03:38.993] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 14:03:38.994] Config(RESOURCE_OVERLAY_CONFIGURATION_SOLID) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_SOLID
[LOG 14:03:38.995] Config(RESOURCE_OVERLAY_CONFIGURATION_LINES) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_LINES
[LOG 14:03:38.996] Config(RESOURCE_OVERLAY_CONFIGURATION_DOTS) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_DOTS
[LOG 14:03:38.998] Config(RESOURCE_CONFIGURATION) Squad/Resources/ResourceDefaults/RESOURCE_CONFIGURATION
[LOG 14:03:38.999] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/LiquidFuel
[LOG 14:03:39.000] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Oxidizer
[LOG 14:03:39.001] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/SolidFuel
[LOG 14:03:39.002] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/MonoPropellant
[LOG 14:03:39.003] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/XenonGas
[LOG 14:03:39.004] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/ElectricCharge
[LOG 14:03:39.005] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/IntakeAir
[LOG 14:03:39.006] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/EVA Propellant
[LOG 14:03:39.007] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ore
[LOG 14:03:39.008] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ablator
[LOG 14:03:39.009] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.011] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.012] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.013] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.014] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.015] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.016] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.017] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.018] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.019] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.021] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 14:03:39.022] Config(STORY_DEF) Squad/Resources/StoryDefs/STORY_DEF
[LOG 14:03:39.023] Config(TechTree) Squad/Resources/TechTree/TechTree
[LOG 14:03:39.024] Config(INTERNAL) Squad/Spaces/crewCabinInternals/internal/crewCabinInternals
[LOG 14:03:39.025] Config(INTERNAL) Squad/Spaces/cupolaInternal/internal/cupolaInternal
[LOG 14:03:39.026] Config(INTERNAL) Squad/Spaces/GenericSpace1/internal/GenericSpace1
[LOG 14:03:39.027] Config(INTERNAL) Squad/Spaces/GenericSpace3/internal/GenericSpace3
[LOG 14:03:39.028] Config(INTERNAL) Squad/Spaces/landerCabinInternals/internal/landerCabinInternals
[LOG 14:03:39.029] Config(INTERNAL) Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal
[LOG 14:03:39.030] Config(INTERNAL) Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int
[LOG 14:03:39.031] Config(INTERNAL) Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal
[LOG 14:03:39.032] Config(INTERNAL) Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal
[LOG 14:03:39.034] Config(INTERNAL) Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal
[LOG 14:03:39.035] Config(INTERNAL) Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit
[LOG 14:03:39.036] Config(INTERNAL) Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals
[LOG 14:03:39.037] Config(INTERNAL) Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int
[LOG 14:03:39.038] Config(INTERNAL) Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal
[LOG 14:03:39.039] Config(INTERNAL) Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int
[LOG 14:03:39.040] Config(INTERNAL) Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int
[LOG 14:03:39.041] Config(INTERNAL) Squad/Spaces/Placeholder/internal/Placeholder
[LOG 14:03:39.043] Config(INTERNAL) Squad/Spaces/PodCockpit/internal/PodCockpit
[LOG 14:03:39.044] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Finances
[LOG 14:03:39.045] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Science
[LOG 14:03:39.046] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Public Relations
[LOG 14:03:39.047] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Operations
[LOG 14:03:39.048] Config(STRATEGY) Squad/Strategies/Strategies/AppreciationCampaignCfg
[LOG 14:03:39.049] Config(STRATEGY) Squad/Strategies/Strategies/FundraisingCampaignCfg
[LOG 14:03:39.050] Config(STRATEGY) Squad/Strategies/Strategies/OpenSourceTechProgramCfg
[LOG 14:03:39.051] Config(STRATEGY) Squad/Strategies/Strategies/UnpaidResearchProgramCfg
[LOG 14:03:39.052] Config(STRATEGY) Squad/Strategies/Strategies/OutsourcedResearchCfg
[LOG 14:03:39.053] Config(STRATEGY) Squad/Strategies/Strategies/PatentsLicensingCfg
[LOG 14:03:39.054] Config(STRATEGY) Squad/Strategies/Strategies/AgressiveNegotiations
[LOG 14:03:39.055] Config(STRATEGY) Squad/Strategies/Strategies/RecoveryTransponders
[LOG 14:03:39.056] Config(STRATEGY) Squad/Strategies/Strategies/BailoutGrant
[LOG 14:03:39.057] Config(STRATEGY) Squad/Strategies/Strategies/researchIPsellout
[LOG 14:03:39.058] Config(STRATEGY) Squad/Strategies/Strategies/LeadershipInitiative
[LOG 14:03:39.059] Config(TUTORIAL) Squad/Tutorials/FlightSuborbital/FlightSuborbital
[LOG 14:03:39.060] Config(TUTORIAL) Squad/Tutorials/FromMun/FromMun
[LOG 14:03:39.061] Config(TUTORIAL) Squad/Tutorials/GoForOrbit/GoForOrbit
[LOG 14:03:39.064] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.065] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.066] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.067] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.068] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.069] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.070] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.071] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.072] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.073] Resource RESOURCE_DEFINITION added to database
[LOG 14:03:39.074] CodeAssetLoader: Compiling all code assets
[LOG 14:03:39.083] GameDatabase: Assets loaded in 15.674s
[LOG 14:03:39.099] PartLoader: Loading part database
[LOG 14:03:39.101] PartLoader: Compiling Part 'Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone'
[LOG 14:03:39.122] EffectList: Created 14 effect types
[LOG 14:03:39.142] PartLoader: Compiling Part 'Squad/Parts/Aero/airbrake/Airbrake/airbrake1'
[LOG 14:03:39.163] PartLoader: Compiling Part 'Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop'
[LOG 14:03:39.175] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf'
[LOG 14:03:39.202] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing'
[LOG 14:03:39.210] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin'
[LOG 14:03:39.219] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard'
[LOG 14:03:39.225] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/standardCanard/CanardController'
[LOG 14:03:39.232] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing'
[LOG 14:03:39.237] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/tailfin/tailfin'
[LOG 14:03:39.243] PartLoader: Compiling Part 'Squad/Parts/Aero/basicFin/basicFin/basicFin'
[LOG 14:03:39.248] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake'
[LOG 14:03:39.258] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake'
[LOG 14:03:39.264] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone'
[LOG 14:03:39.280] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeA/pointyNoseConeA'
[LOG 14:03:39.285] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeB/pointyNoseConeB'
[LOG 14:03:39.289] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter'
[LOG 14:03:39.294] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone'
[LOG 14:03:39.299] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorA/airplaneTail'
[LOG 14:03:39.303] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB'
[LOG 14:03:39.308] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize1/fairingSize1'
[LOG 14:03:39.346] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize2/fairingSize2'
[LOG 14:03:39.364] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize3/fairingSize3'
[LOG 14:03:39.382] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield0/HeatShield0'
[LOG 14:03:39.402] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1'
[LOG 14:03:39.415] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2'
[LOG 14:03:39.426] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3'
[LOG 14:03:39.438] PartLoader: Compiling Part 'Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield'
[LOG 14:03:39.451] PartLoader: Compiling Part 'Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong'
[LOG 14:03:39.456] PartLoader: Compiling Part 'Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake'
[LOG 14:03:39.461] PartLoader: Compiling Part 'Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone'
[LOG 14:03:39.465] PartLoader: Compiling Part 'Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake'
[LOG 14:03:39.470] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta'
[LOG 14:03:39.475] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1'
[LOG 14:03:39.482] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2'
[LOG 14:03:39.488] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder'
[LOG 14:03:39.494] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake'
[LOG 14:03:39.499] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet'
[LOG 14:03:39.505] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet'
[LOG 14:03:39.510] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3'
[LOG 14:03:39.516] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector1/wingConnector'
[LOG 14:03:39.521] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector2/wingConnector2'
[LOG 14:03:39.526] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector3/wingConnector3'
[LOG 14:03:39.531] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector4/wingConnector4'
[LOG 14:03:39.536] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector5/wingConnector5'
[LOG 14:03:39.541] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta/deltaWing'
[LOG 14:03:39.547] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta_small/delta_small'
[LOG 14:03:39.552] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf'
[LOG 14:03:39.558] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon2/elevon2'
[LOG 14:03:39.565] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon3/elevon3'
[LOG 14:03:39.571] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon4/smallCtrlSrf'
[LOG 14:03:39.577] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon5/elevon5'
[LOG 14:03:39.584] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/strake/wingStrake'
[LOG 14:03:39.589] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural1/structuralWing'
[LOG 14:03:39.594] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural2/structuralWing2'
[LOG 14:03:39.599] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural3/structuralWing3'
[LOG 14:03:39.604] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural4/structuralWing4'
[LOG 14:03:39.609] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept1/sweptWing1'
[LOG 14:03:39.614] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept2/sweptWing2'
[LOG 14:03:39.619] PartLoader: Compiling Part 'Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2'
[LOG 14:03:39.626] PartLoader: Compiling Part 'Squad/Parts/Command/cupola/cupola/cupola'
[LOG 14:03:39.675] PartLoader: Compiling Part 'Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd'
[LOG 14:03:39.683] PartLoader: Compiling Part 'Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin'
[LOG 14:03:39.693] PartLoader: Compiling Part 'Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule'
[LOG 14:03:39.698] PartLoader: Compiling Part 'Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule'
[LOG 14:03:39.703] PartLoader: Compiling Part 'Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod'
[LOG 14:03:39.723] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit'
[LOG 14:03:39.737] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin'
[LOG 14:03:39.748] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit'
[LOG 14:03:39.762] PartLoader: Compiling Part 'Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall'
[LOG 14:03:39.775] PartLoader: Compiling Part 'Squad/Parts/Command/mk1pod/mk1Pod/mk1pod'
[LOG 14:03:39.791] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline'
[LOG 14:03:39.806] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard'
[LOG 14:03:39.822] PartLoader: Compiling Part 'Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore'
[LOG 14:03:39.832] PartLoader: Compiling Part 'Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin'
[LOG 14:03:39.846] PartLoader: Compiling Part 'Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle'
[LOG 14:03:39.860] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube'
[LOG 14:03:39.869] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex'
[LOG 14:03:39.879] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto'
[LOG 14:03:39.889] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2'
[LOG 14:03:39.898] PartLoader: Compiling Part 'Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody'
[LOG 14:03:39.906] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge'
[LOG 14:03:39.918] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall'
[LOG 14:03:39.930] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere'
[LOG 14:03:39.938] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine'
[LOG 14:03:39.956] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector'
[LOG 14:03:39.964] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2'
[LOG 14:03:39.976] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4'
[LOG 14:03:39.983] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1'
[LOG 14:03:39.990] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3'
[LOG 14:03:39.997] PartLoader: Compiling Part 'Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel'
[LOG 14:03:40.004] PartLoader: Compiling Part 'Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5'
[LOG 14:03:40.010] PartLoader: Compiling Part 'Squad/Parts/Electrical/RTG/RTG/rtg'
[LOG 14:03:40.024] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack'
[LOG 14:03:40.028] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank'
[LOG 14:03:40.032] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini'
[LOG 14:03:40.036] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack'
[LOG 14:03:40.039] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge'
[LOG 14:03:40.043] PartLoader: Compiling Part 'Squad/Parts/Engine/ionEngine/ionEngine/ionEngine'
[LOG 14:03:40.088] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet'
[LOG 14:03:40.132] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine'
[LOG 14:03:40.149] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2'
[LOG 14:03:40.170] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine'
[LOG 14:03:40.189] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine'
[LOG 14:03:40.201] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini'
[LOG 14:03:40.215] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike'
[LOG 14:03:40.238] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine'
[LOG 14:03:40.249] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini'
[LOG 14:03:40.262] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3'
[LOG 14:03:40.276] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine'
[LOG 14:03:40.290] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine'
[LOG 14:03:40.303] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2'
[LOG 14:03:40.319] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2'
[LOG 14:03:40.334] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2'
[LOG 14:03:40.347] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2'
[LOG 14:03:40.363] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper'
[LOG 14:03:40.378] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSSME/SSME/SSME'
[LOG 14:03:40.395] PartLoader: Compiling Part 'Squad/Parts/Engine/MassiveSRB/part/MassiveBooster'
[LOG 14:03:40.410] PartLoader: Compiling Part 'Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine'
[LOG 14:03:40.423] PartLoader: Compiling Part 'Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine'
[LOG 14:03:40.434] PartLoader: Compiling Part 'Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER'
[LOG 14:03:40.480] PartLoader: Compiling Part 'Squad/Parts/Engine/Size2LFB/part/Size2LFB'
[LOG 14:03:40.496] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine'
[LOG 14:03:40.514] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster'
[LOG 14:03:40.531] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1'
[LOG 14:03:40.543] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster'
[LOG 14:03:40.555] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm'
[LOG 14:03:40.565] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1'
[LOG 14:03:40.575] PartLoader: Compiling Part 'Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine'
[LOG 14:03:40.587] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2'
[LOG 14:03:40.591] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines'
[LOG 14:03:40.595] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2'
[LOG 14:03:40.600] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant'
[LOG 14:03:40.604] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2'
[LOG 14:03:40.608] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1'
[LOG 14:03:40.612] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant'
[LOG 14:03:40.616] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3'
[LOG 14:03:40.621] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2'
[LOG 14:03:40.625] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank'
[LOG 14:03:40.629] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat'
[LOG 14:03:40.634] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall'
[LOG 14:03:40.638] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank'
[LOG 14:03:40.642] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long'
[LOG 14:03:40.646] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank'
[LOG 14:03:40.650] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2'
[LOG 14:03:40.654] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2'
[LOG 14:03:40.658] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2'
[LOG 14:03:40.662] PartLoader: Compiling Part 'Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage'
[LOG 14:03:40.666] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler'
[LOG 14:03:40.672] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong'
[LOG 14:03:40.677] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter'
[LOG 14:03:40.682] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO'
[LOG 14:03:40.688] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage'
[LOG 14:03:40.693] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO'
[LOG 14:03:40.698] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid'
[LOG 14:03:40.703] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono'
[LOG 14:03:40.709] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin'
[LOG 14:03:40.718] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100'
[LOG 14:03:40.722] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25'
[LOG 14:03:40.726] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50'
[LOG 14:03:40.730] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100'
[LOG 14:03:40.734] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25'
[LOG 14:03:40.738] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50'
[LOG 14:03:40.742] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO'
[LOG 14:03:40.746] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2'
[LOG 14:03:40.750] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini'
[LOG 14:03:40.754] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank'
[LOG 14:03:40.758] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank'
[LOG 14:03:40.762] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong'
[LOG 14:03:40.766] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank'
[LOG 14:03:40.770] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank'
[LOG 14:03:40.774] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank'
[LOG 14:03:40.778] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank'
[LOG 14:03:40.782] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge'
[LOG 14:03:40.786] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial'
[LOG 14:03:40.790] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore'
[LOG 14:03:40.801] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna'
[LOG 14:03:40.812] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel'
[LOG 14:03:40.818] PartLoader: Compiling Part 'Squad/Parts/Misc/PotatoRoid/part/PotatoRoid'
[LOG 14:03:40.831] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/flag/flag'
[LOG 14:03:40.835] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/kerbalEVA/kerbalEVA'
[LOG 14:03:40.846] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/kerbalEVAfemale/kerbalEVAfemale'
[LOG 14:03:40.852] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCell/FuelCell'
[LOG 14:03:40.864] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray'
[LOG 14:03:40.870] PartLoader: Compiling Part 'Squad/Parts/Resources/ISRU/ISRU/ISRU'
[LOG 14:03:40.894] PartLoader: Compiling Part 'Squad/Parts/Resources/LargeTank/LargeTank/LargeTank'
[LOG 14:03:40.901] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill'
[LOG 14:03:40.925] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU'
[LOG 14:03:40.963] PartLoader: Compiling Part 'Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner'
[LOG 14:03:40.979] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill'
[LOG 14:03:40.995] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank'
[LOG 14:03:41.000] PartLoader: Compiling Part 'Squad/Parts/Resources/SmallTank/SmallTank/SmallTank'
[LOG 14:03:41.005] PartLoader: Compiling Part 'Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner'
[LOG 14:03:41.018] PartLoader: Compiling Part 'Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner'
[LOG 14:03:41.033] PartLoader: Compiling Part 'Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere'
[LOG 14:03:41.039] PartLoader: Compiling Part 'Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment'
[LOG 14:03:41.047] PartLoader: Compiling Part 'Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab'
[LOG 14:03:41.069] PartLoader: Compiling Part 'Squad/Parts/Science/MaterialBay/materialBay/science_module'
[LOG 14:03:41.077] PartLoader: Compiling Part 'Squad/Parts/Science/ScienceBox/ScienceBox/ScienceBox'
[LOG 14:03:41.083] PartLoader: Compiling Part 'Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer'
[LOG 14:03:41.093] PartLoader: Compiling Part 'Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer'
[LOG 14:03:41.099] PartLoader: Compiling Part 'Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter'
[LOG 14:03:41.106] PartLoader: Compiling Part 'Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer'
[LOG 14:03:41.113] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi'
[LOG 14:03:41.117] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad'
[LOG 14:03:41.121] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri'
[LOG 14:03:41.125] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort'
[LOG 14:03:41.129] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall'
[LOG 14:03:41.133] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody'
[LOG 14:03:41.140] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody'
[LOG 14:03:41.146] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage'
[LOG 14:03:41.150] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage'
[LOG 14:03:41.157] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural'
[LOG 14:03:41.161] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler'
[LOG 14:03:41.170] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter'
[LOG 14:03:41.173] PartLoader: Compiling Part 'Squad/Parts/Structural/stationHub/stationHub/stationHub'
[LOG 14:03:41.177] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2'
[LOG 14:03:41.181] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3'
[LOG 14:03:41.185] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1'
[LOG 14:03:41.189] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode'
[LOG 14:03:41.193] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1'
[LOG 14:03:41.197] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2'
[LOG 14:03:41.201] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint'
[LOG 14:03:41.208] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon'
[LOG 14:03:41.215] PartLoader: Compiling Part 'Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube'
[LOG 14:03:41.219] PartLoader: Compiling Part 'Squad/Parts/Structural/strutOcto/strutOcto/strutOcto'
[LOG 14:03:41.224] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter'
[LOG 14:03:41.228] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x'
[LOG 14:03:41.232] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x'
[LOG 14:03:41.236] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge'
[LOG 14:03:41.252] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed'
[LOG 14:03:41.260] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall'
[LOG 14:03:41.268] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge'
[LOG 14:03:41.274] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg'
[LOG 14:03:41.279] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm'
[LOG 14:03:41.285] PartLoader: Compiling Part 'Squad/Parts/Utility/commDish88-88/commDish88-88/commDish'
[LOG 14:03:41.294] PartLoader: Compiling Part 'Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna'
[LOG 14:03:41.302] PartLoader: Compiling Part 'Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna'
[LOG 14:03:41.309] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2'
[LOG 14:03:41.319] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler'
[LOG 14:03:41.327] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2'
[LOG 14:03:41.334] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator'
[LOG 14:03:41.340] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini'
[LOG 14:03:41.346] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig'
[LOG 14:03:41.353] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2'
[LOG 14:03:41.359] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler'
[LOG 14:03:41.366] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini'
[LOG 14:03:41.372] PartLoader: Compiling Part 'Squad/Parts/Utility/DirectAntennas/C16S/SurfAntenna'
[LOG 14:03:41.377] PartLoader: Compiling Part 'Squad/Parts/Utility/DirectAntennas/HG-5/HighGainAntenna5'
[LOG 14:03:41.385] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2'
[LOG 14:03:41.396] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral'
[LOG 14:03:41.431] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3'
[LOG 14:03:41.438] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1'
[LOG 14:03:41.446] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge'
[LOG 14:03:41.452] PartLoader: Compiling Part 'Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice'
[LOG 14:03:41.467] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1'
[LOG 14:03:41.471] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder'
[LOG 14:03:41.479] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay'
[LOG 14:03:41.485] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1'
[LOG 14:03:41.517] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2'
[LOG 14:03:41.530] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg'
[LOG 14:03:41.543] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter'
[LOG 14:03:41.547] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2'
[LOG 14:03:41.551] PartLoader: Compiling Part 'Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1'
[LOG 14:03:41.561] PartLoader: Compiling Part 'Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem'
[LOG 14:03:41.572] PartLoader: Compiling Part 'Squad/Parts/Utility/linearRCS/linearRCS/linearRcs'
[LOG 14:03:41.579] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL'
[LOG 14:03:41.587] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS'
[LOG 14:03:41.594] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin'
[LOG 14:03:41.605] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort'
[LOG 14:03:41.614] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL'
[LOG 14:03:41.620] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM'
[LOG 14:03:41.626] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp'
[LOG 14:03:41.633] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS'
[LOG 14:03:41.640] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle'
[LOG 14:03:41.657] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue'
[LOG 14:03:41.665] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge'
[LOG 14:03:41.674] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial'
[LOG 14:03:41.682] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue'
[LOG 14:03:41.691] PartLoader: Compiling Part 'Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1'
[LOG 14:03:41.695] PartLoader: Compiling Part 'Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock'
[LOG 14:03:41.702] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-100/RelayAntenna100'
[LOG 14:03:41.708] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-5/RelayAntenna5'
[LOG 14:03:41.714] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-50/RelayAntenna50'
[LOG 14:03:41.720] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125'
[LOG 14:03:41.731] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250'
[LOG 14:03:41.740] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1'
[LOG 14:03:41.749] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2'
[LOG 14:03:41.754] PartLoader: Compiling Part 'Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler'
[LOG 14:03:41.758] PartLoader: Compiling Part 'Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler'
[LOG 14:03:41.762] PartLoader: Compiling Part 'Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler'
[LOG 14:03:41.766] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge'
[LOG 14:03:41.790] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed'
[LOG 14:03:41.799] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFree/GearFree'
[LOG 14:03:41.811] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium'
[LOG 14:03:41.830] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall'
[LOG 14:03:41.879] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay'
[LOG 14:03:41.899] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1'
[LOG 14:03:41.916] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2'
[LOG 14:03:41.930] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed'
[LOG 14:03:41.942] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3'
[LOG 14:03:41.958] PartLoader: Compiling Internal Prop 'Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands'
[LOG 14:03:41.963] PartLoader: Compiling Internal Prop 'Squad/Props/AtmosphereDepth/prop/AtmosphereDepth'
[LOG 14:03:41.965] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch'
[LOG 14:03:41.968] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll'
[LOG 14:03:41.971] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw'
[LOG 14:03:41.974] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/circularButton/genericCircularButton'
[LOG 14:03:41.976] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterButtons/genericClusterButtons'
[LOG 14:03:41.978] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterButtons2/genericClusterButtons2'
[LOG 14:03:41.979] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterKnob/genericClusterKnobs'
[LOG 14:03:41.981] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterKnob2/genericClusterKnobs2'
[LOG 14:03:41.983] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterMixed/genericClusterMixed'
[LOG 14:03:41.984] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches01/genericClusterSwitches01'
[LOG 14:03:41.986] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches02/genericClusterSwitches02'
[LOG 14:03:41.988] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches03/genericClusterSwitches03'
[LOG 14:03:41.990] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches04/genericClusterSwitches04'
[LOG 14:03:41.992] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches05/genericClusterSwitches05'
[LOG 14:03:41.993] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches06/genericClusterSwitches06'
[LOG 14:03:41.995] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches07/genericClusterSwitches07'
[LOG 14:03:41.997] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/directionalKnob/genericDirectionalKnob'
[LOG 14:03:41.999] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/directionalKnob2/genericDirectionalKnob2'
[LOG 14:03:42.000] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/pullSwitch/genericPullSwitch'
[LOG 14:03:42.002] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/squareButton/genericSquareButton'
[LOG 14:03:42.004] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/standingSwitch/genericStandingSwitch'
[LOG 14:03:42.006] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/switch/genericSwitch'
[LOG 14:03:42.008] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/switchWithGuards/genericSwitchWithGuards'
[LOG 14:03:42.009] PartLoader: Compiling Internal Prop 'Squad/Props/ButtonSquare/prop/ButtonSquare'
[LOG 14:03:42.013] PartLoader: Compiling Internal Prop 'Squad/Props/circularButton/prop/circularButton'
[LOG 14:03:42.015] PartLoader: Compiling Internal Prop 'Squad/Props/Compass/prop/Compass'
[LOG 14:03:42.017] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob/prop/directionalKnob'
[LOG 14:03:42.019] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob2/prop/directionalKnob2'
[LOG 14:03:42.021] PartLoader: Compiling Internal Prop 'Squad/Props/IndicatorPanel/prop/IndicatorPanel'
[LOG 14:03:42.025] PartLoader: Compiling Internal Prop 'Squad/Props/IVANavBall/prop/NavBall'
[LOG 14:03:42.029] PartLoader: Compiling Internal Prop 'Squad/Props/ledPanelSpeed/prop/ledPanelSpeed'
[LOG 14:03:42.032] PartLoader: Compiling Internal Prop 'Squad/Props/Monitor/DockingMode/MonitorDockingMode'
[LOG 14:03:42.034] PartLoader: Compiling Internal Prop 'Squad/Props/NavBall/prop/NavBall'
[LOG 14:03:42.036] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode'
[LOG 14:03:42.038] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagA/CargoBagA'
[LOG 14:03:42.039] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagB/CargoBagB'
[LOG 14:03:42.041] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagC/CargoBagC'
[LOG 14:03:42.043] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane'
[LOG 14:03:42.044] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90'
[LOG 14:03:42.046] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame'
[LOG 14:03:42.048] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger'
[LOG 14:03:42.049] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot'
[LOG 14:03:42.051] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet'
[LOG 14:03:42.053] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/SideStick/SideStick'
[LOG 14:03:42.054] PartLoader: Compiling Internal Prop 'Squad/Props/pullSwitch/prop/pullSwitch'
[LOG 14:03:42.056] PartLoader: Compiling Internal Prop 'Squad/Props/radarAltitude/prop/RadarAltimeter'
[LOG 14:03:42.059] PartLoader: Compiling Internal Prop 'Squad/Props/squareButton/prop/squareButton'
[LOG 14:03:42.061] PartLoader: Compiling Internal Prop 'Squad/Props/standingSwitch/prop/standingSwitch'
[LOG 14:03:42.063] PartLoader: Compiling Internal Prop 'Squad/Props/switch/prop/switch'
[LOG 14:03:42.065] PartLoader: Compiling Internal Prop 'Squad/Props/switchGuard/prop/switchGuard'
[LOG 14:03:42.066] PartLoader: Compiling Internal Prop 'Squad/Props/switchWithGuards/prop/switchWithGuards'
[LOG 14:03:42.068] PartLoader: Compiling Internal Prop 'Squad/Props/throttle/prop/throttle'
[LOG 14:03:42.071] PartLoader: Compiling Internal Prop 'Squad/Props/VSI/prop/VSI'
[LOG 14:03:42.075] PartLoader: Compiling Internal Space 'Squad/Spaces/crewCabinInternals/internal/crewCabinInternals'
[LOG 14:03:42.085] PartLoader: Compiling Internal Space 'Squad/Spaces/cupolaInternal/internal/cupolaInternal'
[LOG 14:03:42.095] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace1/internal/GenericSpace1'
[LOG 14:03:42.098] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace3/internal/GenericSpace3'
[LOG 14:03:42.101] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinInternals/internal/landerCabinInternals'
[LOG 14:03:42.105] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal'
[LOG 14:03:42.110] PartLoader: Compiling Internal Space 'Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int'
[LOG 14:03:42.114] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal'
[LOG 14:03:42.121] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal'
[LOG 14:03:42.131] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal'
[LOG 14:03:42.137] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit'
[LOG 14:03:42.142] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals'
[LOG 14:03:42.151] PartLoader: Compiling Internal Space 'Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int'
[LOG 14:03:42.157] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal'
[LOG 14:03:42.168] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int'
[LOG 14:03:42.182] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int'
[LOG 14:03:42.188] InternalSeat: Cannot find portraitCamera of name 'Camera_Left003'
[LOG 14:03:42.196] PartLoader: Compiling Internal Space 'Squad/Spaces/Placeholder/internal/Placeholder'
[LOG 14:03:42.206] PartLoader: Compiling Internal Space 'Squad/Spaces/PodCockpit/internal/PodCockpit'
[LOG 14:03:42.222] Loading Systems: Elapsed time is 18.81561s
[WRN 14:03:43.707] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 14:03:43.708] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 14:03:43.708] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 14:03:43.709] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 14:03:43.710] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 14:03:43.710] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 14:03:43.711] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 14:03:43.711] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 14:03:43.712] The referenced script on this Behaviour (Game Object '<null>') is missing!
[LOG 14:03:46.240] [Agent]: Found 19 agent mentality types
[LOG 14:03:46.243] [AgentList]: 27 agents parsed and loaded.
[LOG 14:03:46.245] [UIMasterController]: HideUI
[LOG 14:03:46.670] [CelestialBody]: Kerbin's solar day length is 1d, 0h, 0m long. sidereal day length is 5h, 59m, 9s long
[LOG 14:03:47.111] [UIMasterController]: HideUI
[LOG 14:03:47.115] [HighLogic]: =========================== Scene Change : From LOADING to MAINMENU =====================
[LOG 14:03:47.399] [UIMasterController]: ShowUI
[LOG 14:03:47.744] [GameParameters]: Loaded custom parameter class CommNetParams.
[LOG 14:03:47.746] [GameParameters]: Loaded custom parameter class AdvancedParams.
[LOG 14:03:48.707] [ApplicationLauncher] Awake False
[LOG 14:03:48.709] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 14:03:48.719] [UiApp] Awake: MessageSystem
[LOG 14:03:48.720] [ApplicationLauncher] OnSceneLoadedGUIReady: scene MAINMENU ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop True
[LOG 14:03:48.778] [UIApp] Adding MessageSystem to Application Launcher
[LOG 14:03:48.782] [ApplicationLauncher] SetHidden: 
[LOG 14:03:48.810] [MessageSystem] OnAppInitialized
[LOG 14:03:48.811] [MessageSystem] Reposition 0.09845141 14507
[LOG 14:04:11.440] [ExperienceSystem]: Found 0 trait types
[LOG 14:04:11.442] [ExperienceSystem]: Found 16 effect types
[LOG 14:04:11.444] Game State Created.
[LOG 14:04:11.450] [ScenarioTypes]: List Created 17 scenario types loaded from 5 loaded assemblies.
[LOG 14:04:11.458] Game State Saved to saves/default/persistent
[LOG 14:04:11.463] [UIMasterController]: HideUI
[LOG 14:04:11.465] [HighLogic]: =========================== Scene Change : From MAINMENU to SPACECENTER (Async) =====================
[LOG 14:04:11.588] [UIMasterController]: HideUI
[LOG 14:04:12.414] [AddonLoader]: Instantiating addon 'ContractDefs' from assembly 'KSP'
[LOG 14:04:12.431] [UIMasterController]: HideUI
[LOG 14:04:17.192] [ScenarioDestructibles]: Loading... 0 objects registered
[LOG 14:04:17.259] [AsteroidSpawner]: New object found near Kerbin: Ast. HSJ-227!
[LOG 14:04:17.725] [UiApp] Awake: KSPedia
[LOG 14:04:17.726] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True
[LOG 14:04:17.727] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft
[LOG 14:04:17.730] [ApplicationLauncher] SetVisible: 
[LOG 14:04:17.803] [UIApp] OnDestroy: ContractsApp
[LOG 14:04:17.877] [MessageSystem] Reposition 0.02 15807
[LOG 14:04:18.186] [UIApp] Adding KSPedia to Application Launcher
[LOG 14:04:18.218] Flight State Captured
[LOG 14:04:18.222] Saving Achievements Tree...
[LOG 14:04:18.225] [MessageSystem] Save Messages
[LOG 14:04:18.232] Game State Saved to saves/default/persistent
[LOG 14:04:18.300] [UIMasterController]: ShowUI
[LOG 14:04:25.273] [ReflectionUtil]: Found 4 types with UpgradeModule attribute in 5 assemblies.
[LOG 14:04:25.288] [KSPUpgradePipeline]: Kerbal X(Stock) updated from 1.2.0 to 1.2.9.
[LOG 14:04:25.289] [UIMasterController] RemoveCanvas:VesselSpawnDialog
[LOG 14:04:25.311] [Pre-Flight Check]: Checking for CraftWithinPartCountLimit: PASS!
[LOG 14:04:25.312] [Pre-Flight Check]: Checking for CraftWithinSizeLimits: PASS!
[LOG 14:04:25.313] [Pre-Flight Check]: Checking for CraftWithinMassLimits: PASS!
[LOG 14:04:25.315] [Pre-Flight Check]: Checking for ExperimentalPartsAvailable: PASS!
[LOG 14:04:25.316] [Pre-Flight Check]: Checking for CanAffordLaunchTest: PASS!
[LOG 14:04:25.317] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 14:04:25.318] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 14:04:25.320] [Pre-Flight Check]: Checking for NoControlSources: PASS!
[LOG 14:04:25.335] [Pre-Flight Check]: Checking for WrongVesselTypeForLaunchSite: PASS!
[LOG 14:04:25.336] [Pre-Flight Check]: All Checks Complete. Go for Launch!
[LOG 14:04:25.337] Launching vessel from LaunchPad. Craft file: D:\SteamLibrary\steamapps\common\Kerbal Space Program\Ships\VAB\Kerbal X.craft
[LOG 14:04:25.338] Flight State Captured
[LOG 14:04:25.339] Saving Achievements Tree...
[LOG 14:04:25.340] [MessageSystem] Save Messages
[LOG 14:04:25.343] Game State Saved to saves/default/persistent
[LOG 14:04:25.348] [UIMasterController]: HideUI
[LOG 14:04:25.358] [HighLogic]: =========================== Scene Change : From SPACECENTER to FLIGHT (Async) =====================
[LOG 14:04:25.828] [UIApp] OnDestroy: KSPedia
[LOG 14:04:25.847] [PlanetariumCamera]: Focus: Kerbin
[LOG 14:04:25.849] [UIMasterController]: HideUI
[LOG 14:04:26.689] UICanvasPrefabSpawner FlightUI spawning Flight
[LOG 14:04:26.716] UICanvasPrefabSpawner FlightUI spawning VesselLabels
[LOG 14:04:26.718] [UiApp] Awake: ResourceDisplay
[LOG 14:04:26.724] [AddonLoader]: Instantiating addon 'AeroGUI' from assembly 'KSP'
[LOG 14:04:26.729] [AddonLoader]: Instantiating addon 'KerbalSimPitCAGProvider' from assembly 'KerbalSimPit'
[LOG 14:04:26.730] [AddonLoader]: Instantiating addon 'KerbalSimPitActionProvider' from assembly 'KerbalSimPit'
[LOG 14:04:26.731] [AddonLoader]: Instantiating addon 'KerbalSimPitEchoProvider' from assembly 'KerbalSimPit'
[LOG 14:04:26.733] [AddonLoader]: Instantiating addon 'KerbalSimPitTelemetryProvider' from assembly 'KerbalSimPit'
[LOG 14:04:26.734] [PlanetariumCamera]: Focus: Kerbin
[LOG 14:04:26.735] [UIMasterController]: HideUI
[LOG 14:04:26.835] ------------------- initializing flight mode... ------------------
[LOG 14:04:26.841] [MessageSystem] Save Messages
[LOG 14:04:26.843] Loading Depletion Nodes
[LOG 14:04:26.844] DepNodeCount:  0
[LOG 14:04:26.845] Loading Biome Nodes
[LOG 14:04:26.845] BiomeNodeCount:  0
[LOG 14:04:26.846] Loading Planet Nodes
[LOG 14:04:26.847] PlanetNodeCount:  0
[LOG 14:04:26.851] [ScenarioDestructibles]: Loading... 0 objects registered
[LOG 14:04:26.855] Loading ship from file: D:\SteamLibrary\steamapps\common\Kerbal Space Program\Ships\VAB\Kerbal X.craft
[LOG 14:04:26.993] Kerbal X loaded!
[LOG 14:04:30.894] Putting to ground, manually-defined ground offset: 1.37
[LOG 14:04:30.895] Putting to ground, manually-defined ground offset: 1.37
[LOG 14:04:30.896] Putting to ground, manually-defined ground offset: 1.37
[LOG 14:04:30.897] putting ship to ground: 0
[LOG 14:04:30.903] [Kerbal X]: Ready to Launch - waiting to start physics...
[LOG 14:04:30.923] Crewmember Jebediah Kerman assigned to Mk1-2 Command Pod, seat # 0 (crew seat index: 0)
[LOG 14:04:30.924] Crewmember Bill Kerman assigned to Mk1-2 Command Pod, seat # 1 (crew seat index: 1)
[LOG 14:04:30.926] Crewmember Bob Kerman assigned to Mk1-2 Command Pod, seat # 2 (crew seat index: 2)
[LOG 14:04:30.927] [FLIGHT GLOBALS]: Switching To Vessel Kerbal X ---------------------- 
[LOG 14:04:30.929] setting new dominant body: Kerbin
FlightGlobals.mainBody: Kerbin
[LOG 14:04:30.931] Reference Frame: Rotating
[LOG 14:04:30.963] Vessel assembly complete!
[LOG 14:04:30.964] all systems started
[ERR 14:04:30.982] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null

[ERR 14:04:30.983] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null

[LOG 14:04:30.984] KerbalSimPit: ActionGroupsExtended installed: False
[LOG 14:04:31.196] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 14:04:31.833] [UiApp] Awake: CurrencyWidgetsApp
[LOG 14:04:31.834] [UiApp] Awake: ResourceDisplay
[LOG 14:04:31.835] [UiApp] Awake: KSPedia
[LOG 14:04:31.835] [ApplicationLauncher] OnSceneLoadedGUIReady: scene FLIGHT ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False
[LOG 14:04:31.837] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 14:04:31.840] [KnowledgeBase] OnAppLauncherReady 16225
[LOG 14:04:31.868] [UIApp] OnDestroy: ContractsApp
[LOG 14:04:31.898] [MessageSystem] Reposition 0.02 16226
[LOG 14:04:31.934] [FlightIntegrator]: Reloaded drag cube for zeroed cube root part Mark1-2Pod on vessel Kerbal X
[LOG 14:04:31.947] [FlightIntegrator]: Vessel Kerbal X has been unloaded 1.79769313486232E+308, applying analytic temperature 306.928212561137
[LOG 14:04:32.070] [PlanetariumCamera]: Focus: Kerbal X
[LOG 14:04:32.097] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 14:04:32.099] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 14:04:32.111] [ResourceDisplay] OnAppStarted(): id: -197256
[LOG 14:04:32.113] [GenericAppFrame] Reposition 0.1568461 16230
[LOG 14:04:32.115] [ResourceDisplay] OnAppStarted(): id: 103994
[LOG 14:04:32.116] ResourceDisplay already exist, destroying this instance
[LOG 14:04:32.117] [UIApp] OnDestroy: ResourceDisplay
[LOG 14:04:32.159] CURRENCY WIDGET False False False
[LOG 14:04:32.162] [UIApp] OnDestroy: CurrencyWidgetsApp
[LOG 14:04:32.192] [UIApp] Adding KSPedia to Application Launcher
[WRN 14:04:32.233] HighlightingSystem : Framebuffer depth data is not available and can't be used to occlude highlighting. Highlighting occluders enabled.
[LOG 14:04:32.304] [UIMasterController]: ShowUI
[LOG 14:04:32.313] Flight State Captured
[LOG 14:04:32.313] Saving Achievements Tree...
[LOG 14:04:32.315] [MessageSystem] Save Messages
[LOG 14:04:32.332] Game State Saved as persistent
[LOG 14:04:33.338] Unpacking Kerbal X
[LOG 14:04:46.975] [AsteroidSpawner]: New object found near Kerbin: Ast. CDF-984!
[LOG 14:04:49.489] [UIMasterController]: ShowUI
[LOG 14:04:49.490] Game Paused!
[LOG 14:04:51.423] Flight State Captured
[LOG 14:04:51.424] Saving Achievements Tree...
[LOG 14:04:51.425] [MessageSystem] Save Messages
[LOG 14:04:51.441] Game State Saved to saves/default/persistent
[LOG 14:04:51.445] [UIMasterController]: HideUI
[LOG 14:04:51.454] [HighLogic]: =========================== Scene Change : From FLIGHT to MAINMENU =====================
[LOG 14:04:52.053] KbApp.OnDestroy Unowned Info
[LOG 14:04:52.057] KerbalSimPit: Succesfully removed AltitudeProvider
[LOG 14:04:52.062] KbApp.OnDestroy Vessel Crew
[LOG 14:04:52.065] [UIApp] OnDestroy: ResourceDisplay
[LOG 14:04:52.066] KbApp.OnDestroy Planet Info
[LOG 14:04:52.067] KbApp.OnDestroy Vessel Info
[LOG 14:04:52.068] KbApp.OnDestroy Planet Resources
[LOG 14:04:52.071] [UIApp] OnDestroy: KSPedia
[LOG 14:04:52.072] KbApp.OnDestroy Planet Parameters
[LOG 14:04:52.073] KbApp.OnDestroy NullName
[LOG 14:04:52.094] [UIMasterController]: ShowUI
[LOG 14:04:53.502] [ApplicationLauncher] OnSceneLoadedGUIReady: scene MAINMENU ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop True
[LOG 14:04:53.503] [ApplicationLauncher] SetHidden: 
[LOG 14:04:53.553] [MessageSystem] Reposition 0.02 17386
[LOG 14:04:59.909] KerbalSimPit: Shutting down.

 

 

Do you have any ideas.

Thanks, Benji

Edited by Benji
more info in the logs for alternate Com Ports
Link to comment
Share on other sites

Hey hey!

9 hours ago, Benji said:

I loaded up the KerbalSimPitHelloWorld example, modified the settings (verbose = true & ttyS3 (Com4 (According to Arduino "Code-Editor"))).

Sorry, for Windows you want to set the serial port name to the com port, in your case just "COM4". I guess that wasn't quite clear enough, I may change the default in the next release.

Link to comment
Share on other sites

Oh okai. I have some Linux background and I (was) /am familiar talking to some hardware. I just assumed Windows internally talks serial the same way. (Me so dumb.)

 

What I do:

Starting Arduino.

The Pin13 LED is HIGH (stuck in void setup() ? I think; cause: while(true)). KSP is running. Restarting Arduino. TX blinks, Pin13 LED is LOW.

Switching to Flight Scene View, RX starts blinking synchronous to TX.

 

The logfile is spamed with this:


[LOG 00:42:39.685] KerbalSimPit: Echo request on port 0. Replying.
[LOG 00:42:39.686] KerbalSimPit: Byte array high
[LOG 00:42:40.689] KerbalSimPit: Echo request on port 0. Replying.
[LOG 00:42:40.690] KerbalSimPit: Byte array low
[LOG 00:42:41.690] KerbalSimPit: Echo request on port 0. Replying.
[LOG 00:42:41.691] KerbalSimPit: Byte array high
[LOG 00:42:42.689] KerbalSimPit: Echo request on port 0. Replying.
[LOG 00:42:42.690] KerbalSimPit: Byte array low

...

Communication seems to work, I assume.

 

But what about the LED on PIN13. It doesn't blink. Looking at < void packetHandler(byte packetType, byte *msg, byte msgSize) > I thought it would blink.

Link to comment
Share on other sites

Wow, I'm amazed how simple it is / (will be) using this mod. A VERY BIG THANK YOU FROM MY SIDE.

 

However I tried to simplify some things from your example.

Replaced: mySimPit.init()

With:


  pinMode(LED_BUILTIN, OUTPUT);
  digitalWrite(LED_BUILTIN, LOW);
  while(!mySimPit.init())
  {
    NULL;
  }
  digitalWrite(LED_BUILTIN, HIGH);

So now Arduino leaves void setup() once KSP is started and a link is established.

 

And I wrote this:


void loop()
{
  
  if (digitalRead(button_stage))
  {
    stage = 0;
  }
  else
  {
    stage = 1;
    cmd_stage = true;
  }

  if (lastSendTime+50 < millis())
  {
    lastSendTime = millis();
    if (cmd_stage)
    {
      mySimPit.send(STAGE_PACKET, (byte*)stage, sizeof((byte*)stage));
      cmd_stage = false;
    }
  }
}

I tried to simplify into this:

int stage = 1;

void loop()
{
  
  if (!digitalRead(button_stage))
    cmd_stage = true;

  if (lastSendTime+50 < millis())
  {
    lastSendTime = millis();
    if (cmd_stage)
    {
      mySimPit.send(STAGE_PACKET, (byte*)stage, sizeof((byte*)stage));
      cmd_stage = false;
    }
  }
}

I don't understand why, but after this simplification staging doesn't work anymore.

 

 

Thanks a lot; Benji

Link to comment
Share on other sites

Really glad you're liking it. :D The big thing I wanted to do with this project was make getting started writing firmware code as easy as possible.

2 hours ago, Benji said:

But what about the LED on PIN13. It doesn't blink. Looking at < void packetHandler(byte packetType, byte *msg, byte msgSize) > I thought it would blink.

It should be, yeah. The fact that the handshaking works tells me your setup is working, and the logs say that the plugin is receiving what it should be. Looks like I'm just doing something dumb in the receiving code in the arduino library. I'll revisit that demo over the weekend.

40 minutes ago, Benji said:

So now Arduino leaves void setup() once KSP is started and a link is established.

That's awesome, I'll adopt something similar in my examples I think.

40 minutes ago, Benji said:

I don't understand why, but after this simplification staging doesn't work anymore.

The stage handler in the plugin is stateful. A non-zero payload activates the next stage. Once that happens, staging won't work again until you send a stage packet with a 0 payload to reset it.

I chose that option because just firing a steady stream of 0 and 1 packets is easier to implement in an arduino sketch. But I've been thinking about adding an optional mode to the stage handler, where each individual stage packet activates a stage.

Actually, now that I think about it, rather than a configuration option to change the behaviour, I should be able to manage it by changing the payload - something like a single byte non-zero payload will activate the next stage, but by sending a two-byte payload consisting of [0x01, 0x00], say, the stage will be activated and then the handler reset for the next stage.

Thanks a lot for the feedback!

Edited by stibbons
Link to comment
Share on other sites

Haha. I see. From a "lazy-user-standpoint" I was hoping for something like mySimPit.send(STAGE);

 

...Testing in my 1.2.2 install. Works really fine. Perhaps (just for CKAN) you can change the supported version down? Absolutely unnecessary, but hmm...

 

Tomorrow I will be trying to bring up the ActionGroups and something like an altimeter. Many thanks.

Link to comment
Share on other sites

1 minute ago, Benji said:

Haha. I see. From a "lazy-user-standpoint" I was hoping for something like mySimPit.send(STAGE);

I've been thinking about including a bunch of helper functions in the library. For that one it'd just be something like mySimPit.stageEvent(); I'm personally still on the fence when it comes to sending one packet for an event vs sending a regular stream indicating the current state. But it's not hard to make both options available, so I'll just go with that.

I'm wary about marking it as compatible with a version I'm not actively testing. Not a problem now because there's only a couple of actions implemented. But sooner or later I'm going to start talking to an API that's new/different in 1.2.9. But I guess I can relax the strict versioning during the prerelease so others can try it on 1.2.2.

Thanks again for giving my code a bash. :)

Link to comment
Share on other sites

Ohhh, another in my opinion very important test:

I restarted the arduino while aerobraking, hoping it will reestablish connection to open the chutes later.

 

Wow, it's really cool. It just worked. Wow.

1 minute ago, stibbons said:

I'm wary about marking it as compatible with a version I'm not actively testing. Not a problem now because there's only a couple of actions implemented. But sooner or later I'm going to start talking to an API that's new/different in 1.2.9. But I guess I can relax the strict versioning during the prerelease so others can try it on 1.2.2.

Ja, that's what I thought was your thought.

Link to comment
Share on other sites

4 minutes ago, Benji said:

Ohhh, another in my opinion very important test:

I restarted the arduino while aerobraking, hoping it will reestablish connection to open the chutes later.

Hahahah. Hitting the reset button on the arduino should work fine. But at the moment the connection handling is slightly too brittle to deal with having the arduino physically unplugged and reconnected. That will be fixed eventually though, and at some point I'd like to get the configuration to the point where connections can be added and removed at runtime.

Link to comment
Share on other sites

1 hour ago, Benji said:

 



  pinMode(LED_BUILTIN, OUTPUT);
  digitalWrite(LED_BUILTIN, LOW);
  while(!mySimPit.init())
  {
    NULL;
  }
  digitalWrite(LED_BUILTIN, HIGH);

 

And I wrote this:



void loop()
{
  
  if (digitalRead(button_stage))
  {
    stage = 0;
  }
  else
  {
    stage = 1;
    cmd_stage = true;
  }

  if (lastSendTime+50 < millis())
  {
    lastSendTime = millis();
    if (cmd_stage)
    {
      mySimPit.send(STAGE_PACKET, (byte*)stage, sizeof((byte*)stage));
      cmd_stage = false;
    }
  }
}

I tried to simplify into this:


int stage = 1;

void loop()
{
  
  if (!digitalRead(button_stage))
    cmd_stage = true;

  if (lastSendTime+50 < millis())
  {
    lastSendTime = millis();
    if (cmd_stage)
    {
      mySimPit.send(STAGE_PACKET, (byte*)stage, sizeof((byte*)stage));
      cmd_stage = false;
    }
  }
}

 

About my tried simplification, again...

I think i understood what you meant, why it doesn't work. But as I think about it, I'm not so sure I really understand. Because from my (code /) perspective, nothing changes. I only execute mySimPit.send(...); when the button is pressed. In both cases. And in both cases I send the same.

I also tried this:

void loop()
{
  
  if (digitalRead(button_stage))
  {
    stage = 0;
  }
  else
  {
    stage = 1;
  }

  if (lastSendTime+50 < millis())
  {
    lastSendTime = millis();
    mySimPit.send(STAGE_PACKET, (byte*)stage, sizeof((byte*)stage));
  }
}

So now I was sending the current state every ~50ms, but like before staging doesn't work.

Edited by Benji
typo
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...