Advertisement
Guest User

Leaked AUSTRALIA BASE Included NASA PILOTS LIST NAME !

a guest
Nov 10th, 2013
7,220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.56 KB | None | 0 0
  1. Leaked AUSTRALIA BASE Included NASA PILOTS LIST NAME !
  2. Cybernatic Spy By : Anon1337
  3. ---------------------
  4. PremanKeyboard |
  5. ---------------------
  6. --
  7. --
  8. -- This database describes the United States space program, prior to the
  9. -- space shuttle.
  10. --
  11. -- If you are concerned that NASA history is not relevant
  12. -- to a Business-oriented student, you are wrong: Forom a business perspective
  13. -- these are just projects, and the astronauts are "just" workers assigned to
  14. -- one or more tasks (ie. missions).
  15. --
  16. -- Prior to the shuttle, NASA ran five different "manned" space projects:
  17. --
  18. -- Project Mercury (1961-63): The six missions of this project carried a
  19. -- single astronaut, the 'pilot'. The first two missions were sub-orbital
  20. -- (missionType = 'SO') and four missions that took the astronauts into
  21. -- Earth orbit (missionType = 'EO').
  22. --
  23. -- Project Gemini (1965-66): Each of the 10 manned missions of this
  24. -- program carried two astronauts, the 'Commander' and 'Pilot', into Earth
  25. -- orbit (missionType = 'EO'). (The first manned mission was number 3, the
  26. -- first two were unmanned tests.)
  27. --
  28. -- Project Apollo (1967-1972): Each of these missions carried three
  29. -- astronauts, the 'Commander', 'Command Module Pilot', and 'Lunar Module
  30. -- Pilot. Most missions used two spacecraft, the 'Command Service Module'
  31. -- (craftType='CSM') and the 'Lunar Module' (craftType='LM'). In most
  32. -- missions (missionType = 'LL'), the Command Module Pilot would stay in
  33. -- lunar orbit in the CSM, while the Commander and Lunar Module Pilot
  34. -- descended in the LM. Apollo 11 was the first mission to land on the
  35. -- moon. Earlier missions were test flights. Apollo 1 did not fly
  36. -- (hence the missionType of this mission has been left null). The crew of
  37. -- Apollo 1 was killed while testing the spacecraft on the launch pad.
  38. -- The first manned Apollo mission was Apollo 7. It tested a CSM in earth
  39. -- orbit (missionType = 'EO') and did not have a lunar module. Apollo 8
  40. -- tested a CSM in lunar orbit (missionType = 'LO') and also did not have
  41. -- a lunar module. Apollo 9 tested a LM in Earth orbit, and Apollo 10
  42. -- tested a LM in lunar orbit. From Apollo 11 onward, all missions landed
  43. -- on the moon (missionType = 'LL'), with one exception, Apollo 13, which
  44. -- aborted its mission on the way to the moon, and looped round the moon
  45. -- without entering orbit (a "Fly By", missionType='LF').
  46. --
  47. -- Project Skylab (1973): Skylab 1 was the launch of the first US space
  48. -- station, in Earth orbit. Each of Skylab missions 2 to 4 took a
  49. -- three-man crew to the Skylab station in an Apollo CSM. The third member
  50. -- of each crew was called the scientist (not Lunar Module Pilot).
  51. --
  52. -- Project Apollo-Soyuz (1975): A three-man crew in an Apollo CSM docked
  53. -- with a Russian Soyuz spacecraft in Earth orbit. The third member of
  54. -- that crew was called the Docking Module Pilot (not Lunar Module Pilot).
  55.  
  56. DROP table NASA_Assigned;
  57. DROP table NASA_SpaceCraft;
  58. DROP table NASA_Mission;
  59. DROP table NASA_Astronaut;
  60. DROP table NASA_Projects;
  61.  
  62. Create table NASA_Projects
  63. (
  64. project char(15),
  65.  
  66. CONSTRAINT NASA_ProjectsPK PRIMARY KEY (project)
  67. );
  68.  
  69. Create table NASA_Astronaut
  70. (
  71. astroNo integer,
  72. astroName char(25),
  73. birth integer,
  74. death integer,
  75.  
  76. CONSTRAINT NASA_AstronautPK PRIMARY KEY (astroNo)
  77. );
  78.  
  79. Create table NASA_Mission
  80. (
  81. projectName char(15),
  82. missionNo integer,
  83. missionType char(2),
  84. launchYear integer,
  85. launchMonth integer,
  86. launchDay integer,
  87. days integer,
  88. hours integer,
  89. minutes integer,
  90. description char(80),
  91.  
  92. CONSTRAINT NASA_MissionPK PRIMARY KEY (projectName, missionNo),
  93. CONSTRAINT NASA_MissionFK FOREIGN KEY (projectName) REFERENCES NASA_Projects
  94. );
  95.  
  96.  
  97. Create table NASA_Assigned
  98. (
  99. projectName char(15),
  100. missionNo integer,
  101. astroNo integer,
  102. role char(25),
  103.  
  104. CONSTRAINT NASA_AssignedPK PRIMARY KEY (projectName, missionNo, astroNo),
  105.  
  106. CONSTRAINT NASA_AssignedFK_Mission FOREIGN KEY
  107. (projectName, missionNo) REFERENCES NASA_Mission,
  108.  
  109. CONSTRAINT NASA_AssignedFK_Astronaut FOREIGN KEY
  110. (astroNo) REFERENCES NASA_Astronaut
  111.  
  112. );
  113.  
  114. Create table NASA_SpaceCraft
  115. (
  116. projectName char(15),
  117. missionNo integer,
  118. craftType char(10),
  119. craftName char(20),
  120.  
  121. CONSTRAINT NASA_SpaceCraftPK PRIMARY KEY (projectName, missionNo, craftType),
  122.  
  123. CONSTRAINT NASA_SpaceCraftFK FOREIGN KEY
  124. (projectName, missionNo) REFERENCES NASA_Mission
  125. );
  126.  
  127. INSERT INTO NASA_Projects VALUES('Mercury');
  128. INSERT INTO NASA_Projects VALUES('Gemini');
  129. INSERT INTO NASA_Projects VALUES('Apollo');
  130. INSERT INTO NASA_Projects VALUES('Skylab');
  131. INSERT INTO NASA_Projects VALUES('Apollo-Soyuz');
  132.  
  133.  
  134.  
  135. Insert into NASA_Astronaut VALUES( 1,'Aldrin, Buzz',1930,NULL);
  136. Insert into NASA_Astronaut VALUES( 2,'Anders, William',1933,NULL);
  137. Insert into NASA_Astronaut VALUES( 3,'Armstrong, Neil',1930,NULL);
  138. Insert into NASA_Astronaut VALUES( 4,'Bean, Alan',1932,NULL);
  139. Insert into NASA_Astronaut VALUES( 5,'Borman, Frank',1928,NULL);
  140. Insert into NASA_Astronaut VALUES( 6,'Brand, Vance',1931,NULL);
  141. Insert into NASA_Astronaut VALUES( 7,'Carpenter, Scott',1925,NULL);
  142. Insert into NASA_Astronaut VALUES( 8,'Carr, Gerald',1932,NULL);
  143. Insert into NASA_Astronaut VALUES( 9,'Cernan, Gene',1934,NULL);
  144. Insert into NASA_Astronaut VALUES(10,'Chaffee, Roger',1935,1967);
  145. Insert into NASA_Astronaut VALUES(11,'Collins, Michael',1930,NULL);
  146. Insert into NASA_Astronaut VALUES(12,'Conrad, Charles',1930,1999);
  147. Insert into NASA_Astronaut VALUES(13,'Cooper, Gordo',1927,2004);
  148. Insert into NASA_Astronaut VALUES(14,'Cunningham, Walter',1932,NULL);
  149. Insert into NASA_Astronaut VALUES(15,'Duke, Charles',1935,NULL);
  150. Insert into NASA_Astronaut VALUES(16,'Eisele, Donn',1930,1987);
  151. Insert into NASA_Astronaut VALUES(17,'Evans, Ron',1933,1990);
  152. Insert into NASA_Astronaut VALUES(18,'Garriott, Owen',1930,NULL);
  153. Insert into NASA_Astronaut VALUES(19,'Gibson, Edward',1936,NULL);
  154. Insert into NASA_Astronaut VALUES(20,'Glenn, John',1921,NULL);
  155. Insert into NASA_Astronaut VALUES(21,'Gordon, Richard',1929,NULL);
  156. Insert into NASA_Astronaut VALUES(22,'Grissom, Gus',1926,1967);
  157. Insert into NASA_Astronaut VALUES(23,'Haise, Fred',1933,NULL);
  158. Insert into NASA_Astronaut VALUES(24,'Irwin, James',1930,1991);
  159. Insert into NASA_Astronaut VALUES(25,'Kerwin, Joseph',1932,NULL);
  160. Insert into NASA_Astronaut VALUES(26,'Lousma, Jack',1936,NULL);
  161. Insert into NASA_Astronaut VALUES(27,'Lovell, James',1928,NULL);
  162. Insert into NASA_Astronaut VALUES(28,'Mattingly, Thomas',1936,NULL);
  163. Insert into NASA_Astronaut VALUES(29,'McDivitt, James',1929,NULL);
  164. Insert into NASA_Astronaut VALUES(30,'Mitchell, Edgar',1930,NULL);
  165. Insert into NASA_Astronaut VALUES(31,'Pogue, William',1930,NULL);
  166. Insert into NASA_Astronaut VALUES(32,'Roosa, Stu',1933,1994);
  167. Insert into NASA_Astronaut VALUES(33,'Schirra, Wally',1923,NULL);
  168. Insert into NASA_Astronaut VALUES(34,'Schmitt, Harrison',1935,NULL);
  169. Insert into NASA_Astronaut VALUES(35,'Schweickart, Rusty',1935,NULL);
  170. Insert into NASA_Astronaut VALUES(36,'Scott, David',1932,NULL);
  171. Insert into NASA_Astronaut VALUES(37,'Shepard, Alan',1923,1998);
  172. Insert into NASA_Astronaut VALUES(38,'Slayton, Deke',1924,1993);
  173. Insert into NASA_Astronaut VALUES(39,'Stafford, Thomas',1930,NULL);
  174. Insert into NASA_Astronaut VALUES(40,'Swigert, John',1931,1982);
  175. Insert into NASA_Astronaut VALUES(41,'Weitz, Paul',1932,NULL);
  176. Insert into NASA_Astronaut VALUES(42,'White, Edward',1930,1967);
  177. Insert into NASA_Astronaut VALUES(43,'Worden, Alfred',1932,NULL);
  178. Insert into NASA_Astronaut VALUES(44,'Young, John',1930,NULL);
  179.  
  180.  
  181. Insert into NASA_Mission Values('Mercury', 1, 'SO', 1961, 5, 5, 0, 0, 15, 'First American into space');
  182. Insert into NASA_Mission Values('Mercury', 2, 'SO', 1961, 7, 21, 0, 0, 15, 'Capsule sank after splashdown');
  183. Insert into NASA_Mission Values('Mercury', 3, 'EO', 1962, 2, 20, 0, 4, 55, 'First American into orbit');
  184. Insert into NASA_Mission Values('Mercury', 4, 'EO', 1962, 5, 24, 0, 4, 56, 'Cronkite: We may have lost an astronaut');
  185. Insert into NASA_Mission Values('Mercury', 5, 'EO', 1962, 10, 3, 0, 9, 13,NULL);
  186. Insert into NASA_Mission Values('Mercury', 6, 'EO', 1963, 5, 15, 1, 10, 20,NULL);
  187. Insert into NASA_Mission Values('Gemini', 3, 'EO', 1965, 3, 23, 0, 4, 53, 'First Ham Sandwich in Space');
  188. Insert into NASA_Mission Values('Gemini', 4, 'EO', 1965, 6, 3, 4, 1, 56, 'First American Spacewalk');
  189. Insert into NASA_Mission Values('Gemini', 5, 'EO', 1965, 8, 21, 7, 22, 55, 'Eight Days or Bust');
  190. Insert into NASA_Mission Values('Gemini', 6, 'EO', 1965, 12, 15, 1, 1, 52, 'First Rendevous');
  191. Insert into NASA_Mission Values('Gemini', 7, 'EO', 1965, 12, 4, 13, 18, 35, 'Longest Flight not on a Space Station');
  192. Insert into NASA_Mission Values('Gemini', 8, 'EO', 1966, 3, 16, 0, 10, 41, 'First docking; first space emergency');
  193. Insert into NASA_Mission Values('Gemini', 9, 'EO', 1966, 6, 3, 3, 0, 20, 'The Angry Alligator; aborted spacewalk');
  194. Insert into NASA_Mission Values('Gemini', 10, 'EO', 1966, 7, 18, 2, 22, 47,NULL);
  195. Insert into NASA_Mission Values('Gemini', 11, 'EO', 1966, 9, 12, 2, 23, 17,NULL);
  196. Insert into NASA_Mission Values('Gemini', 12, 'EO', 1966, 11, 11, 3, 22, 34, 'First unequivocally successful EVA');
  197. Insert into NASA_Mission Values('Apollo', 1, NULL, 1967, 1, 27, 0, 0, 0, 'Crew killed in launch test');
  198. Insert into NASA_Mission Values('Apollo', 7, 'EO', 1968, 10, 11, 10, 20, 9, 'First successful Apollo mission');
  199. Insert into NASA_Mission Values('Apollo', 8, 'LO', 1968, 12, 21, 6, 3, 0, 'THAT photo of Earth from Moon; Genesis');
  200. Insert into NASA_Mission Values('Apollo', 9, 'EO', 1969, 3, 3, 10, 1, 0,'First test of Lunar Module');
  201. Insert into NASA_Mission Values('Apollo', 10, 'LO', 1969, 5, 18, 8, 0, 3,NULL);
  202. Insert into NASA_Mission Values('Apollo', 11, 'LL', 1969, 7, 16, 8, 3, 19, 'One Small Step for [a] man, one giant leap for mankind');
  203. Insert into NASA_Mission Values('Apollo', 12, 'LL', 1969, 11, 14, 10, 4, 36, 'It might have been a small step for Neil, but it was a big one for me');
  204. Insert into NASA_Mission Values('Apollo', 13, 'LF', 1970, 4, 11, 5, 22, 54, 'Houston, we have a problem');
  205. Insert into NASA_Mission Values('Apollo', 14, 'LL', 1971, 1, 31, 9, 0, 0,NULL);
  206. Insert into NASA_Mission Values('Apollo', 15, 'LL', 1971, 7, 26, 12, 7, 12, 'Man must explore; First use of lunar rover');
  207.  
  208. Insert into NASA_Mission Values('Apollo', 16, 'LL', 1972, 4, 16, 11, 1, 51,NULL);
  209. Insert into NASA_Mission Values('Apollo', 17, 'LL', 1972, 12, 7, 12, 13, 51,NULL);
  210. Insert into NASA_Mission Values('Skylab', 2, 'EO', 1973, 5, 25, 28, 0, 50, 'Skylab rescue mission');
  211. Insert into NASA_Mission Values('Skylab', 3, 'EO', 1973, 7, 28, 59, 11, 9,NULL);
  212. Insert into NASA_Mission Values('Skylab', 4, 'EO', 1973, 11, 16, 84, 1, 15,NULL);
  213. Insert into NASA_Mission Values('Apollo-Soyuz', 1, 'EO', 1975, 7, 15, 9, 1, 28,NULL);
  214.  
  215.  
  216. Insert into NASA_SpaceCraft Values('Mercury', 1, 'capsule', 'Freedom 7');
  217. Insert into NASA_SpaceCraft Values('Mercury', 2, 'capsule', 'Liberty Bell 7');
  218. Insert into NASA_SpaceCraft Values('Mercury', 3, 'capsule', 'Friendship 7');
  219. Insert into NASA_SpaceCraft Values('Mercury', 4, 'capsule', 'Aurora 7');
  220. Insert into NASA_SpaceCraft Values('Mercury', 5, 'capsule', 'Sigma 7');
  221. Insert into NASA_SpaceCraft Values('Mercury', 6, 'capsule', 'Faith 7');
  222. Insert into NASA_SpaceCraft Values('Gemini', 3, 'capsule', 'Molly Brown');
  223. Insert into NASA_SpaceCraft Values('Apollo', 9, 'CSM', 'Gum Drop');
  224. Insert into NASA_SpaceCraft Values('Apollo', 9, 'LM', 'Spider');
  225. Insert into NASA_SpaceCraft Values('Apollo', 10, 'CSM', 'Charlie Brown');
  226. Insert into NASA_SpaceCraft Values('Apollo', 10, 'LM', 'Snoopy');
  227. Insert into NASA_SpaceCraft Values('Apollo', 11, 'CSM', 'Columbia');
  228. Insert into NASA_SpaceCraft Values('Apollo', 11, 'LM', 'Eagle');
  229. Insert into NASA_SpaceCraft Values('Apollo', 12, 'CSM', 'Yankee Clipper');
  230. Insert into NASA_SpaceCraft Values('Apollo', 12, 'LM', 'Intrepid');
  231. Insert into NASA_SpaceCraft Values('Apollo', 13, 'CSM', 'Odyssey');
  232. Insert into NASA_SpaceCraft Values('Apollo', 13, 'LM', 'Aquarius');
  233. Insert into NASA_SpaceCraft Values('Apollo', 14, 'CSM', 'Kitty Hawk');
  234. Insert into NASA_SpaceCraft Values('Apollo', 14, 'LM', 'Antares');
  235. Insert into NASA_SpaceCraft Values('Apollo', 15, 'CSM', 'Endeavour');
  236. Insert into NASA_SpaceCraft Values('Apollo', 15, 'LM', 'Falcon');
  237. Insert into NASA_SpaceCraft Values('Apollo', 16, 'CSM', 'Casper');
  238. Insert into NASA_SpaceCraft Values('Apollo', 16, 'LM', 'Orion');
  239. Insert into NASA_SpaceCraft Values('Apollo', 17, 'CSM', 'America');
  240. Insert into NASA_SpaceCraft Values('Apollo', 17, 'LM', 'Challenger');
  241.  
  242.  
  243. Insert into NASA_Assigned Values('Mercury', 1, 37, 'Pilot');
  244. Insert into NASA_Assigned Values('Mercury', 2, 22, 'Pilot');
  245. Insert into NASA_Assigned Values('Mercury', 3, 20, 'Pilot');
  246. Insert into NASA_Assigned Values('Mercury', 4, 7, 'Pilot');
  247. Insert into NASA_Assigned Values('Mercury', 5, 33, 'Pilot');
  248. Insert into NASA_Assigned Values('Mercury', 6, 13, 'Pilot');
  249. Insert into NASA_Assigned Values('Gemini', 3, 22, 'Commander');
  250. Insert into NASA_Assigned Values('Gemini', 3, 44, 'Pilot');
  251. Insert into NASA_Assigned Values('Gemini', 4, 29, 'Commander');
  252. Insert into NASA_Assigned Values('Gemini', 4, 42, 'Pilot');
  253. Insert into NASA_Assigned Values('Gemini', 5, 13, 'Commander');
  254. Insert into NASA_Assigned Values('Gemini', 5, 12, 'Pilot');
  255. Insert into NASA_Assigned Values('Gemini', 6, 5, 'Commander');
  256. Insert into NASA_Assigned Values('Gemini', 6, 27, 'Pilot');
  257. Insert into NASA_Assigned Values('Gemini', 7, 33, 'Commander');
  258. Insert into NASA_Assigned Values('Gemini', 7, 39, 'Pilot');
  259. Insert into NASA_Assigned Values('Gemini', 8, 3, 'Commander');
  260. Insert into NASA_Assigned Values('Gemini', 8, 36, 'Pilot');
  261. Insert into NASA_Assigned Values('Gemini', 9, 39, 'Commander');
  262. Insert into NASA_Assigned Values('Gemini', 9, 9, 'Pilot');
  263. Insert into NASA_Assigned Values('Gemini', 10, 44, 'Commander');
  264. Insert into NASA_Assigned Values('Gemini', 10, 11, 'Pilot');
  265. Insert into NASA_Assigned Values('Gemini', 11, 12, 'Commander');
  266. Insert into NASA_Assigned Values('Gemini', 11, 21, 'Pilot');
  267. Insert into NASA_Assigned Values('Gemini', 12, 27, 'Commander');
  268. Insert into NASA_Assigned Values('Gemini', 12, 1, 'Pilot');
  269. Insert into NASA_Assigned Values('Apollo', 1, 22, 'Commander');
  270. Insert into NASA_Assigned Values('Apollo', 1, 42, 'Command Module Pilot');
  271. Insert into NASA_Assigned Values('Apollo', 1, 10, 'Lunar Module Pilot');
  272. Insert into NASA_Assigned Values('Apollo', 7, 33, 'Commander');
  273. Insert into NASA_Assigned Values('Apollo', 7, 16, 'Command Module Pilot');
  274. Insert into NASA_Assigned Values('Apollo', 7, 14, 'Lunar Module Pilot');
  275. Insert into NASA_Assigned Values('Apollo', 8, 5, 'Commander');
  276. Insert into NASA_Assigned Values('Apollo', 8, 27, 'Command Module Pilot');
  277. Insert into NASA_Assigned Values('Apollo', 8, 2, 'Lunar Module Pilot');
  278. Insert into NASA_Assigned Values('Apollo', 9, 29, 'Commander');
  279. Insert into NASA_Assigned Values('Apollo', 9, 36, 'Command Module Pilot');
  280. Insert into NASA_Assigned Values('Apollo', 9, 35, 'Lunar Module Pilot');
  281. Insert into NASA_Assigned Values('Apollo', 10, 39, 'Commander');
  282. Insert into NASA_Assigned Values('Apollo', 10, 44, 'Command Module Pilot');
  283. Insert into NASA_Assigned Values('Apollo', 10, 9, 'Lunar Module Pilot');
  284. Insert into NASA_Assigned Values('Apollo', 11, 3, 'Commander');
  285. Insert into NASA_Assigned Values('Apollo', 11, 11, 'Command Module Pilot');
  286. Insert into NASA_Assigned Values('Apollo', 11, 1, 'Lunar Module Pilot');
  287. Insert into NASA_Assigned Values('Apollo', 12, 12, 'Commander');
  288. Insert into NASA_Assigned Values('Apollo', 12, 21, 'Command Module Pilot');
  289. Insert into NASA_Assigned Values('Apollo', 12, 4, 'Lunar Module Pilot');
  290. Insert into NASA_Assigned Values('Apollo', 13, 27, 'Commander');
  291. Insert into NASA_Assigned Values('Apollo', 13, 40, 'Command Module Pilot');
  292. Insert into NASA_Assigned Values('Apollo', 13, 23, 'Lunar Module Pilot');
  293. Insert into NASA_Assigned Values('Apollo', 14, 37, 'Commander');
  294. Insert into NASA_Assigned Values('Apollo', 14, 32, 'Command Module Pilot');
  295. Insert into NASA_Assigned Values('Apollo', 14, 30, 'Lunar Module Pilot');
  296.  
  297. Insert into NASA_Assigned Values('Apollo', 15, 43, 'Command Module Pilot');
  298. Insert into NASA_Assigned Values('Apollo', 15, 24, 'Lunar Module Pilot');
  299. Insert into NASA_Assigned Values('Apollo', 16, 44, 'Commander');
  300. Insert into NASA_Assigned Values('Apollo', 16, 28, 'Command Module Pilot');
  301. Insert into NASA_Assigned Values('Apollo', 16, 15, 'Lunar Module Pilot');
  302. Insert into NASA_Assigned Values('Apollo', 17, 9, 'Commander');
  303. Insert into NASA_Assigned Values('Apollo', 17, 17, 'Command Module Pilot');
  304. Insert into NASA_Assigned Values('Apollo', 17, 34, 'Lunar Module Pilot');
  305. Insert into NASA_Assigned Values('Skylab', 2, 12, 'Commander');
  306. Insert into NASA_Assigned Values('Skylab', 2, 41, 'Pilot');
  307. Insert into NASA_Assigned Values('Skylab', 2, 25, 'Scientist');
  308. Insert into NASA_Assigned Values('Skylab', 3, 4, 'Commander');
  309. Insert into NASA_Assigned Values('Skylab', 3, 26, 'Pilot');
  310. Insert into NASA_Assigned Values('Skylab', 3, 18, 'Scientist');
  311. Insert into NASA_Assigned Values('Skylab', 4, 8, 'Commander');
  312. Insert into NASA_Assigned Values('Skylab', 4, 31, 'Pilot');
  313. Insert into NASA_Assigned Values('Skylab', 4, 19, 'Scientist');
  314. Insert into NASA_Assigned Values('Apollo-Soyuz', 1, 39, 'Commander');
  315. Insert into NASA_Assigned Values('Apollo-Soyuz', 1, 6, 'Command Module Pilot');
  316. Insert into NASA_Assigned Values('Apollo-Soyuz', 1, 38, 'Docking Module Pilot');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement