Gatrnerd Posted July 19, 2016 Share Posted July 19, 2016 I know this might be annoying to ask, but could you please list all of the parts that (as of the latest release) require CommunityResourcePack? I'm not fond of having it mess with everything and I'd prefer having the parts that don't need that clutter, but I'm at a loss of what to get rid of. Quote Link to comment Share on other sites More sharing options...
precision77 Posted July 22, 2016 Share Posted July 22, 2016 On 5/28/2016 at 8:51 AM, SuicidalInsanity said: @OrbitalBuzzsaw; Pluto uses LF by default, LH2 conversion only happens if Kerbal Atomics/NFE is installed. Anyway to change that? The Kerbal Atomics has a config to revert its engines back to liquid fuel but it doesn't revert the MK2 engines back to LF. Quote Link to comment Share on other sites More sharing options...
SuicidalInsanity Posted July 23, 2016 Author Share Posted July 23, 2016 @Dhole, EnderKid2; Not sure what to say about the leg; All my attempts so far to determine what is wrong with the model and/or the config haven't yielded any successful results. To the best I can determine, information on making legs in 1.1.3 is practically non-existant, and the scraps of information available I used to get them working in 1.1.2 apparently are no longer valid, so it's a long, slow, soul-crushing process of trial and error at this point. I'll keep working at getting them fixed, but I don't know when or how long it will take at this point. @Gatnerd: CRP dependent stuff: Mk2Expansion/Engines/AASRB, Mk2Expansion/Engines/Augmented Rocket, Mk2Expansion/Engines/Rontgen, Mk2Expansion/Utility/Reactor, Mk2Expansion/Patches/Mk2X_AtmIntake.cfg. The only CRP resources used are IntakeAtm, EnrichedUranium, and DepletedFuel, so you could either cull the above, or copy those three resources into the Mk2Expansion/Resources/resources.cfg and delete CRP without issue from Mk2Expansion. @precision77: If you have Kerbal Atomics installed but want LF for the Pluto, delete the Mk2Expansion/Patches/M2X_KA.cfg Quote Link to comment Share on other sites More sharing options...
Gatrnerd Posted July 26, 2016 Share Posted July 26, 2016 On 7/22/2016 at 9:26 PM, SuicidalInsanity said: @Gatnerd: CRP dependent stuff: Mk2Expansion/Engines/AASRB, Mk2Expansion/Engines/Augmented Rocket, Mk2Expansion/Engines/Rontgen, Mk2Expansion/Utility/Reactor, Mk2Expansion/Patches/Mk2X_AtmIntake.cfg. The only CRP resources used are IntakeAtm, EnrichedUranium, and DepletedFuel, so you could either cull the above, or copy those three resources into the Mk2Expansion/Resources/resources.cfg and delete CRP without issue from Mk2Expansion. I wound up deleting a lot more of those parts than I should, but that's alright. Thanks for the help. Quote Link to comment Share on other sites More sharing options...
DaMachinator Posted August 4, 2016 Share Posted August 4, 2016 Note that I'm still on 1.0.5 and I know that you have no obligation to support outdated versions. After installing the mod via CKAN, almost all of the parts have a thermal tolerance of 933K internal, 933K skin.This is lower than the Mk.1 cockpit and all of the stock Mk.2 parts. Note that I do use Deadly Reentry, at 100% Reentry heating, but I am not sure that that mod affects actual heating any more - just how it is applied? Quote Link to comment Share on other sites More sharing options...
Nightside Posted August 4, 2016 Share Posted August 4, 2016 6 minutes ago, DaMachinator said: Note that I'm still on 1.0.5 and I know that you have no obligation to support outdated versions. After installing the mod via CKAN, almost all of the parts have a thermal tolerance of 933K internal, 933K skin.This is lower than the Mk.1 cockpit and all of the stock Mk.2 parts. Note that I do use Deadly Reentry, at 100% Reentry heating, but I am not sure that that mod affects actual heating any more - just how it is applied? Pretty sure DRE still changes part max temps. Quote Link to comment Share on other sites More sharing options...
DaMachinator Posted August 4, 2016 Share Posted August 4, 2016 (edited) 16 minutes ago, Nightside said: Pretty sure DRE still changes part max temps. Do you know what the max temps are in your game? EDIT: I've looked through all of this mod's compatibility patches and all of Deadly Reentry's patches that could apply, and I don't see anything to explain why the max temps are so low. It's like the "Skin" section of the MaxTemps isn't applying correctly, so the Internal max temp is copied over to it. Edited August 4, 2016 by DaMachinator Quote Link to comment Share on other sites More sharing options...
SuicidalInsanity Posted August 5, 2016 Author Share Posted August 5, 2016 @DaMachinator:Looking at a 1.05 DRE release and comparing its part config MM and the M2X one, it looks like SkinMaxTemp should be outside ModuleAeroReentry; best guess is something changed in DRE configs between 1.04 and 1.05 and I either forgot or overlooked the change when updating M2X to 1.05. Deleting the contents of Mk2Expansion/Patches/Mk2X_DRE.cfg and replacing it with the code below should should bring M2X parts inline with 1.05 DRE temp values and fix the skintemp problem. Spoiler @PART[M2X_DropshipCockpit|BladeCockpit|RavenCockpit|M2X_ViperCockpit|mk2_HypersonicNose|TunaCockpit|mk2_InlineIntake|mk2EngineShroud|mk2_MantaIntake|M2X_SmallLab|mk2InverterFuselage|mk2_SupersonicNose|mk2_SpadeTail|mk2Decoupler|Mk2THub|Mk2XHub|Mk2ShieldedDockingPort|mk2_OMSpod|mk22X5WayRCS|mk25WayRCS|mk2RCRCS|mk2PGRCS|mk2FF5WayRCS|mk2SCRCS|mk2Servicebay|mk2_AeroIntake|ChineCap|ChineLong|RootChineAdapter|RootChineLong|RootChineShort|ChineShort|Mk1Chinecap|Mk1ChineLong|Mk1ChineShort|mk2UST|mk2625tricoupler|M2X_Tailboom|M2X_Reactor|M2X_Shortbicoupler|M2X_Short25adapter|M2X_Shockcone|M2X_RadialLeg|M2X_DeployablePanel|M2X_Endcap|M2X_Precooler]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion] { @maxTemp = 850 @emissiveConstant = 0.85 @thermalMassModifier = 1 %skinMaxTemp = 2706 %skinThermalMassModifier = 0.436 %skinInternalConductionMult = 0.0000105 %skinMassPerArea = 0.815 MODULE { name = ModuleAeroReentry } } Quote Link to comment Share on other sites More sharing options...
DaMachinator Posted August 5, 2016 Share Posted August 5, 2016 1 hour ago, SuicidalInsanity said: @DaMachinator:Looking at a 1.05 DRE release and comparing its part config MM and the M2X one, it looks like SkinMaxTemp should be outside ModuleAeroReentry; best guess is something changed in DRE configs between 1.04 and 1.05 and I either forgot or overlooked the change when updating M2X to 1.05. Deleting the contents of Mk2Expansion/Patches/Mk2X_DRE.cfg and replacing it with the code below should should bring M2X parts inline with 1.05 DRE temp values and fix the skintemp problem. Hide contents @PART[M2X_DropshipCockpit|BladeCockpit|RavenCockpit|M2X_ViperCockpit|mk2_HypersonicNose|TunaCockpit|mk2_InlineIntake|mk2EngineShroud|mk2_MantaIntake|M2X_SmallLab|mk2InverterFuselage|mk2_SupersonicNose|mk2_SpadeTail|mk2Decoupler|Mk2THub|Mk2XHub|Mk2ShieldedDockingPort|mk2_OMSpod|mk22X5WayRCS|mk25WayRCS|mk2RCRCS|mk2PGRCS|mk2FF5WayRCS|mk2SCRCS|mk2Servicebay|mk2_AeroIntake|ChineCap|ChineLong|RootChineAdapter|RootChineLong|RootChineShort|ChineShort|Mk1Chinecap|Mk1ChineLong|Mk1ChineShort|mk2UST|mk2625tricoupler|M2X_Tailboom|M2X_Reactor|M2X_Shortbicoupler|M2X_Short25adapter|M2X_Shockcone|M2X_RadialLeg|M2X_DeployablePanel|M2X_Endcap|M2X_Precooler]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion] { @maxTemp = 850 @emissiveConstant = 0.85 @thermalMassModifier = 1 %skinMaxTemp = 2706 %skinThermalMassModifier = 0.436 %skinInternalConductionMult = 0.0000105 %skinMassPerArea = 0.815 MODULE { name = ModuleAeroReentry } } Thank you! Quote Link to comment Share on other sites More sharing options...
KalebKerbal Posted August 14, 2016 Share Posted August 14, 2016 the variable parts are broken for me, I am running v. 1.1.3.1289 Quote Link to comment Share on other sites More sharing options...
SuicidalInsanity Posted August 16, 2016 Author Share Posted August 16, 2016 @KalebKerbal: Do you have InterstellarFuelSwitch installed? The variable parts require it to function. Quote Link to comment Share on other sites More sharing options...
Knotty Posted August 22, 2016 Share Posted August 22, 2016 Hi, Just downloaded the latest version Version 1.7.12 on latest version of Kebal 1.1.3 on OSX, loving it so far but have encountered a problem: can't seem to EVA out of the MK2 Endcap airlock (M2X_Endcap) I've stripped out my other addins, Added tweakScale as saw that mentioned in the log, but Jeb still can't get out. Created a basic ship with just the out of the box Mk2 cockpit and the end cap, no luck. Log and craft file attached, did spot this: [WRN 17:50:10.260] [Part]: PartModule TransferDialogSpawner at mk2Cockpit.Standard, index 9: index exceeds module count as defined in cfg. Looking for TransferDialogSpawner in other indices... [WRN 17:50:10.261] ...no TransferDialogSpawner module found on part definition. Skipping... [WRN 17:50:10.269] [Part]: PartModule TransferDialogSpawner at M2X.Endcap, index 1: index exceeds module count as defined in cfg. Looking for TransferDialogSpawner in other indices... [WRN 17:50:10.269] ...no TransferDialogSpawner module found on part definition. Skipping... [LOG 17:50:10.270] hopper loaded! [WRN 17:50:25.839] [Part]: M2X.Endcap holds crew but has no interior model defined! Thanks Spoiler ship = hopper version = 1.1.3 description = type = SPH size = 2.5,1.528858,4.765021 PART { part = mk2Cockpit.Standard_4294607090 partName = Part pos = 0,10,0 attPos = 0,0,0 attPos0 = 0,10,0 rot = 0.7071068,0,0,0.7071068 attRot = 0,0,0,1 attRot0 = 0.7071068,0,0,0.7071068 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) link = M2X.Endcap_4294600880 attN = bottom,M2X.Endcap_4294600880 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = ModuleCommand isEnabled = True controlSrcStatusText = stagingEnabled = True EVENTS { MakeReference { active = True guiActive = True guiActiveUncommand = False guiIcon = Control From Here guiName = Control From Here category = Control From Here guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } RenameVessel { active = True guiActive = True guiActiveUncommand = True guiIcon = Rename Vessel guiName = Rename Vessel category = Rename Vessel guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleReactionWheel isEnabled = True actuatorModeCycle = 0 stateString = Active stagingEnabled = True WheelState = Active actuatorModeCycle_UIFlight { controlEnabled = True stateNames = Normal, SAS Only, Pilot Only } EVENTS { OnToggle { active = True guiActive = True guiActiveEditor = True guiActiveUncommand = False guiIcon = Toggle Torque guiName = Toggle Torque category = Toggle Torque guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { Activate { actionGroup = None } Deactivate { actionGroup = None } Toggle { actionGroup = None } } } MODULE { name = ModuleScienceExperiment isEnabled = True Deployed = False Inoperable = False cooldownToGo = 0 stagingEnabled = True EVENTS { DeployExperiment { active = True guiActive = True guiActiveUncommand = False guiIcon = Deploy guiName = Deploy category = Deploy guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } CollectDataExternalEvent { active = True guiActive = False guiActiveUncommand = False guiIcon = guiName = category = guiActiveUnfocused = True unfocusedRange = 1.5 externalToEVAOnly = True } ReviewDataEvent { active = True guiActive = True guiActiveUncommand = False guiIcon = Review Data guiName = Review Data category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ResetExperiment { active = True guiActive = True guiActiveUncommand = False guiIcon = Reset guiName = Reset category = Reset guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } DeployExperimentExternal { active = True guiActive = False guiActiveUncommand = False guiIcon = Deploy guiName = Deploy category = Deploy guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ResetExperimentExternal { active = True guiActive = False guiActiveUncommand = False guiIcon = Reset guiName = Reset category = Reset guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } CleanUpExperimentExternal { active = True guiActive = False guiActiveUncommand = False guiIcon = Restore guiName = Restore category = Restore guiActiveUnfocused = True unfocusedRange = 2 externalToEVAOnly = True } ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Experiment: Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { DeployAction { actionGroup = None } ResetAction { actionGroup = None } } } MODULE { name = ModuleScienceContainer isEnabled = True stagingEnabled = True EVENTS { StoreDataExternalEvent { active = False guiActive = False guiActiveUncommand = False guiIcon = guiName = Store Experiments (0) category = guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } CollectDataExternalEvent { active = False guiActive = False guiActiveUncommand = False guiIcon = guiName = Take Data (0) category = guiActiveUnfocused = True unfocusedRange = 3 externalToEVAOnly = True } ReviewDataEvent { active = False guiActive = True guiActiveUncommand = False guiIcon = Review Data guiName = Review Stored Data (0) category = Review Data guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = FlagDecal isEnabled = True flagDisplayed = True stagingEnabled = True EVENTS { ToggleFlag { active = True guiActive = False guiActiveEditor = True guiActiveUncommand = False guiIcon = Toggle Flag guiName = Toggle Flag category = Toggle Flag guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleAnimateGeneric isEnabled = True aniState = LOCKED animSwitch = True animTime = 0 animSpeed = 1 deployPercent = 100 animationIsDisabled = False stagingEnabled = True deployPercent_UIFlight { controlEnabled = True minValue = 0 maxValue = 100 stepIncrement = 1 } EVENTS { Toggle { active = True guiActive = True guiActiveEditor = True guiActiveUncommand = False guiIcon = Toggle guiName = Lights On category = Toggle guiActiveUnfocused = True unfocusedRange = 5 externalToEVAOnly = True } ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { ToggleAction { actionGroup = None } } } MODULE { name = ModuleLiftingSurface isEnabled = True stagingEnabled = True EVENTS { ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } MODULE { name = ModuleTripLogger isEnabled = True stagingEnabled = True EVENTS { ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } Log { flight = 0 } } MODULE { name = TransferDialogSpawner isEnabled = True stagingEnabled = True EVENTS { SpawnDialog { active = True guiActive = True guiActiveUncommand = True guiIcon = Transfer Crew guiName = Transfer Crew category = Transfer Crew guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } RESOURCE { name = ElectricCharge amount = 150 maxAmount = 150 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } RESOURCE { name = MonoPropellant amount = 15 maxAmount = 15 flowState = True isTweakable = True hideFlow = False isVisible = True flowMode = Both } } PART { part = M2X.Endcap_4294600880 partName = Part pos = 0,10,-1.25 attPos = 0,0,0 attPos0 = 0,-1.25,1.490116E-07 rot = 0,-0.7071068,0.7071068,0 attRot = 0,0,0.9999999,0 attRot0 = 0,0,1,0 mir = 1,1,1 symMethod = Mirror istg = 0 dstg = 0 sidx = -1 sqor = -1 sepI = 0 attm = 0 modCost = 0 modMass = 0 modSize = (0.0, 0.0, 0.0) attN = bottom,mk2Cockpit.Standard_4294607090 EVENTS { } ACTIONS { } PARTDATA { } MODULE { name = TransferDialogSpawner isEnabled = True stagingEnabled = True EVENTS { SpawnDialog { active = True guiActive = True guiActiveUncommand = True guiIcon = Transfer Crew guiName = Transfer Crew category = Transfer Crew guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } ToggleStaging { active = True guiActive = False guiActiveUncommand = False guiIcon = Disable Staging guiName = Disable Staging category = Disable Staging guiActiveUnfocused = False unfocusedRange = 2 externalToEVAOnly = True } } ACTIONS { } } } Spoiler Kerbal Space Program - 1.1.3.1289 (OSXPlayer) OS: Mac OS X 10.11.6 CPU: Intel(R) Core(TM)2 Duo CPU E8135 @ 2.66GHz (2) RAM: 8192 GPU: NVIDIA GeForce 9400 OpenGL Engine (256MB) SM: 30 (OpenGL 2.1 [2.1 NVIDIA-10.0.51 310.90.10.05b12]) RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, ARGB4444, ARGB1555, Default, ARGB2101010, DefaultHDR, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8 Log started: Mon, Aug 22, 2016 17:47:59 [LOG 17:47:59.167] ******* Log Initiated for Kerbal Space Program - 1.1.3.1289 (OSXPlayer) ******* [LOG 17:48:00.324] MainCanvas MASK: 3458764513820540928 [ERR 17:48:00.343] Couldn't open /Applications/KSP_osx/KSP.app/Contents/Plugins/3DConnexionWrapperU5.bundle/Contents/MacOS/3DConnexionWrapperU5, error: dlopen(/Applications/KSP_osx/KSP.app/Contents/Plugins/3DConnexionWrapperU5.bundle/Contents/MacOS/3DConnexionWrapperU5, 2): Library not loaded: /Library/Frameworks/3DconnexionClient.framework/Versions/A/3DconnexionClient Referenced from: /Applications/KSP_osx/KSP.app/Contents/Plugins/3DConnexionWrapperU5.bundle/Contents/MacOS/3DConnexionWrapperU5 Reason: image not found [ERR 17:48:00.347] Couldn't open /Applications/KSP_osx/KSP.app/Contents/Plugins/3DConnexionWrapperU5.bundle/Contents/MacOS/3DConnexionWrapperU5, error: dlopen(/Applications/KSP_osx/KSP.app/Contents/Plugins/3DConnexionWrapperU5.bundle/Contents/MacOS/3DConnexionWrapperU5, 2): Library not loaded: /Library/Frameworks/3DconnexionClient.framework/Versions/A/3DconnexionClient Referenced from: /Applications/KSP_osx/KSP.app/Contents/Plugins/3DConnexionWrapperU5.bundle/Contents/MacOS/3DConnexionWrapperU5 Reason: image not found [WRN 17:48:00.349] [SpaceNavigatorMac]: Could not initialize device. /Applications/KSP_osx/KSP.app/Contents/Plugins/3DConnexionWrapperU5.bundle/Contents/MacOS/3DConnexionWrapperU5 [LOG 17:48:00.354] ActionCanvas MASK: 3458764513820540928 [WRN 17:48:00.937] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/Examples.cfg'. [WRN 17:48:00.942] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/patches/B9_TweakScale.cfg'. [WRN 17:48:00.958] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/patches/NASA_TweakScale.cfg'. [WRN 17:48:00.969] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/patches/SpaceplanePlus_TweakScale.cfg'. [WRN 17:48:00.969] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/patches/Squad_TweakScale.cfg'. [LOG 17:48:00.990] Load(Assembly): /ModuleManager.2.6.25 [LOG 17:48:00.992] AssemblyLoader: Loading assembly at /Applications/KSP_osx/GameData/ModuleManager.2.6.25.dll [LOG 17:48:01.031] AssemblyLoader: KSPAssembly 'ModuleManager' V2.5 [LOG 17:48:01.031] Load(Assembly): InterstellarFuelSwitch/Plugins/InterstellarFuelSwitch [LOG 17:48:01.031] AssemblyLoader: Loading assembly at /Applications/KSP_osx/GameData/InterstellarFuelSwitch/Plugins/InterstellarFuelSwitch.dll [LOG 17:48:01.032] Load(Assembly): InterstellarFuelSwitch/Plugins/MiniAVC [LOG 17:48:01.032] AssemblyLoader: Loading assembly at /Applications/KSP_osx/GameData/InterstellarFuelSwitch/Plugins/MiniAVC.dll [LOG 17:48:01.033] Load(Assembly): InterstellarFuelSwitch/Plugins/Scale_Redist [LOG 17:48:01.033] AssemblyLoader: Loading assembly at /Applications/KSP_osx/GameData/InterstellarFuelSwitch/Plugins/Scale_Redist.dll [LOG 17:48:01.034] Load(Assembly): Squad/Plugins/SaveUpgradePipeline.Scripts [LOG 17:48:01.034] AssemblyLoader: Loading assembly at /Applications/KSP_osx/GameData/Squad/Plugins/SaveUpgradePipeline.Scripts.dll [LOG 17:48:01.035] Load(Assembly): TweakScale/plugins/Scale [LOG 17:48:01.035] AssemblyLoader: Loading assembly at /Applications/KSP_osx/GameData/TweakScale/plugins/Scale.dll [LOG 17:48:01.036] Load(Assembly): TweakScale/plugins/Scale_Redist [LOG 17:48:01.037] AssemblyLoader: Loading assembly at /Applications/KSP_osx/GameData/TweakScale/plugins/Scale_Redist.dll [LOG 17:48:01.039] AssemblyLoader: Loading assemblies [LOG 17:48:01.088] VesselModules: Found VesselModule of type FlightIntegrator with order 0 [LOG 17:48:01.091] VesselModules: Found 1 VesselModule types [LOG 17:48:01.100] ************************************************************************ Environment Info Unix 7FFFFFFFFFFFFFFF Args: KSP Mod DLLs found: Stock assembly: Assembly-CSharp v0.0.0.0 ModuleManager.2.6.25 v2.6.25.0 InterstellarFuelSwitch v2.1.4.0 / v2.1.4 MiniAVC v1.0.3.1 Scale_Redist v1.0.0.0 Stock assembly: SaveUpgradePipeline.Scripts v1.0.0.2 / v1.0.0.21 Scale v2.2.13.0 Scale_Redist v1.0.0.0 Folders and files in GameData: CommunityResourcePack InterstellarFuelSwitch Mk2Expansion Stock folder: Squad TweakScale .DS_Store ModuleManager.2.6.25.dll ModuleManager.ConfigCache ModuleManager.ConfigSHA ModuleManager.Physics ModuleManager.TechTree ************************************************************************ [LOG 17:48:01.110] AddonLoader: Instantiating addon 'ModuleManager' from assembly 'ModuleManager' [LOG 17:48:01.138] [ModuleManager] Adding ModuleManager to the loading screen 2 [LOG 17:48:01.148] AddonLoader: Instantiating addon 'Logger' from assembly 'MiniAVC' [LOG 17:48:01.150] AddonLoader: Instantiating addon 'Starter' from assembly 'MiniAVC' [LOG 17:48:01.152] AddonLoader: Instantiating addon 'CompatibilityChecker' from assembly 'Scale' [LOG 17:48:01.152] AddonLoader: Instantiating addon 'TweakScaleRegister' from assembly 'Scale' [WRN 17:48:01.563] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/Examples.cfg'. [WRN 17:48:01.567] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/patches/B9_TweakScale.cfg'. [WRN 17:48:01.578] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/patches/NASA_TweakScale.cfg'. [WRN 17:48:01.586] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/patches/SpaceplanePlus_TweakScale.cfg'. [WRN 17:48:01.586] Cannot create config from file '/Applications/KSP_osx/GameData/TweakScale/patches/Squad_TweakScale.cfg'. [LOG 17:48:01.604] Load(Audio): Mk2Expansion/Sounds/Banshee_Start [LOG 17:48:01.607] AppCanvas MASK: 3458764513820540928 [LOG 17:48:01.612] PhysicsGlobals: Loading database [LOG 17:48:01.771] [CompatibilityChecker] Running checker version 5 from 'Scale' [LOG 17:48:01.834] MiniAVC -> Executing: MiniAVC - 1.0.3.1 [LOG 17:48:01.834] MiniAVC -> Assembly: /Applications/KSP_osx/GameData/InterstellarFuelSwitch/Plugins/MiniAVC.dll [LOG 17:48:01.834] MiniAVC -> Starter was created. [LOG 17:48:01.965] Load(Audio): Mk2Expansion/Sounds/Banshee_Stop [LOG 17:48:01.976] Load(Audio): Mk2Expansion/Sounds/Banshee_idle [LOG 17:48:02.047] Load(Audio): Mk2Expansion/Sounds/engine_idle [LOG 17:48:02.113] Load(Audio): Mk2Expansion/Sounds/engine_running [LOG 17:48:02.178] Load(Audio): Mk2Expansion/Sounds/engine_start [LOG 17:48:02.341] MiniAVC -> Identical remote version found: Using remote version information only. [LOG 17:48:02.341] MiniAVC -> http://ksp-avc.cybutek.net/version.php?id=157 NAME: Interstellar Fuel Switch URL: http://ksp-avc.cybutek.net/version.php?id=157 DOWNLOAD: http://kerbal.curseforge.com/projects/interstellar-fuel-switch GITHUB: NULL VERSION: 2.1.4 KSP_VERSION: 1.1.3 KSP_VERSION_MIN: NULL KSP_VERSION_MAX: NULL CompatibleKspVersion: True CompatibleKspVersionMin: True CompatibleKspVersionMax: True CompatibleGitHubVersion: True [LOG 17:48:02.352] Load(Audio): Mk2Expansion/Sounds/engine_stop [LOG 17:48:02.354] MiniAVC -> Starter was destroyed. [LOG 17:48:02.433] Load(Audio): Squad/Parts/Utility/landingLegLT-1/sounds/sound_servomotor [LOG 17:48:02.516] Load(Audio): Squad/Sounds/editorLoop01 [LOG 17:48:02.856] Load(Audio): Squad/Sounds/sound_ambience_nature [LOG 17:48:02.893] Load(Audio): Squad/Sounds/sound_click_flick [LOG 17:48:02.925] Load(Audio): Squad/Sounds/sound_click_latch [LOG 17:48:02.958] Load(Audio): Squad/Sounds/sound_click_sharp [LOG 17:48:02.991] Load(Audio): Squad/Sounds/sound_click_tick [LOG 17:48:03.026] Load(Audio): Squad/Sounds/sound_click_tock [LOG 17:48:03.058] Load(Audio): Squad/Sounds/sound_decoupler_fire [LOG 17:48:03.091] Load(Audio): Squad/Sounds/sound_delete_bin [LOG 17:48:03.124] Load(Audio): Squad/Sounds/sound_explosion_debris1 [LOG 17:48:03.158] Load(Audio): Squad/Sounds/sound_explosion_debris2 [LOG 17:48:03.190] Load(Audio): Squad/Sounds/sound_explosion_large [LOG 17:48:03.224] Load(Audio): Squad/Sounds/sound_rocket_mini [LOG 17:48:03.257] Load(Audio): Squad/Sounds/sound_rocket_spurts [LOG 17:48:03.290] Load(Audio): Squad/Sounds/sound_tab_extend [LOG 17:48:03.323] Load(Audio): Squad/Sounds/sound_tab_retreat [LOG 17:48:03.356] Load(Texture): Mk2Expansion/Agencies/IA [LOG 17:48:03.530] Load(Texture): Mk2Expansion/Agencies/IA_scaled [LOG 17:48:03.601] Load(Texture): Mk2Expansion/FX/DustParticle [LOG 17:48:03.646] Load(Texture): Mk2Expansion/FX/NTRPlume [LOG 17:48:03.658] Load(Texture): Mk2Expansion/FX/rocketplume2 [LOG 17:48:03.669] Load(Texture): Mk2Expansion/FX/sdiamond [LOG 17:48:03.679] Load(Texture): Mk2Expansion/FX/sdiamondII [LOG 17:48:03.691] Load(Texture): Mk2Expansion/Parts/Aero/AdapterIntake/mk2adapters1m [LOG 17:48:03.701] Load(Texture): Mk2Expansion/Parts/Aero/AeroIntake/mk2FuselageShort [LOG 17:48:03.712] Load(Texture): Mk2Expansion/Parts/Aero/Chines/Wings [LOG 17:48:03.723] Load(Texture): Mk2Expansion/Parts/Aero/CircularIntake/CircluarIntakes [LOG 17:48:03.735] Load(Texture): Mk2Expansion/Parts/Aero/CircularIntake/mk2adapters1m [LOG 17:48:03.747] Load(Texture): Mk2Expansion/Parts/Aero/EngineShroud/mk2FuselageShort [LOG 17:48:03.757] Load(Texture): Mk2Expansion/Parts/Aero/EngineShroud/mk2adapters1m [LOG 17:48:03.768] Load(Texture): Mk2Expansion/Parts/Aero/MantaIntake/mk2adapters1m [LOG 17:48:03.779] Load(Texture): Mk2Expansion/Parts/Aero/Precooler/Mk1Structural [LOG 17:48:03.790] Load(Texture): Mk2Expansion/Parts/Aero/Precooler/mk2FuselageShort [LOG 17:48:03.800] Load(Texture): Mk2Expansion/Parts/Aero/ShockCone/CircluarIntakes [LOG 17:48:03.811] Load(Texture): Mk2Expansion/Parts/Aero/ShockCone/CircluarIntakes_Heat [LOG 17:48:03.822] Load(Texture): Mk2Expansion/Parts/Aero/ShockCone/mk2adapters1m [LOG 17:48:03.833] Load(Texture): Mk2Expansion/Parts/Aero/mk1Chines/Wings [LOG 17:48:03.844] Load(Texture): Mk2Expansion/Parts/Aero/tailboom/mk2adapters1m [LOG 17:48:03.855] Load(Texture): Mk2Expansion/Parts/Command/Angler/Cockpit [LOG 17:48:03.883] Load(Texture): Mk2Expansion/Parts/Command/Angler/Windows [LOG 17:48:03.889] Load(Texture): Mk2Expansion/Parts/Command/Angler/Windows_E [LOG 17:48:03.897] Load(Texture): Mk2Expansion/Parts/Command/Blade/Cockpit [LOG 17:48:03.906] Load(Texture): Mk2Expansion/Parts/Command/Blade/Windows [LOG 17:48:03.917] Load(Texture): Mk2Expansion/Parts/Command/Blade/Windows_E [LOG 17:48:03.928] Load(Texture): Mk2Expansion/Parts/Command/Fishhead/Cockpit [LOG 17:48:03.939] Load(Texture): Mk2Expansion/Parts/Command/Fishhead/Windows [LOG 17:48:03.950] Load(Texture): Mk2Expansion/Parts/Command/Fishhead/Windows_E [LOG 17:48:03.961] Load(Texture): Mk2Expansion/Parts/Command/Raven/Cockpit [LOG 17:48:03.972] Load(Texture): Mk2Expansion/Parts/Command/Raven/Cockpit_LUM [LOG 17:48:03.983] Load(Texture): Mk2Expansion/Parts/Command/Raven/Cockpit_NRM [LOG 17:48:03.995] Load(Texture): Mk2Expansion/Parts/Command/Viper/Cockpit [LOG 17:48:04.005] Load(Texture): Mk2Expansion/Parts/Command/Viper/Windows [LOG 17:48:04.020] Load(Texture): Mk2Expansion/Parts/Command/Viper/Windows_E [LOG 17:48:04.029] Load(Texture): Mk2Expansion/Parts/Engines/AASRB/mk2Fuselage [LOG 17:48:04.039] Load(Texture): Mk2Expansion/Parts/Engines/AASRB/model000 [LOG 17:48:04.050] Load(Texture): Mk2Expansion/Parts/Engines/AASRB/model002 [LOG 17:48:04.061] Load(Texture): Mk2Expansion/Parts/Engines/AASRB/model003 [LOG 17:48:04.072] Load(Texture): Mk2Expansion/Parts/Engines/AASRB/model004 [LOG 17:48:04.083] Load(Texture): Mk2Expansion/Parts/Engines/Aerospike/Mk3CargoBay [LOG 17:48:04.094] Load(Texture): Mk2Expansion/Parts/Engines/Aerospike/mk2FuselageShort [LOG 17:48:04.105] Load(Texture): Mk2Expansion/Parts/Engines/Aerospike/mk2adapters1m [LOG 17:48:04.115] Load(Texture): Mk2Expansion/Parts/Engines/Aerospike/model002 [LOG 17:48:04.137] Load(Texture): Mk2Expansion/Parts/Engines/Aerospike/model004 [LOG 17:48:04.148] Load(Texture): Mk2Expansion/Parts/Engines/AugmentedRocket/Jet Engines [LOG 17:48:04.159] Load(Texture): Mk2Expansion/Parts/Engines/AugmentedRocket/Jet_Heat [LOG 17:48:04.169] Load(Texture): Mk2Expansion/Parts/Engines/AugmentedRocket/Mk3CargoBay [LOG 17:48:04.180] Load(Texture): Mk2Expansion/Parts/Engines/AugmentedRocket/mk2FuselageShort [LOG 17:48:04.191] Load(Texture): Mk2Expansion/Parts/Engines/AugmentedRocket/mk2adapters1m [LOG 17:48:04.202] Load(Texture): Mk2Expansion/Parts/Engines/ESTOC/Mk3CargoBay [LOG 17:48:04.213] Load(Texture): Mk2Expansion/Parts/Engines/ESTOC/mk2adapters1m [LOG 17:48:04.223] Load(Texture): Mk2Expansion/Parts/Engines/ESTOC/rapierDiffuse [LOG 17:48:04.234] Load(Texture): Mk2Expansion/Parts/Engines/ESTOC/rapieremit [LOG 17:48:04.245] Load(Texture): Mk2Expansion/Parts/Engines/IonEngine/Mk3CargoBay [LOG 17:48:04.256] Load(Texture): Mk2Expansion/Parts/Engines/IonEngine/Model000 [LOG 17:48:04.269] Load(Texture): Mk2Expansion/Parts/Engines/IonEngine/Model001 [LOG 17:48:04.279] Load(Texture): Mk2Expansion/Parts/Engines/IonEngine/mk2FuselageShort [LOG 17:48:04.290] Load(Texture): Mk2Expansion/Parts/Engines/IonEngine/mk2adapters1m [LOG 17:48:04.301] Load(Texture): Mk2Expansion/Parts/Engines/JumpJet/Jet Engines [LOG 17:48:04.312] Load(Texture): Mk2Expansion/Parts/Engines/JumpJet/Jet_Heat [LOG 17:48:04.324] Load(Texture): Mk2Expansion/Parts/Engines/JumpJet/Nacelle [LOG 17:48:04.334] Load(Texture): Mk2Expansion/Parts/Engines/JumpJet/RadialIntake [LOG 17:48:04.345] Load(Texture): Mk2Expansion/Parts/Engines/LanderEngine/engine3 [LOG 17:48:04.355] Load(Texture): Mk2Expansion/Parts/Engines/LanderEngine/engine3_emissive [LOG 17:48:04.366] Load(Texture): Mk2Expansion/Parts/Engines/LanderEngine/mk2FuselageShort [LOG 17:48:04.377] Load(Texture): Mk2Expansion/Parts/Engines/LiftFan/mk2CargoBay [LOG 17:48:04.388] Load(Texture): Mk2Expansion/Parts/Engines/LiftFan/mk2FuselageShort [LOG 17:48:04.399] Load(Texture): Mk2Expansion/Parts/Engines/MATTOCK/mk2FuselageShort [LOG 17:48:04.411] Load(Texture): Mk2Expansion/Parts/Engines/MATTOCK/model000 [LOG 17:48:04.423] Load(Texture): Mk2Expansion/Parts/Engines/MATTOCK/model001 [LOG 17:48:04.433] Load(Texture): Mk2Expansion/Parts/Engines/Pegasus/ESTOC_E [LOG 17:48:04.444] Load(Texture): Mk2Expansion/Parts/Engines/Pegasus/Nacelle [LOG 17:48:04.455] Load(Texture): Mk2Expansion/Parts/Engines/Pegasus/mk2FuselageShort [LOG 17:48:04.466] Load(Texture): Mk2Expansion/Parts/Engines/Pluto/PLUTO_E [LOG 17:48:04.477] Load(Texture): Mk2Expansion/Parts/Engines/Pluto/mk2FuselageShort [LOG 17:48:04.488] Load(Texture): Mk2Expansion/Parts/Engines/Pluto/model003 [LOG 17:48:04.498] Load(Texture): Mk2Expansion/Parts/Engines/Ramjet/Nacelle [LOG 17:48:04.509] Load(Texture): Mk2Expansion/Parts/Engines/Ramjet/Turbojet_Emissive [LOG 17:48:04.520] Load(Texture): Mk2Expansion/Parts/Engines/Ramjet/mk2FuselageShort [LOG 17:48:04.531] Load(Texture): Mk2Expansion/Parts/Engines/Rontgen/mk2adapters1m [LOG 17:48:04.542] Load(Texture): Mk2Expansion/Parts/Engines/Rontgen/model000 [LOG 17:48:04.553] Load(Texture): Mk2Expansion/Parts/Engines/Rontgen/model001 [LOG 17:48:04.563] Load(Texture): Mk2Expansion/Parts/Engines/Rontgen/model003 [LOG 17:48:04.574] Load(Texture): Mk2Expansion/Parts/Engines/SCRamjet/mk2FuselageShort [LOG 17:48:04.585] Load(Texture): Mk2Expansion/Parts/Engines/SCRamjet/model000 [LOG 17:48:04.596] Load(Texture): Mk2Expansion/Parts/Engines/SCRamjet/model001 [LOG 17:48:04.608] Load(Texture): Mk2Expansion/Parts/Engines/Siddeley/ESTOC_E [LOG 17:48:04.617] Load(Texture): Mk2Expansion/Parts/Engines/Siddeley/Nacelle [LOG 17:48:04.639] Load(Texture): Mk2Expansion/Parts/Engines/Siddeley/mk2FuselageShort [LOG 17:48:04.650] Load(Texture): Mk2Expansion/Parts/Engines/Turbofan/model002 [LOG 17:48:04.662] Load(Texture): Mk2Expansion/Parts/Engines/Turbofan/model004 [LOG 17:48:04.674] Load(Texture): Mk2Expansion/Parts/Engines/Turbojet/Nacelle [LOG 17:48:04.685] Load(Texture): Mk2Expansion/Parts/Engines/Turbojet/Turbojet_Emissive [LOG 17:48:04.697] Load(Texture): Mk2Expansion/Parts/Engines/Turbojet/mk2FuselageShort [LOG 17:48:04.707] Load(Texture): Mk2Expansion/Parts/Engines/Turboprop/mk2FuselageShort [LOG 17:48:04.718] Load(Texture): Mk2Expansion/Parts/Engines/Turboprop/model000 [LOG 17:48:04.729] Load(Texture): Mk2Expansion/Parts/Engines/Turboprop/rotordisc [LOG 17:48:04.745] Load(Texture): Mk2Expansion/Parts/Engines/VTOL/mk2FuselageShort [LOG 17:48:04.750] Load(Texture): Mk2Expansion/Parts/FuelTank/Bicoupler/mk2adapters1m [LOG 17:48:04.762] Load(Texture): Mk2Expansion/Parts/FuelTank/HypersonicNose/mk2FuselageShort [LOG 17:48:04.773] Load(Texture): Mk2Expansion/Parts/FuelTank/Inverter/mk2adapters1m [LOG 17:48:04.784] Load(Texture): Mk2Expansion/Parts/FuelTank/LinearTricoupler/mk2adapters1m [LOG 17:48:04.794] Load(Texture): Mk2Expansion/Parts/FuelTank/Nosecap/Cockpit [LOG 17:48:04.805] Load(Texture): Mk2Expansion/Parts/FuelTank/Nosecap/mk2FuselageShort [LOG 17:48:04.816] Load(Texture): Mk2Expansion/Parts/FuelTank/ServiceTank/mk2FuselageShort [LOG 17:48:04.827] Load(Texture): Mk2Expansion/Parts/FuelTank/SpadeTail/mk2FuselageShort [LOG 17:48:04.838] Load(Texture): Mk2Expansion/Parts/FuelTank/Tricoupler/mk2adapters1m [LOG 17:48:04.849] Load(Texture): Mk2Expansion/Parts/FuelTank/size2adapter/Mk3Adapters [LOG 17:48:04.860] Load(Texture): Mk2Expansion/Parts/Structural/Decoupler/mk2FuselageShort [LOG 17:48:04.871] Load(Texture): Mk2Expansion/Parts/Structural/Decoupler/model000 [LOG 17:48:04.881] Load(Texture): Mk2Expansion/Parts/Structural/Endcap/Cockpit [LOG 17:48:04.892] Load(Texture): Mk2Expansion/Parts/Structural/Endcap/ksp_l_cupola_diff [LOG 17:48:04.903] Load(Texture): Mk2Expansion/Parts/Structural/Hubs/mk2FuselageShort [LOG 17:48:04.914] Load(Texture): Mk2Expansion/Parts/Structural/RadialMount/mk2FuselageShort [LOG 17:48:04.925] Load(Texture): Mk2Expansion/Parts/Utility/AlignedDockingPort/mk2FuselageShort [LOG 17:48:04.936] Load(Texture): Mk2Expansion/Parts/Utility/AlignedDockingPort/model000 [LOG 17:48:04.946] Load(Texture): Mk2Expansion/Parts/Utility/AlignedDockingPort/model100 [LOG 17:48:04.957] Load(Texture): Mk2Expansion/Parts/Utility/DockingPort/mk2FuselageShort [LOG 17:48:04.968] Load(Texture): Mk2Expansion/Parts/Utility/DockingPort/model000 [LOG 17:48:04.979] Load(Texture): Mk2Expansion/Parts/Utility/DockingPort/model100 [LOG 17:48:04.990] Load(Texture): Mk2Expansion/Parts/Utility/Lab/mk2CrewCabin [LOG 17:48:05.001] Load(Texture): Mk2Expansion/Parts/Utility/Lab/mk2CrewCabin_LUM [LOG 17:48:05.012] Load(Texture): Mk2Expansion/Parts/Utility/LandingLeg/Wings [LOG 17:48:05.022] Load(Texture): Mk2Expansion/Parts/Utility/LandingLeg/landingLeg [LOG 17:48:05.033] Load(Texture): Mk2Expansion/Parts/Utility/LandingLeg/model000 [LOG 17:48:05.044] Load(Texture): Mk2Expansion/Parts/Utility/OMS/mk2adapters1m [LOG 17:48:05.055] Load(Texture): Mk2Expansion/Parts/Utility/RCS/RCSBlock [LOG 17:48:05.066] Load(Texture): Mk2Expansion/Parts/Utility/RCS/Wings [LOG 17:48:05.076] Load(Texture): Mk2Expansion/Parts/Utility/RCS/mk2FuselageShort [LOG 17:48:05.087] Load(Texture): Mk2Expansion/Parts/Utility/Reactor/mk2FuselageShort [LOG 17:48:05.098] Load(Texture): Mk2Expansion/Parts/Utility/Reactor/model000 [LOG 17:48:05.109] Load(Texture): Mk2Expansion/Parts/Utility/Reactor/model002 [LOG 17:48:05.120] Load(Texture): Mk2Expansion/Parts/Utility/Reactor/model003 [LOG 17:48:05.141] Load(Texture): Mk2Expansion/Parts/Utility/ServiceBay/mk2CargoBay [LOG 17:48:05.152] Load(Texture): Mk2Expansion/Parts/Utility/ServiceBay/mk2FuselageShort [LOG 17:48:05.163] Load(Texture): Mk2Expansion/Parts/Utility/ServiceBay/model000 [LOG 17:48:05.174] Load(Texture): Mk2Expansion/Parts/Utility/SolarPanel/LandingGear [LOG 17:48:05.185] Load(Texture): Mk2Expansion/Parts/Utility/SolarPanel/model000 [LOG 17:48:05.196] Load(Texture): Mk2Expansion/Parts/Utility/SolarPanel/model002 [LOG 17:48:05.206] Load(Texture): Mk2Expansion/Spaces/AnglerPit/IVA_Windows [LOG 17:48:05.217] Load(Texture): Mk2Expansion/Spaces/AnglerPit/Mk2StandardIVA [LOG 17:48:05.228] Load(Texture): Mk2Expansion/Spaces/AnglerPit/model003 [LOG 17:48:05.242] Load(Texture): Mk2Expansion/Spaces/AnglerPit/model009 [LOG 17:48:05.255] Load(Texture): Mk2Expansion/Spaces/BladePit/Mk2StandardIVA [LOG 17:48:05.265] Load(Texture): Mk2Expansion/Spaces/BladePit/Transparency [LOG 17:48:05.276] Load(Texture): Mk2Expansion/Spaces/BladePit/model009 [LOG 17:48:05.287] Load(Texture): Mk2Expansion/Spaces/CrewedLab/IVA_Windows [LOG 17:48:05.298] Load(Texture): Mk2Expansion/Spaces/CrewedLab/MK3_CrewCab_Int [LOG 17:48:05.309] Load(Texture): Mk2Expansion/Spaces/CrewedLab/MPL_Int [LOG 17:48:05.320] Load(Texture): Mk2Expansion/Spaces/CrewedLab/Mk2StandardIVA [LOG 17:48:05.331] Load(Texture): Mk2Expansion/Spaces/CrewedLab/model003 [LOG 17:48:05.341] Load(Texture): Mk2Expansion/Spaces/CrewedLab/model009 [LOG 17:48:05.352] Load(Texture): Mk2Expansion/Spaces/RavenPit/Window [LOG 17:48:05.363] Load(Texture): Mk2Expansion/Spaces/RavenPit/model001 [LOG 17:48:05.374] Load(Texture): Mk2Expansion/Spaces/RavenPit/model003 [LOG 17:48:05.385] Load(Texture): Mk2Expansion/Spaces/RavenPit/model009 [LOG 17:48:05.396] Load(Texture): Mk2Expansion/Spaces/TunaPit/Mk2StandardIVA [LOG 17:48:05.407] Load(Texture): Mk2Expansion/Spaces/TunaPit/Transparency [LOG 17:48:05.420] Load(Texture): Mk2Expansion/Spaces/TunaPit/mk1Cockpit [LOG 17:48:05.429] Load(Texture): Mk2Expansion/Spaces/TunaPit/model003 [LOG 17:48:05.440] Load(Texture): Mk2Expansion/Spaces/TunaPit/model009 [LOG 17:48:05.451] Load(Texture): Mk2Expansion/Spaces/ViperPit/IVA_Windows [LOG 17:48:05.462] Load(Texture): Mk2Expansion/Spaces/ViperPit/Mk2StandardIVA [LOG 17:48:05.473] Load(Texture): Mk2Expansion/Spaces/ViperPit/model009 [LOG 17:48:05.484] Load(Texture): Squad/Agencies/C7AerospaceDivision [LOG 17:48:05.495] Load(Texture): Squad/Agencies/C7AerospaceDivision_scaled [LOG 17:48:05.507] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium [LOG 17:48:05.517] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium_scaled [LOG 17:48:05.528] Load(Texture): Squad/Agencies/ExperimentalEngineering [LOG 17:48:05.539] Load(Texture): Squad/Agencies/ExperimentalEngineering_scaled [LOG 17:48:05.550] Load(Texture): Squad/Agencies/FlooydResearchLab [LOG 17:48:05.561] Load(Texture): Squad/Agencies/FlooydResearchLab_scaled [LOG 17:48:05.572] Load(Texture): Squad/Agencies/GoliathNationalProducts [LOG 17:48:05.583] Load(Texture): Squad/Agencies/GoliathNationalProducts_scaled [LOG 17:48:05.594] Load(Texture): Squad/Agencies/IntegratedIntegrals [LOG 17:48:05.605] Load(Texture): Squad/Agencies/IntegratedIntegrals_scaled [LOG 17:48:05.616] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics [LOG 17:48:05.627] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics_scaled [LOG 17:48:05.648] Load(Texture): Squad/Agencies/JebsJunkyard [LOG 17:48:05.659] Load(Texture): Squad/Agencies/JebsJunkyard_scaled [LOG 17:48:05.672] Load(Texture): Squad/Agencies/KerbalMotion [LOG 17:48:05.682] Load(Texture): Squad/Agencies/KerbalMotion_scaled [LOG 17:48:05.693] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety [LOG 17:48:05.704] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety_scaled [LOG 17:48:05.715] Load(Texture): Squad/Agencies/Kerbodyne [LOG 17:48:05.726] Load(Texture): Squad/Agencies/Kerbodyne_scaled [LOG 17:48:05.738] Load(Texture): Squad/Agencies/Kerlington [LOG 17:48:05.749] Load(Texture): Squad/Agencies/Kerlington_scaled [LOG 17:48:05.759] Load(Texture): Squad/Agencies/MaxoConstructionToys [LOG 17:48:05.770] Load(Texture): Squad/Agencies/MaxoConstructionToys_scaled [LOG 17:48:05.781] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup [LOG 17:48:05.792] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup_scaled [LOG 17:48:05.803] Load(Texture): Squad/Agencies/OMBDemolition [LOG 17:48:05.814] Load(Texture): Squad/Agencies/OMBDemolition_scaled [LOG 17:48:05.825] Load(Texture): Squad/Agencies/PeriapsisCo [LOG 17:48:05.837] Load(Texture): Squad/Agencies/PeriapsisCo_scaled [LOG 17:48:05.848] Load(Texture): Squad/Agencies/Probodobodyne [LOG 17:48:05.860] Load(Texture): Squad/Agencies/Probodobodyne_scaled [LOG 17:48:05.870] Load(Texture): Squad/Agencies/R&D [LOG 17:48:05.883] Load(Texture): Squad/Agencies/R&D_scaled [LOG 17:48:05.893] Load(Texture): Squad/Agencies/ReactionSystemsLtd [LOG 17:48:05.904] Load(Texture): Squad/Agencies/ReactionSystemsLtd_scaled [LOG 17:48:05.915] Load(Texture): Squad/Agencies/Rockomax [LOG 17:48:05.925] Load(Texture): Squad/Agencies/Rockomax_scaled [LOG 17:48:05.936] Load(Texture): Squad/Agencies/Rokea [LOG 17:48:05.947] Load(Texture): Squad/Agencies/Rokea_scaled [LOG 17:48:05.958] Load(Texture): Squad/Agencies/SeansCannery [LOG 17:48:05.969] Load(Texture): Squad/Agencies/SeansCannery_scaled [LOG 17:48:05.980] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps [LOG 17:48:05.991] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps_scaled [LOG 17:48:06.002] Load(Texture): Squad/Agencies/StrutCo [LOG 17:48:06.013] Load(Texture): Squad/Agencies/StrutCo_scaled [LOG 17:48:06.024] Load(Texture): Squad/Agencies/Vac-Co [LOG 17:48:06.035] Load(Texture): Squad/Agencies/Vac-Co_scaled [LOG 17:48:06.046] Load(Texture): Squad/Agencies/WinterOwl [LOG 17:48:06.057] Load(Texture): Squad/Agencies/WinterOwl_scaled [LOG 17:48:06.068] Load(Texture): Squad/Agencies/ZaltonicElectronics [LOG 17:48:06.079] Load(Texture): Squad/Agencies/ZaltonicElectronics_scaled [LOG 17:48:06.090] Load(Texture): Squad/Contracts/Icons/balloon [LOG 17:48:06.101] Load(Texture): Squad/Contracts/Icons/default [LOG 17:48:06.112] Load(Texture): Squad/Contracts/Icons/dish [LOG 17:48:06.122] Load(Texture): Squad/Contracts/Icons/eva [LOG 17:48:06.133] Load(Texture): Squad/Contracts/Icons/gravity [LOG 17:48:06.154] Load(Texture): Squad/Contracts/Icons/marker [LOG 17:48:06.166] Load(Texture): Squad/Contracts/Icons/pressure [LOG 17:48:06.176] Load(Texture): Squad/Contracts/Icons/report [LOG 17:48:06.187] Load(Texture): Squad/Contracts/Icons/sample [LOG 17:48:06.198] Load(Texture): Squad/Contracts/Icons/seismic [LOG 17:48:06.209] Load(Texture): Squad/Contracts/Icons/thermometer [LOG 17:48:06.219] Load(Texture): Squad/Contracts/Icons/vessel [LOG 17:48:06.230] Load(Texture): Squad/FX/DiamondBlue [LOG 17:48:06.241] Load(Texture): Squad/FX/FlameBlueOrange [LOG 17:48:06.252] Load(Texture): Squad/FX/FlamePurple [LOG 17:48:06.263] Load(Texture): Squad/FX/FlameRed [LOG 17:48:06.273] Load(Texture): Squad/FX/FlameRedOrange [LOG 17:48:06.284] Load(Texture): Squad/FX/plasma2 [LOG 17:48:06.295] Load(Texture): Squad/FX/rocketplume2 [LOG 17:48:06.306] Load(Texture): Squad/FX/shockDiamond2 [LOG 17:48:06.317] Load(Texture): Squad/FX/smokepuff1 [LOG 17:48:06.328] Load(Texture): Squad/Flags/09 [LOG 17:48:06.342] Load(Texture): Squad/Flags/NASA [LOG 17:48:06.354] Load(Texture): Squad/Flags/blorbs [LOG 17:48:06.363] Load(Texture): Squad/Flags/bullseye [LOG 17:48:06.375] Load(Texture): Squad/Flags/capsule [LOG 17:48:06.386] Load(Texture): Squad/Flags/circles [LOG 17:48:06.399] Load(Texture): Squad/Flags/default [LOG 17:48:06.410] Load(Texture): Squad/Flags/esa_dark_blue [LOG 17:48:06.423] Load(Texture): Squad/Flags/hexagon [LOG 17:48:06.433] Load(Texture): Squad/Flags/hexagonCircles [LOG 17:48:06.445] Load(Texture): Squad/Flags/kerbal1 [LOG 17:48:06.456] Load(Texture): Squad/Flags/kerbal2 [LOG 17:48:06.467] Load(Texture): Squad/Flags/kerbin [LOG 17:48:06.479] Load(Texture): Squad/Flags/kerbinmunflag [LOG 17:48:06.489] Load(Texture): Squad/Flags/line [LOG 17:48:06.500] Load(Texture): Squad/Flags/minimalistic [LOG 17:48:06.514] Load(Texture): Squad/Flags/orbit [LOG 17:48:06.524] Load(Texture): Squad/Flags/orbs [LOG 17:48:06.534] Load(Texture): Squad/Flags/retro [LOG 17:48:06.546] Load(Texture): Squad/Flags/rings [LOG 17:48:06.559] Load(Texture): Squad/Flags/rocketScience [LOG 17:48:06.570] Load(Texture): Squad/Flags/satellite [LOG 17:48:06.581] Load(Texture): Squad/Flags/spheres [LOG 17:48:06.594] Load(Texture): Squad/Flags/squadLogo [LOG 17:48:06.603] Load(Texture): Squad/Flags/squadLogo2 [LOG 17:48:06.614] Load(Texture): Squad/Flags/stripes [LOG 17:48:06.625] Load(Texture): Squad/Flags/trees [LOG 17:48:06.637] Load(Texture): Squad/Flags/trippy [LOG 17:48:06.657] Load(Texture): Squad/Flags/uk_space_agency [LOG 17:48:06.674] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advaerodynamics [LOG 17:48:06.682] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advancedmotors [LOG 17:48:06.694] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advconstruction [LOG 17:48:06.705] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advelectrics [LOG 17:48:06.716] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advexploration [LOG 17:48:06.727] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advflightcontrol [LOG 17:48:06.738] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advlanding [LOG 17:48:06.749] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advmetalworks [LOG 17:48:06.760] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advrocketry [LOG 17:48:06.770] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advsciencetech [LOG 17:48:06.783] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advunmanned [LOG 17:48:06.792] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerodynamicsystems [LOG 17:48:06.805] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerospacetech [LOG 17:48:06.815] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_automation [LOG 17:48:06.825] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicprobes [LOG 17:48:06.838] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicrocketry [LOG 17:48:06.849] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_composites [LOG 17:48:06.860] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electrics [LOG 17:48:06.870] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electronics [LOG 17:48:06.882] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_evatech [LOG 17:48:06.892] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalaerodynamics [LOG 17:48:06.902] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalelectrics [LOG 17:48:06.913] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalmotors [LOG 17:48:06.925] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalrocketry [LOG 17:48:06.935] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalscience [LOG 17:48:06.947] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fieldscience [LOG 17:48:06.957] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_flightcontrol [LOG 17:48:06.969] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fuelsystems [LOG 17:48:06.979] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalconstruction [LOG 17:48:06.991] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalrocketry [LOG 17:48:07.002] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generic [LOG 17:48:07.013] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavierrocketry [LOG 17:48:07.024] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyaerodynamics [LOG 17:48:07.033] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyrocketry [LOG 17:48:07.044] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudeflight [LOG 17:48:07.055] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudepropulsion [LOG 17:48:07.068] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_hypersonicflight [LOG 17:48:07.077] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_ionpropulsion [LOG 17:48:07.089] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_landing [LOG 17:48:07.100] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largecontrol [LOG 17:48:07.110] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeelectrics [LOG 17:48:07.122] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeprobes [LOG 17:48:07.133] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_metamaterials [LOG 17:48:07.142] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nanolathing [LOG 17:48:07.164] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nuclearpropulsion [LOG 17:48:07.175] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_precisionengineering [LOG 17:48:07.186] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_robotics [LOG 17:48:07.198] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_sciencetech [LOG 17:48:07.209] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedconstruction [LOG 17:48:07.220] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedcontrol [LOG 17:48:07.232] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedelectrics [LOG 17:48:07.242] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_stability [LOG 17:48:07.253] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_start [LOG 17:48:07.264] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_supersonicflight [LOG 17:48:07.276] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_survivability [LOG 17:48:07.286] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_unmannedtech [LOG 17:48:07.296] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_veryheavyrocketry [LOG 17:48:07.307] Load(Texture): Squad/PartList/SimpleIcons/RDicon_aerospaceTech2 [LOG 17:48:07.319] Load(Texture): Squad/PartList/SimpleIcons/RDicon_commandmodules [LOG 17:48:07.329] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-advanced [LOG 17:48:07.341] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-highPerformance [LOG 17:48:07.353] Load(Texture): Squad/PartList/SimpleIcons/RDicon_largeVolumeContainment [LOG 17:48:07.363] Load(Texture): Squad/PartList/SimpleIcons/RDicon_miniaturization [LOG 17:48:07.375] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsion-precision [LOG 17:48:07.385] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsionSystems [LOG 17:48:07.395] Load(Texture): Squad/PartList/SimpleIcons/RDicon_telescope [LOG 17:48:07.407] Load(Texture): Squad/PartList/SimpleIcons/cs_main [LOG 17:48:07.418] Load(Texture): Squad/PartList/SimpleIcons/cs_mk2 [LOG 17:48:07.428] Load(Texture): Squad/PartList/SimpleIcons/cs_mk3 [LOG 17:48:07.439] Load(Texture): Squad/PartList/SimpleIcons/cs_size0 [LOG 17:48:07.450] Load(Texture): Squad/PartList/SimpleIcons/cs_size1 [LOG 17:48:07.461] Load(Texture): Squad/PartList/SimpleIcons/cs_size2 [LOG 17:48:07.472] Load(Texture): Squad/PartList/SimpleIcons/cs_size3 [LOG 17:48:07.484] Load(Texture): Squad/PartList/SimpleIcons/cs_surface [LOG 17:48:07.494] Load(Texture): Squad/PartList/SimpleIcons/fuels_monopropellant [LOG 17:48:07.506] Load(Texture): Squad/PartList/SimpleIcons/fuels_ore [LOG 17:48:07.517] Load(Texture): Squad/PartList/SimpleIcons/fuels_oxidizer [LOG 17:48:07.528] Load(Texture): Squad/PartList/SimpleIcons/fuels_solidfuel [LOG 17:48:07.539] Load(Texture): Squad/PartList/SimpleIcons/fuels_xenongas [LOG 17:48:07.550] Load(Texture): Squad/PartList/SimpleIcons/number1 [LOG 17:48:07.561] Load(Texture): Squad/PartList/SimpleIcons/number2 [LOG 17:48:07.571] Load(Texture): Squad/PartList/SimpleIcons/number3 [LOG 17:48:07.583] Load(Texture): Squad/PartList/SimpleIcons/number4 [LOG 17:48:07.593] Load(Texture): Squad/PartList/SimpleIcons/number5 [LOG 17:48:07.605] Load(Texture): Squad/PartList/SimpleIcons/number6 [LOG 17:48:07.615] Load(Texture): Squad/PartList/SimpleIcons/number7 [LOG 17:48:07.627] Load(Texture): Squad/PartList/SimpleIcons/number8 [LOG 17:48:07.637] Load(Texture): Squad/PartList/SimpleIcons/number9 [LOG 17:48:07.648] Load(Texture): Squad/Parts/Aero/HeatShield/Fairing [LOG 17:48:07.726] Load(Texture): Squad/Parts/Aero/HeatShield/heatshield [LOG 17:48:07.803] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield [LOG 17:48:07.881] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShieldFairing [LOG 17:48:07.958] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield_NRM [LOG 17:48:08.035] Load(Texture): Squad/Parts/Aero/aerodynamicNoseCone/Nosecone [LOG 17:48:08.110] Load(Texture): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake [LOG 17:48:08.186] Load(Texture): Squad/Parts/Aero/airbrake/Airbrake [LOG 17:48:08.261] Load(Texture): Squad/Parts/Aero/airlinerWings/AirlinerWings [LOG 17:48:08.364] Load(Texture): Squad/Parts/Aero/airplaneFins/AirplaneFins [LOG 17:48:08.443] Load(Texture): Squad/Parts/Aero/basicFin/BasicFin [LOG 17:48:08.518] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes [LOG 17:48:08.594] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes_Heat [LOG 17:48:08.674] Load(Texture): Squad/Parts/Aero/cones/Cones [LOG 17:48:08.767] Load(Texture): Squad/Parts/Aero/cones/Cones_Heat [LOG 17:48:08.846] Load(Texture): Squad/Parts/Aero/fairings/FairingBase [LOG 17:48:08.922] Load(Texture): Squad/Parts/Aero/fairings/fairings_diff [LOG 17:48:08.999] Load(Texture): Squad/Parts/Aero/intakeRadialLong/Radial_long [LOG 17:48:09.074] Load(Texture): Squad/Parts/Aero/miniIntake/SmallIntake [LOG 17:48:09.149] Load(Texture): Squad/Parts/Aero/protectiveRocketNoseMk7/model000 [LOG 17:48:09.227] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake [LOG 17:48:09.302] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake_Heat [LOG 17:48:09.378] Load(Texture): Squad/Parts/Aero/shuttleWings/ShuttleWings [LOG 17:48:09.502] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model000 [LOG 17:48:09.578] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model001 [LOG 17:48:09.643] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model000 [LOG 17:48:09.652] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model001 [LOG 17:48:09.662] Load(Texture): Squad/Parts/Aero/wingletDeltaDeluxe/model000 [LOG 17:48:09.672] Load(Texture): Squad/Parts/Aero/wings/Wings [LOG 17:48:09.685] Load(Texture): Squad/Parts/Command/Mk1-2Pod/ladder [LOG 17:48:09.691] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch NRM [LOG 17:48:09.703] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch [LOG 17:48:09.714] Load(Texture): Squad/Parts/Command/Mk1-2Pod/walls [LOG 17:48:09.723] Load(Texture): Squad/Parts/Command/Mk1-2Pod/window [LOG 17:48:09.732] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model000 [LOG 17:48:09.741] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model001 [LOG 17:48:09.749] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_diff [LOG 17:48:09.761] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_normal [LOG 17:48:09.769] Load(Texture): Squad/Parts/Command/cupola/window [LOG 17:48:09.778] Load(Texture): Squad/Parts/Command/externalCommandSeat/model000 [LOG 17:48:09.790] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin [LOG 17:48:09.801] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_n [LOG 17:48:09.808] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/window [LOG 17:48:09.817] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model000 [LOG 17:48:09.825] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model001 [LOG 17:48:09.834] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model000 [LOG 17:48:09.843] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model001 [LOG 17:48:09.852] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model002 [LOG 17:48:09.860] Load(Texture): Squad/Parts/Command/mk1Cockpits/GLOW [LOG 17:48:09.871] Load(Texture): Squad/Parts/Command/mk1Cockpits/Mk1Cockpit [LOG 17:48:09.882] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_diff [LOG 17:48:09.893] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_normal [LOG 17:48:09.901] Load(Texture): Squad/Parts/Command/mk1pod/hatch [LOG 17:48:09.910] Load(Texture): Squad/Parts/Command/mk1pod/ladderrung [LOG 17:48:09.918] Load(Texture): Squad/Parts/Command/mk1pod/outer shell NRM [LOG 17:48:09.927] Load(Texture): Squad/Parts/Command/mk1pod/outer shell [LOG 17:48:09.935] Load(Texture): Squad/Parts/Command/mk1pod/window [LOG 17:48:09.944] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_A [LOG 17:48:09.955] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_Emissive [LOG 17:48:09.965] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_normal [LOG 17:48:09.976] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit [LOG 17:48:09.997] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_Lum [LOG 17:48:10.002] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_NRM [LOG 17:48:10.028] Load(Texture): Squad/Parts/Command/mk2DroneCore/mk2Dronecore [LOG 17:48:10.035] Load(Texture): Squad/Parts/Command/mk2LanderCan/ladder [LOG 17:48:10.043] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell [LOG 17:48:10.057] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell_n [LOG 17:48:10.066] Load(Texture): Squad/Parts/Command/mk2LanderCan/window [LOG 17:48:10.073] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle [LOG 17:48:10.089] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle_LUM [LOG 17:48:10.094] Load(Texture): Squad/Parts/Command/probeCoreCube/model000 [LOG 17:48:10.104] Load(Texture): Squad/Parts/Command/probeCoreCube/model001 [LOG 17:48:10.112] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_diff [LOG 17:48:10.126] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_normal [LOG 17:48:10.141] Load(Texture): Squad/Parts/Command/probeCoreOcto/model000 [LOG 17:48:10.150] Load(Texture): Squad/Parts/Command/probeCoreOcto/model001 [LOG 17:48:10.160] Load(Texture): Squad/Parts/Command/probeCoreOcto2/model000 [LOG 17:48:10.168] Load(Texture): Squad/Parts/Command/probeRoverBody/model000 [LOG 17:48:10.177] Load(Texture): Squad/Parts/Command/probeRoverBody/model001 [LOG 17:48:10.187] Load(Texture): Squad/Parts/Command/probeStackLarge/model000 [LOG 17:48:10.200] Load(Texture): Squad/Parts/Command/probeStackLarge/model001 [LOG 17:48:10.218] Load(Texture): Squad/Parts/Command/probeStackSmall/model000 [LOG 17:48:10.276] Load(Texture): Squad/Parts/Command/probeStackSmall/model001 [LOG 17:48:10.287] Load(Texture): Squad/Parts/Command/probeStackSphere/model000 [LOG 17:48:10.291] Load(Texture): Squad/Parts/Command/probeStackSphere/model001 [LOG 17:48:10.294] Load(Texture): Squad/Parts/CompoundParts/fuelLine/model000 [LOG 17:48:10.302] Load(Texture): Squad/Parts/CompoundParts/strutConnector/model000 [LOG 17:48:10.311] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model000 [LOG 17:48:10.319] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model001 [LOG 17:48:10.327] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model002 [LOG 17:48:10.336] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model000 [LOG 17:48:10.344] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model001 [LOG 17:48:10.353] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model002 [LOG 17:48:10.363] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model000 [LOG 17:48:10.371] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model001 [LOG 17:48:10.380] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model002 [LOG 17:48:10.388] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model000 [LOG 17:48:10.397] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model001 [LOG 17:48:10.406] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model002 [LOG 17:48:10.414] Load(Texture): Squad/Parts/Electrical/RTG/model000 [LOG 17:48:10.424] Load(Texture): Squad/Parts/Electrical/gigantorXlSolarArray/panel [LOG 17:48:10.432] Load(Texture): Squad/Parts/Electrical/radialFlatSolarPanel/model000 [LOG 17:48:10.440] Load(Texture): Squad/Parts/Electrical/z-100Battery/model000 [LOG 17:48:10.449] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model000 [LOG 17:48:10.457] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model001 [LOG 17:48:10.466] Load(Texture): Squad/Parts/Electrical/z-200Battery/ksp_m_batteryPack_diff [LOG 17:48:10.474] Load(Texture): Squad/Parts/Electrical/z-400Battery/model000 [LOG 17:48:10.483] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_diff [LOG 17:48:10.492] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_normal [LOG 17:48:10.501] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_cm [LOG 17:48:10.511] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_em [LOG 17:48:10.519] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_nm [LOG 17:48:10.530] Load(Texture): Squad/Parts/Engine/OMSEngine/engineoms 1 [LOG 17:48:10.538] Load(Texture): Squad/Parts/Engine/OMSEngine/engineomsN_NRM [LOG 17:48:10.548] Load(Texture): Squad/Parts/Engine/Size2LFB/Size2LFBEmissive [LOG 17:48:10.556] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_cm [LOG 17:48:10.568] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_nm [LOG 17:48:10.579] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineDiffuse [LOG 17:48:10.590] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineEmissive [LOG 17:48:10.598] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineNormal [LOG 17:48:10.606] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/decoupler_and_adaptor_cm [LOG 17:48:10.618] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/ClusterEngineEmit [LOG 17:48:10.626] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_cm [LOG 17:48:10.644] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_nm [LOG 17:48:10.656] Load(Texture): Squad/Parts/Engine/ionEngine/model000 [LOG 17:48:10.667] Load(Texture): Squad/Parts/Engine/jetEngines/Jet Engines [LOG 17:48:10.680] Load(Texture): Squad/Parts/Engine/jetEngines/Jet_Heat [LOG 17:48:10.692] Load(Texture): Squad/Parts/Engine/liquidEngine24-77/model000 [LOG 17:48:10.702] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_diff [LOG 17:48:10.712] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_norm [LOG 17:48:10.723] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_norm [LOG 17:48:10.733] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_psd [LOG 17:48:10.744] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike [LOG 17:48:10.755] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike_Heat [LOG 17:48:10.765] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/model000 [LOG 17:48:10.775] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/model001 [LOG 17:48:10.785] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1R/ksp_r_microEngine_diff [LOG 17:48:10.797] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/bigfairing [LOG 17:48:10.807] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3 [LOG 17:48:10.817] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_emissive [LOG 17:48:10.828] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_n [LOG 17:48:10.839] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model000 [LOG 17:48:10.850] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model001 [LOG 17:48:10.860] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model002 [LOG 17:48:10.871] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model003 [LOG 17:48:10.883] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model000 [LOG 17:48:10.893] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model001 [LOG 17:48:10.904] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model002 [LOG 17:48:10.914] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model000 [LOG 17:48:10.926] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model001 [LOG 17:48:10.935] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model002 [LOG 17:48:10.945] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model003 [LOG 17:48:10.956] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model000 [LOG 17:48:10.966] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model001 [LOG 17:48:10.977] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model002 [LOG 17:48:10.988] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model003 [LOG 17:48:10.998] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model004 [LOG 17:48:11.009] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud [LOG 17:48:11.019] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud_Heat [LOG 17:48:11.030] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model000 [LOG 17:48:11.041] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model001 [LOG 17:48:11.051] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model002 [LOG 17:48:11.061] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model003 [LOG 17:48:11.072] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME [LOG 17:48:11.082] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_GLOW [LOG 17:48:11.092] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_NRM [LOG 17:48:11.104] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_diff [LOG 17:48:11.116] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_emissive [LOG 17:48:11.128] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_diff [LOG 17:48:11.198] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_norm [LOG 17:48:11.270] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_normal [LOG 17:48:11.340] Load(Texture): Squad/Parts/Engine/miniJet/SmallJet [LOG 17:48:11.410] Load(Texture): Squad/Parts/Engine/rapierEngine/rapierDiffuse [LOG 17:48:11.481] Load(Texture): Squad/Parts/Engine/rapierEngine/rapieremit [LOG 17:48:11.550] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model000 [LOG 17:48:11.621] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model001 [LOG 17:48:11.693] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model002 [LOG 17:48:11.763] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model000 [LOG 17:48:11.834] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model001 [LOG 17:48:11.912] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model002 [LOG 17:48:11.981] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5 [LOG 17:48:12.051] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5_N_NRM [LOG 17:48:12.121] Load(Texture): Squad/Parts/Engine/solidBoosterSep/model000 [LOG 17:48:12.190] Load(Texture): Squad/Parts/Engine/vernorEngine/vernierEngine3UV [LOG 17:48:12.261] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model000 [LOG 17:48:12.330] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model001 [LOG 17:48:12.401] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_diff [LOG 17:48:12.471] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_normal [LOG 17:48:12.541] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model000 [LOG 17:48:12.611] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model001 [LOG 17:48:12.682] Load(Texture): Squad/Parts/FuelTank/RCSTankRadial/model000 [LOG 17:48:12.692] Load(Texture): Squad/Parts/FuelTank/RCStankRadialLong/ksp_r_rcsCylTank_diff [LOG 17:48:12.703] Load(Texture): Squad/Parts/FuelTank/Size3Tanks/fueltTanks_cm [LOG 17:48:12.715] Load(Texture): Squad/Parts/FuelTank/adapterTanks/Mk3Adapters [LOG 17:48:12.736] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model000 [LOG 17:48:12.744] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model001 [LOG 17:48:12.755] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model000 [LOG 17:48:12.765] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model001 [LOG 17:48:12.775] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank [LOG 17:48:12.786] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank_n [LOG 17:48:12.797] Load(Texture): Squad/Parts/FuelTank/fuelTankT100/tank4 [LOG 17:48:12.809] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3 [LOG 17:48:12.819] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3_n [LOG 17:48:12.829] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model000 [LOG 17:48:12.840] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model001 [LOG 17:48:12.853] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model000 [LOG 17:48:12.863] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model001 [LOG 17:48:12.876] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model000 [LOG 17:48:12.887] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model001 [LOG 17:48:12.897] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model000 [LOG 17:48:12.908] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model001 [LOG 17:48:12.919] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model000 [LOG 17:48:12.932] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model001 [LOG 17:48:12.942] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model000 [LOG 17:48:12.954] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model001 [LOG 17:48:12.965] Load(Texture): Squad/Parts/FuelTank/miniFuselage/Fuselage [LOG 17:48:12.975] Load(Texture): Squad/Parts/FuelTank/mk2Adapters/mk2adapters1m [LOG 17:48:12.989] Load(Texture): Squad/Parts/FuelTank/mk2FuselageLong/mk2Fuselage [LOG 17:48:13.001] Load(Texture): Squad/Parts/FuelTank/mk2FuselageShort/mk2FuselageShort [LOG 17:48:13.013] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage [LOG 17:48:13.034] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage_LUM [LOG 17:48:13.038] Load(Texture): Squad/Parts/FuelTank/xenonTank/model000 [LOG 17:48:13.050] Load(Texture): Squad/Parts/FuelTank/xenonTank/model001 [LOG 17:48:13.061] Load(Texture): Squad/Parts/FuelTank/xenonTankLarge/tank [LOG 17:48:13.071] Load(Texture): Squad/Parts/FuelTank/xenonTankRadial/ksp_r_xenonTank_diff [LOG 17:48:13.082] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat [LOG 17:48:13.094] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_N_NRM [LOG 17:48:13.107] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_glow [LOG 17:48:13.116] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe [LOG 17:48:13.127] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe_NORM_NRM [LOG 17:48:13.138] Load(Texture): Squad/Parts/Misc/AsteroidDay/default [LOG 17:48:13.148] Load(Texture): Squad/Parts/Misc/PotatoRoid/squareButton [LOG 17:48:13.158] Load(Texture): Squad/Parts/Resources/FuelCell/FCLamp [LOG 17:48:13.168] Load(Texture): Squad/Parts/Resources/FuelCell/FuelCellRack [LOG 17:48:13.188] Load(Texture): Squad/Parts/Resources/FuelCell/fuellcell [LOG 17:48:13.199] Load(Texture): Squad/Parts/Resources/ISRU/Processor_Large [LOG 17:48:13.210] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_diff [LOG 17:48:13.223] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_norm [LOG 17:48:13.235] Load(Texture): Squad/Parts/Resources/MiniDrill/DustParticle [LOG 17:48:13.244] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_PSD [LOG 17:48:13.257] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_diff [LOG 17:48:13.270] Load(Texture): Squad/Parts/Resources/MiniISRU/ksp_s_processorSmall_diff [LOG 17:48:13.282] Load(Texture): Squad/Parts/Resources/OrbitalScanner/detector [LOG 17:48:13.311] Load(Texture): Squad/Parts/Resources/RadialDrill/DustParticle [LOG 17:48:13.313] Load(Texture): Squad/Parts/Resources/RadialDrill/TriBitDrill [LOG 17:48:13.319] Load(Texture): Squad/Parts/Resources/RadialTank/ksp_r_resourceContainer_psd_2 [LOG 17:48:13.331] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_diff [LOG 17:48:13.344] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_normal [LOG 17:48:13.356] Load(Texture): Squad/Parts/Resources/SurfaceScanner/ksp_r_samplerAir_diff [LOG 17:48:13.368] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish [LOG 17:48:13.379] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish_n [LOG 17:48:13.394] Load(Texture): Squad/Parts/Science/AtmosphereSensor/ksp_r_hydroscoop_diff [LOG 17:48:13.406] Load(Texture): Squad/Parts/Science/GooExperiment/A_GooExperiment_diff [LOG 17:48:13.419] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab [LOG 17:48:13.431] Load(Texture): Squad/Parts/Science/LargeCrewedLab/window [LOG 17:48:13.441] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small [LOG 17:48:13.454] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_emit [LOG 17:48:13.464] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_nrm [LOG 17:48:13.475] Load(Texture): Squad/Parts/Science/MaterialBay/wires [LOG 17:48:13.486] Load(Texture): Squad/Parts/Science/sensorAccelerometer/model000 [LOG 17:48:13.497] Load(Texture): Squad/Parts/Science/sensorBarometer/model000 [LOG 17:48:13.507] Load(Texture): Squad/Parts/Science/sensorGravimeter/model000 [LOG 17:48:13.517] Load(Texture): Squad/Parts/Science/sensorThermometer/model000 [LOG 17:48:13.527] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_cm [LOG 17:48:13.541] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_nm [LOG 17:48:13.552] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_cm [LOG 17:48:13.565] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_nm [LOG 17:48:13.577] Load(Texture): Squad/Parts/Structural/adapterLargeSmallBi/ksp_l_biAdapter_diff [LOG 17:48:13.590] Load(Texture): Squad/Parts/Structural/adapterLargeSmallQuad/ksp_l_quadAdapter_diff [LOG 17:48:13.601] Load(Texture): Squad/Parts/Structural/adapterLargeSmallTri/ksp_l_triAdapter_diff [LOG 17:48:13.613] Load(Texture): Squad/Parts/Structural/adapterSmallMiniShort/ksp_s_adapterShort_diff [LOG 17:48:13.623] Load(Texture): Squad/Parts/Structural/adapterSmallMiniTall/ksp_s_adapterLong_diff [LOG 17:48:13.635] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1Structural [LOG 17:48:13.649] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1StructuralHeat [LOG 17:48:13.660] Load(Texture): Squad/Parts/Structural/stationHub/model000 [LOG 17:48:13.672] Load(Texture): Squad/Parts/Structural/stationHub/model001 [LOG 17:48:13.693] Load(Texture): Squad/Parts/Structural/structuralIBeam200/model000 [LOG 17:48:13.704] Load(Texture): Squad/Parts/Structural/structuralIBeam200Pocket/model000 [LOG 17:48:13.714] Load(Texture): Squad/Parts/Structural/structuralIBeam650/model000 [LOG 17:48:13.724] Load(Texture): Squad/Parts/Structural/structuralMicronode/model000 [LOG 17:48:13.735] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model000 [LOG 17:48:13.745] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model001 [LOG 17:48:13.756] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model000 [LOG 17:48:13.766] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model001 [LOG 17:48:13.776] Load(Texture): Squad/Parts/Structural/structuralPylons/Pylons [LOG 17:48:13.789] Load(Texture): Squad/Parts/Structural/strutCubicOcto/model000 [LOG 17:48:13.798] Load(Texture): Squad/Parts/Structural/strutOcto/model000 [LOG 17:48:13.809] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model000 [LOG 17:48:13.819] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model001 [LOG 17:48:13.830] Load(Texture): Squad/Parts/Structural/trussGirderL/model000 [LOG 17:48:13.842] Load(Texture): Squad/Parts/Structural/trussGirderXL/model000 [LOG 17:48:13.854] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator [LOG 17:48:13.866] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator_N_NRM [LOG 17:48:13.877] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel [LOG 17:48:13.890] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel_N_NRM [LOG 17:48:13.904] Load(Texture): Squad/Parts/Utility/GrapplingDevice/grabberDiffuse [LOG 17:48:13.912] Load(Texture): Squad/Parts/Utility/GrapplingDevice/window [LOG 17:48:13.922] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay [LOG 17:48:13.933] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay_N_NRM [LOG 17:48:13.946] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_array [LOG 17:48:13.956] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_v2_diff [LOG 17:48:13.968] Load(Texture): Squad/Parts/Utility/commDish88-88/model000 [LOG 17:48:13.977] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna [LOG 17:48:14.013] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna_Emit [LOG 17:48:14.015] Load(Texture): Squad/Parts/Utility/commsDish16/model000 [LOG 17:48:14.021] Load(Texture): Squad/Parts/Utility/decouplerRadialHDM/model000 [LOG 17:48:14.031] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model000 [LOG 17:48:14.042] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model001 [LOG 17:48:14.052] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-70/model000 [LOG 17:48:14.062] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model000 [LOG 17:48:14.073] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model001 [LOG 17:48:14.084] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-2C/model000 [LOG 17:48:14.094] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-XL/model000 [LOG 17:48:14.106] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model000 [LOG 17:48:14.118] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model001 [LOG 17:48:14.127] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model000 [LOG 17:48:14.138] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model001 [LOG 17:48:14.148] Load(Texture): Squad/Parts/Utility/decouplerStackTR-2V/model000 [LOG 17:48:14.158] Load(Texture): Squad/Parts/Utility/dockingPort/model000 [LOG 17:48:14.171] Load(Texture): Squad/Parts/Utility/dockingPort/model001 [LOG 17:48:14.180] Load(Texture): Squad/Parts/Utility/dockingPortInline/model000 [LOG 17:48:14.201] Load(Texture): Squad/Parts/Utility/dockingPortInline/model001 [LOG 17:48:14.211] Load(Texture): Squad/Parts/Utility/dockingPortInline/model002 [LOG 17:48:14.223] Load(Texture): Squad/Parts/Utility/dockingPortJr/model000 [LOG 17:48:14.232] Load(Texture): Squad/Parts/Utility/dockingPortJr/model001 [LOG 17:48:14.246] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model000 [LOG 17:48:14.256] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model001 [LOG 17:48:14.267] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model002 [LOG 17:48:14.278] Load(Texture): Squad/Parts/Utility/dockingPortSr/model000 [LOG 17:48:14.290] Load(Texture): Squad/Parts/Utility/dockingPortSr/model001 [LOG 17:48:14.302] Load(Texture): Squad/Parts/Utility/ladderRadial/model000 [LOG 17:48:14.312] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model000 [LOG 17:48:14.325] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model001 [LOG 17:48:14.337] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model002 [LOG 17:48:14.349] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model000 [LOG 17:48:14.362] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model001 [LOG 17:48:14.374] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff [LOG 17:48:14.385] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff OUT OF DATE [LOG 17:48:14.385] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff [LOG 17:48:14.413] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg [LOG 17:48:14.417] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg OUT OF DATE [LOG 17:48:14.417] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg [LOG 17:48:14.440] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg [LOG 17:48:14.442] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg OUT OF DATE [LOG 17:48:14.442] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg [LOG 17:48:14.449] Load(Texture): Squad/Parts/Utility/landingLegLT-5/model000 [LOG 17:48:14.460] Load(Texture): Squad/Parts/Utility/largeAdapter/model000 [LOG 17:48:14.470] Load(Texture): Squad/Parts/Utility/largeAdapterShort/model000 [LOG 17:48:14.481] Load(Texture): Squad/Parts/Utility/launchClamp1/model000 [LOG 17:48:14.491] Load(Texture): Squad/Parts/Utility/launchClamp1/model001 [LOG 17:48:14.502] Load(Texture): Squad/Parts/Utility/launchEscapeSystem/LES_Diffuse [LOG 17:48:14.516] Load(Texture): Squad/Parts/Utility/linearRCS/model000 [LOG 17:48:14.525] Load(Texture): Squad/Parts/Utility/linearRCS/model001 [LOG 17:48:14.536] Load(Texture): Squad/Parts/Utility/mk2CargoBay/mk2CargoBay [LOG 17:48:14.548] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin [LOG 17:48:14.561] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin_LUM [LOG 17:48:14.570] Load(Texture): Squad/Parts/Utility/mk2DockingPort/mk2DockingPort [LOG 17:48:14.583] Load(Texture): Squad/Parts/Utility/mk3CargoBay/Mk3CargoBay [LOG 17:48:14.595] Load(Texture): Squad/Parts/Utility/parachuteMk1/model000 [LOG 17:48:14.606] Load(Texture): Squad/Parts/Utility/parachuteMk1/model001 [LOG 17:48:14.617] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model000 [LOG 17:48:14.629] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model001 [LOG 17:48:14.638] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model000 [LOG 17:48:14.649] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model001 [LOG 17:48:14.659] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model000 [LOG 17:48:14.673] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model001 [LOG 17:48:14.684] Load(Texture): Squad/Parts/Utility/parachuteMk25/model000 [LOG 17:48:14.705] Load(Texture): Squad/Parts/Utility/parachuteMk25/model001 [LOG 17:48:14.715] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model000 [LOG 17:48:14.726] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model001 [LOG 17:48:14.736] Load(Texture): Squad/Parts/Utility/rcsBlockRV-105/model000 [LOG 17:48:14.747] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1 [LOG 17:48:14.759] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1_em [LOG 17:48:14.769] Load(Texture): Squad/Parts/Utility/spotLightMk1/model000 [LOG 17:48:14.779] Load(Texture): Squad/Parts/Utility/spotLightMk1/model001 [LOG 17:48:14.789] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2 [LOG 17:48:14.800] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2_em [LOG 17:48:14.810] Load(Texture): Squad/Parts/Utility/spotLightMk2/model000 [LOG 17:48:14.820] Load(Texture): Squad/Parts/Utility/spotLightMk2/model001 [LOG 17:48:14.831] Load(Texture): Squad/Parts/Utility/stackBiCoupler/model000 [LOG 17:48:14.841] Load(Texture): Squad/Parts/Utility/stackQuadCoupler/ksp_s_quadCoupler_diff [LOG 17:48:14.852] Load(Texture): Squad/Parts/Utility/stackTriCoupler/model000 [LOG 17:48:14.863] Load(Texture): Squad/Parts/Wheel/LandingGear/Flare [LOG 17:48:14.874] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear [LOG 17:48:14.886] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear_Emissive [LOG 17:48:14.896] Load(Texture): Squad/Parts/Wheel/roverWheelM1/model000 [LOG 17:48:14.906] Load(Texture): Squad/Parts/Wheel/roverWheelM1/roverwheel1 [LOG 17:48:14.933] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model000 [LOG 17:48:14.935] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model001 [LOG 17:48:14.942] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2 [LOG 17:48:14.954] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2_n [LOG 17:48:14.977] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_diff [LOG 17:48:15.089] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_normal [LOG 17:48:15.175] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_diff [LOG 17:48:15.277] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_normal [LOG 17:48:15.358] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model000 [LOG 17:48:15.370] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model001 [LOG 17:48:15.403] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model002 [LOG 17:48:15.415] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model003 [LOG 17:48:15.427] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model000 [LOG 17:48:15.438] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model001 [LOG 17:48:15.443] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model002 [LOG 17:48:15.453] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model003 [LOG 17:48:15.464] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount [LOG 17:48:15.576] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount_n [LOG 17:48:15.593] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel [LOG 17:48:15.606] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel_n [LOG 17:48:15.618] Load(Texture): Squad/Props/AltimeterThreeHands/model000 [LOG 17:48:15.621] Load(Texture): Squad/Props/AltimeterThreeHands/model001 [LOG 17:48:15.627] Load(Texture): Squad/Props/AtmosphereDepth/model000 [LOG 17:48:15.638] Load(Texture): Squad/Props/AtmosphereDepth/model001 [LOG 17:48:15.648] Load(Texture): Squad/Props/AxisIndicator/model000 [LOG 17:48:15.658] Load(Texture): Squad/Props/ButtonSquare/model000 [LOG 17:48:15.671] Load(Texture): Squad/Props/Compass/model000 [LOG 17:48:15.684] Load(Texture): Squad/Props/IVANavBall/Arrows8dir [LOG 17:48:15.693] Load(Texture): Squad/Props/IVANavBall/IVANavBall [LOG 17:48:15.703] Load(Texture): Squad/Props/IVANavBall/IVANavBall_Glow [LOG 17:48:15.714] Load(Texture): Squad/Props/IVANavBall/ManeuverNode_vectors [LOG 17:48:15.724] Load(Texture): Squad/Props/IVANavBall/navBall_DV_IVA [LOG 17:48:15.734] Load(Texture): Squad/Props/IVANavBall/navBall_vectors_IVA [LOG 17:48:15.745] Load(Texture): Squad/Props/IVANavBall/navball2 [LOG 17:48:15.755] Load(Texture): Squad/Props/IndicatorPanel/model000 [LOG 17:48:15.765] Load(Texture): Squad/Props/IndicatorPanel/model001 [LOG 17:48:15.786] Load(Texture): Squad/Props/Monitor/Emissives [LOG 17:48:15.796] Load(Texture): Squad/Props/Monitor/Emissives_glow [LOG 17:48:15.806] Load(Texture): Squad/Props/Monitor/Monitor [LOG 17:48:15.816] Load(Texture): Squad/Props/NavBall/model000 [LOG 17:48:15.827] Load(Texture): Squad/Props/NavBall/model001 [LOG 17:48:15.838] Load(Texture): Squad/Props/NavBall/model002 [LOG 17:48:15.848] Load(Texture): Squad/Props/NavBall/model003 [LOG 17:48:15.858] Load(Texture): Squad/Props/PropsGeneric/propsGeneric [LOG 17:48:15.870] Load(Texture): Squad/Props/VSI/model000 [LOG 17:48:15.880] Load(Texture): Squad/Props/circularButton/model000 [LOG 17:48:15.891] Load(Texture): Squad/Props/directionalKnob/model000 [LOG 17:48:15.901] Load(Texture): Squad/Props/directionalKnob2/model000 [LOG 17:48:15.912] Load(Texture): Squad/Props/ledPanelSpeed/model000 [LOG 17:48:15.922] Load(Texture): Squad/Props/ledPanelSpeed/model001 [LOG 17:48:15.932] Load(Texture): Squad/Props/pullSwitch/model000 [LOG 17:48:15.943] Load(Texture): Squad/Props/pullSwitch/model001 [LOG 17:48:15.953] Load(Texture): Squad/Props/radarAltitude/model000 [LOG 17:48:15.964] Load(Texture): Squad/Props/squareButton/model000 [LOG 17:48:15.974] Load(Texture): Squad/Props/standingSwitch/model000 [LOG 17:48:15.984] Load(Texture): Squad/Props/standingSwitch/model001 [LOG 17:48:15.995] Load(Texture): Squad/Props/switch/model000 [LOG 17:48:16.006] Load(Texture): Squad/Props/switchGuard/model000 [LOG 17:48:16.017] Load(Texture): Squad/Props/switchWithGuards/model000 [LOG 17:48:16.028] Load(Texture): Squad/Props/switchWithGuards/model001 [LOG 17:48:16.038] Load(Texture): Squad/Props/switchWithGuards/model002 [LOG 17:48:16.049] Load(Texture): Squad/Props/throttle/model000 [LOG 17:48:16.059] Load(Texture): Squad/Props/throttle/model001 [LOG 17:48:16.072] Load(Texture): Squad/Spaces/GenericSpace1/model000 [LOG 17:48:16.085] Load(Texture): Squad/Spaces/GenericSpace1/model001 [LOG 17:48:16.098] Load(Texture): Squad/Spaces/GenericSpace1/model002 [LOG 17:48:16.110] Load(Texture): Squad/Spaces/GenericSpace1/model003 [LOG 17:48:16.124] Load(Texture): Squad/Spaces/GenericSpace1/model004 [LOG 17:48:16.138] Load(Texture): Squad/Spaces/GenericSpace1/model005 [LOG 17:48:16.150] Load(Texture): Squad/Spaces/GenericSpace3/model000 [LOG 17:48:16.164] Load(Texture): Squad/Spaces/GenericSpace3/model001 [LOG 17:48:16.175] Load(Texture): Squad/Spaces/GenericSpace3/model002 [LOG 17:48:16.188] Load(Texture): Squad/Spaces/GenericSpace3/model003 [LOG 17:48:16.201] Load(Texture): Squad/Spaces/GenericSpace3/model004 [LOG 17:48:16.213] Load(Texture): Squad/Spaces/GenericSpace3/model005 [LOG 17:48:16.256] Load(Texture): Squad/Spaces/GenericSpace3/model006 [LOG 17:48:16.263] Load(Texture): Squad/Spaces/GenericSpace3/model007 [LOG 17:48:16.274] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/Glass [LOG 17:48:16.308] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int [LOG 17:48:16.871] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int_n_NRM [LOG 17:48:16.938] Load(Texture): Squad/Spaces/MK3CockpitInternal/Glass [LOG 17:48:16.942] Load(Texture): Squad/Spaces/MK3CockpitInternal/Mk2StandardIVA [LOG 17:48:16.949] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Glass [LOG 17:48:16.954] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/GlassMK3CC [LOG 17:48:16.964] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int [LOG 17:48:16.977] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int_n [LOG 17:48:16.987] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Mk2StandardIVA [LOG 17:48:16.999] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Pilotseat [LOG 17:48:17.009] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/CargoBagA [LOG 17:48:17.020] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Glass [LOG 17:48:17.031] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Mk2StandardIVA [LOG 17:48:17.042] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Pilotseat [LOG 17:48:17.053] Load(Texture): Squad/Spaces/Placeholder/PlaceholderIVA [LOG 17:48:17.064] Load(Texture): Squad/Spaces/PodCockpit/model000 [LOG 17:48:17.076] Load(Texture): Squad/Spaces/PodCockpit/model001 [LOG 17:48:17.089] Load(Texture): Squad/Spaces/PodCockpit/model002 [LOG 17:48:17.100] Load(Texture): Squad/Spaces/PodCockpit/model003 [LOG 17:48:17.113] Load(Texture): Squad/Spaces/PodCockpit/model004 [LOG 17:48:17.125] Load(Texture): Squad/Spaces/PodCockpit/model005 [LOG 17:48:17.139] Load(Texture): Squad/Spaces/PodCockpit/model006 [LOG 17:48:17.151] Load(Texture): Squad/Spaces/PodCockpit/model007 [LOG 17:48:17.164] Load(Texture): Squad/Spaces/crewCabinInternals/model000 [LOG 17:48:17.174] Load(Texture): Squad/Spaces/crewCabinInternals/model001 [LOG 17:48:17.196] Load(Texture): Squad/Spaces/crewCabinInternals/model002 [LOG 17:48:17.201] Load(Texture): Squad/Spaces/crewCabinInternals/model003 [LOG 17:48:17.214] Load(Texture): Squad/Spaces/crewCabinInternals/model004 [LOG 17:48:17.224] Load(Texture): Squad/Spaces/crewCabinInternals/model005 [LOG 17:48:17.237] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_diff [LOG 17:48:17.286] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_normal [LOG 17:48:17.331] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_windows_alpha [LOG 17:48:17.345] Load(Texture): Squad/Spaces/cupolaInternal/pilot Seat [LOG 17:48:17.358] Load(Texture): Squad/Spaces/landerCabinInternals/model000 [LOG 17:48:17.370] Load(Texture): Squad/Spaces/landerCabinInternals/model001 [LOG 17:48:17.383] Load(Texture): Squad/Spaces/landerCabinInternals/model002 [LOG 17:48:17.427] Load(Texture): Squad/Spaces/landerCabinInternals/model003 [LOG 17:48:17.468] Load(Texture): Squad/Spaces/landerCabinInternals/model004 [LOG 17:48:17.480] Load(Texture): Squad/Spaces/landerCabinInternals/model005 [LOG 17:48:17.484] Load(Texture): Squad/Spaces/landerCabinInternals/model006 [LOG 17:48:17.514] Load(Texture): Squad/Spaces/landerCabinInternals/model007 [LOG 17:48:17.530] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_diff [LOG 17:48:17.604] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_normal [LOG 17:48:17.644] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_window_alpha [LOG 17:48:17.655] Load(Texture): Squad/Spaces/landerCabinSmallInternal/pilot Seat [LOG 17:48:17.666] Load(Texture): Squad/Spaces/mk1CabinInternal/Cabin_Lightmap [LOG 17:48:17.671] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric [LOG 17:48:17.679] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric_NRM [LOG 17:48:17.690] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric [LOG 17:48:17.700] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric_NRM [LOG 17:48:17.710] Load(Texture): Squad/Spaces/mk1CockpitInternal/IVAMAP [LOG 17:48:17.723] Load(Texture): Squad/Spaces/mk1CockpitInternal/Windows [LOG 17:48:17.732] Load(Texture): Squad/Spaces/mk1InlineInternal/Canopy [LOG 17:48:17.746] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric [LOG 17:48:17.755] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric_NRM [LOG 17:48:17.765] Load(Texture): Squad/Spaces/mk1InlineInternal/Mk1Inline_Lightmap [LOG 17:48:17.776] Load(Texture): Squad/Spaces/mk1PodCockpit/model000 [LOG 17:48:17.790] Load(Texture): Squad/Spaces/mk1PodCockpit/model001 [LOG 17:48:17.800] Load(Texture): Squad/Spaces/mk1PodCockpit/model002 [LOG 17:48:17.814] Load(Texture): Squad/Spaces/mk1PodCockpit/model003 [LOG 17:48:17.826] Load(Texture): Squad/Spaces/mk1PodCockpit/model004 [LOG 17:48:17.847] Load(Texture): Squad/Spaces/mk1PodCockpit/model005 [LOG 17:48:17.852] Load(Texture): Squad/Spaces/mk1PodCockpit/model006 [LOG 17:48:17.864] Load(Texture): Squad/Spaces/mk1PodCockpit/model007 [LOG 17:48:17.884] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/CargoBagA [LOG 17:48:17.894] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Mk2StandardIVA [LOG 17:48:17.905] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Pilotseat [LOG 17:48:17.916] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Windows [LOG 17:48:17.927] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric [LOG 17:48:17.939] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric_NRM [LOG 17:48:17.953] Load(Texture): Squad/Spaces/mk2InlineInternal/Mk2InlineLightmap [LOG 17:48:17.965] Load(Texture): Squad/Spaces/mk2InlineInternal/propsGeneric [LOG 17:48:17.977] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric [LOG 17:48:17.989] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric_NRM [LOG 17:48:18.002] Load(Texture): Squad/Strategies/Icons/AggressiveNegotiations [LOG 17:48:18.012] Load(Texture): Squad/Strategies/Icons/AppreciationCampaign [LOG 17:48:18.021] Load(Texture): Squad/Strategies/Icons/BailOutGrant [LOG 17:48:18.031] Load(Texture): Squad/Strategies/Icons/FundraisingCampaign [LOG 17:48:18.043] Load(Texture): Squad/Strategies/Icons/LeadershipInitiative [LOG 17:48:18.052] Load(Texture): Squad/Strategies/Icons/OpenSourceTechProgram [LOG 17:48:18.062] Load(Texture): Squad/Strategies/Icons/OutsourcedResearch [LOG 17:48:18.072] Load(Texture): Squad/Strategies/Icons/PatentsLicensing [LOG 17:48:18.083] Load(Texture): Squad/Strategies/Icons/RecoveryTransponderFitting [LOG 17:48:18.093] Load(Texture): Squad/Strategies/Icons/ResearchRightsSellOut [LOG 17:48:18.103] Load(Texture): Squad/Strategies/Icons/UnpaidResearchProgram [LOG 17:48:18.113] Load(Texture): Squad/Tutorials/ChuteColors [LOG 17:48:18.124] Load(Texture): Squad/Tutorials/EditorCoM [LOG 17:48:18.133] Load(Texture): Squad/Tutorials/EditorSnap [LOG 17:48:18.145] Load(Texture): Squad/Tutorials/EditorSnap4x [LOG 17:48:18.155] Load(Texture): Squad/Tutorials/EditorSymm [LOG 17:48:18.165] Load(Texture): Squad/Tutorials/StagingStack [LOG 17:48:18.175] Load(Model): Mk2Expansion/FX/AAREPlume [LOG 17:48:18.191] Load(Model): Mk2Expansion/FX/AAREShock [LOG 17:48:18.196] Load(Model): Mk2Expansion/FX/AAREVacPlume [LOG 17:48:18.206] Load(Model): Mk2Expansion/FX/AASRBLPlume [LOG 17:48:18.217] Load(Model): Mk2Expansion/FX/AASRBPlume [LOG 17:48:18.226] Load(Model): Mk2Expansion/FX/ESTOC_Plume_J [LOG 17:48:18.236] Load(Model): Mk2Expansion/FX/ESTOC_Plume_R [LOG 17:48:18.246] Load(Model): Mk2Expansion/FX/ESTOC_Shock_J [LOG 17:48:18.256] Load(Model): Mk2Expansion/FX/ESTOC_Shock_R [LOG 17:48:18.266] Load(Model): Mk2Expansion/FX/Ion_plume [LOG 17:48:18.276] Load(Model): Mk2Expansion/FX/Plume [LOG 17:48:18.286] Load(Model): Mk2Expansion/FX/Pluto_Plume [LOG 17:48:18.296] Load(Model): Mk2Expansion/FX/RVTOL_Plume [LOG 17:48:18.306] Load(Model): Mk2Expansion/FX/Ramjet_Plume [LOG 17:48:18.316] Load(Model): Mk2Expansion/FX/Ramjet_Shock [LOG 17:48:18.326] Load(Model): Mk2Expansion/FX/Rontgen_Plume [LOG 17:48:18.336] Load(Model): Mk2Expansion/FX/SRBLPlume [LOG 17:48:18.346] Load(Model): Mk2Expansion/FX/SRBPlume [LOG 17:48:18.356] Load(Model): Mk2Expansion/FX/Vector_ABPlume [LOG 17:48:18.366] Load(Model): Mk2Expansion/FX/Vector_Plume [LOG 17:48:18.386] Load(Model): Mk2Expansion/Parts/Aero/AdapterIntake/Model [LOG 17:48:18.419] Load(Model): Mk2Expansion/Parts/Aero/AeroIntake/Model [LOG 17:48:18.456] Load(Model): Mk2Expansion/Parts/Aero/Chines/CBlock [LOG 17:48:18.460] Load(Model): Mk2Expansion/Parts/Aero/Chines/Eblock [LOG 17:48:18.465] Load(Model): Mk2Expansion/Parts/Aero/Chines/End [LOG 17:48:18.475] Load(Model): Mk2Expansion/Parts/Aero/Chines/Long [LOG 17:48:18.485] Load(Model): Mk2Expansion/Parts/Aero/Chines/Rootcap [LOG 17:48:18.495] Load(Model): Mk2Expansion/Parts/Aero/Chines/Rootlong [LOG 17:48:18.505] Load(Model): Mk2Expansion/Parts/Aero/Chines/Rootshort [LOG 17:48:18.515] Load(Model): Mk2Expansion/Parts/Aero/Chines/Short [LOG 17:48:18.525] Load(Model): Mk2Expansion/Parts/Aero/CircularIntake/Model [LOG 17:48:18.537] Load(Model): Mk2Expansion/Parts/Aero/EngineShroud/Model [LOG 17:48:18.550] Load(Model): Mk2Expansion/Parts/Aero/MantaIntake/Model [LOG 17:48:18.558] Load(Model): Mk2Expansion/Parts/Aero/Precooler/Model [LOG 17:48:18.566] Load(Model): Mk2Expansion/Parts/Aero/ShockCone/Model [LOG 17:48:18.600] Load(Model): Mk2Expansion/Parts/Aero/mk1Chines/mk1cap [LOG 17:48:18.604] Load(Model): Mk2Expansion/Parts/Aero/mk1Chines/mk1long [LOG 17:48:18.609] Load(Model): Mk2Expansion/Parts/Aero/mk1Chines/mk1short [LOG 17:48:18.619] Load(Model): Mk2Expansion/Parts/Aero/tailboom/Model [LOG 17:48:18.629] Load(Model): Mk2Expansion/Parts/Command/Angler/Model [LOG 17:48:18.668] Load(Model): Mk2Expansion/Parts/Command/Blade/Model [LOG 17:48:18.676] Load(Model): Mk2Expansion/Parts/Command/Fishhead/Model [LOG 17:48:18.684] Load(Model): Mk2Expansion/Parts/Command/Raven/Model [LOG 17:48:18.691] Load(Model): Mk2Expansion/Parts/Command/Viper/Model [LOG 17:48:18.718] Load(Model): Mk2Expansion/Parts/Engines/AASRB/Radial [LOG 17:48:18.723] Load(Model): Mk2Expansion/Parts/Engines/AASRB/RadialL [LOG 17:48:18.729] Load(Model): Mk2Expansion/Parts/Engines/Aerospike/Model [LOG 17:48:18.737] Load(Model): Mk2Expansion/Parts/Engines/AugmentedRocket/model [LOG 17:48:18.747] Load(Model): Mk2Expansion/Parts/Engines/ESTOC/Model [LOG 17:48:18.757] Load(Model): Mk2Expansion/Parts/Engines/IonEngine/Model [LOG 17:48:18.768] Load(Model): Mk2Expansion/Parts/Engines/JumpJet/Model [LOG 17:48:18.778] Load(Model): Mk2Expansion/Parts/Engines/LanderEngine/Model [LOG 17:48:18.788] Load(Model): Mk2Expansion/Parts/Engines/LiftFan/Fuselage [LOG 17:48:18.809] Load(Model): Mk2Expansion/Parts/Engines/LiftFan/Stack [LOG 17:48:18.850] Load(Model): Mk2Expansion/Parts/Engines/MATTOCK/Model [LOG 17:48:18.864] Load(Model): Mk2Expansion/Parts/Engines/Pegasus/Model [LOG 17:48:18.870] Load(Model): Mk2Expansion/Parts/Engines/Pluto/Model [LOG 17:48:18.892] Load(Model): Mk2Expansion/Parts/Engines/Ramjet/Model [LOG 17:48:18.905] Load(Model): Mk2Expansion/Parts/Engines/Rontgen/Model [LOG 17:48:18.919] Load(Model): Mk2Expansion/Parts/Engines/SCRamjet/Model [LOG 17:48:18.928] Load(Model): Mk2Expansion/Parts/Engines/Siddeley/Model [LOG 17:48:18.945] Load(Model): Mk2Expansion/Parts/Engines/Turbofan/Model [LOG 17:48:18.960] Load(Model): Mk2Expansion/Parts/Engines/Turbojet/Model [LOG 17:48:18.970] Load(Model): Mk2Expansion/Parts/Engines/Turboprop/Model [LOG 17:48:18.986] Load(Model): Mk2Expansion/Parts/Engines/VTOL/Model [LOG 17:48:19.007] Load(Model): Mk2Expansion/Parts/FuelTank/Bicoupler/Model [LOG 17:48:19.013] Load(Model): Mk2Expansion/Parts/FuelTank/HypersonicNose/Model [LOG 17:48:19.021] Load(Model): Mk2Expansion/Parts/FuelTank/Inverter/Model [LOG 17:48:19.026] Load(Model): Mk2Expansion/Parts/FuelTank/LinearTricoupler/Model [LOG 17:48:19.042] Load(Model): Mk2Expansion/Parts/FuelTank/Nosecap/Model [LOG 17:48:19.055] Load(Model): Mk2Expansion/Parts/FuelTank/ServiceTank/Model [LOG 17:48:19.059] Load(Model): Mk2Expansion/Parts/FuelTank/SpadeTail/Model [LOG 17:48:19.077] Load(Model): Mk2Expansion/Parts/FuelTank/Tricoupler/Model [LOG 17:48:19.096] Load(Model): Mk2Expansion/Parts/FuelTank/size2adapter/Model [LOG 17:48:19.100] Load(Model): Mk2Expansion/Parts/Structural/Decoupler/Model [LOG 17:48:19.106] Load(Model): Mk2Expansion/Parts/Structural/Endcap/Model [LOG 17:48:19.114] Load(Model): Mk2Expansion/Parts/Structural/Hubs/L_Hub [LOG 17:48:19.124] Load(Model): Mk2Expansion/Parts/Structural/Hubs/THub [LOG 17:48:19.134] Load(Model): Mk2Expansion/Parts/Structural/Hubs/XHub [LOG 17:48:19.144] Load(Model): Mk2Expansion/Parts/Structural/RadialMount/Model [LOG 17:48:19.155] Load(Model): Mk2Expansion/Parts/Structural/RadialMount/RadialA [LOG 17:48:19.165] Load(Model): Mk2Expansion/Parts/Structural/RadialMount/RadialB [LOG 17:48:19.175] Load(Model): Mk2Expansion/Parts/Utility/AlignedDockingPort/Model [LOG 17:48:19.185] Load(Model): Mk2Expansion/Parts/Utility/DockingPort/Model [LOG 17:48:19.204] Load(Model): Mk2Expansion/Parts/Utility/Lab/Model [LOG 17:48:19.209] Load(Model): Mk2Expansion/Parts/Utility/LandingLeg/Model [ERR 17:48:19.219] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:19.219] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:19.222] Load(Model): Mk2Expansion/Parts/Utility/OMS/OMS [LOG 17:48:19.229] Load(Model): Mk2Expansion/Parts/Utility/RCS/CBlock [LOG 17:48:19.237] Load(Model): Mk2Expansion/Parts/Utility/RCS/EBlock [LOG 17:48:19.247] Load(Model): Mk2Expansion/Parts/Utility/RCS/FF5Way [LOG 17:48:19.263] Load(Model): Mk2Expansion/Parts/Utility/RCS/OMSBlister [LOG 17:48:19.290] Load(Model): Mk2Expansion/Parts/Utility/RCS/RCSBlister [LOG 17:48:19.317] Load(Model): Mk2Expansion/Parts/Utility/RCS/SCModule [LOG 17:48:19.334] Load(Model): Mk2Expansion/Parts/Utility/Reactor/Model [LOG 17:48:19.341] Load(Model): Mk2Expansion/Parts/Utility/ServiceBay/ServiceBay [LOG 17:48:19.358] Load(Model): Mk2Expansion/Parts/Utility/SolarPanel/Model [LOG 17:48:19.378] Load(Model): Mk2Expansion/Spaces/AnglerPit/Internal [LOG 17:48:19.403] Load(Model): Mk2Expansion/Spaces/BladePit/Internal [LOG 17:48:19.431] Load(Model): Mk2Expansion/Spaces/CrewedLab/Internal [LOG 17:48:19.454] Load(Model): Mk2Expansion/Spaces/OverlayMasks/AnglerMask [LOG 17:48:19.461] Load(Model): Mk2Expansion/Spaces/OverlayMasks/BladeMask [LOG 17:48:19.470] Load(Model): Mk2Expansion/Spaces/OverlayMasks/LabMask [LOG 17:48:19.480] Load(Model): Mk2Expansion/Spaces/OverlayMasks/RavenMask [LOG 17:48:19.490] Load(Model): Mk2Expansion/Spaces/OverlayMasks/TunaMask [LOG 17:48:19.500] Load(Model): Mk2Expansion/Spaces/OverlayMasks/ViperMask [LOG 17:48:19.510] Load(Model): Mk2Expansion/Spaces/RavenPit/Internal [LOG 17:48:19.520] Load(Model): Mk2Expansion/Spaces/TunaPit/Internal [LOG 17:48:19.538] Load(Model): Mk2Expansion/Spaces/ViperPit/Internal [LOG 17:48:19.544] Load(Model): Squad/FX/IonPlume [LOG 17:48:19.561] Load(Model): Squad/FX/LES_Thruster [LOG 17:48:19.575] Load(Model): Squad/FX/SRB_Large [LOG 17:48:19.585] Load(Model): Squad/FX/SRB_LargeSparks [LOG 17:48:19.595] Load(Model): Squad/FX/afterburner_flame [LOG 17:48:19.605] Load(Model): Squad/FX/afterburner_shock [LOG 17:48:19.616] Load(Model): Squad/FX/diamondBlue [LOG 17:48:19.626] Load(Model): Squad/FX/exhaustFlames_blue [LOG 17:48:19.636] Load(Model): Squad/FX/hydroLOXFlame [LOG 17:48:19.645] Load(Model): Squad/FX/ks1_Exhaust [LOG 17:48:19.655] Load(Model): Squad/FX/ks25_Exhaust [LOG 17:48:19.668] Load(Model): Squad/FX/ksX_Exhaust [LOG 17:48:19.678] Load(Model): Squad/FX/shockExhaust_blue [LOG 17:48:19.688] Load(Model): Squad/FX/shockExhaust_blue_small [LOG 17:48:19.698] Load(Model): Squad/FX/shockExhaust_red_small [LOG 17:48:19.708] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield1 [LOG 17:48:19.718] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield2 [LOG 17:48:19.728] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield3 [LOG 17:48:19.739] Load(Model): Squad/Parts/Aero/InflatableHeatShield/HeatShield [LOG 17:48:19.758] Load(Model): Squad/Parts/Aero/aerodynamicNoseCone/model [LOG 17:48:19.763] Load(Model): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake [LOG 17:48:19.770] Load(Model): Squad/Parts/Aero/airbrake/Airbrake [LOG 17:48:19.780] Load(Model): Squad/Parts/Aero/airlinerWings/ControlSurface [LOG 17:48:19.790] Load(Model): Squad/Parts/Aero/airlinerWings/MainWing [LOG 17:48:19.801] Load(Model): Squad/Parts/Aero/airlinerWings/TailFin [LOG 17:48:19.811] Load(Model): Squad/Parts/Aero/airplaneFins/AdvCanard [LOG 17:48:19.821] Load(Model): Squad/Parts/Aero/airplaneFins/Canard [LOG 17:48:19.831] Load(Model): Squad/Parts/Aero/airplaneFins/Swept [LOG 17:48:19.841] Load(Model): Squad/Parts/Aero/airplaneFins/TailFin [LOG 17:48:19.851] Load(Model): Squad/Parts/Aero/basicFin/basicFin [LOG 17:48:19.861] Load(Model): Squad/Parts/Aero/circularIntake/CircularIntake [LOG 17:48:19.871] Load(Model): Squad/Parts/Aero/circularIntake/ConeIntake [LOG 17:48:19.881] Load(Model): Squad/Parts/Aero/cones/AvioCone [LOG 17:48:19.891] Load(Model): Squad/Parts/Aero/cones/ConeA [LOG 17:48:19.901] Load(Model): Squad/Parts/Aero/cones/ConeB [LOG 17:48:19.921] Load(Model): Squad/Parts/Aero/cones/NCS [LOG 17:48:19.931] Load(Model): Squad/Parts/Aero/cones/TailA [LOG 17:48:19.942] Load(Model): Squad/Parts/Aero/cones/TailB [LOG 17:48:19.952] Load(Model): Squad/Parts/Aero/cones/TinyCone [LOG 17:48:19.962] Load(Model): Squad/Parts/Aero/fairings/fairingSize1 [LOG 17:48:19.972] Load(Model): Squad/Parts/Aero/fairings/fairingSize2 [LOG 17:48:19.982] Load(Model): Squad/Parts/Aero/fairings/fairingSize3 [LOG 17:48:19.993] Load(Model): Squad/Parts/Aero/intakeRadialLong/IntakeRadial [LOG 17:48:20.003] Load(Model): Squad/Parts/Aero/miniIntake/SmallIntake [LOG 17:48:20.015] Load(Model): Squad/Parts/Aero/protectiveRocketNoseMk7/model [LOG 17:48:20.026] Load(Model): Squad/Parts/Aero/ramAirIntake/RampIntake [LOG 17:48:20.036] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleDeltaWing [LOG 17:48:20.046] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonA [LOG 17:48:20.057] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonB [LOG 17:48:20.067] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleRudder [LOG 17:48:20.078] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleStrake [LOG 17:48:20.089] Load(Model): Squad/Parts/Aero/wingletAV-R8/model [LOG 17:48:20.099] Load(Model): Squad/Parts/Aero/wingletAV-T1/model [LOG 17:48:20.112] Load(Model): Squad/Parts/Aero/wingletDeltaDeluxe/model [LOG 17:48:20.122] Load(Model): Squad/Parts/Aero/wings/connector1 [LOG 17:48:20.132] Load(Model): Squad/Parts/Aero/wings/connector2 [LOG 17:48:20.142] Load(Model): Squad/Parts/Aero/wings/connector3 [LOG 17:48:20.153] Load(Model): Squad/Parts/Aero/wings/connector4 [LOG 17:48:20.163] Load(Model): Squad/Parts/Aero/wings/connector5 [LOG 17:48:20.174] Load(Model): Squad/Parts/Aero/wings/delta [LOG 17:48:20.184] Load(Model): Squad/Parts/Aero/wings/delta_small [LOG 17:48:20.194] Load(Model): Squad/Parts/Aero/wings/elevon1 [LOG 17:48:20.205] Load(Model): Squad/Parts/Aero/wings/elevon2 [LOG 17:48:20.215] Load(Model): Squad/Parts/Aero/wings/elevon3 [LOG 17:48:20.226] Load(Model): Squad/Parts/Aero/wings/elevon4 [LOG 17:48:20.236] Load(Model): Squad/Parts/Aero/wings/elevon5 [LOG 17:48:20.246] Load(Model): Squad/Parts/Aero/wings/strake [LOG 17:48:20.256] Load(Model): Squad/Parts/Aero/wings/structural1 [LOG 17:48:20.266] Load(Model): Squad/Parts/Aero/wings/structural2 [LOG 17:48:20.276] Load(Model): Squad/Parts/Aero/wings/structural3 [LOG 17:48:20.286] Load(Model): Squad/Parts/Aero/wings/structural4 [LOG 17:48:20.297] Load(Model): Squad/Parts/Aero/wings/swept1 [LOG 17:48:20.309] Load(Model): Squad/Parts/Aero/wings/swept2 [LOG 17:48:20.318] Load(Model): Squad/Parts/Command/Mk1-2Pod/model [LOG 17:48:20.352] Load(Model): Squad/Parts/Command/advancedSasModuleLarge/model [LOG 17:48:20.356] Load(Model): Squad/Parts/Command/cupola/model [LOG 17:48:20.363] Load(Model): Squad/Parts/Command/externalCommandSeat/model [LOG 17:48:20.417] Load(Model): Squad/Parts/Command/hitchhikerStorageContainer/model [LOG 17:48:20.426] Load(Model): Squad/Parts/Command/inlineAdvancedStabilizer/model [LOG 17:48:20.436] Load(Model): Squad/Parts/Command/inlineReactionWheel/model [LOG 17:48:20.469] Load(Model): Squad/Parts/Command/mk1Cockpits/Cabin [LOG 17:48:20.474] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitInline [LOG 17:48:20.480] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitStandard [LOG 17:48:20.504] Load(Model): Squad/Parts/Command/mk1LanderCan/model [LOG 17:48:20.509] Load(Model): Squad/Parts/Command/mk1pod/model [LOG 17:48:20.517] Load(Model): Squad/Parts/Command/mk2CockpitInline/model [LOG 17:48:20.528] Load(Model): Squad/Parts/Command/mk2CockpitStandard/model [LOG 17:48:20.539] Load(Model): Squad/Parts/Command/mk2DroneCore/model [LOG 17:48:20.549] Load(Model): Squad/Parts/Command/mk2LanderCan/model [LOG 17:48:20.561] Load(Model): Squad/Parts/Command/mk3CockpitShuttle/model [LOG 17:48:20.570] Load(Model): Squad/Parts/Command/probeCoreCube/model [LOG 17:48:20.580] Load(Model): Squad/Parts/Command/probeCoreHex/model [LOG 17:48:20.592] Load(Model): Squad/Parts/Command/probeCoreOcto/model [LOG 17:48:20.602] Load(Model): Squad/Parts/Command/probeCoreOcto2/model [LOG 17:48:20.613] Load(Model): Squad/Parts/Command/probeRoverBody/model [LOG 17:48:20.626] Load(Model): Squad/Parts/Command/probeStackLarge/model [LOG 17:48:20.636] Load(Model): Squad/Parts/Command/probeStackSmall/model [LOG 17:48:20.648] Load(Model): Squad/Parts/Command/probeStackSphere/model [LOG 17:48:20.660] Load(Model): Squad/Parts/CompoundParts/fuelLine/model [LOG 17:48:20.671] Load(Model): Squad/Parts/CompoundParts/strutConnector/model [LOG 17:48:20.681] Load(Model): Squad/Parts/Electrical/1x6ShroudSolarPanels/model [LOG 17:48:20.692] Load(Model): Squad/Parts/Electrical/1x6SolarPanels/model [LOG 17:48:20.702] Load(Model): Squad/Parts/Electrical/3x2ShroudSolarPanels/model [LOG 17:48:20.712] Load(Model): Squad/Parts/Electrical/3x2SolarPanels/model [LOG 17:48:20.723] Load(Model): Squad/Parts/Electrical/RTG/model [LOG 17:48:20.733] Load(Model): Squad/Parts/Electrical/gigantorXlSolarArray/model [LOG 17:48:20.743] Load(Model): Squad/Parts/Electrical/radialFlatSolarPanel/model [LOG 17:48:20.753] Load(Model): Squad/Parts/Electrical/z-100Battery/model [LOG 17:48:20.780] Load(Model): Squad/Parts/Electrical/z-1kBattery/model [LOG 17:48:20.785] Load(Model): Squad/Parts/Electrical/z-200Battery/model [LOG 17:48:20.790] Load(Model): Squad/Parts/Electrical/z-400Battery/model [LOG 17:48:20.800] Load(Model): Squad/Parts/Electrical/z-4kBattery/model [LOG 17:48:20.810] Load(Model): Squad/Parts/Engine/MassiveSRB/MassiveSRB [LOG 17:48:20.820] Load(Model): Squad/Parts/Engine/OMSEngine/NewModel [LOG 17:48:20.830] Load(Model): Squad/Parts/Engine/Size2LFB/Size2LFB [LOG 17:48:20.841] Load(Model): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngine [LOG 17:48:20.852] Load(Model): Squad/Parts/Engine/Size3EngineCluster/Size3EngineCluster [LOG 17:48:20.864] Load(Model): Squad/Parts/Engine/ionEngine/model [LOG 17:48:20.872] Load(Model): Squad/Parts/Engine/jetEngines/turbineInside [LOG 17:48:20.882] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize1 [LOG 17:48:20.893] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize2 [LOG 17:48:20.903] Load(Model): Squad/Parts/Engine/jetEngines/turboJet [LOG 17:48:20.913] Load(Model): Squad/Parts/Engine/jetEngines/turboRamJet [LOG 17:48:20.934] Load(Model): Squad/Parts/Engine/liquidEngine24-77/model [LOG 17:48:20.944] Load(Model): Squad/Parts/Engine/liquidEngine48-7S/model [LOG 17:48:20.955] Load(Model): Squad/Parts/Engine/liquidEngineAerospike/AeroSpike [LOG 17:48:20.965] Load(Model): Squad/Parts/Engine/liquidEngineLV-1/model [LOG 17:48:20.975] Load(Model): Squad/Parts/Engine/liquidEngineLV-1R/model [LOG 17:48:20.985] Load(Model): Squad/Parts/Engine/liquidEngineLV-909/model [LOG 17:48:20.996] Load(Model): Squad/Parts/Engine/liquidEngineLV-N/model [LOG 17:48:21.006] Load(Model): Squad/Parts/Engine/liquidEngineLV-T30/model [LOG 17:48:21.017] Load(Model): Squad/Parts/Engine/liquidEngineLV-T45/model [LOG 17:48:21.027] Load(Model): Squad/Parts/Engine/liquidEngineMainsail/model [LOG 17:48:21.037] Load(Model): Squad/Parts/Engine/liquidEngineMk55/Thud [LOG 17:48:21.048] Load(Model): Squad/Parts/Engine/liquidEnginePoodle/model [LOG 17:48:21.058] Load(Model): Squad/Parts/Engine/liquidEngineSSME/SSME [LOG 17:48:21.068] Load(Model): Squad/Parts/Engine/liquidEngineSkipper/model [LOG 17:48:21.079] Load(Model): Squad/Parts/Engine/miniJet/SmallJet [LOG 17:48:21.089] Load(Model): Squad/Parts/Engine/rapierEngine/rapier [LOG 17:48:21.100] Load(Model): Squad/Parts/Engine/solidBoosterBACC/model [LOG 17:48:21.110] Load(Model): Squad/Parts/Engine/solidBoosterRT-10/model [LOG 17:48:21.120] Load(Model): Squad/Parts/Engine/solidBoosterRT-5/SRB_RT5 [LOG 17:48:21.131] Load(Model): Squad/Parts/Engine/solidBoosterSep/model [LOG 17:48:21.141] Load(Model): Squad/Parts/Engine/vernorEngine/NewModel [LOG 17:48:21.151] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR1/model [LOG 17:48:21.161] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR10/model [LOG 17:48:21.171] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR25/model [LOG 17:48:21.181] Load(Model): Squad/Parts/FuelTank/RCSTankRadial/model [LOG 17:48:21.191] Load(Model): Squad/Parts/FuelTank/RCStankRadialLong/model [LOG 17:48:21.202] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3LargeTank [LOG 17:48:21.212] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3MediumTank [LOG 17:48:21.222] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3SmallTank [LOG 17:48:21.233] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2 [LOG 17:48:21.243] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2 [LOG 17:48:21.253] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant [LOG 17:48:21.263] Load(Model): Squad/Parts/FuelTank/adapterTanks/ShuttleAdapter [LOG 17:48:21.273] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Mk2 [LOG 17:48:21.283] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1 [LOG 17:48:21.293] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant [LOG 17:48:21.303] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size3-Mk3 [LOG 17:48:21.313] Load(Model): Squad/Parts/FuelTank/fuelTankJumbo-64/model [LOG 17:48:21.324] Load(Model): Squad/Parts/FuelTank/fuelTankOscarB/model [LOG 17:48:21.334] Load(Model): Squad/Parts/FuelTank/fuelTankT100/model [LOG 17:48:21.344] Load(Model): Squad/Parts/FuelTank/fuelTankT200/model [LOG 17:48:21.354] Load(Model): Squad/Parts/FuelTank/fuelTankT400/model [LOG 17:48:21.365] Load(Model): Squad/Parts/FuelTank/fuelTankT800/model [LOG 17:48:21.375] Load(Model): Squad/Parts/FuelTank/fuelTankToroidal/model [LOG 17:48:21.385] Load(Model): Squad/Parts/FuelTank/fuelTankX200-16/model [LOG 17:48:21.395] Load(Model): Squad/Parts/FuelTank/fuelTankX200-32/model [LOG 17:48:21.406] Load(Model): Squad/Parts/FuelTank/fuelTankX200-8/model [LOG 17:48:21.416] Load(Model): Squad/Parts/FuelTank/miniFuselage/Fuselage [LOG 17:48:21.437] Load(Model): Squad/Parts/FuelTank/mk2Adapters/bicoupler [LOG 17:48:21.447] Load(Model): Squad/Parts/FuelTank/mk2Adapters/long [LOG 17:48:21.457] Load(Model): Squad/Parts/FuelTank/mk2Adapters/standard [LOG 17:48:21.467] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLFO [LOG 17:48:21.479] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLiquid [LOG 17:48:21.488] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLFO [LOG 17:48:21.498] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLiquid [LOG 17:48:21.508] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortMono [LOG 17:48:21.518] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/CREW [LOG 17:48:21.528] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_100 [LOG 17:48:21.538] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_25 [LOG 17:48:21.548] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_50 [LOG 17:48:21.559] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_100 [LOG 17:48:21.569] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_25 [LOG 17:48:21.579] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_50 [LOG 17:48:21.589] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/MONO [LOG 17:48:21.599] Load(Model): Squad/Parts/FuelTank/xenonTank/model [LOG 17:48:21.609] Load(Model): Squad/Parts/FuelTank/xenonTankLarge/model [LOG 17:48:21.619] Load(Model): Squad/Parts/FuelTank/xenonTankRadial/model [LOG 17:48:21.629] Load(Model): Squad/Parts/Misc/AsteroidDay/HECS2 [LOG 17:48:21.639] Load(Model): Squad/Parts/Misc/AsteroidDay/HighGainAntenna [LOG 17:48:21.650] Load(Model): Squad/Parts/Misc/AsteroidDay/LgRadialSolar [LOG 17:48:21.661] Load(Model): Squad/Parts/Misc/PotatoRoid/PotatoRoid [ERR 17:48:21.672] ConvexHullBuilder: convex hull has more than 255 polygons! [ERR 17:48:21.672] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe) [ERR 17:48:21.684] ConvexHullBuilder: convex hull has more than 255 polygons! [ERR 17:48:21.684] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe) [LOG 17:48:21.684] Load(Model): Squad/Parts/Resources/FuelCell/FuelCell [LOG 17:48:21.687] Load(Model): Squad/Parts/Resources/FuelCell/FuelCellArray [LOG 17:48:21.697] Load(Model): Squad/Parts/Resources/ISRU/ISRU [LOG 17:48:21.709] Load(Model): Squad/Parts/Resources/LargeTank/LargeTank [LOG 17:48:21.714] Load(Model): Squad/Parts/Resources/MiniDrill/MiniDrill [LOG 17:48:21.723] Load(Model): Squad/Parts/Resources/MiniISRU/MiniISRU [LOG 17:48:21.734] Load(Model): Squad/Parts/Resources/OrbitalScanner/OrbitalScanner [LOG 17:48:21.744] Load(Model): Squad/Parts/Resources/RadialDrill/TriBitDrill [LOG 17:48:21.755] Load(Model): Squad/Parts/Resources/RadialTank/RadialOreTank [LOG 17:48:21.765] Load(Model): Squad/Parts/Resources/SmallTank/SmallTank [LOG 17:48:21.775] Load(Model): Squad/Parts/Resources/SurfaceScanner/SurfaceScanner [LOG 17:48:21.785] Load(Model): Squad/Parts/Resources/SurveyScanner/SurveyScanner [LOG 17:48:21.795] Load(Model): Squad/Parts/Science/AtmosphereSensor/model [LOG 17:48:21.806] Load(Model): Squad/Parts/Science/GooExperiment/GooExperiment [LOG 17:48:21.816] Load(Model): Squad/Parts/Science/LargeCrewedLab/large_crewed_lab [LOG 17:48:21.840] Load(Model): Squad/Parts/Science/MaterialBay/science_module_small [LOG 17:48:21.848] Load(Model): Squad/Parts/Science/sensorAccelerometer/model [LOG 17:48:21.851] Load(Model): Squad/Parts/Science/sensorBarometer/model [LOG 17:48:21.858] Load(Model): Squad/Parts/Science/sensorGravimeter/model [LOG 17:48:21.868] Load(Model): Squad/Parts/Science/sensorThermometer/model [LOG 17:48:21.878] Load(Model): Squad/Parts/Structural/Size3Decoupler/size3Decoupler [LOG 17:48:21.889] Load(Model): Squad/Parts/Structural/Size3To2Adapter/Size3Adapter [LOG 17:48:21.900] Load(Model): Squad/Parts/Structural/adapterLargeSmallBi/model [LOG 17:48:21.910] Load(Model): Squad/Parts/Structural/adapterLargeSmallQuad/model [LOG 17:48:21.920] Load(Model): Squad/Parts/Structural/adapterLargeSmallTri/model [LOG 17:48:21.940] Load(Model): Squad/Parts/Structural/adapterSmallMiniShort/model [LOG 17:48:21.950] Load(Model): Squad/Parts/Structural/adapterSmallMiniTall/model [LOG 17:48:21.961] Load(Model): Squad/Parts/Structural/mk1Parts/Fuselage [LOG 17:48:21.971] Load(Model): Squad/Parts/Structural/mk1Parts/IntakeFuselage [LOG 17:48:21.981] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle1 [LOG 17:48:21.992] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle2 [LOG 17:48:22.002] Load(Model): Squad/Parts/Structural/mk1Parts/Structural [LOG 17:48:22.012] Load(Model): Squad/Parts/Structural/mk1Parts/StructuralHollow [LOG 17:48:22.022] Load(Model): Squad/Parts/Structural/stationHub/model [LOG 17:48:22.032] Load(Model): Squad/Parts/Structural/structuralIBeam200/model [LOG 17:48:22.043] Load(Model): Squad/Parts/Structural/structuralIBeam200Pocket/model [LOG 17:48:22.053] Load(Model): Squad/Parts/Structural/structuralIBeam650/model [LOG 17:48:22.063] Load(Model): Squad/Parts/Structural/structuralMicronode/model [LOG 17:48:22.072] Load(Model): Squad/Parts/Structural/structuralPanel1x1/model [LOG 17:48:22.083] Load(Model): Squad/Parts/Structural/structuralPanel2x2/model [LOG 17:48:22.093] Load(Model): Squad/Parts/Structural/structuralPylons/PylonBig [LOG 17:48:22.103] Load(Model): Squad/Parts/Structural/structuralPylons/PylonSmall [LOG 17:48:22.113] Load(Model): Squad/Parts/Structural/strutCubicOcto/model [LOG 17:48:22.123] Load(Model): Squad/Parts/Structural/strutOcto/model [LOG 17:48:22.133] Load(Model): Squad/Parts/Structural/trussGirderAdapter/model [LOG 17:48:22.143] Load(Model): Squad/Parts/Structural/trussGirderL/model [LOG 17:48:22.153] Load(Model): Squad/Parts/Structural/trussGirderXL/model [LOG 17:48:22.164] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge [LOG 17:48:22.199] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadMed [LOG 17:48:22.216] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall [LOG 17:48:22.232] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelEdge [LOG 17:48:22.235] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelLg [LOG 17:48:22.241] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelSm [LOG 17:48:22.251] Load(Model): Squad/Parts/Utility/GrapplingDevice/GrapplingArm [LOG 17:48:22.297] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_125 [LOG 17:48:22.315] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_250 [LOG 17:48:22.331] Load(Model): Squad/Parts/Utility/commDish88-88/model [LOG 17:48:22.369] Load(Model): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna [LOG 17:48:22.379] Load(Model): Squad/Parts/Utility/commsDish16/model [LOG 17:48:22.383] Load(Model): Squad/Parts/Utility/decouplerRadialHDM/model [LOG 17:48:22.387] Load(Model): Squad/Parts/Utility/decouplerRadialTT-38K/model [LOG 17:48:22.398] Load(Model): Squad/Parts/Utility/decouplerRadialTT-70/model [LOG 17:48:22.408] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-18D/model [LOG 17:48:22.418] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-2C/model [LOG 17:48:22.430] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-XL/model [LOG 17:48:22.450] Load(Model): Squad/Parts/Utility/decouplerStack2m/model [LOG 17:48:22.462] Load(Model): Squad/Parts/Utility/decouplerStackTR-18A/model [LOG 17:48:22.471] Load(Model): Squad/Parts/Utility/decouplerStackTR-2V/model [LOG 17:48:22.481] Load(Model): Squad/Parts/Utility/dockingPort/model [LOG 17:48:22.492] Load(Model): Squad/Parts/Utility/dockingPortInline/model [LOG 17:48:22.502] Load(Model): Squad/Parts/Utility/dockingPortJr/model [LOG 17:48:22.512] Load(Model): Squad/Parts/Utility/dockingPortShielded/model [LOG 17:48:22.524] Load(Model): Squad/Parts/Utility/dockingPortSr/model [LOG 17:48:22.533] Load(Model): Squad/Parts/Utility/ladderRadial/model [LOG 17:48:22.544] Load(Model): Squad/Parts/Utility/ladderTelescopic/model [LOG 17:48:22.555] Load(Model): Squad/Parts/Utility/ladderTelescopicBay/model [LOG 17:48:22.572] Load(Model): Squad/Parts/Utility/landingLegLT-1/model [LOG 17:48:22.579] Load(Model): Squad/Parts/Utility/landingLegLT-2/model [LOG 17:48:22.585] Load(Model): Squad/Parts/Utility/landingLegLT-5/model [ERR 17:48:22.590] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.591] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:22.596] Load(Model): Squad/Parts/Utility/largeAdapter/model [LOG 17:48:22.606] Load(Model): Squad/Parts/Utility/largeAdapterShort/model [LOG 17:48:22.617] Load(Model): Squad/Parts/Utility/launchClamp1/model [LOG 17:48:22.627] Load(Model): Squad/Parts/Utility/launchEscapeSystem/LaunchEscapeSystem [LOG 17:48:22.638] Load(Model): Squad/Parts/Utility/linearRCS/model [LOG 17:48:22.647] Load(Model): Squad/Parts/Utility/mk2CargoBay/BayLarge [LOG 17:48:22.658] Load(Model): Squad/Parts/Utility/mk2CargoBay/BaySmall [LOG 17:48:22.671] Load(Model): Squad/Parts/Utility/mk2CrewCabin/model [LOG 17:48:22.680] Load(Model): Squad/Parts/Utility/mk2DockingPort/model [LOG 17:48:22.691] Load(Model): Squad/Parts/Utility/mk3CargoBay/long [LOG 17:48:22.702] Load(Model): Squad/Parts/Utility/mk3CargoBay/medium [LOG 17:48:22.712] Load(Model): Squad/Parts/Utility/mk3CargoBay/ramp [LOG 17:48:22.732] Load(Model): Squad/Parts/Utility/mk3CargoBay/short [LOG 17:48:22.739] Load(Model): Squad/Parts/Utility/parachuteMk1/model [LOG 17:48:22.791] Load(Model): Squad/Parts/Utility/parachuteMk12-R/model [LOG 17:48:22.796] Load(Model): Squad/Parts/Utility/parachuteMk16-XL/model [LOG 17:48:22.803] Load(Model): Squad/Parts/Utility/parachuteMk2-R/model [LOG 17:48:22.810] Load(Model): Squad/Parts/Utility/parachuteMk25/model [LOG 17:48:22.822] Load(Model): Squad/Parts/Utility/radialAttachmentPoint/model [LOG 17:48:22.831] Load(Model): Squad/Parts/Utility/rcsBlockRV-105/model [LOG 17:48:22.842] Load(Model): Squad/Parts/Utility/spotLightMk1/model [LOG 17:48:22.852] Load(Model): Squad/Parts/Utility/spotLightMk2/model [LOG 17:48:22.862] Load(Model): Squad/Parts/Utility/stackBiCoupler/model [LOG 17:48:22.873] Load(Model): Squad/Parts/Utility/stackQuadCoupler/model [LOG 17:48:22.883] Load(Model): Squad/Parts/Utility/stackTriCoupler/model [LOG 17:48:22.893] Load(Model): Squad/Parts/Wheel/LandingGear/GearExtraLarge [ERR 17:48:22.906] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.907] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:22.919] Load(Model): Squad/Parts/Wheel/LandingGear/GearFixed [ERR 17:48:22.921] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.921] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:22.923] Load(Model): Squad/Parts/Wheel/LandingGear/GearFree [ERR 17:48:22.924] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.924] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:22.928] Load(Model): Squad/Parts/Wheel/LandingGear/GearLarge [ERR 17:48:22.929] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.929] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:22.939] Load(Model): Squad/Parts/Wheel/LandingGear/GearMedium [ERR 17:48:22.945] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.945] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:22.958] Load(Model): Squad/Parts/Wheel/LandingGear/GearSmall [ERR 17:48:22.959] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.959] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:22.969] Load(Model): Squad/Parts/Wheel/roverWheelM1/model [ERR 17:48:22.975] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.975] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:22.979] Load(Model): Squad/Parts/Wheel/roverWheelS2/model [ERR 17:48:22.980] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.980] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:22.990] Load(Model): Squad/Parts/Wheel/roverWheelTR-2L/model [ERR 17:48:22.996] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:22.996] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:23.001] Load(Model): Squad/Parts/Wheel/roverWheelXL3/model [ERR 17:48:23.020] WheelCollider requires an attached Rigidbody to function. [ERR 17:48:23.020] WheelCollider requires an attached Rigidbody to function. [LOG 17:48:23.023] Load(Model): Squad/Props/AltimeterThreeHands/model [LOG 17:48:23.027] Load(Model): Squad/Props/AtmosphereDepth/model [LOG 17:48:23.032] Load(Model): Squad/Props/AxisIndicator/model [LOG 17:48:23.042] Load(Model): Squad/Props/ButtonSquare/model [LOG 17:48:23.052] Load(Model): Squad/Props/Compass/model [LOG 17:48:23.062] Load(Model): Squad/Props/IVANavBall/model [LOG 17:48:23.080] Load(Model): Squad/Props/IndicatorPanel/model [LOG 17:48:23.086] Load(Model): Squad/Props/Monitor/MonitorDockingMode [LOG 17:48:23.094] Load(Model): Squad/Props/NavBall/model [LOG 17:48:23.105] Load(Model): Squad/Props/PropsGeneric/Button_DockingMode [LOG 17:48:23.115] Load(Model): Squad/Props/PropsGeneric/CargoBagA [LOG 17:48:23.145] Load(Model): Squad/Props/PropsGeneric/CargoBagB [LOG 17:48:23.148] Load(Model): Squad/Props/PropsGeneric/CargoBagC [LOG 17:48:23.153] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane [LOG 17:48:23.163] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Curve90 [LOG 17:48:23.173] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Frame [LOG 17:48:23.183] Load(Model): Squad/Props/PropsGeneric/Seat_Passenger [LOG 17:48:23.194] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot [LOG 17:48:23.204] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot_Helmet [LOG 17:48:23.214] Load(Model): Squad/Props/PropsGeneric/SideStick [LOG 17:48:23.225] Load(Model): Squad/Props/VSI/model [LOG 17:48:23.235] Load(Model): Squad/Props/circularButton/model [LOG 17:48:23.246] Load(Model): Squad/Props/directionalKnob/model [LOG 17:48:23.256] Load(Model): Squad/Props/directionalKnob2/model [LOG 17:48:23.266] Load(Model): Squad/Props/ledPanelSpeed/model [LOG 17:48:23.277] Load(Model): Squad/Props/pullSwitch/model [LOG 17:48:23.287] Load(Model): Squad/Props/radarAltitude/model [LOG 17:48:23.297] Load(Model): Squad/Props/squareButton/model [LOG 17:48:23.307] Load(Model): Squad/Props/standingSwitch/model [LOG 17:48:23.317] Load(Model): Squad/Props/switch/model [LOG 17:48:23.328] Load(Model): Squad/Props/switchGuard/model [LOG 17:48:23.338] Load(Model): Squad/Props/switchWithGuards/model [LOG 17:48:23.348] Load(Model): Squad/Props/throttle/model [LOG 17:48:23.358] Load(Model): Squad/Spaces/GenericSpace1/model [LOG 17:48:23.379] Load(Model): Squad/Spaces/GenericSpace3/model [LOG 17:48:23.406] Load(Model): Squad/Spaces/LargeCrewedLabInternals/Large_Crewed_lab_Int [LOG 17:48:23.437] Load(Model): Squad/Spaces/MK3CockpitInternal/MK3_Cockpit_Int [LOG 17:48:23.454] Load(Model): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int [LOG 17:48:23.520] Load(Model): Squad/Spaces/Mk2CrewCabinInternal/MK2_CrewCab_Int [LOG 17:48:23.545] Load(Model): Squad/Spaces/OverlayMasks/CupolaMask [LOG 17:48:23.548] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerBorder [LOG 17:48:23.567] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerMask [LOG 17:48:23.571] Load(Model): Squad/Spaces/OverlayMasks/LargeLabBorder [LOG 17:48:23.582] Load(Model): Squad/Spaces/OverlayMasks/LargeLabMask [LOG 17:48:23.592] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinBorder [LOG 17:48:23.602] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinMask [LOG 17:48:23.612] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask [LOG 17:48:23.623] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask2 [LOG 17:48:23.634] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder2 [LOG 17:48:23.644] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder3 [LOG 17:48:23.654] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask [LOG 17:48:23.668] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask2 [LOG 17:48:23.679] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask3 [LOG 17:48:23.688] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinBorder [LOG 17:48:23.698] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinMask [LOG 17:48:23.709] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineBorder [LOG 17:48:23.719] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineMask [LOG 17:48:23.729] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardBorder [LOG 17:48:23.739] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardMask [LOG 17:48:23.749] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinBorder [LOG 17:48:23.760] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask [LOG 17:48:23.770] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask2 [LOG 17:48:23.780] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleBorder [LOG 17:48:23.790] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleMask [LOG 17:48:23.800] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderBorder [LOG 17:48:23.811] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderMask [LOG 17:48:23.821] Load(Model): Squad/Spaces/OverlayMasks/Size1PodBorder [LOG 17:48:23.831] Load(Model): Squad/Spaces/OverlayMasks/Size1PodMask [LOG 17:48:23.841] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderBorder [LOG 17:48:23.852] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderMask [LOG 17:48:23.862] Load(Model): Squad/Spaces/OverlayMasks/Size2PodBorder [LOG 17:48:23.872] Load(Model): Squad/Spaces/OverlayMasks/Size2PodMask [LOG 17:48:23.882] Load(Model): Squad/Spaces/Placeholder/PlaceholderIVA [LOG 17:48:23.893] Load(Model): Squad/Spaces/PodCockpit/model [LOG 17:48:23.929] Load(Model): Squad/Spaces/crewCabinInternals/model [LOG 17:48:23.955] Load(Model): Squad/Spaces/cupolaInternal/model [LOG 17:48:23.970] Load(Model): Squad/Spaces/landerCabinInternals/model [LOG 17:48:23.988] Load(Model): Squad/Spaces/landerCabinSmallInternal/model [LOG 17:48:23.998] Load(Model): Squad/Spaces/mk1CabinInternal/mk1cabin [LOG 17:48:24.033] Load(Model): Squad/Spaces/mk1CockpitInternal/Mk1StandardIVA [LOG 17:48:24.042] Load(Model): Squad/Spaces/mk1InlineInternal/Mk1InlineIVA [LOG 17:48:24.053] Load(Model): Squad/Spaces/mk1PodCockpit/model [LOG 17:48:24.071] Load(Model): Squad/Spaces/mk2CockpitStandardInternal/model [LOG 17:48:24.087] Load(Model): Squad/Spaces/mk2InlineInternal/mk2InlineIVA [LOG 17:48:24.117] Loading Asset Bundle Definitions [LOG 17:48:24.122] AssetLoader: Loading bundle definitions [LOG 17:48:24.591] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/squadcore.ksp' [LOG 17:48:24.690] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia.ksp' [LOG 17:48:24.778] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraft.ksp' [LOG 17:48:24.858] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasics.ksp' [LOG 17:48:24.931] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicsbalance.ksp' [LOG 17:48:25.011] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicsbalance2.ksp' [LOG 17:48:25.093] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicscol.ksp' [LOG 17:48:25.173] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicscontrol.ksp' [LOG 17:48:25.253] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicscontrolsurfaces.ksp' [LOG 17:48:25.333] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicsdrag.ksp' [LOG 17:48:25.413] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicsengines.ksp' [LOG 17:48:25.483] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicsforces.ksp' [LOG 17:48:25.563] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicsintakes.ksp' [LOG 17:48:25.633] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicslandinggear.ksp' [LOG 17:48:25.706] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_aircraftbasicslift.ksp' [LOG 17:48:25.777] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_career.ksp' [LOG 17:48:25.857] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerbasicscontracts.ksp' [LOG 17:48:25.927] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerbasicscrew.ksp' [LOG 17:48:25.999] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerbasicscurrencies.ksp' [LOG 17:48:26.068] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerbasicsexperience.ksp' [LOG 17:48:26.148] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerbasicsfacilities.ksp' [LOG 17:48:26.218] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerbasicsstrategies.ksp' [LOG 17:48:26.288] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerbasicstechnology.ksp' [LOG 17:48:26.368] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerui-ac.ksp' [LOG 17:48:26.439] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerui-admin.ksp' [LOG 17:48:26.519] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerui-ksc.ksp' [LOG 17:48:26.588] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerui-mc.ksp' [LOG 17:48:26.659] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerui-sciencearchives.ksp' [LOG 17:48:26.731] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerui-techtree.ksp' [LOG 17:48:26.811] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerui-ts.ksp' [LOG 17:48:26.891] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_careerui.ksp' [LOG 17:48:26.961] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-actiongroups.ksp' [LOG 17:48:27.063] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-applauncher.ksp' [LOG 17:48:27.164] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-crew.ksp' [LOG 17:48:27.244] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-engineersreport.ksp' [LOG 17:48:27.325] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-gizmos.ksp' [LOG 17:48:27.415] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-infos.ksp' [LOG 17:48:27.487] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-partdetails.ksp' [LOG 17:48:27.557] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-parts.ksp' [LOG 17:48:27.627] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-symmetry.ksp' [LOG 17:48:27.699] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui-vesseldetails.ksp' [LOG 17:48:27.780] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_constructionui.ksp' [LOG 17:48:27.850] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-dockingmode.ksp' [LOG 17:48:27.920] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-editor.ksp' [LOG 17:48:27.999] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-editorgizmos.ksp' [LOG 17:48:28.079] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-eva.ksp' [LOG 17:48:28.149] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-flight.ksp' [LOG 17:48:28.219] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-flightactivities.ksp' [LOG 17:48:28.290] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-flightdirections.ksp' [LOG 17:48:28.360] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-general.ksp' [LOG 17:48:28.430] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-mapandtime.ksp' [LOG 17:48:28.501] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-mouseconstruction.ksp' [LOG 17:48:28.592] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-mouseflight.ksp' [LOG 17:48:28.674] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls-rcs.ksp' [LOG 17:48:28.754] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_controls.ksp' [LOG 17:48:28.834] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_eastereggs.ksp' [LOG 17:48:28.905] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-ac.ksp' [LOG 17:48:28.985] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-admin.ksp' [LOG 17:48:29.055] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-context.ksp' [LOG 17:48:29.135] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-ksc.ksp' [LOG 17:48:29.216] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-launchpad.ksp' [LOG 17:48:29.296] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-mc.ksp' [LOG 17:48:29.375] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-randd.ksp' [LOG 17:48:29.456] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-runway.ksp' [LOG 17:48:29.536] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-sph.ksp' [LOG 17:48:29.607] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-ts.ksp' [LOG 17:48:29.678] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_facilities-vab.ksp' [LOG 17:48:29.758] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_flightui-altimeter.ksp' [LOG 17:48:29.839] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_flightui-applauncher.ksp' [LOG 17:48:29.909] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_flightui-evaactivities.ksp' [LOG 17:48:29.979] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_flightui-modecontrol.ksp' [LOG 17:48:30.084] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_flightui-navball.ksp' [LOG 17:48:30.176] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_flightui-portraits.ksp' [LOG 17:48:30.271] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_flightui-staging.ksp' [LOG 17:48:30.350] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_flightui-timeandaction.ksp' [LOG 17:48:30.420] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_flightui.ksp' [LOG 17:48:30.491] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_heat.ksp' [LOG 17:48:30.572] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_heatactiveradiators.ksp' [LOG 17:48:30.642] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_heatcore.ksp' [LOG 17:48:30.715] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_heatengines.ksp' [LOG 17:48:30.796] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_heatflow.ksp' [LOG 17:48:30.867] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_heatpart.ksp' [LOG 17:48:30.939] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_heatpassiveradiators.ksp' [LOG 17:48:31.024] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_heatshields.ksp' [LOG 17:48:31.098] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_locations.ksp' [LOG 17:48:31.172] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_manual.ksp' [LOG 17:48:31.247] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_mapui-mannodes.ksp' [LOG 17:48:31.321] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_mapui-orbitnodes.ksp' [LOG 17:48:31.393] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_mapui-orbitnodes2.ksp' [LOG 17:48:31.466] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_mapui.ksp' [LOG 17:48:31.540] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalbasics-atmosphere.ksp' [LOG 17:48:31.613] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalbasics-gettingbackdown.ksp' [LOG 17:48:31.688] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalbasics-gettingupthere.ksp' [LOG 17:48:31.763] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalbasics-gravityturn.ksp' [LOG 17:48:31.836] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalbasics-orbits.ksp' [LOG 17:48:31.908] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalbasics-stayingupthere.ksp' [LOG 17:48:31.980] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalbasics.ksp' [LOG 17:48:32.060] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitaldefinitions-appe.ksp' [LOG 17:48:32.136] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitaldefinitions-dirandinc.ksp' [LOG 17:48:32.220] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitaldefinitions-directions.ksp' [LOG 17:48:32.302] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitaldefinitions-eccentricity.ksp' [LOG 17:48:32.383] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitaldefinitions.ksp' [LOG 17:48:32.464] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalmaneuvers-adjustinginclination.ksp' [LOG 17:48:32.536] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalmaneuvers-deltav.ksp' [LOG 17:48:32.612] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalmaneuvers-efficiency.ksp' [LOG 17:48:32.688] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalmaneuvers-hohmanntransfer.ksp' [LOG 17:48:32.771] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalmaneuvers-hohmanntransfer2.ksp' [LOG 17:48:32.843] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalmaneuvers-orbittypes.ksp' [LOG 17:48:32.924] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalmaneuvers-radandantirad.ksp' [LOG 17:48:32.996] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalmaneuvers-shapingup.ksp' [LOG 17:48:33.069] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_orbitalmaneuvers.ksp' [LOG 17:48:33.141] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_planets-dres.ksp' [LOG 17:48:33.212] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_planets-duna.ksp' [LOG 17:48:33.285] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_planets-eeloo.ksp' [LOG 17:48:33.367] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_planets-eve.ksp' [LOG 17:48:33.442] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_planets-jool.ksp' [LOG 17:48:33.523] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_planets-kerbin.ksp' [LOG 17:48:33.594] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_planets-moho.ksp' [LOG 17:48:33.669] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_planets-sun.ksp' [LOG 17:48:33.751] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_planets-system.ksp' [LOG 17:48:33.834] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_resources-asteroidmining.ksp' [LOG 17:48:33.906] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_resources-conversionmanagement.ksp' [LOG 17:48:33.976] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_resources-drilling.ksp' [LOG 17:48:34.050] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_resources-findingit.ksp' [LOG 17:48:34.133] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_resources-findingit2.ksp' [LOG 17:48:34.213] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_resources-storageandconversion.ksp' [LOG 17:48:34.286] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_resources.ksp' [LOG 17:48:34.366] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketry.ksp' [LOG 17:48:34.438] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketryadvanced-fairings.ksp' [LOG 17:48:34.518] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketryadvanced-girders.ksp' [LOG 17:48:34.602] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketryadvanced.ksp' [LOG 17:48:34.679] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasics.ksp' [LOG 17:48:34.761] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicsaero.ksp' [LOG 17:48:34.833] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicscentered.ksp' [LOG 17:48:34.906] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicschutes.ksp' [LOG 17:48:34.979] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicscontrol.ksp' [LOG 17:48:35.054] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicsecrecharging.ksp' [LOG 17:48:35.126] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicsengines.ksp' [LOG 17:48:35.197] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicsforces.ksp' [LOG 17:48:35.279] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicshatchesandladders.ksp' [LOG 17:48:35.360] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicsresources.ksp' [LOG 17:48:35.434] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicsservicecontainers.ksp' [LOG 17:48:35.511] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicsstability.ksp' [LOG 17:48:35.584] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicsstabilityassist.ksp' [LOG 17:48:35.655] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicsstaging.ksp' [LOG 17:48:35.730] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_rocketrybasicssymmetry.ksp' [LOG 17:48:35.811] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_science.ksp' [LOG 17:48:35.882] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_sciencedata.ksp' [LOG 17:48:35.962] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_scienceexperiments.ksp' [LOG 17:48:36.032] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_sciencelab.ksp' [LOG 17:48:36.310] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_sciencetransmitted.ksp' [LOG 17:48:36.391] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Squad/KSPedia/kspedia_spacetravel.ksp' [LOG 17:48:36.730] AssetLoader: Loaded bundle '/Applications/KSP_osx/GameData/Mk2Expansion/KSPedia/mk2expansion.ksp' [LOG 17:48:36.745] AssetLoader: Finished loading. 153 bundle definitions loaded. [LOG 17:48:36.746] Config(@PART[PotatoRoid]) CommunityResourcePack/Asteroid/@PART[PotatoRoid] [LOG 17:48:36.746] Config(@PART[SurfaceScanner]) CommunityResourcePack/AsteroidScannerSetup/@PART[SurfaceScanner] [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Hydrates [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Gypsum [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/IntakeLqd [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Lead [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/CarbonDioxide [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Chemicals [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Dirt [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/ExoticMinerals [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Food [LOG 17:48:36.746] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Supplies [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Fertilizer [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Mulch [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Machinery [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/SpecializedParts [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Recyclables [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Hydrogen [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Karbonite [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Karborundum [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdCO2 [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdCO [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/MaterialKits [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Metals [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Minerals [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/MetallicOre [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Organics [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Oxygen [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Polymers [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/RareMetals [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Rock [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/RocketParts [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/SpareParts [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Substrate [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Uraninite [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Waste [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/WasteWater [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Water [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/ArgonGas [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Boron [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/DepletedUranium [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/EnrichedUranium [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdHydrogen [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/StoredCharge [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Actinides [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Aluminium [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Alumina [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Antimatter [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Carbon [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/ChargedParticles [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/DepletedFuel [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/ExoticMatter [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Fluorine [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/IntakeAtm [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/KryptonGas [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/NeonGas [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Lithium [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Lithium6 [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdAmmonia [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdDeuterium [LOG 17:48:36.747] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Helium3 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdHe3 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdHelium [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdTritium [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdNitrogen [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Megajoules [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Monazite [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Plutonium-238 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/UF4 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/ThF4 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/ThermalPower [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/UraniumNitride [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/VacuumPlasma [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/WasteHeat [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Aerozine50 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/AK20 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/AK27 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Aniline [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/AvGas [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/CaveaB [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/ClF3 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/ClF5 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Diborane [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Ethane [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Ethanol [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Ethanol75 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Ethanol90 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Ethylene [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/FLOX30 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/FLOX70 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/FLOX88 [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Furfuryl [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Helium [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/HNIW [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/HTP [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/HTPB [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Hydrazine [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Hydyne [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/IRFNA-III [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/IRFNA-IV [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/IWFNA [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Kerosene [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LeadBallast [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdFluorine [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdMethane [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/LqdOxygen [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Methane [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Methanol [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/MMH [LOG 17:48:36.748] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/MON1 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/MON3 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/MON10 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/MON15 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/MON20 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/MON25 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/NGNC [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/N2F4 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Nitrogen [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/NitrousOxide [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/NTO [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/OF2 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/PBAN [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Pentaborane [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/PSPC [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Syntin [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/TEATEB [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Tonka250 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Tonka500 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/UDMH [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/UH25 [LOG 17:48:36.749] Config(RESOURCE_DEFINITION) CommunityResourcePack/CommonResources/Glykerol [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Alumina/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Alumina/GLOBAL_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Alumina/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Alumina/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Alumina/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Alumina/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Alumina/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/ArgonGas/GLOBAL_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/CarbonDioxide/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/CarbonDioxide/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/CarbonDioxide/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/CarbonDioxide/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Dirt/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Dirt/GLOBAL_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/ExoticMinerals/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/ExoticMinerals/GLOBAL_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Gypsum/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Gypsum/GLOBAL_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Gypsum/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Hydrates/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Hydrates/GLOBAL_RESOURCE [LOG 17:48:36.749] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Hydrates/PLANETARY_RESOURCE [LOG 17:48:36.749] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/IntakeLqd/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karbonite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karborundum/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karborundum/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karborundum/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Karborundum/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/MetallicOre/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/MetallicOre/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/MetallicOre/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Minerals/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Minerals/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Minerals/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Oxygen/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Oxygen/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/RareMetals/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/RareMetals/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Substrate/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Substrate/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Substrate/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Uraninite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Uraninite/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Uraninite/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/GLOBAL_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/PLANETARY_RESOURCE [LOG 17:48:36.750] Config(PLANETARY_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/PLANETARY_RESOURCE [LOG 17:48:36.751] Config(BIOME_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/BIOME_RESOURCE [LOG 17:48:36.751] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/Water/GLOBAL_RESOURCE [LOG 17:48:36.751] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/XenonGas/GLOBAL_RESOURCE [LOG 17:48:36.751] Config(GLOBAL_RESOURCE) CommunityResourcePack/ResourceConfigs/XenonGas/GLOBAL_RESOURCE [LOG 17:48:36.751] Config(PART) InterstellarFuelSwitch/Parts/InterstellarGasTank/InterstellarGasTank-PB-Stack/InterstellarGasTank_PB-Stack [LOG 17:48:36.751] Config(PART) InterstellarFuelSwitch/Parts/InterstellarGasTank/InterstellarGasTank-PB-X50R/InterstellarGasTank-PB-X50R [LOG 17:48:36.751] Config(@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:NEEDS[InterstellarFuelSwitch&!CryoTanks&!ModularFuelTanks&!RealFuels]:FOR[InterstellarFuelSwitch]) InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:NEEDS[InterstellarFuelSwitch&!CryoTanks&!ModularFuelTanks&!RealFuels]:FOR[InterstellarFuelSwitch] [LOG 17:48:36.751] Config(@PART[*]:FINAL) InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL [LOG 17:48:36.751] Config(@PART[xenonTank]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch]) InterstellarFuelSwitch/Patches/XenonTank/@PART[xenonTank]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] [LOG 17:48:36.751] Config(AGENT) Mk2Expansion/Agencies/Agents/Insanity Aerospace [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/AdapterIntake/part/M2X_InlineIntake [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/AeroIntake/part/M2X_AeroIntake [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/Chines/End/M2X_ChineCap [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/Chines/Long/M2X_ChineLong [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/Chines/RLong/M2X_RootChineLong [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/Chines/RShort/M2X_RootChineShort [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/Chines/Radapter/M2X_RootChineAdapter [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/Chines/Short/M2X_ChineShort [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/CircularIntake/part/M2X_circularintake [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/EngineShroud/part/M2X_EngineShroud [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/MantaIntake/part/M2X_MantaIntake [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/Precooler/part/M2X_Precooler [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/ShockCone/part/M2X_Shockcone [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/mk1Chines/Long/Mk1ChineLong [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/mk1Chines/Short/Mk1ChineShort [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/mk1Chines/cap/Mk1Chinecap [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Aero/tailboom/part/M2X_Tailboom [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Command/Angler/part/M2X_DropshipCockpit [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Command/Blade/part/M2X_BladeCockpit [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Command/Fishhead/part/M2X_TunaCockpit [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Command/Raven/part/M2X_RavenCockpit [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Command/Viper/part/M2X_ViperCockpit [LOG 17:48:36.751] Config(PART) Mk2Expansion/Parts/Engines/AASRB/Radial/M2X_RATO [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/AASRB/RadialL/M2X_RadialAASRB [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/Aerospike/part/M2X_LinearAerospike [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/AugmentedRocket/part/M2X_AugmentedRocket [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/ESTOC/part/M2X_ESTOC [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/IonEngine/part/M2X_IonEngine [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/JumpJet/part/M2X_Jumpjet [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/LanderEngine/part/M2X_FuselageRVTOLE [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/LiftFan/fuselage/M2X_FuselageLiftFan [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/LiftFan/stack/M2X_LiftFan [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/MATTOCK/part/M2X_MATTOCK [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/Pegasus/part/M2X_Pegasus [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/Pluto/part/M2X_Pluto [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/Ramjet/part/M2X_Ramjet [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/Rontgen/part/M2X_AtomicJet [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/SCRamjet/part/M2X_SCRamjet [LOG 17:48:36.752] Config(PART) Mk2Expansion/Parts/Engines/Siddeley/part/M2X_Siddeley [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Engines/Turbofan/part/M2X_Turbofan [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Engines/Turbojet/part/M2X_Turbojet [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Engines/Turboprop/part/M2X_Turboprop [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Engines/VTOL/Part/M2X_HeavyVTOL [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/FuelTank/Bicoupler/part/M2X_Shortbicoupler [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/FuelTank/HypersonicNose/part/M2X_HypersonicNose [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/FuelTank/Inverter/part/M2X_InverterFuselage [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/FuelTank/LinearTricoupler/part/M2X_linearTricoupler [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/FuelTank/Nosecap/part/M2X_SupersonicNose [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/FuelTank/ServiceTank/part/M2X_UST [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/FuelTank/SpadeTail/part/M2X_SpadeTail [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/FuelTank/Tricoupler/part/M2X_625tricoupler [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/FuelTank/size2adapter/part/M2X_Short25adapter [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Structural/Decoupler/part/M2X_Decoupler [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Structural/Endcap/part/M2X_Endcap [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Structural/Hubs/LHub/M2X_LHub [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Structural/Hubs/THub/M2X_THub [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Structural/Hubs/XHub/M2X_XHub [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Structural/RadialMount/RadialA/M2X_RadialMountA [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Structural/RadialMount/RadialB/M2X_RadialMountB [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/AlignedDockingPort/part/M2X_AligningDockingPort [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/DockingPort/part/M2X_ShieldedDockingPort [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/Lab/part/M2X_SmallLab [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/LandingLeg/part/M2X_RadialLeg [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/OMS/omsEngine/M2X_OMSpod [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/RCS/CBlock/M2X_RCRCS [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/RCS/EBlock/M2X_PGRCS [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/RCS/FF5Way/M2X_FF5WayRCS [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/RCS/OMSBlister/M2X_OMSBlister [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/RCS/RCSBlister/M2X_RCSBlister [LOG 17:48:36.753] Config(PART) Mk2Expansion/Parts/Utility/RCS/StabilityControl/M2X_SCRCS [LOG 17:48:36.754] Config(PART) Mk2Expansion/Parts/Utility/Reactor/part/M2X_Reactor [LOG 17:48:36.754] Config(PART) Mk2Expansion/Parts/Utility/ServiceBay/part/M2X_Servicebay [LOG 17:48:36.754] Config(PART) Mk2Expansion/Parts/Utility/SolarPanel/part/M2X_SolarpanelPod [LOG 17:48:36.754] Config(@PART[M2X_TunaCockpit|M2X_BladeCockpit|M2X_DropshipCockpit|M2X_RavenCockpit|M2X_ViperCockpit|M2X_Hub|M2X_THub|M2X_LHub|M2X_SmallLab|M2X_ShieldedDockingPort|M2X_SCRCS|M2X_Endcap|M2X_AligningDockingPort|M2X_EngineShroud|M2X_RadialMountA|M2X_RadialMountB]:NEEDS[ConnectedLivingSpace]:HAS[!MODULE[ModuleConnectedLivingSpace]]) Mk2Expansion/Patches/M2X_CLS/@PART[M2X_TunaCockpit|M2X_BladeCockpit|M2X_DropshipCockpit|M2X_RavenCockpit|M2X_ViperCockpit|M2X_Hub|M2X_THub|M2X_LHub|M2X_SmallLab|M2X_ShieldedDockingPort|M2X_SCRCS|M2X_Endcap|M2X_AligningDockingPort|M2X_EngineShroud|M2X_RadialMountA|M2X_RadialMountB]:NEEDS[ConnectedLivingSpace]:HAS[!MODULE[ModuleConnectedLivingSpace]] [LOG 17:48:36.754] Config(@PART[M2X_Pluto]:NEEDS[KerbalAtomics]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_Pluto]:NEEDS[KerbalAtomics]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_HypersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_HypersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_InverterFuselage]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_InverterFuselage]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_SupersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_SupersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_SpadeTail]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_SpadeTail]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_UST]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_UST]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_625tricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_625tricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_linearTricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_linearTricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_Short25adapter]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_Short25adapter]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_XHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_XHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_THub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_THub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_LHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_LHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[M2X_Tailboom]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion]) Mk2Expansion/Patches/M2X_KA/@PART[M2X_Tailboom]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] [LOG 17:48:36.754] Config(@PART[*]:HAS[@INTERNAL[BladeCockpit]]:NEEDS[RasterPropMonitor]) Mk2Expansion/Patches/M2X_RPM/@PART[*]:HAS[@INTERNAL[BladeCockpit]]:NEEDS[RasterPropMonitor] [LOG 17:48:36.754] Config(@PART[*]:HAS[@INTERNAL[DropshipCockpit]]:NEEDS[RasterPropMonitor]) Mk2Expansion/Patches/M2X_RPM/@PART[*]:HAS[@INTERNAL[DropshipCockpit]]:NEEDS[RasterPropMonitor] [LOG 17:48:36.754] Config(@PART[*]:HAS[@INTERNAL[RavenCockpit]]:NEEDS[RasterPropMonitor]) Mk2Expansion/Patches/M2X_RPM/@PART[*]:HAS[@INTERNAL[RavenCockpit]]:NEEDS[RasterPropMonitor] [LOG 17:48:36.754] Config(@PART[M2X_ViperCockpit]:NEEDS[RasterPropMonitor]) Mk2Expansion/Patches/M2X_RPM/@PART[M2X_ViperCockpit]:NEEDS[RasterPropMonitor] [LOG 17:48:36.754] Config(@PART[*]:HAS[@INTERNAL[DropshipCockpit_RPM]]:NEEDS[ASET]:Final) Mk2Expansion/Patches/M2X_RPM_ASET/@PART[*]:HAS[@INTERNAL[DropshipCockpit_RPM]]:NEEDS[ASET]:Final [LOG 17:48:36.754] Config(@PART[*]:HAS[@INTERNAL[BladeCockpitRPM]]:NEEDS[ASET]:Final) Mk2Expansion/Patches/M2X_RPM_ASET/@PART[*]:HAS[@INTERNAL[BladeCockpitRPM]]:NEEDS[ASET]:Final [LOG 17:48:36.754] Config(@PART[*]:HAS[@INTERNAL[RPM_RavenCockpit]]:NEEDS[ASET]:Final) Mk2Expansion/Patches/M2X_RPM_ASET/@PART[*]:HAS[@INTERNAL[RPM_RavenCockpit]]:NEEDS[ASET]:Final [LOG 17:48:36.754] Config(@PART[*]:HAS[@INTERNAL[TunaCockpit]]:NEEDS[ASET]:Final) Mk2Expansion/Patches/M2X_RPM_ASET/@PART[*]:HAS[@INTERNAL[TunaCockpit]]:NEEDS[ASET]:Final [LOG 17:48:36.754] Config(@PART[*]:HAS[@INTERNAL[RPM_ViperCockpit]]:NEEDS[ASET]:Final) Mk2Expansion/Patches/M2X_RPM_ASET/@PART[*]:HAS[@INTERNAL[RPM_ViperCockpit]]:NEEDS[ASET]:Final [LOG 17:48:36.754] Config(@PART[M2X_InlineIntake]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_InlineIntake] [LOG 17:48:36.754] Config(@PART[M2X_AeroIntake]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_AeroIntake] [LOG 17:48:36.754] Config(@PART[M2X_circularintake]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_circularintake] [LOG 17:48:36.754] Config(@PART[M2X_EngineShroud]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_EngineShroud] [LOG 17:48:36.754] Config(@PART[M2X_MantaIntake]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_MantaIntake] [LOG 17:48:36.754] Config(@PART[M2X_Precooler]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Precooler] [LOG 17:48:36.754] Config(@PART[M2X_Shockcone]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Shockcone] [LOG 17:48:36.754] Config(@PART[M2X_Tailboom]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Tailboom] [LOG 17:48:36.754] Config(@PART[M2X_ChineCap]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_ChineCap] [LOG 17:48:36.754] Config(@PART[M2X_ChineLong]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_ChineLong] [LOG 17:48:36.754] Config(@PART[M2X_ChineShort]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_ChineShort] [LOG 17:48:36.754] Config(@PART[M2X_Shortbicoupler]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Shortbicoupler] [LOG 17:48:36.755] Config(@PART[M2X_HypersonicNose]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_HypersonicNose] [LOG 17:48:36.755] Config(@PART[M2X_InverterFuselage]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_InverterFuselage] [LOG 17:48:36.755] Config(@PART[M2X_linearTricoupler]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_linearTricoupler] [LOG 17:48:36.755] Config(@PART[M2X_SupersonicNose]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_SupersonicNose] [LOG 17:48:36.755] Config(@PART[M2X_UST]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_UST] [LOG 17:48:36.755] Config(@PART[M2X_Short25adapter]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Short25adapter] [LOG 17:48:36.755] Config(@PART[M2X_SpadeTail]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_SpadeTail] [LOG 17:48:36.755] Config(@PART[M2X_625tricoupler]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_625tricoupler] [LOG 17:48:36.755] Config(@PART[M2X_Endcap]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Endcap] [LOG 17:48:36.755] Config(@PART[M2X_Decoupler]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Decoupler] [LOG 17:48:36.755] Config(@PART[M2X_LHub]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_LHub] [LOG 17:48:36.755] Config(@PART[M2X_THub]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_THub] [LOG 17:48:36.755] Config(@PART[M2X_XHub]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_XHub] [LOG 17:48:36.755] Config(@PART[M2X_RadialMountA]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RadialMountA] [LOG 17:48:36.755] Config(@PART[M2X_RadialMountB]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RadialMountB] [LOG 17:48:36.755] Config(@PART[M2X_RadialLeg]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RadialLeg] [LOG 17:48:36.755] Config(@PART[M2X_OMSpod]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_OMSpod] [LOG 17:48:36.755] Config(@PART[M2X_Reactor]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Reactor] [LOG 17:48:36.755] Config(@PART[M2X_Servicebay]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Servicebay] [LOG 17:48:36.755] Config(@PART[M2X_SolarpanelPod]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_SolarpanelPod] [LOG 17:48:36.755] Config(@PART[M2X_RATO]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RATO] [LOG 17:48:36.755] Config(@PART[M2X_RadialAASRB]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RadialAASRB] [LOG 17:48:36.755] Config(@PART[M2X_LinearAerospike]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_LinearAerospike] [LOG 17:48:36.755] Config(@PART[M2X_AugmentedRocket]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_AugmentedRocket] [LOG 17:48:36.755] Config(@PART[M2X_ESTOC]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_ESTOC] [LOG 17:48:36.755] Config(@PART[M2X_IonEngine]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_IonEngine] [LOG 17:48:36.755] Config(@PART[M2X_Jumpjet]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Jumpjet] [LOG 17:48:36.755] Config(@PART[M2X_FuselageRVTOLE]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_FuselageRVTOLE] [LOG 17:48:36.755] Config(@PART[M2X_LiftFan]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_LiftFan] [LOG 17:48:36.755] Config(@PART[M2X_FuselageLiftFan]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_FuselageLiftFan] [LOG 17:48:36.755] Config(@PART[M2X_MATTOCK]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_MATTOCK] [LOG 17:48:36.755] Config(@PART[M2X_Pegasus]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Pegasus] [LOG 17:48:36.755] Config(@PART[M2X_Pluto]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Pluto] [LOG 17:48:36.755] Config(@PART[M2X_Ramjet]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Ramjet] [LOG 17:48:36.755] Config(@PART[M2X_AtomicJet]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_AtomicJet] [LOG 17:48:36.755] Config(@PART[M2X_SCRamjet]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_SCRamjet] [LOG 17:48:36.755] Config(@PART[M2X_Siddeley]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Siddeley] [LOG 17:48:36.755] Config(@PART[M2X_Turbofan]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Turbofan] [LOG 17:48:36.755] Config(@PART[M2X_Turbojet]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Turbojet] [LOG 17:48:36.755] Config(@PART[M2X_Turboprop]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Turboprop] [LOG 17:48:36.755] Config(@PART[M2X_HeavyVTOL]) Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_HeavyVTOL] [LOG 17:48:36.755] Config(@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]]:NEEDS[!WarpPlugin]) Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]]:NEEDS[!WarpPlugin] [LOG 17:48:36.755] Config(@PART[M2X_Jumpjet]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_Jumpjet]:NEEDS[CommunityTechTree] [LOG 17:48:36.755] Config(@PART[M2X_FuselageLiftFan]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_FuselageLiftFan]:NEEDS[CommunityTechTree] [LOG 17:48:36.755] Config(@PART[M2X_LiftFan]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_LiftFan]:NEEDS[CommunityTechTree] [LOG 17:48:36.755] Config(@PART[M2X_Pegasus]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_Pegasus]:NEEDS[CommunityTechTree] [LOG 17:48:36.755] Config(@PART[M2X_Siddeley]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_Siddeley]:NEEDS[CommunityTechTree] [LOG 17:48:36.755] Config(@PART[M2X_HeavyVTOL]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_HeavyVTOL]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_ESTOC]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_ESTOC]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_IonEngine]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_IonEngine]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_MATTOCK]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_MATTOCK]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_SCRamjet]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_SCRamjet]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_PLUTO]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_PLUTO]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_AtomicJet]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_AtomicJet]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_RATO]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_RATO]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_RadialAASRB]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_RadialAASRB]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_AugmentedRocket]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_AugmentedRocket]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_Ramjet]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_Ramjet]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_Turboprop]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_Turboprop]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_Turbojet]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_Turbojet]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_ChineCap]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_ChineCap]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_ChineLong]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_ChineLong]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_ChineShort]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_ChineShort]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_RootChineAdapter]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_RootChineAdapter]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_RootChineLong]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_RootChineLong]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_RootChineShort]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_RootChineShort]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_InlineIntake]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_InlineIntake]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_AeroIntake]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_AeroIntake]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_circularintake]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_circularintake]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_MantaIntake]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_MantaIntake]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_Precooler]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_Precooler]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_Shockcone]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_Shockcone]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_DropshipCockpit]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_DropshipCockpit]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_BladeCockpit]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_BladeCockpit]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_TunaCockpit]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_TunaCockpit]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_RavenCockpit]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_RavenCockpit]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_ViperCockpit]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_ViperCockpit]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[MM2X_THub]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[MM2X_THub]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_XHub]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_XHub]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_LHub]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_LHub]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_RadialMountA]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_RadialMountA]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_RadialMountB]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_RadialMountB]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_AligningDockingPort]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_AligningDockingPort]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_ShieldedDockingPort]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_ShieldedDockingPort]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_Reactor]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_Reactor]:NEEDS[CommunityTechTree] [LOG 17:48:36.756] Config(@PART[M2X_RCRCS]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_RCRCS]:NEEDS[CommunityTechTree] [LOG 17:48:36.757] Config(@PART[M2X_PGRCS]:NEEDS[CommunityTechTree]) Mk2Expansion/Patches/Mk2X_CommunityTechTree/@PART[M2X_PGRCS]:NEEDS[CommunityTechTree] [LOG 17:48:36.757] Config(@PART[M2X_*]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_DRE/@PART[M2X_*]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_DropshipCockpit]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion]:FINAL) Mk2Expansion/Patches/Mk2X_DRE/@PART[M2X_DropshipCockpit]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion]:FINAL [LOG 17:48:36.757] Config(@PART[M2X_HypersonicNose]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion]:FINAL) Mk2Expansion/Patches/Mk2X_DRE/@PART[M2X_HypersonicNose]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion]:FINAL [LOG 17:48:36.757] Config(@PART[M2X_SmallLab]:NEEDS[Launchpad]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_EPL/@PART[M2X_SmallLab]:NEEDS[Launchpad]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_*]:NEEDS[FerramAerospaceResearch|NEAR]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FAR_Compatibility/@PART[M2X_*]:NEEDS[FerramAerospaceResearch|NEAR]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_HypersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_HypersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_InverterFuselage]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_InverterFuselage]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_SupersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_SupersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_SpadeTail]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_SpadeTail]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_UST]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_UST]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_625tricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_625tricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_linearTricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_linearTricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_Short25adapter]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_Short25adapter]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_XHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_XHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_THub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_THub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_LHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_LHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_Tailboom]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_Tailboom]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_Servicebay]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_Servicebay]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_OMSpod]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_OMSpod]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_InlineIntake]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_InlineIntake]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_HypersonicNose]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_HypersonicNose]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_InverterFuselage]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_InverterFuselage]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_SupersonicNose]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_SupersonicNose]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_SpadeTail]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_SpadeTail]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_TunaCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_TunaCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_UST]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_UST]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_625tricoupler]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_625tricoupler]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_DropshipCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_DropshipCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_BladeCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_BladeCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_RavenCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_RavenCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_ViperCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_ViperCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_Shortbicoupler]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_Shortbicoupler]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_Short25adapter]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_Short25adapter]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_linearTricoupler]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_MFT/@PART[M2X_linearTricoupler]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_Pluto]:NEEDS[NearFutureElectrical]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_NFE_Functionality/@PART[M2X_Pluto]:NEEDS[NearFutureElectrical]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_AtomicJet]:NEEDS[NearFutureElectrical]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_NFE_Functionality/@PART[M2X_AtomicJet]:NEEDS[NearFutureElectrical]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion] [LOG 17:48:36.757] Config(@PART[M2X_Reactor]:NEEDS[NearFutureElectrical]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion]) Mk2Expansion/Patches/Mk2X_NFE_Functionality/@PART[M2X_Reactor]:NEEDS[NearFutureElectrical]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion] [LOG 17:48:36.758] Config(RESOURCE_DEFINITION) Mk2Expansion/Resources/Resources/FanIntakeAir [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/AnglerPit/internal/DropshipCockpit [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/AnglerPit/internalRPM/DropshipCockpit_RPM [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/AnglerPit/internal_ASET/DropshipCockpitASET [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/BladePit/internal/BladeCockpit [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/BladePit/internal_ASET/BladeCockpitASET [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/BladePit/internal_RPM/BladeCockpitRPM [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/CrewedLab/4Seatinternal/M2XLabInternal [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/CrewedLab/internal/M2XLabInternal [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/RavenPit/internal/RavenCockpit [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/RavenPit/internal_ASET/ASET_RavenCockpit [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/RavenPit/internal_RPM/RPM_RavenCockpit [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/TunaPit/internal/TunaCockpit [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/TunaPit/internal_ASET/TunaCockpitASET [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/ViperPit/internal/ViperCockpit [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/ViperPit/internal_ASET/ASET_ViperCockpit [LOG 17:48:36.758] Config(INTERNAL) Mk2Expansion/Spaces/ViperPit/internal_RPM/RPM_ViperCockpit [LOG 17:48:36.758] Config(AGENT) Squad/Agencies/Agents/C7 Aerospace Division [LOG 17:48:36.758] Config(AGENT) Squad/Agencies/Agents/Dinkelstein Kerman's Construction Emporium [LOG 17:48:36.758] Config(AGENT) Squad/Agencies/Agents/Experimental Engineering Group [LOG 17:48:36.758] Config(AGENT) Squad/Agencies/Agents/FLOOYD Dynamics Research Labs [LOG 17:48:36.758] Config(AGENT) Squad/Agencies/Agents/Goliath National Products [LOG 17:48:36.758] Config(AGENT) Squad/Agencies/Agents/Integrated Integrals [LOG 17:48:36.758] Config(AGENT) Squad/Agencies/Agents/Ionic Symphonic Protonic Electronics [LOG 17:48:36.758] Config(AGENT) Squad/Agencies/Agents/Jebediah Kerman's Junkyard and Spacecraft Parts Co [LOG 17:48:36.758] Config(AGENT) Squad/Agencies/Agents/Kerbal Motion LLC [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Kerbin World-Firsts Record-Keeping Society [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Kerbodyne [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Kerlington Model Rockets and Paper Products Inc [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Maxo Construction Toys [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Moving Parts Experts Group [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/O.M.B. Demolition Enterprises [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Periapsis Rocket Supplies Co [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Probodobodyne Inc [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Research & Development Department [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Reaction Systems Ltd [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Rockomax Conglomerate [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Rokea Inc [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Sean's Cannery [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/STEADLER Engineering Corps [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/StrutCo [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Vac-Co Advanced Suction Systems [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/WinterOwl Aircraft Emporium [LOG 17:48:36.759] Config(AGENT) Squad/Agencies/Agents/Zaltonic Electronics [LOG 17:48:36.759] Config(Contracts) Squad/Contracts/Contracts/Contracts [LOG 17:48:36.759] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Pilot [LOG 17:48:36.759] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Engineer [LOG 17:48:36.759] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Scientist [LOG 17:48:36.759] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Tourist [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1 [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2 [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3 [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/airbrake/Airbrake/airbrake1 [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard [LOG 17:48:36.759] Config(PART) Squad/Parts/Aero/airplaneFins/standardCanard/CanardController [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/airplaneFins/tailfin/tailfin [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/basicFin/basicFin/basicFin [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/cones/ConeA/pointyNoseConeA [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/cones/ConeB/pointyNoseConeB [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/cones/tailConnectorA/airplaneTail [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/fairings/fairingSize1/fairingSize1 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/fairings/fairingSize2/fairingSize2 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/fairings/fairingSize3/fairingSize3 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wings/connector1/wingConnector [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wings/connector2/wingConnector2 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wings/connector3/wingConnector3 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wings/connector4/wingConnector4 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wings/connector5/wingConnector5 [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wings/delta/deltaWing [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wings/delta_small/delta_small [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf [LOG 17:48:36.760] Config(PART) Squad/Parts/Aero/wings/elevon2/elevon2 [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/elevon3/elevon3 [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/elevon4/smallCtrlSrf [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/elevon5/elevon5 [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/strake/wingStrake [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/structural1/structuralWing [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/structural2/structuralWing2 [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/structural3/structuralWing3 [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/structural4/structuralWing4 [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/swept1/sweptWing1 [LOG 17:48:36.761] Config(PART) Squad/Parts/Aero/wings/swept2/sweptWing2 [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2 [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/cupola/cupola/cupola [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk1pod/mk1Pod/mk1pod [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2 [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall [LOG 17:48:36.761] Config(PART) Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere [LOG 17:48:36.762] Config(PART) Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine [LOG 17:48:36.762] Config(PART) Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2 [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4 [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1 [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3 [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/RTG/RTG/rtg [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5 [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack [LOG 17:48:36.762] Config(PART) Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/MassiveSRB/part/MassiveBooster [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/Size2LFB/part/Size2LFB [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/ionEngine/ionEngine/ionEngine [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2 [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine [LOG 17:48:36.762] Config(PART) Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3 [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2 [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2 [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2 [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2 [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineSSME/SSME/SSME [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1 [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1 [LOG 17:48:36.763] Config(PART) Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine [LOG 17:48:36.763] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2 [LOG 17:48:36.763] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini [LOG 17:48:36.763] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank [LOG 17:48:36.763] Config(PART) Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank [LOG 17:48:36.763] Config(PART) Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25 [LOG 17:48:36.764] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50 [LOG 17:48:36.765] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO [LOG 17:48:36.765] Config(PART) Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank [LOG 17:48:36.765] Config(PART) Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge [LOG 17:48:36.765] Config(PART) Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial [LOG 17:48:36.765] Config(PART) Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore [LOG 17:48:36.765] Config(PART) Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna [LOG 17:48:36.765] Config(PART) Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel [LOG 17:48:36.765] Config(PART) Squad/Parts/Misc/PotatoRoid/part/PotatoRoid [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/FuelCell/FuelCell/FuelCell [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/ISRU/ISRU/ISRU [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/LargeTank/LargeTank/LargeTank [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/SmallTank/SmallTank/SmallTank [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner [LOG 17:48:36.765] Config(PART) Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner [LOG 17:48:36.765] Config(PART) Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere [LOG 17:48:36.765] Config(PART) Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment [LOG 17:48:36.765] Config(PART) Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab [LOG 17:48:36.765] Config(PART) Squad/Parts/Science/MaterialBay/materialBay/science_module [LOG 17:48:36.765] Config(PART) Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer [LOG 17:48:36.765] Config(PART) Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer [LOG 17:48:36.765] Config(PART) Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter [LOG 17:48:36.765] Config(PART) Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer [LOG 17:48:36.765] Config(PART) Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler [LOG 17:48:36.765] Config(PART) Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter [LOG 17:48:36.765] Config(PART) Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi [LOG 17:48:36.765] Config(PART) Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad [LOG 17:48:36.765] Config(PART) Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri [LOG 17:48:36.765] Config(PART) Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort [LOG 17:48:36.765] Config(PART) Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall [LOG 17:48:36.765] Config(PART) Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody [LOG 17:48:36.765] Config(PART) Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/stationHub/stationHub/stationHub [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2 [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3 [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1 [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1 [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2 [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/strutOcto/strutOcto/strutOcto [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x [LOG 17:48:36.766] Config(PART) Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x [LOG 17:48:36.766] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge [LOG 17:48:36.766] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed [LOG 17:48:36.766] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall [LOG 17:48:36.766] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge [LOG 17:48:36.766] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg [LOG 17:48:36.766] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125 [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250 [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/commDish88-88/commDish88-88/commDish [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2 [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2 [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2 [LOG 17:48:36.766] Config(PART) Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/linearRCS/linearRCS/linearRcs [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2 [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler [LOG 17:48:36.767] Config(PART) Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler [LOG 17:48:36.768] Config(PART) Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/LandingGear/GearFree/GearFree [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1 [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2 [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed [LOG 17:48:36.768] Config(PART) Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3 [LOG 17:48:36.768] Config(PROP) Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands [LOG 17:48:36.768] Config(PROP) Squad/Props/AtmosphereDepth/prop/AtmosphereDepth [LOG 17:48:36.768] Config(PROP) Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch [LOG 17:48:36.768] Config(PROP) Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll [LOG 17:48:36.768] Config(PROP) Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw [LOG 17:48:36.768] Config(PROP) Squad/Props/ButtonSquare/prop/ButtonSquare [LOG 17:48:36.768] Config(PROP) Squad/Props/Compass/prop/Compass [LOG 17:48:36.768] Config(PROP) Squad/Props/IVANavBall/prop/NavBall [LOG 17:48:36.768] Config(PROP) Squad/Props/IndicatorPanel/prop/IndicatorPanel [LOG 17:48:36.768] Config(PROP) Squad/Props/Monitor/DockingMode/MonitorDockingMode [LOG 17:48:36.768] Config(PROP) Squad/Props/NavBall/prop/NavBall [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/CargoBagA/CargoBagA [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/CargoBagB/CargoBagB [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/CargoBagC/CargoBagC [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90 [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet [LOG 17:48:36.768] Config(PROP) Squad/Props/PropsGeneric/SideStick/SideStick [LOG 17:48:36.768] Config(PROP) Squad/Props/VSI/prop/VSI [LOG 17:48:36.768] Config(PROP) Squad/Props/circularButton/prop/circularButton [LOG 17:48:36.768] Config(PROP) Squad/Props/directionalKnob/prop/directionalKnob [LOG 17:48:36.768] Config(PROP) Squad/Props/directionalKnob2/prop/directionalKnob2 [LOG 17:48:36.768] Config(PROP) Squad/Props/ledPanelSpeed/prop/ledPanelSpeed [LOG 17:48:36.768] Config(PROP) Squad/Props/pullSwitch/prop/pullSwitch [LOG 17:48:36.769] Config(PROP) Squad/Props/radarAltitude/prop/RadarAltimeter [LOG 17:48:36.769] Config(PROP) Squad/Props/squareButton/prop/squareButton [LOG 17:48:36.769] Config(PROP) Squad/Props/standingSwitch/prop/standingSwitch [LOG 17:48:36.769] Config(PROP) Squad/Props/switch/prop/switch [LOG 17:48:36.769] Config(PROP) Squad/Props/switchGuard/prop/switchGuard [LOG 17:48:36.769] Config(PROP) Squad/Props/switchWithGuards/prop/switchWithGuards [LOG 17:48:36.769] Config(PROP) Squad/Props/throttle/prop/throttle [LOG 17:48:36.769] Config(GLOBAL_RESOURCE) Squad/Resources/Ore/GLOBAL_RESOURCE [LOG 17:48:36.769] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE [LOG 17:48:36.769] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE [LOG 17:48:36.769] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE [LOG 17:48:36.769] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE [LOG 17:48:36.769] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE [LOG 17:48:36.769] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE [LOG 17:48:36.769] Config(RESOURCE_OVERLAY_CONFIGURATION_SOLID) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_SOLID [LOG 17:48:36.769] Config(RESOURCE_OVERLAY_CONFIGURATION_LINES) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_LINES [LOG 17:48:36.769] Config(RESOURCE_OVERLAY_CONFIGURATION_DOTS) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_DOTS [LOG 17:48:36.769] Config(RESOURCE_CONFIGURATION) Squad/Resources/ResourceDefaults/RESOURCE_CONFIGURATION [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/LiquidFuel [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Oxidizer [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/SolidFuel [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/MonoPropellant [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/XenonGas [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/ElectricCharge [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/IntakeAir [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/EVA Propellant [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ore [LOG 17:48:36.769] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ablator [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION [LOG 17:48:36.769] Config(STORY_DEF) Squad/Resources/StoryDefs/STORY_DEF [LOG 17:48:36.769] Config(TechTree) Squad/Resources/TechTree/TechTree [LOG 17:48:36.769] Config(INTERNAL) Squad/Spaces/GenericSpace1/internal/GenericSpace1 [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/GenericSpace3/internal/GenericSpace3 [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/Placeholder/internal/Placeholder [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/PodCockpit/internal/PodCockpit [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/crewCabinInternals/internal/crewCabinInternals [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/cupolaInternal/internal/cupolaInternal [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/landerCabinInternals/internal/landerCabinInternals [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals [LOG 17:48:36.770] Config(INTERNAL) Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal [LOG 17:48:36.770] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Finances [LOG 17:48:36.770] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Science [LOG 17:48:36.770] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Public Relations [LOG 17:48:36.770] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Operations [LOG 17:48:36.770] Config(STRATEGY) Squad/Strategies/Strategies/AppreciationCampaignCfg [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/FundraisingCampaignCfg [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/OpenSourceTechProgramCfg [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/UnpaidResearchProgramCfg [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/OutsourcedResearchCfg [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/PatentsLicensingCfg [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/AgressiveNegotiations [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/RecoveryTransponders [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/BailoutGrant [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/researchIPsellout [LOG 17:48:36.771] Config(STRATEGY) Squad/Strategies/Strategies/LeadershipInitiative [LOG 17:48:36.771] Config(TUTORIAL) Squad/Tutorials/FlightSuborbital/FlightSuborbital [LOG 17:48:36.771] Config(TUTORIAL) Squad/Tutorials/FromMun/FromMun [LOG 17:48:36.771] Config(TUTORIAL) Squad/Tutorials/GoForOrbit/GoForOrbit [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/stack [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/stack_square [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/surface [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/free [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/free_square [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/adapter_2_1 [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/adapter_1_2 [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/adapter_4_1 [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/adapter_3_2 [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/adapter_3_1 [LOG 17:48:36.771] Config(SCALETYPE) TweakScale/DefaultScales/adapter_4_3 [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/Part [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleWheelBase [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleWheelMotor [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleWheelBrakes [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleCargoBay [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleAnchoredDecoupler [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleDecouple [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleGenerator [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleDeployableSolarPanel [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleReactionWheel [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleDockingNode [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleGrappleNode [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleAlternator [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleEngines [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleEnginesFX [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleRCS [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleControlSurface [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleLiftingSurface [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleAeroSurface [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleResourceIntake [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleResourceHarvester [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleResourceConverter [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleAsteroidDrill [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleJettison [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS) TweakScale/ScaleExponents/ModuleActiveRadiator [LOG 17:48:36.771] Config(TWEAKSCALEEXPONENTS:NEEDS[Firespitter]) TweakScale/ScaleExponents/FSfuelSwitch [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[Firespitter]) TweakScale/ScaleExponents/FSengine [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[Firespitter]) TweakScale/ScaleExponents/FSpropellerTweak [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[Firespitter]) TweakScale/ScaleExponents/FSalternator [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[OpenResourceSystem]) TweakScale/ScaleExponents/ORSModuleResourceExtraction [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[OpenResourceSystem]) TweakScale/ScaleExponents/ORSModuleAirScoop [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[NearFutureSolar]) TweakScale/ScaleExponents/ModuleCurvedSolarPanel [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[NearFutureElectrical]) TweakScale/ScaleExponents/FissionRadiator [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[NearFutureElectrical]) TweakScale/ScaleExponents/FissionGenerator [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[NearFutureElectrical]) TweakScale/ScaleExponents/FissionReprocessor [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[NearFutureElectrical]) TweakScale/ScaleExponents/DischargeCapacitor [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleContainer [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleGrab [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleGrapplingHook [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleMagnet [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModulePort [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleRotor [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleStrut [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleSuctionCup [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleTelescopicArm [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleTimedBomb [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KAS]) TweakScale/ScaleExponents/KASModuleWinch [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[TweakableEverything]) TweakScale/ScaleExponents/ModuleTweakableDecouple [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[TweakableEverything]) TweakScale/ScaleExponents/ModuleTweakableDockingNode [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[TweakableEverything]) TweakScale/ScaleExponents/ModuleTweakableEVA [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[TweakableEverything]) TweakScale/ScaleExponents/ModuleTweakableReactionWheel [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[OPT]) TweakScale/ScaleExponents/OPTRamIntake [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[KIS]) TweakScale/ScaleExponents/ModuleKISInventory [LOG 17:48:36.772] Config(TWEAKSCALEEXPONENTS:NEEDS[HLAirships]) TweakScale/ScaleExponents/HLEnvelopePartModule [LOG 17:48:36.772] Config(TWEAKSCALEBEHAVIOR) TweakScale/ScaleExponents/SRB [LOG 17:48:36.772] Config(TWEAKSCALEBEHAVIOR) TweakScale/ScaleExponents/Engine [LOG 17:48:36.772] Config(TWEAKSCALEBEHAVIOR) TweakScale/ScaleExponents/Decoupler [LOG 17:48:36.772] Config(TWEAKSCALEBEHAVIOR) TweakScale/ScaleExponents/Science [LOG 17:48:36.772] Config(SCALETYPE) TweakScale/patches/AIES_TweakScale/AIES_Probe [LOG 17:48:36.772] Config(@PART[explonpod]) TweakScale/patches/AIES_TweakScale/@PART[explonpod] [LOG 17:48:36.772] Config(@PART[investpod]) TweakScale/patches/AIES_TweakScale/@PART[investpod] [LOG 17:48:36.772] Config(@PART[Maxurpod]) TweakScale/patches/AIES_TweakScale/@PART[Maxurpod] [LOG 17:48:36.772] Config(@PART[UAEcubplate]) TweakScale/patches/AIES_TweakScale/@PART[UAEcubplate] [LOG 17:48:36.772] Config(@PART[satpropt300FuelTank]) TweakScale/patches/AIES_TweakScale/@PART[satpropt300FuelTank] [LOG 17:48:36.772] Config(@PART[cone05ra]) TweakScale/patches/AIES_TweakScale/@PART[cone05ra] [LOG 17:48:36.772] Config(@PART[conenoseram]) TweakScale/patches/AIES_TweakScale/@PART[conenoseram] [LOG 17:48:36.772] Config(@PART[moduldesspod]) TweakScale/patches/AIES_TweakScale/@PART[moduldesspod] [LOG 17:48:36.772] Config(@PART[orbitaiespod]) TweakScale/patches/AIES_TweakScale/@PART[orbitaiespod] [LOG 17:48:36.772] Config(@PART[neptuno]) TweakScale/patches/AIES_TweakScale/@PART[neptuno] [LOG 17:48:36.772] Config(@PART[novapod]) TweakScale/patches/AIES_TweakScale/@PART[novapod] [LOG 17:48:36.772] Config(@PART[orbitaiespod]) TweakScale/patches/AIES_TweakScale/@PART[orbitaiespod] [LOG 17:48:36.772] Config(@PART[sondex2pod]) TweakScale/patches/AIES_TweakScale/@PART[sondex2pod] [LOG 17:48:36.772] Config(@PART[torpod]) TweakScale/patches/AIES_TweakScale/@PART[torpod] [LOG 17:48:36.772] Config(@PART[radr]) TweakScale/patches/AIES_TweakScale/@PART[radr] [LOG 17:48:36.772] Config(@PART[solarpaneles1]) TweakScale/patches/AIES_TweakScale/@PART[solarpaneles1] [LOG 17:48:36.773] Config(@PART[solarPanelsfa]) TweakScale/patches/AIES_TweakScale/@PART[solarPanelsfa] [LOG 17:48:36.773] Config(@PART[solarPanelsond1]) TweakScale/patches/AIES_TweakScale/@PART[solarPanelsond1] [LOG 17:48:36.773] Config(@PART[solarPanelsuncat1]) TweakScale/patches/AIES_TweakScale/@PART[solarPanelsuncat1] [LOG 17:48:36.773] Config(@PART[solarPanelsfa2]) TweakScale/patches/AIES_TweakScale/@PART[solarPanelsfa2] [LOG 17:48:36.773] Config(@PART[liquidEngineconstelacion]) TweakScale/patches/AIES_TweakScale/@PART[liquidEngineconstelacion] [LOG 17:48:36.773] Config(@PART[dest5Engine]) TweakScale/patches/AIES_TweakScale/@PART[dest5Engine] [LOG 17:48:36.773] Config(@PART[engineexper05]) TweakScale/patches/AIES_TweakScale/@PART[engineexper05] [LOG 17:48:36.773] Config(@PART[liquidEnginemogulmp1500]) TweakScale/patches/AIES_TweakScale/@PART[liquidEnginemogulmp1500] [LOG 17:48:36.773] Config(@PART[liquidEngineprodulVR2]) TweakScale/patches/AIES_TweakScale/@PART[liquidEngineprodulVR2] [LOG 17:48:36.773] Config(@PART[galaxvr2]) TweakScale/patches/AIES_TweakScale/@PART[galaxvr2] [LOG 17:48:36.773] Config(@PART[enginelmodc]) TweakScale/patches/AIES_TweakScale/@PART[enginelmodc] [LOG 17:48:36.773] Config(@PART[liquidEngineorbit2]) TweakScale/patches/AIES_TweakScale/@PART[liquidEngineorbit2] [LOG 17:48:36.773] Config(@PART[microEngineex1sat]) TweakScale/patches/AIES_TweakScale/@PART[microEngineex1sat] [LOG 17:48:36.773] Config(@PART[microEngineSE1]) TweakScale/patches/AIES_TweakScale/@PART[microEngineSE1] [LOG 17:48:36.773] Config(@PART[VR1vulcan]) TweakScale/patches/AIES_TweakScale/@PART[VR1vulcan] [LOG 17:48:36.773] Config(@PART[fuelTank7k]) TweakScale/patches/AIES_TweakScale/@PART[fuelTank7k] [LOG 17:48:36.773] Config(@PART[fuelTanklunderl]) TweakScale/patches/AIES_TweakScale/@PART[fuelTanklunderl] [LOG 17:48:36.773] Config(@PART[fuelTanksuperior3]) TweakScale/patches/AIES_TweakScale/@PART[fuelTanksuperior3] [LOG 17:48:36.773] Config(@PART[fuelTanksul]) TweakScale/patches/AIES_TweakScale/@PART[fuelTanksul] [LOG 17:48:36.773] Config(@PART[ms1RCSTank]) TweakScale/patches/AIES_TweakScale/@PART[ms1RCSTank] [LOG 17:48:36.773] Config(@PART[RCS125ra]) TweakScale/patches/AIES_TweakScale/@PART[RCS125ra] [LOG 17:48:36.773] Config(@PART[RCSTanka5a]) TweakScale/patches/AIES_TweakScale/@PART[RCSTanka5a] [LOG 17:48:36.773] Config(@PART[fuelTankmr1]) TweakScale/patches/AIES_TweakScale/@PART[fuelTankmr1] [LOG 17:48:36.773] Config(@PART[tank1300cl]) TweakScale/patches/AIES_TweakScale/@PART[tank1300cl] [LOG 17:48:36.773] Config(@PART[tankMER1]) TweakScale/patches/AIES_TweakScale/@PART[tankMER1] [LOG 17:48:36.773] Config(@PART[tankMER6]) TweakScale/patches/AIES_TweakScale/@PART[tankMER6] [LOG 17:48:36.773] Config(@PART[tankorb1]) TweakScale/patches/AIES_TweakScale/@PART[tankorb1] [LOG 17:48:36.773] Config(@PART[tanktoemv2]) TweakScale/patches/AIES_TweakScale/@PART[tanktoemv2] [LOG 17:48:36.773] Config(@PART[rcsThrustermicrosn]) TweakScale/patches/AIES_TweakScale/@PART[rcsThrustermicrosn] [LOG 17:48:36.773] Config(@PART[AIESrcsThrusrmt1]) TweakScale/patches/AIES_TweakScale/@PART[AIESrcsThrusrmt1] [LOG 17:48:36.773] Config(@PART[AIESrcsThrusrom9]) TweakScale/patches/AIES_TweakScale/@PART[AIESrcsThrusrom9] [LOG 17:48:36.773] Config(@PART[advSascr3]) TweakScale/patches/AIES_TweakScale/@PART[advSascr3] [LOG 17:48:36.773] Config(@PART[Sasdv4]) TweakScale/patches/AIES_TweakScale/@PART[Sasdv4] [LOG 17:48:36.773] Config(@PART[basepunta1ur5]) TweakScale/patches/AIES_TweakScale/@PART[basepunta1ur5] [LOG 17:48:36.773] Config(@PART[basepuntv2r10]) TweakScale/patches/AIES_TweakScale/@PART[basepuntv2r10] [LOG 17:48:36.773] Config(@PART[sep1a1ur5]) TweakScale/patches/AIES_TweakScale/@PART[sep1a1ur5] [LOG 17:48:36.773] Config(@PART[t1000v4]) TweakScale/patches/AIES_TweakScale/@PART[t1000v4] [LOG 17:48:36.773] Config(@PART[t1500v4]) TweakScale/patches/AIES_TweakScale/@PART[t1500v4] [LOG 17:48:36.773] Config(@PART[t2000v4]) TweakScale/patches/AIES_TweakScale/@PART[t2000v4] [LOG 17:48:36.773] Config(@PART[t3000r20c]) TweakScale/patches/AIES_TweakScale/@PART[t3000r20c] [LOG 17:48:36.773] Config(@PART[top100a1ur5]) TweakScale/patches/AIES_TweakScale/@PART[top100a1ur5] [LOG 17:48:36.773] Config(@PART[top100a1ur5b]) TweakScale/patches/AIES_TweakScale/@PART[top100a1ur5b] [LOG 17:48:36.773] Config(@PART[top500a1ur5]) TweakScale/patches/AIES_TweakScale/@PART[top500a1ur5] [LOG 17:48:36.773] Config(@PART[adapterrads]) TweakScale/patches/AIES_TweakScale/@PART[adapterrads] [LOG 17:48:36.773] Config(@PART[ASDecoupler]) TweakScale/patches/AIES_TweakScale/@PART[ASDecoupler] [LOG 17:48:36.773] Config(@PART[basef1sond]) TweakScale/patches/AIES_TweakScale/@PART[basef1sond] [LOG 17:48:36.773] Config(@PART[baseinstrul8]) TweakScale/patches/AIES_TweakScale/@PART[baseinstrul8] [LOG 17:48:36.773] Config(@PART[decoupvector]) TweakScale/patches/AIES_TweakScale/@PART[decoupvector] [LOG 17:48:36.773] Config(@PART[decouplersv05]) TweakScale/patches/AIES_TweakScale/@PART[decouplersv05] [LOG 17:48:36.774] Config(@PART[decouplersvblack]) TweakScale/patches/AIES_TweakScale/@PART[decouplersvblack] [LOG 17:48:36.774] Config(@PART[desacopladorsat1]) TweakScale/patches/AIES_TweakScale/@PART[desacopladorsat1] [LOG 17:48:36.774] Config(@PART[desacopladorsat2]) TweakScale/patches/AIES_TweakScale/@PART[desacopladorsat2] [LOG 17:48:36.774] Config(@PART[desacopladorsat3]) TweakScale/patches/AIES_TweakScale/@PART[desacopladorsat3] [LOG 17:48:36.774] Config(@PART[LRDecoupler]) TweakScale/patches/AIES_TweakScale/@PART[LRDecoupler] [LOG 17:48:36.774] Config(@PART[Separatormultifs]) TweakScale/patches/AIES_TweakScale/@PART[Separatormultifs] [LOG 17:48:36.774] Config(@PART[strutsoportec1]) TweakScale/patches/AIES_TweakScale/@PART[strutsoportec1] [LOG 17:48:36.774] Config(@PART[saltguia]) TweakScale/patches/AIES_TweakScale/@PART[saltguia] [LOG 17:48:36.774] Config(@PART[batteryBAEr]) TweakScale/patches/AIES_TweakScale/@PART[batteryBAEr] [LOG 17:48:36.774] Config(@PART[expendLandingLeg]) TweakScale/patches/AIES_TweakScale/@PART[expendLandingLeg] [LOG 17:48:36.774] Config(@PART[godLandingLeg2]) TweakScale/patches/AIES_TweakScale/@PART[godLandingLeg2] [LOG 17:48:36.774] Config(@PART[godLandingLeg]) TweakScale/patches/AIES_TweakScale/@PART[godLandingLeg] [LOG 17:48:36.774] Config(@PART[legstrotLandingLeg]) TweakScale/patches/AIES_TweakScale/@PART[legstrotLandingLeg] [LOG 17:48:36.774] Config(@PART[xluzopl]) TweakScale/patches/AIES_TweakScale/@PART[xluzopl] [LOG 17:48:36.774] Config(@PART[plommsLandingLeg]) TweakScale/patches/AIES_TweakScale/@PART[plommsLandingLeg] [LOG 17:48:36.774] Config(@PART[NuclearJetEngine]) TweakScale/patches/AtomicAge_TweakScale/@PART[NuclearJetEngine] [LOG 17:48:36.774] Config(@PART[nuclearEngineLANTR]) TweakScale/patches/AtomicAge_TweakScale/@PART[nuclearEngineLANTR] [LOG 17:48:36.774] Config(@PART[nuclearEngineKANDL]) TweakScale/patches/AtomicAge_TweakScale/@PART[nuclearEngineKANDL] [LOG 17:48:36.774] Config(@PART[nuclearEngineLightbulb]) TweakScale/patches/AtomicAge_TweakScale/@PART[nuclearEngineLightbulb] [LOG 17:48:36.774] Config(@PART[radiatorRadialLarge]) TweakScale/patches/AtomicAge_TweakScale/@PART[radiatorRadialLarge] [LOG 17:48:36.774] Config(@PART[radiatorRadialMedium]) TweakScale/patches/AtomicAge_TweakScale/@PART[radiatorRadialMedium] [LOG 17:48:36.774] Config(@PART[radiatorRadialSmall]) TweakScale/patches/AtomicAge_TweakScale/@PART[radiatorRadialSmall] [LOG 17:48:36.774] Config(@PART[BananaForScale]:NEEDS[BfS]) TweakScale/patches/BananaForScale_TweakScale/@PART[BananaForScale]:NEEDS[BfS] [LOG 17:48:36.774] Config(@PART[roverBodyFuel]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyFuel] [LOG 17:48:36.774] Config(@PART[roverBodyLarge]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyLarge] [LOG 17:48:36.774] Config(@PART[roverBodyMono]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyMono] [LOG 17:48:36.774] Config(@PART[roverBodyNuclear]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyNuclear] [LOG 17:48:36.774] Config(@PART[roverBodySAS]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodySAS] [LOG 17:48:36.774] Config(@PART[roverBodyConverter]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyConverter] [LOG 17:48:36.774] Config(@PART[roverBodyKas]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyKas] [LOG 17:48:36.774] Config(@PART[roverBodyKethane]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyKethane] [LOG 17:48:36.774] Config(@PART[roverBodyFood]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyFood] [LOG 17:48:36.774] Config(@PART[roverBodyLifeSupport]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyLifeSupport] [LOG 17:48:36.774] Config(@PART[roverBodyOxygen]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyOxygen] [LOG 17:48:36.774] Config(@PART[roverBodyWater]) TweakScale/patches/BetterRovemates_TweakScale/@PART[roverBodyWater] [LOG 17:48:36.774] Config(@PART[0625_Heatshield]) TweakScale/patches/DeadlyReentry_TweakScale/@PART[0625_Heatshield] [LOG 17:48:36.774] Config(@PART[1.25_Heatshield]) TweakScale/patches/DeadlyReentry_TweakScale/@PART[1.25_Heatshield] [LOG 17:48:36.774] Config(@PART[2.5_Heatshield]) TweakScale/patches/DeadlyReentry_TweakScale/@PART[2.5_Heatshield] [LOG 17:48:36.774] Config(@PART[3.75_Heatshield]) TweakScale/patches/DeadlyReentry_TweakScale/@PART[3.75_Heatshield] [LOG 17:48:36.774] Config(@PART[6.25_Heatshield]) TweakScale/patches/DeadlyReentry_TweakScale/@PART[6.25_Heatshield] [LOG 17:48:36.774] Config(@PART[decoupler_ftr_small]) TweakScale/patches/DeadlyReentry_TweakScale/@PART[decoupler_ftr_small] [LOG 17:48:36.774] Config(@PART[decoupler_ftr]) TweakScale/patches/DeadlyReentry_TweakScale/@PART[decoupler_ftr] [LOG 17:48:36.774] Config(@PART[decoupler_ftr_4m]) TweakScale/patches/DeadlyReentry_TweakScale/@PART[decoupler_ftr_4m] [LOG 17:48:36.774] Config(@PART[fsinfopopup]) TweakScale/patches/FireSpitter_TweakScale/@PART[fsinfopopup] [LOG 17:48:36.774] Config(@PART[FSbomberWing]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbomberWing] [LOG 17:48:36.774] Config(@PART[FSbomberWingExtender]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbomberWingExtender] [LOG 17:48:36.775] Config(@PART[FSfighterJetElevator]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfighterJetElevator] [LOG 17:48:36.775] Config(@PART[FSfighterJetRudder]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfighterJetRudder] [LOG 17:48:36.775] Config(@PART[FSfighterJetWing]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfighterJetWing] [LOG 17:48:36.775] Config(@PART[FSfighterWing]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfighterWing] [LOG 17:48:36.775] Config(@PART[FSoblongNoseIntake]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongNoseIntake] [LOG 17:48:36.775] Config(@PART[FStailWing]) TweakScale/patches/FireSpitter_TweakScale/@PART[FStailWing] [LOG 17:48:36.775] Config(@PART[FStailWingLarge]) TweakScale/patches/FireSpitter_TweakScale/@PART[FStailWingLarge] [LOG 17:48:36.775] Config(@PART[FSwinglet]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSwinglet] [LOG 17:48:36.775] Config(@PART[FSapacheCockpit]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSapacheCockpit] [LOG 17:48:36.775] Config(@PART[FSbomberCockpit]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbomberCockpit] [LOG 17:48:36.775] Config(@PART[FScopterCockpit]) TweakScale/patches/FireSpitter_TweakScale/@PART[FScopterCockpit] [LOG 17:48:36.775] Config(@PART[FSfighterCockpit]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfighterCockpit] [LOG 17:48:36.775] Config(@PART[FScopterRotorFenestron]) TweakScale/patches/FireSpitter_TweakScale/@PART[FScopterRotorFenestron] [LOG 17:48:36.775] Config(@PART[FScopterRotorFenestronBothFins]) TweakScale/patches/FireSpitter_TweakScale/@PART[FScopterRotorFenestronBothFins] [LOG 17:48:36.775] Config(@PART[FScopterRotorFenestronNoFins]) TweakScale/patches/FireSpitter_TweakScale/@PART[FScopterRotorFenestronNoFins] [LOG 17:48:36.775] Config(@PART[FScopterRotorMain]) TweakScale/patches/FireSpitter_TweakScale/@PART[FScopterRotorMain] [LOG 17:48:36.775] Config(@PART[FScopterRotorMainElectric]) TweakScale/patches/FireSpitter_TweakScale/@PART[FScopterRotorMainElectric] [LOG 17:48:36.775] Config(@PART[FScopterRotorMainLarge]) TweakScale/patches/FireSpitter_TweakScale/@PART[FScopterRotorMainLarge] [LOG 17:48:36.775] Config(@PART[FScopterRotorTail]) TweakScale/patches/FireSpitter_TweakScale/@PART[FScopterRotorTail] [LOG 17:48:36.775] Config(@PART[FScopterRotorTail2]) TweakScale/patches/FireSpitter_TweakScale/@PART[FScopterRotorTail2] [LOG 17:48:36.775] Config(@PART[FSlancasterEngine]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSlancasterEngine] [LOG 17:48:36.775] Config(@PART[FSlancasterEngineGear]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSlancasterEngineGear] [LOG 17:48:36.775] Config(@PART[FSnoseEngine]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSnoseEngine] [LOG 17:48:36.775] Config(@PART[FSnoseEngineElectric]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSnoseEngineElectric] [LOG 17:48:36.775] Config(@PART[FSoblongTailJet]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongTailJet] [LOG 17:48:36.775] Config(@PART[FSPropellerEngine]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSPropellerEngine] [LOG 17:48:36.775] Config(@PART[FSPropellerEngineElectric]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSPropellerEngineElectric] [LOG 17:48:36.775] Config(@PART[FSPropellerEnginePush]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSPropellerEnginePush] [LOG 17:48:36.775] Config(@PART[FSpropellerFolding]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSpropellerFolding] [LOG 17:48:36.775] Config(@PART[FSswampEngine]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSswampEngine] [LOG 17:48:36.775] Config(@PART[FSturboProp]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSturboProp] [LOG 17:48:36.775] Config(@PART[FSVTOLengine]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSVTOLengine] [LOG 17:48:36.775] Config(@PART[FSVTOLengineLarge]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSVTOLengineLarge] [LOG 17:48:36.775] Config(@PART[FSairTank]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSairTank] [LOG 17:48:36.775] Config(@PART[FSdropTank]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSdropTank] [LOG 17:48:36.775] Config(@PART[FSdropTankMount]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSdropTankMount] [LOG 17:48:36.775] Config(@PART[FSjerrycan]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSjerrycan] [LOG 17:48:36.775] Config(@PART[FSoxidizerTank]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoxidizerTank] [LOG 17:48:36.775] Config(@PART[FSbombBay]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbombBay] [LOG 17:48:36.775] Config(@PART[FSbomberFuselage]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbomberFuselage] [LOG 17:48:36.775] Config(@PART[FSbomberFuselageEmpty]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbomberFuselageEmpty] [LOG 17:48:36.775] Config(@PART[FSbomberFuselageTail]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbomberFuselageTail] [LOG 17:48:36.775] Config(@PART[FSCrewFuselage]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSCrewFuselage] [LOG 17:48:36.775] Config(@PART[FSoblongFuel]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongFuel] [LOG 17:48:36.775] Config(@PART[FSoblongFuselage]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongFuselage] [LOG 17:48:36.775] Config(@PART[FSoblongFuselageBattery]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongFuselageBattery] [LOG 17:48:36.775] Config(@PART[FSoblongFuselageHalf]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongFuselageHalf] [LOG 17:48:36.775] Config(@PART[FSoblongFuselageRocketFuel]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongFuselageRocketFuel] [LOG 17:48:36.776] Config(@PART[FSoblongNose]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongNose] [LOG 17:48:36.776] Config(@PART[FSoblongNoseLong]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongNoseLong] [LOG 17:48:36.776] Config(@PART[FSoblongNoseRound]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongNoseRound] [LOG 17:48:36.776] Config(@PART[FSoblongTail]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongTail] [LOG 17:48:36.776] Config(@PART[FSoblongToRoundAdapter]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongToRoundAdapter] [LOG 17:48:36.776] Config(@PART[FSoblongToSmallAdapter]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSoblongToSmallAdapter] [LOG 17:48:36.776] Config(@PART[FStailBoom]) TweakScale/patches/FireSpitter_TweakScale/@PART[FStailBoom] [LOG 17:48:36.776] Config(@PART[FSengineMount]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSengineMount] [LOG 17:48:36.776] Config(@PART[FSfloatEnd]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfloatEnd] [LOG 17:48:36.776] Config(@PART[FSfloatEndTail]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfloatEndTail] [LOG 17:48:36.776] Config(@PART[FSfloatGearbay]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfloatGearbay] [LOG 17:48:36.776] Config(@PART[FSfloatStraight]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfloatStraight] [LOG 17:48:36.776] Config(@PART[FSfloatStrut]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfloatStrut] [LOG 17:48:36.776] Config(@PART[FSlandingPads]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSlandingPads] [LOG 17:48:36.776] Config(@PART[FSairBrake]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSairBrake] [LOG 17:48:36.776] Config(@PART[FSapacheNoseASAS]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSapacheNoseASAS] [LOG 17:48:36.776] Config(@PART[FSbattery]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbattery] [LOG 17:48:36.776] Config(@PART[fsgyroscope]) TweakScale/patches/FireSpitter_TweakScale/@PART[fsgyroscope] [LOG 17:48:36.776] Config(@PART[fsmovecraftgadget]) TweakScale/patches/FireSpitter_TweakScale/@PART[fsmovecraftgadget] [LOG 17:48:36.776] Config(@PART[fstrimgadget]) TweakScale/patches/FireSpitter_TweakScale/@PART[fstrimgadget] [LOG 17:48:36.776] Config(@PART[FSapacheLandingGear]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSapacheLandingGear] [LOG 17:48:36.776] Config(@PART[FSapacheLandingGearFlip]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSapacheLandingGearFlip] [LOG 17:48:36.776] Config(@PART[FSbiplaneGear]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiplaneGear] [LOG 17:48:36.776] Config(@PART[FSbomberLandingGear]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbomberLandingGear] [LOG 17:48:36.776] Config(@PART[FSfighterLandingGear]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfighterLandingGear] [LOG 17:48:36.776] Config(@PART[FSfighterTailGear]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSfighterTailGear] [LOG 17:48:36.776] Config(@PART[FSPROpeller]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSPROpeller] [LOG 17:48:36.776] Config(@PART[FSPROpellerElectric]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSPROpellerElectric] [LOG 17:48:36.776] Config(@PART[FS_BiplaneAileron]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneAileron] [LOG 17:48:36.776] Config(@PART[FS_BiplaneElevator]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneElevator] [LOG 17:48:36.776] Config(@PART[FS_BiplaneRudder]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneRudder] [LOG 17:48:36.776] Config(@PART[FS_BiplaneWingCenter]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneWingCenter] [LOG 17:48:36.776] Config(@PART[FS_BiplaneWingMain]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneWingMain] [LOG 17:48:36.776] Config(@PART[FS_BiplaneWingRound]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneWingRound] [LOG 17:48:36.776] Config(@PART[FS_BiplaneWingShort]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneWingShort] [LOG 17:48:36.776] Config(@PART[FS_BiplaneWingTip]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneWingTip] [LOG 17:48:36.776] Config(@PART[FS_BiplaneWheel]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneWheel] [LOG 17:48:36.776] Config(@PART[FS_BiplaneSkid]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneSkid] [LOG 17:48:36.776] Config(@PART[FS_BiplaneEngine]) TweakScale/patches/FireSpitter_TweakScale/@PART[FS_BiplaneEngine] [LOG 17:48:36.776] Config(@PART[FSbiPlaneAileron]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneAileron] [LOG 17:48:36.776] Config(@PART[FSbiPlaneElevator]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneElevator] [LOG 17:48:36.776] Config(@PART[FSbiPlaneRudder]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneRudder] [LOG 17:48:36.776] Config(@PART[FSbiPlaneWingCenter]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneWingCenter] [LOG 17:48:36.776] Config(@PART[FSbiPlaneWingMain]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneWingMain] [LOG 17:48:36.776] Config(@PART[FSbiPlaneWingRound]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneWingRound] [LOG 17:48:36.776] Config(@PART[FSbiPlaneWingShort]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneWingShort] [LOG 17:48:36.776] Config(@PART[FSbiPlaneWingTip]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneWingTip] [LOG 17:48:36.776] Config(@PART[FSbiPlaneWheelPair]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneWheelPair] [LOG 17:48:36.776] Config(@PART[FSbiPlaneSkid]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneSkid] [LOG 17:48:36.777] Config(@PART[FSbiPlaneTail]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiPlaneTail] [LOG 17:48:36.777] Config(@PART[FSbiplaneCockpit]) TweakScale/patches/FireSpitter_TweakScale/@PART[FSbiplaneCockpit] [LOG 17:48:36.777] Config(@PART[FusTekKarmony*]) TweakScale/patches/FusTek_TweakScale/@PART[FusTekKarmony*] [LOG 17:48:36.777] Config(@PART[FusTekResupplyModule]) TweakScale/patches/FusTek_TweakScale/@PART[FusTekResupplyModule] [LOG 17:48:36.777] Config(@PART[FusTekKirsDockingModule]) TweakScale/patches/FusTek_TweakScale/@PART[FusTekKirsDockingModule] [LOG 17:48:36.777] Config(@PART[FusTekKuestAirlock]) TweakScale/patches/FusTek_TweakScale/@PART[FusTekKuestAirlock] [LOG 17:48:36.777] Config(@PART[FusTekKuestLegacyAirlock]) TweakScale/patches/FusTek_TweakScale/@PART[FusTekKuestLegacyAirlock] [LOG 17:48:36.777] Config(@PART[FusTekKupolaObsModule]) TweakScale/patches/FusTek_TweakScale/@PART[FusTekKupolaObsModule] [LOG 17:48:36.777] Config(@PART[IACBM25m]) TweakScale/patches/FusTek_TweakScale/@PART[IACBM25m] [LOG 17:48:36.777] Config(@PART[FusTekKirsDockingModule]) TweakScale/patches/FusTek_TweakScale/@PART[FusTekKirsDockingModule] [LOG 17:48:36.777] Config(@PART[IACBM125m]) TweakScale/patches/FusTek_TweakScale/@PART[IACBM125m] [LOG 17:48:36.777] Config(@PART[KAS_Container1]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Container1] [LOG 17:48:36.777] Config(@PART[KAS_Container2]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Container2] [LOG 17:48:36.777] Config(@PART[KAS_ContainerBay1]) TweakScale/patches/KAS_TweakScale/@PART[KAS_ContainerBay1] [LOG 17:48:36.777] Config(@PART[KAS_CPort2]) TweakScale/patches/KAS_TweakScale/@PART[KAS_CPort2] [LOG 17:48:36.777] Config(@PART[KAS_HookSupport]) TweakScale/patches/KAS_TweakScale/@PART[KAS_HookSupport] [LOG 17:48:36.777] Config(@PART[KAS_Hook_Anchor]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Hook_Anchor] [LOG 17:48:36.777] Config(@PART[KAS_Hook_GrapplingHook]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Hook_GrapplingHook] [LOG 17:48:36.777] Config(@PART[KAS_Hook_Magnet]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Hook_Magnet] [LOG 17:48:36.777] Config(@PART[KAS_Pipe1]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Pipe1] [LOG 17:48:36.777] Config(@PART[KAS_Pylon1]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Pylon1] [LOG 17:48:36.777] Config(@PART[KAS_Strut1]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Strut1] [LOG 17:48:36.777] Config(@PART[KAS_Winch1]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Winch1] [LOG 17:48:36.777] Config(@PART[KAS_Winch2]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Winch2] [LOG 17:48:36.777] Config(@PART[KAS_Winch3]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Winch3] [LOG 17:48:36.777] Config(@PART[KAS_Winch4]) TweakScale/patches/KAS_TweakScale/@PART[KAS_Winch4] [LOG 17:48:36.777] Config(@PART[KAXelectricprop]) TweakScale/patches/KAX_TweakScale/@PART[KAXelectricprop] [LOG 17:48:36.777] Config(@PART[KAXheavyGear]) TweakScale/patches/KAX_TweakScale/@PART[KAXheavyGear] [LOG 17:48:36.777] Config(@PART[KAXjumpJet]) TweakScale/patches/KAX_TweakScale/@PART[KAXjumpJet] [LOG 17:48:36.777] Config(@PART[KAXkueyEngine]) TweakScale/patches/KAX_TweakScale/@PART[KAXkueyEngine] [LOG 17:48:36.777] Config(@PART[KAXkueyTailRotor]) TweakScale/patches/KAX_TweakScale/@PART[KAXkueyTailRotor] [LOG 17:48:36.777] Config(@PART[KAXmedCockpit]) TweakScale/patches/KAX_TweakScale/@PART[KAXmedCockpit] [LOG 17:48:36.777] Config(@PART[KAXmedFuselage]) TweakScale/patches/KAX_TweakScale/@PART[KAXmedFuselage] [LOG 17:48:36.777] Config(@PART[KAXmedJetFuel]) TweakScale/patches/KAX_TweakScale/@PART[KAXmedJetFuel] [LOG 17:48:36.777] Config(@PART[KAXmedTail]) TweakScale/patches/KAX_TweakScale/@PART[KAXmedTail] [LOG 17:48:36.777] Config(@PART[KAXradialprop]) TweakScale/patches/KAX_TweakScale/@PART[KAXradialprop] [LOG 17:48:36.777] Config(@PART[KAXturboprop]) TweakScale/patches/KAX_TweakScale/@PART[KAXturboprop] [LOG 17:48:36.777] Config(SCALETYPE) TweakScale/patches/KH_SSE_TweakScale/Klockheed_stack [LOG 17:48:36.777] Config(@PART[bb1]) TweakScale/patches/KH_SSE_TweakScale/@PART[bb1] [LOG 17:48:36.777] Config(@PART[km_bb2]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_bb2] [LOG 17:48:36.777] Config(@PART[double-oms]) TweakScale/patches/KH_SSE_TweakScale/@PART[double-oms] [LOG 17:48:36.777] Config(@PART[km_flameout_checker_AG8]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_flameout_checker_AG8] [LOG 17:48:36.777] Config(@PART[kb-fuel-breaker1]) TweakScale/patches/KH_SSE_TweakScale/@PART[kb-fuel-breaker1] [LOG 17:48:36.777] Config(@PART[kb-fuel-breaker15]) TweakScale/patches/KH_SSE_TweakScale/@PART[kb-fuel-breaker15] [LOG 17:48:36.777] Config(@PART[kb-fuel-breaker2]) TweakScale/patches/KH_SSE_TweakScale/@PART[kb-fuel-breaker2] [LOG 17:48:36.777] Config(@PART[kb-fuel-breaker3]) TweakScale/patches/KH_SSE_TweakScale/@PART[kb-fuel-breaker3] [LOG 17:48:36.777] Config(@PART[KM_FuelController_OFF]) TweakScale/patches/KH_SSE_TweakScale/@PART[KM_FuelController_OFF] [LOG 17:48:36.777] Config(@PART[KM_FuelController_ON]) TweakScale/patches/KH_SSE_TweakScale/@PART[KM_FuelController_ON] [LOG 17:48:36.778] Config(@PART[km_ma0]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_ma0] [LOG 17:48:36.778] Config(@PART[km_ma1]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_ma1] [LOG 17:48:36.778] Config(@PART[oms]) TweakScale/patches/KH_SSE_TweakScale/@PART[oms] [LOG 17:48:36.778] Config(@PART[sh1]) TweakScale/patches/KH_SSE_TweakScale/@PART[sh1] [LOG 17:48:36.778] Config(@PART[km_se0]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_se0] [LOG 17:48:36.778] Config(@PART[km_se0-oms]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_se0-oms] [LOG 17:48:36.778] Config(@PART[se2]) TweakScale/patches/KH_SSE_TweakScale/@PART[se2] [LOG 17:48:36.778] Config(@PART[km_se3]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_se3] [LOG 17:48:36.778] Config(@PART[km_se4L]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_se4L] [LOG 17:48:36.778] Config(@PART[kmssh0]) TweakScale/patches/KH_SSE_TweakScale/@PART[kmssh0] [LOG 17:48:36.778] Config(@PART[kmssh1]) TweakScale/patches/KH_SSE_TweakScale/@PART[kmssh1] [LOG 17:48:36.778] Config(@PART[km_smart_alt_low]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_smart_alt_low] [LOG 17:48:36.778] Config(@PART[km_smart_fuel]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_smart_fuel] [LOG 17:48:36.778] Config(@PART[km_smart_radio]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_smart_radio] [LOG 17:48:36.778] Config(@PART[km_smart_time]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_smart_time] [LOG 17:48:36.778] Config(@PART[KM_sparkler]) TweakScale/patches/KH_SSE_TweakScale/@PART[KM_sparkler] [LOG 17:48:36.778] Config(@PART[km_ssme_rs25s]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_ssme_rs25s] [LOG 17:48:36.778] Config(@PART[km_ssme_rs25ss]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_ssme_rs25ss] [LOG 17:48:36.778] Config(@PART[km-tank-bottom-1]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-bottom-1] [LOG 17:48:36.778] Config(@PART[km-tank-bottom-15]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-bottom-15] [LOG 17:48:36.778] Config(@PART[km-tank-bottom-2]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-bottom-2] [LOG 17:48:36.778] Config(@PART[km-tank-bottom-3]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-bottom-3] [LOG 17:48:36.778] Config(@PART[km-tank-mid-1]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-mid-1] [LOG 17:48:36.778] Config(@PART[km-tank-mid-15]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-mid-15] [LOG 17:48:36.778] Config(@PART[km-tank-mid-2]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-mid-2] [LOG 17:48:36.778] Config(@PART[km-tank-mid-3]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-mid-3] [LOG 17:48:36.778] Config(@PART[km-tank-mid-small-1]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-mid-small-1] [LOG 17:48:36.778] Config(@PART[km-tank-mid-small-15]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-mid-small-15] [LOG 17:48:36.778] Config(@PART[km-tank-mid-small-2]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-mid-small-2] [LOG 17:48:36.778] Config(@PART[km-tank-mid-small-3]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-mid-small-3] [LOG 17:48:36.778] Config(@PART[km-tank-top-1]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-top-1] [LOG 17:48:36.778] Config(@PART[km-tank-top-15]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-top-15] [LOG 17:48:36.778] Config(@PART[km-tank-top-2]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-top-2] [LOG 17:48:36.778] Config(@PART[km-tank-top-3]) TweakScale/patches/KH_SSE_TweakScale/@PART[km-tank-top-3] [LOG 17:48:36.778] Config(@PART[km_valve]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_valve] [LOG 17:48:36.778] Config(@PART[km_valve2]) TweakScale/patches/KH_SSE_TweakScale/@PART[km_valve2] [LOG 17:48:36.778] Config(@PART[KIS_Container1]) TweakScale/patches/KIS_TweakScale/@PART[KIS_Container1] [LOG 17:48:36.778] Config(@PART[KIS_Container2]) TweakScale/patches/KIS_TweakScale/@PART[KIS_Container2] [LOG 17:48:36.778] Config(@PART[KIS_Container3]) TweakScale/patches/KIS_TweakScale/@PART[KIS_Container3] [LOG 17:48:36.778] Config(SCALETYPE) TweakScale/patches/KOSMOS_TweakScale/KOSMOS_stack [LOG 17:48:36.778] Config(SCALETYPE) TweakScale/patches/KOSMOS_TweakScale/KOSMOS_Adapter_5_3 [LOG 17:48:36.778] Config(SCALETYPE) TweakScale/patches/KOSMOS_TweakScale/KOSMOS_Adapter_3_2 [LOG 17:48:36.778] Config(SCALETYPE) TweakScale/patches/KOSMOS_TweakScale/KOSMOS_Adapter_2_1 [LOG 17:48:36.778] Config(SCALETYPE) TweakScale/patches/KOSMOS_TweakScale/KOSMOS_Adapter_4_3 [LOG 17:48:36.778] Config(@PART[Kosmos_TKS_2-1_Flared_Taper]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_TKS_2-1_Flared_Taper] [LOG 17:48:36.778] Config(@PART[Kosmos_VA_RRV_Propulsion_Unit]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_VA_RRV_Propulsion_Unit] [LOG 17:48:36.778] Config(@PART[Kosmos_Salyut_1.5-1_Taper]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_1.5-1_Taper] [LOG 17:48:36.778] Config(@PART[Kosmos_Salyut_3-2_Taper]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_3-2_Taper] [LOG 17:48:36.778] Config(@PART[Kosmos_Salyut_2-1.5_Taper]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_2-1.5_Taper] [LOG 17:48:36.778] Config(@PART[Kosmos_Pravilo_ASAS]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Pravilo_ASAS] [LOG 17:48:36.779] Config(@PART[Kosmos_Pravilo_Control_Collar]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Pravilo_Control_Collar] [LOG 17:48:36.779] Config(@PART[Kosmos_VA_RRV_NavComStab]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_VA_RRV_NavComStab] [LOG 17:48:36.779] Config(@PART[Kosmos_Balka_PanelBlock1]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Balka_PanelBlock1] [LOG 17:48:36.779] Config(@PART[Kosmos_Balka_PanelBlock1_Single]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Balka_PanelBlock1_Single] [LOG 17:48:36.779] Config(@PART[Kosmos_Salyut_Solar_Array]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_Solar_Array] [LOG 17:48:36.779] Config(@PART[Kosmos_Salyut_Solar_Array2]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_Solar_Array2] [LOG 17:48:36.779] Config(@PART[Kosmos_TKS_Solar_Array]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_TKS_Solar_Array] [LOG 17:48:36.779] Config(@PART[Kosmos_Angara_RD-0146N2]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Angara_RD-0146N2] [LOG 17:48:36.779] Config(@PART[Kosmos_Angara_RD-0146]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Angara_RD-0146] [LOG 17:48:36.779] Config(@PART[Kosmos_Angara_RD-275K]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Angara_RD-275K] [LOG 17:48:36.779] Config(@PART[Kosmos_Angara_RD-33NK]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Angara_RD-33NK] [LOG 17:48:36.779] Config(@PART[Kosmos_Balka_1_Skeleton_RCS_Storage]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Balka_1_Skeleton_RCS_Storage] [LOG 17:48:36.779] Config(@PART[Kosmos_RD-58SS]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_RD-58SS] [LOG 17:48:36.779] Config(@PART[Kosmos_TKS_RD-0225_Engine]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_TKS_RD-0225_Engine] [LOG 17:48:36.779] Config(@PART[Kosmos_VA_RRV_Escape_Unit]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_VA_RRV_Escape_Unit] [LOG 17:48:36.779] Config(@PART[Kosmos_SepRetro]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_SepRetro] [LOG 17:48:36.779] Config(@PART[Kosmos_Salyut_1.5_Propulsion_Unit]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_1.5_Propulsion_Unit] [LOG 17:48:36.779] Config(@PART[Kosmos_Parom_RCS_Tank]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Parom_RCS_Tank] [LOG 17:48:36.779] Config(@PART[Kosmos_TKS_RCS_Tank]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_TKS_RCS_Tank] [LOG 17:48:36.779] Config(@PART[Kosmos_TKS_RCS_Tank_Radless]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_TKS_RCS_Tank_Radless] [LOG 17:48:36.779] Config(@PART[URM_1_25_Cowling_A_1J]) TweakScale/patches/KOSMOS_TweakScale/@PART[URM_1_25_Cowling_A_1J] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_Cowling_NA_2J]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_Cowling_NA_2J] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_Cowling_NA_2J]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_Cowling_NA_2J] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_Cowling_Skirt]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_Cowling_Skirt] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_InterStage_NA]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_InterStage_NA] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_InterStage_NA]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_InterStage_NA] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_InterStage_NA]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_InterStage_NA] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_L02]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_L02] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_L03]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_L03] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_L04]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_L04] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_L04]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_L04] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_L04]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_L04] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_L09]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_L09] [LOG 17:48:36.779] Config(@PART[Kosmos_URM_1_25_Nose_Cone]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_URM_1_25_Nose_Cone] [LOG 17:48:36.779] Config(@PART[Kosmos_URM_1_25_Nose_Cone_Decoupler]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_URM_1_25_Nose_Cone_Decoupler] [LOG 17:48:36.779] Config(@PART[URM_1_25_P_Fairing_Base]) TweakScale/patches/KOSMOS_TweakScale/@PART[URM_1_25_P_Fairing_Base] [LOG 17:48:36.779] Config(@PART[Kosmos_URM_1_25_Srf_Decoupler]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_URM_1_25_Srf_Decoupler] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_U00]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_U00] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_U01]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_U01] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_U02]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_U02] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_U03]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_U03] [LOG 17:48:36.779] Config(@PART[part_URM_1_25_U04]) TweakScale/patches/KOSMOS_TweakScale/@PART[part_URM_1_25_U04] [LOG 17:48:36.779] Config(@PART[URM_2_5_P_Fairing_Base]) TweakScale/patches/KOSMOS_TweakScale/@PART[URM_2_5_P_Fairing_Base] [LOG 17:48:36.779] Config(@PART[URM_2_5_P_Fairing_Base_SSPP]) TweakScale/patches/KOSMOS_TweakScale/@PART[URM_2_5_P_Fairing_Base_SSPP] [LOG 17:48:36.779] Config(@PART[Kosmos_Balka_1_Tunnel]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Balka_1_Tunnel] [LOG 17:48:36.779] Config(@PART[Kosmos_Balka_1_Skeleton]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Balka_1_Skeleton] [LOG 17:48:36.780] Config(@PART[Kosmos_Berthing_Node_Hexaway]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Berthing_Node_Hexaway] [LOG 17:48:36.780] Config(@PART[Kosmos_Berthing_Node_Single_Side]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Berthing_Node_Single_Side] [LOG 17:48:36.780] Config(@PART[Kosmos_Salyut_body_1.5]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_body_1.5] [LOG 17:48:36.780] Config(@PART[Kosmos_Salyut_body_2]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_body_2] [LOG 17:48:36.780] Config(@PART[Kosmos_Salyut_body_3]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_body_3] [LOG 17:48:36.780] Config(@PART[Kosmos_TKS_body_2]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_TKS_body_2] [LOG 17:48:36.780] Config(@PART[Kosmos_VA_RRV_LockDown]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_VA_RRV_LockDown] [LOG 17:48:36.780] Config(@PART[Kosmos_VA_RRV_LockDown_Ladderless]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_VA_RRV_LockDown_Ladderless] [LOG 17:48:36.780] Config(@PART[Kosmos_APAS_69]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_APAS_69] [LOG 17:48:36.780] Config(@PART[Kosmos_Common_LED_Flood_Light]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Common_LED_Flood_Light] [LOG 17:48:36.780] Config(@PART[Kosmos_KCBS]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_KCBS] [LOG 17:48:36.780] Config(@PART[URM_2_5_P_Fairing_Base_SSPP]) TweakScale/patches/KOSMOS_TweakScale/@PART[URM_2_5_P_Fairing_Base_SSPP] [LOG 17:48:36.780] Config(@PART[Kosmos_Salyut_RCS]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_Salyut_RCS] [LOG 17:48:36.780] Config(@PART[Kosmos_TKS_RCS]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_TKS_RCS] [LOG 17:48:36.780] Config(@PART[Kosmos_VA_RRV_Retro_Unit]) TweakScale/patches/KOSMOS_TweakScale/@PART[Kosmos_VA_RRV_Retro_Unit] [LOG 17:48:36.780] Config(@PART[dockingkso]) TweakScale/patches/KSO_TweakScale/@PART[dockingkso] [LOG 17:48:36.780] Config(@PART[boosterkso]) TweakScale/patches/KSO_TweakScale/@PART[boosterkso] [LOG 17:48:36.780] Config(@PART[fuelkso]) TweakScale/patches/KSO_TweakScale/@PART[fuelkso] [LOG 17:48:36.780] Config(@PART[omskso]) TweakScale/patches/KSO_TweakScale/@PART[omskso] [LOG 17:48:36.780] Config(@PART[decouplerkso]) TweakScale/patches/KSO_TweakScale/@PART[decouplerkso] [LOG 17:48:36.780] Config(@PART[dockstandardkso]) TweakScale/patches/KSO_TweakScale/@PART[dockstandardkso] [LOG 17:48:36.780] Config(@PART[ssauxfuelkso]) TweakScale/patches/KSO_TweakScale/@PART[ssauxfuelkso] [LOG 17:48:36.780] Config(@PART[lightlongkso]) TweakScale/patches/KSO_TweakScale/@PART[lightlongkso] [LOG 17:48:36.780] Config(@PART[lightlongredkso]) TweakScale/patches/KSO_TweakScale/@PART[lightlongredkso] [LOG 17:48:36.780] Config(@PART[lightroundkso]) TweakScale/patches/KSO_TweakScale/@PART[lightroundkso] [LOG 17:48:36.780] Config(@PART[lightroundredkso]) TweakScale/patches/KSO_TweakScale/@PART[lightroundredkso] [LOG 17:48:36.780] Config(@PART[lightshortkso]) TweakScale/patches/KSO_TweakScale/@PART[lightshortkso] [LOG 17:48:36.780] Config(@PART[lightshortredkso]) TweakScale/patches/KSO_TweakScale/@PART[lightshortredkso] [LOG 17:48:36.780] Config(@PART[KSO_Observation]) TweakScale/patches/KSO_TweakScale/@PART[KSO_Observation] [LOG 17:48:36.780] Config(@PART[KSO_DockingModule]) TweakScale/patches/KSO_TweakScale/@PART[KSO_DockingModule] [LOG 17:48:36.780] Config(@PART[KSO_Habitat]) TweakScale/patches/KSO_TweakScale/@PART[KSO_Habitat] [LOG 17:48:36.780] Config(@PART[KSO_Hydroponics]) TweakScale/patches/KSO_TweakScale/@PART[KSO_Hydroponics] [LOG 17:48:36.780] Config(@PART[KSO_KerbaLab]) TweakScale/patches/KSO_TweakScale/@PART[KSO_KerbaLab] [LOG 17:48:36.780] Config(@PART[sspowerkso]) TweakScale/patches/KSO_TweakScale/@PART[sspowerkso] [LOG 17:48:36.780] Config(@PART[KSO_SST]) TweakScale/patches/KSO_TweakScale/@PART[KSO_SST] [LOG 17:48:36.780] Config(@PART[leftelevkso]) TweakScale/patches/KSO_TweakScale/@PART[leftelevkso] [LOG 17:48:36.780] Config(@PART[leftwingkso]) TweakScale/patches/KSO_TweakScale/@PART[leftwingkso] [LOG 17:48:36.780] Config(@PART[sstruss1kso]) TweakScale/patches/KSO_TweakScale/@PART[sstruss1kso] [LOG 17:48:36.780] Config(@PART[sstruss2kso]) TweakScale/patches/KSO_TweakScale/@PART[sstruss2kso] [LOG 17:48:36.780] Config(@PART[rearplanekso]) TweakScale/patches/KSO_TweakScale/@PART[rearplanekso] [LOG 17:48:36.780] Config(@PART[rightelevkso]) TweakScale/patches/KSO_TweakScale/@PART[rightelevkso] [LOG 17:48:36.780] Config(@PART[rightwingkso]) TweakScale/patches/KSO_TweakScale/@PART[rightwingkso] [LOG 17:48:36.780] Config(@PART[ss2pointextkso]) TweakScale/patches/KSO_TweakScale/@PART[ss2pointextkso] [LOG 17:48:36.780] Config(@PART[ss3pointhubkso]) TweakScale/patches/KSO_TweakScale/@PART[ss3pointhubkso] [LOG 17:48:36.780] Config(@PART[ss4pointhubkso]) TweakScale/patches/KSO_TweakScale/@PART[ss4pointhubkso] [LOG 17:48:36.780] Config(@PART[ss6pointhubkso]) TweakScale/patches/KSO_TweakScale/@PART[ss6pointhubkso] [LOG 17:48:36.781] Config(@PART[ss6pointocto1kso]) TweakScale/patches/KSO_TweakScale/@PART[ss6pointocto1kso] [LOG 17:48:36.781] Config(@PART[ss6pointocto2kso]) TweakScale/patches/KSO_TweakScale/@PART[ss6pointocto2kso] [LOG 17:48:36.781] Config(@PART[ss6pointsquarekso]) TweakScale/patches/KSO_TweakScale/@PART[ss6pointsquarekso] [LOG 17:48:36.781] Config(@PART[ssdecouplerkso]) TweakScale/patches/KSO_TweakScale/@PART[ssdecouplerkso] [LOG 17:48:36.781] Config(@PART[sspanelmedkso]) TweakScale/patches/KSO_TweakScale/@PART[sspanelmedkso] [LOG 17:48:36.781] Config(@PART[sspanelslargekso]) TweakScale/patches/KSO_TweakScale/@PART[sspanelslargekso] [LOG 17:48:36.781] Config(@PART[sspanelsmallkso]) TweakScale/patches/KSO_TweakScale/@PART[sspanelsmallkso] [LOG 17:48:36.781] Config(@PART[tailrudderkso]) TweakScale/patches/KSO_TweakScale/@PART[tailrudderkso] [LOG 17:48:36.781] Config(@PART[thrustmaxkso]) TweakScale/patches/KSO_TweakScale/@PART[thrustmaxkso] [LOG 17:48:36.781] Config(@PART[cl_large_sasModule]) TweakScale/patches/KSPX_TweakScale/@PART[cl_large_sasModule] [LOG 17:48:36.781] Config(@PART[cl_mini_asas]) TweakScale/patches/KSPX_TweakScale/@PART[cl_mini_asas] [LOG 17:48:36.781] Config(@PART[cl_mini_sas]) TweakScale/patches/KSPX_TweakScale/@PART[cl_mini_sas] [LOG 17:48:36.781] Config(@PART[cl_large_nuclearEngine]) TweakScale/patches/KSPX_TweakScale/@PART[cl_large_nuclearEngine] [LOG 17:48:36.781] Config(@PART[cl_large_shortMonoTank]) TweakScale/patches/KSPX_TweakScale/@PART[cl_large_shortMonoTank] [LOG 17:48:36.781] Config(@PART[cl_large_tripleFuelTank]) TweakScale/patches/KSPX_TweakScale/@PART[cl_large_tripleFuelTank] [LOG 17:48:36.781] Config(@PART[cl_radial_cylTankFuel]) TweakScale/patches/KSPX_TweakScale/@PART[cl_radial_cylTankFuel] [LOG 17:48:36.781] Config(@PART[cl_radial_cylTankOxy]) TweakScale/patches/KSPX_TweakScale/@PART[cl_radial_cylTankOxy] [LOG 17:48:36.781] Config(@PART[cl_radial_sphereTankFuel]) TweakScale/patches/KSPX_TweakScale/@PART[cl_radial_sphereTankFuel] [LOG 17:48:36.781] Config(@PART[cl_radial_sphereTankOxy]) TweakScale/patches/KSPX_TweakScale/@PART[cl_radial_sphereTankOxy] [LOG 17:48:36.781] Config(@PART[cl_small_escapeTower]) TweakScale/patches/KSPX_TweakScale/@PART[cl_small_escapeTower] [LOG 17:48:36.781] Config(@PART[cl_small_ionEngine]) TweakScale/patches/KSPX_TweakScale/@PART[cl_small_ionEngine] [LOG 17:48:36.781] Config(@PART[cl_small_xenonTank]) TweakScale/patches/KSPX_TweakScale/@PART[cl_small_xenonTank] [LOG 17:48:36.781] Config(@PART[KWFlatadapter3x2]) TweakScale/patches/KW_TweakScale/@PART[KWFlatadapter3x2] [LOG 17:48:36.781] Config(@PART[KWFlatadapter3x1]) TweakScale/patches/KW_TweakScale/@PART[KWFlatadapter3x1] [LOG 17:48:36.781] Config(@PART[KWFuelAdapter3x1]) TweakScale/patches/KW_TweakScale/@PART[KWFuelAdapter3x1] [LOG 17:48:36.781] Config(@PART[KWFuelAdapter3x1S]) TweakScale/patches/KW_TweakScale/@PART[KWFuelAdapter3x1S] [LOG 17:48:36.781] Config(@PART[KWFuelAdapter3x2]) TweakScale/patches/KW_TweakScale/@PART[KWFuelAdapter3x2] [LOG 17:48:36.781] Config(@PART[KWFuelAdapter3x2S]) TweakScale/patches/KW_TweakScale/@PART[KWFuelAdapter3x2S] [LOG 17:48:36.781] Config(@PART[KWFuelAdapter5x3]) TweakScale/patches/KW_TweakScale/@PART[KWFuelAdapter5x3] [LOG 17:48:36.781] Config(@PART[KW2mSRBNoseCone]) TweakScale/patches/KW_TweakScale/@PART[KW2mSRBNoseCone] [LOG 17:48:36.781] Config(@PART[KW5mNoseCone]) TweakScale/patches/KW_TweakScale/@PART[KW5mNoseCone] [LOG 17:48:36.781] Config(@PART[KWFin]) TweakScale/patches/KW_TweakScale/@PART[KWFin] [LOG 17:48:36.781] Config(@PART[KWFinGC]) TweakScale/patches/KW_TweakScale/@PART[KWFinGC] [LOG 17:48:36.781] Config(@PART[KW1mNoseCone]) TweakScale/patches/KW_TweakScale/@PART[KW1mNoseCone] [LOG 17:48:36.781] Config(@PART[KW2mNoseCone]) TweakScale/patches/KW_TweakScale/@PART[KW2mNoseCone] [LOG 17:48:36.781] Config(@PART[KW3mNoseCone]) TweakScale/patches/KW_TweakScale/@PART[KW3mNoseCone] [LOG 17:48:36.781] Config(@PART[KWSASmodule2mHalf]) TweakScale/patches/KW_TweakScale/@PART[KWSASmodule2mHalf] [LOG 17:48:36.781] Config(@PART[KWSASmodule3mHalf]) TweakScale/patches/KW_TweakScale/@PART[KWSASmodule3mHalf] [LOG 17:48:36.781] Config(@PART[KWSASmodule5mHalf]) TweakScale/patches/KW_TweakScale/@PART[KWSASmodule5mHalf] [LOG 17:48:36.781] Config(@PART[KWRadBattLargeL]) TweakScale/patches/KW_TweakScale/@PART[KWRadBattLargeL] [LOG 17:48:36.781] Config(@PART[KWRadBattLargeS]) TweakScale/patches/KW_TweakScale/@PART[KWRadBattLargeS] [LOG 17:48:36.781] Config(@PART[KWRadBattSmallL]) TweakScale/patches/KW_TweakScale/@PART[KWRadBattSmallL] [LOG 17:48:36.781] Config(@PART[KWRadBattSmallS]) TweakScale/patches/KW_TweakScale/@PART[KWRadBattSmallS] [LOG 17:48:36.781] Config(@PART[KW1mengineMaverick1D]) TweakScale/patches/KW_TweakScale/@PART[KW1mengineMaverick1D] [LOG 17:48:36.781] Config(@PART[KW1mengineVestaVR1]) TweakScale/patches/KW_TweakScale/@PART[KW1mengineVestaVR1] [LOG 17:48:36.781] Config(@PART[KW1mengineWildCatV]) TweakScale/patches/KW_TweakScale/@PART[KW1mengineWildCatV] [LOG 17:48:36.781] Config(@PART[KW2mengineGriffonG8D]) TweakScale/patches/KW_TweakScale/@PART[KW2mengineGriffonG8D] [LOG 17:48:36.781] Config(@PART[KW2mengineMaverickV]) TweakScale/patches/KW_TweakScale/@PART[KW2mengineMaverickV] [LOG 17:48:36.781] Config(@PART[KW2mengineSPS]) TweakScale/patches/KW_TweakScale/@PART[KW2mengineSPS] [LOG 17:48:36.782] Config(@PART[KW2mengineVestaVR9D]) TweakScale/patches/KW_TweakScale/@PART[KW2mengineVestaVR9D] [LOG 17:48:36.782] Config(@PART[KW3mengineGriffonXX]) TweakScale/patches/KW_TweakScale/@PART[KW3mengineGriffonXX] [LOG 17:48:36.782] Config(@PART[KW3mengineTitanT1]) TweakScale/patches/KW_TweakScale/@PART[KW3mengineTitanT1] [LOG 17:48:36.782] Config(@PART[KW3mengineWildcarXR]) TweakScale/patches/KW_TweakScale/@PART[KW3mengineWildcarXR] [LOG 17:48:36.782] Config(@PART[KW5mengineGriffonC]) TweakScale/patches/KW_TweakScale/@PART[KW5mengineGriffonC] [LOG 17:48:36.782] Config(@PART[KW5mengineTitanV]) TweakScale/patches/KW_TweakScale/@PART[KW5mengineTitanV] [LOG 17:48:36.782] Config(@PART[KW1mExpandedFairingBase]) TweakScale/patches/KW_TweakScale/@PART[KW1mExpandedFairingBase] [LOG 17:48:36.782] Config(@PART[KW2mExpandedFairingBase]) TweakScale/patches/KW_TweakScale/@PART[KW2mExpandedFairingBase] [LOG 17:48:36.782] Config(@PART[KW3mExpandedFairingBase]) TweakScale/patches/KW_TweakScale/@PART[KW3mExpandedFairingBase] [LOG 17:48:36.782] Config(@PART[KW1mFairingBase]) TweakScale/patches/KW_TweakScale/@PART[KW1mFairingBase] [LOG 17:48:36.782] Config(@PART[KW2mFairingBase]) TweakScale/patches/KW_TweakScale/@PART[KW2mFairingBase] [LOG 17:48:36.782] Config(@PART[KW3mFairingBase]) TweakScale/patches/KW_TweakScale/@PART[KW3mFairingBase] [LOG 17:48:36.782] Config(@PART[KW12mExpandedFairingCone]) TweakScale/patches/KW_TweakScale/@PART[KW12mExpandedFairingCone] [LOG 17:48:36.782] Config(@PART[KW2mExpandedFairingCone]) TweakScale/patches/KW_TweakScale/@PART[KW2mExpandedFairingCone] [LOG 17:48:36.782] Config(@PART[KW1mFairingCone]) TweakScale/patches/KW_TweakScale/@PART[KW1mFairingCone] [LOG 17:48:36.782] Config(@PART[KW2mFairingCone]) TweakScale/patches/KW_TweakScale/@PART[KW2mFairingCone] [LOG 17:48:36.782] Config(@PART[KW3mExpandedFairingCone]) TweakScale/patches/KW_TweakScale/@PART[KW3mExpandedFairingCone] [LOG 17:48:36.782] Config(@PART[KW3mFairingCone]) TweakScale/patches/KW_TweakScale/@PART[KW3mFairingCone] [LOG 17:48:36.782] Config(@PART[KW5mExpFairingCone]) TweakScale/patches/KW_TweakScale/@PART[KW5mExpFairingCone] [LOG 17:48:36.782] Config(@PART[KW5mFairingCone]) TweakScale/patches/KW_TweakScale/@PART[KW5mFairingCone] [LOG 17:48:36.782] Config(@PART[KW1mDecouplerShroud]) TweakScale/patches/KW_TweakScale/@PART[KW1mDecouplerShroud] [LOG 17:48:36.782] Config(@PART[KW1mExpandedFairingWall]) TweakScale/patches/KW_TweakScale/@PART[KW1mExpandedFairingWall] [LOG 17:48:36.782] Config(@PART[KW1mFairingWall]) TweakScale/patches/KW_TweakScale/@PART[KW1mFairingWall] [LOG 17:48:36.782] Config(@PART[KW2mDecouplerShroud]) TweakScale/patches/KW_TweakScale/@PART[KW2mDecouplerShroud] [LOG 17:48:36.782] Config(@PART[KW2mExpandedFairingWall]) TweakScale/patches/KW_TweakScale/@PART[KW2mExpandedFairingWall] [LOG 17:48:36.782] Config(@PART[KW2mFairingWall]) TweakScale/patches/KW_TweakScale/@PART[KW2mFairingWall] [LOG 17:48:36.782] Config(@PART[KW3mDecouplerShroud]) TweakScale/patches/KW_TweakScale/@PART[KW3mDecouplerShroud] [LOG 17:48:36.782] Config(@PART[KW3mExpandedFairingWall]) TweakScale/patches/KW_TweakScale/@PART[KW3mExpandedFairingWall] [LOG 17:48:36.782] Config(@PART[KW3mFairingWall]) TweakScale/patches/KW_TweakScale/@PART[KW3mFairingWall] [LOG 17:48:36.782] Config(@PART[KW5mDecouplerShroud]) TweakScale/patches/KW_TweakScale/@PART[KW5mDecouplerShroud] [LOG 17:48:36.782] Config(@PART[KW5x3AdapterShroud]) TweakScale/patches/KW_TweakScale/@PART[KW5x3AdapterShroud] [LOG 17:48:36.782] Config(@PART[KW5mFairingBase]) TweakScale/patches/KW_TweakScale/@PART[KW5mFairingBase] [LOG 17:48:36.782] Config(@PART[KW5mExpandedFairingBase]) TweakScale/patches/KW_TweakScale/@PART[KW5mExpandedFairingBase] [LOG 17:48:36.782] Config(@PART[KW5mFairingWall]) TweakScale/patches/KW_TweakScale/@PART[KW5mFairingWall] [LOG 17:48:36.782] Config(@PART[KW5mExpFairingWall]) TweakScale/patches/KW_TweakScale/@PART[KW5mExpFairingWall] [LOG 17:48:36.782] Config(@PART[KW2Sidetank]) TweakScale/patches/KW_TweakScale/@PART[KW2Sidetank] [LOG 17:48:36.782] Config(@PART[KW3Sidetank]) TweakScale/patches/KW_TweakScale/@PART[KW3Sidetank] [LOG 17:48:36.782] Config(@PART[KW1mtankL0_5]) TweakScale/patches/KW_TweakScale/@PART[KW1mtankL0_5] [LOG 17:48:36.782] Config(@PART[KW1mRCSfuel]) TweakScale/patches/KW_TweakScale/@PART[KW1mRCSfuel] [LOG 17:48:36.782] Config(@PART[KW1mtankL1]) TweakScale/patches/KW_TweakScale/@PART[KW1mtankL1] [LOG 17:48:36.782] Config(@PART[KW1mtankL2]) TweakScale/patches/KW_TweakScale/@PART[KW1mtankL2] [LOG 17:48:36.782] Config(@PART[KW1mtankL4]) TweakScale/patches/KW_TweakScale/@PART[KW1mtankL4] [LOG 17:48:36.782] Config(@PART[KW1mtankPancake]) TweakScale/patches/KW_TweakScale/@PART[KW1mtankPancake] [LOG 17:48:36.782] Config(@PART[KW2mtankL0_5]) TweakScale/patches/KW_TweakScale/@PART[KW2mtankL0_5] [LOG 17:48:36.782] Config(@PART[KW2mRCSfuel]) TweakScale/patches/KW_TweakScale/@PART[KW2mRCSfuel] [LOG 17:48:36.783] Config(@PART[KW2mtankL1]) TweakScale/patches/KW_TweakScale/@PART[KW2mtankL1] [LOG 17:48:36.783] Config(@PART[KW2mtankL2]) TweakScale/patches/KW_TweakScale/@PART[KW2mtankL2] [LOG 17:48:36.783] Config(@PART[KW2mtankL4]) TweakScale/patches/KW_TweakScale/@PART[KW2mtankL4] [LOG 17:48:36.783] Config(@PART[KW2mtankL4A]) TweakScale/patches/KW_TweakScale/@PART[KW2mtankL4A] [LOG 17:48:36.783] Config(@PART[KW2mtankPancake]) TweakScale/patches/KW_TweakScale/@PART[KW2mtankPancake] [LOG 17:48:36.783] Config(@PART[KW3mtankL0_5]) TweakScale/patches/KW_TweakScale/@PART[KW3mtankL0_5] [LOG 17:48:36.783] Config(@PART[KW3mRCSfuel]) TweakScale/patches/KW_TweakScale/@PART[KW3mRCSfuel] [LOG 17:48:36.783] Config(@PART[KW3mtankL1]) TweakScale/patches/KW_TweakScale/@PART[KW3mtankL1] [LOG 17:48:36.783] Config(@PART[KW3mtankL2]) TweakScale/patches/KW_TweakScale/@PART[KW3mtankL2] [LOG 17:48:36.783] Config(@PART[KW3mtankL4]) TweakScale/patches/KW_TweakScale/@PART[KW3mtankL4] [LOG 17:48:36.783] Config(@PART[KW3mtankL4A]) TweakScale/patches/KW_TweakScale/@PART[KW3mtankL4A] [LOG 17:48:36.783] Config(@PART[KW3mtankPancake]) TweakScale/patches/KW_TweakScale/@PART[KW3mtankPancake] [LOG 17:48:36.783] Config(@PART[KW5mtankL05]) TweakScale/patches/KW_TweakScale/@PART[KW5mtankL05] [LOG 17:48:36.783] Config(@PART[KW5mtankL1_5]) TweakScale/patches/KW_TweakScale/@PART[KW5mtankL1_5] [LOG 17:48:36.783] Config(@PART[KW5mtankL3_5]) TweakScale/patches/KW_TweakScale/@PART[KW5mtankL3_5] [LOG 17:48:36.783] Config(@PART[KWrcsPod]) TweakScale/patches/KW_TweakScale/@PART[KWrcsPod] [LOG 17:48:36.783] Config(@PART[KWrcsQuad]) TweakScale/patches/KW_TweakScale/@PART[KWrcsQuad] [LOG 17:48:36.783] Config(@PART[KWrcsQuad45]) TweakScale/patches/KW_TweakScale/@PART[KWrcsQuad45] [LOG 17:48:36.783] Config(@PART[KWsrbGlobeI]) TweakScale/patches/KW_TweakScale/@PART[KWsrbGlobeI] [LOG 17:48:36.783] Config(@PART[KWsrbGlobeVI]) TweakScale/patches/KW_TweakScale/@PART[KWsrbGlobeVI] [LOG 17:48:36.783] Config(@PART[KWsrbGlobeV]) TweakScale/patches/KW_TweakScale/@PART[KWsrbGlobeV] [LOG 17:48:36.783] Config(@PART[KWsrbGlobeX2]) TweakScale/patches/KW_TweakScale/@PART[KWsrbGlobeX2] [LOG 17:48:36.783] Config(@PART[KWsrbGlobeX]) TweakScale/patches/KW_TweakScale/@PART[KWsrbGlobeX] [LOG 17:48:36.783] Config(@PART[KWsrbGlobeX10L]) TweakScale/patches/KW_TweakScale/@PART[KWsrbGlobeX10L] [LOG 17:48:36.783] Config(@PART[KWsrbGlobeX10S]) TweakScale/patches/KW_TweakScale/@PART[KWsrbGlobeX10S] [LOG 17:48:36.783] Config(@PART[KWsrbGlobeX5]) TweakScale/patches/KW_TweakScale/@PART[KWsrbGlobeX5] [LOG 17:48:36.783] Config(@PART[KWsrbUllageLarge]) TweakScale/patches/KW_TweakScale/@PART[KWsrbUllageLarge] [LOG 17:48:36.783] Config(@PART[KWsrbUllage]) TweakScale/patches/KW_TweakScale/@PART[KWsrbUllage] [LOG 17:48:36.783] Config(@PART[KW3mDockingRing]) TweakScale/patches/KW_TweakScale/@PART[KW3mDockingRing] [LOG 17:48:36.783] Config(@PART[KWadapter2x1]) TweakScale/patches/KW_TweakScale/@PART[KWadapter2x1] [LOG 17:48:36.783] Config(@PART[KWadapter3x2]) TweakScale/patches/KW_TweakScale/@PART[KWadapter3x2] [LOG 17:48:36.783] Config(@PART[KW5mStageDecoupler]) TweakScale/patches/KW_TweakScale/@PART[KW5mStageDecoupler] [LOG 17:48:36.783] Config(@PART[KW1mDecoupler]) TweakScale/patches/KW_TweakScale/@PART[KW1mDecoupler] [LOG 17:48:36.783] Config(@PART[KW2mDecoupler]) TweakScale/patches/KW_TweakScale/@PART[KW2mDecoupler] [LOG 17:48:36.783] Config(@PART[KW3mDecoupler]) TweakScale/patches/KW_TweakScale/@PART[KW3mDecoupler] [LOG 17:48:36.783] Config(@PART[KWFlatadapter2x1]) TweakScale/patches/KW_TweakScale/@PART[KWFlatadapter2x1] [LOG 17:48:36.783] Config(@PART[KWFuelAdapter2x1]) TweakScale/patches/KW_TweakScale/@PART[KWFuelAdapter2x1] [LOG 17:48:36.783] Config(@PART[KWFuelAdapter2x1S]) TweakScale/patches/KW_TweakScale/@PART[KWFuelAdapter2x1S] [LOG 17:48:36.783] Config(@PART[KWFuelAdapter5x2]) TweakScale/patches/KW_TweakScale/@PART[KWFuelAdapter5x2] [LOG 17:48:36.783] Config(@PART[kethane_1m_converter]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_1m_converter] [LOG 17:48:36.783] Config(@PART[kethane_2m_converter]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_2m_converter] [LOG 17:48:36.783] Config(@PART[kethane_generator]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_generator] [LOG 17:48:36.783] Config(@PART[kethane_heavyDrill]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_heavyDrill] [LOG 17:48:36.783] Config(@PART[kethane_highGain]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_highGain] [LOG 17:48:36.783] Config(@PART[kethane_kerbalBlender]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_kerbalBlender] [LOG 17:48:36.783] Config(@PART[kethane_sensor_1m]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_sensor_1m] [LOG 17:48:36.783] Config(@PART[kethane_smallDrill]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_smallDrill] [LOG 17:48:36.783] Config(@PART[kethane_tank1mStandard]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_tank1mStandard] [LOG 17:48:36.783] Config(@PART[kethane_tank2mExtralarge]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_tank2mExtralarge] [LOG 17:48:36.783] Config(@PART[kethane_tank2mLarge]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_tank2mLarge] [LOG 17:48:36.784] Config(@PART[kethane_tank2mMedium]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_tank2mMedium] [LOG 17:48:36.784] Config(@PART[kethane_tank2mSmall]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_tank2mSmall] [LOG 17:48:36.784] Config(@PART[kethane_tankExternal]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_tankExternal] [LOG 17:48:36.784] Config(@PART[kethane_turbine]) TweakScale/patches/Kethane_TweakScale/@PART[kethane_turbine] [LOG 17:48:36.784] Config(@PART[mk4multimodal-25-1]) TweakScale/patches/MarkIVSystem_TweakScale/@PART[mk4multimodal-25-1] [LOG 17:48:36.784] Config(@PART[mk4multimodal-125-1]) TweakScale/patches/MarkIVSystem_TweakScale/@PART[mk4multimodal-125-1] [LOG 17:48:36.784] Config(@PART[mk4turbofan-25-1]) TweakScale/patches/MarkIVSystem_TweakScale/@PART[mk4turbofan-25-1] [LOG 17:48:36.784] Config(@PART[mk4turbojet-25-1]) TweakScale/patches/MarkIVSystem_TweakScale/@PART[mk4turbojet-25-1] [LOG 17:48:36.784] Config(@PART[mk4vtol-0625-1]) TweakScale/patches/MarkIVSystem_TweakScale/@PART[mk4vtol-0625-1] [LOG 17:48:36.784] Config(@PART[mumech_MJ2_AR202]) TweakScale/patches/MechJeb_TweakScale/@PART[mumech_MJ2_AR202] [LOG 17:48:36.784] Config(@PART[mumech_MJ2_Pod]) TweakScale/patches/MechJeb_TweakScale/@PART[mumech_MJ2_Pod] [LOG 17:48:36.784] Config(@PART[Mk2PLUTO]) TweakScale/patches/Mk2Expansion_TweakScale/@PART[Mk2PLUTO] [LOG 17:48:36.784] Config(@PART[M2X_AtomicJet]) TweakScale/patches/Mk2Expansion_TweakScale/@PART[M2X_AtomicJet] [LOG 17:48:36.784] Config(@PART[Mk2Turbojet]) TweakScale/patches/Mk2Expansion_TweakScale/@PART[Mk2Turbojet] [LOG 17:48:36.784] Config(@PART[Mk2Ramjet]) TweakScale/patches/Mk2Expansion_TweakScale/@PART[Mk2Ramjet] [LOG 17:48:36.784] Config(@PART[Mk2VTOLJET]) TweakScale/patches/Mk2Expansion_TweakScale/@PART[Mk2VTOLJET] [LOG 17:48:36.784] Config(@PART[MATTOCK]) TweakScale/patches/Mk2Expansion_TweakScale/@PART[MATTOCK] [LOG 17:48:36.784] Config(@PART[ESTOC]) TweakScale/patches/Mk2Expansion_TweakScale/@PART[ESTOC] [LOG 17:48:36.784] Config(@PART[Mk2LinearAerospike]) TweakScale/patches/Mk2Expansion_TweakScale/@PART[Mk2LinearAerospike] [LOG 17:48:36.784] Config(@PART[Scramjet]) TweakScale/patches/Mk3HypersonicSystems_TweakScale/@PART[Scramjet] [LOG 17:48:36.784] Config(@PART[turboramjet2m]) TweakScale/patches/Mk3HypersonicSystems_TweakScale/@PART[turboramjet2m] [LOG 17:48:36.784] Config(@PART[shockConeTwoM]) TweakScale/patches/Mk3HypersonicSystems_TweakScale/@PART[shockConeTwoM] [LOG 17:48:36.784] Config(@PART[fuelTankN5]) TweakScale/patches/Mk3HypersonicSystems_TweakScale/@PART[fuelTankN5] [LOG 17:48:36.784] Config(@PART[Mk3EdgeRootExtension]) TweakScale/patches/Mk3HypersonicSystems_TweakScale/@PART[Mk3EdgeRootExtension] [LOG 17:48:36.784] Config(@PART[Mk3RadialRAMIntake]) TweakScale/patches/Mk3HypersonicSystems_TweakScale/@PART[Mk3RadialRAMIntake] [LOG 17:48:36.784] Config(@PART[Mk3LiftingBodyEdge]) TweakScale/patches/Mk3HypersonicSystems_TweakScale/@PART[Mk3LiftingBodyEdge] [LOG 17:48:36.784] Config(@PART[adapterLrgMed]) TweakScale/patches/NFT_TweakScale/@PART[adapterLrgMed] [LOG 17:48:36.784] Config(@PART[adapter-25-125-3]) TweakScale/patches/NFT_TweakScale/@PART[adapter-25-125-3] [LOG 17:48:36.784] Config(@PART[adapter-25-0625-5]) TweakScale/patches/NFT_TweakScale/@PART[adapter-25-0625-5] [LOG 17:48:36.784] Config(@PART[adapter-25-0625-7]) TweakScale/patches/NFT_TweakScale/@PART[adapter-25-0625-7] [LOG 17:48:36.784] Config(@PART[adapter-25-0625-9]) TweakScale/patches/NFT_TweakScale/@PART[adapter-25-0625-9] [LOG 17:48:36.784] Config(@PART[adapter-125-0625-2]) TweakScale/patches/NFT_TweakScale/@PART[adapter-125-0625-2] [LOG 17:48:36.784] Config(@PART[adapter-125-0625-3]) TweakScale/patches/NFT_TweakScale/@PART[adapter-125-0625-3] [LOG 17:48:36.784] Config(@PART[adapter-125-0625-4]) TweakScale/patches/NFT_TweakScale/@PART[adapter-125-0625-4] [LOG 17:48:36.784] Config(@PART[trusslrg-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-1] [LOG 17:48:36.784] Config(@PART[trusslrg-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-2] [LOG 17:48:36.784] Config(@PART[trusslrg-3]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-3] [LOG 17:48:36.784] Config(@PART[trusslrg-attach]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-attach] [LOG 17:48:36.784] Config(@PART[trusslrg-crew-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-crew-1] [LOG 17:48:36.784] Config(@PART[trusslrg-crew-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-crew-2] [LOG 17:48:36.784] Config(@PART[trusslrg-hollow-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-hollow-1] [LOG 17:48:36.784] Config(@PART[trusslrg-hollow-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-hollow-2] [LOG 17:48:36.784] Config(@PART[trusslrg-hub-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-hub-1] [LOG 17:48:36.784] Config(@PART[trusslrg-hub-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-hub-2] [LOG 17:48:36.784] Config(@PART[trusslrg-adapter-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-adapter-1] [LOG 17:48:36.784] Config(@PART[trusslrg-adapter-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-adapter-2] [LOG 17:48:36.784] Config(@PART[trusslrg-adapter-25]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-adapter-25] [LOG 17:48:36.785] Config(@PART[argon-radial-125-1]) TweakScale/patches/NFT_TweakScale/@PART[argon-radial-125-1] [LOG 17:48:36.785] Config(@PART[argon-radial-0625-1]) TweakScale/patches/NFT_TweakScale/@PART[argon-radial-0625-1] [LOG 17:48:36.785] Config(@PART[argon-0625-1]) TweakScale/patches/NFT_TweakScale/@PART[argon-0625-1] [LOG 17:48:36.785] Config(@PART[argon-0625-2]) TweakScale/patches/NFT_TweakScale/@PART[argon-0625-2] [LOG 17:48:36.785] Config(@PART[argon-0625-3]) TweakScale/patches/NFT_TweakScale/@PART[argon-0625-3] [LOG 17:48:36.785] Config(@PART[argon-125-1]) TweakScale/patches/NFT_TweakScale/@PART[argon-125-1] [LOG 17:48:36.785] Config(@PART[argon-125-2]) TweakScale/patches/NFT_TweakScale/@PART[argon-125-2] [LOG 17:48:36.785] Config(@PART[argon-125-3]) TweakScale/patches/NFT_TweakScale/@PART[argon-125-3] [LOG 17:48:36.785] Config(@PART[argon-25-1]) TweakScale/patches/NFT_TweakScale/@PART[argon-25-1] [LOG 17:48:36.785] Config(@PART[argon-25-2]) TweakScale/patches/NFT_TweakScale/@PART[argon-25-2] [LOG 17:48:36.785] Config(@PART[argon-25-3]) TweakScale/patches/NFT_TweakScale/@PART[argon-25-3] [LOG 17:48:36.785] Config(@PART[battery-25]) TweakScale/patches/NFT_TweakScale/@PART[battery-25] [LOG 17:48:36.785] Config(@PART[battery-125]) TweakScale/patches/NFT_TweakScale/@PART[battery-125] [LOG 17:48:36.785] Config(@PART[battery-0625]) TweakScale/patches/NFT_TweakScale/@PART[battery-0625] [LOG 17:48:36.785] Config(@PART[capacitor-25]) TweakScale/patches/NFT_TweakScale/@PART[capacitor-25] [LOG 17:48:36.785] Config(@PART[capacitor-125]) TweakScale/patches/NFT_TweakScale/@PART[capacitor-125] [LOG 17:48:36.785] Config(@PART[capacitor-0625]) TweakScale/patches/NFT_TweakScale/@PART[capacitor-0625] [LOG 17:48:36.785] Config(@PART[capacitor-rad-0625]) TweakScale/patches/NFT_TweakScale/@PART[capacitor-rad-0625] [LOG 17:48:36.785] Config(@PART[capacitor-rad-0625-2]) TweakScale/patches/NFT_TweakScale/@PART[capacitor-rad-0625-2] [LOG 17:48:36.785] Config(@PART[ionXenon-0625]) TweakScale/patches/NFT_TweakScale/@PART[ionXenon-0625] [LOG 17:48:36.785] Config(@PART[ionXenon-0625-3]) TweakScale/patches/NFT_TweakScale/@PART[ionXenon-0625-3] [LOG 17:48:36.785] Config(@PART[ionXenon-125]) TweakScale/patches/NFT_TweakScale/@PART[ionXenon-125] [LOG 17:48:36.785] Config(@PART[ionXenon-25]) TweakScale/patches/NFT_TweakScale/@PART[ionXenon-25] [LOG 17:48:36.785] Config(@PART[ionArgon-0625]) TweakScale/patches/NFT_TweakScale/@PART[ionArgon-0625] [LOG 17:48:36.785] Config(@PART[ionArgon-0625-2]) TweakScale/patches/NFT_TweakScale/@PART[ionArgon-0625-2] [LOG 17:48:36.785] Config(@PART[ionXenon-25]) TweakScale/patches/NFT_TweakScale/@PART[ionXenon-25] [LOG 17:48:36.785] Config(@PART[ionXenon-0625-2]) TweakScale/patches/NFT_TweakScale/@PART[ionXenon-0625-2] [LOG 17:48:36.785] Config(@PART[mpdt-25]) TweakScale/patches/NFT_TweakScale/@PART[mpdt-25] [LOG 17:48:36.785] Config(@PART[mpdt-125]) TweakScale/patches/NFT_TweakScale/@PART[mpdt-125] [LOG 17:48:36.785] Config(@PART[mpdt-0625]) TweakScale/patches/NFT_TweakScale/@PART[mpdt-0625] [LOG 17:48:36.785] Config(@PART[nextsmall]) TweakScale/patches/NFT_TweakScale/@PART[nextsmall] [LOG 17:48:36.785] Config(@PART[pit-125]) TweakScale/patches/NFT_TweakScale/@PART[pit-125] [LOG 17:48:36.785] Config(@PART[pit-25]) TweakScale/patches/NFT_TweakScale/@PART[pit-25] [LOG 17:48:36.785] Config(@PART[pit-0625]) TweakScale/patches/NFT_TweakScale/@PART[pit-0625] [LOG 17:48:36.785] Config(@PART[vasimr-0625]) TweakScale/patches/NFT_TweakScale/@PART[vasimr-0625] [LOG 17:48:36.785] Config(@PART[vasimr-125]) TweakScale/patches/NFT_TweakScale/@PART[vasimr-125] [LOG 17:48:36.785] Config(@PART[vasimr-25]) TweakScale/patches/NFT_TweakScale/@PART[vasimr-25] [LOG 17:48:36.785] Config(@PART[mk3-9pod]) TweakScale/patches/NFT_TweakScale/@PART[mk3-9pod] [LOG 17:48:36.785] Config(@PART[utilityCabin]) TweakScale/patches/NFT_TweakScale/@PART[utilityCabin] [LOG 17:48:36.785] Config(@PART[landingengine-25]) TweakScale/patches/NFT_TweakScale/@PART[landingengine-25] [LOG 17:48:36.785] Config(@PART[fuelTank-25-multi]) TweakScale/patches/NFT_TweakScale/@PART[fuelTank-25-multi] [LOG 17:48:36.785] Config(@PART[rcsblock-5way]) TweakScale/patches/NFT_TweakScale/@PART[rcsblock-5way] [LOG 17:48:36.785] Config(@PART[landingLeg-pod]) TweakScale/patches/NFT_TweakScale/@PART[landingLeg-pod] [LOG 17:48:36.785] Config(@PART[hydrogen-radial-25-1]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-radial-25-1] [LOG 17:48:36.785] Config(@PART[hydrogen-radial-125-1]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-radial-125-1] [LOG 17:48:36.785] Config(@PART[hydrogen-radial-375-1]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-radial-375-1] [LOG 17:48:36.785] Config(@PART[hydrogen-125-1]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-125-1] [LOG 17:48:36.785] Config(@PART[hydrogen-125-2]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-125-2] [LOG 17:48:36.785] Config(@PART[hydrogen-25-1]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-25-1] [LOG 17:48:36.785] Config(@PART[hydrogen-25-2]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-25-2] [LOG 17:48:36.786] Config(@PART[hydrogen-25-3]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-25-3] [LOG 17:48:36.786] Config(@PART[hydrogen-375-1]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-375-1] [LOG 17:48:36.786] Config(@PART[hydrogen-375-2]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-375-2] [LOG 17:48:36.786] Config(@PART[hydrogen-375-3]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-375-3] [LOG 17:48:36.786] Config(@PART[hydrogen-10-1]) TweakScale/patches/NFT_TweakScale/@PART[hydrogen-10-1] [LOG 17:48:36.786] Config(@PART[nuclear-recycler-25]) TweakScale/patches/NFT_TweakScale/@PART[nuclear-recycler-25] [LOG 17:48:36.786] Config(@PART[nuclearfuel-25]) TweakScale/patches/NFT_TweakScale/@PART[nuclearfuel-25] [LOG 17:48:36.786] Config(@PART[nuclearfuel-125]) TweakScale/patches/NFT_TweakScale/@PART[nuclearfuel-125] [LOG 17:48:36.786] Config(@PART[nuclearfuel-0625]) TweakScale/patches/NFT_TweakScale/@PART[nuclearfuel-0625] [LOG 17:48:36.786] Config(@PART[radiator-conformal-3]) TweakScale/patches/NFT_TweakScale/@PART[radiator-conformal-3] [LOG 17:48:36.786] Config(@PART[radiator-universal-1]) TweakScale/patches/NFT_TweakScale/@PART[radiator-universal-1] [LOG 17:48:36.786] Config(@PART[radiator-conformal-1]) TweakScale/patches/NFT_TweakScale/@PART[radiator-conformal-1] [LOG 17:48:36.786] Config(@PART[radiator-universal-2]) TweakScale/patches/NFT_TweakScale/@PART[radiator-universal-2] [LOG 17:48:36.786] Config(@PART[radiator-conformal-2]) TweakScale/patches/NFT_TweakScale/@PART[radiator-conformal-2] [LOG 17:48:36.786] Config(@PART[reactor-0625]) TweakScale/patches/NFT_TweakScale/@PART[reactor-0625] [LOG 17:48:36.786] Config(@PART[reactor-25-2]) TweakScale/patches/NFT_TweakScale/@PART[reactor-25-2] [LOG 17:48:36.786] Config(@PART[reactor-25]) TweakScale/patches/NFT_TweakScale/@PART[reactor-25] [LOG 17:48:36.786] Config(@PART[reactor-125]) TweakScale/patches/NFT_TweakScale/@PART[reactor-125] [LOG 17:48:36.786] Config(@PART[reactor-375]) TweakScale/patches/NFT_TweakScale/@PART[reactor-375] [LOG 17:48:36.786] Config(@PART[solarpanel-blanket-1]) TweakScale/patches/NFT_TweakScale/@PART[solarpanel-blanket-1] [LOG 17:48:36.786] Config(@PART[solarpanels-blanket-2]) TweakScale/patches/NFT_TweakScale/@PART[solarpanels-blanket-2] [LOG 17:48:36.786] Config(@PART[solarpanel-curved-25-1]) TweakScale/patches/NFT_TweakScale/@PART[solarpanel-curved-25-1] [LOG 17:48:36.786] Config(@PART[solarpanel-curved-375-1]) TweakScale/patches/NFT_TweakScale/@PART[solarpanel-curved-375-1] [LOG 17:48:36.786] Config(@PART[solarpanel-curved-deploying-25-1]) TweakScale/patches/NFT_TweakScale/@PART[solarpanel-curved-deploying-25-1] [LOG 17:48:36.786] Config(@PART[solarpanel-deploying-*]) TweakScale/patches/NFT_TweakScale/@PART[solarpanel-deploying-*] [LOG 17:48:36.786] Config(@PART[solarpanel-static-truss-1]) TweakScale/patches/NFT_TweakScale/@PART[solarpanel-static-truss-1] [LOG 17:48:36.786] Config(@PART[solarpanel-static-truss-2]) TweakScale/patches/NFT_TweakScale/@PART[solarpanel-static-truss-2] [LOG 17:48:36.786] Config(@PART[adapter-rad-0625]) TweakScale/patches/NFT_TweakScale/@PART[adapter-rad-0625] [LOG 17:48:36.786] Config(@PART[adapter-rad-125]) TweakScale/patches/NFT_TweakScale/@PART[adapter-rad-125] [LOG 17:48:36.786] Config(@PART[xenon-125]) TweakScale/patches/NFT_TweakScale/@PART[xenon-125] [LOG 17:48:36.786] Config(@PART[xenon-radial-125-1]) TweakScale/patches/NFT_TweakScale/@PART[xenon-radial-125-1] [LOG 17:48:36.786] Config(@PART[xenon-125-1]) TweakScale/patches/NFT_TweakScale/@PART[xenon-125-1] [LOG 17:48:36.786] Config(@PART[xenon-125-2]) TweakScale/patches/NFT_TweakScale/@PART[xenon-125-2] [LOG 17:48:36.786] Config(@PART[xenon-125-3]) TweakScale/patches/NFT_TweakScale/@PART[xenon-125-3] [LOG 17:48:36.786] Config(@PART[xenon-25-1]) TweakScale/patches/NFT_TweakScale/@PART[xenon-25-1] [LOG 17:48:36.786] Config(@PART[xenon-25-2]) TweakScale/patches/NFT_TweakScale/@PART[xenon-25-2] [LOG 17:48:36.786] Config(@PART[xenon-25-3]) TweakScale/patches/NFT_TweakScale/@PART[xenon-25-3] [LOG 17:48:36.786] Config(@PART[trusslrg-adapter]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-adapter] [LOG 17:48:36.786] Config(@PART[orbitalEngine-25]) TweakScale/patches/NFT_TweakScale/@PART[orbitalEngine-25] [LOG 17:48:36.786] Config(@PART[orbitalEngine-375]) TweakScale/patches/NFT_TweakScale/@PART[orbitalEngine-375] [LOG 17:48:36.786] Config(@PART[orbitalEngine-0625]) TweakScale/patches/NFT_TweakScale/@PART[orbitalEngine-0625] [LOG 17:48:36.786] Config(@PART[servicetank-25]) TweakScale/patches/NFT_TweakScale/@PART[servicetank-25] [LOG 17:48:36.786] Config(@PART[servicetank-375]) TweakScale/patches/NFT_TweakScale/@PART[servicetank-375] [LOG 17:48:36.786] Config(@PART[landingleg-pod-1]) TweakScale/patches/NFT_TweakScale/@PART[landingleg-pod-1] [LOG 17:48:36.786] Config(@PART[docking-25]) TweakScale/patches/NFT_TweakScale/@PART[docking-25] [LOG 17:48:36.786] Config(@PART[trusslrg-hub-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-hub-1] [LOG 17:48:36.786] Config(@PART[trusslrg-hub-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-hub-2] [LOG 17:48:36.786] Config(@PART[trusslrg-docking-25]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-docking-25] [LOG 17:48:36.786] Config(@PART[trusslrg-docking-125]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-docking-125] [LOG 17:48:36.787] Config(@PART[trusslrg-adapter-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-adapter-1] [LOG 17:48:36.787] Config(@PART[trusslrg-adapter-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-adapter-2] [LOG 17:48:36.787] Config(@PART[trusslrg-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-1] [LOG 17:48:36.787] Config(@PART[trusslrg-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-2] [LOG 17:48:36.787] Config(@PART[trusslrg-3]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-3] [LOG 17:48:36.787] Config(@PART[trusslrg-attach]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-attach] [LOG 17:48:36.787] Config(@PART[trusslrg-crew-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-crew-1] [LOG 17:48:36.787] Config(@PART[trusslrg-crew-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-crew-2] [LOG 17:48:36.787] Config(@PART[trusslrg-hollow-1]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-hollow-1] [LOG 17:48:36.787] Config(@PART[trusslrg-hollow-2]) TweakScale/patches/NFT_TweakScale/@PART[trusslrg-hollow-2] [LOG 17:48:36.787] Config(@PART[adapter-rad-0625]) TweakScale/patches/NFT_TweakScale/@PART[adapter-rad-0625] [LOG 17:48:36.787] Config(@PART[adapter-rad-125]) TweakScale/patches/NFT_TweakScale/@PART[adapter-rad-125] [LOG 17:48:36.787] Config(@PART[adapter-375-25]) TweakScale/patches/NFT_TweakScale/@PART[adapter-375-25] [LOG 17:48:36.787] Config(@PART[adapter-125-0625-2]) TweakScale/patches/NFT_TweakScale/@PART[adapter-125-0625-2] [LOG 17:48:36.787] Config(@PART[adapter-125-0625-3]) TweakScale/patches/NFT_TweakScale/@PART[adapter-125-0625-3] [LOG 17:48:36.787] Config(@PART[adapter-125-0625-4]) TweakScale/patches/NFT_TweakScale/@PART[adapter-125-0625-4] [LOG 17:48:36.787] Config(@PART[adapter-25-0625-5]) TweakScale/patches/NFT_TweakScale/@PART[adapter-25-0625-5] [LOG 17:48:36.787] Config(@PART[adapter-25-0625-7]) TweakScale/patches/NFT_TweakScale/@PART[adapter-25-0625-7] [LOG 17:48:36.787] Config(@PART[adapter-25-0625-9]) TweakScale/patches/NFT_TweakScale/@PART[adapter-25-0625-9] [LOG 17:48:36.787] Config(@PART[adapter-25-125-3]) TweakScale/patches/NFT_TweakScale/@PART[adapter-25-125-3] [LOG 17:48:36.787] Config(@PART[adapter-25-125]) TweakScale/patches/NFT_TweakScale/@PART[adapter-25-125] [LOG 17:48:36.787] Config(@PART[NP_couplerp_375m_5x125m_Plate]) TweakScale/patches/NP_TweakScale/@PART[NP_couplerp_375m_5x125m_Plate] [LOG 17:48:36.787] Config(@PART[NP_couplerp_375m_5x125m_Plate_slim]) TweakScale/patches/NP_TweakScale/@PART[NP_couplerp_375m_5x125m_Plate_slim] [LOG 17:48:36.787] Config(@PART[NP_couplerp_375m_5x125m_Plate_slim]) TweakScale/patches/NP_TweakScale/@PART[NP_couplerp_375m_5x125m_Plate_slim] [LOG 17:48:36.787] Config(@PART[NP.couplerp.25m.2x125m.Plate]) TweakScale/patches/NP_TweakScale/@PART[NP.couplerp.25m.2x125m.Plate] [LOG 17:48:36.787] Config(@PART[NP.interstage.375m.5m.tank]) TweakScale/patches/NP_TweakScale/@PART[NP.interstage.375m.5m.tank] [LOG 17:48:36.787] Config(@PART[NP_aux_125m_retropack]) TweakScale/patches/NP_TweakScale/@PART[NP_aux_125m_retropack] [LOG 17:48:36.787] Config(@PART[NP_aux_payloadassist]) TweakScale/patches/NP_TweakScale/@PART[NP_aux_payloadassist] [LOG 17:48:36.787] Config(@PART[NP_aux_radialliquidbooster]) TweakScale/patches/NP_TweakScale/@PART[NP_aux_radialliquidbooster] [LOG 17:48:36.787] Config(@PART[NP_aux_radialsolidbooster]) TweakScale/patches/NP_TweakScale/@PART[NP_aux_radialsolidbooster] [LOG 17:48:36.787] Config(@PART[NP_aux_radiallargeliquidbooster]) TweakScale/patches/NP_TweakScale/@PART[NP_aux_radiallargeliquidbooster] [LOG 17:48:36.787] Config(@PART[NP_aux_radialspinbooster]) TweakScale/patches/NP_TweakScale/@PART[NP_aux_radialspinbooster] [LOG 17:48:36.787] Config(@PART[NP_aux_radialullagebooster]) TweakScale/patches/NP_TweakScale/@PART[NP_aux_radialullagebooster] [LOG 17:48:36.787] Config(@PART[NP_aux_radialvernier]) TweakScale/patches/NP_TweakScale/@PART[NP_aux_radialvernier] [LOG 17:48:36.787] Config(@PART[NP_coupler_125m_DualCoupler]) TweakScale/patches/NP_TweakScale/@PART[NP_coupler_125m_DualCoupler] [LOG 17:48:36.787] Config(@PART[NP_coupler_125m_lateral]) TweakScale/patches/NP_TweakScale/@PART[NP_coupler_125m_lateral] [LOG 17:48:36.787] Config(@PART[NP_coupler_125m_LateralTricoupler]) TweakScale/patches/NP_TweakScale/@PART[NP_coupler_125m_LateralTricoupler] [LOG 17:48:36.787] Config(@PART[NP_coupler_125m_QuadCoupler]) TweakScale/patches/NP_TweakScale/@PART[NP_coupler_125m_QuadCoupler] [LOG 17:48:36.787] Config(@PART[NP_coupler_25m_RadialClamp]) TweakScale/patches/NP_TweakScale/@PART[NP_coupler_25m_RadialClamp] [LOG 17:48:36.787] Config(@PART[NP_coupler_125m_RadialFlange]) TweakScale/patches/NP_TweakScale/@PART[NP_coupler_125m_RadialFlange] [LOG 17:48:36.787] Config(@PART[NP_decoupler_radial_125m_Flange]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_radial_125m_Flange] [LOG 17:48:36.787] Config(@PART[NP_decoupler_stack_125m_Hollow]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_stack_125m_Hollow] [LOG 17:48:36.787] Config(@PART[NP_decoupler_stack_125m_nano]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_stack_125m_nano] [LOG 17:48:36.787] Config(@PART[NP_decoupler_stack_125m_Light]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_stack_125m_Light] [LOG 17:48:36.787] Config(@PART[NP_decoupler_stack_125m]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_stack_125m] [LOG 17:48:36.787] Config(@PART[NP_decoupler_stack_25m]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_stack_25m] [LOG 17:48:36.787] Config(@PART[NP_decoupler_stack_375m]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_stack_375m] [LOG 17:48:36.787] Config(@PART[NP_decoupler_stack_5m]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_stack_5m] [LOG 17:48:36.788] Config(@PART[NP_decoupler_radial_125m_Aero]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_radial_125m_Aero] [LOG 17:48:36.788] Config(@PART[NP_decoupler_radial_25m_Aero]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_radial_25m_Aero] [LOG 17:48:36.788] Config(@PART[NP_decoupler_radial_Strut]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_radial_Strut] [LOG 17:48:36.788] Config(@PART[NP_decoupler_stack_125m_Mini]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_stack_125m_Mini] [LOG 17:48:36.788] Config(@PART[NP_decoupler_stack_25m_Mini]) TweakScale/patches/NP_TweakScale/@PART[NP_decoupler_stack_25m_Mini] [LOG 17:48:36.788] Config(@PART[NP_lfe_125m_BearcatSingle]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_125m_BearcatSingle] [LOG 17:48:36.788] Config(@PART[NP_lfe_125m_AerospikeEngine]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_125m_AerospikeEngine] [LOG 17:48:36.788] Config(@PART[NP_lfe_125m_berthaminiquad]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_125m_berthaminiquad] [LOG 17:48:36.788] Config(@PART[NP_lfe_125m_K2XEngine]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_125m_K2XEngine] [LOG 17:48:36.788] Config(@PART[NP_lfe_375m_K2X]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_375m_K2X] [LOG 17:48:36.788] Config(@PART[NP_lfe_5m_K2X]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_5m_K2X] [LOG 17:48:36.788] Config(@PART[NP_lfe_125m_RMA3]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_125m_RMA3] [LOG 17:48:36.788] Config(@PART[NP_lfe_25m_4X800Engine]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_25m_4X800Engine] [LOG 17:48:36.788] Config(@PART[NP_lfe_25m_BroncoSingle]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_25m_BroncoSingle] [LOG 17:48:36.788] Config(@PART[NP_lfe_25m_Orbitalbertha]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_25m_Orbitalbertha] [LOG 17:48:36.788] Config(@PART[NP_lfe_375m_Bearcat3x]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_375m_Bearcat3x] [LOG 17:48:36.788] Config(@PART[NP_lfe_375m_EnergiaQuad]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_375m_EnergiaQuad] [LOG 17:48:36.788] Config(@PART[NP_lfe_375m_LittleMother]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_375m_LittleMother] [LOG 17:48:36.788] Config(@PART[NP_lfe_5m_AdvHL]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_5m_AdvHL] [LOG 17:48:36.788] Config(@PART[NP_lfe_5m_Bearcat5x]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_5m_Bearcat5x] [LOG 17:48:36.788] Config(@PART[NP_lfe_5m_TheMatriarch]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_5m_TheMatriarch] [LOG 17:48:36.788] Config(@PART[NP_lfe_2_5m_MicroMother]) TweakScale/patches/NP_TweakScale/@PART[NP_lfe_2_5m_MicroMother] [LOG 17:48:36.788] Config(@PART[NP_fairings_25m_Nose]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_25m_Nose] [LOG 17:48:36.788] Config(@PART[NP_fairings_375m_Nose]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_375m_Nose] [LOG 17:48:36.788] Config(@PART[NP_fairings_5m_Nose]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_5m_Nose] [LOG 17:48:36.788] Config(@PART[NP_fairings_25m_NoseCone]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_25m_NoseCone] [LOG 17:48:36.788] Config(@PART[NP_fairings_375m_NoseCone]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_375m_NoseCone] [LOG 17:48:36.788] Config(@PART[NP_fairings5m_NoseCone]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings5m_NoseCone] [LOG 17:48:36.788] Config(@PART[NP_fairings_25m_Plate]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_25m_Plate] [LOG 17:48:36.788] Config(@PART[NP_fairings_25m_Wall]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_25m_Wall] [LOG 17:48:36.788] Config(@PART[NP_fairings_375m_Wall]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_375m_Wall] [LOG 17:48:36.788] Config(@PART[NP_fairings_5m_Wall]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_5m_Wall] [LOG 17:48:36.788] Config(@PART[NP_fairings_25m_Wallshort]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_25m_Wallshort] [LOG 17:48:36.788] Config(@PART[NP_fairings_375m_Wallshort]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_375m_Wallshort] [LOG 17:48:36.788] Config(@PART[NP_fairings_5m_Wallshort]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_5m_Wallshort] [LOG 17:48:36.788] Config(@PART[NP_fairings_375m_plate]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_375m_plate] [LOG 17:48:36.788] Config(@PART[NP_fairings_5m_plate]) TweakScale/patches/NP_TweakScale/@PART[NP_fairings_5m_plate] [LOG 17:48:36.788] Config(@PART[NP_FreyjaProbeEng]) TweakScale/patches/NP_TweakScale/@PART[NP_FreyjaProbeEng] [LOG 17:48:36.788] Config(@PART[NP_FreyjaRCS]) TweakScale/patches/NP_TweakScale/@PART[NP_FreyjaRCS] [LOG 17:48:36.788] Config(@PART[NP_Freyja_Trunk]) TweakScale/patches/NP_TweakScale/@PART[NP_Freyja_Trunk] [LOG 17:48:36.788] Config(@PART[NP_lft_K1tank_2_5mL]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_K1tank_2_5mL] [LOG 17:48:36.788] Config(@PART[NP_lft_625m_1m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_625m_1m] [LOG 17:48:36.788] Config(@PART[NP_lft_125m_15m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_125m_15m] [LOG 17:48:36.788] Config(@PART[NP_lft_125m_3m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_125m_3m] [LOG 17:48:36.788] Config(@PART[NP_lft_125m_6m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_125m_6m] [LOG 17:48:36.788] Config(@PART[NP_lft_25m_12m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_25m_12m] [LOG 17:48:36.788] Config(@PART[NP_lft_25m_15m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_25m_15m] [LOG 17:48:36.789] Config(@PART[NP_lft_25m_3m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_25m_3m] [LOG 17:48:36.789] Config(@PART[NP_lft_25m_6m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_25m_6m] [LOG 17:48:36.789] Config(@PART[NP_lft_25m_BigLanderTank]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_25m_BigLanderTank] [LOG 17:48:36.789] Config(@PART[NP_lft_3_75m_2_25m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_3_75m_2_25m] [LOG 17:48:36.789] Config(@PART[NP_lft_25m_4_5m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_25m_4_5m] [LOG 17:48:36.789] Config(@PART[NP_lft_375m_9m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_375m_9m] [LOG 17:48:36.789] Config(@PART[NP_lft_500m_12m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_500m_12m] [LOG 17:48:36.789] Config(@PART[NP_lft_5_0m_3m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_5_0m_3m] [LOG 17:48:36.789] Config(@PART[NP_lft_5_0m_6m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_5_0m_6m] [LOG 17:48:36.789] Config(@PART[NP_LES_EscapeTower_Large]) TweakScale/patches/NP_TweakScale/@PART[NP_LES_EscapeTower_Large] [LOG 17:48:36.789] Config(@PART[NP_LES_EscapeTower_Small]) TweakScale/patches/NP_TweakScale/@PART[NP_LES_EscapeTower_Small] [LOG 17:48:36.789] Config(@PART[NP_LES_RCS_nanocone]) TweakScale/patches/NP_TweakScale/@PART[NP_LES_RCS_nanocone] [LOG 17:48:36.789] Config(@PART[NP_zmisc_B5_Fin]) TweakScale/patches/NP_TweakScale/@PART[NP_zmisc_B5_Fin] [LOG 17:48:36.789] Config(@PART[NP_leg_heavyleg]) TweakScale/patches/NP_TweakScale/@PART[NP_leg_heavyleg] [LOG 17:48:36.789] Config(@PART[NP_leg_landerpeg]) TweakScale/patches/NP_TweakScale/@PART[NP_leg_landerpeg] [LOG 17:48:36.789] Config(@PART[NP_zmisc_heavywinglet]) TweakScale/patches/NP_TweakScale/@PART[NP_zmisc_heavywinglet] [LOG 17:48:36.789] Config(@PART[NP_zmisc_SPFin]) TweakScale/patches/NP_TweakScale/@PART[NP_zmisc_SPFin] [LOG 17:48:36.789] Config(@PART[NP_zmisc_strake]) TweakScale/patches/NP_TweakScale/@PART[NP_zmisc_strake] [LOG 17:48:36.789] Config(@PART[NP_zmisc_wingloadshort]) TweakScale/patches/NP_TweakScale/@PART[NP_zmisc_wingloadshort] [LOG 17:48:36.789] Config(@PART[NP_zmisc_wingloadlong]) TweakScale/patches/NP_TweakScale/@PART[NP_zmisc_wingloadlong] [LOG 17:48:36.789] Config(@PART[NP_microNoseCone]) TweakScale/patches/NP_TweakScale/@PART[NP_microNoseCone] [LOG 17:48:36.789] Config(@PART[NP_nosecone_125m]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_125m] [LOG 17:48:36.789] Config(@PART[NP_nosecone_125m_CargoShell]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_125m_CargoShell] [LOG 17:48:36.789] Config(@PART[NP_nosecone_125m_FuelTankCap]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_125m_FuelTankCap] [LOG 17:48:36.789] Config(@PART[NP_nosecone_125m_ParachuteAdapter]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_125m_ParachuteAdapter] [LOG 17:48:36.789] Config(@PART[NP_nosecone_125m_small]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_125m_small] [LOG 17:48:36.789] Config(@PART[NP_nosecone_125m_Tailcone]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_125m_Tailcone] [LOG 17:48:36.789] Config(@PART[NP_nosecone_25m]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_25m] [LOG 17:48:36.789] Config(@PART[NP_nosecone_25m_cargoshell]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_25m_cargoshell] [LOG 17:48:36.789] Config(@PART[NP_OdinFlightPack]) TweakScale/patches/NP_TweakScale/@PART[NP_OdinFlightPack] [LOG 17:48:36.789] Config(@PART[NP_Odin_Trunk]) TweakScale/patches/NP_TweakScale/@PART[NP_Odin_Trunk] [LOG 17:48:36.789] Config(@PART[NP_chute_FuelTankCapParachute]) TweakScale/patches/NP_TweakScale/@PART[NP_chute_FuelTankCapParachute] [LOG 17:48:36.789] Config(@PART[NP_chute_1_25m_stackparachute]) TweakScale/patches/NP_TweakScale/@PART[NP_chute_1_25m_stackparachute] [LOG 17:48:36.789] Config(@PART[NP_chute_2_5m_stackparachute]) TweakScale/patches/NP_TweakScale/@PART[NP_chute_2_5m_stackparachute] [LOG 17:48:36.789] Config(@PART[NP_rcstank_125m]) TweakScale/patches/NP_TweakScale/@PART[NP_rcstank_125m] [LOG 17:48:36.789] Config(@PART[NP_rcstank_25m]) TweakScale/patches/NP_TweakScale/@PART[NP_rcstank_25m] [LOG 17:48:36.789] Config(@PART[NP_rcstank_375m]) TweakScale/patches/NP_TweakScale/@PART[NP_rcstank_375m] [LOG 17:48:36.789] Config(@PART[NP_sas_125m]) TweakScale/patches/NP_TweakScale/@PART[NP_sas_125m] [LOG 17:48:36.789] Config(@PART[NP_sas_25m]) TweakScale/patches/NP_TweakScale/@PART[NP_sas_25m] [LOG 17:48:36.789] Config(@PART[NP_sas_375m]) TweakScale/patches/NP_TweakScale/@PART[NP_sas_375m] [LOG 17:48:36.789] Config(@PART[NP_sas_500m]) TweakScale/patches/NP_TweakScale/@PART[NP_sas_500m] [LOG 17:48:36.789] Config(@PART[NP_lfb_25m_Adv]) TweakScale/patches/NP_TweakScale/@PART[NP_lfb_25m_Adv] [LOG 17:48:36.789] Config(@PART[NP_lfb_25m_conical]) TweakScale/patches/NP_TweakScale/@PART[NP_lfb_25m_conical] [LOG 17:48:36.789] Config(@PART[NP_srb_radialbooster]) TweakScale/patches/NP_TweakScale/@PART[NP_srb_radialbooster] [LOG 17:48:36.789] Config(@PART[NP_SRB_0_625m_AdvSRBNose]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_0_625m_AdvSRBNose] [LOG 17:48:36.789] Config(@PART[NP_SRB_1_25m_AdvSRBNose]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_1_25m_AdvSRBNose] [LOG 17:48:36.789] Config(@PART[NP_SRB_2_5m_AdvSRB2]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_2_5m_AdvSRB2] [LOG 17:48:36.789] Config(@PART[NP_SRB_2_5m_AdvSRB3]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_2_5m_AdvSRB3] [LOG 17:48:36.789] Config(@PART[NP_SRB_2_5m_AdvSRB4]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_2_5m_AdvSRB4] [LOG 17:48:36.790] Config(@PART[NP_SRB_2_5m_AdvSRBNose]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_2_5m_AdvSRBNose] [LOG 17:48:36.790] Config(@PART[NP_nosecone_25m_SRBTaper]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_25m_SRBTaper] [LOG 17:48:36.790] Config(@PART[NP_SRB_0_625m_AdvBlite3]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_0_625m_AdvBlite3] [LOG 17:48:36.790] Config(@PART[NP_nosecone_0625m_SRBTaper]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_0625m_SRBTaper] [LOG 17:48:36.790] Config(@PART[NP_SRB_0_625m_AdvBlitePAM]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_0_625m_AdvBlitePAM] [LOG 17:48:36.790] Config(@PART[NP_SRB_1_25m_AdvBlite2]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_1_25m_AdvBlite2] [LOG 17:48:36.790] Config(@PART[NP_SRB_1_25m_AdvBlite3]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_1_25m_AdvBlite3] [LOG 17:48:36.790] Config(@PART[NP_SRB_1_25m_AdvBlite4]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_1_25m_AdvBlite4] [LOG 17:48:36.790] Config(@PART[NP_nosecone_125m_SRBTaper]) TweakScale/patches/NP_TweakScale/@PART[NP_nosecone_125m_SRBTaper] [LOG 17:48:36.790] Config(@PART[NP_SRB_1_25m_AdvBlitePAM]) TweakScale/patches/NP_TweakScale/@PART[NP_SRB_1_25m_AdvBlitePAM] [LOG 17:48:36.790] Config(@PART[NP_srb_miniBooster]) TweakScale/patches/NP_TweakScale/@PART[NP_srb_miniBooster] [LOG 17:48:36.790] Config(@PART[NP_ThorLanderRCS]) TweakScale/patches/NP_TweakScale/@PART[NP_ThorLanderRCS] [LOG 17:48:36.790] Config(@PART[NP_ThorLanderRCST]) TweakScale/patches/NP_TweakScale/@PART[NP_ThorLanderRCST] [LOG 17:48:36.790] Config(@PART[NP_YMRCSBlockHeavy]) TweakScale/patches/NP_TweakScale/@PART[NP_YMRCSBlockHeavy] [LOG 17:48:36.790] Config(@PART[NP_YMRCSBlockLight]) TweakScale/patches/NP_TweakScale/@PART[NP_YMRCSBlockLight] [LOG 17:48:36.790] Config(@PART[NP_YMASasModule]) TweakScale/patches/NP_TweakScale/@PART[NP_YMASasModule] [LOG 17:48:36.790] Config(@PART[NP_lft_K1tank_5m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_K1tank_5m] [LOG 17:48:36.790] Config(@PART[NP_lft_K1tank_3_75m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_K1tank_3_75m] [LOG 17:48:36.790] Config(@PART[NP_lft_K1tank_2_5m]) TweakScale/patches/NP_TweakScale/@PART[NP_lft_K1tank_2_5m] [LOG 17:48:36.790] Config(@PART[NP_interstage_125m_25m_tank]) TweakScale/patches/NP_TweakScale/@PART[NP_interstage_125m_25m_tank] [LOG 17:48:36.790] Config(@PART[NP_interstage_25m_125m_plate]) TweakScale/patches/NP_TweakScale/@PART[NP_interstage_25m_125m_plate] [LOG 17:48:36.790] Config(@PART[NP_interstage_25m_375m_tank]) TweakScale/patches/NP_TweakScale/@PART[NP_interstage_25m_375m_tank] [LOG 17:48:36.790] Config(@PART[NP_interstage_375m_25m_plate]) TweakScale/patches/NP_TweakScale/@PART[NP_interstage_375m_25m_plate] [LOG 17:48:36.790] Config(@PART[NP_interstage_375m_5m_tank]) TweakScale/patches/NP_TweakScale/@PART[NP_interstage_375m_5m_tank] [LOG 17:48:36.790] Config(@PART[NP_interstage_5m_375m_plate]) TweakScale/patches/NP_TweakScale/@PART[NP_interstage_5m_375m_plate] [LOG 17:48:36.790] Config(@PART[NP_interstage_375m_5m_SAS]) TweakScale/patches/NP_TweakScale/@PART[NP_interstage_375m_5m_SAS] [LOG 17:48:36.790] Config(@PART[engine_darkDrive]) TweakScale/patches/OPT_TweakScale/@PART[engine_darkDrive] [LOG 17:48:36.790] Config(@PART[AAengine]) TweakScale/patches/OPT_TweakScale/@PART[AAengine] [LOG 17:48:36.790] Config(@PART[opt_nebula_engine]) TweakScale/patches/OPT_TweakScale/@PART[opt_nebula_engine] [LOG 17:48:36.790] Config(@PART[opt_mk2_engine]) TweakScale/patches/OPT_TweakScale/@PART[opt_mk2_engine] [LOG 17:48:36.790] Config(@PART[turboRamJet]) TweakScale/patches/OPT_TweakScale/@PART[turboRamJet] [LOG 17:48:36.790] Config(@PART[OPTdropTank]) TweakScale/patches/OPT_TweakScale/@PART[OPTdropTank] [LOG 17:48:36.790] Config(@PART[opt_gears_l]) TweakScale/patches/OPT_TweakScale/@PART[opt_gears_l] [LOG 17:48:36.790] Config(@PART[opt_gears_m]) TweakScale/patches/OPT_TweakScale/@PART[opt_gears_m] [LOG 17:48:36.790] Config(@PART[opt_gears_s]) TweakScale/patches/OPT_TweakScale/@PART[opt_gears_s] [LOG 17:48:36.790] Config(@PART[mk2_ramIntake]) TweakScale/patches/OPT_TweakScale/@PART[mk2_ramIntake] [LOG 17:48:36.790] Config(@PART[opt_stabilizer_a]) TweakScale/patches/OPT_TweakScale/@PART[opt_stabilizer_a] [LOG 17:48:36.790] Config(@PART[opt_stabilizer_b]) TweakScale/patches/OPT_TweakScale/@PART[opt_stabilizer_b] [LOG 17:48:36.790] Config(@PART[opt_pylon_a]) TweakScale/patches/OPT_TweakScale/@PART[opt_pylon_a] [LOG 17:48:36.790] Config(@PART[opt_pylon_b]) TweakScale/patches/OPT_TweakScale/@PART[opt_pylon_b] [LOG 17:48:36.790] Config(@PART[opt_wing_a]) TweakScale/patches/OPT_TweakScale/@PART[opt_wing_a] [LOG 17:48:36.790] Config(@PART[opt_wing_b]) TweakScale/patches/OPT_TweakScale/@PART[opt_wing_b] [LOG 17:48:36.790] Config(@PART[opt_wing_c]) TweakScale/patches/OPT_TweakScale/@PART[opt_wing_c] [LOG 17:48:36.790] Config(@PART[opt_wing_a_elevon]) TweakScale/patches/OPT_TweakScale/@PART[opt_wing_a_elevon] [LOG 17:48:36.790] Config(@PART[opt_wing_b_elevon]) TweakScale/patches/OPT_TweakScale/@PART[opt_wing_b_elevon] [LOG 17:48:36.790] Config(@PART[opt_wing_c_elevon1]) TweakScale/patches/OPT_TweakScale/@PART[opt_wing_c_elevon1] [LOG 17:48:36.790] Config(@PART[opt_wing_c_elevon2]) TweakScale/patches/OPT_TweakScale/@PART[opt_wing_c_elevon2] [LOG 17:48:36.790] Config(@PART[opt_winglet_a]) TweakScale/patches/OPT_TweakScale/@PART[opt_winglet_a] [LOG 17:48:36.790] Config(@PART[opt_winglet_b]) TweakScale/patches/OPT_TweakScale/@PART[opt_winglet_b] [LOG 17:48:36.791] Config(@PART[opt_winglet_c]) TweakScale/patches/OPT_TweakScale/@PART[opt_winglet_c] [LOG 17:48:36.791] Config(@PART[opt_winglet_a_elevon]) TweakScale/patches/OPT_TweakScale/@PART[opt_winglet_a_elevon] [LOG 17:48:36.791] Config(@PART[opt_winglet_b_elevon]) TweakScale/patches/OPT_TweakScale/@PART[opt_winglet_b_elevon] [LOG 17:48:36.791] Config(@PART[opt_winglet_c_elevon]) TweakScale/patches/OPT_TweakScale/@PART[opt_winglet_c_elevon] [LOG 17:48:36.791] Config(@PART[RLA_sm_biadap]) TweakScale/patches/RLA_TweakScale/@PART[RLA_sm_biadap] [LOG 17:48:36.791] Config(@PART[RLA_sm_quadadap]) TweakScale/patches/RLA_TweakScale/@PART[RLA_sm_quadadap] [LOG 17:48:36.791] Config(@PART[RLA_sm_triadap]) TweakScale/patches/RLA_TweakScale/@PART[RLA_sm_triadap] [LOG 17:48:36.791] Config(@PART[RLA_arcjet_med]) TweakScale/patches/RLA_TweakScale/@PART[RLA_arcjet_med] [LOG 17:48:36.791] Config(@PART[RLA_arcjet_micro]) TweakScale/patches/RLA_TweakScale/@PART[RLA_arcjet_micro] [LOG 17:48:36.791] Config(@PART[RLA_arcjet_small]) TweakScale/patches/RLA_TweakScale/@PART[RLA_arcjet_small] [LOG 17:48:36.791] Config(@PART[RLA_ion_med]) TweakScale/patches/RLA_TweakScale/@PART[RLA_ion_med] [LOG 17:48:36.791] Config(@PART[RLA_ion_micro_r]) TweakScale/patches/RLA_TweakScale/@PART[RLA_ion_micro_r] [LOG 17:48:36.791] Config(@PART[RLA_ion_small]) TweakScale/patches/RLA_TweakScale/@PART[RLA_ion_small] [LOG 17:48:36.791] Config(@PART[RLA_resistojet_med]) TweakScale/patches/RLA_TweakScale/@PART[RLA_resistojet_med] [LOG 17:48:36.791] Config(@PART[RLA_resistojet_micro_r]) TweakScale/patches/RLA_TweakScale/@PART[RLA_resistojet_micro_r] [LOG 17:48:36.791] Config(@PART[RLA_resistojet_small]) TweakScale/patches/RLA_TweakScale/@PART[RLA_resistojet_small] [LOG 17:48:36.791] Config(@PART[RLA_xenonmed]) TweakScale/patches/RLA_TweakScale/@PART[RLA_xenonmed] [LOG 17:48:36.791] Config(@PART[RLA_xenonmed2]) TweakScale/patches/RLA_TweakScale/@PART[RLA_xenonmed2] [LOG 17:48:36.791] Config(@PART[RLA_xenonmed4]) TweakScale/patches/RLA_TweakScale/@PART[RLA_xenonmed4] [LOG 17:48:36.791] Config(@PART[RLA_xenonsmall]) TweakScale/patches/RLA_TweakScale/@PART[RLA_xenonsmall] [LOG 17:48:36.791] Config(@PART[RLA_xenonsmall2]) TweakScale/patches/RLA_TweakScale/@PART[RLA_xenonsmall2] [LOG 17:48:36.791] Config(@PART[RLA_xenonsmall4]) TweakScale/patches/RLA_TweakScale/@PART[RLA_xenonsmall4] [LOG 17:48:36.791] Config(@PART[RLA_mmrtg]) TweakScale/patches/RLA_TweakScale/@PART[RLA_mmrtg] [LOG 17:48:36.791] Config(@PART[RLA_ASRG]) TweakScale/patches/RLA_TweakScale/@PART[RLA_ASRG] [LOG 17:48:36.791] Config(@PART[RLA_CSRG]) TweakScale/patches/RLA_TweakScale/@PART[RLA_CSRG] [LOG 17:48:36.791] Config(@PART[RLA_radialjet]) TweakScale/patches/RLA_TweakScale/@PART[RLA_radialjet] [LOG 17:48:36.791] Config(@PART[RLA_linearspike_med]) TweakScale/patches/RLA_TweakScale/@PART[RLA_linearspike_med] [LOG 17:48:36.791] Config(@PART[RLA_mp_med]) TweakScale/patches/RLA_TweakScale/@PART[RLA_mp_med] [LOG 17:48:36.791] Config(@PART[RLA_mp_rad]) TweakScale/patches/RLA_TweakScale/@PART[RLA_mp_rad] [LOG 17:48:36.791] Config(@PART[RLA_mp_small]) TweakScale/patches/RLA_TweakScale/@PART[RLA_mp_small] [LOG 17:48:36.791] Config(@PART[RLA_s_highengine]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_highengine] [LOG 17:48:36.791] Config(@PART[RLA_s_lowengine]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_lowengine] [LOG 17:48:36.791] Config(@PART[RLA_s_midengine]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_midengine] [LOG 17:48:36.791] Config(@PART[RLA_s_nerva]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_nerva] [LOG 17:48:36.791] Config(@PART[RLA_s_mptank_rad]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_mptank_rad] [LOG 17:48:36.791] Config(@PART[RLA_s_tank1]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_tank1] [LOG 17:48:36.791] Config(@PART[RLA_s_tank2]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_tank2] [LOG 17:48:36.791] Config(@PART[RLA_s_tank3]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_tank3] [LOG 17:48:36.791] Config(@PART[RLA_s_tank4]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_tank4] [LOG 17:48:36.791] Config(@PART[RLA_rcs_micro]) TweakScale/patches/RLA_TweakScale/@PART[RLA_rcs_micro] [LOG 17:48:36.791] Config(@PART[RLA_rcs_micro45]) TweakScale/patches/RLA_TweakScale/@PART[RLA_rcs_micro45] [LOG 17:48:36.791] Config(@PART[RLA_rcs_linear]) TweakScale/patches/RLA_TweakScale/@PART[RLA_rcs_linear] [LOG 17:48:36.791] Config(@PART[RLA_rcs_2way]) TweakScale/patches/RLA_TweakScale/@PART[RLA_rcs_2way] [LOG 17:48:36.791] Config(@PART[RLA_rcs_5way]) TweakScale/patches/RLA_TweakScale/@PART[RLA_rcs_5way] [LOG 17:48:36.791] Config(@PART[RLA_rcs45]) TweakScale/patches/RLA_TweakScale/@PART[RLA_rcs45] [LOG 17:48:36.791] Config(@PART[RLA_rcs45_2way]) TweakScale/patches/RLA_TweakScale/@PART[RLA_rcs45_2way] [LOG 17:48:36.792] Config(@PART[RLA_radatch]) TweakScale/patches/RLA_TweakScale/@PART[RLA_radatch] [LOG 17:48:36.792] Config(@PART[RLA_decoupS]) TweakScale/patches/RLA_TweakScale/@PART[RLA_decoupS] [LOG 17:48:36.792] Config(@PART[RLA_radextmed]) TweakScale/patches/RLA_TweakScale/@PART[RLA_radextmed] [LOG 17:48:36.792] Config(@PART[RLA_radextsmall]) TweakScale/patches/RLA_TweakScale/@PART[RLA_radextsmall] [LOG 17:48:36.792] Config(@PART[RLA_s_nosecone]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_nosecone] [LOG 17:48:36.792] Config(@PART[RLA_x_s_tank]) TweakScale/patches/RLA_TweakScale/@PART[RLA_x_s_tank] [LOG 17:48:36.792] Config(@PART[RLA_l_mptank]) TweakScale/patches/RLA_TweakScale/@PART[RLA_l_mptank] [LOG 17:48:36.792] Config(@PART[RLA_m_mptank]) TweakScale/patches/RLA_TweakScale/@PART[RLA_m_mptank] [LOG 17:48:36.792] Config(@PART[RLA_s_mptank]) TweakScale/patches/RLA_TweakScale/@PART[RLA_s_mptank] [LOG 17:48:36.792] Config(@PART[SDHI_2.5_AvionicsRing]) TweakScale/patches/SDHI_SMS_TweakScale/@PART[SDHI_2.5_AvionicsRing] [LOG 17:48:36.792] Config(@PART[SDHI_2.5_Heatshield]) TweakScale/patches/SDHI_SMS_TweakScale/@PART[SDHI_2.5_Heatshield] [LOG 17:48:36.792] Config(@PART[SDHI_2.5_Mk1-2AeroShroud]) TweakScale/patches/SDHI_SMS_TweakScale/@PART[SDHI_2.5_Mk1-2AeroShroud] [LOG 17:48:36.792] Config(@PART[SDHI_2.5_ServiceModule]) TweakScale/patches/SDHI_SMS_TweakScale/@PART[SDHI_2.5_ServiceModule] [LOG 17:48:36.792] Config(@PART[SDHI_2.5_ServiceModuleAdapter]) TweakScale/patches/SDHI_SMS_TweakScale/@PART[SDHI_2.5_ServiceModuleAdapter] [LOG 17:48:36.792] Config(@PART[SDHI_2.5_ServiceModuleFairing]) TweakScale/patches/SDHI_SMS_TweakScale/@PART[SDHI_2.5_ServiceModuleFairing] [LOG 17:48:36.792] Config(@PART[SDHI_ParaDock_1_ClampOTron]) TweakScale/patches/SDHI_SMS_TweakScale/@PART[SDHI_ParaDock_1_ClampOTron] [LOG 17:48:36.792] Config(@PART[SDHI_ParaDock_2_IACBM]) TweakScale/patches/SDHI_SMS_TweakScale/@PART[SDHI_ParaDock_2_IACBM] [LOG 17:48:36.792] Config(@PART[SDHI_Rockomax_LV-909_NoFairing]) TweakScale/patches/SDHI_SMS_TweakScale/@PART[SDHI_Rockomax_LV-909_NoFairing] [LOG 17:48:36.792] Config(@PART[TacFoodContainer]) TweakScale/patches/TAC_Tweakscale/@PART[TacFoodContainer] [LOG 17:48:36.792] Config(@PART[TacLifeSupportContainer]) TweakScale/patches/TAC_Tweakscale/@PART[TacLifeSupportContainer] [LOG 17:48:36.792] Config(@PART[TacOxygenContainer]) TweakScale/patches/TAC_Tweakscale/@PART[TacOxygenContainer] [LOG 17:48:36.792] Config(@PART[TacWasteContainer]) TweakScale/patches/TAC_Tweakscale/@PART[TacWasteContainer] [LOG 17:48:36.792] Config(@PART[TacWaterContainer]) TweakScale/patches/TAC_Tweakscale/@PART[TacWaterContainer] [LOG 17:48:36.792] Config(@PART[HexCanOxygen]) TweakScale/patches/TAC_Tweakscale/@PART[HexCanOxygen] [LOG 17:48:36.792] Config(@PART[HexCanDrinkingWater]) TweakScale/patches/TAC_Tweakscale/@PART[HexCanDrinkingWater] [LOG 17:48:36.792] Config(@PART[HexCanFood]) TweakScale/patches/TAC_Tweakscale/@PART[HexCanFood] [LOG 17:48:36.792] Config(@PART[HexCanLifeSupport]) TweakScale/patches/TAC_Tweakscale/@PART[HexCanLifeSupport] [LOG 17:48:36.792] Config(@PART[HexCanLifeSupportWaste]) TweakScale/patches/TAC_Tweakscale/@PART[HexCanLifeSupportWaste] [LOG 17:48:36.792] Config(@PART[TacLifeSupportMFTContainer]) TweakScale/patches/TAC_Tweakscale/@PART[TacLifeSupportMFTContainer] [LOG 17:48:36.792] Config(@PART[HexCanMFTLifeSupport]) TweakScale/patches/TAC_Tweakscale/@PART[HexCanMFTLifeSupport] [LOG 17:48:36.792] Config(@PART[TacAirFilter]) TweakScale/patches/TAC_Tweakscale/@PART[TacAirFilter] [LOG 17:48:36.792] Config(@PART[TacCarbonExtractor]) TweakScale/patches/TAC_Tweakscale/@PART[TacCarbonExtractor] [LOG 17:48:36.792] Config(@PART[TacSabatierRecycler]) TweakScale/patches/TAC_Tweakscale/@PART[TacSabatierRecycler] [LOG 17:48:36.792] Config(@PART[TacWaterPurifier]) TweakScale/patches/TAC_Tweakscale/@PART[TacWaterPurifier] [LOG 17:48:36.792] Config(@PART[TacWaterSplitter]) TweakScale/patches/TAC_Tweakscale/@PART[TacWaterSplitter] [LOG 17:48:36.792] Config(@PART[TALMediumCargo*]:NEEDS[ModsByTal]) TweakScale/patches/TALCargo_TweakScale/@PART[TALMediumCargo*]:NEEDS[ModsByTal] [LOG 17:48:36.792] Config(@PART[TALLargeCargo*]:NEEDS[ModsByTal]) TweakScale/patches/TALCargo_TweakScale/@PART[TALLargeCargo*]:NEEDS[ModsByTal] [LOG 17:48:36.792] Config(@PART[DA?BallShark]) TweakScale/patches/TVPP_TweakScale/@PART[DA?BallShark] [LOG 17:48:36.792] Config(@PART[DA?Bonus?Jet]) TweakScale/patches/TVPP_TweakScale/@PART[DA?Bonus?Jet] [LOG 17:48:36.792] Config(@PART[DA?Tiny?Jet]) TweakScale/patches/TVPP_TweakScale/@PART[DA?Tiny?Jet] [LOG 17:48:36.792] Config(@PART[0.5mControlSurface]) TweakScale/patches/TVPP_TweakScale/@PART[0.5mControlSurface] [LOG 17:48:36.792] Config(@PART[1mControlSurface0]) TweakScale/patches/TVPP_TweakScale/@PART[1mControlSurface0] [LOG 17:48:36.792] Config(@PART[NTBI?2x1?wing]) TweakScale/patches/TVPP_TweakScale/@PART[NTBI?2x1?wing] [LOG 17:48:36.792] Config(@PART[NTBI?2x2?wing]) TweakScale/patches/TVPP_TweakScale/@PART[NTBI?2x2?wing] [LOG 17:48:36.792] Config(@PART[NTBI?3x2?Sloped?Wing]) TweakScale/patches/TVPP_TweakScale/@PART[NTBI?3x2?Sloped?Wing] [LOG 17:48:36.792] Config(@PART[NTBI?3x2?Sloped?Wing2]) TweakScale/patches/TVPP_TweakScale/@PART[NTBI?3x2?Sloped?Wing2] [LOG 17:48:36.792] Config(@PART[NTBI?0.7x0.56?wingtip]) TweakScale/patches/TVPP_TweakScale/@PART[NTBI?0.7x0.56?wingtip] [LOG 17:48:36.792] Config(@PART[TV_Airplane_Tail_Mk1]) TweakScale/patches/TVPP_TweakScale/@PART[TV_Airplane_Tail_Mk1] [LOG 17:48:36.792] Config(@PART[TV_Cone_Intake]) TweakScale/patches/TVPP_TweakScale/@PART[TV_Cone_Intake] [LOG 17:48:36.793] Config(@PART[TV?Conformal?Tank?Short?-?RCS]) TweakScale/patches/TVPP_TweakScale/@PART[TV?Conformal?Tank?Short?-?RCS] [LOG 17:48:36.793] Config(@PART[TV?Conformal?Tank?Long?-?RCS]) TweakScale/patches/TVPP_TweakScale/@PART[TV?Conformal?Tank?Long?-?RCS] [LOG 17:48:36.793] Config(@PART[TV_RamJet_Engine]) TweakScale/patches/TVPP_TweakScale/@PART[TV_RamJet_Engine] [LOG 17:48:36.793] Config(@PART[TV?Tapered?Wing?XS]) TweakScale/patches/TVPP_TweakScale/@PART[TV?Tapered?Wing?XS] [LOG 17:48:36.793] Config(@PART[Libra_Crew_1]) TweakScale/patches/Tantares_TweakScale/@PART[Libra_Crew_1] [LOG 17:48:36.793] Config(@PART[Libra_Engine_1]) TweakScale/patches/Tantares_TweakScale/@PART[Libra_Engine_1] [LOG 17:48:36.793] Config(@PART[Libra_Structure_1]) TweakScale/patches/Tantares_TweakScale/@PART[Libra_Structure_1] [LOG 17:48:36.793] Config(@PART[Libra_Structure_2]) TweakScale/patches/Tantares_TweakScale/@PART[Libra_Structure_2] [LOG 17:48:36.793] Config(@PART[Polaris_Crew_1]) TweakScale/patches/Tantares_TweakScale/@PART[Polaris_Crew_1] [LOG 17:48:36.793] Config(@PART[Polaris_Engine_1]) TweakScale/patches/Tantares_TweakScale/@PART[Polaris_Engine_1] [LOG 17:48:36.793] Config(@PART[Polaris_Heatshield_1]) TweakScale/patches/Tantares_TweakScale/@PART[Polaris_Heatshield_1] [LOG 17:48:36.793] Config(@PART[Orbital_Crew_1]) TweakScale/patches/Tantares_TweakScale/@PART[Orbital_Crew_1] [LOG 17:48:36.793] Config(@PART[Polaris_Structure_1]) TweakScale/patches/Tantares_TweakScale/@PART[Polaris_Structure_1] [LOG 17:48:36.793] Config(@PART[Polaris_Tank_1]) TweakScale/patches/Tantares_TweakScale/@PART[Polaris_Tank_1] [LOG 17:48:36.793] Config(@PART[Spica_Crew_1]) TweakScale/patches/Tantares_TweakScale/@PART[Spica_Crew_1] [LOG 17:48:36.793] Config(@PART[Spica_Engine_1]) TweakScale/patches/Tantares_TweakScale/@PART[Spica_Engine_1] [LOG 17:48:36.793] Config(@PART[Spica_Orbital_1]) TweakScale/patches/Tantares_TweakScale/@PART[Spica_Orbital_1] [LOG 17:48:36.793] Config(@PART[Tantares_Antenna_A]) TweakScale/patches/Tantares_TweakScale/@PART[Tantares_Antenna_A] [LOG 17:48:36.793] Config(@PART[Tantares_Crew_A]) TweakScale/patches/Tantares_TweakScale/@PART[Tantares_Crew_A] [LOG 17:48:36.793] Config(@PART[Tantares_Separator_A]) TweakScale/patches/Tantares_TweakScale/@PART[Tantares_Separator_A] [LOG 17:48:36.793] Config(@PART[Tantares_Engine_A]) TweakScale/patches/Tantares_TweakScale/@PART[Tantares_Engine_A] [LOG 17:48:36.793] Config(@PART[Tantares_Orbital_A]) TweakScale/patches/Tantares_TweakScale/@PART[Tantares_Orbital_A] [LOG 17:48:36.793] Config(@PART[Tantares_Parachute_A]) TweakScale/patches/Tantares_TweakScale/@PART[Tantares_Parachute_A] [LOG 17:48:36.793] Config(@PART[Tantares_RCS_A]) TweakScale/patches/Tantares_TweakScale/@PART[Tantares_RCS_A] [LOG 17:48:36.793] Config(@PART[Tantares_Solar_A]) TweakScale/patches/Tantares_TweakScale/@PART[Tantares_Solar_A] [LOG 17:48:36.793] Config(@PART[Vega_Crew_1]) TweakScale/patches/Tantares_TweakScale/@PART[Vega_Crew_1] [LOG 17:48:36.793] Config(@PART[Vega_Crew_2]) TweakScale/patches/Tantares_TweakScale/@PART[Vega_Crew_2] [LOG 17:48:36.793] Config(@PART[Vega_Crew_3]) TweakScale/patches/Tantares_TweakScale/@PART[Vega_Crew_3] [LOG 17:48:36.793] Config(@PART[Vega_Engine_1]) TweakScale/patches/Tantares_TweakScale/@PART[Vega_Engine_1] [LOG 17:48:36.793] Config(@PART[Vega_Mono_1]) TweakScale/patches/Tantares_TweakScale/@PART[Vega_Mono_1] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Habitation]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Habitation] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Hydroponics]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Hydroponics] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Inline_Battery]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Inline_Battery] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Inline_Generator]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Inline_Generator] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Observation_Window]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Observation_Window] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Storage_Tank]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Storage_Tank] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Structural_Corridor]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Structural_Corridor] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Structural_Corridor_B]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Structural_Corridor_B] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Structural_Corridor_C]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Structural_Corridor_C] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Structural_Corridor_D]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Structural_Corridor_D] [LOG 17:48:36.793] Config(@PART[UDKLD_Large_Hub_Module]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Large_Hub_Module] [LOG 17:48:36.793] Config(@PART[UDKLD_Radial_Structural_Tab]) TweakScale/patches/UKLD_TweakScale/@PART[UDKLD_Radial_Structural_Tab] [LOG 17:48:36.793] Config(@PART[B9_Adapter_SM1]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Adapter_SM1] [LOG 17:48:36.793] Config(@PART[B9_Adapter_SM2]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Adapter_SM2] [LOG 17:48:36.793] Config(@PART[B9_Adapter_LM3]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Adapter_LM3] [LOG 17:48:36.793] Config(@PART[B9_Adapter_SM3]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Adapter_SM3] [LOG 17:48:36.793] Config(@PART[B9.Cockpit.MK2.Bicoupler]) TweakScale/patches/B9_Aerospace/B9/@PART[B9.Cockpit.MK2.Bicoupler] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Bicoupler_S]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Bicoupler_S] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Body_RCS_05m]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Body_RCS_05m] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Body_2m]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Body_2m] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Body_5m]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Body_5m] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Body_Cargo_2m]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Body_Cargo_2m] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Body_Cargo_5m]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Body_Cargo_5m] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Body_Crew_2m]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Body_Crew_2m] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Tail]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Tail] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Adapter]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Adapter] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Adapter_M125]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Adapter_M125] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK2_Adapter_M125_2]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK2_Adapter_M125_2] [LOG 17:48:36.794] Config(@PART[B9_Structure_StackSeparator_MSR]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_StackSeparator_MSR] [LOG 17:48:36.794] Config(@PART[B9_Adapter_Y1]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Adapter_Y1] [LOG 17:48:36.794] Config(@PART[B9_Aero_Intake_CLR]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Aero_Intake_CLR] [LOG 17:48:36.794] Config(@PART[B9_Aero_Intake_Mount]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Aero_Intake_Mount] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_MK1_Control_ACU]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_MK1_Control_ACU] [LOG 17:48:36.794] Config(@PART[B9_Engine_SABRE_S_Body]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Engine_SABRE_S_Body] [LOG 17:48:36.794] Config(@PART[B9_Engine_VA1_Intake]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Engine_VA1_Intake] [LOG 17:48:36.794] Config(@PART[B9_Engine_VS1_Nosecone]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Engine_VS1_Nosecone] [LOG 17:48:36.794] Config(@PART[B9_Adapter_C125]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Adapter_C125] [LOG 17:48:36.794] Config(@PART[B9_Aero_T2_Tail]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Aero_T2_Tail] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_D25]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_D25] [LOG 17:48:36.794] Config(@PART[B9_Cockpit_M27]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cockpit_M27] [LOG 17:48:36.794] Config(@PART[B9_Engine_SABRE_Intake_M]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Engine_SABRE_Intake_M] [LOG 17:48:36.794] Config(@PART[B9_Engine_SABRE_M]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Engine_SABRE_M] [LOG 17:48:36.794] Config(@PART[B9_Engine_SABRE_M_Body]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Engine_SABRE_M_Body] [LOG 17:48:36.794] Config(@PART[B9_Aero_AirBrake_Surface]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Aero_AirBrake_Surface] [LOG 17:48:36.794] Config(@PART[B9_Aero_AirBrake_Surface_Large]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Aero_AirBrake_Surface_Large] [LOG 17:48:36.794] Config(@PART[B9_Aero_Intake_DSI]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Aero_Intake_DSI] [LOG 17:48:36.794] Config(@PART[B9_Aero_Intake_DSIX]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Aero_Intake_DSIX] [LOG 17:48:36.794] Config(@PART[B9_Aero_Intake_RBM]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Aero_Intake_RBM] [LOG 17:48:36.794] Config(@PART[B9_Aero_Intake_RNM]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Aero_Intake_RNM] [LOG 17:48:36.794] Config(@PART[B9_Control_RCS_Tank_MT1]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Control_RCS_Tank_MT1] [LOG 17:48:36.794] Config(@PART[B9_Control_RCS_Tank_MT4]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Control_RCS_Tank_MT4] [LOG 17:48:36.794] Config(@PART[B9_Structure_P1_Surface]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P1_Surface] [LOG 17:48:36.794] Config(@PART[B9_Structure_P1_Surface_Half]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P1_Surface_Half] [LOG 17:48:36.794] Config(@PART[B9_Structure_P2_Surface]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P2_Surface] [LOG 17:48:36.794] Config(@PART[B9_Structure_P2_Surface_Clear]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P2_Surface_Clear] [LOG 17:48:36.794] Config(@PART[B9_Structure_P2_Surface_Half]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P2_Surface_Half] [LOG 17:48:36.794] Config(@PART[B9_Structure_P4_Frame]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P4_Frame] [LOG 17:48:36.794] Config(@PART[B9_Structure_P4_Surface]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P4_Surface] [LOG 17:48:36.794] Config(@PART[B9_Structure_P4_Surface_Clear]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P4_Surface_Clear] [LOG 17:48:36.794] Config(@PART[B9_Structure_P4_Surface_Half]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P4_Surface_Half] [LOG 17:48:36.794] Config(@PART[B9_Structure_P8_Frame]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P8_Frame] [LOG 17:48:36.794] Config(@PART[B9_Structure_P8_Frame2]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P8_Frame2] [LOG 17:48:36.794] Config(@PART[B9_Structure_P8_Surface]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P8_Surface] [LOG 17:48:36.794] Config(@PART[B9_Structure_P8_Surface_Clear]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P8_Surface_Clear] [LOG 17:48:36.795] Config(@PART[B9_Structure_P8_Surface_Half]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_P8_Surface_Half] [LOG 17:48:36.795] Config(@PART[B9_Structure_PA_Adapter]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Structure_PA_Adapter] [LOG 17:48:36.795] Config(@PART[B9_Cargo_M2_Adapter]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cargo_M2_Adapter] [LOG 17:48:36.795] Config(@PART[B9_Cargo_M2_Separator]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cargo_M2_Separator] [LOG 17:48:36.795] Config(@PART[B9_Cargo_M2_Body_B]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Cargo_M2_Body_B] [LOG 17:48:36.795] Config(@PART[B9_Utility_Light_A1_Closed]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Utility_Light_A1_Closed] [LOG 17:48:36.795] Config(@PART[B9_Utility_Light_A1_Closed_T]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Utility_Light_A1_Closed_T] [LOG 17:48:36.795] Config(@PART[B9_Utility_Light_A1_White]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Utility_Light_A1_White] [LOG 17:48:36.795] Config(@PART[B9_Utility_Light_A4_White]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Utility_Light_A4_White] [LOG 17:48:36.795] Config(@PART[B9_Utility_Light_A8_White]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Utility_Light_A8_White] [LOG 17:48:36.795] Config(@PART[B9_Utility_Light_N1_Large_White]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Utility_Light_N1_Large_White] [LOG 17:48:36.795] Config(@PART[B9_Utility_Light_N1_White]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Utility_Light_N1_White] [LOG 17:48:36.795] Config(@PART[B9_Utility_Light_N2_Green]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Utility_Light_N2_Green] [LOG 17:48:36.795] Config(@PART[B9_Utility_Light_N2_Red]) TweakScale/patches/B9_Aerospace/B9/@PART[B9_Utility_Light_N2_Red] [LOG 17:48:36.795] Config(@PART[B9_Engine_Jet_Pod_Medium]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_Jet_Pod_Medium] [LOG 17:48:36.795] Config(@PART[B9_Engine_Jet_Pod_Small]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_Jet_Pod_Small] [LOG 17:48:36.795] Config(@PART[B9_Engine_Jet_Turbofan_F119]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_Jet_Turbofan_F119] [LOG 17:48:36.795] Config(@PART[B9_Engine_Jet_Turbojet]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_Jet_Turbojet] [LOG 17:48:36.795] Config(@PART[B9_Engine_SABRE_Intake_S]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_SABRE_Intake_S] [LOG 17:48:36.795] Config(@PART[B9_Engine_SABRE_S]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_SABRE_S] [LOG 17:48:36.795] Config(@PART[B9_Engine_VA1]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_VA1] [LOG 17:48:36.795] Config(@PART[B9_Engine_VS1]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_VS1] [LOG 17:48:36.795] Config(@PART[B9_Engine_L2_Atlas]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_L2_Atlas] [LOG 17:48:36.795] Config(@PART[B9_Control_RCS_Block_R12]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Control_RCS_Block_R12] [LOG 17:48:36.795] Config(@PART[B9_Control_RCS_Block_R12T]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Control_RCS_Block_R12T] [LOG 17:48:36.795] Config(@PART[B9_Control_RCS_Block_R5]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Control_RCS_Block_R5] [LOG 17:48:36.795] Config(@PART[B9_Control_RCS_Block_R5T]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Control_RCS_Block_R5T] [LOG 17:48:36.795] Config(@PART[B9_Control_RCS_Port_R1]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Control_RCS_Port_R1] [LOG 17:48:36.795] Config(@PART[B9_Control_RCS_Port_R1A]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Control_RCS_Port_R1A] [LOG 17:48:36.795] Config(@PART[B9_Control_RCS_Port_S1]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Control_RCS_Port_S1] [LOG 17:48:36.795] Config(@PART[B9_Control_RCS_Block_S5]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Control_RCS_Block_S5] [LOG 17:48:36.795] Config(@PART[B9_Engine_T2A_SRBS]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_T2A_SRBS] [LOG 17:48:36.795] Config(@PART[B9_Engine_T2_SRBS]) TweakScale/patches/B9_Aerospace/B9_Engines_RCS/@PART[B9_Engine_T2_SRBS] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Adapter_Front]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Adapter_Front] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Structure_1m_U]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Structure_1m_U] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Adapter_2m_Side]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Adapter_2m_Side] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Structure_2m]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Structure_2m] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Structure_2m_A]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Structure_2m_A] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Structure_05m]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Structure_05m] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_SAS_05m]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_SAS_05m] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Structure_6m]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Structure_6m] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Tail_8m]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Tail_8m] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Cargo_Tail_Wide]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Cargo_Tail_Wide] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Cargo_A]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Cargo_A] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Cargo_B]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Cargo_B] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Body_Cargo_C]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Body_Cargo_C] [LOG 17:48:36.795] Config(@PART[B9_Aero_HL_Extension_A]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Extension_A] [LOG 17:48:36.796] Config(@PART[B9_Aero_HL_Extension_B1]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Extension_B1] [LOG 17:48:36.796] Config(@PART[B9_Aero_HL_Extension_C]) TweakScale/patches/B9_Aerospace/B9_HL/@PART[B9_Aero_HL_Extension_C] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX_HPD1]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX_HPD1] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX_S_2,B9_Structure_HX_S_8]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX_S_2,B9_Structure_HX_S_8] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX_S_RCS_F,B9_Structure_HX_S_RCS_L]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX_S_RCS_F,B9_Structure_HX_S_RCS_L] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX0_E]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX0_E] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX0_S]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX0_S] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_A_375]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_A_375] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_A_375B,B9_Structure_HX1_A_375C]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_A_375B,B9_Structure_HX1_A_375C] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_A_LLL]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_A_LLL] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_A_P]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_A_P] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_A_SD]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_A_SD] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_A_S0]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_A_S0] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_E1]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_E1] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_G]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_G] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_H]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_H] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_SAS]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_SAS] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_S_H*]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_S_H*] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_S_HS]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_S_HS] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_S_T]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_S_T] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_U]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_U] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX1_U_S]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX1_U_S] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX2_A_375]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX2_A_375] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX2_A_S1_A,B9_Structure_HX2_A_S1_B]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX2_A_S1_A,B9_Structure_HX2_A_S1_B] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX2_H]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX2_H] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX2_U]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX2_U] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX4_A_375]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX4_A_375] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX4_A_HX1_A]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX4_A_HX1_A] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX4_A_HX2_A]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX4_A_HX2_A] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX4_A_HX2_B]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX4_A_HX2_B] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX4_H]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX4_H] [LOG 17:48:36.796] Config(@PART[B9_Structure_HX4_U]) TweakScale/patches/B9_Aerospace/B9_HX/@PART[B9_Structure_HX4_U] [LOG 17:48:36.796] Config(@PART[B9_Body_Mk1_Fuselage_025m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Fuselage_025m] [LOG 17:48:36.796] Config(@PART[B9_Body_Mk1_Fuselage_050m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Fuselage_050m] [LOG 17:48:36.796] Config(@PART[B9_Body_Mk1_Cargo_Bay_050m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Cargo_Bay_050m] [LOG 17:48:36.796] Config(@PART[B9_Body_Mk1_Fuselage_100m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Fuselage_100m] [LOG 17:48:36.796] Config(@PART[B9_Body_Mk1_Cargo_Bay_100m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Cargo_Bay_100m] [LOG 17:48:36.796] Config(@PART[B9_Body_Mk1_Fuselage_200m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Fuselage_200m] [LOG 17:48:36.796] Config(@PART[B9_Body_Mk1_Cargo_Bay_200m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Cargo_Bay_200m] [LOG 17:48:36.796] Config(@PART[B9_Body_Mk1_Fuselage_400m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Fuselage_400m] [LOG 17:48:36.796] Config(@PART[B9_Body_Adapter_Mk2_125m_Bicoupler]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Adapter_Mk2_125m_Bicoupler] [LOG 17:48:36.796] Config(@PART[B9_Body_Adapter_Mk2_125m_Long]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Adapter_Mk2_125m_Long] [LOG 17:48:36.796] Config(@PART[B9_Body_Adapter_Mk2_125m_Short]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Adapter_Mk2_125m_Short] [LOG 17:48:36.796] Config(@PART[B9_Body_Adapter_Mk2_Mk2_Rot]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Adapter_Mk2_Mk2_Rot] [LOG 17:48:36.796] Config(@PART[B9_Body_Adapter_Mk2_125m_Shroud]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Adapter_Mk2_125m_Shroud] [LOG 17:48:36.797] Config(@PART[B9_Body_Adapter_Mk2_250m_Long]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Adapter_Mk2_250m_Long] [LOG 17:48:36.797] Config(@PART[B9_Body_Adapter_Mk2_250m_Short]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Adapter_Mk2_250m_Short] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk1_Nosecone_Long]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Nosecone_Long] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk1_Nosecone_Short]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk1_Nosecone_Short] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk2_Nosecone_Long]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk2_Nosecone_Long] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk2_Nosecone_Short]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk2_Nosecone_Short] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk2_Fuselage_050m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk2_Fuselage_050m] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk2_SAS_050m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk2_SAS_050m] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk2_Fuselage_1m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk2_Fuselage_1m] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk2_Cargo_Bay_1m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk2_Cargo_Bay_1m] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk2_Fuselage_2m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk2_Fuselage_2m] [LOG 17:48:36.797] Config(@PART[B9_Body_Mk2_Cargo_Bay_2m]) TweakScale/patches/B9_Aerospace/B9_Mk12/@PART[B9_Body_Mk2_Cargo_Bay_2m] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_Adapter]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_Adapter] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_Body_RCS]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_Body_RCS] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_Body]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_Body] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_Control_SAS]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_Control_SAS] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_Body_05m]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_Body_05m] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_Body_6m]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_Body_6m] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_Body_Cargo_2m]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_Body_Cargo_2m] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_Body_Cargo_6m]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_Body_Cargo_6m] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_BodyLarge_Cargo_2m]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_BodyLarge_Cargo_2m] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_BodyLarge_Cargo_6m]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_BodyLarge_Cargo_6m] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_Body_Tail]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_Body_Tail] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_BodyLarge]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_BodyLarge] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_BodyLarge_Back_EngineMount1]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_BodyLarge_Back_EngineMount1] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_BodyLarge_Back_EngineMount2]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_BodyLarge_Back_EngineMount2] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_BodyLarge_Back]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_BodyLarge_Back] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_BodyLarge_Front]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_BodyLarge_Front] [LOG 17:48:36.797] Config(@PART[B9_Cockpit_S2_BodyLarge_Front2]) TweakScale/patches/B9_Aerospace/B9_S2/@PART[B9_Cockpit_S2_BodyLarge_Front2] [LOG 17:48:36.797] Config(@PART[airbrake1]) TweakScale/patches/Squad/Squad_Aero/@PART[airbrake1] [LOG 17:48:36.797] Config(@PART[HeatShield1]) TweakScale/patches/Squad/Squad_Aero/@PART[HeatShield1] [LOG 17:48:36.797] Config(@PART[HeatShield2]) TweakScale/patches/Squad/Squad_Aero/@PART[HeatShield2] [LOG 17:48:36.797] Config(@PART[HeatShield3]) TweakScale/patches/Squad/Squad_Aero/@PART[HeatShield3] [LOG 17:48:36.797] Config(@PART[InflatableHeatShield]) TweakScale/patches/Squad/Squad_Aero/@PART[InflatableHeatShield] [LOG 17:48:36.797] Config(@PART[standardNoseCone]) TweakScale/patches/Squad/Squad_Aero/@PART[standardNoseCone] [LOG 17:48:36.797] Config(@PART[noseCone]) TweakScale/patches/Squad/Squad_Aero/@PART[noseCone] [LOG 17:48:36.797] Config(@PART[rocketNoseCone]) TweakScale/patches/Squad/Squad_Aero/@PART[rocketNoseCone] [LOG 17:48:36.797] Config(@PART[pointyNoseConeA]) TweakScale/patches/Squad/Squad_Aero/@PART[pointyNoseConeA] [LOG 17:48:36.797] Config(@PART[pointyNoseConeB]) TweakScale/patches/Squad/Squad_Aero/@PART[pointyNoseConeB] [LOG 17:48:36.797] Config(@PART[CanardController]) TweakScale/patches/Squad/Squad_Aero/@PART[CanardController] [LOG 17:48:36.797] Config(@PART[deltaWing]) TweakScale/patches/Squad/Squad_Aero/@PART[deltaWing] [LOG 17:48:36.797] Config(@PART[delta_small]) TweakScale/patches/Squad/Squad_Aero/@PART[delta_small] [LOG 17:48:36.797] Config(@PART[airlinerCtrlSrf]) TweakScale/patches/Squad/Squad_Aero/@PART[airlinerCtrlSrf] [LOG 17:48:36.797] Config(@PART[airlinerMainWing]) TweakScale/patches/Squad/Squad_Aero/@PART[airlinerMainWing] [LOG 17:48:36.797] Config(@PART[airlinerTailFin]) TweakScale/patches/Squad/Squad_Aero/@PART[airlinerTailFin] [LOG 17:48:36.797] Config(@PART[basicFin]) TweakScale/patches/Squad/Squad_Aero/@PART[basicFin] [LOG 17:48:36.797] Config(@PART[smallCtrlSrf]) TweakScale/patches/Squad/Squad_Aero/@PART[smallCtrlSrf] [LOG 17:48:36.798] Config(@PART[sweptWing]) TweakScale/patches/Squad/Squad_Aero/@PART[sweptWing] [LOG 17:48:36.798] Config(@PART[tailfin]) TweakScale/patches/Squad/Squad_Aero/@PART[tailfin] [LOG 17:48:36.798] Config(@PART[wingConnector]) TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector] [LOG 17:48:36.798] Config(@PART[winglet]) TweakScale/patches/Squad/Squad_Aero/@PART[winglet] [LOG 17:48:36.798] Config(@PART[R8winglet]) TweakScale/patches/Squad/Squad_Aero/@PART[R8winglet] [LOG 17:48:36.798] Config(@PART[winglet3]) TweakScale/patches/Squad/Squad_Aero/@PART[winglet3] [LOG 17:48:36.798] Config(@PART[structuralWing4]) TweakScale/patches/Squad/Squad_Aero/@PART[structuralWing4] [LOG 17:48:36.798] Config(@PART[wingConnector5]) TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector5] [LOG 17:48:36.798] Config(@PART[elevonMk3]) TweakScale/patches/Squad/Squad_Aero/@PART[elevonMk3] [LOG 17:48:36.798] Config(@PART[elevon5]) TweakScale/patches/Squad/Squad_Aero/@PART[elevon5] [LOG 17:48:36.798] Config(@PART[structuralWing]) TweakScale/patches/Squad/Squad_Aero/@PART[structuralWing] [LOG 17:48:36.798] Config(@PART[wingShuttleDelta]) TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleDelta] [LOG 17:48:36.798] Config(@PART[wingShuttleElevon1]) TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleElevon1] [LOG 17:48:36.798] Config(@PART[wingShuttleElevon2]) TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleElevon2] [LOG 17:48:36.798] Config(@PART[wingShuttleStrake]) TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleStrake] [LOG 17:48:36.798] Config(@PART[wingShuttleRudder]) TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleRudder] [LOG 17:48:36.798] Config(@PART[sweptWing1]) TweakScale/patches/Squad/Squad_Aero/@PART[sweptWing1] [LOG 17:48:36.798] Config(@PART[sweptWing2]) TweakScale/patches/Squad/Squad_Aero/@PART[sweptWing2] [LOG 17:48:36.798] Config(@PART[AdvancedCanard]) TweakScale/patches/Squad/Squad_Aero/@PART[AdvancedCanard] [LOG 17:48:36.798] Config(@PART[StandardCtrlSrf]) TweakScale/patches/Squad/Squad_Aero/@PART[StandardCtrlSrf] [LOG 17:48:36.798] Config(@PART[wingConnector1]) TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector1] [LOG 17:48:36.798] Config(@PART[wingConnector2]) TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector2] [LOG 17:48:36.798] Config(@PART[wingConnector3]) TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector3] [LOG 17:48:36.798] Config(@PART[wingConnector4]) TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector4] [LOG 17:48:36.798] Config(@PART[deltaWingX]) TweakScale/patches/Squad/Squad_Aero/@PART[deltaWingX] [LOG 17:48:36.798] Config(@PART[deltaWing_small]) TweakScale/patches/Squad/Squad_Aero/@PART[deltaWing_small] [LOG 17:48:36.798] Config(@PART[elevon1]) TweakScale/patches/Squad/Squad_Aero/@PART[elevon1] [LOG 17:48:36.798] Config(@PART[elevon2]) TweakScale/patches/Squad/Squad_Aero/@PART[elevon2] [LOG 17:48:36.798] Config(@PART[elevon3]) TweakScale/patches/Squad/Squad_Aero/@PART[elevon3] [LOG 17:48:36.798] Config(@PART[wingStrake]) TweakScale/patches/Squad/Squad_Aero/@PART[wingStrake] [LOG 17:48:36.798] Config(@PART[structuralWing1]) TweakScale/patches/Squad/Squad_Aero/@PART[structuralWing1] [LOG 17:48:36.798] Config(@PART[structuralWing2]) TweakScale/patches/Squad/Squad_Aero/@PART[structuralWing2] [LOG 17:48:36.798] Config(@PART[structuralWing3]) TweakScale/patches/Squad/Squad_Aero/@PART[structuralWing3] [LOG 17:48:36.798] Config(@PART[airplaneTail]) TweakScale/patches/Squad/Squad_Aero/@PART[airplaneTail] [LOG 17:48:36.798] Config(@PART[airplaneTailB]) TweakScale/patches/Squad/Squad_Aero/@PART[airplaneTailB] [LOG 17:48:36.798] Config(@PART[airScoop]) TweakScale/patches/Squad/Squad_Aero/@PART[airScoop] [LOG 17:48:36.798] Config(@PART[miniIntake]) TweakScale/patches/Squad/Squad_Aero/@PART[miniIntake] [LOG 17:48:36.798] Config(@PART[CircularIntake]) TweakScale/patches/Squad/Squad_Aero/@PART[CircularIntake] [LOG 17:48:36.798] Config(@PART[ramAirIntake]) TweakScale/patches/Squad/Squad_Aero/@PART[ramAirIntake] [LOG 17:48:36.798] Config(@PART[MK1IntakeFuselage]) TweakScale/patches/Squad/Squad_Aero/@PART[MK1IntakeFuselage] [LOG 17:48:36.798] Config(@PART[IntakeRadialLong]) TweakScale/patches/Squad/Squad_Aero/@PART[IntakeRadialLong] [LOG 17:48:36.798] Config(@PART[shockConeIntake]) TweakScale/patches/Squad/Squad_Aero/@PART[shockConeIntake] [LOG 17:48:36.798] Config(@PART[advSasModule]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[advSasModule] [LOG 17:48:36.798] Config(@PART[asasmodule1-2]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[asasmodule1-2] [LOG 17:48:36.798] Config(@PART[sasModule]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[sasModule] [LOG 17:48:36.798] Config(@PART[cupola]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[cupola] [LOG 17:48:36.798] Config(@PART[landerCabinSmall]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[landerCabinSmall] [LOG 17:48:36.798] Config(@PART[Mark1Cockpit]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[Mark1Cockpit] [LOG 17:48:36.798] Config(@PART[Mark2Cockpit]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[Mark2Cockpit] [LOG 17:48:36.798] Config(@PART[Mark1-2Pod]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[Mark1-2Pod] [LOG 17:48:36.799] Config(@PART[mk1pod]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk1pod] [LOG 17:48:36.799] Config(@PART[mk2LanderCabin]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2LanderCabin] [LOG 17:48:36.799] Config(@PART[mk3Cockpit_Shuttle]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk3Cockpit_Shuttle] [LOG 17:48:36.799] Config(@PART[mk2Cockpit_Standard]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2Cockpit_Standard] [LOG 17:48:36.799] Config(@PART[mk2Cockpit_Inline]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2Cockpit_Inline] [LOG 17:48:36.799] Config(@PART[crewCabin]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[crewCabin] [LOG 17:48:36.799] Config(@PART[MK1CrewCabin]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[MK1CrewCabin] [LOG 17:48:36.799] Config(@PART[mk2CrewCabin]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2CrewCabin] [LOG 17:48:36.799] Config(@PART[mk3CrewCabin]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk3CrewCabin] [LOG 17:48:36.799] Config(@PART[Large_Crewed_Lab]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[Large_Crewed_Lab] [LOG 17:48:36.799] Config(@PART[mk2DroneCore]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2DroneCore] [LOG 17:48:36.799] Config(@PART[probeCoreCube]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreCube] [LOG 17:48:36.799] Config(@PART[roverBody]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[roverBody] [LOG 17:48:36.799] Config(@PART[probeCoreHex]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreHex] [LOG 17:48:36.799] Config(@PART[HECS2_ProbeCore]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[HECS2_ProbeCore] [LOG 17:48:36.799] Config(@PART[probeCoreOcto]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreOcto] [LOG 17:48:36.799] Config(@PART[probeCoreOcto2]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreOcto2] [LOG 17:48:36.799] Config(@PART[probeCoreSphere]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreSphere] [LOG 17:48:36.799] Config(@PART[avionicsNoseCone]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[avionicsNoseCone] [LOG 17:48:36.799] Config(@PART[probeStackLarge]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeStackLarge] [LOG 17:48:36.799] Config(@PART[probeStackSmall]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeStackSmall] [LOG 17:48:36.799] Config(@PART[science_module]) TweakScale/patches/Squad/Squad_CmdCtrl/@PART[science_module] [LOG 17:48:36.799] Config(@PART[LaunchEscapeSystem]) TweakScale/patches/Squad/Squad_Engines/@PART[LaunchEscapeSystem] [LOG 17:48:36.799] Config(@PART[omsEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[omsEngine] [LOG 17:48:36.799] Config(@PART[ionEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[ionEngine] [LOG 17:48:36.799] Config(@PART[miniJetEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[miniJetEngine] [LOG 17:48:36.799] Config(@PART[JetEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[JetEngine] [LOG 17:48:36.799] Config(@PART[turboJet]) TweakScale/patches/Squad/Squad_Engines/@PART[turboJet] [LOG 17:48:36.799] Config(@PART[turboFanSize2]) TweakScale/patches/Squad/Squad_Engines/@PART[turboFanSize2] [LOG 17:48:36.799] Config(@PART[turboFanEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[turboFanEngine] [LOG 17:48:36.799] Config(@PART[RAPIER]) TweakScale/patches/Squad/Squad_Engines/@PART[RAPIER] [LOG 17:48:36.799] Config(@PART[liquidEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine] [LOG 17:48:36.799] Config(@PART[engineLargeSkipper]) TweakScale/patches/Squad/Squad_Engines/@PART[engineLargeSkipper] [LOG 17:48:36.799] Config(@PART[liquidEngine1-2]) TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine1-2] [LOG 17:48:36.799] Config(@PART[Size2LFB]) TweakScale/patches/Squad/Squad_Engines/@PART[Size2LFB] [LOG 17:48:36.799] Config(@PART[Size3AdvancedEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[Size3AdvancedEngine] [LOG 17:48:36.799] Config(@PART[Size3EngineCluster]) TweakScale/patches/Squad/Squad_Engines/@PART[Size3EngineCluster] [LOG 17:48:36.799] Config(@PART[SSME]) TweakScale/patches/Squad/Squad_Engines/@PART[SSME] [LOG 17:48:36.799] Config(@PART[liquidEngine2]) TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine2] [LOG 17:48:36.799] Config(@PART[liquidEngine2-2]) TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine2-2] [LOG 17:48:36.799] Config(@PART[liquidEngine3]) TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine3] [LOG 17:48:36.799] Config(@PART[liquidEngineMini]) TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngineMini] [LOG 17:48:36.799] Config(@PART[microEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[microEngine] [LOG 17:48:36.799] Config(@PART[nuclearEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[nuclearEngine] [LOG 17:48:36.799] Config(@PART[radialEngineMini]) TweakScale/patches/Squad/Squad_Engines/@PART[radialEngineMini] [LOG 17:48:36.799] Config(@PART[radialLiquidEngine1-2]) TweakScale/patches/Squad/Squad_Engines/@PART[radialLiquidEngine1-2] [LOG 17:48:36.799] Config(@PART[smallRadialEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[smallRadialEngine] [LOG 17:48:36.799] Config(@PART[toroidalAerospike]) TweakScale/patches/Squad/Squad_Engines/@PART[toroidalAerospike] [LOG 17:48:36.800] Config(@PART[sepMotor1]) TweakScale/patches/Squad/Squad_Engines/@PART[sepMotor1] [LOG 17:48:36.800] Config(@PART[solidBooster_sm]) TweakScale/patches/Squad/Squad_Engines/@PART[solidBooster_sm] [LOG 17:48:36.800] Config(@PART[solidBooster]) TweakScale/patches/Squad/Squad_Engines/@PART[solidBooster] [LOG 17:48:36.800] Config(@PART[solidBooster1-1]) TweakScale/patches/Squad/Squad_Engines/@PART[solidBooster1-1] [LOG 17:48:36.800] Config(@PART[MassiveBooster]) TweakScale/patches/Squad/Squad_Engines/@PART[MassiveBooster] [LOG 17:48:36.800] Config(@PART[linearRcs]) TweakScale/patches/Squad/Squad_Engines/@PART[linearRcs] [LOG 17:48:36.800] Config(@PART[RCSBlock]) TweakScale/patches/Squad/Squad_Engines/@PART[RCSBlock] [LOG 17:48:36.800] Config(@PART[vernierEngine]) TweakScale/patches/Squad/Squad_Engines/@PART[vernierEngine] [LOG 17:48:36.800] Config(@PART[radialDecoupler]) TweakScale/patches/Squad/Squad_Structural/@PART[radialDecoupler] [LOG 17:48:36.800] Config(@PART[radialDecoupler2]) TweakScale/patches/Squad/Squad_Structural/@PART[radialDecoupler2] [LOG 17:48:36.800] Config(@PART[radialDecoupler1-2]) TweakScale/patches/Squad/Squad_Structural/@PART[radialDecoupler1-2] [LOG 17:48:36.800] Config(@PART[stackDecoupler]) TweakScale/patches/Squad/Squad_Structural/@PART[stackDecoupler] [LOG 17:48:36.800] Config(@PART[stackDecouplerMini]) TweakScale/patches/Squad/Squad_Structural/@PART[stackDecouplerMini] [LOG 17:48:36.800] Config(@PART[decoupler1-2]) TweakScale/patches/Squad/Squad_Structural/@PART[decoupler1-2] [LOG 17:48:36.800] Config(@PART[stackSeparator]) TweakScale/patches/Squad/Squad_Structural/@PART[stackSeparator] [LOG 17:48:36.800] Config(@PART[stackSeparatorMini]) TweakScale/patches/Squad/Squad_Structural/@PART[stackSeparatorMini] [LOG 17:48:36.800] Config(@PART[stackSeparatorBig]) TweakScale/patches/Squad/Squad_Structural/@PART[stackSeparatorBig] [LOG 17:48:36.800] Config(@PART[size3Decoupler]) TweakScale/patches/Squad/Squad_Structural/@PART[size3Decoupler] [LOG 17:48:36.800] Config(@PART[nacelleBody]) TweakScale/patches/Squad/Squad_Structural/@PART[nacelleBody] [LOG 17:48:36.800] Config(@PART[radialEngineBody]) TweakScale/patches/Squad/Squad_Structural/@PART[radialEngineBody] [LOG 17:48:36.800] Config(@PART[smallHardpoint]) TweakScale/patches/Squad/Squad_Structural/@PART[smallHardpoint] [LOG 17:48:36.800] Config(@PART[stationHub]) TweakScale/patches/Squad/Squad_Structural/@PART[stationHub] [LOG 17:48:36.800] Config(@PART[structuralIBeam1]) TweakScale/patches/Squad/Squad_Structural/@PART[structuralIBeam1] [LOG 17:48:36.800] Config(@PART[structuralIBeam2]) TweakScale/patches/Squad/Squad_Structural/@PART[structuralIBeam2] [LOG 17:48:36.800] Config(@PART[structuralIBeam3]) TweakScale/patches/Squad/Squad_Structural/@PART[structuralIBeam3] [LOG 17:48:36.800] Config(@PART[structuralMiniNode]) TweakScale/patches/Squad/Squad_Structural/@PART[structuralMiniNode] [LOG 17:48:36.800] Config(@PART[structuralPanel1]) TweakScale/patches/Squad/Squad_Structural/@PART[structuralPanel1] [LOG 17:48:36.800] Config(@PART[structuralPanel2]) TweakScale/patches/Squad/Squad_Structural/@PART[structuralPanel2] [LOG 17:48:36.800] Config(@PART[structuralPylon]) TweakScale/patches/Squad/Squad_Structural/@PART[structuralPylon] [LOG 17:48:36.800] Config(@PART[strutCube]) TweakScale/patches/Squad/Squad_Structural/@PART[strutCube] [LOG 17:48:36.800] Config(@PART[strutOcto]) TweakScale/patches/Squad/Squad_Structural/@PART[strutOcto] [LOG 17:48:36.800] Config(@PART[trussAdapter]) TweakScale/patches/Squad/Squad_Structural/@PART[trussAdapter] [LOG 17:48:36.800] Config(@PART[trussPiece1x]) TweakScale/patches/Squad/Squad_Structural/@PART[trussPiece1x] [LOG 17:48:36.800] Config(@PART[trussPiece3x]) TweakScale/patches/Squad/Squad_Structural/@PART[trussPiece3x] [LOG 17:48:36.800] Config(@PART[noseConeAdapter]) TweakScale/patches/Squad/Squad_Structural/@PART[noseConeAdapter] [LOG 17:48:36.800] Config(@PART[adapterLargeSmallBi]) TweakScale/patches/Squad/Squad_Structural/@PART[adapterLargeSmallBi] [LOG 17:48:36.800] Config(@PART[adapterLargeSmallQuad]) TweakScale/patches/Squad/Squad_Structural/@PART[adapterLargeSmallQuad] [LOG 17:48:36.800] Config(@PART[adapterLargeSmallTri]) TweakScale/patches/Squad/Squad_Structural/@PART[adapterLargeSmallTri] [LOG 17:48:36.800] Config(@PART[adapterSmallMiniShort]) TweakScale/patches/Squad/Squad_Structural/@PART[adapterSmallMiniShort] [LOG 17:48:36.800] Config(@PART[adapterSmallMiniTall]) TweakScale/patches/Squad/Squad_Structural/@PART[adapterSmallMiniTall] [LOG 17:48:36.800] Config(@PART[largeAdapter]) TweakScale/patches/Squad/Squad_Structural/@PART[largeAdapter] [LOG 17:48:36.800] Config(@PART[largeAdapter2]) TweakScale/patches/Squad/Squad_Structural/@PART[largeAdapter2] [LOG 17:48:36.800] Config(@PART[stackBiCoupler]) TweakScale/patches/Squad/Squad_Structural/@PART[stackBiCoupler] [LOG 17:48:36.800] Config(@PART[stackQuadCoupler]) TweakScale/patches/Squad/Squad_Structural/@PART[stackQuadCoupler] [LOG 17:48:36.800] Config(@PART[stackTriCoupler]) TweakScale/patches/Squad/Squad_Structural/@PART[stackTriCoupler] [LOG 17:48:36.800] Config(@PART[Mk1FuselageStructural]) TweakScale/patches/Squad/Squad_Structural/@PART[Mk1FuselageStructural] [LOG 17:48:36.800] Config(@PART[stackPoint1]) TweakScale/patches/Squad/Squad_Structural/@PART[stackPoint1] [LOG 17:48:36.800] Config(@PART[fuelTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank] [LOG 17:48:36.801] Config(@PART[fuelTank_long]) TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank_long] [LOG 17:48:36.801] Config(@PART[fuelTank1-2]) TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank1-2] [LOG 17:48:36.801] Config(@PART[fuelTank2-2]) TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank2-2] [LOG 17:48:36.801] Config(@PART[fuelTank3-2]) TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank3-2] [LOG 17:48:36.801] Config(@PART[fuelTank4-2]) TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank4-2] [LOG 17:48:36.801] Config(@PART[fuelTankSmall]) TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTankSmall] [LOG 17:48:36.801] Config(@PART[fuelTankSmallFlat]) TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTankSmallFlat] [LOG 17:48:36.801] Config(@PART[miniFuelTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[miniFuelTank] [LOG 17:48:36.801] Config(@PART[MK1Fuselage]) TweakScale/patches/Squad/Squad_Tanks/@PART[MK1Fuselage] [LOG 17:48:36.801] Config(@PART[miniFuselage]) TweakScale/patches/Squad/Squad_Tanks/@PART[miniFuselage] [LOG 17:48:36.801] Config(@PART[radialRCSTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[radialRCSTank] [LOG 17:48:36.801] Config(@PART[RCSFuelTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[RCSFuelTank] [LOG 17:48:36.801] Config(@PART[RCSTank1-2]) TweakScale/patches/Squad/Squad_Tanks/@PART[RCSTank1-2] [LOG 17:48:36.801] Config(@PART[rcsTankMini]) TweakScale/patches/Squad/Squad_Tanks/@PART[rcsTankMini] [LOG 17:48:36.801] Config(@PART[rcsTankRadialLong]) TweakScale/patches/Squad/Squad_Tanks/@PART[rcsTankRadialLong] [LOG 17:48:36.801] Config(@PART[toroidalFuelTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[toroidalFuelTank] [LOG 17:48:36.801] Config(@PART[xenonTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[xenonTank] [LOG 17:48:36.801] Config(@PART[xenonTankRadial]) TweakScale/patches/Squad/Squad_Tanks/@PART[xenonTankRadial] [LOG 17:48:36.801] Config(@PART[xenonTankLarge]) TweakScale/patches/Squad/Squad_Tanks/@PART[xenonTankLarge] [LOG 17:48:36.801] Config(@PART[LargeTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[LargeTank] [LOG 17:48:36.801] Config(@PART[SmallTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[SmallTank] [LOG 17:48:36.801] Config(@PART[RadialOreTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[RadialOreTank] [LOG 17:48:36.801] Config(@PART[mk3FuselageLF_25]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLF_25] [LOG 17:48:36.801] Config(@PART[mk3FuselageLF_50]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLF_50] [LOG 17:48:36.801] Config(@PART[mk3FuselageMONO]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageMONO] [LOG 17:48:36.801] Config(@PART[mk3FuselageLFO_25]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLFO_25] [LOG 17:48:36.801] Config(@PART[mk3FuselageLFO_50]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLFO_50] [LOG 17:48:36.801] Config(@PART[mk3FuselageLF_100]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLF_100] [LOG 17:48:36.801] Config(@PART[mk3FuselageLFO_100]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLFO_100] [LOG 17:48:36.801] Config(@PART[adapterMk3-Mk2]) TweakScale/patches/Squad/Squad_Tanks/@PART[adapterMk3-Mk2] [LOG 17:48:36.801] Config(@PART[adapterMk3-Size2]) TweakScale/patches/Squad/Squad_Tanks/@PART[adapterMk3-Size2] [LOG 17:48:36.801] Config(@PART[adapterMk3-Size2Slant]) TweakScale/patches/Squad/Squad_Tanks/@PART[adapterMk3-Size2Slant] [LOG 17:48:36.801] Config(@PART[adapterSize3-Mk3]) TweakScale/patches/Squad/Squad_Tanks/@PART[adapterSize3-Mk3] [LOG 17:48:36.801] Config(@PART[adapterSize2-Mk2]) TweakScale/patches/Squad/Squad_Tanks/@PART[adapterSize2-Mk2] [LOG 17:48:36.801] Config(@PART[adapterSize2-Size1]) TweakScale/patches/Squad/Squad_Tanks/@PART[adapterSize2-Size1] [LOG 17:48:36.801] Config(@PART[adapterSize2-Size1Slant]) TweakScale/patches/Squad/Squad_Tanks/@PART[adapterSize2-Size1Slant] [LOG 17:48:36.801] Config(@PART[adapterEngines]) TweakScale/patches/Squad/Squad_Tanks/@PART[adapterEngines] [LOG 17:48:36.801] Config(@PART[Size3LargeTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[Size3LargeTank] [LOG 17:48:36.801] Config(@PART[Size3MediumTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[Size3MediumTank] [LOG 17:48:36.801] Config(@PART[Size3SmallTank]) TweakScale/patches/Squad/Squad_Tanks/@PART[Size3SmallTank] [LOG 17:48:36.801] Config(@PART[Size3to2Adapter]) TweakScale/patches/Squad/Squad_Tanks/@PART[Size3to2Adapter] [LOG 17:48:36.801] Config(@PART[mk2_1m_Bicoupler]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk2_1m_Bicoupler] [LOG 17:48:36.801] Config(@PART[mk2_1m_AdapterLong]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk2_1m_AdapterLong] [LOG 17:48:36.801] Config(@PART[mk2SpacePlaneAdapter]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk2SpacePlaneAdapter] [LOG 17:48:36.801] Config(@PART[mk2Fuselage]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk2Fuselage] [LOG 17:48:36.801] Config(@PART[mk2FuselageLongLFO]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk2FuselageLongLFO] [LOG 17:48:36.801] Config(@PART[mk2FuselageShortLiquid]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk2FuselageShortLiquid] [LOG 17:48:36.801] Config(@PART[mk2FuselageShortLFO]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk2FuselageShortLFO] [LOG 17:48:36.801] Config(@PART[mk2FuselageShortMono]) TweakScale/patches/Squad/Squad_Tanks/@PART[mk2FuselageShortMono] [LOG 17:48:36.802] Config(@PART[mk2CargoBayL]) TweakScale/patches/Squad/Squad_Util/@PART[mk2CargoBayL] [LOG 17:48:36.802] Config(@PART[mk2CargoBayS]) TweakScale/patches/Squad/Squad_Util/@PART[mk2CargoBayS] [LOG 17:48:36.802] Config(@PART[ServiceBay_125]) TweakScale/patches/Squad/Squad_Util/@PART[ServiceBay_125] [LOG 17:48:36.802] Config(@PART[ServiceBay_250]) TweakScale/patches/Squad/Squad_Util/@PART[ServiceBay_250] [LOG 17:48:36.802] Config(@PART[mk3CargoBayM]) TweakScale/patches/Squad/Squad_Util/@PART[mk3CargoBayM] [LOG 17:48:36.802] Config(@PART[mk3CargoBayL]) TweakScale/patches/Squad/Squad_Util/@PART[mk3CargoBayL] [LOG 17:48:36.802] Config(@PART[mk3CargoBayS]) TweakScale/patches/Squad/Squad_Util/@PART[mk3CargoBayS] [LOG 17:48:36.802] Config(@PART[mk3CargoRamp]) TweakScale/patches/Squad/Squad_Util/@PART[mk3CargoRamp] [LOG 17:48:36.802] Config(@PART[batteryBank]) TweakScale/patches/Squad/Squad_Util/@PART[batteryBank] [LOG 17:48:36.802] Config(@PART[batteryBankLarge]) TweakScale/patches/Squad/Squad_Util/@PART[batteryBankLarge] [LOG 17:48:36.802] Config(@PART[batteryBankMini]) TweakScale/patches/Squad/Squad_Util/@PART[batteryBankMini] [LOG 17:48:36.802] Config(@PART[batteryPack]) TweakScale/patches/Squad/Squad_Util/@PART[batteryPack] [LOG 17:48:36.802] Config(@PART[ksp_r_largeBatteryPack]) TweakScale/patches/Squad/Squad_Util/@PART[ksp_r_largeBatteryPack] [LOG 17:48:36.802] Config(@PART[rtg]) TweakScale/patches/Squad/Squad_Util/@PART[rtg] [LOG 17:48:36.802] Config(@PART[spotLight1]) TweakScale/patches/Squad/Squad_Util/@PART[spotLight1] [LOG 17:48:36.802] Config(@PART[spotLight2]) TweakScale/patches/Squad/Squad_Util/@PART[spotLight2] [LOG 17:48:36.802] Config(@PART[solarPanels1]) TweakScale/patches/Squad/Squad_Util/@PART[solarPanels1] [LOG 17:48:36.802] Config(@PART[solarPanels2]) TweakScale/patches/Squad/Squad_Util/@PART[solarPanels2] [LOG 17:48:36.802] Config(@PART[solarPanels3]) TweakScale/patches/Squad/Squad_Util/@PART[solarPanels3] [LOG 17:48:36.802] Config(@PART[solarPanels4]) TweakScale/patches/Squad/Squad_Util/@PART[solarPanels4] [LOG 17:48:36.802] Config(@PART[solarPanels5]) TweakScale/patches/Squad/Squad_Util/@PART[solarPanels5] [LOG 17:48:36.802] Config(@PART[largeSolarPanel]) TweakScale/patches/Squad/Squad_Util/@PART[largeSolarPanel] [LOG 17:48:36.802] Config(@PART[LgRadialSolarPanel]) TweakScale/patches/Squad/Squad_Util/@PART[LgRadialSolarPanel] [LOG 17:48:36.802] Config(@PART[foldingRadLarge]) TweakScale/patches/Squad/Squad_Util/@PART[foldingRadLarge] [LOG 17:48:36.802] Config(@PART[foldingRadMed]) TweakScale/patches/Squad/Squad_Util/@PART[foldingRadMed] [LOG 17:48:36.802] Config(@PART[foldingRadSmall]) TweakScale/patches/Squad/Squad_Util/@PART[foldingRadSmall] [LOG 17:48:36.802] Config(@PART[radPanelLg]) TweakScale/patches/Squad/Squad_Util/@PART[radPanelLg] [LOG 17:48:36.802] Config(@PART[radPanelSm]) TweakScale/patches/Squad/Squad_Util/@PART[radPanelSm] [LOG 17:48:36.802] Config(@PART[FuelCell]) TweakScale/patches/Squad/Squad_Util/@PART[FuelCell] [LOG 17:48:36.802] Config(@PART[FuelCellArray]) TweakScale/patches/Squad/Squad_Util/@PART[FuelCellArray] [LOG 17:48:36.802] Config(@PART[ISRU]) TweakScale/patches/Squad/Squad_Util/@PART[ISRU] [LOG 17:48:36.802] Config(@PART[MiniISRU]) TweakScale/patches/Squad/Squad_Util/@PART[MiniISRU] [LOG 17:48:36.802] Config(@PART[RadialDrill]) TweakScale/patches/Squad/Squad_Util/@PART[RadialDrill] [LOG 17:48:36.802] Config(@PART[MiniDrill]) TweakScale/patches/Squad/Squad_Util/@PART[MiniDrill] [LOG 17:48:36.802] Config(@PART[OrbitalScanner]) TweakScale/patches/Squad/Squad_Util/@PART[OrbitalScanner] [LOG 17:48:36.802] Config(@PART[SurfaceScanner]) TweakScale/patches/Squad/Squad_Util/@PART[SurfaceScanner] [LOG 17:48:36.802] Config(@PART[SurveyScanner]) TweakScale/patches/Squad/Squad_Util/@PART[SurveyScanner] [LOG 17:48:36.802] Config(@PART[GearFixed]) TweakScale/patches/Squad/Squad_Util/@PART[GearFixed] [LOG 17:48:36.802] Config(@PART[GearFree]) TweakScale/patches/Squad/Squad_Util/@PART[GearFree] [LOG 17:48:36.802] Config(@PART[SmallGearBay]) TweakScale/patches/Squad/Squad_Util/@PART[SmallGearBay] [LOG 17:48:36.802] Config(@PART[GearSmall]) TweakScale/patches/Squad/Squad_Util/@PART[GearSmall] [LOG 17:48:36.802] Config(@PART[GearMedium]) TweakScale/patches/Squad/Squad_Util/@PART[GearMedium] [LOG 17:48:36.802] Config(@PART[GearLarge]) TweakScale/patches/Squad/Squad_Util/@PART[GearLarge] [LOG 17:48:36.802] Config(@PART[roverWheel1]) TweakScale/patches/Squad/Squad_Util/@PART[roverWheel1] [LOG 17:48:36.802] Config(@PART[roverWheel2]) TweakScale/patches/Squad/Squad_Util/@PART[roverWheel2] [LOG 17:48:36.802] Config(@PART[roverWheel3]) TweakScale/patches/Squad/Squad_Util/@PART[roverWheel3] [LOG 17:48:36.802] Config(@PART[wheelMed]) TweakScale/patches/Squad/Squad_Util/@PART[wheelMed] [LOG 17:48:36.802] Config(@PART[landingLeg1]) TweakScale/patches/Squad/Squad_Util/@PART[landingLeg1] [LOG 17:48:36.802] Config(@PART[landingLeg1-2]) TweakScale/patches/Squad/Squad_Util/@PART[landingLeg1-2] [LOG 17:48:36.803] Config(@PART[miniLandingLeg]) TweakScale/patches/Squad/Squad_Util/@PART[miniLandingLeg] [LOG 17:48:36.803] Config(@PART[parachuteDrogue]) TweakScale/patches/Squad/Squad_Util/@PART[parachuteDrogue] [LOG 17:48:36.803] Config(@PART[parachuteLarge]) TweakScale/patches/Squad/Squad_Util/@PART[parachuteLarge] [LOG 17:48:36.803] Config(@PART[parachuteRadial]) TweakScale/patches/Squad/Squad_Util/@PART[parachuteRadial] [LOG 17:48:36.803] Config(@PART[parachuteSingle]) TweakScale/patches/Squad/Squad_Util/@PART[parachuteSingle] [LOG 17:48:36.803] Config(@PART[GrapplingDevice]) TweakScale/patches/Squad/Squad_Util/@PART[GrapplingDevice] [LOG 17:48:36.803] Config(@PART[mk2DockingPort]) TweakScale/patches/Squad/Squad_Util/@PART[mk2DockingPort] [LOG 17:48:36.806] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.806] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.806] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.806] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.806] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.806] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.806] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.806] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.806] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.807] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.808] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.809] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.810] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.811] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.812] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.812] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.812] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.812] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.812] Resource RESOURCE_DEFINITION added to database [LOG 17:48:36.814] GameDatabase: Assets loaded in 36.457s [LOG 17:48:37.065] [ModuleManager] SHA generated in 0.247s [LOG 17:48:37.065] [ModuleManager] SHA = 79-15-85-FB-00-26-03-D9-FD-E0-3A-EE-6E-94-E3-C3-7B-49-5F-A0-D8-6B-99-AD-64-87-74-2D-04-04-17-7B [LOG 17:48:37.087] [ModuleManager] Changes : Added : TweakScale/DefaultScales.cfg Added : TweakScale/Examples.cfg Added : TweakScale/ScaleExponents.cfg Added : TweakScale/patches/AIES_TweakScale.cfg Added : TweakScale/patches/AtomicAge_TweakScale.cfg Added : TweakScale/patches/B9_TweakScale.cfg Added : TweakScale/patches/BananaForScale_TweakScale.cfg Added : TweakScale/patches/BetterRovemates_TweakScale.cfg Added : TweakScale/patches/DeadlyReentry_TweakScale.cfg Added : TweakScale/patches/FireSpitter_TweakScale.cfg Added : TweakScale/patches/FusTek_TweakScale.cfg Added : TweakScale/patches/KAS_TweakScale.cfg Added : TweakScale/patches/KAX_TweakScale.cfg Added : TweakScale/patches/KH_SSE_TweakScale.cfg Added : TweakScale/patches/KIS_TweakScale.cfg Added : TweakScale/patches/KOSMOS_TweakScale.cfg Added : TweakScale/patches/KSO_TweakScale.cfg Added : TweakScale/patches/KSPX_TweakScale.cfg Added : TweakScale/patches/KW_TweakScale.cfg Added : TweakScale/patches/Kethane_TweakScale.cfg Added : TweakScale/patches/MarkIVSystem_TweakScale.cfg Added : TweakScale/patches/MechJeb_TweakScale.cfg Added : TweakScale/patches/Mk2Expansion_TweakScale.cfg Added : TweakScale/patches/Mk3HypersonicSystems_TweakScale.cfg Added : TweakScale/patches/NASA_TweakScale.cfg Added : TweakScale/patches/NFT_TweakScale.cfg Added : TweakScale/patches/NP_TweakScale.cfg Added : TweakScale/patches/OPT_TweakScale.cfg Added : TweakScale/patches/RLA_TweakScale.cfg Added : TweakScale/patches/SDHI_SMS_TweakScale.cfg Added : TweakScale/patches/SpaceplanePlus_TweakScale.cfg Added : TweakScale/patches/Squad_TweakScale.cfg Added : TweakScale/patches/TAC_Tweakscale.cfg Added : TweakScale/patches/TALCargo_TweakScale.cfg Added : TweakScale/patches/TVPP_TweakScale.cfg Added : TweakScale/patches/Tantares_TweakScale.cfg Added : TweakScale/patches/UKLD_TweakScale.cfg Added : TweakScale/patches/B9_Aerospace/B9.cfg Added : TweakScale/patches/B9_Aerospace/B9_Engines_RCS.cfg Added : TweakScale/patches/B9_Aerospace/B9_HL.cfg Added : TweakScale/patches/B9_Aerospace/B9_HX.cfg Added : TweakScale/patches/B9_Aerospace/B9_Mk12.cfg Added : TweakScale/patches/B9_Aerospace/B9_S2.cfg Added : TweakScale/patches/Squad/Squad_Aero.cfg Added : TweakScale/patches/Squad/Squad_CmdCtrl.cfg Added : TweakScale/patches/Squad/Squad_Engines.cfg Added : TweakScale/patches/Squad/Squad_Structural.cfg Added : TweakScale/patches/Squad/Squad_Tanks.cfg Added : TweakScale/patches/Squad/Squad_Util.cfg [LOG 17:48:37.087] [ModuleManager] Cache SHA = D5-48-D5-58-10-94-F8-A4-75-1B-DB-F6-41-1A-D3-0E-F7-3D-6F-55-85-01-F6-BF-C7-D5-F7-1D-3D-F3-93-44 [LOG 17:48:37.087] [ModuleManager] useCache = False [LOG 17:48:37.087] CodeAssetLoader: Compiling all code assets [LOG 17:48:37.216] [ModuleManager] compiling list of loaded mods... Mod DLLs found: Assembly-CSharp v0.0.0.0 SHA256 4b7da33c3862e42109983bce9666f4b7c62971baae3107c72f8f80726bcbf75f ModuleManager.2.6.25 v2.6.25.0 SHA256 ad71b29cf92e88f6515a82a6e0e95f7361c993cb1955e836ca94c5e891854d5c InterstellarFuelSwitch v2.1.4.0 / v2.1.4 SHA256 44dc0f0944656ae6f9c0655937ed6d06a19c41036b1126bf704aa26675eb2cbf MiniAVC v1.0.3.1 SHA256 6b3cc0606f225afbab50a8e49e409ccd21c7d9c746805de7b47091d2c74ab4be Scale_Redist v1.0.0.0 SHA256 d7d396e245d20ad8e193e7a5e73ee8c745c0564eef60ce1c4d3eeb0db097d71d SaveUpgradePipeline.Scripts v1.0.0.2 / v1.0.0.21 SHA256 b7d9f2b7398a6ce4db5a3d077a298c24f073d9083d8209a24fdc7a6a95f693d7 Scale v2.2.13.0 SHA256 8ff3edcf6de5e2171a83deaca8929f49ca96740f3063e950fb759fabab297538 Scale_Redist v1.0.0.0 SHA256 d7d396e245d20ad8e193e7a5e73ee8c745c0564eef60ce1c4d3eeb0db097d71d Non-DLL mods added (:FOR[xxx]): Mk2Expansion Mods by directory (sub directories of GameData): CommunityResourcePack Squad TweakScale [LOG 17:48:37.220] [ModuleManager] Loading Physics.cfg [LOG 17:48:37.223] [ModuleManager] Checking NEEDS. [LOG 17:48:37.230] [ModuleManager] Deleting node in file: InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch subnode: @PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch]/MODULE:NEEDS[WarpPlugin] as it can't satisfy its NEEDS [LOG 17:48:37.230] [ModuleManager] Deleting node in file: InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch subnode: @PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch]/@MODULE[InterstellarFuelSwitch]:NEEDS[RealSolarSystem] as it can't satisfy its NEEDS [LOG 17:48:37.230] [ModuleManager] Deleting node in file: InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch subnode: @PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch]/MODULE:NEEDS[WarpPlugin] as it can't satisfy its NEEDS [LOG 17:48:37.230] [ModuleManager] Deleting node in file: InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch subnode: @PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch]/MODULE:NEEDS[WarpPlugin] as it can't satisfy its NEEDS [LOG 17:48:37.240] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_CLS subnode: @PART[M2X_TunaCockpit|M2X_BladeCockpit|M2X_DropshipCockpit|M2X_RavenCockpit|M2X_ViperCockpit|M2X_Hub|M2X_THub|M2X_LHub|M2X_SmallLab|M2X_ShieldedDockingPort|M2X_SCRCS|M2X_Endcap|M2X_AligningDockingPort|M2X_EngineShroud|M2X_RadialMountA|M2X_RadialMountB]:NEEDS[ConnectedLivingSpace]:HAS[!MODULE[ModuleConnectedLivingSpace]] as it can't satisfy its NEEDS [LOG 17:48:37.240] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_Pluto]:NEEDS[KerbalAtomics]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.240] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_HypersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.240] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_InverterFuselage]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.240] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_SupersonicNose]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.240] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_SpadeTail]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.240] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_UST]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.240] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_625tricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_linearTricoupler]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_Short25adapter]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_XHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_THub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_LHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_KA subnode: @PART[M2X_Tailboom]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[KerbalAtomics]:NEEDS[!modularFuelTanks]:NEEDS[!RealFuels]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_RPM subnode: @PART[*]:HAS[@INTERNAL[BladeCockpit]]:NEEDS[RasterPropMonitor] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_RPM subnode: @PART[*]:HAS[@INTERNAL[DropshipCockpit]]:NEEDS[RasterPropMonitor] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_RPM subnode: @PART[*]:HAS[@INTERNAL[RavenCockpit]]:NEEDS[RasterPropMonitor] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_RPM subnode: @PART[M2X_ViperCockpit]:NEEDS[RasterPropMonitor] as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_RPM_ASET subnode: @PART[*]:HAS[@INTERNAL[DropshipCockpit_RPM]]:NEEDS[ASET]:Final as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_RPM_ASET subnode: @PART[*]:HAS[@INTERNAL[BladeCockpitRPM]]:NEEDS[ASET]:Final as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_RPM_ASET subnode: @PART[*]:HAS[@INTERNAL[RPM_RavenCockpit]]:NEEDS[ASET]:Final as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_RPM_ASET subnode: @PART[*]:HAS[@INTERNAL[TunaCockpit]]:NEEDS[ASET]:Final as it can't satisfy its NEEDS [LOG 17:48:37.241] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/M2X_RPM_ASET subnode: @PART[*]:HAS[@INTERNAL[RPM_ViperCockpit]]:NEEDS[ASET]:Final as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_Jumpjet]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_FuselageLiftFan]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_LiftFan]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_Pegasus]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_Siddeley]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_HeavyVTOL]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_ESTOC]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_IonEngine]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_MATTOCK]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_SCRamjet]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.242] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_PLUTO]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.243] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_AtomicJet]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.243] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_RATO]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.243] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_RadialAASRB]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.243] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_AugmentedRocket]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.243] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_Ramjet]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.243] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_Turboprop]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.243] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_Turbojet]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.243] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_ChineCap]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_ChineLong]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_ChineShort]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_RootChineAdapter]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_RootChineLong]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_RootChineShort]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_InlineIntake]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_AeroIntake]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_circularintake]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_MantaIntake]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_Precooler]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_Shockcone]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_DropshipCockpit]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_BladeCockpit]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_TunaCockpit]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.244] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_RavenCockpit]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_ViperCockpit]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[MM2X_THub]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_XHub]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_LHub]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_RadialMountA]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_RadialMountB]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_AligningDockingPort]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_ShieldedDockingPort]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_Reactor]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_RCRCS]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_CommunityTechTree subnode: @PART[M2X_PGRCS]:NEEDS[CommunityTechTree] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_DRE subnode: @PART[M2X_*]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_DRE subnode: @PART[M2X_DropshipCockpit]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion]:FINAL as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_DRE subnode: @PART[M2X_HypersonicNose]:NEEDS[DeadlyReentry]:FOR[Mk2Expansion]:FINAL as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_EPL subnode: @PART[M2X_SmallLab]:NEEDS[Launchpad]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_FAR_Compatibility subnode: @PART[M2X_*]:NEEDS[FerramAerospaceResearch|NEAR]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.245] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_Servicebay]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_OMSpod]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_InlineIntake]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_HypersonicNose]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_InverterFuselage]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_SupersonicNose]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_SpadeTail]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_TunaCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_UST]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_625tricoupler]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_DropshipCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_BladeCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_RavenCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_ViperCockpit]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_Shortbicoupler]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_Short25adapter]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_MFT subnode: @PART[M2X_linearTricoupler]:NEEDS[modularFuelTanks]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_NFE_Functionality subnode: @PART[M2X_Pluto]:NEEDS[NearFutureElectrical]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_NFE_Functionality subnode: @PART[M2X_AtomicJet]:NEEDS[NearFutureElectrical]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.246] [ModuleManager] Deleting Node in file Mk2Expansion/Patches/Mk2X_NFE_Functionality subnode: @PART[M2X_Reactor]:NEEDS[NearFutureElectrical]:NEEDS[!KSPIntegration]:FOR[Mk2Expansion] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[Firespitter] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[Firespitter] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[Firespitter] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[Firespitter] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[OpenResourceSystem] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[OpenResourceSystem] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[NearFutureSolar] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[NearFutureElectrical] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[NearFutureElectrical] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[NearFutureElectrical] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[NearFutureElectrical] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.282] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KAS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[TweakableEverything] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[TweakableEverything] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[TweakableEverything] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[TweakableEverything] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[OPT] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[KIS] as it can't satisfy its NEEDS [LOG 17:48:37.283] [ModuleManager] Deleting Node in file TweakScale/ScaleExponents subnode: TWEAKSCALEEXPONENTS:NEEDS[HLAirships] as it can't satisfy its NEEDS [LOG 17:48:37.284] [ModuleManager] Deleting Node in file TweakScale/patches/BananaForScale_TweakScale subnode: @PART[BananaForScale]:NEEDS[BfS] as it can't satisfy its NEEDS [LOG 17:48:37.291] [ModuleManager] Deleting Node in file TweakScale/patches/TALCargo_TweakScale subnode: @PART[TALMediumCargo*]:NEEDS[ModsByTal] as it can't satisfy its NEEDS [LOG 17:48:37.291] [ModuleManager] Deleting Node in file TweakScale/patches/TALCargo_TweakScale subnode: @PART[TALLargeCargo*]:NEEDS[ModsByTal] as it can't satisfy its NEEDS [LOG 17:48:37.297] [ModuleManager] Applying patches [LOG 17:48:37.299] [ModuleManager] :FIRST pass [LOG 17:48:37.314] [ModuleManager] :LEGACY (default) pass [LOG 17:48:37.320] [ModuleManager] Applying node CommunityResourcePack/Asteroid/@PART[PotatoRoid] to Squad/Parts/Misc/PotatoRoid/part/PotatoRoid [LOG 17:48:37.334] [ModuleManager] Applying node CommunityResourcePack/AsteroidScannerSetup/@PART[SurfaceScanner] to Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner [LOG 17:48:37.336] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_InlineIntake] to Mk2Expansion/Parts/Aero/AdapterIntake/part/M2X_InlineIntake [LOG 17:48:37.340] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_AeroIntake] to Mk2Expansion/Parts/Aero/AeroIntake/part/M2X_AeroIntake [LOG 17:48:37.343] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_circularintake] to Mk2Expansion/Parts/Aero/CircularIntake/part/M2X_circularintake [LOG 17:48:37.347] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_EngineShroud] to Mk2Expansion/Parts/Aero/EngineShroud/part/M2X_EngineShroud [LOG 17:48:37.354] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_MantaIntake] to Mk2Expansion/Parts/Aero/MantaIntake/part/M2X_MantaIntake [LOG 17:48:37.357] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Precooler] to Mk2Expansion/Parts/Aero/Precooler/part/M2X_Precooler [LOG 17:48:37.362] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Shockcone] to Mk2Expansion/Parts/Aero/ShockCone/part/M2X_Shockcone [LOG 17:48:37.365] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Tailboom] to Mk2Expansion/Parts/Aero/tailboom/part/M2X_Tailboom [LOG 17:48:37.367] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_ChineCap] to Mk2Expansion/Parts/Aero/Chines/End/M2X_ChineCap [LOG 17:48:37.370] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_ChineLong] to Mk2Expansion/Parts/Aero/Chines/Long/M2X_ChineLong [LOG 17:48:37.373] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_ChineShort] to Mk2Expansion/Parts/Aero/Chines/Short/M2X_ChineShort [LOG 17:48:37.377] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Shortbicoupler] to Mk2Expansion/Parts/FuelTank/Bicoupler/part/M2X_Shortbicoupler [LOG 17:48:37.381] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_HypersonicNose] to Mk2Expansion/Parts/FuelTank/HypersonicNose/part/M2X_HypersonicNose [LOG 17:48:38.785] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_InverterFuselage] to Mk2Expansion/Parts/FuelTank/Inverter/part/M2X_InverterFuselage [LOG 17:48:38.792] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_linearTricoupler] to Mk2Expansion/Parts/FuelTank/LinearTricoupler/part/M2X_linearTricoupler [LOG 17:48:38.796] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_SupersonicNose] to Mk2Expansion/Parts/FuelTank/Nosecap/part/M2X_SupersonicNose [LOG 17:48:38.800] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_UST] to Mk2Expansion/Parts/FuelTank/ServiceTank/part/M2X_UST [LOG 17:48:38.802] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Short25adapter] to Mk2Expansion/Parts/FuelTank/size2adapter/part/M2X_Short25adapter [LOG 17:48:38.806] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_SpadeTail] to Mk2Expansion/Parts/FuelTank/SpadeTail/part/M2X_SpadeTail [LOG 17:48:38.810] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_625tricoupler] to Mk2Expansion/Parts/FuelTank/Tricoupler/part/M2X_625tricoupler [LOG 17:48:38.814] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Endcap] to Mk2Expansion/Parts/Structural/Endcap/part/M2X_Endcap [LOG 17:48:38.816] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Decoupler] to Mk2Expansion/Parts/Structural/Decoupler/part/M2X_Decoupler [LOG 17:48:38.819] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_LHub] to Mk2Expansion/Parts/Structural/Hubs/LHub/M2X_LHub [LOG 17:48:38.821] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_THub] to Mk2Expansion/Parts/Structural/Hubs/THub/M2X_THub [LOG 17:48:38.826] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_XHub] to Mk2Expansion/Parts/Structural/Hubs/XHub/M2X_XHub [LOG 17:48:38.828] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RadialMountA] to Mk2Expansion/Parts/Structural/RadialMount/RadialA/M2X_RadialMountA [LOG 17:48:38.832] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RadialMountB] to Mk2Expansion/Parts/Structural/RadialMount/RadialB/M2X_RadialMountB [LOG 17:48:38.835] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RadialLeg] to Mk2Expansion/Parts/Utility/LandingLeg/part/M2X_RadialLeg [LOG 17:48:38.838] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_OMSpod] to Mk2Expansion/Parts/Utility/OMS/omsEngine/M2X_OMSpod [LOG 17:48:38.841] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Reactor] to Mk2Expansion/Parts/Utility/Reactor/part/M2X_Reactor [LOG 17:48:38.844] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Servicebay] to Mk2Expansion/Parts/Utility/ServiceBay/part/M2X_Servicebay [LOG 17:48:38.847] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_SolarpanelPod] to Mk2Expansion/Parts/Utility/SolarPanel/part/M2X_SolarpanelPod [LOG 17:48:38.850] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RATO] to Mk2Expansion/Parts/Engines/AASRB/Radial/M2X_RATO [LOG 17:48:38.853] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_RadialAASRB] to Mk2Expansion/Parts/Engines/AASRB/RadialL/M2X_RadialAASRB [LOG 17:48:38.856] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_LinearAerospike] to Mk2Expansion/Parts/Engines/Aerospike/part/M2X_LinearAerospike [LOG 17:48:38.864] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_AugmentedRocket] to Mk2Expansion/Parts/Engines/AugmentedRocket/part/M2X_AugmentedRocket [LOG 17:48:38.868] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_ESTOC] to Mk2Expansion/Parts/Engines/ESTOC/part/M2X_ESTOC [LOG 17:48:38.871] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_IonEngine] to Mk2Expansion/Parts/Engines/IonEngine/part/M2X_IonEngine [LOG 17:48:38.874] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Jumpjet] to Mk2Expansion/Parts/Engines/JumpJet/part/M2X_Jumpjet [LOG 17:48:38.877] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_FuselageRVTOLE] to Mk2Expansion/Parts/Engines/LanderEngine/part/M2X_FuselageRVTOLE [LOG 17:48:38.880] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_LiftFan] to Mk2Expansion/Parts/Engines/LiftFan/stack/M2X_LiftFan [LOG 17:48:38.883] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_FuselageLiftFan] to Mk2Expansion/Parts/Engines/LiftFan/fuselage/M2X_FuselageLiftFan [LOG 17:48:38.887] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_MATTOCK] to Mk2Expansion/Parts/Engines/MATTOCK/part/M2X_MATTOCK [LOG 17:48:38.890] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Pegasus] to Mk2Expansion/Parts/Engines/Pegasus/part/M2X_Pegasus [LOG 17:48:38.893] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Pluto] to Mk2Expansion/Parts/Engines/Pluto/part/M2X_Pluto [LOG 17:48:38.899] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Ramjet] to Mk2Expansion/Parts/Engines/Ramjet/part/M2X_Ramjet [LOG 17:48:38.927] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_AtomicJet] to Mk2Expansion/Parts/Engines/Rontgen/part/M2X_AtomicJet [LOG 17:48:38.938] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_SCRamjet] to Mk2Expansion/Parts/Engines/SCRamjet/part/M2X_SCRamjet [LOG 17:48:38.945] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Siddeley] to Mk2Expansion/Parts/Engines/Siddeley/part/M2X_Siddeley [LOG 17:48:38.949] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Turbofan] to Mk2Expansion/Parts/Engines/Turbofan/part/M2X_Turbofan [LOG 17:48:38.952] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Turbojet] to Mk2Expansion/Parts/Engines/Turbojet/part/M2X_Turbojet [LOG 17:48:38.955] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_Turboprop] to Mk2Expansion/Parts/Engines/Turboprop/part/M2X_Turboprop [LOG 17:48:38.958] [ModuleManager] Applying node Mk2Expansion/Patches/M2X_Tweakscale/@PART[M2X_HeavyVTOL] to Mk2Expansion/Parts/Engines/VTOL/Part/M2X_HeavyVTOL [LOG 17:48:38.962] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Aero/AdapterIntake/part/M2X_InlineIntake [LOG 17:48:38.964] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Aero/AeroIntake/part/M2X_AeroIntake [LOG 17:48:38.964] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Aero/CircularIntake/part/M2X_circularintake [LOG 17:48:38.965] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Aero/MantaIntake/part/M2X_MantaIntake [LOG 17:48:38.965] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Aero/Precooler/part/M2X_Precooler [LOG 17:48:38.965] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Aero/ShockCone/part/M2X_Shockcone [LOG 17:48:38.966] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Command/Viper/part/M2X_ViperCockpit [LOG 17:48:38.968] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Engines/JumpJet/part/M2X_Jumpjet [LOG 17:48:38.970] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Engines/Turboprop/part/M2X_Turboprop [LOG 17:48:38.970] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Mk2Expansion/Parts/Engines/VTOL/Part/M2X_HeavyVTOL [LOG 17:48:38.973] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop [LOG 17:48:38.974] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake [LOG 17:48:38.974] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake [LOG 17:48:38.975] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong [LOG 17:48:38.975] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake [LOG 17:48:38.975] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake [LOG 17:48:38.981] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2 [LOG 17:48:38.988] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody [LOG 17:48:38.988] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody [LOG 17:48:38.989] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_AtmIntake/@PART[*]:HAS[@MODULE[ModuleResourceIntake],@RESOURCE[IntakeAir],!RESOURCE[IntakeAtm]] to Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage [LOG 17:48:41.102] [ModuleManager] Applying node TweakScale/patches/Mk2Expansion_TweakScale/@PART[M2X_AtomicJet] to Mk2Expansion/Parts/Engines/Rontgen/part/M2X_AtomicJet [LOG 17:48:43.896] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[airbrake1] to Squad/Parts/Aero/airbrake/Airbrake/airbrake1 [LOG 17:48:43.898] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[HeatShield1] to Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1 [LOG 17:48:43.901] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[HeatShield2] to Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2 [LOG 17:48:43.905] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[HeatShield3] to Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3 [LOG 17:48:43.908] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[InflatableHeatShield] to Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield [LOG 17:48:43.913] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[standardNoseCone] to Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone [LOG 17:48:43.916] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[noseCone] to Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone [LOG 17:48:43.918] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[rocketNoseCone] to Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone [LOG 17:48:43.921] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[pointyNoseConeA] to Squad/Parts/Aero/cones/ConeA/pointyNoseConeA [LOG 17:48:43.924] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[pointyNoseConeB] to Squad/Parts/Aero/cones/ConeB/pointyNoseConeB [LOG 17:48:43.930] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[CanardController] to Squad/Parts/Aero/airplaneFins/standardCanard/CanardController [LOG 17:48:43.933] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[deltaWing] to Squad/Parts/Aero/wings/delta/deltaWing [LOG 17:48:43.936] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[delta_small] to Squad/Parts/Aero/wings/delta_small/delta_small [LOG 17:48:43.938] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[airlinerCtrlSrf] to Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf [LOG 17:48:43.941] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[airlinerMainWing] to Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing [LOG 17:48:43.944] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[airlinerTailFin] to Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin [LOG 17:48:43.947] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[basicFin] to Squad/Parts/Aero/basicFin/basicFin/basicFin [LOG 17:48:43.950] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[smallCtrlSrf] to Squad/Parts/Aero/wings/elevon4/smallCtrlSrf [LOG 17:48:43.952] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[sweptWing] to Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing [LOG 17:48:43.954] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[tailfin] to Squad/Parts/Aero/airplaneFins/tailfin/tailfin [LOG 17:48:43.957] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector] to Squad/Parts/Aero/wings/connector1/wingConnector [LOG 17:48:43.959] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[winglet] to Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet [LOG 17:48:43.964] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[R8winglet] to Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet [LOG 17:48:43.966] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[winglet3] to Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3 [LOG 17:48:43.969] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[structuralWing4] to Squad/Parts/Aero/wings/structural4/structuralWing4 [LOG 17:48:43.972] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector5] to Squad/Parts/Aero/wings/connector5/wingConnector5 [LOG 17:48:43.976] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[elevon5] to Squad/Parts/Aero/wings/elevon5/elevon5 [LOG 17:48:43.979] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[structuralWing] to Squad/Parts/Aero/wings/structural1/structuralWing [LOG 17:48:43.982] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleDelta] to Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta [LOG 17:48:43.986] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleElevon1] to Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1 [LOG 17:48:43.990] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleElevon2] to Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2 [LOG 17:48:43.994] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleStrake] to Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake [LOG 17:48:44.000] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingShuttleRudder] to Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder [LOG 17:48:44.003] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[sweptWing1] to Squad/Parts/Aero/wings/swept1/sweptWing1 [LOG 17:48:44.006] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[sweptWing2] to Squad/Parts/Aero/wings/swept2/sweptWing2 [LOG 17:48:44.008] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[AdvancedCanard] to Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard [LOG 17:48:44.011] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[StandardCtrlSrf] to Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf [LOG 17:48:44.017] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector2] to Squad/Parts/Aero/wings/connector2/wingConnector2 [LOG 17:48:44.020] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector3] to Squad/Parts/Aero/wings/connector3/wingConnector3 [LOG 17:48:44.023] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingConnector4] to Squad/Parts/Aero/wings/connector4/wingConnector4 [LOG 17:48:44.035] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[elevon2] to Squad/Parts/Aero/wings/elevon2/elevon2 [LOG 17:48:44.037] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[elevon3] to Squad/Parts/Aero/wings/elevon3/elevon3 [LOG 17:48:44.039] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[wingStrake] to Squad/Parts/Aero/wings/strake/wingStrake [LOG 17:48:44.044] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[structuralWing2] to Squad/Parts/Aero/wings/structural2/structuralWing2 [LOG 17:48:44.047] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[structuralWing3] to Squad/Parts/Aero/wings/structural3/structuralWing3 [LOG 17:48:44.050] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[airplaneTail] to Squad/Parts/Aero/cones/tailConnectorA/airplaneTail [LOG 17:48:44.053] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[airplaneTailB] to Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB [LOG 17:48:44.055] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[airScoop] to Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop [LOG 17:48:44.058] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[miniIntake] to Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake [LOG 17:48:44.060] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[CircularIntake] to Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake [LOG 17:48:44.063] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[ramAirIntake] to Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake [LOG 17:48:44.069] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[MK1IntakeFuselage] to Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage [LOG 17:48:44.072] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[IntakeRadialLong] to Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong [LOG 17:48:44.075] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Aero/@PART[shockConeIntake] to Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake [LOG 17:48:44.078] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[advSasModule] to Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule [LOG 17:48:44.080] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[asasmodule1-2] to Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2 [LOG 17:48:44.083] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[sasModule] to Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule [LOG 17:48:44.085] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[cupola] to Squad/Parts/Command/cupola/cupola/cupola [LOG 17:48:44.088] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[landerCabinSmall] to Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall [LOG 17:48:44.091] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[Mark1Cockpit] to Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit [LOG 17:48:44.093] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[Mark2Cockpit] to Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit [LOG 17:48:44.096] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[Mark1-2Pod] to Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod [LOG 17:48:44.098] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk1pod] to Squad/Parts/Command/mk1pod/mk1Pod/mk1pod [LOG 17:48:44.103] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2LanderCabin] to Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin [LOG 17:48:44.127] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk3Cockpit_Shuttle] to Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle [LOG 17:48:44.131] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2Cockpit_Standard] to Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard [LOG 17:48:44.139] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2Cockpit_Inline] to Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline [LOG 17:48:44.143] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[crewCabin] to Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin [LOG 17:48:44.145] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[MK1CrewCabin] to Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin [LOG 17:48:44.149] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2CrewCabin] to Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin [LOG 17:48:44.151] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk3CrewCabin] to Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin [LOG 17:48:44.154] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[Large_Crewed_Lab] to Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab [LOG 17:48:44.157] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[mk2DroneCore] to Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore [LOG 17:48:44.160] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreCube] to Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube [LOG 17:48:44.163] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[roverBody] to Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody [LOG 17:48:44.166] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreHex] to Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex [LOG 17:48:44.173] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[HECS2_ProbeCore] to Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore [LOG 17:48:44.176] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreOcto] to Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto [LOG 17:48:44.180] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreOcto2] to Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2 [LOG 17:48:44.183] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeCoreSphere] to Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere [LOG 17:48:44.186] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[avionicsNoseCone] to Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone [LOG 17:48:44.190] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeStackLarge] to Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge [LOG 17:48:44.194] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[probeStackSmall] to Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall [LOG 17:48:44.198] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_CmdCtrl/@PART[science_module] to Squad/Parts/Science/MaterialBay/materialBay/science_module [LOG 17:48:44.203] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[LaunchEscapeSystem] to Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem [LOG 17:48:44.207] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[omsEngine] to Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine [LOG 17:48:44.210] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[ionEngine] to Squad/Parts/Engine/ionEngine/ionEngine/ionEngine [LOG 17:48:44.213] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[miniJetEngine] to Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine [LOG 17:48:44.216] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[JetEngine] to Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine [LOG 17:48:44.219] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[turboJet] to Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet [LOG 17:48:44.222] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[turboFanSize2] to Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2 [LOG 17:48:44.226] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[turboFanEngine] to Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine [LOG 17:48:44.230] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[RAPIER] to Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER [LOG 17:48:44.234] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine] to Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine [LOG 17:48:44.239] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[engineLargeSkipper] to Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper [LOG 17:48:44.246] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine1-2] to Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2 [LOG 17:48:44.249] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[Size2LFB] to Squad/Parts/Engine/Size2LFB/part/Size2LFB [LOG 17:48:44.253] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[Size3AdvancedEngine] to Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine [LOG 17:48:44.257] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[Size3EngineCluster] to Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster [LOG 17:48:44.260] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[SSME] to Squad/Parts/Engine/liquidEngineSSME/SSME/SSME [LOG 17:48:44.263] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine2] to Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2 [LOG 17:48:44.267] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine2-2] to Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2 [LOG 17:48:44.270] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngine3] to Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3 [LOG 17:48:44.274] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[liquidEngineMini] to Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini [LOG 17:48:44.281] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[microEngine] to Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine [LOG 17:48:44.285] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[nuclearEngine] to Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine [LOG 17:48:44.288] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[radialEngineMini] to Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini [LOG 17:48:44.293] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[radialLiquidEngine1-2] to Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2 [LOG 17:48:44.298] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[smallRadialEngine] to Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine [LOG 17:48:44.303] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[toroidalAerospike] to Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike [LOG 17:48:44.306] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[sepMotor1] to Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1 [LOG 17:48:44.310] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[solidBooster_sm] to Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm [LOG 17:48:44.315] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[solidBooster] to Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster [LOG 17:48:44.319] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[solidBooster1-1] to Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1 [LOG 17:48:44.322] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[MassiveBooster] to Squad/Parts/Engine/MassiveSRB/part/MassiveBooster [LOG 17:48:44.326] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[linearRcs] to Squad/Parts/Utility/linearRCS/linearRCS/linearRcs [LOG 17:48:44.329] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[RCSBlock] to Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock [LOG 17:48:44.331] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Engines/@PART[vernierEngine] to Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine [LOG 17:48:44.335] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[radialDecoupler] to Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler [LOG 17:48:44.339] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[radialDecoupler2] to Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2 [LOG 17:48:44.344] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[radialDecoupler1-2] to Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2 [LOG 17:48:44.347] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stackDecoupler] to Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler [LOG 17:48:44.354] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stackDecouplerMini] to Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini [LOG 17:48:44.357] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[decoupler1-2] to Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2 [LOG 17:48:44.361] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stackSeparator] to Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator [LOG 17:48:44.365] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stackSeparatorMini] to Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini [LOG 17:48:44.369] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stackSeparatorBig] to Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig [LOG 17:48:44.372] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[size3Decoupler] to Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler [LOG 17:48:44.376] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[nacelleBody] to Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody [LOG 17:48:44.380] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[radialEngineBody] to Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody [LOG 17:48:44.384] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[smallHardpoint] to Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint [LOG 17:48:44.389] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stationHub] to Squad/Parts/Structural/stationHub/stationHub/stationHub [LOG 17:48:44.392] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[structuralIBeam1] to Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1 [LOG 17:48:44.395] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[structuralIBeam2] to Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2 [LOG 17:48:44.398] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[structuralIBeam3] to Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3 [LOG 17:48:44.402] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[structuralMiniNode] to Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode [LOG 17:48:44.405] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[structuralPanel1] to Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1 [LOG 17:48:44.409] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[structuralPanel2] to Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2 [LOG 17:48:44.413] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[structuralPylon] to Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon [LOG 17:48:44.416] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[strutCube] to Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube [LOG 17:48:44.418] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[strutOcto] to Squad/Parts/Structural/strutOcto/strutOcto/strutOcto [LOG 17:48:44.423] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[trussAdapter] to Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter [LOG 17:48:44.425] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[trussPiece1x] to Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x [LOG 17:48:44.428] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[trussPiece3x] to Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x [LOG 17:48:44.430] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[noseConeAdapter] to Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter [LOG 17:48:44.435] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[adapterLargeSmallBi] to Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi [LOG 17:48:44.440] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[adapterLargeSmallQuad] to Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad [LOG 17:48:44.466] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[adapterLargeSmallTri] to Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri [LOG 17:48:44.472] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[adapterSmallMiniShort] to Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort [LOG 17:48:44.476] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[adapterSmallMiniTall] to Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall [LOG 17:48:44.479] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[largeAdapter] to Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter [LOG 17:48:44.482] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[largeAdapter2] to Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2 [LOG 17:48:44.486] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stackBiCoupler] to Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler [LOG 17:48:44.490] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stackQuadCoupler] to Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler [LOG 17:48:44.494] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stackTriCoupler] to Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler [LOG 17:48:44.498] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[Mk1FuselageStructural] to Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural [LOG 17:48:44.502] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Structural/@PART[stackPoint1] to Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1 [LOG 17:48:44.506] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank] to Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank [LOG 17:48:44.509] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank_long] to Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long [LOG 17:48:44.511] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank1-2] to Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2 [LOG 17:48:44.514] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank2-2] to Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2 [LOG 17:48:44.516] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank3-2] to Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2 [LOG 17:48:44.519] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTank4-2] to Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2 [LOG 17:48:44.522] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTankSmall] to Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall [LOG 17:48:44.525] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[fuelTankSmallFlat] to Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat [LOG 17:48:44.528] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[miniFuelTank] to Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank [LOG 17:48:44.531] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[MK1Fuselage] to Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage [LOG 17:48:44.533] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[miniFuselage] to Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage [LOG 17:48:44.536] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[radialRCSTank] to Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank [LOG 17:48:44.541] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[RCSFuelTank] to Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank [LOG 17:48:44.544] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[RCSTank1-2] to Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2 [LOG 17:48:44.546] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[rcsTankMini] to Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini [LOG 17:48:44.549] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[rcsTankRadialLong] to Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong [LOG 17:48:44.553] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[toroidalFuelTank] to Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank [LOG 17:48:44.556] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[xenonTank] to Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank [LOG 17:48:44.558] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[xenonTankRadial] to Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial [LOG 17:48:44.561] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[xenonTankLarge] to Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge [LOG 17:48:44.564] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[LargeTank] to Squad/Parts/Resources/LargeTank/LargeTank/LargeTank [LOG 17:48:44.566] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[SmallTank] to Squad/Parts/Resources/SmallTank/SmallTank/SmallTank [LOG 17:48:44.569] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[RadialOreTank] to Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank [LOG 17:48:44.572] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLF_25] to Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25 [LOG 17:48:44.578] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLF_50] to Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50 [LOG 17:48:44.581] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageMONO] to Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO [LOG 17:48:44.585] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLFO_25] to Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25 [LOG 17:48:44.589] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLFO_50] to Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50 [LOG 17:48:44.592] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLF_100] to Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100 [LOG 17:48:44.595] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk3FuselageLFO_100] to Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100 [LOG 17:48:44.599] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[adapterMk3-Mk2] to Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2 [LOG 17:48:44.603] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[adapterMk3-Size2] to Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2 [LOG 17:48:44.607] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[adapterMk3-Size2Slant] to Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant [LOG 17:48:44.614] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[adapterSize3-Mk3] to Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3 [LOG 17:48:44.617] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[adapterSize2-Mk2] to Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2 [LOG 17:48:44.621] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[adapterSize2-Size1] to Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1 [LOG 17:48:44.624] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[adapterSize2-Size1Slant] to Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant [LOG 17:48:44.628] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[adapterEngines] to Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines [LOG 17:48:44.632] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[Size3LargeTank] to Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank [LOG 17:48:44.636] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[Size3MediumTank] to Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank [LOG 17:48:44.639] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[Size3SmallTank] to Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank [LOG 17:48:44.643] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[Size3to2Adapter] to Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter [LOG 17:48:44.648] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk2_1m_Bicoupler] to Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler [LOG 17:48:44.651] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk2_1m_AdapterLong] to Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong [LOG 17:48:44.655] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk2SpacePlaneAdapter] to Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter [LOG 17:48:44.658] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk2Fuselage] to Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage [LOG 17:48:44.661] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk2FuselageLongLFO] to Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO [LOG 17:48:44.665] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk2FuselageShortLiquid] to Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid [LOG 17:48:44.669] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk2FuselageShortLFO] to Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO [LOG 17:48:44.673] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Tanks/@PART[mk2FuselageShortMono] to Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono [LOG 17:48:44.676] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[mk2CargoBayL] to Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL [LOG 17:48:44.679] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[mk2CargoBayS] to Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS [LOG 17:48:44.684] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[ServiceBay_125] to Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125 [LOG 17:48:44.687] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[ServiceBay_250] to Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250 [LOG 17:48:44.690] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[mk3CargoBayM] to Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM [LOG 17:48:44.693] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[mk3CargoBayL] to Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL [LOG 17:48:44.695] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[mk3CargoBayS] to Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS [LOG 17:48:44.698] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[mk3CargoRamp] to Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp [LOG 17:48:44.701] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[batteryBank] to Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank [LOG 17:48:44.704] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[batteryBankLarge] to Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge [LOG 17:48:44.708] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[batteryBankMini] to Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini [LOG 17:48:44.711] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[batteryPack] to Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack [LOG 17:48:44.714] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[ksp_r_largeBatteryPack] to Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack [LOG 17:48:44.720] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[rtg] to Squad/Parts/Electrical/RTG/RTG/rtg [LOG 17:48:44.723] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[spotLight1] to Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1 [LOG 17:48:44.725] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[spotLight2] to Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2 [LOG 17:48:44.727] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[solarPanels1] to Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1 [LOG 17:48:44.730] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[solarPanels2] to Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2 [LOG 17:48:44.733] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[solarPanels3] to Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3 [LOG 17:48:44.736] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[solarPanels4] to Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4 [LOG 17:48:44.740] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[solarPanels5] to Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5 [LOG 17:48:44.743] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[largeSolarPanel] to Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel [LOG 17:48:44.747] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[LgRadialSolarPanel] to Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel [LOG 17:48:44.751] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[foldingRadLarge] to Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge [LOG 17:48:44.756] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[foldingRadMed] to Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed [LOG 17:48:44.759] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[foldingRadSmall] to Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall [LOG 17:48:44.762] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[radPanelLg] to Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg [LOG 17:48:44.764] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[radPanelSm] to Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm [LOG 17:48:44.766] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[FuelCell] to Squad/Parts/Resources/FuelCell/FuelCell/FuelCell [LOG 17:48:44.793] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[FuelCellArray] to Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray [LOG 17:48:44.797] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[ISRU] to Squad/Parts/Resources/ISRU/ISRU/ISRU [LOG 17:48:44.799] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[MiniISRU] to Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU [LOG 17:48:44.802] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[RadialDrill] to Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill [LOG 17:48:44.804] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[MiniDrill] to Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill [LOG 17:48:44.807] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[OrbitalScanner] to Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner [LOG 17:48:44.810] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[SurfaceScanner] to Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner [LOG 17:48:44.814] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[SurveyScanner] to Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner [LOG 17:48:44.817] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[GearFixed] to Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed [LOG 17:48:44.820] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[GearFree] to Squad/Parts/Wheel/LandingGear/GearFree/GearFree [LOG 17:48:44.822] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[SmallGearBay] to Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay [LOG 17:48:44.825] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[GearSmall] to Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall [LOG 17:48:44.827] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[GearMedium] to Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium [LOG 17:48:44.832] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[GearLarge] to Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge [LOG 17:48:44.834] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[roverWheel1] to Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1 [LOG 17:48:44.837] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[roverWheel2] to Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2 [LOG 17:48:44.840] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[roverWheel3] to Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3 [LOG 17:48:44.842] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[wheelMed] to Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed [LOG 17:48:44.844] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[landingLeg1] to Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1 [LOG 17:48:44.848] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[landingLeg1-2] to Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2 [LOG 17:48:44.851] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[miniLandingLeg] to Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg [LOG 17:48:44.854] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[parachuteDrogue] to Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue [LOG 17:48:44.857] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[parachuteLarge] to Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge [LOG 17:48:44.861] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[parachuteRadial] to Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial [LOG 17:48:44.867] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[parachuteSingle] to Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle [LOG 17:48:44.870] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[GrapplingDevice] to Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice [LOG 17:48:44.873] [ModuleManager] Applying node TweakScale/patches/Squad/Squad_Util/@PART[mk2DockingPort] to Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort [LOG 17:48:44.873] [ModuleManager] :BEFORE[ASSEMBLY-CSHARP] pass [LOG 17:48:44.879] [ModuleManager] :FOR[ASSEMBLY-CSHARP] pass [LOG 17:48:44.883] [ModuleManager] :AFTER[ASSEMBLY-CSHARP] pass [LOG 17:48:44.888] [ModuleManager] :BEFORE[COMMUNITYRESOURCEPACK] pass [LOG 17:48:44.897] [ModuleManager] :FOR[COMMUNITYRESOURCEPACK] pass [LOG 17:48:44.907] [ModuleManager] :AFTER[COMMUNITYRESOURCEPACK] pass [LOG 17:48:44.917] [ModuleManager] :BEFORE[INTERSTELLARFUELSWITCH] pass [LOG 17:48:44.928] [ModuleManager] :FOR[INTERSTELLARFUELSWITCH] pass [LOG 17:48:44.934] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Mk2Expansion/Parts/FuelTank/HypersonicNose/part/M2X_HypersonicNose [LOG 17:48:44.942] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Mk2Expansion/Parts/FuelTank/Inverter/part/M2X_InverterFuselage [LOG 17:48:44.946] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Mk2Expansion/Parts/FuelTank/LinearTricoupler/part/M2X_linearTricoupler [LOG 17:48:44.950] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Mk2Expansion/Parts/FuelTank/Nosecap/part/M2X_SupersonicNose [LOG 17:48:44.954] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Mk2Expansion/Parts/FuelTank/SpadeTail/part/M2X_SpadeTail [LOG 17:48:44.958] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Mk2Expansion/Parts/FuelTank/Tricoupler/part/M2X_625tricoupler [LOG 17:48:44.962] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Mk2Expansion/Parts/FuelTank/size2adapter/part/M2X_Short25adapter [LOG 17:48:44.976] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank [LOG 17:48:44.979] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank [LOG 17:48:44.983] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank [LOG 17:48:44.986] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2 [LOG 17:48:44.990] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2 [LOG 17:48:44.995] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant [LOG 17:48:44.999] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2 [LOG 17:48:45.003] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1 [LOG 17:48:45.006] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant [LOG 17:48:45.010] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3 [LOG 17:48:45.014] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2 [LOG 17:48:45.019] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank [LOG 17:48:45.023] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat [LOG 17:48:45.028] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall [LOG 17:48:45.031] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank [LOG 17:48:45.035] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long [LOG 17:48:45.039] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank [LOG 17:48:45.042] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2 [LOG 17:48:45.046] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2 [LOG 17:48:45.050] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2 [LOG 17:48:45.054] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler [LOG 17:48:45.058] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong [LOG 17:48:45.062] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter [LOG 17:48:45.066] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO [LOG 17:48:45.070] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO [LOG 17:48:45.074] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100 [LOG 17:48:45.078] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25 [LOG 17:48:45.082] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:HAS[@RESOURCE[LiquidFuel],@RESOURCE[Oxidizer],!RESOURCE[MonoPropellant],!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50 [LOG 17:48:45.099] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/XenonTank/@PART[xenonTank]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[FSfuelSwitch],!MODULE[B9PartSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines]]:FOR[InterstellarFuelSwitch] to Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank [LOG 17:48:45.101] [ModuleManager] :AFTER[INTERSTELLARFUELSWITCH] pass [LOG 17:48:45.105] [ModuleManager] :BEFORE[MINIAVC] pass [LOG 17:48:45.110] [ModuleManager] :FOR[MINIAVC] pass [LOG 17:48:45.116] [ModuleManager] :AFTER[MINIAVC] pass [LOG 17:48:45.126] [ModuleManager] :BEFORE[MK2EXPANSION] pass [LOG 17:48:45.137] [ModuleManager] :FOR[MK2EXPANSION] pass [LOG 17:48:45.154] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_UST]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] to Mk2Expansion/Parts/FuelTank/ServiceTank/part/M2X_UST [LOG 17:48:45.189] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_XHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] to Mk2Expansion/Parts/Structural/Hubs/XHub/M2X_XHub [LOG 17:48:45.192] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_THub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] to Mk2Expansion/Parts/Structural/Hubs/THub/M2X_THub [LOG 17:48:45.194] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_LHub]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] to Mk2Expansion/Parts/Structural/Hubs/LHub/M2X_LHub [LOG 17:48:45.196] [ModuleManager] Applying node Mk2Expansion/Patches/Mk2X_FuelTankSwitch/@PART[M2X_Tailboom]:HAS[!MODULE[InterstellarFuelSwitch],!MODULE[ModuleEnginesFX],!MODULE[ModuleEngines],!MODULE[FSfuelSwitch]]:NEEDS[!RealFuels]:NEEDS[!KerbalAtomics]:FOR[Mk2Expansion] to Mk2Expansion/Parts/Aero/tailboom/part/M2X_Tailboom [LOG 17:48:45.199] [ModuleManager] :AFTER[MK2EXPANSION] pass [LOG 17:48:45.203] [ModuleManager] :BEFORE[MODULEMANAGER.2.6.25] pass [LOG 17:48:45.207] [ModuleManager] :FOR[MODULEMANAGER.2.6.25] pass [LOG 17:48:45.212] [ModuleManager] :AFTER[MODULEMANAGER.2.6.25] pass [LOG 17:48:45.222] [ModuleManager] :BEFORE[SAVEUPGRADEPIPELINE.SCRIPTS] pass [LOG 17:48:45.233] [ModuleManager] :FOR[SAVEUPGRADEPIPELINE.SCRIPTS] pass [LOG 17:48:45.243] [ModuleManager] :AFTER[SAVEUPGRADEPIPELINE.SCRIPTS] pass [LOG 17:48:45.253] [ModuleManager] :BEFORE[SCALE] pass [LOG 17:48:45.263] [ModuleManager] :FOR[SCALE] pass [LOG 17:48:45.274] [ModuleManager] :AFTER[SCALE] pass [LOG 17:48:45.284] [ModuleManager] :BEFORE[SCALE_REDIST] pass [LOG 17:48:45.294] [ModuleManager] :FOR[SCALE_REDIST] pass [LOG 17:48:45.304] [ModuleManager] :AFTER[SCALE_REDIST] pass [LOG 17:48:45.315] [ModuleManager] :BEFORE[SQUAD] pass [LOG 17:48:45.325] [ModuleManager] :FOR[SQUAD] pass [LOG 17:48:45.335] [ModuleManager] :AFTER[SQUAD] pass [LOG 17:48:45.345] [ModuleManager] :BEFORE[TWEAKSCALE] pass [LOG 17:48:45.355] [ModuleManager] :FOR[TWEAKSCALE] pass [LOG 17:48:45.366] [ModuleManager] :AFTER[TWEAKSCALE] pass [LOG 17:48:45.377] [ModuleManager] :FINAL pass [LOG 17:48:45.378] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to InterstellarFuelSwitch/Parts/InterstellarGasTank/InterstellarGasTank-PB-Stack/InterstellarGasTank_PB-Stack [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to InterstellarFuelSwitch/Parts/InterstellarGasTank/InterstellarGasTank-PB-X50R/InterstellarGasTank-PB-X50R [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/AdapterIntake/part/M2X_InlineIntake [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/AeroIntake/part/M2X_AeroIntake [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/Chines/End/M2X_ChineCap [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/Chines/Long/M2X_ChineLong [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/Chines/RLong/M2X_RootChineLong [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/Chines/RShort/M2X_RootChineShort [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/Chines/Radapter/M2X_RootChineAdapter [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/Chines/Short/M2X_ChineShort [LOG 17:48:45.379] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/CircularIntake/part/M2X_circularintake [LOG 17:48:45.380] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/EngineShroud/part/M2X_EngineShroud [LOG 17:48:45.380] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/MantaIntake/part/M2X_MantaIntake [LOG 17:48:45.380] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/Precooler/part/M2X_Precooler [LOG 17:48:45.380] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/ShockCone/part/M2X_Shockcone [LOG 17:48:45.380] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/mk1Chines/Long/Mk1ChineLong [LOG 17:48:45.380] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/mk1Chines/Short/Mk1ChineShort [LOG 17:48:45.380] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/mk1Chines/cap/Mk1Chinecap [LOG 17:48:45.380] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Aero/tailboom/part/M2X_Tailboom [LOG 17:48:45.380] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Command/Angler/part/M2X_DropshipCockpit [LOG 17:48:45.381] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Command/Blade/part/M2X_BladeCockpit [LOG 17:48:45.381] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Command/Fishhead/part/M2X_TunaCockpit [LOG 17:48:45.381] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Command/Raven/part/M2X_RavenCockpit [LOG 17:48:45.381] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Command/Viper/part/M2X_ViperCockpit [LOG 17:48:45.381] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/AASRB/Radial/M2X_RATO [LOG 17:48:45.381] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/AASRB/RadialL/M2X_RadialAASRB [LOG 17:48:45.382] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/Aerospike/part/M2X_LinearAerospike [LOG 17:48:45.382] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/AugmentedRocket/part/M2X_AugmentedRocket [LOG 17:48:45.383] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/ESTOC/part/M2X_ESTOC [LOG 17:48:45.383] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/IonEngine/part/M2X_IonEngine [LOG 17:48:45.383] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/JumpJet/part/M2X_Jumpjet [LOG 17:48:45.384] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/LanderEngine/part/M2X_FuselageRVTOLE [LOG 17:48:45.384] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/LiftFan/fuselage/M2X_FuselageLiftFan [LOG 17:48:45.384] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/LiftFan/stack/M2X_LiftFan [LOG 17:48:45.384] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/MATTOCK/part/M2X_MATTOCK [LOG 17:48:45.385] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/Pegasus/part/M2X_Pegasus [LOG 17:48:45.385] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/Pluto/part/M2X_Pluto [LOG 17:48:45.385] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/Ramjet/part/M2X_Ramjet [LOG 17:48:45.386] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/Rontgen/part/M2X_AtomicJet [LOG 17:48:45.386] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/SCRamjet/part/M2X_SCRamjet [LOG 17:48:45.386] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/Siddeley/part/M2X_Siddeley [LOG 17:48:45.387] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/Turbofan/part/M2X_Turbofan [LOG 17:48:45.387] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/Turbojet/part/M2X_Turbojet [LOG 17:48:45.387] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/Turboprop/part/M2X_Turboprop [LOG 17:48:45.388] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Engines/VTOL/Part/M2X_HeavyVTOL [LOG 17:48:45.388] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/FuelTank/Bicoupler/part/M2X_Shortbicoupler [LOG 17:48:45.388] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/FuelTank/HypersonicNose/part/M2X_HypersonicNose [LOG 17:48:45.388] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/FuelTank/Inverter/part/M2X_InverterFuselage [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/FuelTank/LinearTricoupler/part/M2X_linearTricoupler [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/FuelTank/Nosecap/part/M2X_SupersonicNose [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/FuelTank/ServiceTank/part/M2X_UST [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/FuelTank/SpadeTail/part/M2X_SpadeTail [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/FuelTank/Tricoupler/part/M2X_625tricoupler [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/FuelTank/size2adapter/part/M2X_Short25adapter [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Structural/Decoupler/part/M2X_Decoupler [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Structural/Endcap/part/M2X_Endcap [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Structural/Hubs/LHub/M2X_LHub [LOG 17:48:45.389] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Structural/Hubs/THub/M2X_THub [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Structural/Hubs/XHub/M2X_XHub [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Structural/RadialMount/RadialA/M2X_RadialMountA [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Structural/RadialMount/RadialB/M2X_RadialMountB [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/AlignedDockingPort/part/M2X_AligningDockingPort [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/DockingPort/part/M2X_ShieldedDockingPort [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/Lab/part/M2X_SmallLab [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/LandingLeg/part/M2X_RadialLeg [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/OMS/omsEngine/M2X_OMSpod [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/RCS/CBlock/M2X_RCRCS [LOG 17:48:45.390] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/RCS/EBlock/M2X_PGRCS [LOG 17:48:45.391] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/RCS/FF5Way/M2X_FF5WayRCS [LOG 17:48:45.391] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/RCS/OMSBlister/M2X_OMSBlister [LOG 17:48:45.391] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/RCS/RCSBlister/M2X_RCSBlister [LOG 17:48:45.391] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/RCS/StabilityControl/M2X_SCRCS [LOG 17:48:45.391] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/Reactor/part/M2X_Reactor [LOG 17:48:45.391] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/ServiceBay/part/M2X_Servicebay [LOG 17:48:45.391] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Mk2Expansion/Parts/Utility/SolarPanel/part/M2X_SolarpanelPod [LOG 17:48:45.391] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1 [LOG 17:48:45.392] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2 [LOG 17:48:45.392] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3 [LOG 17:48:45.392] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield [LOG 17:48:45.392] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone [LOG 17:48:45.392] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop [LOG 17:48:45.392] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/airbrake/Airbrake/airbrake1 [LOG 17:48:45.392] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/airplaneFins/standardCanard/CanardController [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/airplaneFins/tailfin/tailfin [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/basicFin/basicFin/basicFin [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake [LOG 17:48:45.393] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/cones/ConeA/pointyNoseConeA [LOG 17:48:45.394] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/cones/ConeB/pointyNoseConeB [LOG 17:48:45.394] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone [LOG 17:48:45.394] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter [LOG 17:48:45.394] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone [LOG 17:48:45.394] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/cones/tailConnectorA/airplaneTail [LOG 17:48:45.394] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB [LOG 17:48:45.394] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/fairings/fairingSize1/fairingSize1 [LOG 17:48:45.394] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/fairings/fairingSize2/fairingSize2 [LOG 17:48:45.394] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/fairings/fairingSize3/fairingSize3 [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1 [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2 [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet [LOG 17:48:45.395] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3 [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/connector1/wingConnector [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/connector2/wingConnector2 [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/connector3/wingConnector3 [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/connector4/wingConnector4 [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/connector5/wingConnector5 [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/delta/deltaWing [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/delta_small/delta_small [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/elevon2/elevon2 [LOG 17:48:45.396] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/elevon3/elevon3 [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/elevon4/smallCtrlSrf [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/elevon5/elevon5 [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/strake/wingStrake [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/structural1/structuralWing [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/structural2/structuralWing2 [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/structural3/structuralWing3 [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/structural4/structuralWing4 [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/swept1/sweptWing1 [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Aero/wings/swept2/sweptWing2 [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod [LOG 17:48:45.397] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2 [LOG 17:48:45.398] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/cupola/cupola/cupola [LOG 17:48:45.398] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd [LOG 17:48:45.398] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin [LOG 17:48:45.398] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule [LOG 17:48:45.398] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule [LOG 17:48:45.398] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit [LOG 17:48:45.398] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin [LOG 17:48:45.398] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit [LOG 17:48:45.398] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall [LOG 17:48:45.399] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk1pod/mk1Pod/mk1pod [LOG 17:48:45.399] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline [LOG 17:48:45.399] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard [LOG 17:48:45.399] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore [LOG 17:48:45.399] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin [LOG 17:48:45.399] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle [LOG 17:48:45.399] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube [LOG 17:48:45.399] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex [LOG 17:48:45.399] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2 [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2 [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4 [LOG 17:48:45.400] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1 [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3 [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/RTG/RTG/rtg [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5 [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/MassiveSRB/part/MassiveBooster [LOG 17:48:45.401] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine [LOG 17:48:45.402] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/Size2LFB/part/Size2LFB [LOG 17:48:45.402] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine [LOG 17:48:45.402] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster [LOG 17:48:45.402] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/ionEngine/ionEngine/ionEngine [LOG 17:48:45.403] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet [LOG 17:48:45.403] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine [LOG 17:48:45.403] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2 [LOG 17:48:45.404] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine [LOG 17:48:45.404] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine [LOG 17:48:45.404] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini [LOG 17:48:45.404] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike [LOG 17:48:45.405] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine [LOG 17:48:45.405] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini [LOG 17:48:45.405] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3 [LOG 17:48:45.405] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine [LOG 17:48:45.405] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine [LOG 17:48:45.406] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2 [LOG 17:48:45.406] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2 [LOG 17:48:45.406] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2 [LOG 17:48:45.406] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2 [LOG 17:48:45.407] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineSSME/SSME/SSME [LOG 17:48:45.407] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper [LOG 17:48:45.407] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine [LOG 17:48:45.407] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER [LOG 17:48:45.408] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1 [LOG 17:48:45.408] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster [LOG 17:48:45.408] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm [LOG 17:48:45.408] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1 [LOG 17:48:45.408] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2 [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2 [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines [LOG 17:48:45.409] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2 [LOG 17:48:45.410] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant [LOG 17:48:45.410] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2 [LOG 17:48:45.410] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1 [LOG 17:48:45.410] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant [LOG 17:48:45.410] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3 [LOG 17:48:45.410] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2 [LOG 17:48:45.410] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank [LOG 17:48:45.410] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat [LOG 17:48:45.410] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2 [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2 [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2 [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong [LOG 17:48:45.411] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100 [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25 [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50 [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100 [LOG 17:48:45.412] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25 [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50 [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Misc/PotatoRoid/part/PotatoRoid [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/FuelCell/FuelCell/FuelCell [LOG 17:48:45.413] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray [LOG 17:48:45.414] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/ISRU/ISRU/ISRU [LOG 17:48:45.414] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/LargeTank/LargeTank/LargeTank [LOG 17:48:45.414] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill [LOG 17:48:45.414] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU [LOG 17:48:45.414] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner [LOG 17:48:45.414] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill [LOG 17:48:45.414] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/SmallTank/SmallTank/SmallTank [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Science/MaterialBay/materialBay/science_module [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter [LOG 17:48:45.415] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage [LOG 17:48:45.416] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/stationHub/stationHub/stationHub [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2 [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3 [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1 [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1 [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2 [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint [LOG 17:48:45.417] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/strutOcto/strutOcto/strutOcto [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg [LOG 17:48:45.418] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm [LOG 17:48:45.419] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice [LOG 17:48:45.419] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125 [LOG 17:48:45.419] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250 [LOG 17:48:45.419] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/commDish88-88/commDish88-88/commDish [LOG 17:48:45.419] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna [LOG 17:48:45.419] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna [LOG 17:48:45.419] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2 [LOG 17:48:45.419] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler [LOG 17:48:45.419] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2 [LOG 17:48:45.420] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator [LOG 17:48:45.420] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini [LOG 17:48:45.420] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig [LOG 17:48:45.420] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2 [LOG 17:48:45.420] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler [LOG 17:48:45.420] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini [LOG 17:48:45.420] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2 [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3 [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1 [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1 [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1 [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2 [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter [LOG 17:48:45.421] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2 [LOG 17:48:45.422] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1 [LOG 17:48:45.422] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem [LOG 17:48:45.422] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/linearRCS/linearRCS/linearRcs [LOG 17:48:45.422] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL [LOG 17:48:45.422] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS [LOG 17:48:45.422] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin [LOG 17:48:45.422] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort [LOG 17:48:45.422] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL [LOG 17:48:45.422] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM [LOG 17:48:45.423] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp [LOG 17:48:45.423] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS [LOG 17:48:45.423] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle [LOG 17:48:45.423] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue [LOG 17:48:45.423] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge [LOG 17:48:45.423] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial [LOG 17:48:45.423] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1 [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1 [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2 [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed [LOG 17:48:45.424] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/LandingGear/GearFree/GearFree [LOG 17:48:45.425] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium [LOG 17:48:45.425] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall [LOG 17:48:45.425] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay [LOG 17:48:45.425] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1 [LOG 17:48:45.425] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2 [LOG 17:48:45.425] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed [LOG 17:48:45.425] [ModuleManager] Applying node InterstellarFuelSwitch/Patches/IntegrateInterstellarFuelSwitch/@PART[*]:FINAL to Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3 [LOG 17:48:45.441] [ModuleManager] Saving cache [LOG 17:48:45.555] [ModuleManager] ModuleManager: 746 patches applied [LOG 17:48:45.555] [ModuleManager] Reloading ressources definitions [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.556] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.557] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.558] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.559] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.560] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.561] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.562] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.562] Resource RESOURCE_DEFINITION added to database [LOG 17:48:45.651] [ModuleManager] Ran in 8.836s [LOG 17:48:45.654] PartLoader: Creating part database [LOG 17:48:45.655] PartLoader: Compiling Part 'InterstellarFuelSwitch/Parts/InterstellarGasTank/InterstellarGasTank-PB-Stack/InterstellarGasTank_PB-Stack' [LOG 17:48:45.681] EffectList: Created 11 effect types [LOG 17:48:45.758] PartLoader: Part 'InterstellarFuelSwitch/Parts/InterstellarGasTank/InterstellarGasTank-PB-Stack/InterstellarGasTank_PB-Stack' has no database record. Creating. [LOG 17:48:45.778] DragCubeSystem: Creating drag cubes for part 'InterstellarGasTank.PB-Stack' [LOG 17:48:45.832] PartLoader: Compiling Part 'InterstellarFuelSwitch/Parts/InterstellarGasTank/InterstellarGasTank-PB-X50R/InterstellarGasTank-PB-X50R' [ERR 17:48:45.851] Cannot find fx group of that name for decoupler [ERR 17:48:45.869] Cannot find fx group of that name for decoupler [LOG 17:48:45.872] PartLoader: Part 'InterstellarFuelSwitch/Parts/InterstellarGasTank/InterstellarGasTank-PB-X50R/InterstellarGasTank-PB-X50R' has no database record. Creating. [ERR 17:48:45.883] Cannot find fx group of that name for decoupler [LOG 17:48:45.886] DragCubeSystem: Creating drag cubes for part 'InterstellarGasTank-PB-X50R' [LOG 17:48:45.934] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/AdapterIntake/part/M2X_InlineIntake' [LOG 17:48:45.965] PartLoader: Part 'Mk2Expansion/Parts/Aero/AdapterIntake/part/M2X_InlineIntake' has no database record. Creating. [LOG 17:48:45.976] DragCubeSystem: Creating drag cubes for part 'M2X.InlineIntake' [LOG 17:48:46.025] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/AeroIntake/part/M2X_AeroIntake' [LOG 17:48:46.057] PartLoader: Part 'Mk2Expansion/Parts/Aero/AeroIntake/part/M2X_AeroIntake' has no database record. Creating. [LOG 17:48:46.071] DragCubeSystem: Creating drag cubes for part 'M2X.AeroIntake' [LOG 17:48:46.154] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/Chines/End/M2X_ChineCap' [LOG 17:48:46.174] PartLoader: Part 'Mk2Expansion/Parts/Aero/Chines/End/M2X_ChineCap' has no database record. Creating. [LOG 17:48:46.183] DragCubeSystem: Creating drag cubes for part 'M2X.ChineCap' [LOG 17:48:46.219] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/Chines/Long/M2X_ChineLong' [LOG 17:48:46.239] PartLoader: Part 'Mk2Expansion/Parts/Aero/Chines/Long/M2X_ChineLong' has no database record. Creating. [LOG 17:48:46.246] DragCubeSystem: Creating drag cubes for part 'M2X.ChineLong' [LOG 17:48:46.273] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/Chines/RLong/M2X_RootChineLong' [LOG 17:48:46.289] PartLoader: Part 'Mk2Expansion/Parts/Aero/Chines/RLong/M2X_RootChineLong' has no database record. Creating. [LOG 17:48:46.295] DragCubeSystem: Creating drag cubes for part 'M2X.RootChineLong' [LOG 17:48:46.325] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/Chines/RShort/M2X_RootChineShort' [LOG 17:48:46.364] PartLoader: Part 'Mk2Expansion/Parts/Aero/Chines/RShort/M2X_RootChineShort' has no database record. Creating. [LOG 17:48:46.369] DragCubeSystem: Creating drag cubes for part 'M2X.RootChineShort' [LOG 17:48:46.401] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/Chines/Radapter/M2X_RootChineAdapter' [LOG 17:48:46.417] PartLoader: Part 'Mk2Expansion/Parts/Aero/Chines/Radapter/M2X_RootChineAdapter' has no database record. Creating. [LOG 17:48:46.423] DragCubeSystem: Creating drag cubes for part 'M2X.RootChineAdapter' [LOG 17:48:46.463] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/Chines/Short/M2X_ChineShort' [LOG 17:48:46.484] PartLoader: Part 'Mk2Expansion/Parts/Aero/Chines/Short/M2X_ChineShort' has no database record. Creating. [LOG 17:48:46.493] DragCubeSystem: Creating drag cubes for part 'M2X.ChineShort' [LOG 17:48:46.522] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/CircularIntake/part/M2X_circularintake' [LOG 17:48:46.546] PartLoader: Part 'Mk2Expansion/Parts/Aero/CircularIntake/part/M2X_circularintake' has no database record. Creating. [LOG 17:48:46.556] DragCubeSystem: Creating drag cubes for part 'M2X.circularintake' [LOG 17:48:46.601] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/EngineShroud/part/M2X_EngineShroud' [LOG 17:48:46.629] PartLoader: Part 'Mk2Expansion/Parts/Aero/EngineShroud/part/M2X_EngineShroud' has no database record. Creating. [LOG 17:48:46.639] DragCubeSystem: Creating drag cubes for part 'M2X.EngineShroud' [LOG 17:48:46.683] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/MantaIntake/part/M2X_MantaIntake' [LOG 17:48:46.710] PartLoader: Part 'Mk2Expansion/Parts/Aero/MantaIntake/part/M2X_MantaIntake' has no database record. Creating. [LOG 17:48:46.720] DragCubeSystem: Creating drag cubes for part 'M2X.MantaIntake' [LOG 17:48:46.771] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/Precooler/part/M2X_Precooler' [LOG 17:48:46.800] PartLoader: Part 'Mk2Expansion/Parts/Aero/Precooler/part/M2X_Precooler' has no database record. Creating. [LOG 17:48:46.812] DragCubeSystem: Creating drag cubes for part 'M2X.Precooler' [LOG 17:48:46.864] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/ShockCone/part/M2X_Shockcone' [LOG 17:48:46.892] PartLoader: Part 'Mk2Expansion/Parts/Aero/ShockCone/part/M2X_Shockcone' has no database record. Creating. [LOG 17:48:46.903] DragCubeSystem: Creating drag cubes for part 'M2X.Shockcone' [LOG 17:48:46.943] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/mk1Chines/Long/Mk1ChineLong' [LOG 17:48:46.958] PartLoader: Part 'Mk2Expansion/Parts/Aero/mk1Chines/Long/Mk1ChineLong' has no database record. Creating. [LOG 17:48:46.964] DragCubeSystem: Creating drag cubes for part 'Mk1ChineLong' [LOG 17:48:46.995] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/mk1Chines/Short/Mk1ChineShort' [LOG 17:48:47.011] PartLoader: Part 'Mk2Expansion/Parts/Aero/mk1Chines/Short/Mk1ChineShort' has no database record. Creating. [LOG 17:48:47.018] DragCubeSystem: Creating drag cubes for part 'Mk1ChineShort' [LOG 17:48:47.056] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/mk1Chines/cap/Mk1Chinecap' [LOG 17:48:47.072] PartLoader: Part 'Mk2Expansion/Parts/Aero/mk1Chines/cap/Mk1Chinecap' has no database record. Creating. [LOG 17:48:47.077] DragCubeSystem: Creating drag cubes for part 'Mk1Chinecap' [LOG 17:48:47.111] PartLoader: Compiling Part 'Mk2Expansion/Parts/Aero/tailboom/part/M2X_Tailboom' [LOG 17:48:47.145] PartLoader: Part 'Mk2Expansion/Parts/Aero/tailboom/part/M2X_Tailboom' has no database record. Creating. [LOG 17:48:47.161] DragCubeSystem: Creating drag cubes for part 'M2X.Tailboom' [LOG 17:48:47.195] PartLoader: Compiling Part 'Mk2Expansion/Parts/Command/Angler/part/M2X_DropshipCockpit' [LOG 17:48:47.246] PartLoader: Part 'Mk2Expansion/Parts/Command/Angler/part/M2X_DropshipCockpit' has no database record. Creating. [LOG 17:48:47.264] DragCubeSystem: Creating drag cubes for part 'M2X.DropshipCockpit' [LOG 17:48:47.350] PartLoader: Compiling Part 'Mk2Expansion/Parts/Command/Blade/part/M2X_BladeCockpit' [LOG 17:48:47.390] PartLoader: Part 'Mk2Expansion/Parts/Command/Blade/part/M2X_BladeCockpit' has no database record. Creating. [LOG 17:48:47.431] DragCubeSystem: Creating drag cubes for part 'M2X.BladeCockpit' [LOG 17:48:47.503] PartLoader: Compiling Part 'Mk2Expansion/Parts/Command/Fishhead/part/M2X_TunaCockpit' [LOG 17:48:47.540] PartLoader: Part 'Mk2Expansion/Parts/Command/Fishhead/part/M2X_TunaCockpit' has no database record. Creating. [LOG 17:48:47.557] DragCubeSystem: Creating drag cubes for part 'M2X.TunaCockpit' [LOG 17:48:47.636] PartLoader: Compiling Part 'Mk2Expansion/Parts/Command/Raven/part/M2X_RavenCockpit' [LOG 17:48:47.679] PartLoader: Part 'Mk2Expansion/Parts/Command/Raven/part/M2X_RavenCockpit' has no database record. Creating. [LOG 17:48:47.696] DragCubeSystem: Creating drag cubes for part 'M2X.RavenCockpit' [LOG 17:48:47.776] PartLoader: Compiling Part 'Mk2Expansion/Parts/Command/Viper/part/M2X_ViperCockpit' [LOG 17:48:47.835] PartLoader: Part 'Mk2Expansion/Parts/Command/Viper/part/M2X_ViperCockpit' has no database record. Creating. [LOG 17:48:47.861] DragCubeSystem: Creating drag cubes for part 'M2X.ViperCockpit' [LOG 17:48:47.934] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/AASRB/Radial/M2X_RATO' [ERR 17:48:47.983] Cannot find fx group of that name for decoupler [ERR 17:48:48.015] Cannot find fx group of that name for decoupler [LOG 17:48:48.024] PartLoader: Part 'Mk2Expansion/Parts/Engines/AASRB/Radial/M2X_RATO' has no database record. Creating. [ERR 17:48:48.049] Cannot find fx group of that name for decoupler [LOG 17:48:48.055] DragCubeSystem: Creating drag cubes for part 'M2X.RATO' [LOG 17:48:48.090] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/AASRB/RadialL/M2X_RadialAASRB' [ERR 17:48:48.124] Cannot find fx group of that name for decoupler [ERR 17:48:48.153] Cannot find fx group of that name for decoupler [LOG 17:48:48.161] PartLoader: Part 'Mk2Expansion/Parts/Engines/AASRB/RadialL/M2X_RadialAASRB' has no database record. Creating. [ERR 17:48:48.185] Cannot find fx group of that name for decoupler [LOG 17:48:48.191] DragCubeSystem: Creating drag cubes for part 'M2X.RadialAASRB' [LOG 17:48:48.227] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/Aerospike/part/M2X_LinearAerospike' [LOG 17:48:48.285] PartLoader: Part 'Mk2Expansion/Parts/Engines/Aerospike/part/M2X_LinearAerospike' has no database record. Creating. [LOG 17:48:48.310] DragCubeSystem: Creating drag cubes for part 'M2X.LinearAerospike' [LOG 17:48:48.399] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/AugmentedRocket/part/M2X_AugmentedRocket' [LOG 17:48:48.467] PartLoader: Part 'Mk2Expansion/Parts/Engines/AugmentedRocket/part/M2X_AugmentedRocket' has no database record. Creating. [LOG 17:48:48.521] DragCubeSystem: Creating drag cubes for part 'M2X.AugmentedRocket' [LOG 17:48:48.605] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/ESTOC/part/M2X_ESTOC' [LOG 17:48:48.676] PartLoader: Part 'Mk2Expansion/Parts/Engines/ESTOC/part/M2X_ESTOC' has no database record. Creating. [LOG 17:48:48.709] DragCubeSystem: Creating drag cubes for part 'M2X.ESTOC' [LOG 17:48:48.805] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/IonEngine/part/M2X_IonEngine' [ERR 17:48:48.820] Invalid boolean value! Field exhaustDamage, value Flase on object of type ModuleEnginesFX [LOG 17:48:48.847] PartLoader: Part 'Mk2Expansion/Parts/Engines/IonEngine/part/M2X_IonEngine' has no database record. Creating. [LOG 17:48:48.866] DragCubeSystem: Creating drag cubes for part 'M2X.IonEngine' [LOG 17:48:48.942] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/JumpJet/part/M2X_Jumpjet' [LOG 17:48:49.003] PartLoader: Part 'Mk2Expansion/Parts/Engines/JumpJet/part/M2X_Jumpjet' has no database record. Creating. [LOG 17:48:49.030] DragCubeSystem: Creating drag cubes for part 'M2X.Jumpjet' [LOG 17:48:49.106] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/LanderEngine/part/M2X_FuselageRVTOLE' [LOG 17:48:49.153] PartLoader: Part 'Mk2Expansion/Parts/Engines/LanderEngine/part/M2X_FuselageRVTOLE' has no database record. Creating. [LOG 17:48:49.172] DragCubeSystem: Creating drag cubes for part 'M2X.FuselageRVTOLE' [LOG 17:48:49.214] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/LiftFan/fuselage/M2X_FuselageLiftFan' [LOG 17:48:49.274] PartLoader: Part 'Mk2Expansion/Parts/Engines/LiftFan/fuselage/M2X_FuselageLiftFan' has no database record. Creating. [LOG 17:48:49.302] DragCubeSystem: Creating drag cubes for part 'M2X.FuselageLiftFan' [LOG 17:48:49.389] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/LiftFan/stack/M2X_LiftFan' [LOG 17:48:49.443] PartLoader: Part 'Mk2Expansion/Parts/Engines/LiftFan/stack/M2X_LiftFan' has no database record. Creating. [LOG 17:48:49.466] DragCubeSystem: Creating drag cubes for part 'M2X.LiftFan' [LOG 17:48:49.507] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/MATTOCK/part/M2X_MATTOCK' [LOG 17:48:49.578] PartLoader: Part 'Mk2Expansion/Parts/Engines/MATTOCK/part/M2X_MATTOCK' has no database record. Creating. [LOG 17:48:49.635] DragCubeSystem: Creating drag cubes for part 'M2X.MATTOCK' [LOG 17:48:49.681] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/Pegasus/part/M2X_Pegasus' [ERR 17:48:49.682] PartCompiler: Cannot replace texture 'ESTOC_E' as cannot find texture 'Mk2Expansion/Parts/Engines/ESTOC/ESTOC_E' to replace with [LOG 17:48:49.725] PartLoader: Part 'Mk2Expansion/Parts/Engines/Pegasus/part/M2X_Pegasus' has no database record. Creating. [LOG 17:48:49.742] DragCubeSystem: Creating drag cubes for part 'M2X.Pegasus' [LOG 17:48:49.791] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/Pluto/part/M2X_Pluto' [LOG 17:48:49.856] PartLoader: Part 'Mk2Expansion/Parts/Engines/Pluto/part/M2X_Pluto' has no database record. Creating. [LOG 17:48:49.883] DragCubeSystem: Part 'M2X.Pluto' has defined a procedural drag cube setup [LOG 17:48:49.886] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/Ramjet/part/M2X_Ramjet' [LOG 17:48:49.941] PartLoader: Part 'Mk2Expansion/Parts/Engines/Ramjet/part/M2X_Ramjet' has no database record. Creating. [LOG 17:48:49.963] DragCubeSystem: Creating drag cubes for part 'M2X.Ramjet' [LOG 17:48:50.008] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/Rontgen/part/M2X_AtomicJet' [LOG 17:48:50.078] PartLoader: Part 'Mk2Expansion/Parts/Engines/Rontgen/part/M2X_AtomicJet' has no database record. Creating. [LOG 17:48:50.108] DragCubeSystem: Creating drag cubes for part 'M2X.AtomicJet' [LOG 17:48:50.148] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/SCRamjet/part/M2X_SCRamjet' [LOG 17:48:50.194] PartLoader: Part 'Mk2Expansion/Parts/Engines/SCRamjet/part/M2X_SCRamjet' has no database record. Creating. [LOG 17:48:50.211] DragCubeSystem: Creating drag cubes for part 'M2X.SCRamjet' [LOG 17:48:50.255] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/Siddeley/part/M2X_Siddeley' [ERR 17:48:50.256] PartCompiler: Cannot replace texture 'ESTOC_E' as cannot find texture 'Mk2Expansion/Parts/Engines/ESTOC/ESTOC_E' to replace with [LOG 17:48:50.307] PartLoader: Part 'Mk2Expansion/Parts/Engines/Siddeley/part/M2X_Siddeley' has no database record. Creating. [LOG 17:48:50.329] DragCubeSystem: Creating drag cubes for part 'M2X.Siddeley' [LOG 17:48:50.418] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/Turbofan/part/M2X_Turbofan' [LOG 17:48:50.473] PartLoader: Part 'Mk2Expansion/Parts/Engines/Turbofan/part/M2X_Turbofan' has no database record. Creating. [LOG 17:48:50.495] DragCubeSystem: Creating drag cubes for part 'M2X.Turbofan' [LOG 17:48:50.593] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/Turbojet/part/M2X_Turbojet' [LOG 17:48:50.670] PartLoader: Part 'Mk2Expansion/Parts/Engines/Turbojet/part/M2X_Turbojet' has no database record. Creating. [LOG 17:48:50.702] DragCubeSystem: Creating drag cubes for part 'M2X.Turbojet' [LOG 17:48:50.774] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/Turboprop/part/M2X_Turboprop' [LOG 17:48:50.833] PartLoader: Part 'Mk2Expansion/Parts/Engines/Turboprop/part/M2X_Turboprop' has no database record. Creating. [LOG 17:48:50.861] DragCubeSystem: Creating drag cubes for part 'M2X.Turboprop' [LOG 17:48:50.915] PartLoader: Compiling Part 'Mk2Expansion/Parts/Engines/VTOL/Part/M2X_HeavyVTOL' [LOG 17:48:50.980] PartLoader: Part 'Mk2Expansion/Parts/Engines/VTOL/Part/M2X_HeavyVTOL' has no database record. Creating. [LOG 17:48:51.004] DragCubeSystem: Part 'M2X.HeavyVTOL' has defined a procedural drag cube setup [LOG 17:48:51.006] PartLoader: Compiling Part 'Mk2Expansion/Parts/FuelTank/Bicoupler/part/M2X_Shortbicoupler' [LOG 17:48:51.028] PartLoader: Part 'Mk2Expansion/Parts/FuelTank/Bicoupler/part/M2X_Shortbicoupler' has no database record. Creating. [LOG 17:48:51.037] DragCubeSystem: Creating drag cubes for part 'M2X.Shortbicoupler' [LOG 17:48:51.073] PartLoader: Compiling Part 'Mk2Expansion/Parts/FuelTank/HypersonicNose/part/M2X_HypersonicNose' [WRN 17:48:51.082] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:48:51.082] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:48:51.082] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:48:51.082] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:48:51.082] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:48:51.119] PartLoader: Part 'Mk2Expansion/Parts/FuelTank/HypersonicNose/part/M2X_HypersonicNose' has no database record. Creating. [LOG 17:48:51.138] DragCubeSystem: Creating drag cubes for part 'M2X.HypersonicNose' [LOG 17:48:51.175] PartLoader: Compiling Part 'Mk2Expansion/Parts/FuelTank/Inverter/part/M2X_InverterFuselage' [WRN 17:48:51.184] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:48:51.184] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:48:51.184] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:48:51.184] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:48:51.184] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:48:51.205] PartLoader: Part 'Mk2Expansion/Parts/FuelTank/Inverter/part/M2X_InverterFuselage' has no database record. Creating. [LOG 17:48:51.218] DragCubeSystem: Creating drag cubes for part 'M2X.InverterFuselage' [LOG 17:48:51.261] PartLoader: Compiling Part 'Mk2Expansion/Parts/FuelTank/LinearTricoupler/part/M2X_linearTricoupler' [WRN 17:48:51.270] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:48:51.270] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:48:51.270] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:48:51.270] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:48:51.270] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:48:51.291] PartLoader: Part 'Mk2Expansion/Parts/FuelTank/LinearTricoupler/part/M2X_linearTricoupler' has no database record. Creating. [LOG 17:48:51.304] DragCubeSystem: Creating drag cubes for part 'M2X.linearTricoupler' [LOG 17:48:51.348] PartLoader: Compiling Part 'Mk2Expansion/Parts/FuelTank/Nosecap/part/M2X_SupersonicNose' [WRN 17:48:51.357] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:48:51.357] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:48:51.357] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:48:51.357] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:48:51.357] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:48:51.386] PartLoader: Part 'Mk2Expansion/Parts/FuelTank/Nosecap/part/M2X_SupersonicNose' has no database record. Creating. [LOG 17:48:51.403] DragCubeSystem: Creating drag cubes for part 'M2X.SupersonicNose' [LOG 17:48:51.445] PartLoader: Compiling Part 'Mk2Expansion/Parts/FuelTank/ServiceTank/part/M2X_UST' [LOG 17:48:51.478] PartLoader: Part 'Mk2Expansion/Parts/FuelTank/ServiceTank/part/M2X_UST' has no database record. Creating. [LOG 17:48:51.491] DragCubeSystem: Creating drag cubes for part 'M2X.UST' [LOG 17:48:51.531] PartLoader: Compiling Part 'Mk2Expansion/Parts/FuelTank/SpadeTail/part/M2X_SpadeTail' [WRN 17:48:51.540] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:48:51.540] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:48:51.540] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:48:51.540] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:48:51.540] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:48:51.565] PartLoader: Part 'Mk2Expansion/Parts/FuelTank/SpadeTail/part/M2X_SpadeTail' has no database record. Creating. [LOG 17:48:51.580] DragCubeSystem: Creating drag cubes for part 'M2X.SpadeTail' [LOG 17:48:51.615] PartLoader: Compiling Part 'Mk2Expansion/Parts/FuelTank/Tricoupler/part/M2X_625tricoupler' [WRN 17:48:51.648] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:48:51.648] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:48:51.648] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:48:51.648] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:48:51.648] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:48:51.682] PartLoader: Part 'Mk2Expansion/Parts/FuelTank/Tricoupler/part/M2X_625tricoupler' has no database record. Creating. [LOG 17:48:51.707] DragCubeSystem: Creating drag cubes for part 'M2X.625tricoupler' [LOG 17:48:51.750] PartLoader: Compiling Part 'Mk2Expansion/Parts/FuelTank/size2adapter/part/M2X_Short25adapter' [WRN 17:48:51.759] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:48:51.759] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:48:51.759] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:48:51.759] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:48:51.759] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:48:51.776] PartLoader: Part 'Mk2Expansion/Parts/FuelTank/size2adapter/part/M2X_Short25adapter' has no database record. Creating. [LOG 17:48:51.788] DragCubeSystem: Creating drag cubes for part 'M2X.Short25adapter' [LOG 17:48:51.870] PartLoader: Compiling Part 'Mk2Expansion/Parts/Structural/Decoupler/part/M2X_Decoupler' [LOG 17:48:51.894] PartLoader: Part 'Mk2Expansion/Parts/Structural/Decoupler/part/M2X_Decoupler' has no database record. Creating. [LOG 17:48:51.894] PartLoader: Compiling Part 'Mk2Expansion/Parts/Structural/Endcap/part/M2X_Endcap' [LOG 17:48:51.910] PartLoader: Part 'Mk2Expansion/Parts/Structural/Endcap/part/M2X_Endcap' has no database record. Creating. [LOG 17:48:51.916] DragCubeSystem: Creating drag cubes for part 'M2X.Endcap' [LOG 17:48:51.946] PartLoader: Compiling Part 'Mk2Expansion/Parts/Structural/Hubs/LHub/M2X_LHub' [LOG 17:48:51.971] PartLoader: Part 'Mk2Expansion/Parts/Structural/Hubs/LHub/M2X_LHub' has no database record. Creating. [LOG 17:48:51.984] DragCubeSystem: Creating drag cubes for part 'M2X.LHub' [LOG 17:48:52.021] PartLoader: Compiling Part 'Mk2Expansion/Parts/Structural/Hubs/THub/M2X_THub' [LOG 17:48:52.047] PartLoader: Part 'Mk2Expansion/Parts/Structural/Hubs/THub/M2X_THub' has no database record. Creating. [LOG 17:48:52.058] DragCubeSystem: Creating drag cubes for part 'M2X.THub' [LOG 17:48:52.108] PartLoader: Compiling Part 'Mk2Expansion/Parts/Structural/Hubs/XHub/M2X_XHub' [LOG 17:48:52.133] PartLoader: Part 'Mk2Expansion/Parts/Structural/Hubs/XHub/M2X_XHub' has no database record. Creating. [LOG 17:48:52.146] DragCubeSystem: Creating drag cubes for part 'M2X.XHub' [LOG 17:48:52.198] PartLoader: Compiling Part 'Mk2Expansion/Parts/Structural/RadialMount/RadialA/M2X_RadialMountA' [LOG 17:48:52.214] PartLoader: Part 'Mk2Expansion/Parts/Structural/RadialMount/RadialA/M2X_RadialMountA' has no database record. Creating. [LOG 17:48:52.222] DragCubeSystem: Creating drag cubes for part 'M2X.RadialMountA' [LOG 17:48:52.248] PartLoader: Compiling Part 'Mk2Expansion/Parts/Structural/RadialMount/RadialB/M2X_RadialMountB' [LOG 17:48:52.265] PartLoader: Part 'Mk2Expansion/Parts/Structural/RadialMount/RadialB/M2X_RadialMountB' has no database record. Creating. [LOG 17:48:52.273] DragCubeSystem: Creating drag cubes for part 'M2X.RadialMountB' [LOG 17:48:52.298] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/AlignedDockingPort/part/M2X_AligningDockingPort' [LOG 17:48:52.323] PartLoader: Part 'Mk2Expansion/Parts/Utility/AlignedDockingPort/part/M2X_AligningDockingPort' has no database record. Creating. [LOG 17:48:52.331] DragCubeSystem: Creating drag cubes for part 'M2X.AligningDockingPort' [LOG 17:48:52.360] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/DockingPort/part/M2X_ShieldedDockingPort' [LOG 17:48:52.394] PartLoader: Part 'Mk2Expansion/Parts/Utility/DockingPort/part/M2X_ShieldedDockingPort' has no database record. Creating. [LOG 17:48:52.406] DragCubeSystem: Creating drag cubes for part 'M2X.ShieldedDockingPort' [LOG 17:48:52.477] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/Lab/part/M2X_SmallLab' [LOG 17:48:52.528] PartLoader: Part 'Mk2Expansion/Parts/Utility/Lab/part/M2X_SmallLab' has no database record. Creating. [LOG 17:48:52.545] DragCubeSystem: Creating drag cubes for part 'M2X.SmallLab' [LOG 17:48:52.624] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/LandingLeg/part/M2X_RadialLeg' [ERR 17:48:52.647] Invalid value length for Vector3! Field bogeyUpAxis, value 0, , -1 on object of type ModuleWheels.ModuleWheelBogey [LOG 17:48:52.669] PartLoader: Part 'Mk2Expansion/Parts/Utility/LandingLeg/part/M2X_RadialLeg' has no database record. Creating. [LOG 17:48:52.689] DragCubeSystem: Creating drag cubes for part 'M2X.RadialLeg' [LOG 17:48:52.766] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/OMS/omsEngine/M2X_OMSpod' [LOG 17:48:52.805] PartLoader: Part 'Mk2Expansion/Parts/Utility/OMS/omsEngine/M2X_OMSpod' has no database record. Creating. [LOG 17:48:52.820] DragCubeSystem: Creating drag cubes for part 'M2X.OMSpod' [LOG 17:48:52.857] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/RCS/CBlock/M2X_RCRCS' [LOG 17:48:52.876] PartLoader: Part 'Mk2Expansion/Parts/Utility/RCS/CBlock/M2X_RCRCS' has no database record. Creating. [LOG 17:48:52.884] DragCubeSystem: Creating drag cubes for part 'M2X.RCRCS' [LOG 17:48:52.931] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/RCS/EBlock/M2X_PGRCS' [LOG 17:48:52.951] PartLoader: Part 'Mk2Expansion/Parts/Utility/RCS/EBlock/M2X_PGRCS' has no database record. Creating. [LOG 17:48:52.987] DragCubeSystem: Creating drag cubes for part 'M2X.PGRCS' [LOG 17:48:53.028] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/RCS/FF5Way/M2X_FF5WayRCS' [LOG 17:48:53.047] PartLoader: Part 'Mk2Expansion/Parts/Utility/RCS/FF5Way/M2X_FF5WayRCS' has no database record. Creating. [LOG 17:48:53.054] DragCubeSystem: Creating drag cubes for part 'M2X.FF5WayRCS' [LOG 17:48:53.095] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/RCS/OMSBlister/M2X_OMSBlister' [LOG 17:48:53.119] PartLoader: Part 'Mk2Expansion/Parts/Utility/RCS/OMSBlister/M2X_OMSBlister' has no database record. Creating. [LOG 17:48:53.129] DragCubeSystem: Creating drag cubes for part 'M2X.OMSBlister' [LOG 17:48:53.167] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/RCS/RCSBlister/M2X_RCSBlister' [LOG 17:48:53.191] PartLoader: Part 'Mk2Expansion/Parts/Utility/RCS/RCSBlister/M2X_RCSBlister' has no database record. Creating. [LOG 17:48:53.200] DragCubeSystem: Creating drag cubes for part 'M2X.RCSBlister' [LOG 17:48:53.237] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/RCS/StabilityControl/M2X_SCRCS' [LOG 17:48:53.260] PartLoader: Part 'Mk2Expansion/Parts/Utility/RCS/StabilityControl/M2X_SCRCS' has no database record. Creating. [LOG 17:48:53.271] DragCubeSystem: Creating drag cubes for part 'M2X.SCRCS' [LOG 17:48:53.348] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/Reactor/part/M2X_Reactor' [LOG 17:48:53.405] PartLoader: Part 'Mk2Expansion/Parts/Utility/Reactor/part/M2X_Reactor' has no database record. Creating. [LOG 17:48:53.427] DragCubeSystem: Creating drag cubes for part 'M2X.Reactor' [LOG 17:48:53.492] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/ServiceBay/part/M2X_Servicebay' [LOG 17:48:53.546] PartLoader: Part 'Mk2Expansion/Parts/Utility/ServiceBay/part/M2X_Servicebay' has no database record. Creating. [LOG 17:48:53.570] DragCubeSystem: Creating drag cubes for part 'M2X.Servicebay' [LOG 17:48:53.650] PartLoader: Compiling Part 'Mk2Expansion/Parts/Utility/SolarPanel/part/M2X_SolarpanelPod' [LOG 17:48:53.684] PartLoader: Part 'Mk2Expansion/Parts/Utility/SolarPanel/part/M2X_SolarpanelPod' has no database record. Creating. [LOG 17:48:53.696] DragCubeSystem: Creating drag cubes for part 'M2X.SolarpanelPod' [LOG 17:48:53.791] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1' [LOG 17:48:53.825] PartLoader: Part 'Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1' has no database record. Creating. [LOG 17:48:53.838] DragCubeSystem: Creating drag cubes for part 'HeatShield1' [LOG 17:48:53.908] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2' [LOG 17:48:53.942] PartLoader: Part 'Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2' has no database record. Creating. [LOG 17:48:53.955] DragCubeSystem: Creating drag cubes for part 'HeatShield2' [LOG 17:48:54.026] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3' [LOG 17:48:54.058] PartLoader: Part 'Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3' has no database record. Creating. [LOG 17:48:54.070] DragCubeSystem: Creating drag cubes for part 'HeatShield3' [LOG 17:48:54.142] PartLoader: Compiling Part 'Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield' [LOG 17:48:54.211] PartLoader: Part 'Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield' has no database record. Creating. [LOG 17:48:54.225] DragCubeSystem: Part 'InflatableHeatShield' has defined a procedural drag cube setup [LOG 17:48:54.229] PartLoader: Compiling Part 'Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone' [LOG 17:48:54.247] PartLoader: Part 'Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone' has no database record. Creating. [LOG 17:48:54.254] DragCubeSystem: Creating drag cubes for part 'noseCone' [LOG 17:48:54.296] PartLoader: Compiling Part 'Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop' [LOG 17:48:54.320] PartLoader: Part 'Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop' has no database record. Creating. [LOG 17:48:54.332] DragCubeSystem: Creating drag cubes for part 'airScoop' [LOG 17:48:54.370] PartLoader: Compiling Part 'Squad/Parts/Aero/airbrake/Airbrake/airbrake1' [LOG 17:48:54.399] PartLoader: Part 'Squad/Parts/Aero/airbrake/Airbrake/airbrake1' has no database record. Creating. [LOG 17:48:54.409] DragCubeSystem: Creating drag cubes for part 'airbrake1' [LOG 17:48:54.494] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf' [LOG 17:48:54.518] PartLoader: Part 'Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf' has no database record. Creating. [LOG 17:48:54.527] DragCubeSystem: Creating drag cubes for part 'airlinerCtrlSrf' [LOG 17:48:54.604] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing' [LOG 17:48:54.624] PartLoader: Part 'Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing' has no database record. Creating. [LOG 17:48:54.631] DragCubeSystem: Creating drag cubes for part 'airlinerMainWing' [LOG 17:48:54.656] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin' [LOG 17:48:54.685] PartLoader: Part 'Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin' has no database record. Creating. [LOG 17:48:54.695] DragCubeSystem: Creating drag cubes for part 'airlinerTailFin' [LOG 17:48:54.772] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard' [LOG 17:48:54.797] PartLoader: Part 'Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard' has no database record. Creating. [LOG 17:48:54.805] DragCubeSystem: Creating drag cubes for part 'AdvancedCanard' [LOG 17:48:54.872] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/standardCanard/CanardController' [LOG 17:48:54.894] PartLoader: Part 'Squad/Parts/Aero/airplaneFins/standardCanard/CanardController' has no database record. Creating. [LOG 17:48:54.902] DragCubeSystem: Creating drag cubes for part 'CanardController' [LOG 17:48:54.985] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing' [LOG 17:48:55.005] PartLoader: Part 'Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing' has no database record. Creating. [LOG 17:48:55.012] DragCubeSystem: Creating drag cubes for part 'sweptWing' [LOG 17:48:55.040] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/tailfin/tailfin' [LOG 17:48:55.064] PartLoader: Part 'Squad/Parts/Aero/airplaneFins/tailfin/tailfin' has no database record. Creating. [LOG 17:48:55.073] DragCubeSystem: Creating drag cubes for part 'tailfin' [LOG 17:48:55.163] PartLoader: Compiling Part 'Squad/Parts/Aero/basicFin/basicFin/basicFin' [LOG 17:48:55.182] PartLoader: Part 'Squad/Parts/Aero/basicFin/basicFin/basicFin' has no database record. Creating. [LOG 17:48:55.190] DragCubeSystem: Creating drag cubes for part 'basicFin' [LOG 17:48:55.218] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake' [LOG 17:48:55.277] PartLoader: Part 'Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake' has no database record. Creating. [LOG 17:48:55.280] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake' [LOG 17:48:55.308] PartLoader: Part 'Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake' has no database record. Creating. [LOG 17:48:55.308] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeA/pointyNoseConeA' [LOG 17:48:55.329] PartLoader: Part 'Squad/Parts/Aero/cones/ConeA/pointyNoseConeA' has no database record. Creating. [LOG 17:48:55.336] DragCubeSystem: Creating drag cubes for part 'pointyNoseConeA' [LOG 17:48:55.381] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeB/pointyNoseConeB' [LOG 17:48:55.401] PartLoader: Part 'Squad/Parts/Aero/cones/ConeB/pointyNoseConeB' has no database record. Creating. [LOG 17:48:55.408] DragCubeSystem: Creating drag cubes for part 'pointyNoseConeB' [LOG 17:48:55.454] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone' [LOG 17:48:55.477] PartLoader: Part 'Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone' has no database record. Creating. [LOG 17:48:55.486] DragCubeSystem: Creating drag cubes for part 'avionicsNoseCone' [LOG 17:48:55.523] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter' [LOG 17:48:55.543] PartLoader: Part 'Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter' has no database record. Creating. [LOG 17:48:55.550] DragCubeSystem: Creating drag cubes for part 'noseConeAdapter' [LOG 17:48:55.597] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone' [LOG 17:48:55.617] PartLoader: Part 'Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone' has no database record. Creating. [LOG 17:48:55.625] DragCubeSystem: Creating drag cubes for part 'standardNoseCone' [LOG 17:48:55.674] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorA/airplaneTail' [LOG 17:48:55.694] PartLoader: Part 'Squad/Parts/Aero/cones/tailConnectorA/airplaneTail' has no database record. Creating. [LOG 17:48:55.702] DragCubeSystem: Creating drag cubes for part 'airplaneTail' [LOG 17:48:55.738] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB' [LOG 17:48:55.758] PartLoader: Part 'Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB' has no database record. Creating. [LOG 17:48:55.765] DragCubeSystem: Creating drag cubes for part 'airplaneTailB' [LOG 17:48:55.803] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize1/fairingSize1' [LOG 17:48:55.836] PartLoader: Part 'Squad/Parts/Aero/fairings/fairingSize1/fairingSize1' has no database record. Creating. [LOG 17:48:55.847] DragCubeSystem: Creating drag cubes for part 'fairingSize1' [LOG 17:48:55.889] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize2/fairingSize2' [LOG 17:48:55.916] PartLoader: Part 'Squad/Parts/Aero/fairings/fairingSize2/fairingSize2' has no database record. Creating. [LOG 17:48:55.927] DragCubeSystem: Creating drag cubes for part 'fairingSize2' [LOG 17:48:55.964] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize3/fairingSize3' [LOG 17:48:55.994] PartLoader: Part 'Squad/Parts/Aero/fairings/fairingSize3/fairingSize3' has no database record. Creating. [LOG 17:48:56.005] DragCubeSystem: Creating drag cubes for part 'fairingSize3' [LOG 17:48:56.040] PartLoader: Compiling Part 'Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong' [LOG 17:48:56.065] PartLoader: Part 'Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong' has no database record. Creating. [LOG 17:48:56.075] DragCubeSystem: Creating drag cubes for part 'IntakeRadialLong' [LOG 17:48:56.109] PartLoader: Compiling Part 'Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake' [LOG 17:48:56.135] PartLoader: Part 'Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake' has no database record. Creating. [LOG 17:48:56.135] PartLoader: Compiling Part 'Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone' [LOG 17:48:56.152] PartLoader: Part 'Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone' has no database record. Creating. [LOG 17:48:56.158] DragCubeSystem: Creating drag cubes for part 'rocketNoseCone' [LOG 17:48:56.208] PartLoader: Compiling Part 'Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake' [LOG 17:48:56.236] PartLoader: Part 'Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake' has no database record. Creating. [LOG 17:48:56.236] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta' [LOG 17:48:56.258] PartLoader: Part 'Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta' has no database record. Creating. [LOG 17:48:56.300] DragCubeSystem: Creating drag cubes for part 'wingShuttleDelta' [LOG 17:48:56.332] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1' [LOG 17:48:56.356] PartLoader: Part 'Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1' has no database record. Creating. [LOG 17:48:56.365] DragCubeSystem: Creating drag cubes for part 'wingShuttleElevon1' [LOG 17:48:56.464] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2' [LOG 17:48:56.488] PartLoader: Part 'Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2' has no database record. Creating. [LOG 17:48:56.497] DragCubeSystem: Creating drag cubes for part 'wingShuttleElevon2' [LOG 17:48:56.596] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder' [LOG 17:48:56.618] PartLoader: Part 'Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder' has no database record. Creating. [LOG 17:48:56.628] DragCubeSystem: Creating drag cubes for part 'wingShuttleRudder' [LOG 17:48:56.715] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake' [LOG 17:48:56.737] PartLoader: Part 'Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake' has no database record. Creating. [LOG 17:48:56.746] DragCubeSystem: Creating drag cubes for part 'wingShuttleStrake' [LOG 17:48:56.772] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet' [LOG 17:48:56.795] PartLoader: Part 'Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet' has no database record. Creating. [LOG 17:48:56.804] DragCubeSystem: Creating drag cubes for part 'R8winglet' [LOG 17:48:56.894] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet' [LOG 17:48:56.914] PartLoader: Part 'Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet' has no database record. Creating. [LOG 17:48:56.921] DragCubeSystem: Creating drag cubes for part 'winglet' [LOG 17:48:56.947] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3' [LOG 17:48:56.970] PartLoader: Part 'Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3' has no database record. Creating. [LOG 17:48:56.980] DragCubeSystem: Creating drag cubes for part 'winglet3' [LOG 17:48:57.066] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector1/wingConnector' [LOG 17:48:57.088] PartLoader: Part 'Squad/Parts/Aero/wings/connector1/wingConnector' has no database record. Creating. [LOG 17:48:57.096] DragCubeSystem: Creating drag cubes for part 'wingConnector' [LOG 17:48:57.125] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector2/wingConnector2' [LOG 17:48:57.147] PartLoader: Part 'Squad/Parts/Aero/wings/connector2/wingConnector2' has no database record. Creating. [LOG 17:48:57.154] DragCubeSystem: Creating drag cubes for part 'wingConnector2' [LOG 17:48:57.185] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector3/wingConnector3' [LOG 17:48:57.205] PartLoader: Part 'Squad/Parts/Aero/wings/connector3/wingConnector3' has no database record. Creating. [LOG 17:48:57.212] DragCubeSystem: Creating drag cubes for part 'wingConnector3' [LOG 17:48:57.248] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector4/wingConnector4' [LOG 17:48:57.268] PartLoader: Part 'Squad/Parts/Aero/wings/connector4/wingConnector4' has no database record. Creating. [LOG 17:48:57.275] DragCubeSystem: Creating drag cubes for part 'wingConnector4' [LOG 17:48:57.306] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector5/wingConnector5' [LOG 17:48:57.326] PartLoader: Part 'Squad/Parts/Aero/wings/connector5/wingConnector5' has no database record. Creating. [LOG 17:48:57.333] DragCubeSystem: Creating drag cubes for part 'wingConnector5' [LOG 17:48:57.367] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta/deltaWing' [LOG 17:48:57.423] PartLoader: Part 'Squad/Parts/Aero/wings/delta/deltaWing' has no database record. Creating. [LOG 17:48:57.431] DragCubeSystem: Creating drag cubes for part 'deltaWing' [LOG 17:48:57.462] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta_small/delta_small' [LOG 17:48:57.482] PartLoader: Part 'Squad/Parts/Aero/wings/delta_small/delta_small' has no database record. Creating. [LOG 17:48:57.490] DragCubeSystem: Creating drag cubes for part 'delta.small' [LOG 17:48:57.520] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf' [LOG 17:48:57.542] PartLoader: Part 'Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf' has no database record. Creating. [LOG 17:48:57.550] DragCubeSystem: Creating drag cubes for part 'StandardCtrlSrf' [LOG 17:48:57.634] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon2/elevon2' [LOG 17:48:57.656] PartLoader: Part 'Squad/Parts/Aero/wings/elevon2/elevon2' has no database record. Creating. [LOG 17:48:57.665] DragCubeSystem: Creating drag cubes for part 'elevon2' [LOG 17:48:57.751] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon3/elevon3' [LOG 17:48:57.773] PartLoader: Part 'Squad/Parts/Aero/wings/elevon3/elevon3' has no database record. Creating. [LOG 17:48:57.781] DragCubeSystem: Creating drag cubes for part 'elevon3' [LOG 17:48:57.872] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon4/smallCtrlSrf' [LOG 17:48:57.895] PartLoader: Part 'Squad/Parts/Aero/wings/elevon4/smallCtrlSrf' has no database record. Creating. [LOG 17:48:57.904] DragCubeSystem: Creating drag cubes for part 'smallCtrlSrf' [LOG 17:48:58.022] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon5/elevon5' [LOG 17:48:58.045] PartLoader: Part 'Squad/Parts/Aero/wings/elevon5/elevon5' has no database record. Creating. [LOG 17:48:58.054] DragCubeSystem: Creating drag cubes for part 'elevon5' [LOG 17:48:58.133] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/strake/wingStrake' [LOG 17:48:58.153] PartLoader: Part 'Squad/Parts/Aero/wings/strake/wingStrake' has no database record. Creating. [LOG 17:48:58.160] DragCubeSystem: Creating drag cubes for part 'wingStrake' [LOG 17:48:58.185] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural1/structuralWing' [LOG 17:48:58.205] PartLoader: Part 'Squad/Parts/Aero/wings/structural1/structuralWing' has no database record. Creating. [LOG 17:48:58.212] DragCubeSystem: Creating drag cubes for part 'structuralWing' [LOG 17:48:58.238] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural2/structuralWing2' [LOG 17:48:58.260] PartLoader: Part 'Squad/Parts/Aero/wings/structural2/structuralWing2' has no database record. Creating. [LOG 17:48:58.268] DragCubeSystem: Creating drag cubes for part 'structuralWing2' [LOG 17:48:58.296] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural3/structuralWing3' [LOG 17:48:58.316] PartLoader: Part 'Squad/Parts/Aero/wings/structural3/structuralWing3' has no database record. Creating. [LOG 17:48:58.323] DragCubeSystem: Creating drag cubes for part 'structuralWing3' [LOG 17:48:58.349] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural4/structuralWing4' [LOG 17:48:58.371] PartLoader: Part 'Squad/Parts/Aero/wings/structural4/structuralWing4' has no database record. Creating. [LOG 17:48:58.380] DragCubeSystem: Creating drag cubes for part 'structuralWing4' [LOG 17:48:58.408] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept1/sweptWing1' [LOG 17:48:58.428] PartLoader: Part 'Squad/Parts/Aero/wings/swept1/sweptWing1' has no database record. Creating. [LOG 17:48:58.469] DragCubeSystem: Creating drag cubes for part 'sweptWing1' [LOG 17:48:58.495] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept2/sweptWing2' [LOG 17:48:58.515] PartLoader: Part 'Squad/Parts/Aero/wings/swept2/sweptWing2' has no database record. Creating. [LOG 17:48:58.523] DragCubeSystem: Creating drag cubes for part 'sweptWing2' [LOG 17:48:58.554] PartLoader: Compiling Part 'Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod' [LOG 17:48:58.599] PartLoader: Part 'Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod' has no database record. Creating. [LOG 17:48:58.620] DragCubeSystem: Creating drag cubes for part 'Mark1-2Pod' [LOG 17:48:58.668] PartLoader: Compiling Part 'Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2' [LOG 17:48:58.690] PartLoader: Part 'Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2' has no database record. Creating. [LOG 17:48:58.690] PartLoader: Compiling Part 'Squad/Parts/Command/cupola/cupola/cupola' [LOG 17:48:58.729] PartLoader: Part 'Squad/Parts/Command/cupola/cupola/cupola' has no database record. Creating. [LOG 17:48:58.746] DragCubeSystem: Creating drag cubes for part 'cupola' [LOG 17:48:58.787] PartLoader: Compiling Part 'Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd' [LOG 17:48:58.806] PartLoader: Part 'Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd' has no database record. Creating. [LOG 17:48:58.812] DragCubeSystem: Creating drag cubes for part 'seatExternalCmd' [LOG 17:48:58.848] PartLoader: Compiling Part 'Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin' [LOG 17:48:58.879] PartLoader: Part 'Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin' has no database record. Creating. [LOG 17:48:58.892] DragCubeSystem: Creating drag cubes for part 'crewCabin' [LOG 17:48:58.943] PartLoader: Compiling Part 'Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule' [LOG 17:48:58.962] PartLoader: Part 'Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule' has no database record. Creating. [LOG 17:48:58.970] DragCubeSystem: Creating drag cubes for part 'advSasModule' [LOG 17:48:59.010] PartLoader: Compiling Part 'Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule' [LOG 17:48:59.029] PartLoader: Part 'Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule' has no database record. Creating. [LOG 17:48:59.036] DragCubeSystem: Creating drag cubes for part 'sasModule' [LOG 17:48:59.078] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit' [LOG 17:48:59.121] PartLoader: Part 'Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit' has no database record. Creating. [LOG 17:48:59.142] DragCubeSystem: Creating drag cubes for part 'Mark1Cockpit' [LOG 17:48:59.219] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin' [LOG 17:48:59.252] PartLoader: Part 'Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin' has no database record. Creating. [LOG 17:48:59.267] DragCubeSystem: Creating drag cubes for part 'MK1CrewCabin' [LOG 17:48:59.365] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit' [LOG 17:48:59.410] PartLoader: Part 'Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit' has no database record. Creating. [LOG 17:48:59.429] DragCubeSystem: Creating drag cubes for part 'Mark2Cockpit' [LOG 17:48:59.533] PartLoader: Compiling Part 'Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall' [LOG 17:48:59.602] PartLoader: Part 'Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall' has no database record. Creating. [LOG 17:48:59.619] DragCubeSystem: Creating drag cubes for part 'landerCabinSmall' [LOG 17:48:59.673] PartLoader: Compiling Part 'Squad/Parts/Command/mk1pod/mk1Pod/mk1pod' [LOG 17:48:59.716] PartLoader: Part 'Squad/Parts/Command/mk1pod/mk1Pod/mk1pod' has no database record. Creating. [LOG 17:48:59.735] DragCubeSystem: Creating drag cubes for part 'mk1pod' [LOG 17:48:59.786] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline' [LOG 17:48:59.834] PartLoader: Part 'Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline' has no database record. Creating. [LOG 17:48:59.858] DragCubeSystem: Creating drag cubes for part 'mk2Cockpit.Inline' [LOG 17:48:59.959] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard' [LOG 17:49:00.010] PartLoader: Part 'Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard' has no database record. Creating. [LOG 17:49:00.032] DragCubeSystem: Creating drag cubes for part 'mk2Cockpit.Standard' [LOG 17:49:00.100] PartLoader: Compiling Part 'Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore' [LOG 17:49:00.128] PartLoader: Part 'Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore' has no database record. Creating. [LOG 17:49:00.142] DragCubeSystem: Creating drag cubes for part 'mk2DroneCore' [LOG 17:49:00.171] PartLoader: Compiling Part 'Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin' [LOG 17:49:00.212] PartLoader: Part 'Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin' has no database record. Creating. [LOG 17:49:00.228] DragCubeSystem: Creating drag cubes for part 'mk2LanderCabin' [LOG 17:49:00.273] PartLoader: Compiling Part 'Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle' [LOG 17:49:00.319] PartLoader: Part 'Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle' has no database record. Creating. [LOG 17:49:00.338] DragCubeSystem: Creating drag cubes for part 'mk3Cockpit.Shuttle' [LOG 17:49:00.433] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube' [LOG 17:49:00.461] PartLoader: Part 'Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube' has no database record. Creating. [LOG 17:49:00.473] DragCubeSystem: Creating drag cubes for part 'probeCoreCube' [LOG 17:49:00.532] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex' [LOG 17:49:00.560] PartLoader: Part 'Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex' has no database record. Creating. [LOG 17:49:00.572] DragCubeSystem: Creating drag cubes for part 'probeCoreHex' [LOG 17:49:00.617] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto' [LOG 17:49:00.645] PartLoader: Part 'Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto' has no database record. Creating. [LOG 17:49:00.693] DragCubeSystem: Creating drag cubes for part 'probeCoreOcto' [LOG 17:49:00.741] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2' [LOG 17:49:00.768] PartLoader: Part 'Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2' has no database record. Creating. [LOG 17:49:00.778] DragCubeSystem: Creating drag cubes for part 'probeCoreOcto2' [LOG 17:49:00.818] PartLoader: Compiling Part 'Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody' [LOG 17:49:00.844] PartLoader: Part 'Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody' has no database record. Creating. [LOG 17:49:00.854] DragCubeSystem: Creating drag cubes for part 'roverBody' [LOG 17:49:00.895] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge' [LOG 17:49:00.925] PartLoader: Part 'Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge' has no database record. Creating. [LOG 17:49:00.938] DragCubeSystem: Creating drag cubes for part 'probeStackLarge' [LOG 17:49:00.973] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall' [LOG 17:49:01.001] PartLoader: Part 'Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall' has no database record. Creating. [LOG 17:49:01.014] DragCubeSystem: Creating drag cubes for part 'probeStackSmall' [LOG 17:49:01.050] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere' [LOG 17:49:01.072] PartLoader: Part 'Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere' has no database record. Creating. [LOG 17:49:01.080] DragCubeSystem: Creating drag cubes for part 'probeCoreSphere' [LOG 17:49:01.131] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine' [LOG 17:49:01.160] PartLoader: Part 'Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine' has no database record. Creating. [LOG 17:49:01.167] DragCubeSystem: Creating drag cubes for part 'fuelLine' [LOG 17:49:01.196] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector' [LOG 17:49:01.216] PartLoader: Part 'Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector' has no database record. Creating. [LOG 17:49:01.224] DragCubeSystem: Creating drag cubes for part 'strutConnector' [LOG 17:49:01.247] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2' [LOG 17:49:01.272] PartLoader: Part 'Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2' has no database record. Creating. [LOG 17:49:01.281] DragCubeSystem: Creating drag cubes for part 'solarPanels2' [LOG 17:49:01.384] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4' [LOG 17:49:01.408] PartLoader: Part 'Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4' has no database record. Creating. [LOG 17:49:01.417] DragCubeSystem: Creating drag cubes for part 'solarPanels4' [LOG 17:49:01.512] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1' [LOG 17:49:01.537] PartLoader: Part 'Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1' has no database record. Creating. [LOG 17:49:01.548] DragCubeSystem: Creating drag cubes for part 'solarPanels1' [LOG 17:49:01.660] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3' [LOG 17:49:01.685] PartLoader: Part 'Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3' has no database record. Creating. [LOG 17:49:01.695] DragCubeSystem: Creating drag cubes for part 'solarPanels3' [LOG 17:49:01.799] PartLoader: Compiling Part 'Squad/Parts/Electrical/RTG/RTG/rtg' [LOG 17:49:01.862] PartLoader: Part 'Squad/Parts/Electrical/RTG/RTG/rtg' has no database record. Creating. [LOG 17:49:01.873] DragCubeSystem: Creating drag cubes for part 'rtg' [LOG 17:49:01.912] PartLoader: Compiling Part 'Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel' [LOG 17:49:01.935] PartLoader: Part 'Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel' has no database record. Creating. [LOG 17:49:01.946] DragCubeSystem: Creating drag cubes for part 'largeSolarPanel' [LOG 17:49:02.025] PartLoader: Compiling Part 'Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5' [LOG 17:49:02.051] PartLoader: Part 'Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5' has no database record. Creating. [LOG 17:49:02.060] DragCubeSystem: Creating drag cubes for part 'solarPanels5' [LOG 17:49:02.093] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack' [LOG 17:49:02.109] PartLoader: Part 'Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack' has no database record. Creating. [LOG 17:49:02.115] DragCubeSystem: Creating drag cubes for part 'batteryPack' [LOG 17:49:02.162] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank' [LOG 17:49:02.178] PartLoader: Part 'Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank' has no database record. Creating. [LOG 17:49:02.184] DragCubeSystem: Creating drag cubes for part 'batteryBank' [LOG 17:49:02.221] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini' [LOG 17:49:02.239] PartLoader: Part 'Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini' has no database record. Creating. [LOG 17:49:02.245] DragCubeSystem: Creating drag cubes for part 'batteryBankMini' [LOG 17:49:02.287] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack' [LOG 17:49:02.304] PartLoader: Part 'Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack' has no database record. Creating. [LOG 17:49:02.311] DragCubeSystem: Creating drag cubes for part 'ksp.r.largeBatteryPack' [LOG 17:49:02.358] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge' [LOG 17:49:02.374] PartLoader: Part 'Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge' has no database record. Creating. [LOG 17:49:02.380] DragCubeSystem: Creating drag cubes for part 'batteryBankLarge' [LOG 17:49:02.415] PartLoader: Compiling Part 'Squad/Parts/Engine/MassiveSRB/part/MassiveBooster' [LOG 17:49:02.457] PartLoader: Part 'Squad/Parts/Engine/MassiveSRB/part/MassiveBooster' has no database record. Creating. [LOG 17:49:02.477] DragCubeSystem: Creating drag cubes for part 'MassiveBooster' [LOG 17:49:02.510] PartLoader: Compiling Part 'Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine' [LOG 17:49:02.541] PartLoader: Part 'Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine' has no database record. Creating. [LOG 17:49:02.552] DragCubeSystem: Creating drag cubes for part 'omsEngine' [LOG 17:49:02.580] PartLoader: Compiling Part 'Squad/Parts/Engine/Size2LFB/part/Size2LFB' [LOG 17:49:02.631] PartLoader: Part 'Squad/Parts/Engine/Size2LFB/part/Size2LFB' has no database record. Creating. [LOG 17:49:02.652] DragCubeSystem: Creating drag cubes for part 'Size2LFB' [LOG 17:49:02.690] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine' [LOG 17:49:02.746] PartLoader: Part 'Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine' has no database record. Creating. [LOG 17:49:02.771] DragCubeSystem: Creating drag cubes for part 'Size3AdvancedEngine' [LOG 17:49:02.876] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster' [LOG 17:49:02.925] PartLoader: Part 'Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster' has no database record. Creating. [LOG 17:49:02.980] DragCubeSystem: Creating drag cubes for part 'Size3EngineCluster' [LOG 17:49:03.038] PartLoader: Compiling Part 'Squad/Parts/Engine/ionEngine/ionEngine/ionEngine' [LOG 17:49:03.072] PartLoader: Part 'Squad/Parts/Engine/ionEngine/ionEngine/ionEngine' has no database record. Creating. [LOG 17:49:03.087] DragCubeSystem: Creating drag cubes for part 'ionEngine' [LOG 17:49:03.132] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet' [LOG 17:49:03.224] PartLoader: Part 'Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet' has no database record. Creating. [LOG 17:49:03.259] DragCubeSystem: Creating drag cubes for part 'turboJet' [LOG 17:49:03.314] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine' [LOG 17:49:03.364] PartLoader: Part 'Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine' has no database record. Creating. [LOG 17:49:03.384] DragCubeSystem: Creating drag cubes for part 'JetEngine' [LOG 17:49:03.481] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2' [LOG 17:49:03.552] PartLoader: Part 'Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2' has no database record. Creating. [LOG 17:49:03.582] DragCubeSystem: Part 'turboFanSize2' has defined a procedural drag cube setup [LOG 17:49:03.586] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine' [LOG 17:49:03.644] PartLoader: Part 'Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine' has no database record. Creating. [LOG 17:49:03.667] DragCubeSystem: Creating drag cubes for part 'turboFanEngine' [LOG 17:49:03.716] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine' [LOG 17:49:03.755] PartLoader: Part 'Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine' has no database record. Creating. [LOG 17:49:03.771] DragCubeSystem: Creating drag cubes for part 'smallRadialEngine' [LOG 17:49:03.807] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini' [LOG 17:49:03.851] PartLoader: Part 'Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini' has no database record. Creating. [LOG 17:49:03.871] DragCubeSystem: Creating drag cubes for part 'liquidEngineMini' [LOG 17:49:03.960] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike' [LOG 17:49:04.008] PartLoader: Part 'Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike' has no database record. Creating. [LOG 17:49:04.065] DragCubeSystem: Creating drag cubes for part 'toroidalAerospike' [LOG 17:49:04.167] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine' [LOG 17:49:04.199] PartLoader: Part 'Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine' has no database record. Creating. [LOG 17:49:04.212] DragCubeSystem: Creating drag cubes for part 'microEngine' [LOG 17:49:04.259] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini' [LOG 17:49:04.294] PartLoader: Part 'Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini' has no database record. Creating. [LOG 17:49:04.309] DragCubeSystem: Creating drag cubes for part 'radialEngineMini' [LOG 17:49:04.349] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3' [LOG 17:49:04.396] PartLoader: Part 'Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3' has no database record. Creating. [LOG 17:49:04.420] DragCubeSystem: Creating drag cubes for part 'liquidEngine3' [LOG 17:49:04.512] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine' [LOG 17:49:04.565] PartLoader: Part 'Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine' has no database record. Creating. [LOG 17:49:04.586] DragCubeSystem: Part 'nuclearEngine' has defined a procedural drag cube setup [LOG 17:49:04.589] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine' [LOG 17:49:04.630] PartLoader: Part 'Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine' has no database record. Creating. [LOG 17:49:04.651] DragCubeSystem: Creating drag cubes for part 'liquidEngine' [LOG 17:49:04.748] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2' [LOG 17:49:04.800] PartLoader: Part 'Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2' has no database record. Creating. [LOG 17:49:04.823] DragCubeSystem: Creating drag cubes for part 'liquidEngine2' [LOG 17:49:04.919] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2' [LOG 17:49:04.974] PartLoader: Part 'Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2' has no database record. Creating. [LOG 17:49:04.996] DragCubeSystem: Creating drag cubes for part 'liquidEngine1-2' [LOG 17:49:05.099] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2' [LOG 17:49:05.141] PartLoader: Part 'Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2' has no database record. Creating. [LOG 17:49:05.163] DragCubeSystem: Creating drag cubes for part 'radialLiquidEngine1-2' [LOG 17:49:05.201] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2' [LOG 17:49:05.292] PartLoader: Part 'Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2' has no database record. Creating. [LOG 17:49:05.314] DragCubeSystem: Creating drag cubes for part 'liquidEngine2-2' [LOG 17:49:05.406] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSSME/SSME/SSME' [LOG 17:49:05.460] PartLoader: Part 'Squad/Parts/Engine/liquidEngineSSME/SSME/SSME' has no database record. Creating. [LOG 17:49:05.485] DragCubeSystem: Creating drag cubes for part 'SSME' [LOG 17:49:05.583] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper' [LOG 17:49:05.638] PartLoader: Part 'Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper' has no database record. Creating. [LOG 17:49:05.663] DragCubeSystem: Creating drag cubes for part 'engineLargeSkipper' [LOG 17:49:05.768] PartLoader: Compiling Part 'Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine' [LOG 17:49:05.816] PartLoader: Part 'Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine' has no database record. Creating. [LOG 17:49:05.832] DragCubeSystem: Creating drag cubes for part 'miniJetEngine' [LOG 17:49:05.885] PartLoader: Compiling Part 'Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER' [LOG 17:49:05.956] PartLoader: Part 'Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER' has no database record. Creating. [LOG 17:49:05.987] DragCubeSystem: Creating drag cubes for part 'RAPIER' [LOG 17:49:06.048] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1' [LOG 17:49:06.086] PartLoader: Part 'Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1' has no database record. Creating. [LOG 17:49:06.104] DragCubeSystem: Creating drag cubes for part 'solidBooster1-1' [LOG 17:49:06.140] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster' [LOG 17:49:06.179] PartLoader: Part 'Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster' has no database record. Creating. [LOG 17:49:06.196] DragCubeSystem: Creating drag cubes for part 'solidBooster' [LOG 17:49:06.240] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm' [LOG 17:49:06.274] PartLoader: Part 'Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm' has no database record. Creating. [LOG 17:49:06.289] DragCubeSystem: Creating drag cubes for part 'solidBooster.sm' [LOG 17:49:06.342] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1' [LOG 17:49:06.373] PartLoader: Part 'Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1' has no database record. Creating. [LOG 17:49:06.387] DragCubeSystem: Creating drag cubes for part 'sepMotor1' [LOG 17:49:06.420] PartLoader: Compiling Part 'Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine' [LOG 17:49:06.446] PartLoader: Part 'Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine' has no database record. Creating. [LOG 17:49:06.495] DragCubeSystem: Creating drag cubes for part 'vernierEngine' [LOG 17:49:06.530] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2' [LOG 17:49:06.546] PartLoader: Part 'Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2' has no database record. Creating. [LOG 17:49:06.552] DragCubeSystem: Creating drag cubes for part 'RCSTank1-2' [LOG 17:49:06.597] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini' [LOG 17:49:06.615] PartLoader: Part 'Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini' has no database record. Creating. [LOG 17:49:06.621] DragCubeSystem: Creating drag cubes for part 'rcsTankMini' [LOG 17:49:06.671] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank' [LOG 17:49:06.687] PartLoader: Part 'Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank' has no database record. Creating. [LOG 17:49:06.693] DragCubeSystem: Creating drag cubes for part 'RCSFuelTank' [LOG 17:49:06.739] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank' [LOG 17:49:06.758] PartLoader: Part 'Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank' has no database record. Creating. [LOG 17:49:06.764] DragCubeSystem: Creating drag cubes for part 'radialRCSTank' [LOG 17:49:06.813] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong' [LOG 17:49:06.830] PartLoader: Part 'Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong' has no database record. Creating. [LOG 17:49:06.836] DragCubeSystem: Creating drag cubes for part 'rcsTankRadialLong' [LOG 17:49:06.877] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank' [WRN 17:49:06.885] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:06.885] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:06.885] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:06.885] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:06.885] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:06.906] PartLoader: Part 'Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank' has no database record. Creating. [LOG 17:49:06.917] DragCubeSystem: Creating drag cubes for part 'Size3LargeTank' [LOG 17:49:06.962] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank' [WRN 17:49:06.970] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:06.970] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:06.970] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:06.970] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:06.970] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:06.990] PartLoader: Part 'Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank' has no database record. Creating. [LOG 17:49:07.001] DragCubeSystem: Creating drag cubes for part 'Size3MediumTank' [LOG 17:49:07.061] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank' [WRN 17:49:07.069] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.069] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.069] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.069] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.069] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.087] PartLoader: Part 'Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank' has no database record. Creating. [LOG 17:49:07.098] DragCubeSystem: Creating drag cubes for part 'Size3SmallTank' [LOG 17:49:07.145] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2' [WRN 17:49:07.154] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.154] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.154] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.154] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.155] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.175] PartLoader: Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2' has no database record. Creating. [LOG 17:49:07.186] DragCubeSystem: Creating drag cubes for part 'adapterMk3-Mk2' [LOG 17:49:07.234] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines' [LOG 17:49:07.251] PartLoader: Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines' has no database record. Creating. [LOG 17:49:07.257] DragCubeSystem: Creating drag cubes for part 'adapterEngines' [LOG 17:49:07.300] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2' [WRN 17:49:07.309] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.309] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.309] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.309] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.309] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.327] PartLoader: Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2' has no database record. Creating. [LOG 17:49:07.338] DragCubeSystem: Creating drag cubes for part 'adapterMk3-Size2' [LOG 17:49:07.393] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant' [WRN 17:49:07.402] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.402] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.402] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.402] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.402] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.420] PartLoader: Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant' has no database record. Creating. [LOG 17:49:07.431] DragCubeSystem: Creating drag cubes for part 'adapterMk3-Size2Slant' [LOG 17:49:07.486] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2' [WRN 17:49:07.494] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.494] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.494] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.494] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.494] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.516] PartLoader: Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2' has no database record. Creating. [LOG 17:49:07.526] DragCubeSystem: Creating drag cubes for part 'adapterSize2-Mk2' [LOG 17:49:07.575] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1' [WRN 17:49:07.583] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.583] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.583] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.583] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.583] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.601] PartLoader: Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1' has no database record. Creating. [LOG 17:49:07.614] DragCubeSystem: Creating drag cubes for part 'adapterSize2-Size1' [LOG 17:49:07.668] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant' [WRN 17:49:07.677] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.677] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.677] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.678] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.678] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.697] PartLoader: Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant' has no database record. Creating. [LOG 17:49:07.708] DragCubeSystem: Creating drag cubes for part 'adapterSize2-Size1Slant' [LOG 17:49:07.761] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3' [WRN 17:49:07.812] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.812] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.812] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.812] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.812] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.832] PartLoader: Part 'Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3' has no database record. Creating. [LOG 17:49:07.843] DragCubeSystem: Creating drag cubes for part 'adapterSize3-Mk3' [LOG 17:49:07.890] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2' [WRN 17:49:07.898] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.898] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.898] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.898] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.899] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.916] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2' has no database record. Creating. [LOG 17:49:07.927] DragCubeSystem: Creating drag cubes for part 'fuelTank3-2' [LOG 17:49:07.968] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank' [WRN 17:49:07.976] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:07.976] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:07.976] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:07.976] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:07.977] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:07.995] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank' has no database record. Creating. [LOG 17:49:08.006] DragCubeSystem: Creating drag cubes for part 'miniFuelTank' [LOG 17:49:08.055] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat' [WRN 17:49:08.063] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.063] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.063] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.063] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.063] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.081] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat' has no database record. Creating. [LOG 17:49:08.092] DragCubeSystem: Creating drag cubes for part 'fuelTankSmallFlat' [LOG 17:49:08.140] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall' [WRN 17:49:08.148] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.148] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.148] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.148] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.148] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.167] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall' has no database record. Creating. [LOG 17:49:08.180] DragCubeSystem: Creating drag cubes for part 'fuelTankSmall' [LOG 17:49:08.237] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank' [WRN 17:49:08.245] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.245] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.245] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.246] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.246] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.263] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank' has no database record. Creating. [LOG 17:49:08.274] DragCubeSystem: Creating drag cubes for part 'fuelTank' [LOG 17:49:08.325] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long' [WRN 17:49:08.333] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.333] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.333] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.333] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.333] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.354] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long' has no database record. Creating. [LOG 17:49:08.365] DragCubeSystem: Creating drag cubes for part 'fuelTank.long' [LOG 17:49:08.406] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank' [WRN 17:49:08.415] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.415] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.415] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.415] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.415] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.433] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank' has no database record. Creating. [LOG 17:49:08.433] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2' [WRN 17:49:08.441] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.441] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.441] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.441] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.441] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.459] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2' has no database record. Creating. [LOG 17:49:08.471] DragCubeSystem: Creating drag cubes for part 'fuelTank2-2' [LOG 17:49:08.524] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2' [WRN 17:49:08.532] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.532] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.532] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.532] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.532] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.550] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2' has no database record. Creating. [LOG 17:49:08.561] DragCubeSystem: Creating drag cubes for part 'fuelTank1-2' [LOG 17:49:08.614] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2' [WRN 17:49:08.623] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.623] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.623] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.624] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.624] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.643] PartLoader: Part 'Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2' has no database record. Creating. [LOG 17:49:08.655] DragCubeSystem: Creating drag cubes for part 'fuelTank4-2' [LOG 17:49:08.709] PartLoader: Compiling Part 'Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage' [LOG 17:49:08.730] PartLoader: Part 'Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage' has no database record. Creating. [LOG 17:49:08.737] DragCubeSystem: Creating drag cubes for part 'miniFuselage' [LOG 17:49:08.796] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler' [WRN 17:49:08.807] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.807] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.807] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.807] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.807] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.832] PartLoader: Part 'Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler' has no database record. Creating. [LOG 17:49:08.847] DragCubeSystem: Creating drag cubes for part 'mk2.1m.Bicoupler' [LOG 17:49:08.900] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong' [WRN 17:49:08.909] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.910] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.910] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:08.910] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:08.910] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:08.934] PartLoader: Part 'Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong' has no database record. Creating. [LOG 17:49:08.946] DragCubeSystem: Creating drag cubes for part 'mk2.1m.AdapterLong' [LOG 17:49:08.990] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter' [WRN 17:49:08.999] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:08.999] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:08.999] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:09.000] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:09.000] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:09.068] PartLoader: Part 'Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter' has no database record. Creating. [LOG 17:49:09.081] DragCubeSystem: Creating drag cubes for part 'mk2SpacePlaneAdapter' [LOG 17:49:09.133] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO' [WRN 17:49:09.142] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:09.142] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:09.142] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:09.143] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:09.143] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:09.166] PartLoader: Part 'Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO' has no database record. Creating. [LOG 17:49:09.180] DragCubeSystem: Creating drag cubes for part 'mk2FuselageLongLFO' [LOG 17:49:09.225] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage' [LOG 17:49:09.248] PartLoader: Part 'Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage' has no database record. Creating. [LOG 17:49:09.256] DragCubeSystem: Creating drag cubes for part 'mk2Fuselage' [LOG 17:49:09.301] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO' [WRN 17:49:09.311] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:09.311] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:09.311] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:09.311] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:09.311] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:09.335] PartLoader: Part 'Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO' has no database record. Creating. [LOG 17:49:09.348] DragCubeSystem: Creating drag cubes for part 'mk2FuselageShortLFO' [LOG 17:49:09.399] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid' [LOG 17:49:09.421] PartLoader: Part 'Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid' has no database record. Creating. [LOG 17:49:09.430] DragCubeSystem: Creating drag cubes for part 'mk2FuselageShortLiquid' [LOG 17:49:09.483] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono' [LOG 17:49:09.505] PartLoader: Part 'Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono' has no database record. Creating. [LOG 17:49:09.513] DragCubeSystem: Creating drag cubes for part 'mk2FuselageShortMono' [LOG 17:49:09.565] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin' [LOG 17:49:09.603] PartLoader: Part 'Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin' has no database record. Creating. [LOG 17:49:09.619] DragCubeSystem: Creating drag cubes for part 'mk3CrewCabin' [LOG 17:49:09.741] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100' [WRN 17:49:09.750] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:09.750] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:09.750] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:09.750] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:09.750] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:09.769] PartLoader: Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100' has no database record. Creating. [LOG 17:49:09.782] DragCubeSystem: Creating drag cubes for part 'mk3FuselageLFO.100' [LOG 17:49:09.825] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25' [WRN 17:49:09.834] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:09.834] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:09.834] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:09.834] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:09.834] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:09.852] PartLoader: Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25' has no database record. Creating. [LOG 17:49:09.863] DragCubeSystem: Creating drag cubes for part 'mk3FuselageLFO.25' [LOG 17:49:09.915] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50' [WRN 17:49:09.924] PartLoader Warning: Variable cryoPower not found in Part [WRN 17:49:09.924] PartLoader Warning: Variable REALmixOX not found in Part [WRN 17:49:09.924] PartLoader Warning: Variable REALmixLH2 not found in Part [WRN 17:49:09.924] PartLoader Warning: Variable LANTRmixOX not found in Part [WRN 17:49:09.924] PartLoader Warning: Variable LANTRmixLH2 not found in Part [LOG 17:49:09.944] PartLoader: Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50' has no database record. Creating. [LOG 17:49:09.955] DragCubeSystem: Creating drag cubes for part 'mk3FuselageLFO.50' [LOG 17:49:10.007] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100' [LOG 17:49:10.025] PartLoader: Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100' has no database record. Creating. [LOG 17:49:10.032] DragCubeSystem: Creating drag cubes for part 'mk3FuselageLF.100' [LOG 17:49:10.074] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25' [LOG 17:49:10.091] PartLoader: Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25' has no database record. Creating. [LOG 17:49:10.096] DragCubeSystem: Creating drag cubes for part 'mk3FuselageLF.25' [LOG 17:49:10.149] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50' [LOG 17:49:10.167] PartLoader: Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50' has no database record. Creating. [LOG 17:49:10.174] DragCubeSystem: Creating drag cubes for part 'mk3FuselageLF.50' [LOG 17:49:10.226] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO' [LOG 17:49:10.245] PartLoader: Part 'Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO' has no database record. Creating. [LOG 17:49:10.251] DragCubeSystem: Creating drag cubes for part 'mk3FuselageMONO' [LOG 17:49:10.293] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank' [LOG 17:49:10.320] PartLoader: Part 'Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank' has no database record. Creating. [LOG 17:49:10.332] DragCubeSystem: Creating drag cubes for part 'xenonTank' [LOG 17:49:10.416] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge' [LOG 17:49:10.433] PartLoader: Part 'Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge' has no database record. Creating. [LOG 17:49:10.439] DragCubeSystem: Creating drag cubes for part 'xenonTankLarge' [LOG 17:49:10.482] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial' [LOG 17:49:10.500] PartLoader: Part 'Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial' has no database record. Creating. [LOG 17:49:10.506] DragCubeSystem: Creating drag cubes for part 'xenonTankRadial' [LOG 17:49:10.550] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore' [LOG 17:49:10.578] PartLoader: Part 'Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore' has no database record. Creating. [LOG 17:49:10.592] DragCubeSystem: Creating drag cubes for part 'HECS2.ProbeCore' [LOG 17:49:10.640] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna' [LOG 17:49:10.668] PartLoader: Part 'Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna' has no database record. Creating. [LOG 17:49:10.677] DragCubeSystem: Creating drag cubes for part 'HighGainAntenna' [LOG 17:49:10.740] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel' [LOG 17:49:10.764] PartLoader: Part 'Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel' has no database record. Creating. [LOG 17:49:10.774] DragCubeSystem: Creating drag cubes for part 'LgRadialSolarPanel' [LOG 17:49:10.804] PartLoader: Compiling Part 'Squad/Parts/Misc/PotatoRoid/part/PotatoRoid' [ERR 17:49:10.814] ConvexHullBuilder: convex hull has more than 255 polygons! [ERR 17:49:10.814] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe) [ERR 17:49:10.825] ConvexHullBuilder: convex hull has more than 255 polygons! [ERR 17:49:10.825] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe) [ERR 17:49:10.871] ConvexHullBuilder: convex hull has more than 255 polygons! [ERR 17:49:10.871] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe) [ERR 17:49:10.904] ConvexHullBuilder: convex hull has more than 255 polygons! [ERR 17:49:10.904] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe) [LOG 17:49:10.905] PartLoader: Part 'Squad/Parts/Misc/PotatoRoid/part/PotatoRoid' has no database record. Creating. [ERR 17:49:10.915] ConvexHullBuilder: convex hull has more than 255 polygons! [ERR 17:49:10.915] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe) [LOG 17:49:10.936] DragCubeSystem: Creating drag cubes for part 'PotatoRoid' [LOG 17:49:10.980] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCell/FuelCell' [LOG 17:49:11.012] PartLoader: Part 'Squad/Parts/Resources/FuelCell/FuelCell/FuelCell' has no database record. Creating. [LOG 17:49:11.022] DragCubeSystem: Creating drag cubes for part 'FuelCell' [LOG 17:49:11.072] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray' [LOG 17:49:11.101] PartLoader: Part 'Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray' has no database record. Creating. [LOG 17:49:11.111] DragCubeSystem: Creating drag cubes for part 'FuelCellArray' [LOG 17:49:11.151] PartLoader: Compiling Part 'Squad/Parts/Resources/ISRU/ISRU/ISRU' [LOG 17:49:11.243] PartLoader: Part 'Squad/Parts/Resources/ISRU/ISRU/ISRU' has no database record. Creating. [LOG 17:49:11.268] DragCubeSystem: Creating drag cubes for part 'ISRU' [LOG 17:49:11.376] PartLoader: Compiling Part 'Squad/Parts/Resources/LargeTank/LargeTank/LargeTank' [LOG 17:49:11.396] PartLoader: Part 'Squad/Parts/Resources/LargeTank/LargeTank/LargeTank' has no database record. Creating. [LOG 17:49:11.403] DragCubeSystem: Creating drag cubes for part 'LargeTank' [LOG 17:49:11.455] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill' [LOG 17:49:11.522] PartLoader: Part 'Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill' has no database record. Creating. [LOG 17:49:11.543] DragCubeSystem: Creating drag cubes for part 'MiniDrill' [LOG 17:49:11.674] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU' [LOG 17:49:11.796] PartLoader: Part 'Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU' has no database record. Creating. [LOG 17:49:11.818] DragCubeSystem: Creating drag cubes for part 'MiniISRU' [LOG 17:49:11.869] PartLoader: Compiling Part 'Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner' [LOG 17:49:11.907] PartLoader: Part 'Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner' has no database record. Creating. [LOG 17:49:11.921] DragCubeSystem: Creating drag cubes for part 'OrbitalScanner' [LOG 17:49:11.995] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill' [LOG 17:49:12.060] PartLoader: Part 'Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill' has no database record. Creating. [LOG 17:49:12.079] DragCubeSystem: Creating drag cubes for part 'RadialDrill' [LOG 17:49:12.203] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank' [LOG 17:49:12.222] PartLoader: Part 'Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank' has no database record. Creating. [LOG 17:49:12.230] DragCubeSystem: Creating drag cubes for part 'RadialOreTank' [LOG 17:49:12.273] PartLoader: Compiling Part 'Squad/Parts/Resources/SmallTank/SmallTank/SmallTank' [LOG 17:49:12.292] PartLoader: Part 'Squad/Parts/Resources/SmallTank/SmallTank/SmallTank' has no database record. Creating. [LOG 17:49:12.299] DragCubeSystem: Creating drag cubes for part 'SmallTank' [LOG 17:49:12.351] PartLoader: Compiling Part 'Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner' [LOG 17:49:12.410] PartLoader: Part 'Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner' has no database record. Creating. [LOG 17:49:12.436] DragCubeSystem: Creating drag cubes for part 'SurfaceScanner' [LOG 17:49:12.478] PartLoader: Compiling Part 'Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner' [LOG 17:49:12.516] PartLoader: Part 'Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner' has no database record. Creating. [LOG 17:49:12.528] DragCubeSystem: Creating drag cubes for part 'SurveyScanner' [LOG 17:49:12.594] PartLoader: Compiling Part 'Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere' [LOG 17:49:12.614] PartLoader: Part 'Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere' has no database record. Creating. [LOG 17:49:12.621] DragCubeSystem: Creating drag cubes for part 'sensorAtmosphere' [LOG 17:49:12.661] PartLoader: Compiling Part 'Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment' [LOG 17:49:12.688] PartLoader: Part 'Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment' has no database record. Creating. [LOG 17:49:12.698] DragCubeSystem: Creating drag cubes for part 'GooExperiment' [LOG 17:49:12.778] PartLoader: Compiling Part 'Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab' [LOG 17:49:12.826] PartLoader: Part 'Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab' has no database record. Creating. [LOG 17:49:12.843] DragCubeSystem: Creating drag cubes for part 'Large.Crewed.Lab' [LOG 17:49:12.895] PartLoader: Compiling Part 'Squad/Parts/Science/MaterialBay/materialBay/science_module' [LOG 17:49:12.926] PartLoader: Part 'Squad/Parts/Science/MaterialBay/materialBay/science_module' has no database record. Creating. [LOG 17:49:12.983] DragCubeSystem: Creating drag cubes for part 'science.module' [LOG 17:49:13.092] PartLoader: Compiling Part 'Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer' [LOG 17:49:13.118] PartLoader: Part 'Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer' has no database record. Creating. [LOG 17:49:13.127] DragCubeSystem: Creating drag cubes for part 'sensorAccelerometer' [LOG 17:49:13.179] PartLoader: Compiling Part 'Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer' [LOG 17:49:13.200] PartLoader: Part 'Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer' has no database record. Creating. [LOG 17:49:13.209] DragCubeSystem: Creating drag cubes for part 'sensorBarometer' [LOG 17:49:13.256] PartLoader: Compiling Part 'Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter' [LOG 17:49:13.278] PartLoader: Part 'Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter' has no database record. Creating. [LOG 17:49:13.289] DragCubeSystem: Creating drag cubes for part 'sensorGravimeter' [LOG 17:49:13.343] PartLoader: Compiling Part 'Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer' [LOG 17:49:13.365] PartLoader: Part 'Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer' has no database record. Creating. [LOG 17:49:13.374] DragCubeSystem: Creating drag cubes for part 'sensorThermometer' [LOG 17:49:13.406] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler' [LOG 17:49:13.435] PartLoader: Part 'Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler' has no database record. Creating. [LOG 17:49:13.435] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter' [LOG 17:49:13.454] PartLoader: Part 'Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter' has no database record. Creating. [LOG 17:49:13.454] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi' [LOG 17:49:13.471] PartLoader: Part 'Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi' has no database record. Creating. [LOG 17:49:13.477] DragCubeSystem: Creating drag cubes for part 'adapterLargeSmallBi' [LOG 17:49:13.517] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad' [LOG 17:49:13.534] PartLoader: Part 'Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad' has no database record. Creating. [LOG 17:49:13.540] DragCubeSystem: Creating drag cubes for part 'adapterLargeSmallQuad' [LOG 17:49:13.582] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri' [LOG 17:49:13.599] PartLoader: Part 'Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri' has no database record. Creating. [LOG 17:49:13.605] DragCubeSystem: Creating drag cubes for part 'adapterLargeSmallTri' [LOG 17:49:13.644] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort' [LOG 17:49:13.661] PartLoader: Part 'Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort' has no database record. Creating. [LOG 17:49:13.667] DragCubeSystem: Creating drag cubes for part 'adapterSmallMiniShort' [LOG 17:49:13.702] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall' [LOG 17:49:13.719] PartLoader: Part 'Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall' has no database record. Creating. [LOG 17:49:13.729] DragCubeSystem: Creating drag cubes for part 'adapterSmallMiniTall' [LOG 17:49:13.773] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody' [LOG 17:49:13.801] PartLoader: Part 'Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody' has no database record. Creating. [LOG 17:49:13.814] DragCubeSystem: Creating drag cubes for part 'radialEngineBody' [LOG 17:49:13.867] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody' [LOG 17:49:13.899] PartLoader: Part 'Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody' has no database record. Creating. [LOG 17:49:13.910] DragCubeSystem: Creating drag cubes for part 'nacelleBody' [LOG 17:49:13.961] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage' [LOG 17:49:13.979] PartLoader: Part 'Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage' has no database record. Creating. [LOG 17:49:13.986] DragCubeSystem: Creating drag cubes for part 'MK1Fuselage' [LOG 17:49:14.037] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage' [LOG 17:49:14.071] PartLoader: Part 'Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage' has no database record. Creating. [LOG 17:49:14.084] DragCubeSystem: Creating drag cubes for part 'MK1IntakeFuselage' [LOG 17:49:14.136] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural' [LOG 17:49:14.157] PartLoader: Part 'Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural' has no database record. Creating. [LOG 17:49:14.157] PartLoader: Compiling Part 'Squad/Parts/Structural/stationHub/stationHub/stationHub' [LOG 17:49:14.229] PartLoader: Part 'Squad/Parts/Structural/stationHub/stationHub/stationHub' has no database record. Creating. [LOG 17:49:14.235] DragCubeSystem: Creating drag cubes for part 'stationHub' [LOG 17:49:14.296] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2' [LOG 17:49:14.313] PartLoader: Part 'Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2' has no database record. Creating. [LOG 17:49:14.320] DragCubeSystem: Creating drag cubes for part 'structuralIBeam2' [LOG 17:49:14.348] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3' [LOG 17:49:14.367] PartLoader: Part 'Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3' has no database record. Creating. [LOG 17:49:14.373] DragCubeSystem: Creating drag cubes for part 'structuralIBeam3' [LOG 17:49:14.404] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1' [LOG 17:49:14.422] PartLoader: Part 'Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1' has no database record. Creating. [LOG 17:49:14.428] DragCubeSystem: Creating drag cubes for part 'structuralIBeam1' [LOG 17:49:14.463] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode' [LOG 17:49:14.479] PartLoader: Part 'Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode' has no database record. Creating. [LOG 17:49:14.487] DragCubeSystem: Creating drag cubes for part 'structuralMiniNode' [LOG 17:49:14.549] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1' [LOG 17:49:14.566] PartLoader: Part 'Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1' has no database record. Creating. [LOG 17:49:14.572] DragCubeSystem: Creating drag cubes for part 'structuralPanel1' [LOG 17:49:14.609] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2' [LOG 17:49:14.626] PartLoader: Part 'Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2' has no database record. Creating. [LOG 17:49:14.632] DragCubeSystem: Creating drag cubes for part 'structuralPanel2' [LOG 17:49:14.669] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint' [LOG 17:49:14.696] PartLoader: Part 'Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint' has no database record. Creating. [LOG 17:49:14.707] DragCubeSystem: Creating drag cubes for part 'smallHardpoint' [LOG 17:49:14.737] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon' [LOG 17:49:14.766] PartLoader: Part 'Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon' has no database record. Creating. [LOG 17:49:14.777] DragCubeSystem: Creating drag cubes for part 'structuralPylon' [LOG 17:49:14.807] PartLoader: Compiling Part 'Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube' [LOG 17:49:14.824] PartLoader: Part 'Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube' has no database record. Creating. [LOG 17:49:14.832] DragCubeSystem: Creating drag cubes for part 'strutCube' [LOG 17:49:14.869] PartLoader: Compiling Part 'Squad/Parts/Structural/strutOcto/strutOcto/strutOcto' [LOG 17:49:14.887] PartLoader: Part 'Squad/Parts/Structural/strutOcto/strutOcto/strutOcto' has no database record. Creating. [LOG 17:49:14.893] DragCubeSystem: Creating drag cubes for part 'strutOcto' [LOG 17:49:14.926] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter' [LOG 17:49:14.943] PartLoader: Part 'Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter' has no database record. Creating. [LOG 17:49:14.951] DragCubeSystem: Creating drag cubes for part 'trussAdapter' [LOG 17:49:14.991] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x' [LOG 17:49:15.007] PartLoader: Part 'Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x' has no database record. Creating. [LOG 17:49:15.014] DragCubeSystem: Creating drag cubes for part 'trussPiece1x' [LOG 17:49:15.048] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x' [LOG 17:49:15.064] PartLoader: Part 'Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x' has no database record. Creating. [LOG 17:49:15.070] DragCubeSystem: Creating drag cubes for part 'trussPiece3x' [LOG 17:49:15.098] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge' [LOG 17:49:15.133] PartLoader: Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge' has no database record. Creating. [LOG 17:49:15.134] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed' [LOG 17:49:15.161] PartLoader: Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed' has no database record. Creating. [LOG 17:49:15.161] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall' [LOG 17:49:15.193] PartLoader: Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall' has no database record. Creating. [LOG 17:49:15.193] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge' [LOG 17:49:15.210] PartLoader: Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge' has no database record. Creating. [LOG 17:49:15.216] DragCubeSystem: Creating drag cubes for part 'radPanelEdge' [LOG 17:49:15.246] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg' [LOG 17:49:15.314] PartLoader: Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg' has no database record. Creating. [LOG 17:49:15.323] DragCubeSystem: Creating drag cubes for part 'radPanelLg' [LOG 17:49:15.354] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm' [LOG 17:49:15.377] PartLoader: Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm' has no database record. Creating. [LOG 17:49:15.385] DragCubeSystem: Creating drag cubes for part 'radPanelSm' [LOG 17:49:15.421] PartLoader: Compiling Part 'Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice' [LOG 17:49:15.461] PartLoader: Part 'Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice' has no database record. Creating. [LOG 17:49:15.477] DragCubeSystem: Creating drag cubes for part 'GrapplingDevice' [LOG 17:49:15.568] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125' [LOG 17:49:15.605] PartLoader: Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125' has no database record. Creating. [LOG 17:49:15.619] DragCubeSystem: Creating drag cubes for part 'ServiceBay.125' [LOG 17:49:15.696] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250' [LOG 17:49:15.732] PartLoader: Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250' has no database record. Creating. [LOG 17:49:15.747] DragCubeSystem: Creating drag cubes for part 'ServiceBay.250' [LOG 17:49:15.825] PartLoader: Compiling Part 'Squad/Parts/Utility/commDish88-88/commDish88-88/commDish' [LOG 17:49:15.850] PartLoader: Part 'Squad/Parts/Utility/commDish88-88/commDish88-88/commDish' has no database record. Creating. [LOG 17:49:15.860] DragCubeSystem: Creating drag cubes for part 'commDish' [LOG 17:49:15.955] PartLoader: Compiling Part 'Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna' [LOG 17:49:15.983] PartLoader: Part 'Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna' has no database record. Creating. [LOG 17:49:15.994] DragCubeSystem: Part 'mediumDishAntenna' has defined a procedural drag cube setup [LOG 17:49:15.997] PartLoader: Compiling Part 'Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna' [LOG 17:49:16.021] PartLoader: Part 'Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna' has no database record. Creating. [LOG 17:49:16.030] DragCubeSystem: Creating drag cubes for part 'longAntenna' [LOG 17:49:16.092] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2' [LOG 17:49:16.120] PartLoader: Part 'Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2' has no database record. Creating. [LOG 17:49:16.131] DragCubeSystem: Creating drag cubes for part 'radialDecoupler1-2' [LOG 17:49:16.160] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler' [LOG 17:49:16.187] PartLoader: Part 'Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler' has no database record. Creating. [LOG 17:49:16.198] DragCubeSystem: Creating drag cubes for part 'radialDecoupler' [LOG 17:49:16.231] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2' [LOG 17:49:16.260] PartLoader: Part 'Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2' has no database record. Creating. [LOG 17:49:16.271] DragCubeSystem: Creating drag cubes for part 'radialDecoupler2' [LOG 17:49:16.299] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator' [LOG 17:49:16.330] PartLoader: Part 'Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator' has no database record. Creating. [LOG 17:49:16.330] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini' [LOG 17:49:16.361] PartLoader: Part 'Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini' has no database record. Creating. [LOG 17:49:16.361] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig' [LOG 17:49:16.436] PartLoader: Part 'Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig' has no database record. Creating. [LOG 17:49:16.436] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2' [LOG 17:49:16.465] PartLoader: Part 'Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2' has no database record. Creating. [LOG 17:49:16.465] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler' [LOG 17:49:16.496] PartLoader: Part 'Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler' has no database record. Creating. [LOG 17:49:16.496] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini' [LOG 17:49:16.523] PartLoader: Part 'Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini' has no database record. Creating. [LOG 17:49:16.523] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2' [LOG 17:49:16.543] PartLoader: Part 'Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2' has no database record. Creating. [LOG 17:49:16.551] DragCubeSystem: Creating drag cubes for part 'dockingPort2' [LOG 17:49:16.599] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral' [LOG 17:49:16.626] PartLoader: Part 'Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral' has no database record. Creating. [LOG 17:49:16.637] DragCubeSystem: Creating drag cubes for part 'dockingPortLateral' [LOG 17:49:16.730] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3' [LOG 17:49:16.751] PartLoader: Part 'Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3' has no database record. Creating. [LOG 17:49:16.760] DragCubeSystem: Creating drag cubes for part 'dockingPort3' [LOG 17:49:16.803] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1' [LOG 17:49:16.829] PartLoader: Part 'Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1' has no database record. Creating. [LOG 17:49:16.840] DragCubeSystem: Creating drag cubes for part 'dockingPort1' [LOG 17:49:16.905] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge' [LOG 17:49:16.928] PartLoader: Part 'Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge' has no database record. Creating. [LOG 17:49:16.936] DragCubeSystem: Creating drag cubes for part 'dockingPortLarge' [LOG 17:49:16.971] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1' [LOG 17:49:16.984] PartLoader: Part 'Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1' has no database record. Creating. [LOG 17:49:16.988] DragCubeSystem: Creating drag cubes for part 'ladder1' [LOG 17:49:17.018] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder' [LOG 17:49:17.038] PartLoader: Part 'Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder' has no database record. Creating. [LOG 17:49:17.046] DragCubeSystem: Creating drag cubes for part 'telescopicLadder' [LOG 17:49:17.127] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay' [LOG 17:49:17.146] PartLoader: Part 'Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay' has no database record. Creating. [LOG 17:49:17.153] DragCubeSystem: Creating drag cubes for part 'telescopicLadderBay' [LOG 17:49:17.221] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1' [LOG 17:49:17.268] PartLoader: Part 'Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1' has no database record. Creating. [LOG 17:49:17.287] DragCubeSystem: Creating drag cubes for part 'landingLeg1' [LOG 17:49:17.346] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2' [LOG 17:49:17.396] PartLoader: Part 'Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2' has no database record. Creating. [LOG 17:49:17.416] DragCubeSystem: Creating drag cubes for part 'landingLeg1-2' [LOG 17:49:17.472] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg' [LOG 17:49:17.514] PartLoader: Part 'Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg' has no database record. Creating. [LOG 17:49:17.578] DragCubeSystem: Creating drag cubes for part 'miniLandingLeg' [LOG 17:49:17.636] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter' [LOG 17:49:17.653] PartLoader: Part 'Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter' has no database record. Creating. [LOG 17:49:17.660] DragCubeSystem: Creating drag cubes for part 'largeAdapter' [LOG 17:49:17.708] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2' [LOG 17:49:17.725] PartLoader: Part 'Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2' has no database record. Creating. [LOG 17:49:17.732] DragCubeSystem: Creating drag cubes for part 'largeAdapter2' [LOG 17:49:17.767] PartLoader: Compiling Part 'Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1' [LOG 17:49:17.793] PartLoader: Part 'Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1' has no database record. Creating. [LOG 17:49:17.804] DragCubeSystem: Creating drag cubes for part 'launchClamp1' [LOG 17:49:17.834] PartLoader: Compiling Part 'Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem' [LOG 17:49:17.871] PartLoader: Part 'Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem' has no database record. Creating. [LOG 17:49:17.884] DragCubeSystem: Creating drag cubes for part 'LaunchEscapeSystem' [LOG 17:49:17.920] PartLoader: Compiling Part 'Squad/Parts/Utility/linearRCS/linearRCS/linearRcs' [LOG 17:49:17.944] PartLoader: Part 'Squad/Parts/Utility/linearRCS/linearRCS/linearRcs' has no database record. Creating. [LOG 17:49:17.955] DragCubeSystem: Creating drag cubes for part 'linearRcs' [LOG 17:49:18.005] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL' [LOG 17:49:18.035] PartLoader: Part 'Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL' has no database record. Creating. [LOG 17:49:18.035] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS' [LOG 17:49:18.068] PartLoader: Part 'Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS' has no database record. Creating. [LOG 17:49:18.069] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin' [LOG 17:49:18.108] PartLoader: Part 'Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin' has no database record. Creating. [LOG 17:49:18.126] DragCubeSystem: Creating drag cubes for part 'mk2CrewCabin' [LOG 17:49:18.224] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort' [LOG 17:49:18.259] PartLoader: Part 'Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort' has no database record. Creating. [LOG 17:49:18.259] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL' [LOG 17:49:18.288] PartLoader: Part 'Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL' has no database record. Creating. [LOG 17:49:18.288] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM' [LOG 17:49:18.314] PartLoader: Part 'Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM' has no database record. Creating. [LOG 17:49:18.314] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp' [LOG 17:49:18.343] PartLoader: Part 'Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp' has no database record. Creating. [LOG 17:49:18.343] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS' [LOG 17:49:18.369] PartLoader: Part 'Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS' has no database record. Creating. [LOG 17:49:18.369] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle' [LOG 17:49:18.404] PartLoader: Part 'Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle' has no database record. Creating. [LOG 17:49:18.417] DragCubeSystem: Creating drag cubes for part 'parachuteSingle' [LOG 17:49:18.531] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue' [LOG 17:49:18.559] PartLoader: Part 'Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue' has no database record. Creating. [LOG 17:49:18.570] DragCubeSystem: Creating drag cubes for part 'radialDrogue' [LOG 17:49:18.725] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge' [LOG 17:49:18.761] PartLoader: Part 'Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge' has no database record. Creating. [LOG 17:49:18.774] DragCubeSystem: Creating drag cubes for part 'parachuteLarge' [LOG 17:49:18.884] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial' [LOG 17:49:18.918] PartLoader: Part 'Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial' has no database record. Creating. [LOG 17:49:18.931] DragCubeSystem: Creating drag cubes for part 'parachuteRadial' [LOG 17:49:19.034] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue' [LOG 17:49:19.066] PartLoader: Part 'Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue' has no database record. Creating. [LOG 17:49:19.079] DragCubeSystem: Creating drag cubes for part 'parachuteDrogue' [LOG 17:49:19.182] PartLoader: Compiling Part 'Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1' [LOG 17:49:19.200] PartLoader: Part 'Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1' has no database record. Creating. [LOG 17:49:19.206] DragCubeSystem: Creating drag cubes for part 'stackPoint1' [LOG 17:49:19.250] PartLoader: Compiling Part 'Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock' [LOG 17:49:19.274] PartLoader: Part 'Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock' has no database record. Creating. [LOG 17:49:19.283] DragCubeSystem: Creating drag cubes for part 'RCSBlock' [LOG 17:49:19.322] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1' [LOG 17:49:19.344] PartLoader: Part 'Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1' has no database record. Creating. [LOG 17:49:19.352] DragCubeSystem: Creating drag cubes for part 'spotLight1' [LOG 17:49:19.398] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2' [LOG 17:49:19.420] PartLoader: Part 'Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2' has no database record. Creating. [LOG 17:49:19.429] DragCubeSystem: Creating drag cubes for part 'spotLight2' [LOG 17:49:19.473] PartLoader: Compiling Part 'Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler' [LOG 17:49:19.490] PartLoader: Part 'Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler' has no database record. Creating. [LOG 17:49:19.496] DragCubeSystem: Creating drag cubes for part 'stackBiCoupler' [LOG 17:49:19.531] PartLoader: Compiling Part 'Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler' [LOG 17:49:19.548] PartLoader: Part 'Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler' has no database record. Creating. [LOG 17:49:19.554] DragCubeSystem: Creating drag cubes for part 'stackQuadCoupler' [LOG 17:49:19.597] PartLoader: Compiling Part 'Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler' [LOG 17:49:19.614] PartLoader: Part 'Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler' has no database record. Creating. [LOG 17:49:19.620] DragCubeSystem: Creating drag cubes for part 'stackTriCoupler' [LOG 17:49:19.661] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge' [LOG 17:49:19.726] PartLoader: Part 'Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge' has no database record. Creating. [LOG 17:49:19.752] DragCubeSystem: Creating drag cubes for part 'GearLarge' [LOG 17:49:19.813] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed' [LOG 17:49:19.899] PartLoader: Part 'Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed' has no database record. Creating. [LOG 17:49:19.914] DragCubeSystem: Creating drag cubes for part 'GearFixed' [LOG 17:49:19.945] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFree/GearFree' [LOG 17:49:19.984] PartLoader: Part 'Squad/Parts/Wheel/LandingGear/GearFree/GearFree' has no database record. Creating. [LOG 17:49:20.001] DragCubeSystem: Creating drag cubes for part 'GearFree' [LOG 17:49:20.036] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium' [LOG 17:49:20.097] PartLoader: Part 'Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium' has no database record. Creating. [LOG 17:49:20.124] DragCubeSystem: Creating drag cubes for part 'GearMedium' [LOG 17:49:20.187] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall' [LOG 17:49:20.251] PartLoader: Part 'Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall' has no database record. Creating. [LOG 17:49:20.280] DragCubeSystem: Creating drag cubes for part 'GearSmall' [LOG 17:49:20.341] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay' [LOG 17:49:20.405] PartLoader: Part 'Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay' has no database record. Creating. [LOG 17:49:20.436] DragCubeSystem: Creating drag cubes for part 'SmallGearBay' [LOG 17:49:20.495] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1' [LOG 17:49:20.548] PartLoader: Part 'Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1' has no database record. Creating. [LOG 17:49:20.571] DragCubeSystem: Creating drag cubes for part 'roverWheel1' [LOG 17:49:20.616] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2' [LOG 17:49:20.670] PartLoader: Part 'Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2' has no database record. Creating. [LOG 17:49:20.692] DragCubeSystem: Creating drag cubes for part 'roverWheel2' [LOG 17:49:20.727] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed' [LOG 17:49:20.779] PartLoader: Part 'Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed' has no database record. Creating. [LOG 17:49:20.801] DragCubeSystem: Creating drag cubes for part 'wheelMed' [LOG 17:49:20.854] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3' [LOG 17:49:20.954] PartLoader: Part 'Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3' has no database record. Creating. [LOG 17:49:20.974] DragCubeSystem: Creating drag cubes for part 'roverWheel3' [LOG 17:49:21.013] PartLoader: Compiling Internal Prop 'Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands' [LOG 17:49:21.018] PartLoader: Compiling Internal Prop 'Squad/Props/AtmosphereDepth/prop/AtmosphereDepth' [LOG 17:49:21.020] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch' [LOG 17:49:21.022] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll' [LOG 17:49:21.024] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw' [LOG 17:49:21.026] PartLoader: Compiling Internal Prop 'Squad/Props/ButtonSquare/prop/ButtonSquare' [LOG 17:49:21.030] PartLoader: Compiling Internal Prop 'Squad/Props/Compass/prop/Compass' [LOG 17:49:21.032] PartLoader: Compiling Internal Prop 'Squad/Props/IVANavBall/prop/NavBall' [LOG 17:49:21.037] PartLoader: Compiling Internal Prop 'Squad/Props/IndicatorPanel/prop/IndicatorPanel' [LOG 17:49:21.043] PartLoader: Compiling Internal Prop 'Squad/Props/Monitor/DockingMode/MonitorDockingMode' [LOG 17:49:21.045] PartLoader: Compiling Internal Prop 'Squad/Props/NavBall/prop/NavBall' [LOG 17:49:21.047] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode' [LOG 17:49:21.049] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagA/CargoBagA' [LOG 17:49:21.050] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagB/CargoBagB' [LOG 17:49:21.051] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagC/CargoBagC' [LOG 17:49:21.052] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane' [LOG 17:49:21.053] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90' [LOG 17:49:21.054] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame' [LOG 17:49:21.056] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger' [LOG 17:49:21.057] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot' [LOG 17:49:21.058] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet' [LOG 17:49:21.059] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/SideStick/SideStick' [LOG 17:49:21.060] PartLoader: Compiling Internal Prop 'Squad/Props/VSI/prop/VSI' [LOG 17:49:21.063] PartLoader: Compiling Internal Prop 'Squad/Props/circularButton/prop/circularButton' [LOG 17:49:21.064] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob/prop/directionalKnob' [LOG 17:49:21.066] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob2/prop/directionalKnob2' [LOG 17:49:21.067] PartLoader: Compiling Internal Prop 'Squad/Props/ledPanelSpeed/prop/ledPanelSpeed' [LOG 17:49:21.070] PartLoader: Compiling Internal Prop 'Squad/Props/pullSwitch/prop/pullSwitch' [LOG 17:49:21.072] PartLoader: Compiling Internal Prop 'Squad/Props/radarAltitude/prop/RadarAltimeter' [LOG 17:49:21.074] PartLoader: Compiling Internal Prop 'Squad/Props/squareButton/prop/squareButton' [LOG 17:49:21.076] PartLoader: Compiling Internal Prop 'Squad/Props/standingSwitch/prop/standingSwitch' [LOG 17:49:21.078] PartLoader: Compiling Internal Prop 'Squad/Props/switch/prop/switch' [LOG 17:49:21.079] PartLoader: Compiling Internal Prop 'Squad/Props/switchGuard/prop/switchGuard' [LOG 17:49:21.080] PartLoader: Compiling Internal Prop 'Squad/Props/switchWithGuards/prop/switchWithGuards' [LOG 17:49:21.082] PartLoader: Compiling Internal Prop 'Squad/Props/throttle/prop/throttle' [LOG 17:49:21.087] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/AnglerPit/internal/DropshipCockpit' [LOG 17:49:21.093] InternalSeat: Cannot find portraitCamera of name 'CockpitCam' [LOG 17:49:21.102] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/AnglerPit/internalRPM/DropshipCockpit_RPM' [LOG 17:49:21.104] InternalSeat: Cannot find portraitCamera of name 'CockpitCam' [LOG 17:49:21.105] Cannot find InternalProp 'IndicatorPanelRPM' [LOG 17:49:21.105] Cannot find InternalProp 'JSIActionGroupLabelButton01' [LOG 17:49:21.105] Cannot find InternalProp 'JSIActionGroupLabelButton02' [LOG 17:49:21.105] Cannot find InternalProp 'JSIActionGroupLabelButton03' [LOG 17:49:21.105] Cannot find InternalProp 'JSIStockAltimeter' [LOG 17:49:21.105] Cannot find InternalProp 'JSIStockSquareButtonBRAKES' [LOG 17:49:21.105] Cannot find InternalProp 'JSIStockSquareButtonGear' [LOG 17:49:21.105] Cannot find InternalProp 'JSIStockSquareButtonLight' [LOG 17:49:21.105] Cannot find InternalProp 'JSIStockSquareButtonRCS' [LOG 17:49:21.105] Cannot find InternalProp 'JSIStockSquareButtonSAS' [LOG 17:49:21.105] Cannot find InternalProp 'JSITrimKnobPitch' [LOG 17:49:21.105] Cannot find InternalProp 'JSITrimKnobRoll' [LOG 17:49:21.105] Cannot find InternalProp 'JSITrimKnobYaw' [LOG 17:49:21.105] Cannot find InternalProp 'RasterPropMonitorBasicHUD' [LOG 17:49:21.105] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.105] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.106] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/AnglerPit/internal_ASET/DropshipCockpitASET' [LOG 17:49:21.108] InternalSeat: Cannot find portraitCamera of name 'CockpitCam' [LOG 17:49:21.108] Cannot find InternalProp 'ASET_AHI' [LOG 17:49:21.108] Cannot find InternalProp 'ASET_ALTIMETER' [LOG 17:49:21.108] Cannot find InternalProp 'ASET_ASI' [LOG 17:49:21.108] Cannot find InternalProp 'ASET_EngineGauge' [LOG 17:49:21.108] Cannot find InternalProp 'ASET_FuelQTY_Digital' [LOG 17:49:21.108] Cannot find InternalProp 'ASET_GroundSpeed' [LOG 17:49:21.108] Cannot find InternalProp 'ASET_RadarAltimeter' [LOG 17:49:21.108] Cannot find InternalProp 'ASET_VSI' [LOG 17:49:21.109] Cannot find InternalProp 'JSIStockSquareButtonBRAKES' [LOG 17:49:21.109] Cannot find InternalProp 'JSIStockSquareButtonGear' [LOG 17:49:21.109] Cannot find InternalProp 'JSIStockSquareButtonLight' [LOG 17:49:21.109] Cannot find InternalProp 'JSIStockSquareButtonRCS' [LOG 17:49:21.109] Cannot find InternalProp 'JSIStockSquareButtonSAS' [LOG 17:49:21.109] Cannot find InternalProp 'RasterPropMonitorBasicHUD' [LOG 17:49:21.109] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.109] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/BladePit/internal/BladeCockpit' [LOG 17:49:21.112] InternalSeat: Cannot find portraitCamera of name 'CockpitCam' [LOG 17:49:21.113] InternalSeat: Cannot find portraitCamera of name 'PortCam' [LOG 17:49:21.114] InternalSeat: Cannot find portraitCamera of name 'StarbordCam' [LOG 17:49:21.124] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/BladePit/internal_ASET/BladeCockpitASET' [LOG 17:49:21.127] InternalSeat: Cannot find portraitCamera of name 'CockpitCam' [LOG 17:49:21.129] InternalSeat: Cannot find portraitCamera of name 'PortCam' [LOG 17:49:21.130] InternalSeat: Cannot find portraitCamera of name 'StarbordCam' [LOG 17:49:21.130] Cannot find InternalProp 'ASET_AHI' [LOG 17:49:21.130] Cannot find InternalProp 'ASET_AirFuelFLOW' [LOG 17:49:21.130] Cannot find InternalProp 'ASET_ASI' [LOG 17:49:21.130] Cannot find InternalProp 'ASET_DynamicPressure' [LOG 17:49:21.130] Cannot find InternalProp 'ASET_DynamicPressure' [LOG 17:49:21.130] Cannot find InternalProp 'ASET_EngineGauge' [LOG 17:49:21.130] Cannot find InternalProp 'ASET_FuelQTY_Digital' [LOG 17:49:21.130] Cannot find InternalProp 'ASET_G-METER' [LOG 17:49:21.131] Cannot find InternalProp 'ASET_Heading' [LOG 17:49:21.131] Cannot find InternalProp 'ASET_HUD' [LOG 17:49:21.131] Cannot find InternalProp 'ASET_MachNumber' [LOG 17:49:21.131] Cannot find InternalProp 'ASET_TemperatureGauge' [LOG 17:49:21.131] Cannot find InternalProp 'ASET_TrimIndicator' [LOG 17:49:21.131] Cannot find InternalProp 'ASET_TrimIndicator' [LOG 17:49:21.131] Cannot find InternalProp 'ASET_TurnCoordinator' [LOG 17:49:21.131] Cannot find InternalProp 'ASET_VSI' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockAltimeter' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockFuelPanel' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonBRAKES' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonBRAKES' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonGear' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonGear' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonLight' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonLight' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonRCS' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonRCS' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonSAS' [LOG 17:49:21.137] Cannot find InternalProp 'JSIStockSquareButtonSAS' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.138] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.139] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/BladePit/internal_RPM/BladeCockpitRPM' [LOG 17:49:21.141] InternalSeat: Cannot find portraitCamera of name 'CockpitCam' [LOG 17:49:21.142] InternalSeat: Cannot find portraitCamera of name 'PortCam' [LOG 17:49:21.143] InternalSeat: Cannot find portraitCamera of name 'StarbordCam' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.152] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.153] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/CrewedLab/4Seatinternal/M2XLabInternal' [LOG 17:49:21.155] InternalSeat: Cannot find portraitCamera of name 'PortCam' [LOG 17:49:21.156] InternalSeat: Cannot find portraitCamera of name 'StarCam' [LOG 17:49:21.158] InternalSeat: Cannot find seatTransform of name 'AftPortSeat' [LOG 17:49:21.158] InternalSeat: Cannot find portraitCamera of name 'AftPortCam' [LOG 17:49:21.159] InternalSeat: Cannot find portraitCamera of name 'AftStarCam' [LOG 17:49:21.159] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/CrewedLab/internal/M2XLabInternal' [LOG 17:49:21.161] InternalSeat: Cannot find portraitCamera of name 'PortCam' [LOG 17:49:21.162] InternalSeat: Cannot find portraitCamera of name 'StarCam' [LOG 17:49:21.162] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/RavenPit/internal/RavenCockpit' [LOG 17:49:21.165] InternalSeat: Cannot find portraitCamera of name 'PortraitCam' [LOG 17:49:21.177] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/RavenPit/internal_ASET/ASET_RavenCockpit' [LOG 17:49:21.181] InternalSeat: Cannot find portraitCamera of name 'PortraitCam' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_AHI' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_AirFuelFLOW' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_ALTIMETER' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_ASI' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_BatteryGauge' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_DynamicPressure' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_EngineGauge' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_FlapsIndicator' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_FuelQTY_Digital' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_G-METER' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_GroundSpeed' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_Heading' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_MachNumber' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_RadarAltimeter' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_TemperatureGauge' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_TrimIndicator' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_TurnCoordinator' [LOG 17:49:21.181] Cannot find InternalProp 'ASET_VSI' [LOG 17:49:21.185] Cannot find InternalProp 'JSIStockAltimeter' [LOG 17:49:21.185] Cannot find InternalProp 'JSIStockFuelPanel' [LOG 17:49:21.185] Cannot find InternalProp 'JSIStockMono' [LOG 17:49:21.185] Cannot find InternalProp 'JSIStockPower' [LOG 17:49:21.185] Cannot find InternalProp 'JSIStockSquareButtonBRAKES' [LOG 17:49:21.185] Cannot find InternalProp 'JSIStockSquareButtonGear' [LOG 17:49:21.185] Cannot find InternalProp 'JSIStockSquareButtonRCS' [LOG 17:49:21.185] Cannot find InternalProp 'JSIStockSquareButtonSAS' [LOG 17:49:21.186] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.190] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/RavenPit/internal_RPM/RPM_RavenCockpit' [LOG 17:49:21.193] InternalSeat: Cannot find portraitCamera of name 'PortraitCam' [LOG 17:49:21.197] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.197] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.203] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/TunaPit/internal/TunaCockpit' [LOG 17:49:21.205] InternalSeat: Cannot find portraitCamera of name 'ForePortraitCam' [LOG 17:49:21.207] InternalSeat: Cannot find portraitCamera of name 'AftPortraitCam' [LOG 17:49:21.213] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/TunaPit/internal_ASET/TunaCockpitASET' [LOG 17:49:21.216] InternalSeat: Cannot find portraitCamera of name 'ForePortraitCam' [LOG 17:49:21.217] InternalSeat: Cannot find portraitCamera of name 'AftPortraitCam' [LOG 17:49:21.217] Cannot find InternalProp 'ASET_AHI' [LOG 17:49:21.217] Cannot find InternalProp 'ASET_AirFuelFLOW' [LOG 17:49:21.217] Cannot find InternalProp 'ASET_AirFuelFLOW' [LOG 17:49:21.217] Cannot find InternalProp 'ASET_ALTIMETER' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_ALTIMETER' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_ASI' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_DynamicPressure' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_EngineGauge' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_EngineGauge' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_FuelQTY_Digital' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_FuelQTY_Digital' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_G-METER' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_Heading' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_Heading' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_HUD' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_MachNumber' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_RadarAltimeter' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_RadarAltimeter' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_TrimIndicator' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_TurnCoordinator' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_VSI' [LOG 17:49:21.218] Cannot find InternalProp 'ASET_VSI' [LOG 17:49:21.219] Cannot find InternalProp 'IndicatorPanelRPM' [LOG 17:49:21.219] Cannot find InternalProp 'JSIStockSquareButtonBRAKES' [LOG 17:49:21.219] Cannot find InternalProp 'JSIStockSquareButtonGear' [LOG 17:49:21.219] Cannot find InternalProp 'JSIStockSquareButtonSAS' [LOG 17:49:21.219] Cannot find InternalProp 'JSITrimKnobPitch' [LOG 17:49:21.219] Cannot find InternalProp 'JSITrimKnobRoll' [LOG 17:49:21.219] Cannot find InternalProp 'JSITrimKnobYaw' [LOG 17:49:21.219] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.219] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.219] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.221] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/ViperPit/internal/ViperCockpit' [LOG 17:49:21.223] InternalSeat: Cannot find portraitCamera of name 'CockpitCam' [LOG 17:49:21.227] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/ViperPit/internal_ASET/ASET_ViperCockpit' [LOG 17:49:21.229] InternalSeat: Cannot find portraitCamera of name 'CockpitCam' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_AHI' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_AirFuelFLOW' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_ALTIMETER' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_ASI' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_DynamicPressure' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_EngineGauge' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_FlapsIndicator' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_FuelQTY_Digital' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_G-METER' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_GroundSpeed' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_Heading' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_HUD' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_MachNumber' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_RadarAltimeter' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_TrimIndicator' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_TurnCoordinator' [LOG 17:49:21.229] Cannot find InternalProp 'ASET_VSI' [LOG 17:49:21.229] Cannot find InternalProp 'JSIStockSquareButtonBRAKES' [LOG 17:49:21.229] Cannot find InternalProp 'JSIStockSquareButtonGear' [LOG 17:49:21.229] Cannot find InternalProp 'JSIStockSquareButtonLight' [LOG 17:49:21.229] Cannot find InternalProp 'JSIStockSquareButtonRCS' [LOG 17:49:21.229] Cannot find InternalProp 'JSIStockSquareButtonSAS' [LOG 17:49:21.229] Cannot find InternalProp 'JSITrimKnobPitch' [LOG 17:49:21.229] Cannot find InternalProp 'JSITrimKnobRoll' [LOG 17:49:21.229] Cannot find InternalProp 'JSITrimKnobYaw' [LOG 17:49:21.230] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.230] PartLoader: Compiling Internal Space 'Mk2Expansion/Spaces/ViperPit/internal_RPM/RPM_ViperCockpit' [LOG 17:49:21.232] InternalSeat: Cannot find portraitCamera of name 'CockpitCam' [LOG 17:49:21.233] Cannot find InternalProp 'JSIStockFuelPanel' [LOG 17:49:21.233] Cannot find InternalProp 'JSIStockPower' [LOG 17:49:21.233] Cannot find InternalProp 'JSIStockSquareButtonBRAKES' [LOG 17:49:21.233] Cannot find InternalProp 'JSIStockSquareButtonGear' [LOG 17:49:21.233] Cannot find InternalProp 'JSIStockSquareButtonLight' [LOG 17:49:21.233] Cannot find InternalProp 'JSIStockSquareButtonRCS' [LOG 17:49:21.233] Cannot find InternalProp 'JSIStockSquareButtonSAS' [LOG 17:49:21.233] Cannot find InternalProp 'JSITrimKnobPitch' [LOG 17:49:21.233] Cannot find InternalProp 'JSITrimKnobRoll' [LOG 17:49:21.233] Cannot find InternalProp 'JSITrimKnobYaw' [LOG 17:49:21.234] Cannot find InternalProp 'RasterPropMonitorBasicHUD' [LOG 17:49:21.234] Cannot find InternalProp 'RasterPropMonitorBasicMFD' [LOG 17:49:21.234] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace1/internal/GenericSpace1' [LOG 17:49:21.237] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace3/internal/GenericSpace3' [LOG 17:49:21.241] PartLoader: Compiling Internal Space 'Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int' [LOG 17:49:21.246] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int' [LOG 17:49:21.317] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int' [LOG 17:49:21.324] InternalSeat: Cannot find portraitCamera of name 'Camera_Left003' [LOG 17:49:21.340] PartLoader: Compiling Internal Space 'Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int' [LOG 17:49:21.351] PartLoader: Compiling Internal Space 'Squad/Spaces/Placeholder/internal/Placeholder' [LOG 17:49:21.371] PartLoader: Compiling Internal Space 'Squad/Spaces/PodCockpit/internal/PodCockpit' [LOG 17:49:21.389] PartLoader: Compiling Internal Space 'Squad/Spaces/crewCabinInternals/internal/crewCabinInternals' [LOG 17:49:21.398] PartLoader: Compiling Internal Space 'Squad/Spaces/cupolaInternal/internal/cupolaInternal' [LOG 17:49:21.412] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinInternals/internal/landerCabinInternals' [LOG 17:49:21.418] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal' [LOG 17:49:21.431] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal' [LOG 17:49:21.442] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal' [LOG 17:49:21.462] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal' [LOG 17:49:21.475] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit' [LOG 17:49:21.481] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals' [LOG 17:49:21.512] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal' [LOG 17:49:21.545] Loading Systems: Elapsed time is 81.19057s [WRN 17:49:21.678] The referenced script on this Behaviour is missing! [WRN 17:49:21.678] The referenced script on this Behaviour is missing! [WRN 17:49:22.642] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:49:22.743] UIMasterController: HideUI [WRN 17:49:22.983] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:49:22.984] UIMasterController: HideUI [LOG 17:49:23.013] Agent: Found 18 agent mentality types [LOG 17:49:23.015] AgentList: 28 agents parsed and loaded. [LOG 17:49:23.724] [CelestialBody]: Kerbin's solar day length is 1d, 0h, 0m long. sidereal day length is 5h, 59m, 9s long [WRN 17:49:23.734] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:49:23.736] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:49:23.745] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:49:23.774] UIMasterController: HideUI [WRN 17:49:23.776] [HighLogic]: =========================== Scene Change : From LOADING to MAINMENU ===================== [LOG 17:49:24.901] AddonLoader: Instantiating addon 'ScaleExponentsLoader' from assembly 'Scale' [LOG 17:49:24.904] UIMasterController: ShowUI [LOG 17:49:25.219] [ModuleManager] Total loading Time = 84.106s [WRN 17:49:25.247] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:49:25.248] [ApplicationLauncher] Awake False [LOG 17:49:25.250] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown [WRN 17:49:25.269] [UiApp] Awake: MessageSystem [WRN 17:49:26.078] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:49:26.172] [UIApp] Adding MessageSystem to Application Launcher [LOG 17:49:26.176] [ApplicationLauncher] SetHidden: [LOG 17:49:26.217] [MessageSystem] OnAppInitialized [LOG 17:49:26.218] [MessageSystem] Reposition 0.14 4094 [LOG 17:49:34.665] ExperienceSystem: Found 0 trait types [LOG 17:49:34.667] ExperienceSystem: Found 9 effect types [LOG 17:49:37.373] ReflectionUtil: Found 4 types with UpgradeModule attribute in 8 assemblies. [LOG 17:49:37.385] [KSPUpgradePipeline]: test (1.1.3) is up to date. [LOG 17:49:37.392] ScenarioTypes: List Created 14 scenario types loaded from 8 loaded assemblies. [LOG 17:49:37.397] UIMasterController: HideUI [WRN 17:49:37.398] [HighLogic]: =========================== Scene Change : From MAINMENU to SPACECENTER (Async) ===================== [LOG 17:49:37.783] UIMasterController: HideUI [WRN 17:49:38.418] The referenced script on this Behaviour is missing! [WRN 17:49:38.418] The referenced script on this Behaviour is missing! [WRN 17:49:38.418] The referenced script on this Behaviour is missing! [WRN 17:49:38.418] The referenced script on this Behaviour is missing! [WRN 17:49:38.418] The referenced script on this Behaviour is missing! [WRN 17:49:38.418] The referenced script on this Behaviour is missing! [WRN 17:49:38.418] The referenced script on this Behaviour is missing! [WRN 17:49:38.418] The referenced script on this Behaviour is missing! [WRN 17:49:38.418] The referenced script on this Behaviour is missing! [LOG 17:49:39.379] AddonLoader: Instantiating addon 'ContractDefs' from assembly 'KSP' [LOG 17:49:39.403] AddonLoader: Instantiating addon 'CustomConfigsManager' from assembly 'ModuleManager' [LOG 17:49:39.406] [PlanetariumCamera]: Focus: Kerbin [LOG 17:49:39.409] UIMasterController: HideUI [LOG 17:49:39.726] [CustomConfigsManager] Setting moddeed physics as the active one [LOG 17:49:39.727] PhysicsGlobals: Loading database [LOG 17:49:40.023] Loading Depletion Nodes [LOG 17:49:40.023] DepNodeCount: 0 [LOG 17:49:40.024] Loading Biome Nodes [LOG 17:49:40.024] BiomeNodeCount: 0 [LOG 17:49:40.024] Loading Planet Nodes [LOG 17:49:40.024] PlanetNodeCount: 0 [LOG 17:49:40.041] [ScenarioDestructibles]: Loading... 0 objects registered [WRN 17:49:40.044] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:49:40.044] [UiApp] Awake: KSPedia [LOG 17:49:40.044] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True [LOG 17:49:40.045] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft [LOG 17:49:40.047] [ApplicationLauncher] SetVisible: [LOG 17:49:40.113] [AsteroidSpawner]: No new objects this time. (Odds are 1:2) [LOG 17:49:40.114] [UIApp] OnDestroy: ContractsApp [WRN 17:49:40.468] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:49:40.468] [MessageSystem] Reposition 0.02 4400 [LOG 17:49:41.375] [UIApp] Adding KSPedia to Application Launcher [LOG 17:49:42.176] UIMasterController: ShowUI [LOG 17:49:47.177] Flight State Captured [LOG 17:49:47.181] Saving Achievements Tree... [LOG 17:49:47.184] [MessageSystem] Save Messages [LOG 17:49:47.193] Game State Saved to saves/test/persistent [LOG 17:49:47.193] Going to Hangar! CachedShipType: None [LOG 17:49:47.198] UIMasterController: HideUI [WRN 17:49:47.199] [HighLogic]: =========================== Scene Change : From SPACECENTER to EDITOR (Async) ===================== [LOG 17:49:47.482] [UIApp] OnDestroy: KSPedia [LOG 17:49:47.655] UIMasterController: HideUI [LOG 17:49:49.279] UICanvasPrefabSpawner SceneLogic spawning Editor [LOG 17:49:49.338] No Input Locks in effect right now [WRN 17:49:49.340] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:49:49.465] AddonLoader: Instantiating addon 'HotkeyManager' from assembly 'Scale' [LOG 17:49:49.470] AddonLoader: Instantiating addon 'TechUpdater' from assembly 'Scale' [LOG 17:49:49.472] UIMasterController: HideUI [LOG 17:49:49.502] ------------------- initializing editor mode... ------------------ [LOG 17:49:49.502] editor started [LOG 17:49:49.531] IconLoader awake [WRN 17:49:49.846] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:49:50.199] The referenced script on this Behaviour is missing! [WRN 17:49:50.199] The referenced script on this Behaviour is missing! [WRN 17:49:50.199] The referenced script on this Behaviour is missing! [WRN 17:49:50.199] The referenced script on this Behaviour is missing! [WRN 17:49:50.199] The referenced script on this Behaviour is missing! [LOG 17:49:51.088] Loading Depletion Nodes [LOG 17:49:51.088] DepNodeCount: 0 [LOG 17:49:51.088] Loading Biome Nodes [LOG 17:49:51.088] BiomeNodeCount: 0 [LOG 17:49:51.088] Loading Planet Nodes [LOG 17:49:51.088] PlanetNodeCount: 0 [LOG 17:49:51.091] [ScenarioDestructibles]: Loading... 0 objects registered [WRN 17:49:51.091] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:49:51.091] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:49:51.091] [UiApp] Awake: EngineersReport [WRN 17:49:51.091] [UiApp] Awake: KSPedia [LOG 17:49:51.091] [ApplicationLauncher] OnSceneLoadedGUIReady: scene EDITOR ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop False [LOG 17:49:51.105] [UIApp] OnDestroy: ContractsApp [LOG 17:49:51.541] [MessageSystem] Reposition 0.02 4476 [LOG 17:49:52.052] [UIApp] Adding EngineersReport to Application Launcher [LOG 17:49:52.153] [UIApp] Adding KSPedia to Application Launcher [LOG 17:49:52.156] [GenericAppFrame] Reposition 0.24596 4482 [LOG 17:49:52.833] UIMasterController: ShowUI [WRN 17:49:56.607] [ShipConstruction]: No thumbnail image exists for Ships/@thumbs/SPH/M2X Dactyl [WRN 17:49:56.619] [ShipConstruction]: No thumbnail image exists for Ships/@thumbs/SPH/M2X ESTOC [WRN 17:49:56.633] [ShipConstruction]: No thumbnail image exists for Ships/@thumbs/SPH/M2X Grasshopper [WRN 17:49:56.649] [ShipConstruction]: No thumbnail image exists for Ships/@thumbs/SPH/M2X Hermes [WRN 17:49:56.672] [ShipConstruction]: No thumbnail image exists for Ships/@thumbs/SPH/M2X Hyperblast [WRN 17:49:56.717] [ShipConstruction]: No thumbnail image exists for Ships/@thumbs/SPH/M2X Speed Demon [WRN 17:49:56.727] [ShipConstruction]: No thumbnail image exists for Ships/@thumbs/SPH/M2X Zephyr [LOG 17:50:01.041] [KSPUpgradePipeline]: Auto-Saved Ship (1.1.3) is up to date. [WRN 17:50:01.077] [Part]: PartModule indexing mismatch at mk2Cockpit.Standard, index 7. Node 'ModuleTripLogger' found in loaded data, but 'TweakScale' is defined in prefab. Looking for ModuleTripLogger in other indices... [WRN 17:50:01.077] ...ModuleTripLogger module found at index 8. [WRN 17:50:01.077] [Part]: PartModule indexing mismatch at mk2Cockpit.Standard, index 8. Node 'TransferDialogSpawner' found in loaded data, but 'ModuleTripLogger' is defined in prefab. Looking for TransferDialogSpawner in other indices... [WRN 17:50:01.077] ...no TransferDialogSpawner module found on part definition. Skipping... [WRN 17:50:01.085] [Part]: PartModule indexing mismatch at M2X.Endcap, index 0. Node 'TransferDialogSpawner' found in loaded data, but 'TweakScale' is defined in prefab. Looking for TransferDialogSpawner in other indices... [WRN 17:50:01.085] ...no TransferDialogSpawner module found on part definition. Skipping... [LOG 17:50:01.087] hopper loaded! [LOG 17:50:01.201] Getting value. Currently: False [LOG 17:50:01.202] New value: False [LOG 17:50:01.203] Getting value. Currently: False [LOG 17:50:01.203] New value: False [LOG 17:50:01.376] Autogen thumbnail for /Applications/KSP_osx/KSP.app/Contents/../../thumbs/test_SPH_Auto-Saved Ship.png from /Applications/KSP_osx/saves/test/Ships/SPH/Auto-Saved Ship.craft [LOG 17:50:07.559] [Pre-Flight Check]: Checking for CraftWithinPartCountLimit: PASS! [LOG 17:50:07.560] [Pre-Flight Check]: Checking for CraftWithinSizeLimits: PASS! [LOG 17:50:07.560] [Pre-Flight Check]: Checking for CraftWithinMassLimits: PASS! [LOG 17:50:07.560] [Pre-Flight Check]: Checking for ExperimentalPartsAvailable: PASS! [LOG 17:50:07.560] [Pre-Flight Check]: Checking for CanAffordLaunchTest: PASS! [LOG 17:50:07.560] [Pre-Flight Check]: Checking for FacilityOperational: PASS! [LOG 17:50:07.560] [Pre-Flight Check]: Checking for NoControlSources: PASS! [LOG 17:50:07.561] [Pre-Flight Check]: Checking for LaunchSiteClear: PASS! [LOG 17:50:07.561] [Pre-Flight Check]: All Checks Complete. Go for Launch! [LOG 17:50:07.575] Launching vessel from Runway. Craft file: /Applications/KSP_osx/KSP.app/Contents/../../saves/test/Ships/SPH/Auto-Saved Ship.craft [LOG 17:50:07.575] [MessageSystem] Save Messages [LOG 17:50:07.579] Game State Saved to saves/test/persistent [LOG 17:50:07.580] UIMasterController: HideUI [WRN 17:50:08.040] [HighLogic]: =========================== Scene Change : From EDITOR to FLIGHT (Async) ===================== [LOG 17:50:08.336] [UIApp] OnDestroy: KSPedia [LOG 17:50:08.343] [UIApp] OnDestroy: EngineersReport [LOG 17:50:08.530] UIMasterController: HideUI [WRN 17:50:09.416] The referenced script on this Behaviour is missing! [WRN 17:50:09.456] The referenced script on this Behaviour is missing! [WRN 17:50:09.461] The referenced script on this Behaviour is missing! [WRN 17:50:09.461] The referenced script on this Behaviour is missing! [LOG 17:50:09.996] UICanvasPrefabSpawner FlightUI spawning Flight [WRN 17:50:10.023] [UiApp] Awake: ResourceDisplay [LOG 17:50:10.154] AddonLoader: Instantiating addon 'AeroGUI' from assembly 'KSP' [LOG 17:50:10.160] [PlanetariumCamera]: Focus: Kerbin [LOG 17:50:10.161] UIMasterController: HideUI [LOG 17:50:10.228] ------------------- initializing flight mode... ------------------ [LOG 17:50:10.231] [MessageSystem] Save Messages [LOG 17:50:10.235] Loading ship from file: /Applications/KSP_osx/KSP.app/Contents/../../saves/test/Ships/SPH/Auto-Saved Ship.craft [WRN 17:50:10.260] [Part]: PartModule TransferDialogSpawner at mk2Cockpit.Standard, index 9: index exceeds module count as defined in cfg. Looking for TransferDialogSpawner in other indices... [WRN 17:50:10.261] ...no TransferDialogSpawner module found on part definition. Skipping... [WRN 17:50:10.269] [Part]: PartModule TransferDialogSpawner at M2X.Endcap, index 1: index exceeds module count as defined in cfg. Looking for TransferDialogSpawner in other indices... [WRN 17:50:10.269] ...no TransferDialogSpawner module found on part definition. Skipping... [LOG 17:50:10.270] hopper loaded! [LOG 17:50:10.711] putting ship to ground: 9.250014 [LOG 17:50:10.716] [hopper]: Ready to Launch - waiting to start physics... [LOG 17:50:10.723] Crewmember Jebediah Kerman assigned to Mk2 Cockpit, seat # 0 (crew seat index: 0) [LOG 17:50:10.723] Crewmember Bill Kerman assigned to Mk2 Cockpit, seat # 1 (crew seat index: 1) [LOG 17:50:10.724] [FLIGHT GLOBALS]: Switching To Vessel hopper ---------------------- [LOG 17:50:10.725] setting new dominant body: Kerbin FlightGlobals.mainBody: Kerbin [LOG 17:50:10.727] Reference Frame: Rotating [WRN 17:50:10.813] [Part]: M2X.Endcap holds crew but has no interior model defined! [LOG 17:50:10.815] Vessel assembly complete! [LOG 17:50:10.816] all systems started [LOG 17:50:10.890] [FlightIntegrator]: Reloaded drag cube for zeroed cube root part mk2Cockpit.Standard on vessel hopper [LOG 17:50:11.244] Loading Depletion Nodes [LOG 17:50:11.244] DepNodeCount: 0 [LOG 17:50:11.244] Loading Biome Nodes [LOG 17:50:11.244] BiomeNodeCount: 0 [LOG 17:50:11.244] Loading Planet Nodes [LOG 17:50:11.244] PlanetNodeCount: 0 [LOG 17:50:11.247] [ScenarioDestructibles]: Loading... 0 objects registered [WRN 17:50:11.249] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:50:11.249] [UiApp] Awake: CurrencyWidgetsApp [WRN 17:50:11.249] [UiApp] Awake: ResourceDisplay [WRN 17:50:11.249] [UiApp] Awake: KSPedia [LOG 17:50:11.249] [ApplicationLauncher] OnSceneLoadedGUIReady: scene FLIGHT ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False [LOG 17:50:11.249] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown [WRN 17:50:11.251] [KnowledgeBase] OnAppLauncherReady 4658 [LOG 17:50:11.321] [AsteroidSpawner]: No new objects this time. (Odds are 1:2) [LOG 17:50:11.323] [UIApp] OnDestroy: ContractsApp [LOG 17:50:11.346] [FlightIntegrator]: Vessel hopper has been unloaded 1.79769313486232E+308, applying analytic temperature 314.074060108783 [LOG 17:50:11.348] [Progress Node Reached]: RecordsAltitude [LOG 17:50:11.349] [Progress Node Reached]: RecordsSpeed [LOG 17:50:11.350] [Progress Node Reached]: RecordsDistance [WRN 17:50:11.355] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:50:11.355] [MessageSystem] Reposition 0.02 4659 [LOG 17:50:11.432] [PlanetariumCamera]: Focus: hopper [LOG 17:50:11.500] [UIApp] Adding ResourceDisplay to Application Launcher [LOG 17:50:11.501] [UIApp] Adding ResourceDisplay to Application Launcher [WRN 17:50:11.591] [ResourceDisplay] OnAppStarted(): id: -383514 [LOG 17:50:11.592] [GenericAppFrame] Reposition 0.18 4663 [WRN 17:50:11.592] [ResourceDisplay] OnAppStarted(): id: 138606 [LOG 17:50:11.592] ResourceDisplay already exist, destroying this instance [LOG 17:50:11.592] [UIApp] OnDestroy: ResourceDisplay [LOG 17:50:11.696] CURRENCY WIDGET False False False [LOG 17:50:11.698] [UIApp] OnDestroy: CurrencyWidgetsApp [LOG 17:50:11.751] [UIApp] Adding KSPedia to Application Launcher [LOG 17:50:12.217] UIMasterController: ShowUI [LOG 17:50:12.220] Flight State Captured [LOG 17:50:12.220] Saving Achievements Tree... [LOG 17:50:12.221] [MessageSystem] Save Messages [LOG 17:50:12.226] Game State Saved as persistent [LOG 17:50:16.245] Unpacking hopper [WRN 17:50:25.839] [Part]: M2X.Endcap holds crew but has no interior model defined! [LOG 17:50:35.865] [AsteroidSpawner]: New object found near Kerbin: Ast. DGF-361! [LOG 17:50:40.000] UIMasterController: ShowUI [LOG 17:50:40.000] Game Paused! [LOG 17:50:43.803] [FlightDriver]: Flight State Reverted to Prelaunch. [LOG 17:50:43.805] Game State Saved as persistent [LOG 17:50:43.806] UIMasterController: HideUI [WRN 17:50:43.812] [HighLogic]: =========================== Scene Change : From FLIGHT to EDITOR ===================== [LOG 17:50:44.759] KbApp.OnDestroy NullName [LOG 17:50:44.763] KbApp.OnDestroy Unowned Info [LOG 17:50:44.764] [UIApp] OnDestroy: KSPedia [LOG 17:50:44.765] KbApp.OnDestroy Planet Resources [LOG 17:50:44.765] KbApp.OnDestroy Vessel Info [LOG 17:50:44.766] [UIApp] OnDestroy: ResourceDisplay [LOG 17:50:44.766] KbApp.OnDestroy Planet Info [LOG 17:50:44.766] KbApp.OnDestroy Vessel Crew [LOG 17:50:44.766] KbApp.OnDestroy Planet Parameters [LOG 17:50:44.767] [PlanetariumCamera]: Focus: Kerbin [LOG 17:50:44.812] UICanvasPrefabSpawner SceneLogic spawning Editor [LOG 17:50:44.868] No Input Locks in effect right now [WRN 17:50:44.871] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:50:45.011] AddonLoader: Instantiating addon 'HotkeyManager' from assembly 'Scale' [LOG 17:50:45.012] AddonLoader: Instantiating addon 'TechUpdater' from assembly 'Scale' [LOG 17:50:45.015] UIMasterController: ShowUI [WRN 17:50:45.317] The referenced script on this Behaviour is missing! [WRN 17:50:45.318] The referenced script on this Behaviour is missing! [WRN 17:50:45.318] The referenced script on this Behaviour is missing! [WRN 17:50:45.318] The referenced script on this Behaviour is missing! [WRN 17:50:45.318] The referenced script on this Behaviour is missing! [LOG 17:50:45.907] ------------------- initializing editor mode... ------------------ [LOG 17:50:45.907] editor started [LOG 17:50:45.916] IconLoader awake [LOG 17:50:46.043] hopper loaded! [WRN 17:50:46.044] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:50:46.073] Getting value. Currently: False [LOG 17:50:46.073] New value: False [LOG 17:50:46.074] Getting value. Currently: False [LOG 17:50:46.074] New value: False [LOG 17:50:46.277] Loading Depletion Nodes [LOG 17:50:46.277] DepNodeCount: 0 [LOG 17:50:46.277] Loading Biome Nodes [LOG 17:50:46.277] BiomeNodeCount: 0 [LOG 17:50:46.277] Loading Planet Nodes [LOG 17:50:46.278] PlanetNodeCount: 0 [LOG 17:50:46.280] [ScenarioDestructibles]: Loading... 0 objects registered [WRN 17:50:46.281] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:50:46.281] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:50:46.281] [UiApp] Awake: EngineersReport [WRN 17:50:46.281] [UiApp] Awake: KSPedia [LOG 17:50:46.281] [ApplicationLauncher] OnSceneLoadedGUIReady: scene EDITOR ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True [LOG 17:50:46.281] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft [LOG 17:50:46.288] [UIApp] OnDestroy: ContractsApp [LOG 17:50:46.368] [MessageSystem] Reposition 0.02 5144 [LOG 17:50:46.946] [UIApp] Adding EngineersReport to Application Launcher [LOG 17:50:47.072] [UIApp] Adding KSPedia to Application Launcher [LOG 17:50:47.074] [GenericAppFrame] Reposition 0.252143 5150 [LOG 17:50:48.060] [MessageSystem] Save Messages [LOG 17:50:48.062] Game State Saved to saves/test/persistent [LOG 17:50:48.063] UIMasterController: HideUI [WRN 17:50:48.393] [HighLogic]: =========================== Scene Change : From EDITOR to SPACECENTER ===================== [WRN 17:50:48.414] The referenced script on this Behaviour is missing! [WRN 17:50:48.414] The referenced script on this Behaviour is missing! [WRN 17:50:48.414] The referenced script on this Behaviour is missing! [WRN 17:50:48.414] The referenced script on this Behaviour is missing! [LOG 17:50:48.972] [UIApp] OnDestroy: KSPedia [LOG 17:50:48.972] [UIApp] OnDestroy: EngineersReport [LOG 17:50:49.639] AddonLoader: Instantiating addon 'CustomConfigsManager' from assembly 'ModuleManager' [LOG 17:50:49.641] [PlanetariumCamera]: Focus: Kerbin [LOG 17:50:49.643] UIMasterController: ShowUI [LOG 17:50:50.020] Loading Depletion Nodes [LOG 17:50:50.021] DepNodeCount: 0 [LOG 17:50:50.021] Loading Biome Nodes [LOG 17:50:50.021] BiomeNodeCount: 0 [LOG 17:50:50.021] Loading Planet Nodes [LOG 17:50:50.021] PlanetNodeCount: 0 [LOG 17:50:50.026] [ScenarioDestructibles]: Loading... 0 objects registered [WRN 17:50:50.027] HighlightingSystem : Edge Highlighting requires AA to work! [WRN 17:50:50.027] [UiApp] Awake: KSPedia [LOG 17:50:50.027] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop False [LOG 17:50:50.067] [AsteroidSpawner]: No new objects this time. (Odds are 1:2) [LOG 17:50:50.068] [UIApp] OnDestroy: ContractsApp [WRN 17:50:50.378] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:50:50.378] [MessageSystem] Reposition 0.02 5161 [LOG 17:50:51.005] [UIApp] Adding KSPedia to Application Launcher [LOG 17:50:55.959] UIMasterController: ShowUI [LOG 17:50:55.959] Game Paused! [LOG 17:51:06.939] Flight State Captured [LOG 17:51:06.940] Saving Achievements Tree... [LOG 17:51:06.940] [MessageSystem] Save Messages [LOG 17:51:06.942] Game State Saved to saves/test/persistent [LOG 17:51:06.944] UIMasterController: HideUI [WRN 17:51:06.946] [HighLogic]: =========================== Scene Change : From SPACECENTER to MAINMENU (Async) ===================== [LOG 17:51:06.946] UIMasterController: ShowUI [LOG 17:51:06.946] Game Unpaused! [LOG 17:51:07.799] [UIApp] OnDestroy: KSPedia [LOG 17:51:07.980] UIMasterController: HideUI [LOG 17:51:09.853] AddonLoader: Instantiating addon 'ScaleExponentsLoader' from assembly 'Scale' [LOG 17:51:09.855] UIMasterController: ShowUI [WRN 17:51:10.170] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:51:10.170] [ApplicationLauncher] OnSceneLoadedGUIReady: scene MAINMENU ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False [LOG 17:51:10.170] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown [LOG 17:51:10.172] [ApplicationLauncher] SetHidden: [WRN 17:51:10.177] HighlightingSystem : Edge Highlighting requires AA to work! [LOG 17:51:10.178] [MessageSystem] Reposition 0.02 5350 [LOG 17:51:17.183] [UIApp] OnDestroy: MessageSystem Quote Link to comment Share on other sites More sharing options...
SuicidalInsanity Posted September 1, 2016 Author Share Posted September 1, 2016 @Knotty: Sorry for the late reply, work's been hectic the last few weeks. I've had a chance to look at the endcap, and you're right; it'll allow entry, but not exiting. I'll have to fix that. Given the way my schedule is at the moment, I should be able to get a general fixes update for M2X up by next Wednesday of so to correct the endcap issue as well as a few others I've spotted here and there. Quote Link to comment Share on other sites More sharing options...
Knotty Posted September 1, 2016 Share Posted September 1, 2016 (edited) No worries, and no rush! just trying to help! Thanks Edited September 1, 2016 by Knotty Quote Link to comment Share on other sites More sharing options...
SuicidalInsanity Posted September 11, 2016 Author Share Posted September 11, 2016 (edited) M2X Update 1.7.13 is now up, grab it from SpaceDock or Github; for some reason SpaceDock won't let me update at the moment so a SpaceDock link will happen later Changelog: Spoiler -Fixes Mk2 Endcap hatch obstructed issue when trying to EVA -Model Rework: Hyperblast Scramjet -Fixes CB-C, HS-X, and SC-TD Cockpit overlay masks when RPM is installed -Banshee lift fans now have MM patch for alternate airbreathing mode -Model Retexture; L-Hub -FX Rework: Ramjet FX -Removed Shrouded Landing Leg Of note is the removal of the SPL HD landing leg - despite my best efforts, it is still broken, so I didn't see the point of including it in this release, but it'll be re-added once its issue is finally resolved. Edited September 17, 2016 by SuicidalInsanity updating links Quote Link to comment Share on other sites More sharing options...
CatastrophicFailure Posted September 11, 2016 Share Posted September 11, 2016 19 minutes ago, SuicidalInsanity said: Of note is the removal of the SPL HD landing leg - despite my best efforts, it is still broken, so I didn't see the point of including it in this release, but it'll be re-added once its issue is finally resolved. Drat, that's the one part I really need. What specifically is broken about it? Quote Link to comment Share on other sites More sharing options...
SuicidalInsanity Posted September 11, 2016 Author Share Posted September 11, 2016 Something in the landing leg/wheel code changed between 1.12 and 1.1.3 that broke the leg. In 1.1.2, it worked as it was supposed to, in 1.1.3 the leg suddenly no longer has working suspension; in the tests I've done the leg, upon ground contact, depending on leg orientation, either A) immediately collapses to the legs maximum compression point, and then continues to compress even further, with the foot clipping through the leg, rendering it useless as a leg, or B) immediately extends to maximum extension, flinging the craft upwards like the world's most violent pogo stick. Quote Link to comment Share on other sites More sharing options...
umaxtu Posted September 13, 2016 Share Posted September 13, 2016 Is it just me or do alot of parts require oxidizer that shouldn't (in my mind) need it? Examples: The lift fan, the Sledgehammer rocket in air breathing mode. Quote Link to comment Share on other sites More sharing options...
Knotty Posted September 13, 2016 Share Posted September 13, 2016 I'd leave the leg in, sounds like fun! Quote Link to comment Share on other sites More sharing options...
SuicidalInsanity Posted September 15, 2016 Author Share Posted September 15, 2016 @umaxtu: The Sledgehammer is an Air-Augmented Rocket Engine, all the airbreathing mode does is turn the engine from a rocket to a rocket powered ramjet for improved thrust and ISP; it's still burning LF/O either way. The lift fans use LF/O because they were intended to be able to function in any atmosphere, not just Kerbin/Laythe, which means basically a choice between either Ec (which means a massive amount of batteries, RTGs, or OX-STAT static solar panels) or LF/O (convenient tankage options that the airframe probably incorporates as part of the overall design anyway), so I went with LF/O. The latest update also adds an airbreathing option. @knotty: I'd rather not, for every person who wants to fool around with it, there are probably 3-4 people who just want to have a leg for a Base or whatever and don't want their craft flipping out and exploding because the leg is possessed by the Kraken. If you really want to have the leg, just grab it from M2X 1.7.12 at Mk2Expansion/Parts/Utility/LandingLeg. Quote Link to comment Share on other sites More sharing options...
Benji13 Posted September 15, 2016 Share Posted September 15, 2016 Does this pack include a mk2 xenon tank? If so that would be awesome. If not, does anyone know where I could find one? Quote Link to comment Share on other sites More sharing options...
Stone Blue Posted September 15, 2016 Share Posted September 15, 2016 10 hours ago, Benji13 said: Does this pack include a mk2 xenon tank? If so that would be awesome. If not, does anyone know where I could find one? Should be easy enough to just change the part "name = " , "title = ", and resource in one of the mk2 tanks' config files, to make a "new" xenon tank Quote Link to comment Share on other sites More sharing options...
SuicidalInsanity Posted September 15, 2016 Author Share Posted September 15, 2016 @Benji13: The Service tank has a Xenon tank option and the Service Bay has a few different configurations that include Xenon tanks - use the right click menu in the SPH to cycle through them. Quote Link to comment Share on other sites More sharing options...
StahnAileron Posted September 25, 2016 Share Posted September 25, 2016 @SuicidalInsanity You think there's a market for a MK2 nosecone cargo bay? Or a Mk2-shaped aero-fairing? Just wondering. Now that 1.2 is in testing, I've found myself playing KSP a little once more. Got reminded that I used to want those for inline rocket launched MK2 spaceplanes. (I've been getting into STS-style stacks as well.) Back in 1.0.5, I would build small RemoteTech comsats. I sometimes wished I could just place them in a nose cone fairing/cargo bay rather than a mid-body cargo bay. Actually, have you considered doing a MK2 Wings expansion for the SPP-derived wing parts? Like leading edges that look like leading edges? (And function like leading edge flaps of some sort?) Maybe some wingtip "caps"? Well, just some thoughts if you're ever in the mood for new parts. Quote Link to comment Share on other sites More sharing options...
SuicidalInsanity Posted September 25, 2016 Author Share Posted September 25, 2016 (edited) A mk2 nosecone cargobay is easy enough, and I can see a number of applications. Don't know about the mk2 fairings, does the stock fairing module even permit non-circular fairings? Edit: After some thought, I have some ideas I'll have to try, but I'm fairly certain I could hack together a pseudo-procedural mk2 fairing that provides more or less equivalent functionality to the stock ones. A wings expansion for things like slats and winglets isn't something I've considered so far, mainly because I'm not sure if the stock aero model would make them worth it. Edited September 25, 2016 by SuicidalInsanity Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.