-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersistent.sfs
8874 lines (8874 loc) · 145 KB
/
persistent.sfs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
GAME
{
version = 1.3.0
Title = JointMission2017 (SANDBOX)
Description = No description available.
linkURL =
linkCaption =
Mode = SANDBOX
Status = 1
Seed = 731588993
scene = 5
editor = None
flag = Squad/Flags/stripes
launchID = 6
modded = False
envInfo = - Environment Info - Unix 7FFFFFFFFFFFFFFF Args: KSP -
versionFull = 1.3.0.1804 (OSXPlayer)
versionCreated = 1.3.0.1804 (OSXPlayer)
PARAMETERS
{
preset = Normal
FLIGHT
{
CanQuickSave = True
CanQuickLoad = True
CanAutoSave = True
CanUseMap = True
CanSwitchVesselsNear = True
CanSwitchVesselsFar = True
CanTimeWarpHigh = True
CanTimeWarpLow = True
CanEVA = True
CanIVA = True
CanBoard = True
CanRestart = True
CanLeaveToEditor = True
CanLeaveToTrackingStation = True
CanLeaveToSpaceCenter = True
CanLeaveToMainMenu = True
}
EDITOR
{
CanSave = True
CanLoad = True
CanStartNew = True
CanLaunch = True
CanLeaveToSpaceCenter = True
CanLeaveToMainMenu = False
startUpMode = 0
craftFileToLoad =
}
TRACKINGSTATION
{
CanFlyVessel = True
CanAbortVessel = True
CanLeaveToSpaceCenter = True
CanLeaveToMainMenu = False
}
SPACECENTER
{
CanGoInVAB = True
CanGoInSPH = True
CanGoInTrackingStation = True
CanLaunchAtPad = True
CanLaunchAtRunway = True
CanGoToAdmin = True
CanGoToAstronautC = True
CanGoToMissionControl = True
CanGoToRnD = True
CanSelectFlag = True
CanLeaveToMainMenu = True
}
DIFFICULTY
{
AutoHireCrews = False
MissingCrewsRespawn = True
RespawnTimer = 7200
BypassEntryPurchaseAfterResearch = True
AllowStockVessels = True
IndestructibleFacilities = False
ResourceAbundance = 1
ReentryHeatScale = 1
EnableCommNet = True
}
CAREER
{
TechTreeUrl = GameData/Squad/Resources/TechTree.cfg
StartingFunds = 25000
StartingScience = 0
StartingReputation = 0
FundsGainMultiplier = 1
RepGainMultiplier = 1
ScienceGainMultiplier = 1
FundsLossMultiplier = 1
RepLossMultiplier = 1
RepLossDeclined = 1
}
CommNetParams
{
requireSignalForControl = False
plasmaBlackout = False
rangeModifier = 1
DSNModifier = 1
occlusionMultiplierVac = 0.9
occlusionMultiplierAtm = 0.75
enableGroundStations = True
}
AdvancedParams
{
EnableKerbalExperience = False
ImmediateLevelUp = False
AllowNegativeCurrency = False
PressurePartLimits = False
GPartLimits = False
GKerbalLimits = False
KerbalGToleranceMult = 1
ResourceTransferObeyCrossfeed = False
ActionGroupsAlways = False
BuildingImpactDamageMult = 0.05
PartUpgradesInSandbox = False
PartUpgradesInCareer = True
}
}
SCENARIO
{
name = CommNetScenario
scene = 7, 8, 5, 6
}
SCENARIO
{
name = PartUpgradeManager
scene = 6, 5, 7
UPGRADES
{
Unlocks
{
}
Enableds
{
}
}
}
SCENARIO
{
name = ResourceScenario
scene = 7, 8, 5, 6
RESOURCE_SETTINGS
{
GameSeed = 278760477
MaxDeltaTime = 21600
}
}
SCENARIO
{
name = ProgressTracking
scene = 7, 8, 5
Progress
{
FirstLaunch
{
completed = 78.840000000001453
}
FirstCrewToSurvive
{
completed = 11987.29707694328
crew
{
crews = Jebediah Kerman
}
}
RecordsAltitude
{
completed = 213.44000000003538
record = 70000
}
RecordsDepth
{
reached = 11976.897076943053
record = 0.36677307449281216
}
RecordsSpeed
{
reached = 18112.474392330219
record = 2353.3847463326888
}
RecordsDistance
{
completed = 248.22725708012229
record = 100000
}
ReachedSpace
{
completed = 213.46000000003539
vessel
{
name = HAR1 - Agena
flag = Squad/Flags/stripes
}
}
Kerbin
{
reached = 614.80939758302827
Orbit
{
completed = 614.80939758302827
vessel
{
name = HAR1 - Agena
flag = Squad/Flags/stripes
}
}
Landing
{
completedManned = 14251.886476393354
vessel
{
name = MS2 - Soyuz
flag = Squad/Flags/stripes
}
crew
{
crews = Jebediah Kerman
}
}
Splashdown
{
completedManned = 11976.057076943034
}
Rendezvous
{
completedUnmanned = 8976.6147233847078
}
Docking
{
completed = 9993.8747234069124
}
StationConstruction
{
completed = 9993.8747234069124
station
{
name = HAR1 - Gemini
flag = Squad/Flags/stripes
}
}
ReturnFromOrbit
{
completedManned = 11976.057076943034
vessel
{
name = HAR1 - Gemini
flag = Squad/Flags/stripes
}
crew
{
crews = Jebediah Kerman
}
}
}
}
}
SCENARIO
{
name = VesselRecovery
scene = 5, 7, 8, 6
}
SCENARIO
{
name = ScenarioAchievements
scene = 7, 8, 5, 6
}
SCENARIO
{
name = ScenarioCustomWaypoints
scene = 7, 8
}
SCENARIO
{
name = ScenarioDestructibles
scene = 5, 7, 6, 8
SpaceCenter/VehicleAssemblyBuilding/Facility/ksp_pad_cylTank
{
intact = True
}
SpaceCenter/VehicleAssemblyBuilding/Facility/Tank
{
intact = True
}
SpaceCenter/VehicleAssemblyBuilding/Facility/mainBuilding
{
intact = True
}
SpaceCenter/VehicleAssemblyBuilding/Facility/PodMemorial
{
intact = True
}
SpaceCenter/TrackingStation/Facility/dish_array/dish_south
{
intact = True
}
SpaceCenter/TrackingStation/Facility/dish_array/dish_north
{
intact = True
}
SpaceCenter/TrackingStation/Facility/dish_array/dish_east
{
intact = True
}
SpaceCenter/TrackingStation/Facility/MainBuilding
{
intact = True
}
SpaceCenter/SpaceplaneHangar/Facility/Tank
{
intact = True
}
SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_cylTank
{
intact = True
}
SpaceCenter/SpaceplaneHangar/Facility/ksp_pad_waterTower
{
intact = True
}
SpaceCenter/SpaceplaneHangar/Facility/mainBuilding
{
intact = True
}
SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SE
{
intact = True
}
SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NE
{
intact = True
}
SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_NW
{
intact = True
}
SpaceCenter/Runway/Facility/model_runway_new_v43/runway_light_SW
{
intact = True
}
SpaceCenter/Runway/Facility/End09
{
intact = True
}
SpaceCenter/Runway/Facility/End27
{
intact = True
}
SpaceCenter/Runway/Facility/Section1
{
intact = True
}
SpaceCenter/Runway/Facility/Section2
{
intact = True
}
SpaceCenter/Runway/Facility/Section3
{
intact = True
}
SpaceCenter/Runway/Facility/Section4
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/ksp_pad_cylTank
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/SmallLab
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/CentralBuilding
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/MainBuilding
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/CornerLab
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/WindTunnel
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/Observatory
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/SideLab
{
intact = True
}
SpaceCenter/MissionControl/Facility/building
{
intact = True
}
SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_cylTank
{
intact = True
}
SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_launchPad
{
intact = True
}
SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_sphereTank
{
intact = True
}
SpaceCenter/LaunchPad/Facility/LaunchPadMedium/ksp_pad_waterTower
{
intact = True
}
SpaceCenter/LaunchPad/Facility/LaunchPadMedium/KSCFlagPoleLaunchPad
{
intact = True
}
SpaceCenter/FlagPole/Facility
{
intact = True
}
SpaceCenter/AstronautComplex/Facility/building
{
intact = True
}
SpaceCenter/Administration/Facility/mainBuilding
{
intact = True
}
SpaceCenter/LaunchPad/Facility/Flag
{
intact = True
}
SpaceCenter/TrackingStation/Facility/building
{
intact = True
}
SpaceCenter/TrackingStation/Facility/OuterDish
{
intact = True
}
SpaceCenter/Administration/Facility/Building
{
intact = True
}
SpaceCenter/AstronautComplex/Facility/mainBuilding
{
intact = True
}
SpaceCenter/MissionControl/Facility/mainBuilding
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/mainBuilding
{
intact = True
}
SpaceCenter/ResearchAndDevelopment/Facility/ForeverAlone
{
intact = True
}
SpaceCenter/SpaceplaneHangar/Facility/Building
{
intact = True
}
SpaceCenter/VehicleAssemblyBuilding/Facility/VAB2
{
intact = True
}
}
SCENARIO
{
name = ScenarioDiscoverableObjects
scene = 7, 8, 5
lastSeed = 1966549185
sizeCurve
{
key = 0 0 1.5 1.5
key = 0.3 0.45 0.875 0.875
key = 0.7 0.55 0.875 0.875
key = 1 1 1.5 1.5
}
}
SCENARIO
{
name = SentinelScenario
scene = 7, 8, 5
NextSpawnTime = 26318.527385029694
}
FLIGHTSTATE
{
version = 1.3.0
UT = 19678.268305839196
activeVessel = 9
mapViewFiltering = 7167
commNetUIModeTracking = Network
commNetUIModeFlight = Path
VESSEL
{
pid = 20d7b7ae42a34c75b0ab63fe7e8f094b
name = Ast. HSJ-227
type = SpaceObject
sit = ORBITING
landed = False
landedAt =
displaylandedAt =
splashed = False
met = 0.02
lct = 0.02
lastUT = -1
root = 0
lat = -2.8344804761546811
lon = -178.91868442051728
alt = 14594728252.438618
hgt = -1
nrm = 0,1,0
rot = -0.298433661,0.402898014,-0.817398846,0.283672005
CoM = 0,0,0
stg = 0
prst = False
ref = 0
ctrl = False
ORBIT
{
SMA = 15240607809.803398
ECC = 0.10916050071886135
INC = 2.8722366742304275
LPE = 2.1172906173452457
LAN = 261.7733382309433
MNA = -0.055479683359263003
EPH = 2043585.7560839844
REF = 0
}
PART
{
name = PotatoRoid
cid = 0
uid = 559298752
mid = 559298752
launchID = 0
parent = 0
position = 0,0,0
rotation = 0,0,0,1
mirror = 1,1,1
symMethod = Radial
istg = 0
resPri = 0
dstg = 0
sqor = 0
sepI = 0
sidx = 0
attm = 0
srfN = None, -1
mass = 150
shielded = False
temp = -1
tempExt = 0
tempExtUnexp = 0
expt = 0.100000001
state = 0
attached = True
autostrutMode = Off
rigidAttachment = False
flag =
rTrf =
modCost = 0
}
ACTIONGROUPS
{
}
DISCOVERY
{
state = 1
lastObservedTime = 0.02
lifetime = 586354.71038818359
refTime = 1728000
size = 4
}
FLIGHTPLAN
{
}
CTRLSTATE
{
}
VESSELMODULES
{
FlightIntegrator
{
}
}
}
VESSEL
{
pid = 5d33ea5acc594e68958275a0fc2e83e4
name = Ast. BAI-075
type = SpaceObject
sit = ORBITING
landed = False
landedAt =
displaylandedAt =
splashed = False
met = 111.45999999999496
lct = 111.45999999999496
lastUT = -1
root = 0
lat = -0.18275223658934001
lon = -175.76985142970199
alt = 14280290140.345795
hgt = -1
nrm = 0,1,0
rot = -0.324289739,0.829664409,0.450747311,0.0576196052
CoM = 0,0,0
stg = 0
prst = False
ref = 0
ctrl = False
ORBIT
{
SMA = 14125410062.950808
ECC = 0.039108836740096374
INC = 0.67951245831779028
LPE = 335.98316853958289
LAN = 348.72216350059733
MNA = 0.4241254627151454
EPH = 4377555.3442773437
REF = 0
}
PART
{
name = PotatoRoid
cid = 0
uid = 52013125
mid = 52013125
launchID = 0
parent = 0
position = 0,0,0
rotation = 0,0,0,1
mirror = 1,1,1
symMethod = Radial
istg = 0
resPri = 0
dstg = 0
sqor = 0
sepI = 0
sidx = 0
attm = 0
srfN = None, -1
mass = 150
shielded = False
temp = -1
tempExt = 0
tempExtUnexp = 0
expt = 0.100000001
state = 0
attached = True
autostrutMode = Off
rigidAttachment = False
flag =
rTrf =
modCost = 0
}
ACTIONGROUPS
{
}
DISCOVERY
{
state = 1
lastObservedTime = 111.45999999999496
lifetime = 802955.3466796875
refTime = 1728000
size = 2
}
FLIGHTPLAN
{
}
CTRLSTATE
{
}
VESSELMODULES
{
FlightIntegrator
{
}
}
}
VESSEL
{
pid = 20365224c6b2462ba99b0e85eb6a2620
name = Ast. INS-200
type = SpaceObject
sit = ORBITING
landed = False
landedAt =
displaylandedAt =
splashed = False
met = 171.46000000001391
lct = 171.46000000001391
lastUT = -1
root = 0
lat = 1.751107919483774
lon = -179.7335814948444
alt = 14046527073.074167
hgt = -1
nrm = 0,1,0
rot = -0.572860301,0.128306717,0.651548922,0.480471134
CoM = 0,0,0
stg = 0
prst = False
ref = 0
ctrl = False
ORBIT
{
SMA = 14523828121.764509
ECC = 0.062143306591073574
INC = 1.7517704713225095
LPE = 171.2343490412236
LAN = 88.832932705500184
MNA = 0.089174972832597274
EPH = 2195974.8047265625
REF = 0
}
PART
{
name = PotatoRoid
cid = 0
uid = 456393479
mid = 456393479
launchID = 0
parent = 0
position = 0,0,0
rotation = 0,0,0,1
mirror = 1,1,1
symMethod = Radial
istg = 0
resPri = 0
dstg = 0
sqor = 0
sepI = 0
sidx = 0
attm = 0
srfN = None, -1
mass = 150
shielded = False
temp = -1
tempExt = 0
tempExtUnexp = 0
expt = 0.100000001
state = 0
attached = True
autostrutMode = Off
rigidAttachment = False
flag =
rTrf =
modCost = 0
}
ACTIONGROUPS
{
}
DISCOVERY
{
state = 1
lastObservedTime = 171.46000000001391
lifetime = 554240.79437255859
refTime = 1728000
size = 2
}
FLIGHTPLAN
{
}
CTRLSTATE
{
}
VESSELMODULES
{
FlightIntegrator
{
}
}
}
VESSEL
{
pid = 35d756ce112d41c1a93718b4ef88e2e8
name = Ast. ZYH-641
type = SpaceObject
sit = ORBITING
landed = False
landedAt =
displaylandedAt =
splashed = False
met = 296.65220825199725
lct = 296.65220825199725
lastUT = -1
root = 0
lat = -0.85730742450834863
lon = 179.48273973044806
alt = 14236802223.18281
hgt = -1
nrm = 0,1,0
rot = 0.526393235,0.556340337,-0.47916615,0.428713739
CoM = 0,0,0
stg = 0
prst = False
ref = 0
ctrl = False
ORBIT
{
SMA = 15159450123.822624
ECC = 0.10284402138316837
INC = 0.85774750881067907
LPE = 338.54319846140459
LAN = 271.56554475096232
MNA = 0.031696514238124668
EPH = 1847383.5601672365
REF = 0
}
PART
{
name = PotatoRoid
cid = 0
uid = 1618715916
mid = 1618715916
launchID = 0
parent = 0
position = 0,0,0
rotation = 0,0,0,1
mirror = 1,1,1
symMethod = Radial
istg = 0
resPri = 0
dstg = 0
sqor = 0
sepI = 0
sidx = 0
attm = 0
srfN = None, -1
mass = 150
shielded = False
temp = -1
tempExt = 0
tempExtUnexp = 0
expt = 0.100000001
state = 0
attached = True
autostrutMode = Off
rigidAttachment = False
flag =
rTrf =
modCost = 0
}
ACTIONGROUPS
{
}
DISCOVERY
{
state = 1
lastObservedTime = 296.65220825199725
lifetime = 1063481.9458007813
refTime = 1728000
size = 2
}
FLIGHTPLAN
{
}
CTRLSTATE
{
}
VESSELMODULES
{
FlightIntegrator
{
}
}
}
VESSEL
{
pid = e19dc400c1084e28a240e973dfb5a513
name = Ast. MYR-179
type = SpaceObject
sit = ORBITING
landed = False
landedAt =
displaylandedAt =
splashed = False
met = 311.65220825199725
lct = 311.65220825199725
lastUT = -1
root = 0
lat = 0.028747569305518632
lon = 179.35321277613392
alt = 13373733300.341105
hgt = -1
nrm = 0,1,0
rot = -0.724978447,-0.55927515,0.0752006248,0.394920737
CoM = 0,0,0
stg = 0
prst = False
ref = 0
ctrl = False
ORBIT
{
SMA = 41130553.299743734
ECC = 0.99043259242826842
INC = 72.937801904746848
LPE = 185.44494136100377
LAN = 114.15216453116466
MNA = 2.9333553000852892
EPH = 312.65220825199725
REF = 1
}
PART
{
name = PotatoRoid
cid = 0
uid = 570422125
mid = 570422125
launchID = 0
parent = 0
position = 0,0,0
rotation = 0,0,0,1
mirror = 1,1,1
symMethod = Radial
istg = 0
resPri = 0
dstg = 0
sqor = 0
sepI = 0
sidx = 0
attm = 0
srfN = None, -1
mass = 150
shielded = False
temp = -1
tempExt = 0
tempExtUnexp = 0
expt = 0.100000001
state = 0
attached = True
autostrutMode = Off
rigidAttachment = False
flag =
rTrf =
modCost = 0
}
ACTIONGROUPS
{
}
DISCOVERY
{
state = 1
lastObservedTime = 311.65220825199725
lifetime = 378097.31140136719
refTime = 1728000
size = 2
}
FLIGHTPLAN
{
}
CTRLSTATE
{
}
VESSELMODULES
{
FlightIntegrator
{
}
}
}
VESSEL
{
pid = af6150ef911a44749558681cbcf9b018
name = Ast. TAB-187
type = SpaceObject
sit = ORBITING
landed = False
landedAt =
displaylandedAt =
splashed = False
met = 503.64693298342689
lct = 503.64693298342689
lastUT = -1
root = 0
lat = 0.26966809400651093
lon = 178.64966791858279
alt = 13319728696.736464
hgt = -1
nrm = 0,1,0
rot = 0.200881541,-0.788670897,0.399814993,0.421654969
CoM = 0,0,0
stg = 0
prst = False
ref = 0
ctrl = False
ORBIT