diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 2a3b6db..0f2fe08 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -22,14 +22,9 @@ jobs: config: - {os: macos-latest, r: 'release'} - {os: windows-latest, r: 'release'} - # use 4.1 to check with rtools40's older compiler - - {os: windows-latest, r: '4.1'} - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} - {os: ubuntu-latest, r: 'release'} - {os: ubuntu-latest, r: 'oldrel-1'} - - {os: ubuntu-latest, r: 'oldrel-2'} - - {os: ubuntu-latest, r: 'oldrel-3'} - - {os: ubuntu-latest, r: 'oldrel-4'} env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} diff --git a/DESCRIPTION b/DESCRIPTION index c2763d2..20a2d64 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -3,8 +3,9 @@ Package: tidytuesdayR Title: Access the Weekly 'TidyTuesday' Project Dataset Version: 1.0.3.9000 Authors@R: c( - person("Ellis", "Hughes", , "ellishughes@live.com", role = c("aut", "cre")), - person("Jon", "Harmon", , "jonthegeek@gmail.com", role = "ctb"), + person("Jon", "Harmon", , "jonthegeek@gmail.com", role = c("aut", "cre"), + comment = c(ORCID = "0000-0003-4781-4346")), + person("Ellis", "Hughes", , "ellishughes@live.com", role = "aut"), person("Thomas", "Mock", , "j.thomasmock@gmail.com", role = "ctb"), person("Data Science Learning Community", , , "tidytuesday@dslc.io", role = "dtc") ) @@ -20,25 +21,29 @@ BugReports: https://github.com/thebioengineer/tidytuesdayR/issues Depends: R (>= 3.4.0) Imports: - httr, + cli, + gh, + glue, jsonlite, lubridate (>= 1.7.0), magrittr, - purrr (>= 0.2.5), + purrr (>= 1.0.0), readr (>= 1.0.0), - readxl (>= 1.0.0), rlang, - rstudioapi (>= 0.2), rvest (>= 0.3.2), + tidyr, tools (>= 3.1.0), usethis, xml2 (>= 1.2.0) Suggests: covr, pkgdown, + readxl (>= 1.0.0), + rstudioapi (>= 0.2), testthat (>= 3.0.0), tibble, withr +Config/testthat/edition: 3 Encoding: UTF-8 +Roxygen: list(markdown = TRUE) RoxygenNote: 7.3.2 -Config/testthat/edition: 3 diff --git a/NAMESPACE b/NAMESPACE index d624406..101ed79 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -4,12 +4,8 @@ S3method(print,tt) S3method(print,tt_data) S3method(print,tt_dataset_table) S3method(print,tt_dataset_table_list) -S3method(tt_gh_error,response) -S3method(tt_gh_error,tt_response) export("%>%") -export(github_pat) export(last_tuesday) -export(rate_limit_check) export(readme) export(tt_available) export(tt_datasets) @@ -18,40 +14,12 @@ export(tt_download_file) export(tt_load) export(tt_load_gh) export(use_tidytemplate) -importFrom(httr,GET) -importFrom(httr,add_headers) -importFrom(jsonlite,base64_dec) -importFrom(jsonlite,base64_enc) -importFrom(jsonlite,parse_json) -importFrom(lubridate,as_date) -importFrom(lubridate,day) -importFrom(lubridate,is.Date) -importFrom(lubridate,month) +importFrom(glue,glue) importFrom(lubridate,today) importFrom(lubridate,wday) -importFrom(lubridate,year) -importFrom(lubridate,ymd) importFrom(magrittr,"%>%") -importFrom(purrr,map) -importFrom(purrr,walk) -importFrom(readr,read_delim) -importFrom(readxl,read_xls) -importFrom(readxl,read_xlsx) -importFrom(rlang,"%||%") -importFrom(rstudioapi,isAvailable) -importFrom(rstudioapi,viewer) -importFrom(rvest,html_node) -importFrom(rvest,html_nodes) -importFrom(rvest,html_table) importFrom(stats,aggregate) -importFrom(stats,na.omit) importFrom(stats,na.pass) importFrom(stats,setNames) -importFrom(tools,file_ext) importFrom(tools,file_path_sans_ext) importFrom(usethis,use_template) -importFrom(utils,URLencode) -importFrom(utils,browseURL) -importFrom(utils,read.csv) -importFrom(xml2,read_html) -importFrom(xml2,write_html) diff --git a/NEWS.md b/NEWS.md index 24cccc3..5ee9b05 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,10 +1,16 @@ -# tidytuesdayR (1.0.3 version) -* [bug fix] Address case where when trying to test +# tidytuesdayR (development version) -# tidytuesdayR (1.0.2 version) +* [maintenance] tidytuesdayR now uses the {gh} package to manage all interactions with the GitHub API. This should make the package more stable and easier to maintain. (@jonthegeek, #78) + + +# tidytuesdayR 1.0.3 + +* [bug fix] Address case where rate limit hit when trying to test + +# tidytuesdayR 1.0.2 * [bug fix] During testing it was identified that 502 errors from github servers would cause the code to error out. Now it will retry a few times before giving an error. -* [bug fix] No internet connection bug on rstudio resolved to due malformed url checks (https). +* [bug fix] No internet connection bug on rstudio resolved due to malformed url checks (https). * [bug fix] Partial argument matching correction in `tt_download_file.character()`, `tt_parse_blob()`, and in tests. (thanks @mgirlich) # tidytuesdayR 1.0.1 diff --git a/R/aaa-shared.R b/R/aaa-shared.R new file mode 100644 index 0000000..331ebbd --- /dev/null +++ b/R/aaa-shared.R @@ -0,0 +1,17 @@ +#' Parameters used in multiple functions +#' +#' Reused parameter definitions are gathered here for easier editing. +#' +#' @param auth A GitHub token. See [gh::gh_token()] for more details. +#' @param tt A `tt` object, output from [tt_load_gh()]. +#' @param files Which file names to download. Default "All" downloads all files +#' for the specified week. +#' @param week Which week number to use within a given year. Only used when `x` +#' is a valid year. +#' @param x The date of data to pull (in "YYYY-MM-dd" format), or the four-digit +#' year as a number. +#' @param year What year of TidyTuesday to use +#' +#' @name shared-params +#' @keywords internal +NULL diff --git a/R/github_api.R b/R/github_api.R index 8a578e5..b775e4f 100644 --- a/R/github_api.R +++ b/R/github_api.R @@ -1,541 +1,118 @@ -#' Read Contents from GitHub -#' -#' Provide tool to read raw data and return as text the raw data using the -#' github api -#' -#' @param path Relative path from within the TidyTuesday Repository -#' @param auth github PAT -#' -#' @return raw text of the content with the sha as an attribute -#' @noRd -#' @examplesIf interactive() -#' text_csv <- github_contents("data/2020/2020-04-07/tdf_stages.csv") -#' tour_de_france_stages <- readr::read_csv(text_csv) -github_contents <- function(path, auth = github_pat()) { - base_url <- file.path( - "https://api.github.com/repos", - options("tidytuesdayR.tt_repo"), - "contents", - path - ) - - github_blob(path, auth = auth) -} - -#' Read Contents from GitHub as html -#' -#' Provide tools to read and process readme's as html using the github api -#' -#' @param path Relative path from within the TidyTuesday Repository to contents -#' that can be returned as HTML -#' @param ... optional arguments to pass to \code{read_html} -#' @param auth github PAT -#' -#' @return result of read_html on the contents -#' @noRd -#' -#' @examplesIf interactive() -#' main_readme <- github_html("README.md") -#' week_readme <- github_html("data/2020/2020-01-07/readme.md") -#' -#' @importFrom xml2 read_html -github_html <- function(path, - ..., - auth = github_pat()) { - base_url <- file.path( - "https://api.github.com/repos", - options("tidytuesdayR.tt_repo"), - "contents", - path - ) - - url_response <- github_GET( - base_url, - auth = auth, - Accept = "application/vnd.github.v3.html" - ) - - if (url_response$status_code == 200) { - github_page(read_html(x = url_response$content, ...)) - } else { - stop(tt_gh_error(url_response)$message) - } - } - - -#' Read Contents from GitHub as html -#' -#' provide tools to read and process readme's as html using the github api -#' -#' @param dirpath Relative path from within the TidyTuesday Repository to -#' folder of contents wanting sha for -#' @param branch which branch to get sha for. assumed to be -#' master (and usually should be) -#' @param auth github PAT. See PAT section for more information -#' -#' @return result data.frame of SHA and other information of directory contents -#' @noRd -#' -#' @examplesIf interactive() -#' sha <- github_sha("data/2020/2020-01-07") -#' -#' @importFrom xml2 read_html -#' @importFrom utils URLencode -github_sha <- function(dirpath, - branch = "master", - auth = github_pat()) { - if (dirpath == ".") { - dirpath <- "" - } - - base_url <- file.path( - "https://api.github.com/repos", - options("tidytuesdayR.tt_repo"), - "git/trees", - URLencode(paste(branch, dirpath, sep = ":")) - ) +# Hit the api ---- - url_response <- github_GET(base_url, auth = auth) - - if (url_response$status_code == 200) { - url_json <- GET_json(url_response) - do.call( - "rbind", - lapply( - url_json$tree, - function(x) { - data.frame( - x[c("path", "sha")], - stringsAsFactors = FALSE - ) - } - ) - ) - } else { - stop(tt_gh_error(url_response)$message) - } - } +# This one is purely a wrapper around gh::gh(), so at least for now we'll trust +# that it works. +# +# nocov start -#' Read blob Contents from GitHub +#' Get data from the tt github repo. #' -#' provide tools to read and process blob's using the github api +#' @param path Path within the rfordatascience/tidytuesday repo. +#' @param ... Additional parameters passed to [gh::gh()]. #' -#' @param path Relative path from within the TidyTuesday Repository to contents, -#' usually because it was too large to be read with the contencts api. -#' @param as_raw optional arguments to pass to \code{read_html} -#' @param sha sha of object if known in liu of path (usually best to give both -#' for clarity) -#' @param auth github PAT -#' -#' @return a raw/character object based on the blob -#' @noRd -#' -#' @examplesIf interactive() -#' main_readme_blob <- github_blob("README.md", as_raw = TRUE) -github_blob <- function(path, as_raw = FALSE, sha = NULL, auth = github_pat()) { - if (is.null(sha)) { - dir_sha <- github_sha(dirname(path)) - sha <- dir_sha$sha[dir_sha$path == basename(path)] - if (identical(sha, character(0))) { - stop("Response Code 404: Not Found") - } - } - - base_url <- file.path( - "https://api.github.com/repos", - options("tidytuesdayR.tt_repo"), - "git/blobs", - sha - ) - - url_response <- github_GET( - base_url, - auth = auth, - Accept = "application/vnd.github.VERSION.raw" - ) - - if (url_response$status_code == 200) { - if (as_raw == TRUE) { - content <- url_response$content - } else { - content <- rawToChar(url_response$content) - } - attr(content, ".sha") <- sha - return(content) - } else { - stop(tt_gh_error(url_response)$message) - } - } - - -#' read json base64 contents from github -#' -#' provide tool to read and process data using the github api -#' @param b64 base64 character value to be decoded and converted to -#' character value -#' @importFrom jsonlite base64_dec -#' -#' @return a character vector of the input decoded from base64 -#' @noRd -#' -#' @examples -#' # Returns the value "Hello World" -#' base_64_to_char("SGVsbG8gV29ybGQ=") -base_64_to_char <- function(b64) { - rawToChar(base64_dec(b64)) -} - -#' read GET json contents to char -#' -#' provide tool to read and process data using the github api from GET command -#' @param get_response object of class "response" from GET command. returns -#' JSON value. -#' -#' @return a list object if the content json -#' @noRd -#' -#' @importFrom jsonlite parse_json -GET_json <- function(get_response) { - jsonlite::parse_json(rawToChar(get_response$content)) -} - - -#' Create shell for HTML content from github -#' -#' Provide the necessary section to wrap around raw html content read -#' from github. -#' -#' @param page_content html content in xml_document class -#' -#' @return xml_document with github header -#' @noRd -#' -#' @importFrom xml2 read_html -#' @importFrom rvest html_nodes -github_page <- function(page_content) { - header <- paste0( - "" +#' @return The GitHub response as parsed by [gh::gh()]. +#' @keywords internal +gh_get <- function(path, auth = gh::gh_token(), ...) { + gh::gh( + "/repos/:tt_repo/contents/:path", + path = path, + tt_repo = getOption("tidytuesdayR.tt_repo"), + .token = auth, + ... ) - - body <- page_content %>% - html_nodes("body") %>% - as.character() %>% - enc2native() - - read_html(paste0(header, body)) } +# nocov end -#' Return the local user's GitHub Personal Access Token -#' -#' Extract the GitHub Personal Access Token (PAT) from the system environment -#' for authenticated requests. -#' -#' @section PAT: -#' -#' A Github 'PAT' is a Personal Access Token. This allows for signed queries -#' to the github api, and increases the limit on the number of requests -#' allowed from 60 to 5000. Follow instructions from -#' to set the PAT. -#' -#' @param quiet Should this be loud? default TRUE. -#' -#' @export -#' -#' @return a character vector that is your Personal Access Token, or NULL -#' -#' @examples -#' ## if you have a personal access token saved, this will return that value. -#' github_pat() -github_pat <- function(quiet = TRUE) { - pat <- Sys.getenv("GITHUB_PAT", "") %||% Sys.getenv("GITHUB_TOKEN", "") - if (nchar(pat)) { - if (!quiet) { - message("Using github PAT from envvar GITHUB_PAT | GITHUB_TOKEN") - } - return(pat) - } - NULL +gh_get_sha_in_folder <- function(path, file, auth = gh::gh_token()) { + folder <- gh_get(path, auth = auth) + return(gh_extract_sha_in_folder(folder, file)) } -#' Get for github API -#' -#' Extract the github PAT from the system environment for -#' authenticated requests. -#' -#' @param url URL to GET from -#' @param auth github PAT -#' @param ... any additional headers to add -#' -#' @return response from GET -#' @noRd -#' -#' @importFrom httr GET add_headers -#' @importFrom jsonlite base64_enc -github_GET <- function(url, auth = github_pat(), ..., times_run = 1) { - if (!is.null(auth)) { - headers <- add_headers( - ..., - Authorization = paste("token", auth) - ) - } else { - headers <- add_headers(...) # nocov - } - - if (!get_connectivity()) { - return( - no_internet_error() - ) - } - - rate <- rate_limit_check() - - if (rate != 0) { - if (exists("headers")) { - get_res <- try(GET(url, headers), silent = TRUE) - } else { - get_res <- try(GET(url)) # nocov - } - - if (inherits(get_res, "try-error")) { # nocov start - check_connectivity(rerun = TRUE) - if (!get_connectivity()) { - return(no_internet_error()) - } else { - ## Unexpected issue - stop(attr(get_res, "condition")) - } - } else { - if (get_res$status_code == 502) { - ## rerun when 502 status code - server error, not tidytuesdayR code error - if (times_run < 3) { - if (rate_limit_check() > 0) { - github_GET(url, auth = github_pat(), ..., times_run = times_run + 1) - } else { - rate_limit_error() - } - } else { - tt_gh_error.response(get_res) - } - } else { - rate_limit_update(header_to_rate_info(get_res)) - return(get_res) - } - } - } else { - rate_limit_error() - } # nocov end +gh_get_csv <- function(path, header = TRUE, auth = gh::gh_token()) { + gh_response <- gh_get(path, auth = auth) + return(gh_extract_csv(gh_response, header = header)) } -tt_gh_error <- function(response, call) { - UseMethod("tt_gh_error") +gh_get_folder <- function(path, auth = gh::gh_token()) { + gh_response <- gh_get(path, auth = auth) + tidyr::unnest_wider(tibble::enframe(gh_response, name = NULL), "value") } -#' @export -tt_gh_error.response <- function(response, call = sys.call(-2)) { - structure( - list( - status = response$status_code, - message = paste( - paste0("Response Code ", response$status_code, ":"), - GET_json(response)$message - ), - call = call - ), - class = c(".tt_gh_error", "condition") +gh_get_html <- function(path, auth = gh::gh_token()) { + gh_response <- gh_get( + path, + auth = auth, + .accept = "application/vnd.github.v3.html" ) + return(gh_extract_html(gh_response)) } -#' @export -tt_gh_error.tt_response <- function(response, call = sys.call(-2)) { - structure( - list( - status = response$status_code, - message = paste( - paste0("Response Code ", response$status_code, ":"), - response$message - ), - call = call - ), - class = c(".tt_gh_error", "condition") +gh_get_readme_html <- function(path, auth = gh::gh_token()) { + files <- gh_get_folder(path, auth = auth) + readme_path <- grep( + pattern = "readme", + files$path, + value = TRUE, + ignore.case = TRUE ) -} - -#' Environment containing state of Github API limits -#' -#' @keywords internal -#' @noRd - -TT_GITHUB_ENV <- new.env() -TT_GITHUB_ENV$RATE_LIMIT <- 60 -TT_GITHUB_ENV$RATE_REMAINING <- 0 -TT_GITHUB_ENV$RATE_RESET <- lubridate::today() - -#' @importFrom httr GET - -rate_limit_update <- function(rate_info = NULL, auth = github_pat()) { - check_connectivity() - - if (is.null(rate_info)) { - if (get_connectivity()) { - if (!is.null(auth)) { - rate_lim <- GET( - "https://api.github.com/rate_limit", - add_headers(Authorization = paste("token", auth)) - ) - } else { - rate_lim <- GET("https://api.github.com/rate_limit") # nocov - } - - if (rate_lim$status_code == 200) { - rate_info <- GET_json(rate_lim)$rate - rate_info$remaining <- rate_info$remaining - 1 # we have one less than we think - } - } - } - - if (get_connectivity()) { - TT_GITHUB_ENV$RATE_LIMIT <- rate_info$limit - TT_GITHUB_ENV$RATE_REMAINING <- rate_info$remaining - TT_GITHUB_ENV$RATE_RESET <- as.POSIXct(rate_info$reset, origin = "1970-01-01") + if (length(readme_path)) { + return(gh_get_html(readme_path, auth = auth)) } + cli::cli_warn( + "No readme found in {.val {path}}.", + class = "tt-warning-no_readme" + ) + return(NULL) } -#' Get Rate limit left for GitHub Calls -#' -#' The GitHub API limits the number of requests that can be sent within an hour. -#' This function returns the stored rate limits that are remaining. -#' -#' @param n number of requests that triggers a warning indicating the user is -#' close to the limit -#' @param quiet should messages be returned when the rate limit is zero or less than n? -#' -#' @return The number of remaining calls. -#' @export -#' -#' @examplesIf interactive() -#' rate_limit_check() -rate_limit_check <- function(n = 10, quiet = FALSE) { - RATE_REMAINING <- TT_GITHUB_ENV$RATE_REMAINING - - if (!length(RATE_REMAINING)) { # nocov start - if (!getOption("tidytuesdayR.tt_testing", FALSE)) { - ## double check. No penalty for checking! - rate_limit_update() - } else { - message("Unable to get Github API Rate Limit. Check connectivity and run again.") - return(0) - } - } # nocov end - - if (!RATE_REMAINING && !quiet) { - if (!getOption("tidytuesdayR.tt_testing", FALSE)) { - ## double check. No penalty for checking! - rate_limit_update() # nocov - } - - if (!RATE_REMAINING) { - stop( - "Github API Rate Limit hit. You must wait until ", - format( - TT_GITHUB_ENV$RATE_RESET, - "%Y-%m-%d %r %Z" - ), - " to make calls again!" - ) - } - } else if (RATE_REMAINING <= n && !quiet) { - message( - paste0( - "Only ", - TT_GITHUB_ENV$RATE_REMAINING, - " Github queries remaining until ", - format( - TT_GITHUB_ENV$RATE_RESET, - "%Y-%m-%d %r %Z" - ), - "." - ) - ) - } - - RATE_REMAINING -} - +# Do not hit api ---- -header_to_rate_info <- function(res) { - headers <- res$headers - rate_json <- list() - rate_json$limit <- as.numeric(headers$`x-ratelimit-limit`) - rate_json$remaining <- as.numeric(headers$`x-ratelimit-remaining`) - rate_json$reset <- as.numeric(headers$`x-ratelimit-reset`) - rate_json +gh_raw_to_chr <- function(encoded_raw) { + return(rawToChar(jsonlite::base64_dec(encoded_raw))) } - -#' Checks Internet Connectivity -#' -#' This packages functionality is based on having internet connectivity to github.com. Without access, -#' most if not all of this package is not useful. This function checks to see if there is -#' internet connectivity on start of the package. -#' -#' @param rerun should internet connectivity check be forced to rerun? (True/FALSE) -#' -#' @return This function returns nothing, it is used for the side effects -#' @noRd -#' -#' @examples -#' check_connectivity() -#' -#' @importFrom jsonlite base64_enc -#' @importFrom httr GET -check_connectivity <- function(rerun = FALSE) { - internet_connection <- getOption("tidytuesdayR.tt_internet_connectivity", NA) - - # if internet connection is not set or is false, lets try again - if (!getOption("tidytuesdayR.tt_testing", FALSE)) { - if (is.na(internet_connection) | !internet_connection | rerun) { - res <- try(GET("https://api.github.com"), silent = TRUE) # nocov start - if (inherits(res, "try-error")) { - options("tidytuesdayR.tt_internet_connectivity" = FALSE) - } else { - options("tidytuesdayR.tt_internet_connectivity" = TRUE) - } # nocov end - } +gh_extract_text <- function(gh_response) { + if (length(gh_response) && length(gh_response$content)) { + return(gh_raw_to_chr(gh_response$content)) } + cli::cli_abort( + "No content found in {.var gh_response}.", + class = "tt-error-bad_gh_response" + ) } -get_connectivity <- function() { - getOption("tidytuesdayR.tt_internet_connectivity", NA) -} - -#' @importFrom stats na.omit -request_error <- function(status_code, message, class = NA) { - structure( - list( - message = message, - status_code = status_code - ), - class = na.omit(c(class, "tt_response")) +gh_extract_html <- function(gh_response) { + if (length(gh_response) && length(gh_response$message)) { + return(xml2::read_html(gh_response$message)) + } + cli::cli_abort( + "No html found in {.var gh_response}.", + class = "tt-error-bad_gh_response" ) } -#' @importFrom jsonlite base64_enc -no_internet_error <- function() { - request_error( - status_code = -1, - "No Internet Connection", - "tt.gh_connectivityError" +gh_extract_csv <- function(gh_response, header = TRUE) { + file_text <- gh_extract_text(gh_response) + content <- utils::read.csv( + text = file_text, + header = header, + stringsAsFactors = FALSE ) + attr(content, ".sha") <- gh_response$sha + return(content) } -#' @importFrom jsonlite base64_enc -rate_limit_error <- function() { # nocov start - request_error( - status_code = -2, - "RATE LIMIT EXPIRED", - "tt.gh_RateLimitError" +gh_extract_sha_in_folder <- function(folder, file) { + target <- purrr::keep(folder, ~ .x$name == file) + if (length(target) && length(target[[1]]$sha)) { + return(target[[1]]$sha) + } + file_names <- purrr::map_chr(folder, "name") + cli::cli_abort( + c( + "File {.val {file}} not found in folder.", + i = "Found {cli::no({length(file_names)})} file{?s}: {.val {file_names}}" + ), + class = "tt-error-file_not_found" ) -} # nocov end +} diff --git a/R/last_tuesday.R b/R/last_tuesday.R index 90ce4cd..569acef 100644 --- a/R/last_tuesday.R +++ b/R/last_tuesday.R @@ -12,7 +12,12 @@ #' #' @export last_tuesday <- function(date = today(tzone = "America/New_York")) { - stopifnot(inherits(date, "Date") | valid_date(date)) + if (!valid_date(date)) { + cli::cli_abort( + "{.val {date}} cannot be coerced to a {.cls Date}.", + class = "tt-error-invalid_date" + ) + } date <- as.Date(tt_date_format(date)) diff_tuesday <- subtract_tuesday(date) tuesday <- date + diff_tuesday @@ -36,7 +41,3 @@ subtract_tuesday <- function(date) { } diff_tuesday } - -tt_date <- function(x, week) { - tt_check_date(year, week) -} diff --git a/R/tidytuesdayR-package.R b/R/tidytuesdayR-package.R index 2584f02..136dcdd 100644 --- a/R/tidytuesdayR-package.R +++ b/R/tidytuesdayR-package.R @@ -2,6 +2,6 @@ "_PACKAGE" ## usethis namespace: start -#' @importFrom rlang %||% +#' @importFrom glue glue ## usethis namespace: end NULL diff --git a/R/tt_available.R b/R/tt_available.R index 559a877..0a37859 100644 --- a/R/tt_available.R +++ b/R/tt_available.R @@ -19,19 +19,7 @@ #' Viewer or print to console all the available data sets ever made for #' TidyTuesday. #' -#' @section PAT: -#' -#' A Github PAT is a Personal Access Token. This allows for signed queries to -#' the github api, and increases the limit on the number of requests allowed -#' from 60 to 5000. Follow instructions at -#' to set your PAT. -#' -#' @name available -#' -#' @param year numeric entry representing the year of TidyTuesday you want the -#' list of datasets for. Leave empty for most recent year. -#' @param auth github Personal Access Token. See PAT section for -#' more information +#' @name tt_available #' #' @examplesIf interactive() #' # check to make sure there are requests still available @@ -45,79 +33,33 @@ #' NULL -#' @rdname available +#' @rdname tt_available +#' @inheritParams shared-params #' @export -#' @return `tt_available()` returns a 'tt_dataset_table_list', which is a -#' list of 'tt_dataset_table'. This class has special printing methods to show +#' @return `tt_available()` returns a `tt_dataset_table_list`, which is a +#' list of `tt_dataset_table`. This class has special printing methods to show #' the available data sets. -#' -tt_available <- function(auth = github_pat()) { - tt_year <- sort(tt_years(), decreasing = TRUE, ) - - datasets <- setNames(vector("list", length(tt_year)), tt_year) - - for (year in tt_year) { - datasets[[as.character(year)]] <- tt_datasets(year, auth = auth) - } - - structure(datasets, - class = c("tt_dataset_table_list") - ) +tt_available <- function(auth = gh::gh_token()) { + tt_year <- sort(tt_years(auth = auth), decreasing = TRUE, ) + names(tt_year) <- tt_year + datasets <- purrr::map(tt_year, ~ tt_datasets(.x, auth = auth)) + structure(datasets, class = c("tt_dataset_table_list")) } -#' @rdname available -#' @export -#' -#' @importFrom rvest html_table -#' @importFrom xml2 read_html -#' +#' @rdname tt_available +#' @inheritParams shared-params #' @export -#' @return `tt_datasets()` returns a 'tt_dataset_table' object. This class has +#' @return `tt_datasets()` returns a `tt_dataset_table` object. This class has #' special printing methods to show the available datasets for the year. -#' -tt_datasets <- function(year, auth = github_pat()) { - if (!year %in% tt_years()) { - stop( - paste0( - "Invalid `year` provided to list available tidytuesday datasets.", - "\n\tUse one of the following years: ", - paste(tt_years(), collapse = ", "), - "." - ) - ) - } +tt_datasets <- function(year, auth = gh::gh_token()) { + tt_check_year(year, auth = auth) - files <- github_sha(file.path("data", year)) - - readme <- - grep( - pattern = "readme", - files$path, - value = TRUE, - ignore.case = TRUE - ) - - readme_html <- - github_html(file.path("data", year, readme), auth = auth) - - readme_html <- read_html(gsub( - "\\n", - "", - gsub( - x = as.character(readme_html), - pattern = "", - replacement = paste0( - "" - ), - perl = TRUE - ) - )) - - datasets <- readme_html %>% - html_table() %>% - `[[`(1) + ############################################################################## + ## This portion changes if the dataset tables move, but it doesn't make sense + ## to abstract it into a separate function. + readme_html <- gh_get_readme_html(file.path("data", year), auth = auth) + datasets <- rvest::html_table(readme_html)[[1]] + ############################################################################## structure(datasets, .html = readme_html, @@ -125,14 +67,14 @@ tt_datasets <- function(year, auth = github_pat()) { ) } -#' @title Printing Utilities for Listing Available Datasets -#' @name Available_Printing -#' @description +#' Printing Utilities for Listing Available Datasets +#' #' printing utilities for showing the available datasets for a specific year or #' all time #' @inheritParams base::print -#' @param is_interactive is the console interactive? -#' @return used for side effects to show the available datasets for the year or for all time. +#' @param is_interactive Whether the function is being used interactively. +#' @return `x`, invisibly +#' @name tt_print #' @examplesIf interactive() #' # check to make sure there are requests still available #' if (rate_limit_check(quiet = TRUE) > 30) { @@ -144,8 +86,7 @@ tt_datasets <- function(year, auth = github_pat()) { #' } NULL - -#' @rdname Available_Printing +#' @rdname tt_print #' @export print.tt_dataset_table <- function(x, ..., is_interactive = interactive()) { if (is_interactive) { @@ -157,10 +98,9 @@ print.tt_dataset_table <- function(x, ..., is_interactive = interactive()) { invisible(x) } -#' @importFrom xml2 write_html make_tt_dataset_html <- function(x, file = tempfile(fileext = ".html")) { readme <- attr(x, ".html") - write_html(readme, file = file) + xml2::write_html(readme, file = file) invisible(readme) } @@ -170,10 +110,7 @@ save_tt_object <- function(x, fn) { return(tmpHTML) } -#' @rdname Available_Printing -#' @importFrom purrr walk map -#' @importFrom rvest html_node -#' @importFrom xml2 read_html write_html +#' @rdname tt_print #' @export print.tt_dataset_table_list <- function(x, ..., is_interactive = interactive()) { if (is_interactive) { @@ -205,7 +142,7 @@ make_tt_dataset_list_html <- function(x, file = tempfile(fileext = ".html")) { purrr::map_chr( function(.x, x) { year_table <- attr(x[[.x]], ".html") %>% - html_node("table") + rvest::html_element("table") paste( "

", .x, "

", as.character(year_table), @@ -220,9 +157,35 @@ make_tt_dataset_list_html <- function(x, file = tempfile(fileext = ".html")) { "
", paste("

TidyTuesday Datasets

", readme), "
" ) %>% - read_html() %>% + xml2::read_html() %>% github_page() - write_html(readme, file = file) + xml2::write_html(readme, file = file) invisible(readme) } + +#' Create shell for HTML content from github +#' +#' Provide the necessary section to wrap around raw html content read +#' from github. This is only actually used locally for printing, and may not be +#' necessary anymore. +#' +#' @param page_content html content in xml_document class +#' +#' @return xml_document with github header +#' @keywords internal +github_page <- function(page_content) { + header <- paste0( + "" + ) + + body <- page_content %>% + rvest::html_elements("body") %>% + as.character() %>% + enc2native() + + xml2::read_html(paste0(header, body)) +} diff --git a/R/tt_check_date.R b/R/tt_check_date.R index e057cdf..2546478 100644 --- a/R/tt_check_date.R +++ b/R/tt_check_date.R @@ -1,102 +1,112 @@ -#' @title Get date of TidyTuesday, given the year and week -#' @description Sometimes we don't know the date we want, but we do know the -#' week. this function provides the ability to pass the year and week we are -#' interested in to get the correct date -#' @param year what year of TidyTuesday to use -#' @param week what week of Tidytuesday to use +#' Get date of TidyTuesday, given the year and week +#' +#' Sometimes we don't know the date we want, but we do know the week. This +#' function provides the ability to pass the year and week we are interested in +#' to get the correct date +#' +#' @inheritParams gh_get +#' @inheritParams shared-params #' @examplesIf interactive() #' tt_date(2019, week = 42) -tt_date <- function(year, week) { - tt_check_date(year, week) +tt_date <- function(year, week = NULL, auth = gh::gh_token()) { + tt_check_date(year, week, auth = auth) } -#' @title given inputs generate valid TidyTuesday URL -#' @description Given multiple types of inputs, generate -#' @param x either a string or numeric entry indicating the full date of -#' @param week left empty unless x is a numeric year entry, in which case the -#' week of interest should be entered -#' @noRd -tt_check_date <- function(x, week) { +#' Generate valid TidyTuesday URL +#' +#' Given multiple types of inputs, generate a valid TidyTuesday URL. +#' +#' @inheritParams gh_get +#' @inheritParams shared-params +#' @keywords internal +tt_check_date <- function(x, week = NULL, auth = gh::gh_token()) { + if (missing(x)) { + cli::cli_abort( + "Provide either the year & week or the date of the TidyTuesday dataset.", + class = "tt-error-invalid_date" + ) + } + if (valid_date(x)) { - tt_check_date.date(x) + tt_check_date.date(x, auth = auth) } else if (valid_year(x)) { - tt_check_date.year(x, week) + tt_check_date.year(x, week, auth = auth) } else { stop("Entries must render to a valid date or year") } } -tt_check_date.date <- function(x) { +tt_check_date.date <- function(x, auth = gh::gh_token()) { tt_year <- lubridate::year(x) tt_formatted_date <- tt_date_format(x) - tt_folders <- tt_weeks(tt_year) + tt_folders <- tt_weeks(tt_year, auth = auth) if (!as.character(tt_formatted_date) %in% tt_folders[["folders"]]) { - stop( - paste0( - tt_formatted_date, - " is not a date that has TidyTuesday data.\n\tDid you mean: ", - tt_closest_date(tt_formatted_date, tt_folders$folders), - "?" - ) + closest <- tt_closest_date(tt_formatted_date, tt_folders$folders) + cli::cli_abort( + c( + "{tt_formatted_date} does not have TidyTuesday data.", + i = "Did you mean {closest}?" + ), + class = "tt-error-invalid_date" ) } tt_formatted_date } -tt_check_date.year <- function(x, week) { - tt_folders <- tt_weeks(x) +tt_check_date.year <- function(x, week, auth = gh::gh_token()) { + tt_folders <- tt_weeks(x, auth = auth) - if (!week %in% tt_folders$week_desc && week > 1) { - stop( - paste0( - "'", week, "' is not a valid TidyTuesday week entry for ", x, ".\n", - "Please enter a valid value for week:\n\t", - contiguous_weeks(tt_folders$week_desc) - ) + if (!week %in% tt_folders$week_desc && week >= 1) { + weeks <- contiguous_weeks(tt_folders$week_desc) + cli::cli_abort( + c( + "Week {week} does not have TidyTuesday data in {x}.", + i = "Please choose a valid week from {weeks}" + ), + class = "tt-error-invalid_date" ) } else if (week < 1) { - stop( - "Week entry must be a valid positive integer value." + cli::cli_abort( + c( + "{.arg week} must be a valid positive integer value." + ), + class = "tt-error-invalid_date" ) } tt_date <- tt_folders$folders[tt_folders$week_desc == week] - if (!tt_date %in% tt_folders[["folders"]] | + if (!tt_date %in% tt_folders[["folders"]] || !tt_folders[["data"]][tt_folders[["folders"]] == tt_date]) { - stop( - paste0( - "Week ", - week, - " of TidyTuesday for ", - x, - " does not have data available for download from github." - ) + cli::cli_abort( + "Week {week} of {x} does not have data available for download.", + class = "tt-error-invalid_date" ) } tt_date_format(tt_date) } +tt_check_year <- function(year, auth = gh::gh_token()) { + tt_yrs <- tt_years(auth = auth) + if (year %in% tt_yrs) { + return(invisible(year)) + } + cli::cli_abort( + c( + "TidyTuesday did not exist in {year} (or {year} is in the future).", + i = "Available years: {tt_yrs}" + ), + class = "tt-error-invalid_year" + ) +} + #' @importFrom stats aggregate na.pass setNames -tt_weeks <- function(year) { - tt_year <- tt_years() - - if (!as.character(year) %in% tt_year) { - stop( - paste0( - "TidyTuesday did not exist for ", - year, - ". \n\t TidyTuesday has only existed from ", - min(tt_year) - ), - " to ", - max(tt_year) - ) - } +tt_weeks <- function(year, auth = gh::gh_token()) { + tt_check_year(year, auth = auth) - ttmf <- tt_master_file() + ttmf <- tt_master_file(auth = auth) tt_week <- aggregate( data_files ~ Week + Date, @@ -114,14 +124,13 @@ tt_weeks <- function(year) { ) } -tt_years <- function() { - unique(tt_master_file()$year) +tt_years <- function(auth = gh::gh_token()) { + unique(tt_master_file(auth = auth)$year) } -#' @importFrom lubridate as_date is.Date valid_date <- function(x) { suppressWarnings({ - !is.na(lubridate::as_date(as.character(x))) | lubridate::is.Date(x) + lubridate::is.Date(x) || !is.na(lubridate::as_date(as.character(x))) }) } @@ -131,7 +140,6 @@ valid_year <- function(x) { }) } -#' @importFrom lubridate year month day ymd tt_date_format <- function(x) { lubridate::ymd(paste0( lubridate::year(x), diff --git a/R/tt_compile.R b/R/tt_compile.R deleted file mode 100644 index 30d8b2f..0000000 --- a/R/tt_compile.R +++ /dev/null @@ -1,27 +0,0 @@ -#' @title Get TidyTuesday readme and list of files and HTML based on the date -#' @param date date of TidyTuesday of interest -#' @param auth github Personal Access Token -#' -#' @importFrom lubridate year -#' @noRd -#' -tt_compile <- function(date, auth = github_pat()) { - ttmf <- tt_master_file() - - # list of files - files <- ttmf[ttmf$Date == date, c("data_files", "data_type", "delim")] - - readme <- try( - github_html(file.path("data", year(date), date, "readme.md"), auth = auth), - silent = TRUE - ) - - if (inherits(readme, "try-error")) { - readme <- NULL - } - - list( - files = files, - readme = readme - ) -} diff --git a/R/tt_download.R b/R/tt_download.R index 45cd0e2..f356253 100644 --- a/R/tt_download.R +++ b/R/tt_download.R @@ -1,100 +1,58 @@ -#' @title download tt data +#' Download TidyTuesday data #' -#' @description Download all or specific files identified in the tt dataset +#' Download all or specific files identified in a TidyTuesday dataset. #' -#' @param tt a `tt` object, output from \code{\link{tt_load_gh}} -#' @param files List the file names to download. Default to asking. -#' @param ... pass methods to the parsing functions. These will be passed to -#' ALL files, so be careful. -#' @param branch which branch to be downloading data from. Default and always -#' should be "master". -#' @param auth github Personal Access Token. See PAT section for more -#' information +#' @inheritParams shared-params +#' @inheritParams tt_download_file #' -#' @section PAT: -#' -#' A Github PAT is a personal Access Token. This allows for signed queries to -#' the github api, and increases the limit on the number of requests allowed -#' from 60 to 5000. Follow instructions at -#' to set the PAT. -#' -#' @return list of tibbles of the files downloaded. +#' @return A list of tibbles from the downloaded files. #' #' @export -#' -#' @importFrom lubridate year -#' #' @examplesIf interactive() +#' # Get the list of files for a week. #' tt_output <- tt_load_gh("2019-01-15") +#' +#' # Download a specific file. #' agencies <- tt_download(tt_output, files = "agencies.csv") tt_download <- function(tt, - files = c("All"), + files = "All", ..., - branch = "master", - auth = github_pat()) { - ## check internet connectivity and rate limit - if (!get_connectivity()) { - check_connectivity(rerun = TRUE) - if (!get_connectivity()) { - message("Warning - No Internet Connectivity") - return(NULL) - } - } - - ## Check Rate Limit - if (rate_limit_check() == 0) { - return(NULL) - } - - tt_date <- attr(tt, ".date") - tt_year <- year(tt_date) - file_info <- attr(tt, ".files") - - - # define which files to download - files <- - match.arg(files, - several.ok = TRUE, - choices = c("All", file_info$data_files) + auth = gh::gh_token()) { + files <- tt_check_files(tt, files) + cli::cli_h1("Downloading files") + files_len <- length(files) + tt_data <- purrr::imap(files, function(file, file_n) { + cli::cli_inform( + c(" " = "{file_n} of {files_len}: {.val {file}}"), + class = "tt-message-download" ) + tt_download_file(tt, file, ..., auth = auth) + }) + names(tt_data) <- tools::file_path_sans_ext(files) + return(tt_data) +} - if ("All" %in% files) { - files <- file_info$data_files - } - - message("--- Starting Download ---") - cat("\n") - - tt_sha <- github_sha(file.path("data", tt_year, tt_date), auth = auth) - - tt_data <- setNames( - vector("list", length = length(files)), - files +tt_check_files <- function(tt, files, call = rlang::caller_env()) { + all_files <- attr(tt, ".files")$data_files + files <- rlang::try_fetch( + { + files <- match.arg( + files, + choices = c("All", all_files), + several.ok = TRUE + ) + }, + error = function(cnd) { + cli::cli_abort( + "{.arg files} must be one or more of {.or {.val {all_files}}}, or {.val All}.", + class = "tt-error-bad_file", + call = call + ) + } ) - - for (file in files) { - dl_message <- sprintf( - "\tDownloading file %d of %d: `%s`\n", - which(files == file), - length(files), - file - ) - - cat(dl_message) - - tt_data[[file]] <- tt_download_file( - tt, - file, - ..., - sha = tt_sha$sha[tt_sha$path == file], - auth = auth - ) + if ("All" %in% files) { + files <- all_files } - - cat("\n") - message("--- Download complete ---") - - names(tt_data) <- tools::file_path_sans_ext(files) - tt_data + return(files) } diff --git a/R/tt_download_file.R b/R/tt_download_file.R index 0d24b89..7b86719 100644 --- a/R/tt_download_file.R +++ b/R/tt_download_file.R @@ -1,20 +1,11 @@ -#' @title Reads in TidyTuesday datasets from Github repo +#' Download a TidyTuesday dataset file #' -#' @description Reads in the actual data from the TidyTuesday github +#' Download an actual data file from the TidyTuesday github repository. #' -#' @param tt tt_gh object from tt_load_gh function -#' @param x index or name of data object to read in. string or int -#' @param ... pass methods to the parsing functions. These will be passed to -#' ALL files, so be careful. -#' @param auth github Personal Access Token. See PAT section for more -#' information -#' -#' @section PAT: -#' -#' A Github PAT is a personal Access Token. This allows for signed queries to -#' the github api, and increases the limit on the number of requests allowed -#' from 60 to 5000. Follow instructions at -#' to set the PAT. +#' @inheritParams shared-params +#' @param x Index or name of file to download. +#' @param ... Additional parameters to pass to the parsing functions. Note: +#' These arguments will be passed for all filetypes. #' #' @return tibble containing the contents of the file downloaded from git #' @export @@ -26,82 +17,91 @@ #' #' agencies <- tt_download_file(tt_gh, 1) #' launches <- tt_download_file(tt_gh, "launches.csv") -tt_download_file <- function(tt, x, ..., auth = github_pat()) { - ## check internet connectivity and rate limit - if (!get_connectivity()) { - check_connectivity(rerun = TRUE) - if (!get_connectivity()) { - message("Warning - No Internet Connectivity") - return(NULL) +tt_download_file <- function(tt, + x, + ..., + auth = gh::gh_token()) { + file_info <- attr(tt, ".files") + tt_date <- attr(tt, ".date") + call <- rlang::caller_env() + target <- tryCatch( + tt_subset_file_info(file_info, x), + error = function(e) { + cli::cli_abort( + "File {x} not found in the available files for {tt_date}.", + class = "tt-error-bad_index", + call = call + ) } - } - - ## Check Rate Limit - if (rate_limit_check() == 0) { - return(NULL) - } + ) + gh_response <- tt_download_file_raw(tt_date, target) + tt_parse_download( + gh_response, + data_type = file_info$data_type[file_info$data_files == target], + delim = file_info$delim[file_info$data_files == target], + ... + ) +} - suppressMessages({ - switch(class(x), - "character" = tt_download_file.character(tt, x, ...), - "numeric" = tt_download_file.numeric(tt, x, ...), - "integer" = tt_download_file.numeric(tt, x, ...), - stop(paste("No method for entry of class:", class(x))) - ) - }) +tt_subset_file_info <- function(file_info, x) { + data_files <- setNames(file_info$data_files, file_info$data_files) + return(data_files[[x]]) } -#' @importFrom lubridate year -#' @importFrom tools file_ext -tt_download_file.character <- function(tt, - x, - ..., - sha = NULL, - auth = github_pat()) { - file_info <- attr(tt, ".files") +tt_download_file_raw <- function(tt_date, target) { + tt_year <- lubridate::year(tt_date) + return(gh_get(file.path("data", tt_year, tt_date, target))) +} - if (x %in% file_info$data_files) { - tt_date <- attr(tt, ".date") - tt_year <- year(tt_date) +tt_parse_download <- function(gh_response, ..., data_type, delim = NA) { + switch(data_type, + "rds" = return(tt_parse_rds(gh_response, ...)), # nocov 3 examples + "xls" = return(tt_parse_excel(gh_response, ...)), # nocov 0 examples + "xlsx" = return(tt_parse_excel(gh_response, ...)), + "vgz" = return(tt_parse_vgz(gh_response, ...)), # nocov 12 examples + "zip" = rlang::abort("We cannot parse zip files without more information") # nocov 3 examples + ) + file_content <- gh_extract_text(gh_response) + delim <- tt_guess_delim(delim, data_type) + readr::read_delim(file_content, delim = delim, show_col_types = FALSE, ...) +} - blob <- - github_blob( - file.path("data", tt_year, tt_date, x), - as_raw = TRUE, - sha = sha, - auth = auth - ) +tt_parse_excel <- function(gh_response, ...) { + rlang::check_installed("readxl") + tt_parse_file(gh_response, parser_fn = readxl::read_excel, ...) +} - tt_parse_blob(blob, file_info = file_info[file_info$data_files == x, ], ...) - } else { - stop(paste0( - "That is not an available file for this TidyTuesday week!", - "\nAvailable Datasets:\n", - paste(attr(tt, ".files"), "\n\t", collapse = "") - )) - } - } +tt_parse_file <- function(gh_response, parser_fn, ...) { + file_content <- jsonlite::base64_dec(gh_response$content) + temp_file <- tempfile() + on.exit(unlink(temp_file)) + writeBin(file_content, temp_file) + parser_fn(temp_file, ...) +} -tt_download_file.numeric <- function(tt, x, ...) { - files <- attr(tt, ".files")$data_files - if (x > 0 && x <= length(files)) { - tt_download_file.character(tt, files[x], ...) - } else { - stop(paste0( - "That is not an available index for the files for this TidyTuesday week!", - "\nAvailable Datasets:\n\t", - paste0(seq(1, length(files)), ": ", files, "\n\t", collapse = "") - )) +tt_guess_delim <- function(delim, data_type) { + if (!is.na(delim)) { + return(delim) } + switch(tolower(data_type), + "csv" = ",", # nocov + "tsv" = "\t", + "," # nocov + ) } +# nocov start +tt_parse_rds <- function(gh_response, ...) { + tt_parse_file(gh_response, parser_fn = readRDS, ...) +} -#' @title utility to load RDA with out using assigned name in envir -#' -#' @param path path to RDA file -#' @noRd -read_rda <- function(path) { - load_env <- new.env() - load(path, envir = load_env) - load_env[[ls(load_env)[1]]] +tt_parse_vgz <- function(gh_response, ...) { + # These are csv.gz, so we save then parse. + tt_parse_file( + gh_response, + parser_fn = readr::read_csv, + show_col_types = FALSE, + ... + ) } +# nocov end diff --git a/R/tt_load.R b/R/tt_load.R index c029099..eda084f 100644 --- a/R/tt_load.R +++ b/R/tt_load.R @@ -1,61 +1,28 @@ -#' @title Load TidyTuesday data from Github +#' Load TidyTuesday data from Github #' -#' @param x string representation of the date of data to pull, in YYYY-MM-dd -#' format, or just numeric entry for year -#' @param week left empty unless x is a numeric year entry, in which case the -#' week of interest should be entered -#' @param download_files which files to download from repo. defaults and -#' assumes "All" for the week. -#' @param ... pass methods to the parsing functions. These will be passed to -#' ALL files, so be careful. -#' @param auth github Personal Access Token. See PAT section for more -#' information +#' @inheritParams shared-params +#' @inheritParams tt_download #' -#' @section PAT: -#' A Github PAT is a personal Access Token. This allows for signed queries to -#' the github api, and increases the limit on the number of requests allowed -#' from 60 to 5000. Follow instructions from -#' to set the PAT. -#' -#' @return tt_data object, which contains data that can be accessed via `$`, -#' and the readme for the weeks TidyTuesday through printing the object or -#' calling `readme()` -#' -#' @importFrom purrr map +#' @return `tt_data` object, which contains data that can be accessed via `$`, +#' and the readme for the week's TidyTuesday, which can be viewed by printing +#' the object or calling [readme()]. #' #' @examplesIf interactive() -#' # check to make sure there are requests still available -#' if (rate_limit_check(quiet = TRUE) > 30) { -#' tt_output <- tt_load("2019-01-15") -#' tt_output -#' agencies <- tt_output$agencies -#' } +#' tt_output <- tt_load("2019-01-15") +#' tt_output +#' agencies <- tt_output$agencies #' #' @export tt_load <- function(x, - week, - download_files = "All", + week = NULL, + files = "All", ..., - auth = github_pat()) { - ## check internet connectivity and rate limit - if (!get_connectivity()) { - check_connectivity(rerun = TRUE) - if (!get_connectivity()) { - message("Warning - No Internet Connectivity") - return(NULL) - } - } - - ## Check Rate Limit - if (rate_limit_check() == 0) { - return(NULL) - } - + auth = gh::gh_token()) { # download readme and identify files tt <- tt_load_gh(x, week, auth = auth) # download files - tt_data <- tt_download(tt, files = download_files, ..., auth = auth) + tt_data <- tt_download(tt, files = files, ..., auth = auth) ## return tt_data object structure( @@ -64,3 +31,16 @@ tt_load <- function(x, class = "tt_data" ) } + +#' @rdname printing +#' @importFrom tools file_path_sans_ext +#' @export +#' @return used to show readme and list names of available datasets +print.tt_data <- function(x, ...) { + readme(x) + message( + "Available datasets:\n\t", + paste(tools::file_path_sans_ext(names(x)), "\n\t", collapse = "") + ) + invisible(x) +} diff --git a/R/tt_load_gh.R b/R/tt_load_gh.R index f3defc9..bb28966 100644 --- a/R/tt_load_gh.R +++ b/R/tt_load_gh.R @@ -1,21 +1,10 @@ -#' @title Load TidyTuesday data from Github +#' Load TidyTuesday data from Github #' -#' @description Pulls the readme and URLs of the data from the TidyTuesday +#' Pulls the readme and URLs of the data from the TidyTuesday #' github folder based on the date provided #' -#' @param x string representation of the date of data to pull, in -#' YYYY-MM-dd format, or just numeric entry for year -#' @param week left empty unless x is a numeric year entry, in which case the -#' week of interest should be entered -#' @param auth github Personal Access Token. See PAT section for more -#' information -#' -#' @section PAT: -#' -#' A Github PAT is a personal Access Token. This allows for signed queries to -#' the github api, and increases the limit on the number of requests allowed -#' from 60 to 5000. Follow instructions from -#' to set the PAT. +#' @inheritParams gh_get +#' @inheritParams shared-params #' #' @return a 'tt' object. This contains the files available for the week, #' readme html, and the date of the TidyTuesday. @@ -32,54 +21,20 @@ #' files = "agencies.csv" #' ) #' } -tt_load_gh <- function(x, week, auth = github_pat()) { - ## check internet connectivity and rate limit - if (!get_connectivity()) { - check_connectivity(rerun = TRUE) - if (!get_connectivity()) { - message("Warning - No Internet Connectivity") - return(NULL) - } - } - - ## Check Rate Limit - if (rate_limit_check() == 0) { - return(NULL) # nocov - } - - if (missing(x)) { - on.exit({ - tt_available(auth = auth) - }) - stop("Enter either the year or date of the TidyTuesday Data to extract!") - } +tt_load_gh <- function(x, week = NULL, auth = gh::gh_token()) { + # Need the date before we start messaging. + tt_date <- tt_check_date(x, week, auth = auth) - # Check Dates - tt_date <- tt_check_date(x, week) - - message("--- Compiling #TidyTuesday Information for ", tt_date, " ----") - - # Find Files and extract readme - tt_compilation <- tt_compile(tt_date) - - n_files <- as.character(nrow(tt_compilation$files)) - - are_is <- switch(n_files, - "0" = "are", - "1" = "is", - "are" + cli::cli_inform( + "---- Compiling #TidyTuesday Information for {tt_date} ----" ) - file_s <- switch(n_files, - "0" = "files", - "1" = "file", - "files" + tt_compilation <- tt_compile(tt_date) + n_files <- NROW(tt_compilation$files) + cli::cli_inform( + "--- There {cli::qty(n_files)} {?are/is/are} {n_files} file{?s} available ---" ) - n_files <- ifelse(n_files == 0, "no", n_files) - - message("--- There ", are_is, " ", n_files, " ", file_s, " available ---") - structure( tt_compilation$files$data_files, ".files" = tt_compilation$files, @@ -88,3 +43,41 @@ tt_load_gh <- function(x, week, auth = github_pat()) { class = "tt" ) } + +#' Get TidyTuesday readme and list of files and HTML based on the date +#' +#' @inheritParams gh_get +#' @param date date of TidyTuesday of interest +#' +#' @keywords internal +tt_compile <- function(date, auth = gh::gh_token()) { + files <- tt_week_data_files(date, auth = auth) + readme <- tt_week_readme_html(date, auth = auth) + list( + files = files, + readme = readme + ) +} + +tt_week_data_files <- function(date, auth = gh::gh_token()) { + ttmf <- tt_master_file() + ttmf[ttmf$Date == date, c("data_files", "data_type", "delim")] +} + +tt_week_readme_html <- function(date, auth = gh::gh_token()) { + gh_get_readme_html( + file.path("data", lubridate::year(date), date), + auth = auth + ) +} + +#' @rdname printing +#' @export +#' @return `x`, invisibly. +print.tt <- function(x, ...) { + message( + "Available datasets in this TidyTuesday:\n\t", + paste(attr(x, ".files")$data_files, "\n\t", collapse = "") + ) + invisible(x) +} diff --git a/R/tt_master_file.R b/R/tt_master_file.R index ec5bcab..c8bba2a 100644 --- a/R/tt_master_file.R +++ b/R/tt_master_file.R @@ -3,75 +3,37 @@ #' Import or update dataset from github that records the entire list of objects #' from TidyTuesday #' +#' @inheritParams gh_get #' @param force force the update to occur even if the SHA matches -#' @param auth github Personal Access Token. #' +#' @return The tt master file, updated if necessary. #' @keywords internal -#' @importFrom utils read.csv -#' @noRd -#' -tt_update_master_file <- function(force = FALSE, auth = github_pat()) { - ## check internet connectivity and rate limit - if (!get_connectivity()) { # nocov start - check_connectivity(rerun = TRUE) - if (!get_connectivity()) { - message("Warning - No Internet Connectivity") - invisible(NULL) - } - } - - ## Check Rate Limit - if (rate_limit_check() == 0) { - invisible(NULL) - } # nocov end - - # get sha to see if need to update - sha_df <- github_sha("static") - sha <- sha_df$sha[sha_df$path == "tt_data_type.csv"] - - if (nrow(TT_MASTER_ENV$TT_MASTER_FILE) == 0 || - sha != attr(TT_MASTER_ENV$TT_MASTER_FILE, ".sha") || force) { - file_text <- github_contents("static/tt_data_type.csv", auth = auth) - content <- - read.csv( - text = file_text, - header = TRUE, - stringsAsFactors = FALSE - ) - attr(content, ".sha") <- sha - - tt_master_file(content) - } +tt_master_file <- function(force = FALSE, auth = gh::gh_token()) { + if (should_update_tt_master_file(force, auth)) { + content <- gh_get_csv("static/tt_data_type.csv") + TT_MASTER_ENV$TT_MASTER_FILE <- content } + return(TT_MASTER_ENV$TT_MASTER_FILE) +} -#' Get Master List of Files from Local Environment +#' Decide whether to update the master file #' -#' return or update tt master file -#' -#' @param assign value to overwrite the TT_MASTER_ENV$TT_MASTER_FILE contents -#' with this value +#' @inheritParams tt_master_file #' +#' @return Boolean indicating whether the master file should be updated. #' @keywords internal -#' @noRd -#' -tt_master_file <- function(assign = NULL) { - if (!is.null(assign)) { - TT_MASTER_ENV$TT_MASTER_FILE <- assign - } else { - ttmf <- TT_MASTER_ENV$TT_MASTER_FILE - if (nrow(ttmf) == 0) { - tt_update_master_file() - ttmf <- TT_MASTER_ENV$TT_MASTER_FILE - } - return(ttmf) - } +should_update_tt_master_file <- function(force = FALSE, auth = gh::gh_token()) { + force || + !nrow(TT_MASTER_ENV$TT_MASTER_FILE) || + is.null(attr(TT_MASTER_ENV$TT_MASTER_FILE, ".sha")) || + gh_get_sha_in_folder( + "static", + "tt_data_type.csv", + auth = auth + ) != attr(TT_MASTER_ENV$TT_MASTER_FILE, ".sha") } -#' The Master List of Files from TidyTuesday -#' -#' @keywords internal -#' @noRd -#' +# The Master List of Files from TidyTuesday TT_MASTER_ENV <- new.env() TT_MASTER_ENV$TT_MASTER_FILE <- data.frame( Week = integer(0), diff --git a/R/tt_parse.R b/R/tt_parse.R deleted file mode 100644 index 7cf0b0c..0000000 --- a/R/tt_parse.R +++ /dev/null @@ -1,70 +0,0 @@ -#' @title general utility to assist with parsing the raw data -#' -#' @param blob raw data to be parsed -#' @param ... args to pass to func -#' @param file_info data.frame of information about the blob being read -#' -#' @importFrom readxl read_xls read_xlsx -#' @importFrom readr read_delim -#' -#' @noRd -tt_parse_blob <- function(blob, ..., file_info) { - switch(tolower(file_info$data_type), - "xls" = tt_parse_binary(blob, readxl::read_xls, ..., - filename = file_info$data_files - ), - "xlsx" = tt_parse_binary(blob, readxl::read_xlsx, ..., - filename = file_info$data_files - ), - "rds" = tt_parse_binary(blob, readRDS, - filename = file_info$data_files - ), - tt_parse_text( - blob = blob, - func = readr::read_delim, - delim = ifelse(is.na(file_info[["delim"]]), - switch(tolower(file_info$data_type), - csv = ",", - tsv = "\t", - "," - ), - file_info[["delim"]] - ), - progress = FALSE, - ... - ) - ) -} - -# rda option just in case -# "rda" = tt_parse_binary(blob, read_rda, filename = file_info$data_files), - - -#' @title utility to assist with parsing the raw binary data -#' -#' @param blob raw data to be parsed -#' @param func the function to perform parsing of the file -#' @param ... args to pass to func -#' @param filename the original name of the file -#' @noRd - -tt_parse_binary <- function(blob, func, ..., filename) { - temp_file <- file.path(tempdir(), filename) - attr(blob, ".sha") <- NULL - writeBin(blob, temp_file) - on.exit(unlink(temp_file)) - func(temp_file, ...) -} - - -#' @title utility to assist with parsing the text data -#' -#' @param blob raw text data to be parsed -#' @param func the function to perform parsing of the file -#' @param delim what delimeter to use when parsing -#' @param progress should parsing process be shared. Assumed to be FALSE -#' @param ... args to pass to func -#' @noRd -tt_parse_text <- function(blob, func, delim, progress = FALSE, ...) { - func(blob, delim = delim, progress = progress, ...) -} diff --git a/R/utils.R b/R/utils.R index ec821fa..3136f16 100644 --- a/R/utils.R +++ b/R/utils.R @@ -18,38 +18,13 @@ #' print(tt_data) NULL -#' @rdname printing -#' @importFrom tools file_path_sans_ext -#' @export -#' @return used to show readme and list names of available datasets -print.tt_data <- function(x, ...) { - readme(x) - message( - "Available datasets:\n\t", - paste(tools::file_path_sans_ext(names(x)), "\n\t", collapse = "") - ) - invisible(x) -} - -#' @rdname printing -#' @importFrom tools file_path_sans_ext -#' @export -#' @return used to show available datasets for the TidyTuesday -print.tt <- function(x, ...) { - message( - "Available datasets in this TidyTuesday:\n\t", - paste(attr(x, ".files")$data_files, "\n\t", collapse = "") - ) - invisible(x) -} - -#' @title Readme HTML maker and Viewer +#' Readme HTML maker and Viewer +#' #' @param tt tt_data object for printing -#' @importFrom xml2 write_html -#' @return NULL +#' +#' @return Null, invisibly. Used to show readme of the downloaded TidyTuesday +#' dataset in the Viewer. #' @export -#' @return Does not return anything. Used to show readme of the downloaded -#' TidyTuesday dataset in the Viewer. #' @examplesIf interactive() #' if (rate_limit_check(quiet = TRUE) > 30) { #' tt_output <- tt_load_gh("2019-01-15") @@ -68,25 +43,29 @@ readme <- function(tt) { invisible(NULL) } -#' @importFrom rstudioapi viewer isAvailable -#' @noRd html_viewer <- function(url, is_interactive = interactive()) { if (!is_interactive) { invisible(NULL) - } else if (isAvailable()) { - viewer(url = url) + } else if (rstudio_is_available()) { + rstudio_viewer(url = url) } else { browse_url(url = url) } } +rstudio_is_available <- function() { + rlang::is_installed("rstudioapi") && rstudioapi::isAvailable() +} + # For mocking in tests. -#' @importFrom utils browseURL browse_url <- function(url) { - browseURL(url = url) # nocov + utils::browseURL(url = url) # nocov +} + +rstudio_viewer <- function(url) { + rstudioapi::viewer(url = url) } -#' @noRd contiguous_weeks <- function(week_vctr) { if (length(week_vctr) == 1) { text_out <- as.character(week_vctr) diff --git a/R/zzz.R b/R/zzz.R index 8b29ffd..e2cf37d 100644 --- a/R/zzz.R +++ b/R/zzz.R @@ -5,21 +5,5 @@ options("tidytuesdayR.tt_repo" = "rfordatascience/tidytuesday") options("tidytuesdayR.tt_testing" = FALSE) options("tidytuesdayR.tt_internet_connectivity" = NA) - check_connectivity() - rate_limit_update() -} - -## message only displayed on attachment -.onAttach <- function(libname, pkgname) { - if (!get_connectivity()) { - packageStartupMessage( - paste( - "--- WARNING ---", - "\n No Internet Connection was found -", - " Functions in {tidytuesdayR} that rely on an internet connection", - "will only return NULL" - ) - ) - } } # nocov end diff --git a/man/gh_get.Rd b/man/gh_get.Rd new file mode 100644 index 0000000..4d6fa18 --- /dev/null +++ b/man/gh_get.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/github_api.R +\name{gh_get} +\alias{gh_get} +\title{Get data from the tt github repo.} +\usage{ +gh_get(path, auth = gh::gh_token(), ...) +} +\arguments{ +\item{path}{Path within the rfordatascience/tidytuesday repo.} + +\item{...}{Additional parameters passed to \code{\link[gh:gh]{gh::gh()}}.} +} +\value{ +The GitHub response as parsed by \code{\link[gh:gh]{gh::gh()}}. +} +\description{ +Get data from the tt github repo. +} +\keyword{internal} diff --git a/man/github_page.Rd b/man/github_page.Rd new file mode 100644 index 0000000..8553685 --- /dev/null +++ b/man/github_page.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/tt_available.R +\name{github_page} +\alias{github_page} +\title{Create shell for HTML content from github} +\usage{ +github_page(page_content) +} +\arguments{ +\item{page_content}{html content in xml_document class} +} +\value{ +xml_document with github header +} +\description{ +Provide the necessary \if{html}{\out{}} section to wrap around raw html content read +from github. This is only actually used locally for printing, and may not be +necessary anymore. +} +\keyword{internal} diff --git a/man/github_pat.Rd b/man/github_pat.Rd deleted file mode 100644 index 6209c8b..0000000 --- a/man/github_pat.Rd +++ /dev/null @@ -1,31 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/github_api.R -\name{github_pat} -\alias{github_pat} -\title{Return the local user's GitHub Personal Access Token} -\usage{ -github_pat(quiet = TRUE) -} -\arguments{ -\item{quiet}{Should this be loud? default TRUE.} -} -\value{ -a character vector that is your Personal Access Token, or NULL -} -\description{ -Extract the GitHub Personal Access Token (PAT) from the system environment -for authenticated requests. -} -\section{PAT}{ - - - A Github 'PAT' is a Personal Access Token. This allows for signed queries - to the github api, and increases the limit on the number of requests - allowed from 60 to 5000. Follow instructions from - to set the PAT. -} - -\examples{ -## if you have a personal access token saved, this will return that value. -github_pat() -} diff --git a/man/last_tuesday.Rd b/man/last_tuesday.Rd index a031bb4..17e8ebb 100644 --- a/man/last_tuesday.Rd +++ b/man/last_tuesday.Rd @@ -7,7 +7,7 @@ last_tuesday(date = today(tzone = "America/New_York")) } \arguments{ -\item{date}{A date as a date object or character string in `YYYY-MM-DD` +\item{date}{A date as a date object or character string in \code{YYYY-MM-DD} format. Defaults to today's date.} } \description{ diff --git a/man/printing.Rd b/man/printing.Rd index 278ba52..ceba036 100644 --- a/man/printing.Rd +++ b/man/printing.Rd @@ -1,9 +1,9 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/utils.R -\name{printing} -\alias{printing} +% Please edit documentation in R/tt_load.R, R/tt_load_gh.R, R/utils.R +\name{print.tt_data} \alias{print.tt_data} \alias{print.tt} +\alias{printing} \title{print methods of the tt objects} \usage{ \method{print}{tt_data}(x, ...) @@ -18,13 +18,13 @@ \value{ used to show readme and list names of available datasets -used to show available datasets for the TidyTuesday +\code{x}, invisibly. } \description{ In tidytuesdayR there are nice print methods for the objects that were used to download and store the data from the TidyTuesday repo. They will always - print the available datasets/files. If there is a readme available, - it will try to display the TidyTuesday readme. +print the available datasets/files. If there is a readme available, +it will try to display the TidyTuesday readme. } \examples{ \dontshow{if (interactive()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} diff --git a/man/rate_limit_check.Rd b/man/rate_limit_check.Rd deleted file mode 100644 index 739f869..0000000 --- a/man/rate_limit_check.Rd +++ /dev/null @@ -1,26 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/github_api.R -\name{rate_limit_check} -\alias{rate_limit_check} -\title{Get Rate limit left for GitHub Calls} -\usage{ -rate_limit_check(n = 10, quiet = FALSE) -} -\arguments{ -\item{n}{number of requests that triggers a warning indicating the user is -close to the limit} - -\item{quiet}{should messages be returned when the rate limit is zero or less than n?} -} -\value{ -The number of remaining calls. -} -\description{ -The GitHub API limits the number of requests that can be sent within an hour. -This function returns the stored rate limits that are remaining. -} -\examples{ -\dontshow{if (interactive()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} -rate_limit_check() -\dontshow{\}) # examplesIf} -} diff --git a/man/readme.Rd b/man/readme.Rd index aec6e7e..badc405 100644 --- a/man/readme.Rd +++ b/man/readme.Rd @@ -10,8 +10,8 @@ readme(tt) \item{tt}{tt_data object for printing} } \value{ -Does not return anything. Used to show readme of the downloaded - TidyTuesday dataset in the Viewer. +Null, invisibly. Used to show readme of the downloaded TidyTuesday +dataset in the Viewer. } \description{ Readme HTML maker and Viewer diff --git a/man/shared-params.Rd b/man/shared-params.Rd new file mode 100644 index 0000000..329c7e6 --- /dev/null +++ b/man/shared-params.Rd @@ -0,0 +1,25 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/aaa-shared.R +\name{shared-params} +\alias{shared-params} +\title{Parameters used in multiple functions} +\arguments{ +\item{auth}{A GitHub token. See \code{\link[gh:gh_token]{gh::gh_token()}} for more details.} + +\item{tt}{A \code{tt} object, output from \code{\link[=tt_load_gh]{tt_load_gh()}}.} + +\item{files}{Which file names to download. Default "All" downloads all files +for the specified week.} + +\item{week}{Which week number to use within a given year. Only used when \code{x} +is a valid year.} + +\item{x}{The date of data to pull (in "YYYY-MM-dd" format), or the four-digit +year as a number.} + +\item{year}{What year of TidyTuesday to use} +} +\description{ +Reused parameter definitions are gathered here for easier editing. +} +\keyword{internal} diff --git a/man/should_update_tt_master_file.Rd b/man/should_update_tt_master_file.Rd new file mode 100644 index 0000000..9426942 --- /dev/null +++ b/man/should_update_tt_master_file.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/tt_master_file.R +\name{should_update_tt_master_file} +\alias{should_update_tt_master_file} +\title{Decide whether to update the master file} +\usage{ +should_update_tt_master_file(force = FALSE, auth = gh::gh_token()) +} +\arguments{ +\item{force}{force the update to occur even if the SHA matches} +} +\value{ +Boolean indicating whether the master file should be updated. +} +\description{ +Decide whether to update the master file +} +\keyword{internal} diff --git a/man/available.Rd b/man/tt_available.Rd similarity index 55% rename from man/available.Rd rename to man/tt_available.Rd index c8f0952..b20ee40 100644 --- a/man/available.Rd +++ b/man/tt_available.Rd @@ -1,29 +1,26 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/tt_available.R -\name{available} -\alias{available} +\name{tt_available} \alias{tt_available} \alias{tt_datasets} \title{Listing all available TidyTuesdays} \usage{ -tt_available(auth = github_pat()) +tt_available(auth = gh::gh_token()) -tt_datasets(year, auth = github_pat()) +tt_datasets(year, auth = gh::gh_token()) } \arguments{ -\item{auth}{github Personal Access Token. See PAT section for -more information} +\item{auth}{A GitHub token. See \code{\link[gh:gh_token]{gh::gh_token()}} for more details.} -\item{year}{numeric entry representing the year of TidyTuesday you want the -list of datasets for. Leave empty for most recent year.} +\item{year}{What year of TidyTuesday to use} } \value{ -`tt_available()` returns a 'tt_dataset_table_list', which is a -list of 'tt_dataset_table'. This class has special printing methods to show +\code{tt_available()} returns a \code{tt_dataset_table_list}, which is a +list of \code{tt_dataset_table}. This class has special printing methods to show the available data sets. -`tt_datasets()` returns a 'tt_dataset_table' object. This class has - special printing methods to show the available datasets for the year. +\code{tt_datasets()} returns a \code{tt_dataset_table} object. This class has +special printing methods to show the available datasets for the year. } \description{ The TidyTuesday project is a constantly growing repository of data sets. @@ -34,24 +31,15 @@ created to help maintain this philosophy. } \details{ To find out the available datasets for a specific year, the user -can use the function `tt_datasets()`. This function will either populate the +can use the function \code{tt_datasets()}. This function will either populate the Viewer or print to console all the available data sets and the week/date they are associated with. To get the whole list of all the data sets ever released by TidyTuesday, the -function `tt_available()` was created. This function will either populate the +function \code{tt_available()} was created. This function will either populate the Viewer or print to console all the available data sets ever made for TidyTuesday. } -\section{PAT}{ - - -A Github PAT is a Personal Access Token. This allows for signed queries to -the github api, and increases the limit on the number of requests allowed -from 60 to 5000. Follow instructions at - to set your PAT. -} - \examples{ \dontshow{if (interactive()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} # check to make sure there are requests still available diff --git a/man/tt_check_date.Rd b/man/tt_check_date.Rd new file mode 100644 index 0000000..48b3a87 --- /dev/null +++ b/man/tt_check_date.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/tt_check_date.R +\name{tt_check_date} +\alias{tt_check_date} +\title{Generate valid TidyTuesday URL} +\usage{ +tt_check_date(x, week = NULL, auth = gh::gh_token()) +} +\arguments{ +\item{x}{The date of data to pull (in "YYYY-MM-dd" format), or the four-digit +year as a number.} + +\item{week}{Which week number to use within a given year. Only used when \code{x} +is a valid year.} + +\item{auth}{A GitHub token. See \code{\link[gh:gh_token]{gh::gh_token()}} for more details.} +} +\description{ +Given multiple types of inputs, generate a valid TidyTuesday URL. +} +\keyword{internal} diff --git a/man/tt_compile.Rd b/man/tt_compile.Rd new file mode 100644 index 0000000..e8dae6d --- /dev/null +++ b/man/tt_compile.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/tt_load_gh.R +\name{tt_compile} +\alias{tt_compile} +\title{Get TidyTuesday readme and list of files and HTML based on the date} +\usage{ +tt_compile(date, auth = gh::gh_token()) +} +\arguments{ +\item{date}{date of TidyTuesday of interest} +} +\description{ +Get TidyTuesday readme and list of files and HTML based on the date +} +\keyword{internal} diff --git a/man/tt_date.Rd b/man/tt_date.Rd index 0f7f875..e27b71e 100644 --- a/man/tt_date.Rd +++ b/man/tt_date.Rd @@ -4,17 +4,20 @@ \alias{tt_date} \title{Get date of TidyTuesday, given the year and week} \usage{ -tt_date(year, week) +tt_date(year, week = NULL, auth = gh::gh_token()) } \arguments{ -\item{year}{what year of TidyTuesday to use} +\item{year}{What year of TidyTuesday to use} -\item{week}{what week of Tidytuesday to use} +\item{week}{Which week number to use within a given year. Only used when \code{x} +is a valid year.} + +\item{auth}{A GitHub token. See \code{\link[gh:gh_token]{gh::gh_token()}} for more details.} } \description{ -Sometimes we don't know the date we want, but we do know the -week. this function provides the ability to pass the year and week we are -interested in to get the correct date +Sometimes we don't know the date we want, but we do know the week. This +function provides the ability to pass the year and week we are interested in +to get the correct date } \examples{ \dontshow{if (interactive()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} diff --git a/man/tt_download.Rd b/man/tt_download.Rd index 24352e1..db21916 100644 --- a/man/tt_download.Rd +++ b/man/tt_download.Rd @@ -2,42 +2,33 @@ % Please edit documentation in R/tt_download.R \name{tt_download} \alias{tt_download} -\title{download tt data} +\title{Download TidyTuesday data} \usage{ -tt_download(tt, files = c("All"), ..., branch = "master", auth = github_pat()) +tt_download(tt, files = "All", ..., auth = gh::gh_token()) } \arguments{ -\item{tt}{a `tt` object, output from \code{\link{tt_load_gh}}} +\item{tt}{A \code{tt} object, output from \code{\link[=tt_load_gh]{tt_load_gh()}}.} -\item{files}{List the file names to download. Default to asking.} +\item{files}{Which file names to download. Default "All" downloads all files +for the specified week.} -\item{...}{pass methods to the parsing functions. These will be passed to -ALL files, so be careful.} +\item{...}{Additional parameters to pass to the parsing functions. Note: +These arguments will be passed for all filetypes.} -\item{branch}{which branch to be downloading data from. Default and always -should be "master".} - -\item{auth}{github Personal Access Token. See PAT section for more -information} +\item{auth}{A GitHub token. See \code{\link[gh:gh_token]{gh::gh_token()}} for more details.} } \value{ -list of tibbles of the files downloaded. +A list of tibbles from the downloaded files. } \description{ -Download all or specific files identified in the tt dataset -} -\section{PAT}{ - - -A Github PAT is a personal Access Token. This allows for signed queries to -the github api, and increases the limit on the number of requests allowed -from 60 to 5000. Follow instructions at - to set the PAT. +Download all or specific files identified in a TidyTuesday dataset. } - \examples{ \dontshow{if (interactive()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} +# Get the list of files for a week. tt_output <- tt_load_gh("2019-01-15") + +# Download a specific file. agencies <- tt_download(tt_output, files = "agencies.csv") \dontshow{\}) # examplesIf} } diff --git a/man/tt_download_file.Rd b/man/tt_download_file.Rd index b90a2b9..28a79c1 100644 --- a/man/tt_download_file.Rd +++ b/man/tt_download_file.Rd @@ -2,36 +2,26 @@ % Please edit documentation in R/tt_download_file.R \name{tt_download_file} \alias{tt_download_file} -\title{Reads in TidyTuesday datasets from Github repo} +\title{Download a TidyTuesday dataset file} \usage{ -tt_download_file(tt, x, ..., auth = github_pat()) +tt_download_file(tt, x, ..., auth = gh::gh_token()) } \arguments{ -\item{tt}{tt_gh object from tt_load_gh function} +\item{tt}{A \code{tt} object, output from \code{\link[=tt_load_gh]{tt_load_gh()}}.} -\item{x}{index or name of data object to read in. string or int} +\item{x}{Index or name of file to download.} -\item{...}{pass methods to the parsing functions. These will be passed to -ALL files, so be careful.} +\item{...}{Additional parameters to pass to the parsing functions. Note: +These arguments will be passed for all filetypes.} -\item{auth}{github Personal Access Token. See PAT section for more -information} +\item{auth}{A GitHub token. See \code{\link[gh:gh_token]{gh::gh_token()}} for more details.} } \value{ tibble containing the contents of the file downloaded from git } \description{ -Reads in the actual data from the TidyTuesday github +Download an actual data file from the TidyTuesday github repository. } -\section{PAT}{ - - -A Github PAT is a personal Access Token. This allows for signed queries to -the github api, and increases the limit on the number of requests allowed -from 60 to 5000. Follow instructions at - to set the PAT. -} - \examples{ \dontshow{if (interactive()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} tt_gh <- tt_load_gh("2019-01-15") diff --git a/man/tt_load.Rd b/man/tt_load.Rd index 02430d6..e1f0558 100644 --- a/man/tt_load.Rd +++ b/man/tt_load.Rd @@ -4,47 +4,35 @@ \alias{tt_load} \title{Load TidyTuesday data from Github} \usage{ -tt_load(x, week, download_files = "All", ..., auth = github_pat()) +tt_load(x, week = NULL, files = "All", ..., auth = gh::gh_token()) } \arguments{ -\item{x}{string representation of the date of data to pull, in YYYY-MM-dd -format, or just numeric entry for year} +\item{x}{The date of data to pull (in "YYYY-MM-dd" format), or the four-digit +year as a number.} -\item{week}{left empty unless x is a numeric year entry, in which case the -week of interest should be entered} +\item{week}{Which week number to use within a given year. Only used when \code{x} +is a valid year.} -\item{download_files}{which files to download from repo. defaults and -assumes "All" for the week.} +\item{files}{Which file names to download. Default "All" downloads all files +for the specified week.} -\item{...}{pass methods to the parsing functions. These will be passed to -ALL files, so be careful.} +\item{...}{Additional parameters to pass to the parsing functions. Note: +These arguments will be passed for all filetypes.} -\item{auth}{github Personal Access Token. See PAT section for more -information} +\item{auth}{A GitHub token. See \code{\link[gh:gh_token]{gh::gh_token()}} for more details.} } \value{ -tt_data object, which contains data that can be accessed via `$`, - and the readme for the weeks TidyTuesday through printing the object or - calling `readme()` +\code{tt_data} object, which contains data that can be accessed via \code{$}, +and the readme for the week's TidyTuesday, which can be viewed by printing +the object or calling \code{\link[=readme]{readme()}}. } \description{ Load TidyTuesday data from Github } -\section{PAT}{ - -A Github PAT is a personal Access Token. This allows for signed queries to -the github api, and increases the limit on the number of requests allowed -from 60 to 5000. Follow instructions from - to set the PAT. -} - \examples{ \dontshow{if (interactive()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} -# check to make sure there are requests still available -if (rate_limit_check(quiet = TRUE) > 30) { - tt_output <- tt_load("2019-01-15") - tt_output - agencies <- tt_output$agencies -} +tt_output <- tt_load("2019-01-15") +tt_output +agencies <- tt_output$agencies \dontshow{\}) # examplesIf} } diff --git a/man/tt_load_gh.Rd b/man/tt_load_gh.Rd index e2195e9..bff7578 100644 --- a/man/tt_load_gh.Rd +++ b/man/tt_load_gh.Rd @@ -4,35 +4,25 @@ \alias{tt_load_gh} \title{Load TidyTuesday data from Github} \usage{ -tt_load_gh(x, week, auth = github_pat()) +tt_load_gh(x, week = NULL, auth = gh::gh_token()) } \arguments{ -\item{x}{string representation of the date of data to pull, in -YYYY-MM-dd format, or just numeric entry for year} +\item{x}{The date of data to pull (in "YYYY-MM-dd" format), or the four-digit +year as a number.} -\item{week}{left empty unless x is a numeric year entry, in which case the -week of interest should be entered} +\item{week}{Which week number to use within a given year. Only used when \code{x} +is a valid year.} -\item{auth}{github Personal Access Token. See PAT section for more -information} +\item{auth}{A GitHub token. See \code{\link[gh:gh_token]{gh::gh_token()}} for more details.} } \value{ a 'tt' object. This contains the files available for the week, - readme html, and the date of the TidyTuesday. +readme html, and the date of the TidyTuesday. } \description{ Pulls the readme and URLs of the data from the TidyTuesday github folder based on the date provided } -\section{PAT}{ - - -A Github PAT is a personal Access Token. This allows for signed queries to -the github api, and increases the limit on the number of requests allowed -from 60 to 5000. Follow instructions from - to set the PAT. -} - \examples{ \dontshow{if (interactive()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf} # check to make sure there are requests still available diff --git a/man/tt_master_file.Rd b/man/tt_master_file.Rd new file mode 100644 index 0000000..a2595d6 --- /dev/null +++ b/man/tt_master_file.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/tt_master_file.R +\name{tt_master_file} +\alias{tt_master_file} +\title{Get Master List of Files from TidyTuesday} +\usage{ +tt_master_file(force = FALSE, auth = gh::gh_token()) +} +\arguments{ +\item{force}{force the update to occur even if the SHA matches} +} +\value{ +The tt master file, updated if necessary. +} +\description{ +Import or update dataset from github that records the entire list of objects +from TidyTuesday +} +\keyword{internal} diff --git a/man/Available_Printing.Rd b/man/tt_print.Rd similarity index 84% rename from man/Available_Printing.Rd rename to man/tt_print.Rd index 26aae8c..1188d0f 100644 --- a/man/Available_Printing.Rd +++ b/man/tt_print.Rd @@ -1,7 +1,7 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/tt_available.R -\name{Available_Printing} -\alias{Available_Printing} +\name{tt_print} +\alias{tt_print} \alias{print.tt_dataset_table} \alias{print.tt_dataset_table_list} \title{Printing Utilities for Listing Available Datasets} @@ -15,10 +15,10 @@ \item{...}{further arguments passed to or from other methods.} -\item{is_interactive}{is the console interactive?} +\item{is_interactive}{Whether the function is being used interactively.} } \value{ -used for side effects to show the available datasets for the year or for all time. +\code{x}, invisibly } \description{ printing utilities for showing the available datasets for a specific year or diff --git a/readme.md b/readme.md index 7c4a1f0..ce84409 100644 --- a/readme.md +++ b/readme.md @@ -6,7 +6,7 @@ Ellis Hughes [![CRAN status](https://www.r-pkg.org/badges/version/tidytuesdayR)](https://CRAN.R-project.org/package=tidytuesdayR) [![R build status](https://github.com/thebioengineer/tidytuesdayR/workflows/R-CMD-check/badge.svg)](https://github.com/thebioengineer/tidytuesdayR/actions) [![Coverage -status](https://codecov.io/gh/thebioengineer/tidytuesdayR/branch/master/graph/badge.svg)](https://codecov.io/github/thebioengineer/tidytuesdayR?branch=master) +status](https://codecov.io/gh/thebioengineer/tidytuesdayR/branch/master/graph/badge.svg)](https://app.codecov.io/github/thebioengineer/tidytuesdayR?branch=master) [![Downloads from the RStudio CRAN mirror](http://cranlogs.r-pkg.org/badges/tidytuesdayR)](https://cran.r-project.org/package=tidytuesdayR) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) diff --git a/tests/testthat/_snaps/tt_load.md b/tests/testthat/_snaps/tt_load.md index 6e073c2..13d1be0 100644 --- a/tests/testthat/_snaps/tt_load.md +++ b/tests/testthat/_snaps/tt_load.md @@ -1,31 +1,10 @@ -# tt_load loads all data available +# print.tt_data lists the available datasets Code - tt_obj <- tt_load("2019-01-15") + test_result <- print(tt_data) Message - --- Compiling #TidyTuesday Information for 2019-01-15 ---- - --- There are 2 files available --- - --- Starting Download --- - Output - - Downloading file 1 of 2: `agencies.csv` - Downloading file 2 of 2: `launches.csv` - - Message - --- Download complete --- - -# tt_load loads excel files properly - - Code - tt_obj <- tt_load("2018-04-02") - Message - --- Compiling #TidyTuesday Information for 2018-04-02 ---- - --- There is 1 file available --- - --- Starting Download --- - Output - - Downloading file 1 of 1: `us_avg_tuition.xlsx` - - Message - --- Download complete --- + Available datasets: + agencies + launches + diff --git a/tests/testthat/_snaps/tt_load_gh.md b/tests/testthat/_snaps/tt_load_gh.md new file mode 100644 index 0000000..a92e920 --- /dev/null +++ b/tests/testthat/_snaps/tt_load_gh.md @@ -0,0 +1,10 @@ +# print.tt lists all the available files for the weeks tt + + Code + test_result <- print(tt) + Message + Available datasets in this TidyTuesday: + agencies.csv + launches.csv + + diff --git a/tests/testthat/_snaps/utils.md b/tests/testthat/_snaps/utils.md deleted file mode 100644 index f32543a..0000000 --- a/tests/testthat/_snaps/utils.md +++ /dev/null @@ -1,25 +0,0 @@ -# print.tt_data lists the available datasets - - Code - test_result <- print(tt_data) - Message - Available datasets: - value1 - value2 - - -# print.tt lists all the available files for the weeks tt - - Code - test_result <- print(tt_obj) - Message - Available datasets in this TidyTuesday: - brexit.csv - corbyn.csv - dogs.csv - eu_balance.csv - pensions.csv - trade.csv - women_research.csv - - diff --git a/tests/testthat/fixtures/create_fixtures.R b/tests/testthat/fixtures/create_fixtures.R new file mode 100644 index 0000000..c1cfc01 --- /dev/null +++ b/tests/testthat/fixtures/create_fixtures.R @@ -0,0 +1,74 @@ +# Fixtures used in various tests, created by actually hitting APIs while online. +ttmf <- tt_master_file() +saveRDS(ttmf, test_path("fixtures", "ttmf.rds")) + +static_contents <- gh_get("static") |> + purrr::keep(~ .x$name %in% c("tt_data_type.csv", "tt_logo.png")) +saveRDS(static_contents, test_path("fixtures", "static_contents.rds")) +tt_data_type_response <- gh_get("static/tt_data_type.csv") +saveRDS(tt_data_type_response, test_path("fixtures", "tt_data_type_response.rds")) +folder2020_response <- gh_get("data/2020") +saveRDS(folder2020_response, test_path("fixtures", "folder2020_response.rds")) +readme2020_response <- gh_get( + "data/2020/readme.md", + .accept = "application/vnd.github.v3.html" +) +saveRDS(readme2020_response, test_path("fixtures", "readme2020_response.rds")) + +# Year readmes +readme2018 <- gh_get_readme_html(file.path("data", 2018)) +xml2::write_html(readme2018, test_path("fixtures", "readme2018.html")) +readme2019 <- gh_get_readme_html(file.path("data", 2019)) +xml2::write_html(readme2019, test_path("fixtures", "readme2019.html")) +readme2020 <- gh_get_readme_html(file.path("data", 2020)) +xml2::write_html(readme2020, test_path("fixtures", "readme2020.html")) +readme2021 <- gh_get_readme_html(file.path("data", 2021)) +xml2::write_html(readme2021, test_path("fixtures", "readme2021.html")) +readme2022 <- gh_get_readme_html(file.path("data", 2022)) +xml2::write_html(readme2022, test_path("fixtures", "readme2022.html")) +readme2023 <- gh_get_readme_html(file.path("data", 2023)) +xml2::write_html(readme2023, test_path("fixtures", "readme2023.html")) +readme2024 <- gh_get_readme_html(file.path("data", 2024)) +xml2::write_html(readme2024, test_path("fixtures", "readme2024.html")) + +# Week readmes +save_readme <- function(date) { + tt_year <- lubridate::year(date) + readme <- gh_get_readme_html(file.path("data", tt_year, date)) + xml2::write_html(readme, test_path("fixtures", glue::glue("readme{date}.html"))) +} +save_readme("2019-01-15") +save_readme("2019-04-02") +save_readme("2019-04-09") +save_readme("2020-04-21") +save_readme("2022-05-10") + +# Files +save_file_response <- function(tt_date, target) { + file <- glue::glue("response-{tt_date}-{target}.rds") + path <- test_path("fixtures", file) + saveRDS( + tt_download_file_raw(tt_date, target), + path + ) +} +save_file_response("2019-01-15", "agencies.csv") +save_file_response("2019-01-15", "launches.csv") +save_file_response("2018-04-02", "us_avg_tuition.xlsx") +save_file_response("2022-05-10", "nyt_titles.tsv") + + +simple_tt_data <- structure( + list( + value1 = "value1", + value2 = "value2" + ), + .tt = structure( + c("value1.csv", "value2.csv"), + .files = c("value1.csv", "value2.csv"), + .readme = NULL, + class = "tt_gh" + ), + class = "tt_data" +) +saveRDS(simple_tt_data, test_path("fixtures", "simple_tt_data.rds")) diff --git a/tests/testthat/fixtures/folder2020_response.rds b/tests/testthat/fixtures/folder2020_response.rds new file mode 100644 index 0000000..61063aa Binary files /dev/null and b/tests/testthat/fixtures/folder2020_response.rds differ diff --git a/tests/testthat/fixtures/readme2018.html b/tests/testthat/fixtures/readme2018.html new file mode 100644 index 0000000..3222f11 --- /dev/null +++ b/tests/testthat/fixtures/readme2018.html @@ -0,0 +1,309 @@ + +
+

Archive of datasets and articles from the 2018 series of #TidyTuesday events.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WeekDateDataSourceArticle
12018-04-03US Tuition Costsonlinembapage.comonlinembapage.com
22018-04-10NFL Positional SalariesSpotrac.comfivethirtyeight.com
32018-04-17Global Mortalityourworldindata.orgourworldindata.org
42018-04-24Australian Salaries by Genderdata.gov.audata.gov.au
52018-05-01ACS Census Data (2015) +census.gov , Kaggle +No article
62018-05-08Global Coffee Chains +Starbucks: kaggle.com , Tim Horton: timhortons.com , Dunkin Donuts: odditysoftware.com +flowingdata.com
72018-05-15Star Wars Surveyfivethirtyeight packagefivethirtyeight.com
82018-05-22US Honey Production +USDA, Kaggle.com +Bee Culture
92018-05-29Comic book charactersFiveThirtyEight packageFiveThirtyEight.com
102018-06-05Biketown BikeshareBiketownPDX +Biketown cascadiaRconf/cRaggy +
112018-06-12FIFA World Cup AudienceFiveThirtyEight packageFiveThirtyEight.com
122018-06-19Hurricanes & Puerto RicoFiveThirtyEight packageFiveThirtyEight.com
132018-06-26Alcohol ConsumptionFiveThirtyEight packageFiveThirtyEight.com
142018-07-03Global Life Expectancyourworldindata.orgourworldindata.org
152018-07-10Craft Beer USAdata.worldthrillist.com
162018-07-17Exercise USACDCCDC - National Health Statistics Reports
172018-07-24p-hack-athon collaborationsimplystatistics.orgp-hack-athon
182018-07-31Dallas Animal Shelter FY2017Dallas OpenDataDallas OpenData FY2017 Summary
192018-08-07Airline SafetyFiveThirtyEight Package538 - Airline Safety
202018-08-14Russian Troll TweetsFiveThirtyEight.com538 - Russian Troll Tweets
212018-08-21California FiresBuzzFeed.com +BuzzFeed News - California Fires, RMarkdown +
222018-08-28NFL Statspro-football-reference.comeldo.co
232018-09-04Fast Food Caloriesfastfoodnutrition.orgfranchiseopportunities.com
242018-09-11Cats vs Dogs (USA)data.worldWashington Post
252018-09-18US Flights or Hypoxia +faa.gov
Soaring Society of America +
+travelweekly.com
SSA - Hypoxia +
262018-09-25Global Invasive Species +Paini et al, 2016
griis.org +
+Paini et al, 2016
griis.org +
272018-10-02US Birthsfivethirtyeight package538 - Births
282018-10-09US Voter Turnoutdata.worldStar Tribune
292018-10-16College Major & Incomefivethirtyeight/ACSfivethirtyeight
302018-10-23Horror Movie Profitthe-numbers.comfivethirtyeight
312018-10-30R and R package downloadscran-logs.rstudio.comNo Article
322018-11-06US Wind Farm locationsusgs.govWind Market Reports
332018-11-13Malaria Data +ourworldindata.org
Malaria Data Challenge +
+ourworldindata.org malariaAtlas +
342018-11-20Thanksgiving Dinner or Transgender Day of Remembrance +fivethirtyeight
TDoR +
+fivethirtyeight
TDoR +
352018-11-27Baltimore BridgesFederal Highway AdministrationBaltimore Sun
362018-12-04Medium Article MetadataKaggle.comTidyText package
372018-12-11NYC Restaurant inspectionsNYC OpenData/NYC Health DepartmentFiveThirtyEight
382018-12-18Cetaceans DataThe PuddingThe Pudding
diff --git a/tests/testthat/fixtures/readme2019-01-15.html b/tests/testthat/fixtures/readme2019-01-15.html new file mode 100644 index 0000000..4b027bd --- /dev/null +++ b/tests/testthat/fixtures/readme2019-01-15.html @@ -0,0 +1,184 @@ + +
+

Data Info

+ +
+

Data comes from The Economist GitHub. The following information was taken directly from their GitHub readme.

+
+

Space launches

+ +
+

These are the data behind the "space launches" article, The space race is dominated by new contenders.

+

Principal data came from the Jonathan McDowell's JSR Launch Vehicle Database, available online at http://www.planet4589.org/space/lvdb/index.html.

+
+

Data files

+ +
+ + + + + + + + + + + + + + + + + + +
FileContentsSource
agenciesSpace launch providersJonathan McDowell; The Economist +
launchesIndividual space launchesJonathan McDowell; The Economist +
+

Codebook

+ +
+
+

launches

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variabledefinition
tagHarvard or COSPAR id of launch
JD +Julian Date of launch
launch_datedate of launch
launch_yearyear of launch
typetype of launch vehicle
variantvariant of launch vehicle
mission
agencylaunching agency
state_codelaunching agency's state
categorysuccess (O) or failure (F)
agency_typetype of agency
+

agencies

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variabledefinition
agencyorg phase code
countnumber of launches
ucodeorg Ucode
state_coderesponsible state
typetype of org
classclass of org
tstartorg/phase founding date
tstoporg/phase ending date
short_nameshort name
namefull name
locationplain english location
longitude
latitude
erroruncertainty in long/lat
parentparent org
short_english_nameenglish short name
english_nameenglish full name
unicode_nameunicode full name
agency_typetype of agency
diff --git a/tests/testthat/fixtures/readme2019-04-02.html b/tests/testthat/fixtures/readme2019-04-02.html new file mode 100644 index 0000000..1fc2665 --- /dev/null +++ b/tests/testthat/fixtures/readme2019-04-02.html @@ -0,0 +1,51 @@ + +
+

Seattle Bike Counters

+ +
+

"Seattle Department of Transportation has 12 bike counters (four of which also count pedestrians) located on neighborhood greenways, multi-use trails, at the Fremont Bridge and on SW Spokane Street. The counters are helping us create a ridership baseline in 2014 that can be used to assess future years and make sure our investments are helping us to reach our goal of quadrupling ridership by 2030. Read our Bicycle Master Plan to learn more about what Seattle is doing to create a citywide bicycle network."

+

The Seattle Times recently covered What we can learn from Seattle's bike-counter data. They have some elegant data-visualizations there!

+
+

Get the Data!

+ +
+
bike_traffic <- readr::read_csv("https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-04-02/bike_traffic.csv")
+
+
+

Data Dictionary

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variableclassdescription
datedate (mdy hms am/pm)Date of data upload
crossingcharacterThe Street crossing/intersection
directioncharacterNorth/South/East/West - varies by crossing
bike_countdoubleNumber of bikes counted for each hour window
ped_countdoubleNumber of pedestrians counted for each hour window
diff --git a/tests/testthat/fixtures/readme2019-04-09.html b/tests/testthat/fixtures/readme2019-04-09.html new file mode 100644 index 0000000..2850715 --- /dev/null +++ b/tests/testthat/fixtures/readme2019-04-09.html @@ -0,0 +1,192 @@ + +
+

Tennis Grand Slams

+ +
+

A few exciting Tennis-related datasets this week, all of which come courtesy of Wikipedia! "All records are based on data from the Association of Tennis Professionals (ATP), the International Tennis Federation (ITF), and the official websites of the four Grand Slam tournaments." - Wikipedia

+

"The Open Era is the current era of professional tennis. It began in 1968 when the Grand Slam tournaments allowed professional players to compete with amateurs, ending the division that had persisted since the dawn of the sport in the 19th century." - Wikipedia

+

"The Grand Slam tournaments, also called majors, are the four most important annual tennis events. They offer the most ranking points, prize money, public and media attention, the greatest strength and size of field, and greater number of "best of" sets for men. The Grand Slam itinerary consists of the Australian Open in mid January, the French Open around late May through early June, Wimbledon in June-July, and the US Open in August-September. Each tournament is played over a two-week period. The Australian and United States tournaments are played on hard courts, the French on clay, and Wimbledon on grass." - Wikipedia

+

The court surface could be an interesting additional piece of data that I have left out, you could add it in with some clever case_when() calls.

+

I have tamed the datasets pretty thoroughly but there are several ways you could combine, summarize, or otherwise plot the data for this week. I have a spoiler/hint at the bottom if you get stuck with combining! I also left my relatively rough cleaning and data collection .rmd in, and have uploaded it.

+
+

DISCLAIMER

+ +
+

The Grand Slam tournaments happen in a rough 2-week timeframe as mentioned above, however I was unable to find a nice dataset that covered the specific day of both the men's and women's finals. As such I have used a static date that estimates the date of the championship match, and likely has an error of a few days for each tournament. However, this is still useful for determining the approximate age of the player at each tournament.

+
+

Data Sources:

+ +
+

Women's Timeline
Men's Timeline
Date of Birth/First Title
Women's Singles Champs
Men's Singles Champs

+
+

Article

+ +
+

The Financial Times Article has lots of great inspiration plots, but uses different datasets. Specifically the author used match wins vs tournament wins and tennis rankings over time rather than tournament placing. The author John Burn-Murdoch is a great follow for DataViz and visual storytelling resources, including R and D3.

+

Additionally a gist and Tweet from John Burn-Murdoch goes through the process of collecting some men's tennis data, and then how he iterated across several plots. It's worth taking a look at for either code-inspiration for this week or as a general example of plot iteration for publication.

+
+

Get the Data!

+ +
+
player_dob <- readr::read_csv("https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-04-09/player_dob.csv")
+
+grand_slams <- readr::read_csv("https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-04-09/grand_slams.csv")
+
+grand_slam_timeline <- readr::read_csv("https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-04-09/grand_slam_timeline.csv")
+
+
+

Data Dictionaries

+ +
+
    +
  • grand_slam_timeline
  • +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variableclassdescription
playercharacterPlayer Name
yearintegerTournament Year
tournamentcharacterTournament name
outcomecharacterOutcome - where player was eliminated, was absent, or won - there are some NAs
gendercharacterMale/Female for this dataset
    +
  • grand_slams
  • +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variableclassdescription
yearintegerTournament Year
grand_slamcharacterTournament name
namecharacterPlayer Name
rolling_win_countintegerRolling win = cumulative sum of wins across time/player
tournament_datedate +Approximate Tournament Date (ymd)
gendercharacterMale/Female for this dataset
    +
  • player_dob
  • +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variableclassdescription
namecharacterPlayer name
grand_slamcharacterTournament for first major title win
date_of_birthdatedate of birth (ymd)
date_of_first_titledatedate of first major title win (ymd)
agedoubleAge in days
+

Spoiler

+ +
+

To get the tournament performance at age rather than simply across time we need to join the Date of Birth dataset with the grandslam dataset.

+
age_slams_comb <- left_join(grand_slams, player_dob, by = c("name")) %>% 
+  mutate(age = tournament_date - date_of_birth) %>% # needs to be datetime
+  group_by(name, age, gender) %>% 
+  summarize(counts = n()) %>% 
+  group_by(name) %>% 
+  mutate(total_wins = cumsum(counts)) %>% 
+  arrange(desc(total_wins))
+
+# test plot
+age_slams_comb %>% 
+  ggplot(aes(x = age, y = total_wins, group = name)) +
+  geom_point() +
+  geom_step() +
+  facet_wrap(~gender)
+
+
diff --git a/tests/testthat/fixtures/readme2019.html b/tests/testthat/fixtures/readme2019.html new file mode 100644 index 0000000..9caf498 --- /dev/null +++ b/tests/testthat/fixtures/readme2019.html @@ -0,0 +1,569 @@ + +

+
+

A weekly social data project in R

+ +
+

A weekly data project aimed at the R ecosystem. As this project was borne out of the R4DS Online Learning Community and the R for Data Science textbook, an emphasis was placed on understanding how to summarize and arrange data to make meaningful charts with ggplot2, tidyr, dplyr, and other tools in the tidyverse ecosystem. However, any code-based methodology is welcome - just please remember to share the code used to generate the results.

+
+

Join the R4DS Online Learning Community in the weekly #TidyTuesday event! Every week we post a raw dataset, a chart or article related to that dataset, and ask you to explore the data. While the dataset will be "tamed", it will not always be tidy! As such you might need to apply various R for Data Science techniques to wrangle the data into a true tidy format. The goal of TidyTuesday is to apply your R skills, get feedback, explore other's work, and connect with the greater #RStats community! As such we encourage everyone of all skills to participate!

+

We will have many sources of data and want to emphasize that no causation is implied. There are various moderating variables that affect all data, many of which might not have been captured in these datasets. As such, our guidelines are to use the data provided to practice your data tidying and plotting techniques. Participants are invited to consider for themselves what nuancing factors might underlie these relationships.

+

The intent of Tidy Tuesday is to provide a safe and supportive forum for individuals to practice their wrangling and data visualization skills independent of drawing conclusions. While we understand that the two are related, the focus of this practice is purely on building skills with real-world data.

+

All data will be posted on the data sets page on Monday. It will include the link to the original article (for context) and to the data set.

+

We welcome all newcomers, enthusiasts, and experts to participate, but be mindful of a few things:

+
    +
  1. The data set comes from the source article or the source that the article credits. Be mindful that the data is what it is and Tidy Tuesday is designed to help you practice data visualization and basic data wrangling in R.
  2. +
  3. Again, the data is what it is! You are welcome to explore beyond the provided dataset, but the data is provided as a "toy" dataset to practice techniques on.
  4. +
  5. This is NOT about criticizing the original article or graph. Real people made the graphs, collected or acquired the data! Focus on the provided dataset, learning, and improving your techniques in R.
  6. +
  7. This is NOT about criticizing or tearing down your fellow #RStats practitioners or their code! Be supportive and kind to each other! Like other's posts and help promote the #RStats community!
  8. +
  9. Use the hashtag #TidyTuesday on Twitter if you create your own version and would like to share it.
  10. +
  11. Include a picture of the visualisation when you post to Twitter.
  12. +
  13. Include a copy of the code used to create your visualization when you post to Twitter. Comment your code wherever possible to help yourself and others understand your process!
  14. +
  15. Focus on improving your craft, even if you end up with something simple!
  16. +
  17. Give credit to the original data source whenever possible.
  18. +
+
+
+

Submitting Datasets

+ +
+

Want to submit an interesting dataset? Please open an Issue and post a link to the article (or blogpost, etc) using the data, then we can discuss adding it to a future TidyTuesday Event!

+
+
+

DataSets

+ +
+
+

2018

+ +
+
+

2019

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WeekDateDataSourceArticle
12019-01-01#Rstats & #TidyTuesday Tweetsrtweetstackoverflow.blog
22019-01-08TV's Golden AgeIMDbThe Economist
32019-01-15Space LaunchesJSR Launch Vehicle DatabaseThe Economist
42019-01-22Incarceration TrendsVera InstituteVera Institute
52019-01-29Dairy production & ConsumptionUSDANPR
62019-02-05House Price Index & Mortgage Rates +FreddieMac & FreddieMac +Fortune
72019-02-12Federal R&D SpendingAAASNew York Times
82019-02-19US PhD's AwardedNSF#epibookclub
92019-02-26French Train DelaysSNCFRTL - Today
102019-03-05Women in the Workplace +Census Bureau & Bureau of Labor +Census Bureau
112019-03-12Board GamesBoard Game Geeksfivethirtyeight
122019-03-19Stanford Open Policing Project +Stanford Open Policing Project
SOPP - arXiv:1706.05678 +
SOPP - arXiv:1706.05678
132019-03-26Seattle Pet Namesseattle.govCurbed Seattle
142019-04-02Seattle Bike Trafficseattle.govSeattle Times
152019-04-09Tennis Grand Slam ChampionsWikipediaFinancial Times
162019-04-16The Economist Data Viz MistakesThe EconomistThe Economist
172019-04-23Anime DataMyAnimeListMyAnimeList
182019-04-30Chicago Bird CollisionsWinger et al, 2019Winger et al, 2019
192019-05-07Global Student to Teacher RatiosUNESCOCenter for Public Education
202019-05-14Nobel Prize WinnersKaggleThe Economist
212019-05-21Global Plastic WasteOur World In DataOur World in Data
222019-05-28Wine RatingsKaggleVivino
232019-06-04Ramen RatingsTheRamenRater.comFood Republic
242019-06-11MeteoritesNASAThe Guardian - Meteorite map
252019-06-18Christmas Bird CountsBird Studies CanadaHamilton Christmas Bird Count
262019-06-25Global UFO SightingsNUFORCExample Plots
272019-07-02Media Franchise RevenuesWikipediareddit/dataisbeautiful post
282019-07-09Women's World Cupdata.worldWikipedia
292019-07-16R4DS MembershipR4DS SlackR4DS useR Presentation
302019-07-23Wildlife StrikesFAAFAA
312019-07-30Video GamesSteam SpyLiza Wood
322019-08-06Bob Ross paintingsFiveThirtyEightFiveThirtyEight
332019-08-13Roman Emperors +Wikipedia / Zonination +reddit.com/r/dataisbeautiful
342019-08-20Nuclear ExplosionsSIPRIOur World in Data
352019-08-27Simpsons Guest StarsWikipediaWikipedia
362019-09-03Moore's LawWikipediaWikipedia
372019-09-10Amusement Park Injuries +Data.world & Saferparks +Saferparks
382019-09-17National Park VisitsData.worldfivethirtyeight article
392019-09-24School DiversityNCESWashington Post article
402019-10-01All the Pizza +Jared Lander & Ludmila Janda, Tyler Richards, DataFiniti +Tyler Richards on TWD
412019-10-08PowerliftingOpenPowerlifting.orgElias Oziolor
422019-10-15Car Fuel EconomyEPAEllis Hughes
432019-10-22Horror movie ratingsIMDBStephen Follows
442019-10-29NYC Squirrel CensusSquirrel CensusCityLab
452019-11-05Bike & Walk CommutesACSACS
462019-11-12CRAN CodeCRANPhillip Massicotte
472019-11-19NZ Bird of the YearNew Zealand Forest and Bird Org +Dragonfly Data Science & Nathan Moore +
482019-11-26Student Loan DebtDepartment of EducationDignity and Debt
492019-12-03Philly Parking TicketsOpen Data PhillyNBC Philadelphia
502019-12-10Replicating plots in RSimply StatisticsRafael Irizarry
512019-12-17Adoptable dogsPetfinderThe Pudding
522019-12-24Christmas SongsBillboard Top 100A Dash of Data

+
+

Useful links

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LinkDescription
LinkThe R4DS Online Learning Community Website
LinkThe R for Data Science textbook
LinkCarbon for sharing beautiful code pics
LinkPost gist to Carbon from RStudio
LinkPost to Carbon from RStudio
LinkJoin GitHub!
LinkBasics of GitHub
LinkLearn how to use GitHub with R
LinkSave high-rez ggplot2 images
+

Useful data sources

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LinkDescription
LinkData is Plural collection
LinkBuzzFeedNews GitHub
LinkThe Economist GitHub
LinkThe fivethirtyeight data package
LinkThe Upshot by NY Times
LinkThe Baltimore Sun Data Desk
LinkThe LA Times Data Desk
LinkOpen News Labs
LinkBBC Data Journalism team

+
+

Data Viz/Science Books

+ +
+

Only books available freely online are sourced here. Feel free to add to the list

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LinkDescription
LinkFundamentals of Data Viz by Claus Wilke
LinkThe Art of Data Science by Roger D. Peng & Elizabeth Matsui
LinkTidy Text Mining by Julia Silge & David Robinson
LinkGeocomputation with R by Robin Lovelace, Jakub Nowosad, Jannes Muenchow
LinkData Visualization by Kieran Healy
Link +ggplot2 cookbook by Winston Chang
LinkBBC Data Journalism team
diff --git a/tests/testthat/fixtures/readme2020-04-21.html b/tests/testthat/fixtures/readme2020-04-21.html new file mode 100644 index 0000000..26d1e15 --- /dev/null +++ b/tests/testthat/fixtures/readme2020-04-21.html @@ -0,0 +1,489 @@ + +

Keep calm and comply with GDPR

+
+

GDPR Fines

+ +
+

h/t to Bob Rudis for sharing the data source, and to Roel Hogervorst for the guide to scraping this data. He provided the bulk of the scraping code, and I added bit of additional data cleaning. The data this week comes from Privacy Affairs.

+

I have also included all the raw text (gdpr_text.tsv) for the actual GDPR legal documents, in case someone was interested in parsing through them or using them along with the violations.

+

Per Wikipedia GDPR is:

+
+

The General Data Protection Regulation (EU) 2016/679 (GDPR) is a regulation in EU law on data protection and privacy in the European Union (EU) and the European Economic Area (EEA). It also addresses the transfer of personal data outside the EU and EEA areas. The GDPR aims primarily to give control to individuals over their personal data and to simplify the regulatory environment for international business by unifying the regulation within the EU.[1] Superseding the Data Protection Directive 95/46/EC, the regulation contains provisions and requirements related to the processing of personal data of individuals (formally called data subjects in the GDPR) who reside in the EEA, and applies to any enterprise—regardless of its location and the data subjects' citizenship or residence—that is processing the personal information of data subjects inside the EEA.

+
+
+

Get the data here

+ +
+
# Get the Data
+
+gdpr_violations <- readr::read_tsv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2020/2020-04-21/gdpr_violations.tsv')
+gdpr_text <- readr::read_tsv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2020/2020-04-21/gdpr_text.tsv')
+
+# Or read in with tidytuesdayR package (https://github.com/thebioengineer/tidytuesdayR)
+# PLEASE NOTE TO USE 2020 DATA YOU NEED TO USE the tidytuesdayR version after Jan 2020.
+
+# Either ISO-8601 date or year/week works!
+
+# Install via devtools::install_github("thebioengineer/tidytuesdayR")
+
+tuesdata <- tidytuesdayR::tt_load('2020-04-21')
+tuesdata <- tidytuesdayR::tt_load(2020, week = 17)
+
+
+gdpr_violations <- tuesdata$gdpr_violations
+
+
+

Data Dictionary

+ +
+
+

gdpr_violations.tsv

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variableclassdescription
idintegerIdetifier for fine/violation
picturecharacterSVG image of violation country flag
namecharacterName of country where violation was enforced
priceintegerFine price in Euros (€)
authoritycharacterAuthority that enacted the violation
datecharacterDate of violation
controllercharacterController of data - the violator
article_violatedcharacterSpecific GDPR Article violated (see the gdpr_text.tsv data for specifics)
typecharacterType of violation
sourcecharacterOriginal source (URL) of fine data
summarycharacterSummary of violation
+

gdpr_text.tsv

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variableclassdescription
chapterdoubleGDPR Chapter Number
chapter_titlecharacterChapter title
articledoubleGDPR Article number
article_titlecharacterArticle title
sub_articledoubleSub article number
gdpr_textcharacterRaw text of article/subarticle
hrefcharacterURL to the raw text itself
+

Cleaning Script

+ +
+
library(tidyverse)
+library(rvest)
+
+# Note the following code was adapted from
+# https://blog.rmhogervorst.nl/blog/2020/04/08/scraping-gdpr-fines/
+
+link <- "https://www.privacyaffairs.com/gdpr-fines/"
+page <- read_html(link)
+
+
+temp <- page %>% html_nodes("script") %>% 
+  .[9] %>% 
+  rvest::html_text() 
+
+ends <- str_locate_all(temp, "\\]")
+starts <- str_locate_all(temp, "\\[")
+
+table1 <- temp %>% 
+  stringr::str_sub(start = starts[[1]][1,2], end = ends[[1]][1,1]) %>% 
+  str_remove_all("\\\n") %>% 
+  str_remove_all("\\\r") %>%
+  jsonlite::fromJSON() %>% 
+  as_tibble() %>% 
+  mutate(summary = str_remove_all(summary,"<p>|</p>|\n"))
+
+
+table2 <- temp %>% 
+  stringr::str_sub(start = starts[[1]][2,2], end = ends[[1]][2,1]) %>% 
+  str_remove_all("\\\n") %>% 
+  str_remove_all("\\\r") %>%  
+  jsonlite::fromJSON() %>% 
+  as_tibble() %>% 
+  mutate(summary = str_remove_all(summary,"<p>|</p>|\n"))
+
+
+all_df <- bind_rows(table1, table2) %>% 
+  janitor::clean_names() %>%
+  mutate(
+    authority = str_remove(authority, "\t"),
+    article_violated = str_remove(article_violated, '<a href="https://www.privacy-regulation.eu/en/32.htm">') %>% 
+           str_remove('</a>'),
+    article_violated = str_replace_all(article_violated, ", Art", "|Art"),
+    type = str_remove(type, '<a href="https://www.privacy-regulation.eu/en/32.htm">') %>% 
+      str_remove('</a>')
+           )
+
+# most frequent articles violated
+all_df %>% 
+  separate_rows(article_violated, sep = "\\|") %>% 
+  count(article_violated, sort = T)
+
+all_df %>% 
+  write_tsv("2020/2020-04-21/gdpr_violations.tsv")
+
+
+# Getting the actual article text -----------------------------------------
+
+raw_article <- "https://gdpr-info.eu/" %>% 
+  read_html()
+
+# Get all the urls for specific articles/chapters
+gdpr_href <- raw_article %>% 
+  html_node(xpath = '//*[@id="tablepress-12"]') %>% 
+  html_nodes("a") %>% 
+  html_attr("href")
+
+# pull the titles as well
+gdpr_titles <- raw_article %>% 
+  html_node(xpath = '//*[@id="tablepress-12"]') %>% 
+  html_nodes("a") %>% 
+  html_attr("data-title")
+
+# pull the numbers of article/chapters
+gdpr_numbers <- raw_article %>% 
+  html_node(xpath = '//*[@id="tablepress-12"]') %>% 
+  html_nodes("a") %>% 
+  html_text()
+
+# put it all into a df
+gdpr_df <- tibble(
+  article = gdpr_numbers,
+  title = str_trim(gdpr_titles),
+  href = gdpr_href
+) 
+
+# Tidy up the data, create chapters vs articles
+clean_gdpr <- gdpr_df %>% 
+  mutate(chapter = if_else(str_length(article) > 3, article, NA_character_),
+         chapter_title = if_else(str_length(article) > 3, title, NA_character_)) %>% 
+  fill(chapter, chapter_title) %>% 
+  filter(!str_detect(article, "Chapter")) %>% 
+  mutate(article = as.double(article)) %>% 
+  filter(!is.na(article)) %>% 
+  select(starts_with("chapter"), article, article_title = title, href)
+
+clean_gdpr
+
+# LONG running outcome
+# Get all the raw html from each of the urls for each article
+all_articles <- clean_gdpr %>% 
+  mutate(raw_html = map(href, read_html))
+
+# function to take raw html and turn it into text for that specific article
+get_gdpr_text <- function(html_in){
+  
+  test_var <- html_in %>% 
+    html_node(".entry-content") %>% 
+    html_nodes("ol") %>% 
+    html_text()
+  
+  if (length(test_var) == 0){
+   text <- html_in %>%
+     html_node(".entry-content > p") %>% 
+     html_text() %>% 
+     str_remove("^[:digit:]") 
+  } else {
+    text <- html_in %>% 
+      html_node(".entry-content") %>% 
+      html_nodes("ol") %>% 
+      html_text() %>% 
+      .[[1]] %>% 
+      str_replace_all(";\n", "\t") %>% 
+      str_replace_all(":\n", "\t") %>% 
+      str_split("\n") %>% 
+      .[[1]] %>% 
+      .[. != ""] %>% 
+      str_replace_all("\t", "\n") %>% 
+      str_remove("^[:digit:]")
+  }
+  
+  
+  text
+    
+}
+
+# Test
+get_gdpr_text(read_html("http://gdpr-info.eu/art-2-gdpr/"))
+
+# unnest the list column of text
+clean_articles <- all_articles %>% 
+  mutate(gdpr_text = map(raw_html, get_gdpr_text)) %>% 
+  unnest_longer(gdpr_text)
+
+# final dataframe
+final_articles <- clean_articles %>% 
+  group_by(article) %>% 
+  mutate(sub_article = row_number()) %>% 
+  relocate(sub_article, .after = "article_title") %>% 
+  relocate(gdpr_text, .after = "sub_article") %>% 
+  ungroup() %>% 
+  mutate(chapter = str_extract(chapter, "[:digit:]+")) %>% 
+  mutate_at(vars(chapter, article, sub_article), as.double) %>% 
+  select(-raw_html)
+
+final_articles %>% view()
+
+write_tsv(final_articles, "2020/2020-04-21/gdpr_text.tsv")
+
+
+
diff --git a/tests/testthat/fixtures/readme2020.html b/tests/testthat/fixtures/readme2020.html new file mode 100644 index 0000000..74e780f --- /dev/null +++ b/tests/testthat/fixtures/readme2020.html @@ -0,0 +1,402 @@ + +
+

2020 Data

+ +
+

Archive of datasets and articles from the 2020 series of #TidyTuesday events.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WeekDateDataSourceArticle
12019-12-31Bring your own data from 2019!
22020-01-07Australian FiresBureau of Meteorology +NY Times & BBC +
32020-01-14PasswordsKnowledge is BeautifulInformation is Beautiful
42020-01-21Song Genresspotifyr Kaylin Pavlik
52020-01-28San Francisco Treesdata.sfgov.orgSF Weekly
62020-02-04NFL AttendancePro Football ReferenceCasino.org
72020-02-11Hotel BookingsAntonio, Almeida, and Nunes, 2019tidyverts
82020-02-18Food's Carbon Footprintnu3r-tastic by Kasia Kulma
92020-02-25Measles VaccinationThe Wallstreet JournalThe Wall Street Journal
102020-03-03NHL GoalsHockeyReference.comWashington Post
112020-03-10College Tuition, Diversity, and PayTuitionTracker.orgTuitionTracker.org
122020-03-17The OfficeschruteThe Pudding
132020-03-24Traumatic Brain InjuryCDCCDC Traumatic Brain Injury Report
142020-03-31Beer ProductionTTBBrewers Association
152020-04-07Tour de Francetdf packageAlastair Rushworth's blog
162020-04-14Best Rap ArtistsBBC MusicSimon Jockers at Datawrapper
172020-04-21GDPR ViolationsPrivacy AffairsRoel Hogervorst
182020-04-28Broadway MusicalsPlaybillAlex Cookson
192020-05-05Animal CrossingVillager DBPolygon
202020-05-12Volcano EruptionsSmithsonian +Axios & Wikipedia +
212020-05-19Beach VolleyballBigTimeStats +FiveThirtyEight & Wikipedia +
222020-05-26Cocktails +Kaggle & Kaggle +FiveThirtyEight
232020-06-02Marble RacesJelle's Marble RunsRandy Olson
242020-06-09African-American Achievements +Wikipedia & Wikipedia + +David Blackwell & Petition for David Blackwell +
252020-06-16African-American History +Black Past & Census & Slave Voyages +The Guardian
262020-06-23Caribou LocationsMovebankB.C. Ministry of Environment
272020-06-30Claremont Run of X-MenClaremont RunWikipedia - Uncanny X-Men
282020-07-07Coffee Ratings +James LeDoux & Coffee Quality Database +Yorgos Askalidis - TWD
292020-07-14Astronaut DatabaseCorlett, Stavnichuk & Komarova articleCorlett, Stavnichuk & Komarova article
302020-07-21Australian Animal OutcomesRSPCARSPCA Report
312020-07-28Palmer PenguinsGorman, Williams and Fraser, 2014Palmer Penguins
322020-08-04European EnergyEurostat EnergyWashington Post Energy
332020-08-11Avatar: The Last AirbenderappaExploring Avatar: The Last Airbender transcript data
342020-08-18Extinct PlantsIUCN Red ListFlorent Lavergne infographic
352020-08-25Chopped +Kaggle & IMDB +Vice
362020-09-01Global Crop YieldsOur World in DataOur World in Data
372020-09-08Friendsfriends R packageceros interactive article
382020-09-15Gov Spending on KidsUrban Institute +Joshua Rosenberg's tidykids package
392020-09-22Himalayan ClimbersThe Himalayan DatabaseAlex Cookson blog post
402020-09-29Beyonce & Taylor Swift Lyrics +Rosie Baillie and Dr. Sara Stoudt +Taylor Swift lyrics
412020-10-06NCAA Women's BasketballFiveThirtyEightFiveThirtyEight
422020-10-13datasauRus dozenAlberto CairodatasauRus R package
432020-10-20Great American Beer Festival DataGreat American Beer Festival2019 GABF Medal Winner Analysis
442020-10-27Canadian Wind Turbinesopen.canada.caCanada's National Observer
452020-11-03Ikea FurnitureKaggleFiveThirtyEight
462020-11-10Historical PhonesMobile vs Landline subscriptionsPew Research Smartphone Adoption
472020-11-17Black in DataBlack in Data WeekBlackInData #DataViz
482020-11-24Washington TrailsWTATidyX
492020-12-01Toronto Sheltersopendatatorontorabble.ca
502020-12-08Women of 2020BBCBBC
512020-12-15Ninja WarriorData.Worldsasukepedia
522020-12-22Big Mac IndexTheEconomistTheEconomist
diff --git a/tests/testthat/fixtures/readme2020_response.rds b/tests/testthat/fixtures/readme2020_response.rds new file mode 100644 index 0000000..95df2a3 Binary files /dev/null and b/tests/testthat/fixtures/readme2020_response.rds differ diff --git a/tests/testthat/fixtures/readme2021.html b/tests/testthat/fixtures/readme2021.html new file mode 100644 index 0000000..3b22fa9 --- /dev/null +++ b/tests/testthat/fixtures/readme2021.html @@ -0,0 +1,391 @@ + +
+

2021 Data

+ +
+

Archive of datasets and articles from the 2021 series of #TidyTuesday events.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WeekDateDataSourceArticle
12020-12-29Bring your own data from 2020!
22021-01-05Transit Cost ProjectTransitCosts.comTransit Costs Case Study
32021-01-12Art CollectionsTate CollectionAspect Ratio of Artworks through Time
42021-01-19Kenya CensusrKenyaCensusIntroducing rKenyaCensus
52021-01-26Plastic PollutionBreak Free from PlasticSarah Sauve
62021-02-02HBCU Enrollment +Data.World & Data.World +HBCU Donations Article
72021-02-09Wealth and Income +Urban Institute & US Census +Urban Institute
82021-02-16W.E.B. Du Bois ChallengeDu Bois Data ChallengeAnthony Starks - Recreating Du Bois's data portraits
92021-02-23Employment and EarningsBLSBLS Article
102021-03-02SuperBowl AdsFiveThirtyEightFiveThirtyEight
112021-03-09Bechdel TestFiveThirtyEightFiveThirtyEight
122021-03-16Video Games + SlicedSteamSteamCharts
132021-03-23UN VotesHarvard DataverseCitizen Statistician
142021-03-30Makeup ShadesThe Pudding dataThe Pudding
152021-04-06Global deforestationOur World in DataOur World in Data
162021-04-13US Post OfficesCameron Blevins and Richard W. HelbockUS Post Offices
172021-04-20Netflix TitlesKaggleFlixable
182021-04-27CEO DeparturesGentry et al.investors.com
192021-05-04Water Access PointsWPDXWPDX
202021-05-11US BroadbandMicrosoft GitHubThe Verge
212021-05-18Ask a Manager Salary SurveyAsk a ManagerAsk a Manager
222021-05-25Mario Kart World RecordsMario Kart World RecordsMario Kart Record-breaking
232021-06-01Survivor TV ShowsurvivoR PackageDaniel's Oehm's Website
242021-06-08Great Lakes FishGreat Lakes DatabaseDetroit Free Press
252021-06-15WEB Du Bois and Juneteenth#DuBoisChallenge tweetsThe Intercept
262021-06-22Public Park AccessTPLCityLab
272021-06-29Animal RescuesLondon.govThe Guardian
282021-07-06International Independence DaysWikipediaWorldAtlas.com
292021-07-13Scooby DooKaggleScoobyPedia
302021-07-20US DroughtsDrought Monitor +NYTimes & CNN +
312021-07-27Olympic MedalsKaggle +Financial Times & FiveThirtyEight +
322021-08-03Paralympic MedalsIPCIPC
332021-08-10BEA Infrastructure InvestmentBEABEA
342021-08-17Star Trek Voice CommandsSpeechInteraction.orgSpeechInteraction.org
352021-08-24LemursKaggleZehr et al, 2014 - Nature
362021-08-31Bird BathsCleary et al, 2016 +The Conversation & Cleary et al, 2016 +
372021-09-07Formula 1 Racesergast.com/mrd/dbFiveThirtyEight
382021-09-14Billboard Top 100Data.WorldThePudding
392021-09-21Emmy AwardsEmmysSusie Lu
402021-09-28NBER PapersNBERnberwp R package
412021-10-05Registered NursesData.WorldBLS
422021-10-12Global SeafoodOurWorldinData.orgOurWorldinData.org
432021-10-19Big PumpkinsBigPumpkins.comGreat Pumpkin Commonwealth
442021-10-26Ultra Trail RunningBjnNowak-Github RepoRunRepeat.com
452021-11-02Making maps with RGeocomputation with RGeocomputation with R
462021-11-09Learning with afrilearndataafrilearndataafrilearndata
472021-11-16#BlackInDataWeek 2021#BlackInDataWeek#BlackInDataWeek
482021-11-23Dr. Whodatardis PkgR and Omics, datardis package
492021-11-30World Cup CricketESPN CricinfoWikipedia
502021-12-07SpidersWorld Spiders DatabaseMajer et al, 2015
512021-12-14Spice GirlsSpice Girls by Jacquie TranSpice Girls by Jacquie Tran
522021-12-21Starbucks drinksStarbucks drinksBehance - Starbucks infographics
diff --git a/tests/testthat/fixtures/readme2022-05-10.html b/tests/testthat/fixtures/readme2022-05-10.html new file mode 100644 index 0000000..2f098db --- /dev/null +++ b/tests/testthat/fixtures/readme2022-05-10.html @@ -0,0 +1,213 @@ + +
+

Please add alt text to your posts

+ +
+

Please add alt text (alternative text) to all of your posted graphics for #TidyTuesday.

+

Twitter provides guidelines for how to add alt text to your images.

+

The DataViz Society/Nightingale by way of Amy Cesal has an article on writing good alt text for plots/graphs.

+
+

Here's a simple formula for writing alt text for data visualization:

+
+

Chart type

+ +
+

It's helpful for people with partial sight to know what chart type it is and gives context for understanding the rest of the visual. Example: Line graph

+
+

Type of data

+ +
+

What data is included in the chart? The x and y axis labels may help you figure this out. Example: number of bananas sold per day in the last year

+
+

Reason for including the chart

+ +
+

Think about why you're including this visual. What does it show that's meaningful. There should be a point to every visual and you should tell people what to look for. Example: the winter months have more banana sales

+
+

Link to data or source

+ +
+

Don't include this in your alt text, but it should be included somewhere in the surrounding text. People should be able to click on a link to view the source data or dig further into the visual. This provides transparency about your source and lets people explore the data. Example: Data from the USDA

+
+

Penn State has an article on writing alt text descriptions for charts and tables.

+
+

Charts, graphs and maps use visuals to convey complex images to users. But since they are images, these media provide serious accessibility issues to colorblind users and users of screen readers. See the examples on this page for details on how to make charts more accessible.

+
+

The {rtweet} package includes the ability to post tweets with alt text programatically.

+

Need a reminder? There are extensions that force you to remember to add Alt Text to Tweets with media.

+
+

NY Times bestsellers list

+ +
+

The data this week comes from Post45 Data by way of Sara Stoudt.

+

See their Data Description for full details.

+
+

Each peer-reviewed dataset has an accompanying curatorial statement, which provides an overview of the data that explains its contents, construction, and some possible uses.

+

Please cite data from the Post45 Data Collective and use the following six components in your citation: 

+
    +
  • +

    author name(s)  

    +
  • +
  • +

    date published in the Post45 repository 

    +
  • +
  • +

    title  

    +
  • +
  • +

    global persistent > identifier: [DOI](https://nam11.safelinks.protection.outlook.com/?url=http%3A%2F> %2Fwww.doi.org%2F&data=04%7C01%7Ckayla.shipp.kamibayashi%40emory.edu%7C31069808f> 9074a2a59ad08d8ce96abd0%7Ce004fb9cb0a4424fbcd0322606d5df38%7C0%7C0%7C63748649381> 8763862%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1h> aWwiLCJXVCI6Mn0%3D%7C1000&sdata=3EOVEbBZrdRlmq3n%2BFQkyf8cEK7jdW99oo8LFoSqXEo%3D> &reserved=0 "Original URL: http://www.doi.org/. Click or tap if you trust this > link.")   

    +
  • +
  • +

    Post45 Data Collective 

    +
  • +
  • +

    version number 

    +
  • +
+

Example replication data citation from The Program Era Project, Kelly, White, and Glass, 2021:

+

Kelly, Nicholas; White, Nicole, Glass, Loren, 03/01/2021, "The Program Era > Project," DOI: https://doi.org/10.18737/CNJV1733p4520210415, Post45 Data > Collective, V1.

+
+
+

Get the data here

+ +
+
# Get the Data
+
+# Read in with tidytuesdayR package 
+# Install from CRAN via: install.packages("tidytuesdayR")
+# This loads the readme and all the datasets for the week of interest
+
+# Either ISO-8601 date or year/week works!
+
+tuesdata <- tidytuesdayR::tt_load('2022-05-10')
+tuesdata <- tidytuesdayR::tt_load(2022, week = 19)
+
+nyt_titles <- tuesdata$nyt_titles
+
+# Or read in the data manually
+
+nyt_titles <- readr::read_tsv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-05-10/nyt_titles.tsv')
+nyt_full <- readr::read_tsv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-05-10/nyt_full.tsv')
+
+
+
+

Data Dictionary

+ +
+
+

nyt_titles.tsv

+ +
+

This is a subset/summary of the larger dataset.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variableclassdescription
iddoubleBook id
titlecharacterTitle of book
authorcharacterAuthor
yeardoubleYear
total_weeksdoubleTotal weeks on best sellers list
first_weekdoubleFirst week on list (date)
debut_rankdoubleDebut rank on the list
best_rankdoubleBest rank
+

nyt_full.tsv

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
variableclassdescription
yeardoubleYear
weekdoubleWeek (as date)
rankdoubleRank (1 > 18)
title_iddoubleTitle ID
titlecharacterTitle of book
authorcharacterAuthor
+

Cleaning Script

+ +
+
diff --git a/tests/testthat/fixtures/readme2022.html b/tests/testthat/fixtures/readme2022.html new file mode 100644 index 0000000..b0b0d74 --- /dev/null +++ b/tests/testthat/fixtures/readme2022.html @@ -0,0 +1,389 @@ + +
+

2022 Data

+ +
+

Archive of datasets and articles from the 2022 series of #TidyTuesday events.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WeekDateDataSourceArticle
12022-01-04Bring your own data from 2022!
22022-01-11Bee Colony lossesUSDABee Informed
32022-01-18Chocolate Bar ratingsFlavors of CacaoWill Canniford on Kaggle
42022-01-25Board gamesKaggleAlyssa Goldberg
52022-02-01Dog breedsAmerican Kennel ClubVox
62022-02-08Tuskegee AirmenCommemorative Airforce (CAF) by way of the VA-TUG +Wikipedia & Air Force Historical Research Agency +
72022-02-15#DuBoisChallenge2022Anthony StarksNightingale by DVS
82022-02-22World Freedom indexUN and Freedom HouseFreedom House
92022-03-01Alternative Fuel StationsUS DOTEIA
102022-03-08Erasmus student mobilityData.Europa.euWimdu.co
112022-03-15CRAN/BIOC VignettesRobert Flight GitHubRobert Flight GitHub
122022-03-22Baby names +US babynames & nzbabynames +Emily Kothe's nzbabynames vignette
132022-03-29Collegiate Sports BudgetsEquity in Athletics Data AnalysisNPR
142022-04-05Digital PublicationsProject OasisProject Oasis Report
152022-04-12Indoor Air PollutionOurWorldInData.orgOurWorldInData.org
162022-04-19Crossword Puzzles and CluesCryptics.georgeho.orgTowards Data Science
172022-04-26Kaggle Hidden GemsKaggleKaggle - Notebooks of the Week
182022-05-03Solar/Wind utilitiesBerkeley LabBerkeley Lab report
192022-05-10NYTimes best sellersPost45 DataFinding Trends in NY Times Best Sellers - Kailey Smith
202022-05-17EurovisionEurovisionTanya Shapiro
212022-05-24Women's RugbyWomen's Rugby - ScrumQueensScrumQueens
222022-05-31Company reputation pollAxios and Harris PollThe Harris Poll
232022-06-07Pride Corporate Accountability ProjectData For ProgressData For Progress
242022-06-14US DroughtDrought.govDrought.gov report
252022-06-21JuneteenthWEB DuBois style by Anthony StarksIsabella Benabaye's blog on Juneteenth
262022-06-28UK Gender pay gapgender-pay-gap.service.gov.ukons.gov.uk
272022-07-05San Francisco RentalsKate PenningtonMatrix-Berkeley
282022-07-12European flightsEurocontrolec.europa.eu
292022-07-19Technology Adoptiondata.nber.orgwww.cgdev.org
302022-07-26Bring your own dataNoneNone
312022-08-02Oregon Spotted Frogusgs.gov spotted frog datausgs.gov spotted-frog-article
322022-08-09Ferris Wheelsferriswheelsferriswheels
332022-08-16Open Source PsychometricsOpen-Source Psychometrics ProjectCharacter Personality
342022-08-23CHIP datasetCHIP Datasetarxiv paper
352022-08-30Pell GrantsUS Dept of Educationpell R package
362022-09-06LEGO databaserebrickablerebrickable
372022-09-13BigfootData.WorldFinding Bigfoot
382022-09-20Hydro Wastewater plantsMacedo et al, 2022HydroWASTE v1.0
392022-09-27Artists in the USAarts.govArtists in the Workforce
402022-10-04Product Hunt productscomponents.oneThe Gamer and the Nihilist by Andrew Thompson
412022-10-11Ravelry dataravelry.com{ravelRy} R package
422022-10-18Stranger things dialogue8flix.com +freeCodeCamp & 'stringr things' +
432022-10-25Great British Bakeoffbakeoff pkgData Visualization in the Tidyverse - The Great Tidy Plot Off
442022-11-01Horror MoviesThe Movie DatabaseTanya Shapiro's Horror Movies
452022-11-08Radio StationsWikipediaVisualizing the Geography of FM Radio
462022-11-15Web page metricshttpArchive.org +DataWrapper & Data is Plural +
472022-11-22UK MuseumsMuseWeb by way of Data Is PluralMuseWeb Key Findings
482022-11-29FIFA World CupKaggle FIFA World CupDataset Notebooks
492022-12-06ElevatorsElevators dataElevators data package and examples
502022-12-13Monthly State Retail SalesUS Census Bureau Monthly State Retails SalesInteractive Visualization from US Census Bureau
512022-12-20Weather Forecast AccuracyWeather Forecast Capstone ProjectWeather Forecast Capstone Project
522022-12-27Star Trek Timelinesrtrek packagertrek package
diff --git a/tests/testthat/fixtures/readme2023.html b/tests/testthat/fixtures/readme2023.html new file mode 100644 index 0000000..6ff664e --- /dev/null +++ b/tests/testthat/fixtures/readme2023.html @@ -0,0 +1,391 @@ + +
+

2023 Data

+ +
+

Archive of datasets and articles from the 2023 series of #TidyTuesday events.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WeekDateDataSourceArticle
12023-01-03Bring your own data from 2022!
22023-01-10Bird FeederWatch dataFeederWatchOver 30 Years of Standardized Bird Counts at Supplementary Feeding Stations in North America: A Citizen Science Data Report for Project FeederWatch
32023-01-17Art history dataarthistory data packageQuantifying Art Historical Narratives
42023-01-24Alone dataAlone data packageAlone R package: Datasets from the survival TV series
52023-01-31Pet Cats UKMovebank for Animal Tracking DataCats on the Move
62023-02-07Big Tech Stock PricesBig Tech Stock Prices on Kaggle5 Charts on Big Tech Stocks' Collapse
72023-02-14Hollywood Age GapsHollywood Age Gap Download DataHollywood Age Gap
82023-02-21Bob Ross PaintingsBob Ross Paintings dataBob Ross Colors data package
92023-02-28African Language SentimentAfriSenti: Sentiment Analysis dataset for 14 African languagesAfriSenti: A Twitter Sentiment Analysis Benchmark for African Languages
102023-03-07Numbats in AustraliaAtlas of Living AustraliaNumbat page at the Atlas of Living Australia
112023-03-14European Drug DevelopmentEuropean Medicines AgencyDissecting 28 years of European pharmaceutical development
122023-03-21Programming LanguagesProgramming Language DataBaseDoes every programming language have line comments?
132023-03-28Time ZonesIANA tz database"What Is Daylight Saving Time"
142023-04-04Premier League Match DataPremier League Match Data 2021-2022Who wins the EPL if games end at half time?
152023-04-11US Egg Production DataUS Egg Production Data 2007-2021The Humane League Labs US Egg Production Dataset
162023-04-18Neolithic Founder CropsThe "Neolithic Founder Crops" in Southwest Asia: Research CompendiumRevisiting the concept of the 'Neolithic Founder Crops' in southwest Asia
172023-04-25London MarathonLondon Marathon R packageScraping London Marathon data with {rvest}
182023-05-02The Portal ProjectPortal Project DataPortal Project
192023-05-09Childcare CostsNational Database of Childcare PricesNational Database of Childcare Prices
202023-05-16TornadosNOAA's National Weather Service Storm Prediction Center Severe Weather Maps, Graphics, and Data PageDiving into US Tornado Data
212023-05-23Central Park Squirrels2018 Central Park Squirrel CensusThe Squirrel Census
222023-05-30Verified Oldest Peoplefrankiethull: CentenariansWikipedia: List of the verified oldest people
232023-06-06EnergyEnergy Data ExplorerOur World in Data Energy Complete Dataset
242023-06-13Studying African Farmer-Led Irrigation SurveySAFI Teaching Dataset for Data Carpentry Social SciencesSAFI Teaching Dataset
252023-06-20UFO Sightings Redux +National UFO Reporting Center, sunrise-sunset.org +TidyTuesday 2019-06-25
262023-06-27US Populated PlacesNational Map Staged Products DirectoryUS Board of Geographic Names
272023-07-04Historical MarkersHistorical Marker Database USA IndexDatabase Counts and Statistics
282023-07-11Global Surface TemperaturesNASA GISS Surface Temperature Analysis (GISTEMP v4)Improvements in the GISTEMP Uncertainty Model
292023-07-18GPT detectorsGPT detectors R packageGPT Detectors Are Biased Against Non-Native English Writers
302023-07-25Scurvymedicaldata R packageScurvy Dataset Description
312023-08-01US States +List of states and territories of the United States, List of demonyms for US states and territories, and List of state and territory name etymologies of the United States +List of states and territories of the United States
322023-08-08Hot Ones Episodes +Hot Ones and List of Hot Ones episodes +Hot Ones
332023-08-15Spam E-mailSpam e-mailSpam email database
342023-08-22RefugeesRefugees R packageUnited Nations High Commissioner for Refugees (UNHCR) Refugee Data Finder
352023-08-29Fair UseU.S. Copyright Office Fair Use IndexU.S. Copyright Office Fair Use Index
362023-09-05Union Membership in the United StatesUnion Membership, Coverage, and Earnings from the CPSFive decades of CPS wages, methods, and union-nonunion wage gaps at Unionstats.com
372023-09-12The Global Human DayThe Global Human Day datasetThe global human day PNAS article
382023-09-19CRAN Package AuthorsThe CRAN collaboration graphThe CRAN collaboration graph README
392023-09-26Roy Kent F**k countDeepsha Menghani posit::conf(2023) talk on data visualization and Quartorichmondway dataset
402023-10-03US Government Grant OpportunitiesGrants 101 from Grants.govGrants.gov Search Export
412023-10-10Haunted Places in the United StatesTim Renner on data.worldUpcoming changes to popular R packages for spatial data: what you need to do
422023-10-17Taylor Swift datataylor R packageTaylor Swift data analysis
432023-10-24Patient Risk ProfilesR/PharmaR/Pharma
442023-10-31Horror LegendsSnopes Horrors SectionSnopes Horrors Section
452023-11-07US House Election ResultsMIT Election Data and Science LabNew Report: How We Voted in 2022
462023-11-14Diwali Sales DataDiwali sales dataDiwali sales data exploration (in Python)
472023-11-21R-Ladies Chapter EventsR-Ladies Chapter Events dataR-Ladies Chapters: Making talks work for diverse audiences
482023-11-28Doctor Who Episodesdatardis packageList of Doctor Who episodes
492023-12-05Life ExpectancyOur World in Data life expectancy +Our World in Data key insights on life expectancy)
502023-12-12Holiday MoviesIMDb non-commercial datasets +Christmas Movies blog)
512023-12-19Holiday EpisodesIMDb non-commercial datasets +Holiday Episode TV Trope)
522023-12-26R Package Structureropensci-review-tools/pkgstats +Historical Trends in R Package Structure and Interdependency on CRAN)
diff --git a/tests/testthat/fixtures/readme2024.html b/tests/testthat/fixtures/readme2024.html new file mode 100644 index 0000000..7def42c --- /dev/null +++ b/tests/testthat/fixtures/readme2024.html @@ -0,0 +1,259 @@ + +
+

2024 Data

+ +
+

Archive of datasets and articles from the 2024 series of #TidyTuesday events.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WeekDateDataSourceArticle
12024-01-02Bring your own data from 2023!
22024-01-09Canadian NHL Player Birth Dates +Statistics Canada, NHL team list endpoint, NHL API +Are Birth Dates Still Destiny for Canadian NHL Players?
32024-01-16US Polling Places 2012-2020Center for Public IntegrityNational data release sheds light on past polling place changes
42024-01-23Educational attainment of young people in English townsThe UK Office for National StatisticsWhy do children and young people in smaller towns do better academically than those in larger towns?
52024-01-30Groundhog predictionsGroundhog-day.com APIGroundhog-day.com Predictions by Year
62024-02-06World heritage sitesUNESCO World Heritage Sites1 dataset 100 visualizations
72024-02-13Valentine's Day consumer dataValentine's Days consumer survey dataNational Retail Federation Valentine's Day Data Center
82024-02-20R Consortium ISC GrantsR Consortium ISC Funded ProjectsR Consortium ISC Call for Proposals 2024
92024-02-27Leap DayWikipedia: February 29Wikipedia: February 29
102024-03-05Trash Wheel Collection DataHealthy Harbor Trash Wheel Collection DataMr. Trash Wheel
112024-03-12Fiscal SponsorsFiscal Sponsor DirectoryFiscal Sponsor Directory facts
122024-03-19X-Men Mutant MoneyballMutant Moneyball DataMutant moneyball: a data-driven ultimate X-Men
132024-03-26NCAA Men's March MadnessMen's March Madness DataBracketology: predicting March Madness
142024-04-02Du Bois Visualization Challenge 2024Week 10 Data Du Bois Visualization Challenge: 2024
152024-04-092023 & 2024 US Solar Eclipses +NASA's Scientific Visualization Studio cities-eclipse-2024.json, NASA's Scientific Visualization Studio cities-eclipse-2023.json +The 2023 and 2024 Solar Eclipses: Map and Data
162024-04-16Shiny Packagesshiny on CRANShinyConf2024: The Future is Shiny
172024-04-23Objects Launched into SpaceOur World in Data: Annual number of objects launched into spaceUN Office for Outer Space Affairs: Online index of objects launched into outer space
182024-04-30Worldwide Bureaucracy IndicatorsWorld Bank Data Catalog: Worldwide Bureaucracy IndicatorsIntroducing the Worldwide Bureaucracy Indicators
192024-05-07Rolling Stone Album RankingsRolling Stone 500What Makes an Album the Greatest of All Time
202024-05-14The Great American Coffee Taste TestJames Hoffmann and Cometeer Great American Coffee Taste Test SurveyGreat American Coffee Taste Test Breakdown
212024-05-21Carbon Majors emissions dataCarbonMajors datasetCarbonMajors
222024-05-28Lisa's Vegetable Garden Data{gardenR} packageMacalester College COMP/STAT 112 Tutorials
232024-06-04Cheesecheese.comcheese.com site and blog
242024-06-11Campus Pride IndexCampus Pride Index search resultsCampus Pride Index
252024-06-18US Federal HolidaysWikipedia Federal holidays in the United StatesWikipedia Federal holidays in the United States
262024-06-25tidyRainbow DatasetstidyRainbow LGBTQ Movie DatabasetidyRainbow Datasets
272024-07-02TidyTuesday Datasetsttmeta packagettmeta package
282024-07-09David Robinson's TidyTuesday Functionsfunspotr examplesNetwork Visualizations of Code Collections
292024-07-16English Women's FootballThe English Women's Football (EWF) Database, May 2024The English Women's Football (EWF) Database, May 2024
302024-07-23American Idol dataAmerican Idol dataAmerican Idol data
312024-07-30Summer MoviesIMDb non-commercial datasetsIMDb's 2023 Summer Movie Guide
322024-08-06Olympic MedalsKaggle Olypmic history dataFinancial Times Tokyo Olypmics analysis
332024-08-13World's FairsList of world expositions (Wikipedia)World's fair (Wikipedia)
342024-08-20English Monarchs and MarriagesA list of Monarchs by marriagemonarchs and marriages
diff --git a/tests/testthat/fixtures/response-2018-04-02-us_avg_tuition.xlsx.rds b/tests/testthat/fixtures/response-2018-04-02-us_avg_tuition.xlsx.rds new file mode 100644 index 0000000..8c14304 Binary files /dev/null and b/tests/testthat/fixtures/response-2018-04-02-us_avg_tuition.xlsx.rds differ diff --git a/tests/testthat/fixtures/response-2019-01-15-agencies.csv.rds b/tests/testthat/fixtures/response-2019-01-15-agencies.csv.rds new file mode 100644 index 0000000..38e7b43 Binary files /dev/null and b/tests/testthat/fixtures/response-2019-01-15-agencies.csv.rds differ diff --git a/tests/testthat/fixtures/response-2019-01-15-launches.csv.rds b/tests/testthat/fixtures/response-2019-01-15-launches.csv.rds new file mode 100644 index 0000000..4d29546 Binary files /dev/null and b/tests/testthat/fixtures/response-2019-01-15-launches.csv.rds differ diff --git a/tests/testthat/fixtures/response-2022-05-10-nyt_titles.tsv.rds b/tests/testthat/fixtures/response-2022-05-10-nyt_titles.tsv.rds new file mode 100644 index 0000000..54067e0 Binary files /dev/null and b/tests/testthat/fixtures/response-2022-05-10-nyt_titles.tsv.rds differ diff --git a/tests/testthat/fixtures/static_contents.rds b/tests/testthat/fixtures/static_contents.rds new file mode 100644 index 0000000..1deb5eb Binary files /dev/null and b/tests/testthat/fixtures/static_contents.rds differ diff --git a/tests/testthat/fixtures/tt_data_type_response.rds b/tests/testthat/fixtures/tt_data_type_response.rds new file mode 100644 index 0000000..3bb19ff Binary files /dev/null and b/tests/testthat/fixtures/tt_data_type_response.rds differ diff --git a/tests/testthat/fixtures/ttmf.rds b/tests/testthat/fixtures/ttmf.rds new file mode 100644 index 0000000..3204fe0 Binary files /dev/null and b/tests/testthat/fixtures/ttmf.rds differ diff --git a/tests/testthat/helper-encoding.R b/tests/testthat/helper-encoding.R new file mode 100644 index 0000000..d13a44b --- /dev/null +++ b/tests/testthat/helper-encoding.R @@ -0,0 +1,6 @@ +local_encoding <- function(encoding, .env = parent.frame()) { + expect_warning( + withr::local_locale(LC_CTYPE = encoding, .local_envir = .env), + "using locale code page other than 65001" + ) +} diff --git a/tests/testthat/helper-mocks.R b/tests/testthat/helper-mocks.R new file mode 100644 index 0000000..5c67007 --- /dev/null +++ b/tests/testthat/helper-mocks.R @@ -0,0 +1,106 @@ +tt_enable_covr <- function() { + options("tidytuesdayR.covr_check" = TRUE) +} + +tt_disable_covr <- function() { + options("tidytuesdayR.covr_check" = FALSE) +} + +tt_is_checking_covr <- function() { + return(getOption("tidytuesdayR.covr_check", FALSE)) +} + +local_tt_mocked_bindings <- function(..., .env = parent.frame()) { + # Things that use mocks aren't reporting coverage properly. + if (tt_is_checking_covr()) { + return(invisible()) + } + local_mocked_bindings(..., .env = .env) +} + +local_tt_master_file <- function(.env = parent.frame()) { + local_tt_mocked_bindings( + tt_master_file = function(...) { + return(readRDS(test_path("fixtures", "ttmf.rds"))) + }, + .env = .env + ) +} + +local_tt_datasets <- function(.env = parent.frame()) { + local_tt_mocked_bindings( + gh_get_readme_html = function(path, auth = NULL) { + year <- basename(path) + file <- glue::glue("readme{year}.html") + return(xml2::read_html(test_path("fixtures", file))) + }, + .env = .env + ) +} + +local_tt_week_readme_html <- function(.env = parent.frame()) { + local_tt_mocked_bindings( + tt_week_readme_html = function(date, auth = NULL) { + file <- glue::glue("readme{date}.html") + path <- test_path("fixtures", file) + if (file.exists(path)) { + return(xml2::read_html(path)) + } + cli::cli_warn( + "No readme found in path.", + class = "tt-warning-no_readme" + ) + return(NULL) + }, + .env = .env + ) +} + +local_tt_download_file_raw <- function(.env = parent.frame()) { + local_tt_mocked_bindings( + tt_download_file_raw = function(tt_date, target) { + file <- glue::glue("response-{tt_date}-{target}.rds") + path <- test_path("fixtures", file) + if (file.exists(path)) { + return(readRDS(path)) + } + cli::cli_abort("Test file not found.") + }, + .env = .env + ) +} + +local_gh_get_sha_in_folder <- function(.env = parent.frame()) { + local_tt_mocked_bindings( + gh_get_sha_in_folder = function(path, file, auth) { + return("5b7d51181d18d1af90caedd4e008509722612efb") + }, + .env = .env + ) +} + +local_gh_get_csv_data_type <- function(.env = parent.frame()) { + local_tt_mocked_bindings( + gh_get_csv = function(path, ...) { + if (path == "static/tt_data_type.csv") { + return( + gh_extract_csv( + readRDS(test_path("fixtures", "tt_data_type_response.rds")) + ) + ) + } else { + cli::cli_abort("Test broken.") + } + }, + .env = .env + ) +} + +local_readme <- function(.env = parent.frame()) { + local_tt_mocked_bindings( + readme = function(tt) { + return(NULL) + }, + .env = .env + ) +} diff --git a/tests/testthat/helper-tt_ref_test_that.R b/tests/testthat/helper-tt_ref_test_that.R deleted file mode 100644 index 96ecd9e..0000000 --- a/tests/testthat/helper-tt_ref_test_that.R +++ /dev/null @@ -1,42 +0,0 @@ -# Provide a wrapper to temporarily change location set for tidytuesday -# reference to preserve consistency - -tt_ref_test_that <- function(desc, ...) { - if (get_connectivity()) { - withr::local_options("tidytuesdayR.tt_repo" = "thebioengineer/tt_ref") - test_that(desc = desc, ...) - } -} - -check_api <- function(n = 30) { - skip_if_offline("github.com") - if (!get_connectivity()) { - skip("Connection to Github.com not available") - } - if (rate_limit_check(quiet = TRUE) <= n) { - skip("Rate Limit Met") - } -} - -local_test_repo <- function(.env = parent.frame()) { - withr::local_options("tidytuesdayR.tt_repo" = "thebioengineer/tt_ref") -} - -tt_no_internet_test_that <- function(desc, ...) { - withr::local_options( - "tidytuesdayR.tt_internet_connectivity" = FALSE, - "tidytuesdayR.tt_testing" = TRUE - ) - test_that(desc = desc, ...) -} - -tt_ref_encoding <- function(desc, encoding, ...) { - if (get_connectivity()) { - withr::local_options("tidytuesdayR.tt_repo" = "thebioengineer/tt_ref") - expect_warning( - withr::local_locale(LC_CTYPE = encoding), - "using locale code page other than 65001" - ) - test_that(desc = desc, ...) - } -} diff --git a/tests/testthat/test-encoding.R b/tests/testthat/test-encoding.R index bc4fc1b..e3de2c9 100644 --- a/tests/testthat/test-encoding.R +++ b/tests/testthat/test-encoding.R @@ -1,35 +1,29 @@ -tt_ref_encoding( - encoding = "Korean", - "Korean: Non-English encodings don't fail reading unicode from github", - { - check_api() - tt_data <- try(tt_datasets("2019"), silent = TRUE) - res <- nrow(data.frame(unclass(tt_data))) - expect_true(!inherits(tt_data, "try-error")) - expect_equal(res, 52) - } -) +test_that("Korean: Non-English encodings don't fail reading unicode from github", { + skip_if_not(.Platform$OS.type == "windows") + local_encoding("Korean") + local_tt_master_file() + local_tt_datasets() + tt_data <- tt_datasets("2019") + res <- nrow(data.frame(unclass(tt_data))) + expect_equal(res, 52) +}) -tt_ref_encoding( - encoding = "Japanese", - "Japanese: Non-English encodings don't fail reading unicode from github", - { - check_api() - tt_data <- try(tt_datasets("2019"), silent = TRUE) - res <- nrow(data.frame(unclass(tt_data))) - expect_true(!inherits(tt_data, "try-error")) - expect_equal(res, 52) - } -) +test_that("Japanese: Non-English encodings don't fail reading unicode from github", { + skip_if_not(.Platform$OS.type == "windows") + local_encoding("Japanese") + local_tt_master_file() + local_tt_datasets() + tt_data <- tt_datasets("2019") + res <- nrow(data.frame(unclass(tt_data))) + expect_equal(res, 52) +}) -tt_ref_encoding( - encoding = "Russian", - "Russian: Non-English encodings don't fail reading unicode from github", - { - check_api() - tt_data <- try(tt_datasets("2019"), silent = TRUE) - res <- nrow(data.frame(unclass(tt_data))) - expect_true(!inherits(tt_data, "try-error")) - expect_equal(res, 52) - } -) +test_that("Russian: Non-English encodings don't fail reading unicode from github", { + skip_if_not(.Platform$OS.type == "windows") + local_encoding("Russian") + local_tt_master_file() + local_tt_datasets() + tt_data <- tt_datasets("2019") + res <- nrow(data.frame(unclass(tt_data))) + expect_equal(res, 52) +}) diff --git a/tests/testthat/test-github_api.R b/tests/testthat/test-github_api.R index 33caaaf..6be9b47 100644 --- a/tests/testthat/test-github_api.R +++ b/tests/testthat/test-github_api.R @@ -1,203 +1,103 @@ -tt_ref_test_that( - "github_contents returns contents as text", - { - check_api() - - license_text <- github_contents("LICENSE") - - expect_type(license_text, "character") - expect_equal( - substr(license_text, 0, 76), - paste( - "MIT License\n\nCopyright (c)", - "2018 R for Data Science online learning community" - ), - ignore_attr = TRUE - ) - } -) - -tt_ref_test_that( - paste( - "github_contents flips to github_blob and", - "returns contents as text by default when larger than 1MB" - ), - { - check_api() - local_test_repo() - - tweets_text <- github_contents("static/tidytuesday_tweets.csv") - - expect_type(tweets_text, "character") - expect_true(object.size(tweets_text) > 1000000) - expect_equal( - substr(tweets_text, 0, 84), - paste0( - "\"user_id\",\"status_id\",\"created_at\",\"screen_name\",", - "\"text\",\"pic1\",\"pic2\",\"pic3\",\"pic4\"\n" - ), - ignore_attr = TRUE - ) - } -) - -tt_ref_test_that( - "github_contents throw informative error on failure", - { - check_api() - expect_error( - github_contents("static/BAD_ENTRY"), - "Response Code 404: Not Found", - ) - } -) - - -tt_ref_test_that( - "github_html returns contents that can be html as html", - { - check_api() - README <- github_html("README.md") - - expect_s3_class(README, "xml_document") - expect_error( - github_html("bad_file"), - "Response Code 404: Not Found", - ) - } -) - -tt_ref_test_that( - "github_sha get a data.frame with the sha for all files in the directory", - { - check_api() - SHA <- github_sha("static") - - expect_s3_class(SHA, "data.frame") - expect_equal(colnames(SHA), c("path", "sha")) - } -) - -tt_ref_test_that( - "github_sha returns error when bad entry", - { - check_api() - expect_error( - github_sha("bad_file_path"), - "Response Code 404: Not Found", - ) - } -) - -tt_ref_test_that( - "github_blob gets contents as either text or raw", - { - check_api() - license_text <- github_blob("LICENSE") - license_raw <- github_blob("LICENSE", as_raw = TRUE) - - expect_type(license_text, "character") - expect_equal( - substr(license_text, 0, 76), - paste( - "MIT License\n\nCopyright (c)", - "2018 R for Data Science online learning community" - ), - ignore_attr = TRUE - ) - - expect_type(license_raw, "raw") - expect_equal( - license_raw[1:76], - charToRaw(paste( - "MIT License\n\nCopyright (c)", - "2018 R for Data Science online learning community" - )), - ignore_attr = TRUE - ) - } -) - -tt_ref_test_that( - "github_blob retuns error on bad entry", - { - check_api() - expect_error( - github_blob("BAD_ENTRY", sha = "BAD_SHA"), - "Response Code 422: The sha parameter must be exactly 40 characters", - ) - } -) - -tt_ref_test_that( - "rate_limit_check returns actual value in environment", - { - val <- rate_limit_check(quiet = TRUE) - expect_equal(val, TT_GITHUB_ENV$RATE_REMAINING) - } -) - -tt_ref_test_that("rate_limit_check throws warning when within n of 0", { - rate_limit_update(list(limit = 50, remaining = 5, reset = 1000)) - on.exit({ - rate_limit_update() - }) - expect_message(rate_limit_check(n = 10, quiet = FALSE)) +test_that("gh_get_sha_in_folder gets sha for a file in a folder", { + local_tt_mocked_bindings( + gh_get = function(path, auth) { + return(readRDS(test_path("fixtures", "static_contents.rds"))) + } + ) + expect_equal( + { + gh_get_sha_in_folder("static", "tt_data_type.csv") + }, + "5b7d51181d18d1af90caedd4e008509722612efb" + ) + expect_equal( + { + gh_get_sha_in_folder("static", "tt_logo.png") + }, + "61ab36921f82e35c621c2c4086c38b177bc89ea1" + ) }) -tt_ref_test_that("rate_limit_check throws error when 0, except when quiet = TRUE", { - withr::local_options( - "tidytuesdayR.tt_testing" = TRUE +test_that("gh_get_csv gets and parses csv", { + local_tt_mocked_bindings( + gh_get = function(path, auth) { + return(readRDS(test_path("fixtures", "tt_data_type_response.rds"))) + } ) - on.exit({ - rate_limit_update() - }, add = TRUE) - rate_limit_update(list(limit = 50, remaining = 0, reset = 1000)) - expect_error( - rate_limit_check(quiet = FALSE), - "Github API Rate Limit hit. You must wait until" + test_response <- gh_get_csv("static/tt_data_type.csv") + expect_s3_class(test_response, "data.frame") + expect_setequal( + names(test_response), + c("Week", "Date", "year", "data_files", "data_type", "delim") ) + expect_equal(nrow(test_response), 683) }) -tt_no_internet_test_that("When there is no internet, error -1 is returned", { - expect_error( - github_contents("static/BAD_ENTRY"), - "Response Code -1: No Internet Connection", +test_that("gh_get_readme_html gets readme html", { + local_tt_mocked_bindings( + gh_get = function(path, auth, ...) { + if (path == "data/2020") { + return(readRDS(test_path("fixtures", "folder2020_response.rds"))) + } else if (path == "data/2020/readme.md") { + return(readRDS(test_path("fixtures", "readme2020_response.rds"))) + } + } ) - expect_error( - github_html("static/BAD_ENTRY"), - "Response Code -1: No Internet Connection", + test_result <- gh_get_readme_html("data/2020") + expected_result <- xml2::read_html( + readRDS(test_path("fixtures", "readme2020_response.rds"))$message ) - expect_error( - github_sha("static/BAD_ENTRY"), - "Response Code -1: No Internet Connection", + expect_equal(test_result, expected_result) +}) + +test_that("gh_get_readme_html warns when no readme found", { + local_tt_mocked_bindings( + gh_get_folder = function(...) { + list() + } ) - expect_error( - github_blob("bad_path"), - "Response Code -1: No Internet Connection" + expect_warning( + { + expect_null(gh_get_readme_html("data/2018/2018-04-02")) + }, + "No readme found", + class = "tt-warning-no_readme" ) }) -test_that("base_64_to_char works", { - expect_identical(base_64_to_char("SGVsbG8gV29ybGQ="), "Hello World") +test_that("gh_extract_text errors with empty response", { + expect_error( + { + gh_extract_text(list()) + }, + "No content found", + class = "tt-error-bad_gh_response" + ) }) -test_that("github_pat messages when not quiet", { - withr::local_envvar(GITHUB_PAT = "pat") - expect_message(github_pat(quiet = FALSE), "Using github PAT") +test_that("gh_extract_html errors with empty response", { + expect_error( + { + gh_extract_html(list()) + }, + "No html found", + class = "tt-error-bad_gh_response" + ) }) -test_that("github_pat returns NULL when no PAT available", { - old_PAT <- Sys.getenv("GITHUB_PAT") - if (length(old_PAT)) { - withr::defer(Sys.setenv(GITHUB_PAT = old_PAT)) - Sys.unsetenv("GITHUB_PAT") - } - old_TOKEN <- Sys.getenv("GITHUB_TOKEN") - if (length(old_TOKEN)) { - withr::defer(Sys.setenv(GITHUB_TOKEN = old_TOKEN)) - Sys.unsetenv("GITHUB_TOKEN") - } - - expect_null(github_pat()) +test_that("gh_extract_sha_in_folder errors for missing file", { + expect_error( + { + gh_extract_sha_in_folder(list(), "missing_file_name") + }, + "Found no", + class = "tt-error-file_not_found" + ) + expect_error( + { + gh_extract_sha_in_folder(list(list(name = "found_file_name")), "missing_file_name") + }, + "Found 1 file", + class = "tt-error-file_not_found" + ) }) diff --git a/tests/testthat/test-last_tuesday.R b/tests/testthat/test-last_tuesday.R index b33be12..e0a049c 100644 --- a/tests/testthat/test-last_tuesday.R +++ b/tests/testthat/test-last_tuesday.R @@ -1,6 +1,4 @@ -tt_ref_test_that("last_tuesday will give you the most recent tuesday", { - check_api() - +test_that("last_tuesday will give you the most recent tuesday", { ## Look backwards to the last tt date_1 <- as.Date("2020-01-01") last_tuesday_1 <- last_tuesday(date_1) @@ -27,25 +25,19 @@ tt_ref_test_that("last_tuesday will give you the most recent tuesday", { ) }) - -tt_ref_test_that("tt_date will give you the date of the tuesday", { - check_api() - - ## Look backwards to the last tt - refdate1 <- tt_date(2018, week = 1) - refdate2 <- tt_date(2019, week = 1) - refdate3 <- tt_date(2020, week = 2) # no data available for week 1! - - expect_equal( - refdate1, - as.Date("2018-04-02") - ) - expect_equal( - refdate2, - as.Date("2019-01-01") +test_that("last_tuesday errors with bad dates", { + expect_error( + { + last_tuesday("blue") + }, + "cannot be coerced", + class = "tt-error-invalid_date" ) - expect_equal( - refdate3, - as.Date("2020-01-07") + expect_error( + { + last_tuesday(1) + }, + "cannot be coerced", + class = "tt-error-invalid_date" ) }) diff --git a/tests/testthat/test-tt_available.R b/tests/testthat/test-tt_available.R index 6e549ec..7348a9e 100644 --- a/tests/testthat/test-tt_available.R +++ b/tests/testthat/test-tt_available.R @@ -1,16 +1,16 @@ -tt_ref_test_that( - "tt_datasets throws errors when asking for invalid years", - { - check_api() - expect_error( - tt_datasets(2017), - paste0( - "Invalid `year` provided to list available tidytuesday datasets.", - "\n\tUse one of the following years:" - ) - ) - } -) +test_that("tt_datasets throws errors when asking for invalid years", { + local_tt_mocked_bindings( + tt_years = function(...) { + 2018:2024 + } + ) + expect_error( + { + tt_datasets(2017) + }, + class = "tt-error-invalid_year" + ) +}) test_that("printing tt_datasets returns all the values as a printed data.frame if not interactive", { ds <- structure( @@ -23,73 +23,80 @@ test_that("printing tt_datasets returns all the values as a printed data.frame i }) }) -tt_ref_test_that( - "tt_available returns object of with all years data available", - { - check_api() - ds <- tt_available() - - expect_s3_class(ds, "tt_dataset_table_list") - expect_setequal(names(ds), as.character(tt_years())) - - ds_content <- as.list(unclass(ds)) - - ds_content_data <- - lapply(ds_content, function(x) { - data.frame(unclass(x), stringsAsFactors = FALSE) - }) - ds_content_html <- - lapply(ds_content, function(x) { - rvest::html_table(attr(x, ".html"))[[1]] - }) +test_that("tt_available returns object with all years data available", { + local_tt_mocked_bindings( + tt_years = function(...) { + 2019:2020 + }, + gh_get_readme_html = function(...) { + xml2::read_html(test_path("fixtures", "readme2020.html")) + } + ) + ds <- tt_available() + expect_s3_class(ds, "tt_dataset_table_list") + expect_setequal(names(ds), as.character(tt_years())) - expect_equal( - ds_content_html, - ds_content_data, - ignore_attr = TRUE - ) - } -) + ds_content <- as.list(unclass(ds)) + ds_content_data <- + lapply(ds_content, function(x) { + data.frame(unclass(x), stringsAsFactors = FALSE) + }) + ds_content_html <- + lapply(ds_content, function(x) { + rvest::html_table(attr(x, ".html"))[[1]] + }) + expect_equal( + ds_content_html, + ds_content_data, + ignore_attr = TRUE + ) +}) test_that("printing tt_available returns all the values as a printed data.frame if not interactive", { - ds <- structure( - list(test_year = data.frame(a = 1:2, b = 3:4)), - class = c("tt_dataset_table_list") - ) - expect_snapshot({ - print(ds, is_interactive = FALSE) - }) - } -) + ds <- structure( + list(test_year = data.frame(a = 1:2, b = 3:4)), + class = c("tt_dataset_table_list") + ) + expect_snapshot({ + print(ds, is_interactive = FALSE) + }) +}) -tt_ref_test_that( - "tt_dataset_table and tt_dataset_table_list objects can make html outputs", { - check_api() - ds_tl <- tt_available() - ds_t <- tt_datasets(2019) +test_that("tt_dataset_table and tt_dataset_table_list objects can make html outputs", { + local_tt_mocked_bindings( + tt_years = function(...) { + 2019:2020 + }, + gh_get_readme_html = function(...) { + xml2::read_html(test_path("fixtures", "readme2020.html")) + } + ) + ds_tl <- tt_available() + ds_t <- tt_datasets(2019) - tmpfile <- tempfile(fileext = ".html") - ds_tl_html <- make_tt_dataset_list_html(ds_tl, file = tmpfile) + tmpfile <- withr::local_tempfile(fileext = ".html") + ds_tl_html <- make_tt_dataset_list_html(ds_tl, file = tmpfile) - tmpfile2 <- tempfile(fileext = ".html") - ds_t_html <- make_tt_dataset_html(ds_t, file = tmpfile2) + tmpfile2 <- withr::local_tempfile(fileext = ".html") + ds_t_html <- make_tt_dataset_html(ds_t, file = tmpfile2) - expect_true(file.exists(tmpfile)) - expect_true(file.exists(tmpfile2)) - expect_equal( - xml2::read_html(tmpfile), - ds_tl_html - ) - expect_equal( - xml2::read_html(tmpfile2), - ds_t_html - ) - } -) + expect_true(file.exists(tmpfile)) + expect_true(file.exists(tmpfile2)) + expect_equal( + xml2::read_html(tmpfile), + ds_tl_html + ) + expect_equal( + xml2::read_html(tmpfile2), + ds_t_html + ) +}) test_that("save_tt_object saves an html file", { expect_true( - grepl("html$", {save_tt_object("", function(x, file) x)}) + grepl("html$", { + save_tt_object("", function(x, file) x) + }) ) }) @@ -104,12 +111,16 @@ test_that("tt_dataset_table and tt_dataset_table_list objects print through html ) ds <- structure("", class = "tt_dataset_table") expect_message( - {print(ds, is_interactive = TRUE)}, + { + print(ds, is_interactive = TRUE) + }, "tmpfile_path" ) ds <- structure("", class = "tt_dataset_table_list") expect_message( - {print(ds, is_interactive = TRUE)}, + { + print(ds, is_interactive = TRUE) + }, "tmpfile_path" ) }) diff --git a/tests/testthat/test-tt_check_date.R b/tests/testthat/test-tt_check_date.R index ff9349d..d18811e 100644 --- a/tests/testthat/test-tt_check_date.R +++ b/tests/testthat/test-tt_check_date.R @@ -1,5 +1,5 @@ -tt_ref_test_that("valid dates work", { - check_api() +test_that("valid dates work", { + local_tt_master_file() tt_date <- tt_check_date("2019-04-02") expect_equal( tt_date, @@ -7,8 +7,8 @@ tt_ref_test_that("valid dates work", { ) }) -tt_ref_test_that("valid year-week combinations work", { - check_api() +test_that("valid year-week combinations work", { + local_tt_master_file() tt_date_1 <- tt_check_date(2019, 14) tt_date_2 <- tt_check_date("2019", 14) @@ -16,22 +16,69 @@ tt_ref_test_that("valid year-week combinations work", { expect_equal(tt_date_2, as.Date("2019-04-02")) }) -tt_ref_test_that("Close dates are suggested if provided date is incorrect", { - check_api() +test_that("Close dates are suggested if provided date is incorrect", { + local_tt_master_file() expect_error( tt_check_date("2019-04-04"), - paste0( - "2019-04-04 is not a date that has TidyTuesday data.", - "\n\tDid you mean: 2019-04-02?" - ), - fixed = TRUE + "2019-04-02", + class = "tt-error-invalid_date" ) }) -tt_ref_test_that("invalid entries are flagged", { - check_api() +test_that("Invalid weeks throw errors", { + local_tt_master_file() + expect_error( + tt_check_date(2018, 20), + "1-19", + class = "tt-error-invalid_date" + ) + expect_error( + tt_check_date(2018, 0), + "positive integer", + class = "tt-error-invalid_date" + ) + expect_error( + tt_check_date(2020, 1), + "data available for download", + class = "tt-error-invalid_date" + ) +}) + +test_that("invalid entries are flagged", { + local_tt_master_file() expect_error( tt_check_date("xyz"), "Entries must render to a valid date or year" ) }) + +test_that("tt_check_year checks years", { + local_tt_master_file() + expect_error( + tt_check_year(2015), + "did not exist", + class = "tt-error-invalid_year" + ) +}) + +test_that("tt_date also works", { + # This is mostly just a wrapper around tt_check_date(), so most tests are + # handled above. + local_tt_master_file() + tt_date_1 <- tt_date(2019, 14) + tt_date_2 <- tt_date("2019", 14) + + expect_equal(tt_date_1, as.Date("2019-04-02")) + expect_equal(tt_date_2, as.Date("2019-04-02")) +}) + +test_that("tt_check_date errors informatively with no args", { + local_tt_master_file() + expect_error( + { + tt_check_date() + }, + "Provide either", + class = "tt-error-invalid_date" + ) +}) diff --git a/tests/testthat/test-tt_compile.R b/tests/testthat/test-tt_compile.R deleted file mode 100644 index 5af9131..0000000 --- a/tests/testthat/test-tt_compile.R +++ /dev/null @@ -1,45 +0,0 @@ -tt_ref_test_that("Check that tt_compile lists all files for the date", { - check_api() - - tt_c <- tt_compile("2019-01-15") - - expect_equal( - tt_c$files$data_files, - c("agencies.csv", "launches.csv") - ) - - expect_equal( - tt_c$files$data_type, - c("csv", "csv") - ) - - expect_equal( - tt_c$files$delim, - c(",", ",") - ) - - expect_true( - !is.null(tt_c$readme) - ) -}) - -tt_ref_test_that("Check that tt_compile returns NULL for missing readme's", { - check_api() - - tt_c <- tt_compile("2018-04-02") - - expect_equal( - tt_c$files$data_files, - "us_avg_tuition.xlsx" - ) - expect_equal( - tt_c$files$data_type, - "xlsx" - ) - expect_true( - is.na(tt_c$files$delim) - ) - expect_true( - is.null(tt_c$readme) - ) -}) diff --git a/tests/testthat/test-tt_download.R b/tests/testthat/test-tt_download.R index 4547539..40213bc 100644 --- a/tests/testthat/test-tt_download.R +++ b/tests/testthat/test-tt_download.R @@ -1,19 +1,66 @@ -# Most of this function is tested via other tests right now. -test_that("tt_download messages for bad connectivity", { - local_mocked_bindings( - get_connectivity = function() FALSE, - check_connectivity = function(rerun) NULL - ) - expect_message( - {expect_null(tt_download())}, - "Warning - No Internet Connectivity" +test_that("tt_download errors for bad file", { + local_tt_master_file() + local_tt_week_readme_html() + expect_message(expect_message({ + tt <- tt_load_gh("2019-01-15") + })) + expect_error( + { + tt_download(tt, "bad_filename") + }, + "must be one or more of", + class = "tt-error-bad_file" ) }) -test_that("tt_download returns NULL when no rate limit available", { - local_mocked_bindings( - get_connectivity = function() TRUE, - rate_limit_check = function() 0 - ) - expect_null(tt_download()) +test_that("tt_download downloads all files", { + local_tt_master_file() + local_tt_week_readme_html() + local_tt_download_file_raw() + expect_message(expect_message({ + tt <- tt_load_gh("2019-01-15") + })) + # Extract expect_message level to catch newline. + expect_message(expect_message( + expect_message( + expect_message( + { + tt_data <- tt_download(tt) + }, + "Downloading files" + ), + "1 of 2", + class = "tt-message-download" + ), + "2 of 2", + class = "tt-message-download" + )) + expect_type(tt_data, "list") + expect_length(tt_data, 2) + expect_named(tt_data, c("agencies", "launches")) + expect_s3_class(tt_data$agencies, "tbl_df") + expect_s3_class(tt_data$launches, "tbl_df") +}) + +test_that("tt_download downloads specific files", { + local_tt_master_file() + local_tt_week_readme_html() + local_tt_download_file_raw() + expect_message(expect_message({ + tt <- tt_load_gh("2019-01-15") + })) + # Extract expect_message level to catch newline. + expect_message(expect_message( + expect_message( + { + tt_data <- tt_download(tt, files = "agencies.csv") + }, + "Downloading files" + ), + "1 of 1", + class = "tt-message-download" + )) + expect_type(tt_data, "list") + expect_length(tt_data, 1) + expect_s3_class(tt_data$agencies, "tbl_df") }) diff --git a/tests/testthat/test-tt_download_file.R b/tests/testthat/test-tt_download_file.R index cab9064..5d27740 100644 --- a/tests/testthat/test-tt_download_file.R +++ b/tests/testthat/test-tt_download_file.R @@ -1,19 +1,149 @@ -# Most of this function is tested via other tests right now. -test_that("tt_download_file messages for bad connectivity", { - local_mocked_bindings( - get_connectivity = function() FALSE, - check_connectivity = function(rerun) NULL +test_that("tt_download_file errors for bad index", { + local_tt_master_file() + local_tt_week_readme_html() + expect_message(expect_message({ + tt <- tt_load_gh("2019-01-15") + })) + expect_error( + { + tt_download_file(tt, 3) + }, + "File 3 not found", + class = "tt-error-bad_index" ) - expect_message( - {expect_null(tt_download_file())}, - "Warning - No Internet Connectivity" + expect_error( + { + tt_download_file(tt, "bad_filename") + }, + "File bad_filename not found", + class = "tt-error-bad_index" ) }) -test_that("tt_download_file returns NULL when no rate limit available", { - local_mocked_bindings( - get_connectivity = function() TRUE, - rate_limit_check = function() 0 +test_that("tt_download_file works for a valid tt", { + local_tt_master_file() + local_tt_week_readme_html() + local_tt_download_file_raw() + expect_message(expect_message({ + tt <- tt_load_gh("2019-01-15") + })) + test_result <- tt_download_file(tt, 1) + expect_s3_class(test_result, c("tbl_df", "data.frame")) + expect_setequal( + colnames(test_result), + c( + "agency", "count", "ucode", "state_code", "type", "class", "tstart", + "tstop", "short_name", "name", "location", "longitude", "latitude", + "error", "parent", "short_english_name", "english_name", "unicode_name", + "agency_type" + ) ) - expect_null(tt_download_file()) }) + +test_that("tt_download_file works when delim isn't explicitly provided", { + local_tt_master_file() + local_tt_week_readme_html() + local_tt_download_file_raw() + expect_message(expect_message({ + tt <- tt_load_gh("2022-05-10") + })) + test_result <- tt_download_file(tt, "nyt_titles.tsv") + expect_s3_class(test_result, c("tbl_df", "data.frame")) + expect_setequal( + colnames(test_result), + c( + "id", "title", "author", "year", "total_weeks", "first_week", + "debut_rank", "best_rank" + ) + ) +}) + +test_that("tt_download_file downloads and parses xlsx", { + local_tt_master_file() + local_tt_week_readme_html() + local_tt_download_file_raw() + expect_message(expect_message(expect_warning({ + tt <- tt_load_gh("2018-04-02") + }))) + test_result <- tt_download_file(tt, 1) + expect_s3_class(test_result, c("tbl_df", "data.frame")) + expect_setequal( + colnames(test_result), + c( + "State", "2004-05", "2005-06", "2006-07", "2007-08", "2008-09", "2009-10", + "2010-11", "2011-12", "2012-13", "2013-14", "2014-15", "2015-16" + ) + ) +}) + +# test_that("tt_download_file downloads and parses rds", { +# local_tt_master_file() +# local_tt_week_readme_html() +# local_tt_download_file_raw() +# expect_message(expect_message(expect_warning( +# {tt <- tt_load_gh("2018-04-02")} +# ))) +# test_result <- tt_download_file(tt, 1) +# expect_s3_class(test_result, c("tbl_df", "data.frame")) +# expect_setequal( +# colnames(test_result), +# c( +# "State", "2004-05", "2005-06", "2006-07", "2007-08", "2008-09", "2009-10", +# "2010-11", "2011-12", "2012-13", "2013-14", "2014-15", "2015-16" +# ) +# ) +# }) + +# test_that("tt_download_file downloads and parses xls", { +# local_tt_master_file() +# local_tt_week_readme_html() +# local_tt_download_file_raw() +# expect_message(expect_message(expect_warning( +# {tt <- tt_load_gh("2018-04-02")} +# ))) +# test_result <- tt_download_file(tt, 1) +# expect_s3_class(test_result, c("tbl_df", "data.frame")) +# expect_setequal( +# colnames(test_result), +# c( +# "State", "2004-05", "2005-06", "2006-07", "2007-08", "2008-09", "2009-10", +# "2010-11", "2011-12", "2012-13", "2013-14", "2014-15", "2015-16" +# ) +# ) +# }) + +# test_that("tt_download_file downloads and parses vgz", { +# local_tt_master_file() +# local_tt_week_readme_html() +# local_tt_download_file_raw() +# expect_message(expect_message(expect_warning( +# {tt <- tt_load_gh("2018-04-02")} +# ))) +# test_result <- tt_download_file(tt, 1) +# expect_s3_class(test_result, c("tbl_df", "data.frame")) +# expect_setequal( +# colnames(test_result), +# c( +# "State", "2004-05", "2005-06", "2006-07", "2007-08", "2008-09", "2009-10", +# "2010-11", "2011-12", "2012-13", "2013-14", "2014-15", "2015-16" +# ) +# ) +# }) + +# test_that("tt_download_file downloads and parses zip", { +# local_tt_master_file() +# local_tt_week_readme_html() +# local_tt_download_file_raw() +# expect_message(expect_message(expect_warning( +# {tt <- tt_load_gh("2018-04-02")} +# ))) +# test_result <- tt_download_file(tt, 1) +# expect_s3_class(test_result, c("tbl_df", "data.frame")) +# expect_setequal( +# colnames(test_result), +# c( +# "State", "2004-05", "2005-06", "2006-07", "2007-08", "2008-09", "2009-10", +# "2010-11", "2011-12", "2012-13", "2013-14", "2014-15", "2015-16" +# ) +# ) +# }) diff --git a/tests/testthat/test-tt_load.R b/tests/testthat/test-tt_load.R index 3242e66..99941d5 100644 --- a/tests/testthat/test-tt_load.R +++ b/tests/testthat/test-tt_load.R @@ -1,80 +1,29 @@ -tt_ref_test_that("tt_load loads all data available", { - check_api() - - expect_snapshot({ - tt_obj <- tt_load("2019-01-15") - }) - expect_s3_class(tt_obj, "tt_data") - expect_length(tt_obj, 2) - expect_named(tt_obj, c("agencies", "launches")) - - # Save fixtures for comparison. - # download.file( - # file.path( - # "https://raw.githubusercontent.com/thebioengineer/tt_ref", - # "master/data/2019/2019-01-15/agencies.csv" - # ), - # test_path("testfiles", "agencies.csv") - # ) - # download.file( - # file.path( - # "https://raw.githubusercontent.com/thebioengineer/tt_ref", - # "master/data/2019/2019-01-15/launches.csv" - # ), - # test_path("testfiles", "launches.csv") - # ) - agencies <- readr::read_csv( - test_path("testfiles", "agencies.csv"), - show_col_types = FALSE - ) - launches <- readr::read_csv( - test_path("testfiles", "launches.csv"), - show_col_types = FALSE - ) - expect_equal( - tt_obj$agencies, - agencies - ) - expect_equal( - tt_obj$launches, - launches - ) +test_that("tt_load loads data", { + local_tt_master_file() + local_tt_week_readme_html() + local_tt_download_file_raw() + expect_message(expect_message(expect_message(expect_message(expect_message(expect_message({ + tt_data <- tt_load("2019-01-15") + })))))) + expect_s3_class(tt_data, "tt_data") + expect_length(tt_data, 2) + expect_named(tt_data, c("agencies", "launches")) }) -tt_ref_test_that("tt_load loads excel files properly", { - check_api() - +test_that("print.tt_data lists the available datasets", { + local_tt_master_file() + local_tt_week_readme_html() + local_tt_download_file_raw() + local_readme() + + expect_message(expect_message(expect_message(expect_message(expect_message( + expect_message({ + tt_data <- tt_load("2019-01-15") + }) + ))))) expect_snapshot({ - tt_obj <- tt_load("2018-04-02") + test_result <- print(tt_data) }) - expect_s3_class(tt_obj, "tt_data") - expect_length(tt_obj, 1) - expect_named(tt_obj, "us_avg_tuition") - - # File was saved manually from - # https://github.com/thebioengineer/tt_ref/blob/master/data/2018/2018-04-02/us_avg_tuition.xlsx - # because that's easier for setting this up than essentially duplicating the - # code in tt_load. - us_avg_tuition <- readxl::read_xlsx(test_path("testfiles", "us_avg_tuition.xlsx")) - expect_equal( - tt_obj$us_avg_tuition, - us_avg_tuition - ) -}) - - -tt_no_internet_test_that("When there is no internet, returns NULL", { - expect_message( - {tt_obj <- tt_load("2018-04-02")}, - "Warning - No Internet Connectivity" - ) - expect_null(tt_obj) -}) -test_that("tt_load returns NULL when rate limit is exceeded", { - local_mocked_bindings( - get_connectivity = function() TRUE, - rate_limit_check = function() 0 - ) - expect_null(tt_load("2018-04-02")) + expect_identical(test_result, tt_data) }) diff --git a/tests/testthat/test-tt_load_gh.R b/tests/testthat/test-tt_load_gh.R index 0cfefb3..eba9ecb 100644 --- a/tests/testthat/test-tt_load_gh.R +++ b/tests/testthat/test-tt_load_gh.R @@ -1,226 +1,190 @@ -# check that correct data are returned -tt_ref_test_that( - "tt_load_gh returns tt object when provided proper date", - { - check_api() - - expect_message( - { - expect_message( - {tt <- tt_load_gh("2019-01-15")}, - "Compiling #TidyTuesday" - ) - }, - "There are 2 files" - ) - - testthat::expect_s3_class(tt, "tt") - testthat::expect_equal( - attr(tt, ".files")$data_files, - c("agencies.csv", "launches.csv") - ) - } -) - -# check that correct data are returned -tt_ref_test_that( - "tt_load_gh returns tt object when provided proper year and TT week number", - { - check_api() - expect_message( - { - expect_message( - {tt <- tt_load_gh(2019, 3)}, - "Compiling #TidyTuesday" - ) - }, - "There are 2 files" - ) - - testthat::expect_s3_class(tt, "tt") - testthat::expect_equal( - attr(tt, ".files")$data_files, - c("agencies.csv", "launches.csv") - ) - } -) +test_that("tt_compile lists all files for the date", { + local_tt_master_file() + local_tt_week_readme_html() + tt_c <- tt_compile("2019-01-15") + expect_equal( + tt_c$files$data_files, + c("agencies.csv", "launches.csv") + ) + expect_equal( + tt_c$files$data_type, + c("csv", "csv") + ) + expect_equal( + tt_c$files$delim, + c(",", ",") + ) + expect_true( + !is.null(tt_c$readme) + ) +}) +test_that("tt_compile returns NULL for missing readme's", { + local_tt_master_file() + local_tt_week_readme_html() + expect_warning( + { + tt_c <- tt_compile("2018-04-02") + }, + "No readme found", + class = "tt-warning-no_readme" + ) + + expect_equal( + tt_c$files$data_files, + "us_avg_tuition.xlsx" + ) + expect_equal( + tt_c$files$data_type, + "xlsx" + ) + expect_true( + is.na(tt_c$files$delim) + ) + expect_true( + is.null(tt_c$readme) + ) +}) -# check that errors are returned -tt_ref_test_that( - "tt_load_gh returns error when incorrect date", - { - check_api() - nullout <- capture.output({ - testthat::expect_error( - tt_load_gh("2019-01-16"), - "is not a date that has TidyTuesday data" +test_that("tt_load_gh returns tt object when provided proper date", { + local_tt_master_file() + local_tt_week_readme_html() + expect_message( + { + expect_message( + { + tt <- tt_load_gh("2019-01-15") + }, + "Compiling #TidyTuesday" ) - }) - } -) -tt_ref_test_that( - "tt_load_gh returns error when incorrect years or week number entries", - { - check_api() - - testthat::expect_error( - tt_load_gh(2018, 92), - "'92' is not a valid TidyTuesday week entry for" - ) - testthat::expect_error( - tt_load_gh(2017, 92), - "TidyTuesday did not exist for" - ) - } -) -# check that error is thrown when requesting data from a week that did not -# exist for that year -tt_ref_test_that( - "tt_load_gh returns tt object when provided proper year and TT week number", - { - check_api() - testthat::expect_error( - tt_load_gh(2020, 1), - "does not have data available for download from github" - ) - } -) - -tt_ref_test_that( - "tt_load_gh returns error when incorrect years or week number entries", - { - check_api() - expect_error( - tt_load_gh(2018, 92), - "'92' is not a valid TidyTuesday week entry for" - ) - expect_error( - tt_load_gh(2017, 92), - "TidyTuesday did not exist for" - ) - } -) - -tt_ref_test_that( - "tt_load_gh returns error when incorrect years or week number entries", - { - check_api() - expect_error( - tt_load_gh(2018, 92), - "'92' is not a valid TidyTuesday week entry for" - ) - expect_error( - tt_load_gh(2017, 92), - "TidyTuesday did not exist for" - ) - } -) - -tt_ref_test_that( - "tt_load_gh returns error when nothing is entered", - { - check_api() - expect_error( - tt_load_gh(), - "Enter either the year or date of the TidyTuesday Data" - ) - } -) - -tt_ref_test_that( - paste( - "tt_load_gh returns error when week is not", - "a valid entry between 1 and n weeks" - ), - { - check_api() - testthat::expect_error( - tt_load_gh(2019, 0), - "Week entry must be a valid positive integer value." - ) - } -) - -# test driven dev, new feature to add -tt_ref_test_that( - "Returns simple list of object when no readme.md available", - { - check_api() - expect_message( - { - expect_message( - {tt <- tt_load_gh("2018-04-09")}, - "Compiling #TidyTuesday" - ) - }, - "There is 1 file" - ) - expect_s3_class(tt, "tt") - expect_true(length(attr(tt, ".readme")) == 0) # object should not exist - } -) + }, + "There are 2 files" + ) + expect_s3_class(tt, "tt") + expect_equal( + attr(tt, ".files")$data_files, + c("agencies.csv", "launches.csv") + ) +}) -tt_ref_test_that( - "tt_load_gh ignores extra files/diretory paths", - { - check_api() - expect_message( - { - expect_message( - {tt_obj <- tt_load_gh("2019-04-02")}, - "Compiling #TidyTuesday" - ) - }, - "There is 1 file" - ) - expect_message( - { - expect_message( - {tt_obj_2 <- tt_load_gh("2019-04-09")}, - "Compiling #TidyTuesday" - ) - }, - "There are 3 files" - ) +test_that("tt_load_gh returns tt object when provided proper year and TT week number", { + local_tt_master_file() + local_tt_week_readme_html() + expect_message( + { + expect_message( + { + tt <- tt_load_gh(2019, 3) + }, + "Compiling #TidyTuesday" + ) + }, + "There are 2 files" + ) + expect_s3_class(tt, "tt") + expect_equal( + attr(tt, ".files")$data_files, + c("agencies.csv", "launches.csv") + ) +}) - expect_equal(length(tt_obj), 1) - expect_equal(tt_obj[1], "bike_traffic.csv") +test_that("tt_load_gh errors when incorrect date", { + local_tt_master_file() + expect_error( + tt_load_gh("2019-01-16"), + class = "tt-error-invalid_date" + ) +}) - expect_equal(length(tt_obj_2), 3) - expect_equal( - tt_obj_2[1:3], - c( - "grand_slam_timeline.csv", - "grand_slams.csv", - "player_dob.csv" +test_that("tt_load_gh returns list of object when no readme.md available", { + local_tt_master_file() + local_tt_week_readme_html() + expect_message( + { + expect_message( + { + expect_warning( + { + tt <- tt_load_gh("2018-04-09") + }, + class = "tt-warning-no_readme" + ) + }, + "Compiling #TidyTuesday" ) - ) - } -) + }, + "There is 1 file" + ) + expect_s3_class(tt, "tt") + expect_true(length(attr(tt, ".readme")) == 0) # object should not exist +}) -tt_ref_test_that( - "tt_load_gh finds all the files in the readme", - { - check_api() - expect_message( - { - expect_message( - {tt_obj <- tt_load_gh("2020-04-21")}, - "Compiling #TidyTuesday" - ) - }, - "There are 2 files" - ) +test_that("tt_load_gh ignores extra files/diretory paths", { + local_tt_master_file() + local_tt_week_readme_html() + expect_message( + { + expect_message( + { + tt_obj <- tt_load_gh("2019-04-02") + }, + "Compiling #TidyTuesday" + ) + }, + "There is 1 file" + ) + expect_equal(length(tt_obj), 1) + expect_equal(tt_obj[1], "bike_traffic.csv") + + expect_message( + { + expect_message( + { + tt_obj_2 <- tt_load_gh("2019-04-09") + }, + "Compiling #TidyTuesday" + ) + }, + "There are 3 files" + ) + expect_equal(length(tt_obj_2), 3) + expect_equal( + tt_obj_2[1:3], + c( + "grand_slam_timeline.csv", + "grand_slams.csv", + "player_dob.csv" + ) + ) +}) - expect_equal(length(tt_obj), 2) - expect_equal(tt_obj[1:2], c("gdpr_text.tsv", "gdpr_violations.tsv")) - } -) +test_that("tt_load_gh works with tsvs", { + local_tt_master_file() + local_tt_week_readme_html() + expect_message( + { + expect_message( + { + tt_obj <- tt_load_gh("2020-04-21") + }, + "Compiling #TidyTuesday" + ) + }, + "There are 2 files" + ) -tt_no_internet_test_that("When there is no internet, returns NULL", { - message <- capture_messages(tt_obj <- tt_load_gh("2018-04-02")) + expect_equal(length(tt_obj), 2) + expect_equal(tt_obj[1:2], c("gdpr_text.tsv", "gdpr_violations.tsv")) +}) - expect_equal(message, "Warning - No Internet Connectivity\n") - expect_true(is.null(tt_obj)) +test_that("print.tt lists all the available files for the weeks tt", { + local_tt_master_file() + local_tt_week_readme_html() + expect_message(expect_message({ + tt <- tt_load_gh("2019-01-15") + })) + expect_snapshot({ + test_result <- print(tt) + }) + expect_identical(test_result, tt) }) diff --git a/tests/testthat/test-tt_master_file.R b/tests/testthat/test-tt_master_file.R index 23b060c..6cd5524 100644 --- a/tests/testthat/test-tt_master_file.R +++ b/tests/testthat/test-tt_master_file.R @@ -1,50 +1,10 @@ -tt_ref_test_that( - "`tt_master_file()` will update the masterfile reference if is null", +test_that( + "`tt_master_file()` updates the masterfile reference", { - check_api() - - TT_MASTER_ENV$TT_MASTER_FILE <- data.frame() - - expect_true(is.data.frame(TT_MASTER_ENV$TT_MASTER_FILE)) - expect_true(nrow(TT_MASTER_ENV$TT_MASTER_FILE) == 0) - + local_gh_get_sha_in_folder() + local_gh_get_csv_data_type() ttmf <- tt_master_file() - expect_true(is.data.frame(TT_MASTER_ENV$TT_MASTER_FILE)) expect_true(nrow(TT_MASTER_ENV$TT_MASTER_FILE) > 0) } ) - -tt_ref_test_that( - "`tt_update_master_file()` will update if the sha is old", - { - check_api() - - setup_df <- data.frame(x = 1) - attr(setup_df, ".sha") <- "old sha" - tt_master_file(assign = setup_df) - - ttmf <- tt_master_file() - - - tt_update_master_file() - updated_ttmf <- tt_master_file() - - expect_true(identical(ttmf, setup_df)) - expect_true(!identical(updated_ttmf, setup_df)) - } -) - - -tt_ref_test_that( - "`tt_update_master_file()` will update if the sha is old", - { - check_api() - - ttmf <- tt_master_file() - expect_equal( - colnames(ttmf), - c("Week", "Date", "year", "data_files", "data_type", "delim") - ) - } -) diff --git a/tests/testthat/test-tt_parse_blob.R b/tests/testthat/test-tt_parse_blob.R deleted file mode 100644 index 695b331..0000000 --- a/tests/testthat/test-tt_parse_blob.R +++ /dev/null @@ -1,153 +0,0 @@ -test_that("`tt_parse_text` can parse text", { - result_comma <- - tt_parse_text( - "col1,col2\nval1,val2\nval3,val4", - func = readr::read_delim, - delim = ",", - show_col_types = FALSE - ) - - result_tab <- - tt_parse_text( - "col1\tcol2\nval1\tval2\nval3\tval4", - func = readr::read_delim, - delim = "\t", - show_col_types = FALSE - ) - - result_special <- - tt_parse_text( - "col1|col2\nval1|val2\nval3|val4", - func = readr::read_delim, - delim = "|", - show_col_types = FALSE - ) - - expected <- tibble::tribble( - ~col1, ~col2, - "val1", "val2", - "val3", "val4" - ) - - expect_equal(result_comma, expected) - expect_equal(result_tab, expected) - expect_equal(result_special, expected) -}) - - -test_that("`tt_parse_binary` can parse raw inputs", { - input_raw <- serialize("RAW VALUE", connection = NULL) - - result_rds <- - tt_parse_binary( - input_raw, - func = readRDS, - filename = "test_rds.rds" - ) - - expect_equal(result_rds, "RAW VALUE") -}) - - -test_that("`tt_parse_blob` can figure out how to handle text or raw", { - input_raw <- serialize("RAW VALUE", connection = NULL) - - expected_text <- tibble::tribble( - ~col1, ~col2, - "val1", "val2", - "val3", "val4" - ) - - result_text_comma <- - tt_parse_blob( - blob = "col1,col2\nval1,val2\nval3,val4", - file_info = data.frame( - data_files = "text.txt", - data_type = "txt", - delim = ",", - stringsAsFactors = FALSE - ), - show_col_types = FALSE - ) - - result_text_tab <- - tt_parse_blob( - "col1\tcol2\nval1\tval2\nval3\tval4", - file_info = data.frame( - data_files = "text.txt", - data_type = "txt", - delim = "\t", - stringsAsFactors = FALSE - ), - show_col_types = FALSE - ) - - result_text_special <- - tt_parse_blob( - "col1|col2\nval1|val2\nval3|val4", - file_info = data.frame( - data_files = "text.txt", - data_type = "txt", - delim = "|", stringsAsFactors = FALSE - ), - show_col_types = FALSE - ) - - result_raw_rda <- - tt_parse_blob( - input_raw, - file_info = data.frame( - data_files = "test_rds.rds", - data_type = "rds", - delim = "" - ) - ) - - result_text_guess <- - tt_parse_blob( - blob = "col1,col2\nval1,val2\nval3,val4", - file_info = data.frame( - data_files = "text.csv", - data_type = "csv", - delim = NA, - stringsAsFactors = FALSE - ), - show_col_types = FALSE - ) - - expect_equal(result_text_comma, expected_text) - expect_equal(result_text_tab, expected_text) - expect_equal(result_text_special, expected_text) - expect_equal(result_raw_rda, "RAW VALUE") - expect_equal(result_text_guess, expected_text) -}) - -tt_ref_test_that("tt_parse_blob can handle a xls file", { - check_api() - xls_blob <- github_blob("data/2019/2019-11-26/PCA_Report_FY17Q3.xls", - sha = "e2313e902423c398883c01d3ecdfe77ae1b84862", - as_raw = TRUE - ) - - xls_object <- try(tt_parse_blob( - xls_blob, - file_info = data.frame( - data_files = "PCA_Report_FY17Q3.xls", - data_type = "xls", - stringsAsFactors = FALSE - ), - skip = 4 - ), silent = TRUE) - - expect_true(!inherits(xls_object, "try-error")) - expect_equal( - xls_object[1:4, 1:3], - tibble::tribble( - ~`Agency Name`, ~`At Start of Quarter`, ~`Added`, - NA, NA, NA, - "Account Control Technology, Inc.", 10659143750, 0, - "Coast Professional, Inc.", 7251296633, 0, - "ConServe", 10025995146, 0 - ) - ) -}) diff --git a/tests/testthat/test-tt_read_data.R b/tests/testthat/test-tt_read_data.R deleted file mode 100644 index c80f9a7..0000000 --- a/tests/testthat/test-tt_read_data.R +++ /dev/null @@ -1,113 +0,0 @@ -tt_ref_test_that( - "tt_read_data only works for numeric, integer, or character entries", - { - check_api() - expect_message( - { - expect_message( - {tt_gh_data <- tt_load_gh("2019-01-15")}, - "Compiling #TidyTuesday" - ) - }, - "There are 2 files" - ) - - numericRead <- tt_download_file(tt_gh_data, 1) - integerRead <- tt_download_file(tt_gh_data, 1L) - characterRead <- tt_download_file(tt_gh_data, "agencies.csv") - - numericRead <- tt_download_file(tt_gh_data, 1) - integerRead <- tt_download_file(tt_gh_data, 1L) - characterRead <- tt_download_file(tt_gh_data, "agencies.csv") - - readURL <- readr::read_csv( - github_blob("data/2019/2019-01-15/agencies.csv", as_raw = TRUE), - show_col_types = FALSE - ) - - expect_equal(numericRead, readURL) - expect_equal(integerRead, readURL) - expect_equal(characterRead, readURL) - - # fails when not expected class - expect_error( - { - tt_download_file(tt_gh_data, factor("agencies.csv")) - }, - "No method for entry of class:" - ) - } -) - -tt_ref_test_that( - "tt_read_data informs when selection is out of range/not available", - { - check_api() - expect_message( - { - expect_message( - {tt_gh_data <- tt_load_gh("2019-01-15")}, - "Compiling #TidyTuesday" - ) - }, - "There are 2 files" - ) - - expect_error( - { - tt_download_file(tt_gh_data, "wrong_entry.csv") - }, - "That is not an available file" - ) - expect_error( - { - tt_download_file(tt_gh_data, 45) - }, - "That is not an available index" - ) - expect_error( - { - tt_download_file(tt_gh_data, 45L) - }, - "That is not an available index" - ) - } -) - - -tt_ref_test_that( - "tt_read_data can load RDS files just as easily as text files", - { - check_api() - skip_on_cran() - - expect_message( - { - expect_message( - {tt_gh_data <- tt_load_gh("2019-01-01")}, - "Compiling #TidyTuesday" - ) - }, - "There are 2 files" - ) - - expect_s3_class( - tt_download_file(tt_gh_data, 2), - c("tbl_df", "tbl", "data.frame") - ) - } -) - - -tt_ref_test_that( - "read_rda will not arbitrarily assign the object to the current environment", - { - check_api() - new_dataset <- read_rda(testthat::test_path("testfiles/test.rda")) - expect_false(exists("testdf")) - expect_equal( - data.frame(x = c(1, 2, 3), y = c("A", "B", "C"), stringsAsFactors = TRUE), - new_dataset - ) - } -) diff --git a/tests/testthat/test-utils.R b/tests/testthat/test-utils.R index d8b45c8..0e05e5f 100644 --- a/tests/testthat/test-utils.R +++ b/tests/testthat/test-utils.R @@ -1,72 +1,14 @@ -tt_data <- structure( - list( - value1 = "value1", - value2 = "value2" - ), - .tt = structure( - c("value1.csv", "value2.csv"), - .files = c("value1.csv", "value2.csv"), - .readme = NULL, - class = "tt_gh" - ), - class = "tt_data" -) - -tt_ref_test_that("print.tt_data lists the available datasets", { - tt_data <- structure( - list( - value1 = "value1", - value2 = "value2" - ), - .tt = structure( - c("value1.csv", "value2.csv"), - .files = c("value1.csv", "value2.csv"), - .url = "fake_url", - .readme = NULL, - class = "tt_gh" - ), - class = "tt_data" - ) - - expect_snapshot({ - test_result <- print(tt_data) - }) - - expect_identical(test_result, tt_data) -}) - -tt_ref_test_that("print.tt lists all the available files for the weeks tt", { - check_api() - - expect_message( - { - expect_message( - {tt_obj <- tt_load_gh(2019, week = 16)}, - "Compiling #TidyTuesday" - ) - }, - "There are 7 files" - ) - - expect_snapshot({ - test_result <- print(tt_obj) - }) - - expect_identical(test_result, tt_obj) -}) - test_that("html_viewer returns NULL when running not in interactive mode", { res <- html_viewer("www.google.com", is_interactive = FALSE) - expect_equal(res, NULL) }) test_that("html_viewer works in interactive mode", { local_mocked_bindings( - isAvailable = function() { + rstudio_is_available = function() { return(TRUE) }, - viewer = function(url) { + rstudio_viewer = function(url) { return("viewer") }, browse_url = function(url) { @@ -79,7 +21,7 @@ test_that("html_viewer works in interactive mode", { ) local_mocked_bindings( - isAvailable = function() { + rstudio_is_available = function() { return(FALSE) } ) diff --git a/tests/testthat/testfiles/agencies.csv b/tests/testthat/testfiles/agencies.csv deleted file mode 100644 index 310378a..0000000 --- a/tests/testthat/testfiles/agencies.csv +++ /dev/null @@ -1,75 +0,0 @@ -agency,count,ucode,state_code,type,class,tstart,tstop,short_name,name,location,longitude,latitude,error,parent,short_english_name,english_name,unicode_name,agency_type -RVSN,1528,RVSN,SU,O/LA,D,1960,1991 Dec,RVSN,Rakentiye Voiska Strategicheskogo Naznacheniye,Mosvka?,-,-,-,-,-,Strategic Rocket Forces,Ракетные войска стратегического назначения,state -UNKS,904,GUKOS,SU,O/LA,D,1986 Apr 24,1991,UNKS,Upravleniye Nachalnika Kosmicheskikh Sredstv,Moskva,-,-,-,MO,-,-,Управление начальника космических средств МО СССР,state -NASA,469,NASA,US,O/LA/LV/PL/S,C,1958 Oct 1,-,NASA,National Aeronautics and Space Administration,"Washington, D.C.",-,-,-,-,-,-,National Aeronautics and Space Administration,state -USAF,388,USAF,US,O/LA/S,D,1947 Sep 18,-,USAF,United States Air Force,"Washington, DC-Pentagon",-,-,-,-,-,-,United States Air Force,state -AE,258,AE,F,O/LA,B,1980 Mar 26,*,Arianespace,"Arianespace, Inc.","Paris-Evry, France",-,-,-,-,Arianespace,-,"Arianespace, Inc.",private -AFSC,247,AFSC,US,LA,D,1961 Apr 1,1992 Jul 1,AFSC,"US Air Force Systems Command, Los Angeles AFS","El Segundo, California",-,-,-,USAF,-,-,"US Air Force Systems Command, Los Angeles AFS",state -VKSR,200,GUKOS,RU,O/LA,D,1997 Jul,2001 Jun 1,VKS RVSN,"Voenno-Kosmicheskiye Sili (Military Space Forces), RVSN","Mosvka-Solnechnogorsk, Rossiya",-,-,-,RVSN,-,Russian Military Space Forces,Военно-космические силы РВСН,state -CALT,181,CALT,CN,LA/LV/PL/E,C,1957 Nov 11,-,CALT,Zhongguo yunzaihuojian jishu yanjiu yuan,Beijing-Nanyuan,-,-,-,CASC,CALT,Chinese Academy of Launch Vehicle Technology (CASC 1st Acad),中国运载火箭技术研究院,state -FKA,128,MOM,RU,O/LA,C,2004,2016 Jan 1,Roskosmos,Federal'noe kosmicheskoe agentstvo Rossii (Roskosmos),Moskva,-,-,-,-,-,Roskosmos,Федеральное космическое агентство (Роскосмос),state -SAST,105,SBA,CN,O/LA/LV/PL,B,1993,-,SAST,Shanghai hangtian jishu yanjiuyuan,Shanghai-Minghan,-,-,-,CASC,-,Shanghai Academy of Space Technology (CASC 8th Acad),上海航天技术研究院,state -ILSK,97,ILSK,RU,LA,B,1995,-,ILS-K,"International Launch Services, Khrunichev",Moskva,-,-,-,KHRU,-,-,"International Launch Services, Khrunichev",private -KVR,78,GUKOS,RU,O/LA,D,2001 Jun 1,2011 Dec 1,KVR,Kosmichesikiye voyska Rossii,Moskva-Solnechnogorsk,-,-,-,-,-,Russian Space Forces,Космические войска России,state -ULAL,70,ULAL,US,LA,B,2006 Dec,-,ULA/LMA,United Launch Alliance/Lockheed Martin Astronautics,"Denver-Centennial, Colorado",-,-,-,LM,-,-,United Launch Alliance/Lockheed Martin Astronautics,private -KHRU,67,KHRU,RU,O/LA/LV/PL/S,B,1994,1998,Khrunichev,"GKNPTs im. M.V. Khrunichev, Zavod Khrunichev",Moskva-Fili,-,-,-,-,-,Khrunichev State Research and Production Center,ГКНПЦ им. М.В.Хруничева,state -SPX,65,SPX,US,O/LA/LV/PL/S,B,2007 Aug,-,SpaceX,SpaceX,"Hawthorne, California",-,-,-,-,-,-,SpaceX,startup -ISRO,64,ISRO,IN,O/LA/LV/PL/E/S,C,1969,-,ISRO,Indian Space Research Organization,Bangalore,-,-,-,-,-,-,Indian Space Research Organization,state -MDSSC,62,MDSSC,US,LA,B,-,-,MDSSC,McDonnell Douglas Space Systems Corp. (MDSSC-HB),"Huntington Beach, California",-,-,-,MDC,-,McDonnell Douglas/HB,McDonnell Douglas Space Systems Corp. (MDSSC-HB),private -OSC,60,OSC,US,O/LA/LV,B,1986,1993,OSC-Fairfax,Orbital Sciences Corp.,"Fairfax, Virginia",-,-,-,-,-,-,Orbital Sciences Corp.,private -ULAB,58,ULAB,US,LA,B,2006 Dec,-,ULA/Boeing,United Launch Alliance/Boeing,"Denver-Centennial, Colorado",-,-,-,BOE,-,-,United Launch Alliance/Boeing,private -BLS,56,BLS,US,O/LA,B,1990s,*,Boeing,Boeing Launch Services (?),"Huntington Beach, California",-,-,-,BOHB,-,-,Boeing Launch Services (?),private -RVSNR,54,RVSN,RU,LA,D,1991 Dec,-,RVSN RF,Rakentiye Voiska Strategicheskogo Naznacheniye (Rossisk. Fed.),Mosvka?,-,-,-,-,-,Russian Strategic Rocket Forces,Ракетные войска стратегического назначения Российской Федерации,state -LMA,43,MARTD,US,LA/LV/PL,B,1995 Mar 15,2003 Jan,LMA,Lockheed Martin Astronautics,"Denver-Littleton, Colorado",-,-,-,LM,-,-,Lockheed Martin Astronautics,private -NASDA,37,NASDA,J,O/LA/LV/PL/E/S,C,1969 Oct,2003 Oct 1,NASDA,Ucyu Kaihatsu Jigyoudan,"Tokyo, Nippon",-,-,-,-,-,National Space Development Adminstration,宇宙開発事業団,state -ISAS,33,ISAS,J,O/LA/LV/PL/E/S,C,1964 Apr,1981 Apr,ISAS,Ucyu Koku Kenkyujyo,Tokyo-Komaba,-,-,-,-,-,Institute of Space and Aeronautical Sci,宇宙航空研究所,state -MHI,33,MHI,J,LA/PL/E,B,1964,-,MHI,Mitsubishi Jukogyo Kabushiki-kaisha,Tokyo-Minato,-,-,-,-,-,Mitsubishi Heavy Industries (Launch Services),三菱重工業株式会社,private -ILSL,31,GDCLS,US,LA,B,2000,2008,ILS-LMA,"International Launch Services, Lockheed Martin","McLean, Virginia",-,-,-,LM,-,-,"International Launch Services, Lockheed Martin",private -UNKSR,29,GUKOS,RU,O/LA,D,1991,1992,UNKS RF,Upravleniye Nachalnika Kosmicheskikh Sredstv RF,Moskva,-,-,-,RVSNR,-,-,Управление начальника космических средств,state -RAKA,27,MOM,RU,LA,C,1999,2004,RAKA,Rosaviakosmos (Rossiskoe aviatsionno-kosmicheskoe agentstvo),"Moskva, Rossiya",-,-,-,-,-,-,Российское авиационно-космическое агентство,state -VVKO,27,GUKOS,RU,LA,D,2011 Dec 1,2015,VVKO,Voisk Vosdushno-Kosmicheskoi Oborona,Moskva,-,-,-,-,-,Aerospace Defence Forces,Войска воздушно-космической обороны,state -SEALP,26,SEALP,US,LA,B,2000 Sep,2010,SeaLaunch,Sea Launch Limited Partnership,"Long Beach, California",-,-,-,-,-,-,Sea Launch Limited Partnership,private -10ADS,22,10ADS,US,LA,D,1966?,-,ADCOM 10ADS,"USAF Aerospace Defence Command, 10th Aerospace Defence Sqn.","Vandenberg AFB, California",-,-,-,AFADC,-,-,"USAF Aerospace Defence Command, 10th Aerospace Defence Sqn.",state -2SLS,20,2SLS,US,LA,D,1990s,*,Boeing/2SLS,Boeing/USAF 2SLS,"Patrick AFB, Florida",-,-,-,USAF,-,-,Boeing/USAF 2SLS,state -STSM,20,STSM,F,O/LA,B,1996 Aug 6,*,Starsem,Starsem,Paris-Evry,-,-,-,-,-,-,Starsem,private -USN,15,USN,US,O/LA/LV/E/S,D,1775,-,USN,United States Navy,"Washington, DC-Pentagon",-,-,-,-,-,-,United States Navy,state -EUROK,14,EUROK,RU,O,B,1995,-,Eurockot,Eurockot Launch Services GmbH (D for RU lanch vehicle),Bremen,-,-,-,-,-,-,Eurockot Launch Services GmbH (D for RU lanch vehicle),private -GDCLS,14,GDCLS,US,LA,B,1988,1994 May,GDCLS,General Dynamics Commercial Launch Service,"San Diego, California",-,-,-,GD,-,-,General Dynamics Commercial Launch Service,private -ESA,13,ESA,I-ESA,O/LA/S,C,1975 Apr 30,-,ESA,European Space Agency,Paris,-,-,-,-,-,-,European Space Agency,state -AFSPC,11,AFSPC,US,O/LA,D,1982 Sep 1,-,USAF AFSPC,US Air Force Space Command,"Peterson AFB, Colorado",-,-,-,USAF,-,-,US Air Force Space Command,state -CNES,11,CNES,F,O/LA/LV/PL/S,C,1962,-,CNES,"Centre Nationale d'Etudes Spatiales, Paris",Paris,-,-,-,-,-,National Space Research Center,Centre national d'études spatiales,state -ISA,10,ISA,IL,O/LA,C,1983,-,ISA,Israeli Space Agency,Yisra'el,-,-,-,IL,-,-,Israeli Space Agency,state -MVS,10,MVS,SU,LA,D,1946 Mar,1950 Feb,MVS,Ministerstvo Voenniy Sili?,Moskva,-,-,-,-,-,Miinistry of the Armed Forces,Министерство Вооруженных Сил СССР,state -CRA,9,CRA,I,LA/PL/S,C,1959,-,CRA,"Centro Richerchi Aerospaziale, Roma la Sapienza",Roma,-,-,-,CRPSM,-,Aerospace Research Center,"Centro Richerchi Aerospaziale, Roma la Sapienza",state -IRSA,8,IRSA,IR,O/LA/PL/S,D,2004,-,IRSA,Sazman Fizaii Iran (Iranian Space Agency),Tehran,-,-,-,-,-,Iranian Space Agency,سازمان فضایی ایران,state -JAXA,8,NASDA,J,O/LA/LV/PL/E/S,C,2003 Oct 1,-,JAXA,Ucyu Koku Kenkyu Kaihatsu Kikou,Tokyo-Chofu,-,-,-,-,-,Japan Aerospace Exploration Agency,宇宙航空研究開発機構,state -S4300,8,S4300,US,LA,D,-,-,SAC 4300SS,"USAF Strategic Air Command, 4300th Support Sqn.","Vandenberg AFB, California",-,-,-,USAF,-,-,"USAF Strategic Air Command, 4300th Support Sqn.",state -MMCLS,7,GDCLS,US,LA,B,1994 May,1995 Mar 15,MMCLS,Martin Marietta Commercial Launch Services,"San Diego, California",-,-,-,MM,-,-,Martin Marietta Commercial Launch Services,private -ABMA,6,ABMA,US,O/LA/LV/PL/E,D,1956 Feb,1961 Dec,ABMA,U.S. Army Ballistic Missile Agency,"Huntsville, Alabama",-,-,-,USA,-,-,U.S. Army Ballistic Missile Agency,state -AFMC,6,AFAMC,US,LA,D,1992 Jul 1,-,USAF AFMC,US Air Force Materiel Command,"Wright-Patterson AFB, Dayton, Ohio",-,-,-,USAF,USAF AFMC,-,US Air Force Materiel Command,state -ELUS,6,BOSL,US,LA,B,2010,-,Energia Ltd US,"Energia Logistics Ltd, (ELUS)","Long Beach, California",-,-,-,RKKE,-,-,"Energia Logistics Ltd, (ELUS)",private -CASC,4,CASC,CN,O/LA/PL,B,1999 Jul,-,CASC,Zhongguo hangtian keji jituangongsi,"Beijing, Zhongguo",-,-,-,-,-,China Aerospace Corp,中国航天科技集团公司,state -KCST,4,KCST,KP,-,D,1998?,2013,KCST,Joseon ujugong gangisul wiwonhoe,Pyongyang?,-,-,-,-,-,Korean Committee of Space Technology,조선우주공간기술위원회,state -MMA,4,MMA,US,LA,B,1961,1995 Mar 15,MMA,Martin Marietta Astronautics,"Denver, Colorado",-,-,-,MM,-,-,Martin Marietta Astronautics,private -PLA2AC,4,PLA2AC,CN,LA,D,1966 Jul 1,2016 Jan 1,PLA SAC,"Di Er Paobing Budui, Zhongguo Renmin Jeifangjun",Beijing,-,-,-,-,-,PLA Second Artillery Corps,第二炮兵部队,state -PU,4,PU,RU,LA,B,1992?,-,PU,ZAO Puskovie Uslugi,Moskva,-,-,-,-,-,-,ЗАО «Пусковые услуги»,private -SEALC,4,SEALP,CYM,LA,B,1997,2000 Sep,SeaLaunch,Sea Launch Limited Partnership,"Georgetown, Cayman Islands",-,-,-,-,-,-,Sea Launch Limited Partnership,private -SIS,4,SIS,RU,LA,B,2005?,-,SIS,Space International Services,Moskva,-,-,-,-,-,-,Space International Services,state -USA,4,USA,US,O/LA/S,D,1775 Jun 14,*,US Army,United States Army,"Washington, DC",-,-,-,-,-,-,United States Army,state -ELDO,3,ELDO,I-ELDO,O/LA/LV,C,1962?,1975,CECLES/ELDO,Centre Europeene de Construct. de Lanceurs et d'Engins Spatiaux,Paris,-,-,-,I-ELDO,-,European Launcher Development Organization,Centre européen pour la construction de lanceurs d'engins spatiaux,state -KARI,3,KARI,KR,O/LA/LV/PL/E/S,C,1989 Oct,-,KARI,Han-guk Hanggong Uju Yeon-guwon (Korea Aerospace Research Inst),Daejeon,-,-,-,-,-,Korea Aerospace Research Institute,한국항공우주연구원,state -RSC,3,RSC,J,LA,B,1990 Jul 5,2006 Mar 31,RSC,Rocket Systems Corporation,Tokyo,-,-,-,-,-,-,株)ロケットシステム,private -VMFR,3,VMF,RU,O/LA,D,1991 Dec,-,VMF RF,Voenno-Morskoy Flot RF,"Moskva, Rossiya",-,-,-,-,-,Russian Navy,Военно-Морской Флот Российской Федерации,state -3SLS,2,3SLS,US,LA,D,1990s,*,USAF 3SLS,USAF 3SLS,"Patrick AFB, Florida",-,-,-,USAF,-,-,USAF 3SLS,state -4SLS,2,4SLS,US,LA,D,1990s,*,USAF 4SLS,USAF 4SLS,"Patrick AFB, Florida",-,-,-,USAF,-,-,USAF 4SLS,state -AEB,2,AEB,BR,O/LA/S,C,-,*,AEB,Agencia Espacial Brasileira,"San Jose dos Campos, Brasil",-,-,-,BR,BSA,Brazilian Space Agency,Agência Espacial Brasileira,state -OATK,2,OATK,US,-,B,2015 Feb 10,-,OATK,Orbital ATK,"Washington-Dulles, Virginia",-,-,-,-,-,-,Orbital ATK,private -RAE,2,RAE,UK,O/LA/LV/PL/S,D,1918 Apr 1,1991 Apr 1,RAE,Royal Aircraft Establishment,"Farnborough, Hants.",-,-,-,-,-,-,Royal Aircraft Establishment,state -RLABU,2,RLABU,US,E,B,2014,-,Rocket Lab,Rocket Lab USA,"Los Angeles, California",-,-,-,-,-,-,Rocket Lab USA,startup -CASIC4A,1,CASIC4A,CN,LV,C,2002,-,CASIC 4th Acad,Zhongguo hangtian kegong jituan di 4 yanjiuyuan,Beijing?,-,-,-,CASIC,-,CASIC 4th Academy,中国航天科工集团第四研究院,state -EER,1,EER,US,O/LA,B,1990 Dec,2001?,EER,EER Systems Inc. Aerospace Div.,"Seabrook, Maryland",-,-,-,-,-,-,EER Systems Inc. Aerospace Div.,private -EXPACE,1,EXPACE,CN,-,B,2016,-,CASIC Expace,Hangtian kegong huojian jishu youxiangongsi,Beijing-Haidian,-,-,-,CASIC,Expace,Expace,航天科工火箭技术有限公司,state -LMSC,1,LMSC,US,LA/LV/PL/S,B,1961 Jun,1995 Mar 15,LMSC,Lockheed Missiles and Space Co.,"Sunnyvale, California",-,-,-,LAC,-,-,Lockheed Missiles and Space Co.,private -NADA,1,KCST,KP,LA,D,2013,-,NADA,Gugga Uju Gaebalgug (Kukga uju gaebalkuk),Pyongyang,-,-,-,-,-,National Aerospace Development Administration,국가우주개발국,state -RKA,1,MOM,RU,O/LA,C,1992 Feb,1999,RKA,Rossiskoe aviatsionno-kosmicheskoe agentsvo (Rosaviakosmos),Moskva,-,-,-,-,-,-,Российское космическое агентство,state -S394I,1,S394I,US,LA,D,-,-,SAC 394ITMS,"USAF Strategic Air Command, 394th ICBM Test Maintenance Sqn","Vandenberg AFB, California",-,-,-,USAF,-,-,"USAF Strategic Air Command, 394th ICBM Test Maintenance Sqn",state diff --git a/tests/testthat/testfiles/launches.csv b/tests/testthat/testfiles/launches.csv deleted file mode 100644 index b77ea48..0000000 --- a/tests/testthat/testfiles/launches.csv +++ /dev/null @@ -1,5727 +0,0 @@ -tag,JD,launch_date,launch_year,type,variant,mission,agency,state_code,category,agency_type -1967-065,2439671.38,1967-06-29,1967,Thor Burner 2,,Secor Type II S/N 10,US,US,O,state -1967-080,2439725.7,1967-08-23,1967,Thor Burner 2,,DAPP 3419,US,US,O,state -1967-096,2439774.83,1967-10-11,1967,Thor Burner 2,,DAPP 4417,US,US,O,state -1968-042,2439999.69,1968-05-23,1968,Thor Burner 2,,DAPP 5420,US,US,O,state -1968-092,2440152.69,1968-10-23,1968,Thor Burner 2,,DAPP 6422,US,US,O,state -1969-062,2440425.69,1969-07-23,1969,Thor Burner 2,,DAPP 7421,US,US,O,state -1970-012,2440628.86,1970-02-11,1970,Thor Burner 2,,DAPP Block 5A F-1,US,US,O,state -1970-070,2440832.86,1970-09-03,1970,Thor Burner 2,,DAPP Block 5A F-2,US,US,O,state -1971-012,2440999.66,1971-02-17,1971,Thor Burner 2,,DAPP Block 5A F-3,US,US,O,state -1971-054,2441111.08,1971-06-08,1971,Thor Burner 2,,P70-1,US,US,O,state -1971-087,2441238.83,1971-10-14,1971,Thor Burner 2A,,DMSP Block 5B F-1 (SV-2),US,US,O,state -1972-018,2441400.87,1972-03-24,1972,Thor Burner 2A,,DMSP Block 5B F-2 (SV-1),US,US,O,state -1972-089,2441630.64,1972-11-09,1972,Thor Burner 2A,,DMSP Block 5B F-3,US,US,O,state -1973-054,2441911.7,1973-08-17,1973,Thor Burner 2A,,DMSP Block 5B F-4,US,US,O,state -1974-015,2442122.83,1974-03-16,1974,Thor Burner 2A,,DMSP Block 5B F-5,US,US,O,state -1974-063,2442268.64,1974-08-09,1974,Thor Burner 2A,,DMSP Block 5C F-1,US,US,O,state -1975-043,2442556.64,1975-05-24,1975,Thor Burner 2A,,DMSP Block 5C F-2,US,US,O,state -1976-016,2442827.83,1976-02-19,1976,Thor Burner 2A,,DMSP Block 5C F-3,US,US,O,state -1976-091,2443032.83,1976-09-11,1976,Thor DSV-2U,,DMSP Block 5D S-1,US,US,O,state -1977-044,2443299.62,1977-06-05,1977,Thor DSV-2U,,DMSP Block 5D S-2,US,US,O,state -1978-042,2443629.63,1978-05-01,1978,Thor DSV-2U,,DMSP Block 5D S-3,US,US,O,state -1979-050,2444031.27,1979-06-06,1979,Thor DSV-2U,,DMSP Block 5D S-5,US,US,O,state -1998-032,2450951.39,1998-05-17,1998,Delta 7920-10C,,Iridium SV070,US,US,O,state -1998-035,2450974.52,1998-06-10,1998,Delta 7925-9.5,,Thor 3,US,US,O,state -1998-051,2451065.38,1998-09-08,1998,Delta 7920-10C,,Iridium SV082,US,US,O,state -1998-061,2451111.01,1998-10-24,1998,Delta 7326-9.5,,Deep Space 1,US,US,O,state -1998-066,2451124.07,1998-11-06,1998,Delta 7920-10C,,Iridium SV087,US,US,O,state -1998-068,2451140.5,1998-11-22,1998,Delta 7925-9.5,,BONUM-1,US,US,O,state -1998-073,2451159.28,1998-12-11,1998,Delta 7425-9.5,,MCO,US,US,O,state -1999-001,2451182.35,1999-01-03,1999,Delta 7425-9.5,,MPL,US,US,O,state -1999-003,2451217.38,1999-02-07,1999,Delta 7426-9.5,,Stardust,US,US,O,state -1999-008,2451232.94,1999-02-23,1999,Delta 7920-10,,P91-1,US,US,O,state -1999-020,2451284.27,1999-04-15,1999,Delta 7920-10,,Landsat 7,US,US,O,state -1999-024,2451303.54,1999-05-05,1999,Delta 8930,,Orion 3,US,US,O,state -1999-031,2451340.08,1999-06-10,1999,Delta 7420-10C,,Globalstar M025,US,US,O,state -1999-035,2451354.16,1999-06-24,1999,Delta 7320-10,,Far UV Spec. Explorer,US,US,O,state -1999-037,2451369.87,1999-07-10,1999,Delta 7420-10C,,Globalstar M035,US,US,O,state -1999-041,2451384.82,1999-07-25,1999,Delta 7420-10C,,Globalstar M048,US,US,O,state -1999-043,2451407.69,1999-08-17,1999,Delta 7420-10C,,Globalstar M024,US,US,O,state -1999-055,2451459.04,1999-10-07,1999,Delta 7925-9.5,,Navstar GPS SVN 46,US,US,O,state -2000-008,2451583.39,2000-02-08,2000,Delta 7420-10C,,Globalstar 63,US,US,O,state -1998-F03,2451052.55,1998-08-27,1998,Delta 8930,,Galaxy X,US,US,F,state -1999-017,2451278.21,1999-04-09,1999,Titan 402B/IUS,,DSP 19?,US,US,O,state -1999-023,2451299.19,1999-04-30,1999,Titan 401B/Centaur,,Milstar DFS-3,US,US,O,state -1998-030,2450947.16,1998-05-13,1998,Titan II SLV,,NOAA K,US,US,O,state -1998-F02,2451037.98,1998-08-12,1998,Titan 401A/Centaur,,MERCURY 3,US,US,F,state -1958 ALP,2436235.66,1958-02-01,1958,Jupiter C,JunoI,Explorer 1,US,US,O,state -1958 GAM,2436289.23,1958-03-26,1958,Jupiter C,JunoI,Explorer 3,US,US,O,state -1958 EPS,2436411.13,1958-07-26,1958,Jupiter C,JunoI,Explorer 4,US,US,O,state -1958-F02,2436268.27,1958-03-05,1958,Jupiter C,JunoI,Explorer 2,US,US,F,state -1958-F11,2436439.76,1958-08-24,1958,Jupiter C,JunoI,Explorer 5,US,US,F,state -1958-F18,2436499.64,1958-10-23,1958,Jupiter C,JunoI,Beacon,US,US,F,state -1984-114,2446014.55,1984-11-10,1984,Ariane 3,,Spacenet F2,AE,F,O,private -1984-049,2445843.56,1984-05-23,1984,Ariane 1,,Spacenet F1,AE,F,O,private -1984-081,2445917.06,1984-08-04,1984,Ariane 3,,ECS 2,AE,F,O,private -1985-015,2446105.47,1985-02-08,1985,Ariane 3,,Arabsat 1A,AE,F,O,private -1985-035,2446193.55,1985-05-08,1985,Ariane 3,,Gstar 1A,AE,F,O,private -1985-056,2446248.97,1985-07-02,1985,Ariane 1,,Giotto,AE,F,O,private -1986-019,2446483.57,1986-02-22,1986,Ariane 1,,SPOT,AE,F,O,private -1986-026,2446518.48,1986-03-28,1986,Ariane 3,,Gstar 2,AE,F,O,private -1987-078,2447054.53,1987-09-16,1987,Ariane 3,,Aussat K3,AE,F,O,private -1987-095,2447120.6,1987-11-21,1987,Ariane 2,,TV-SAT,AE,F,O,private -1988-109,2447506.52,1988-12-11,1988,Ariane 44LP,44LP,Skynet 4B,AE,F,O,private -1988-018,2447232.48,1988-03-11,1988,Ariane 3,,Spacenet 3R,AE,F,O,private -1988-040,2447299.5,1988-05-17,1988,Ariane 2,,INTELSAT VA F13,AE,F,O,private -1988-051,2447327.97,1988-06-15,1988,Ariane 44LP,44LP,Meteosat P2,AE,F,O,private -1988-063,2447364.47,1988-07-21,1988,Ariane 3,,Insat 1C,AE,F,O,private -1988-081,2447413.46,1988-09-08,1988,Ariane 3,,Gstar 3,AE,F,O,private -1988-098,2447462.6,1988-10-28,1988,Ariane 2,,TDF 1,AE,F,O,private -1989-006,2447553.56,1989-01-27,1989,Ariane 2,,INTELSAT VA F15,AE,F,O,private -1989-020,2447592.48,1989-03-06,1989,Ariane 44LP,44LP,JCSAT 1,AE,F,O,private -1989-027,2447618.6,1989-04-02,1989,Ariane 2,,Tele-X,AE,F,O,private -1989-041,2447683.44,1989-06-05,1989,Ariane 44L,44L,Superbird A,AE,F,O,private -1989-053,2447719.51,1989-07-12,1989,Ariane 3,,Olympus,AE,F,O,private -1989-062,2447747.48,1989-08-08,1989,Ariane 44LP,44LP,TV-SAT 2,AE,F,O,private -1989-087,2447827.46,1989-10-27,1989,Ariane 44L,44L,INTELSAT VI F-2,AE,F,O,private -1990-100,2448216.47,1990-11-20,1990,Ariane 42P,42P,Satcom C1,AE,F,O,private -1990-005,2447913.57,1990-01-22,1990,Ariane 40,40,SPOT 2,AE,F,O,private -1990-063,2448097.43,1990-07-24,1990,Ariane 44L,44L,TDF 2,AE,F,O,private -1990-079,2448134.45,1990-08-30,1990,Ariane 44LP,44LP,Skynet 4C,AE,F,O,private -1990-091,2448177.46,1990-10-12,1990,Ariane 44L,44L,SBS 6,AE,F,O,private -1991-003,2448272.47,1991-01-15,1991,Ariane 44L,44L,Italsat 1,AE,F,O,private -1991-015,2448318.48,1991-03-02,1991,Ariane 44LP,44LP,Astra 1B,AE,F,O,private -1991-026,2448351.48,1991-04-04,1991,Ariane 44P,44P,Anik E2,AE,F,O,private -1991-050,2448454.57,1991-07-17,1991,Ariane 40,40,ERS-1,AE,F,O,private -1991-055,2448483.47,1991-08-14,1991,Ariane 44L,44L,INTELSAT VI F-5,AE,F,O,private -1991-067,2448526.49,1991-09-26,1991,Ariane 44P,44P,Anik E1,AE,F,O,private -1991-075,2448559.46,1991-10-29,1991,Ariane 44L,44L,INTELSAT VI F-1,AE,F,O,private -1991-084,2448607.47,1991-12-16,1991,Ariane 44L,44L,Telecom 2A,AE,F,O,private -1992-010,2448679.5,1992-02-26,1992,Ariane 44L,44L,Superbird B1,AE,F,O,private -1992-021,2448728.48,1992-04-15,1992,Ariane 44L,44L+,Telecom 2B,AE,F,O,private -1992-041,2448813.45,1992-07-09,1992,Ariane 44L,44L,Insat 2A,AE,F,O,private -1992-052,2448845.46,1992-08-10,1992,Ariane 42P,42P,Topex-Poseidon,AE,F,O,private -1992-060,2448876.46,1992-09-10,1992,Ariane 44LP,44LP+,Hispasat 1A,AE,F,O,private -1992-072,2448923.51,1992-10-28,1992,Ariane 42P,42P+,Galaxy VII,AE,F,O,private -1992-084,2448958.45,1992-12-01,1992,Ariane 42P,42P+,Superbird A1,AE,F,O,private -1993-031,2449119.54,1993-05-12,1993,Ariane 42L,42L,Astra 1C,AE,F,O,private -1993-039,2449163.51,1993-06-25,1993,Ariane 42P,42P+,Galaxy IVH,AE,F,O,private -1993-048,2449191.46,1993-07-22,1993,Ariane 44L,44L+,Hispasat 1B,AE,F,O,private -1993-061,2449256.57,1993-09-26,1993,Ariane 40,40,SPOT 3,AE,F,O,private -1993-066,2449282.78,1993-10-22,1993,Ariane 44LP,44LP,INTELSAT 701,AE,F,O,private -1993-073,2449311.55,1993-11-20,1993,Ariane 44LP,44LP+,Solidaridad 1,AE,F,O,private -1993-078,2449339.56,1993-12-18,1993,Ariane 44L,44L+,DBS 1,AE,F,O,private -1994-034,2449520.8,1994-06-17,1994,Ariane 44LP,44LP+,INTELSAT 702,AE,F,O,private -1994-040,2449542.46,1994-07-08,1994,Ariane 44L,44L+,Panamsat K1,AE,F,O,private -1994-049,2449575.46,1994-08-10,1994,Ariane 44LP,44LP+,Brasilsat B1,AE,F,O,private -1994-058,2449604.52,1994-09-09,1994,Ariane 42L,42L+,Telstar 402,AE,F,O,private -1994-065,2449633.55,1994-10-08,1994,Ariane 44L,44L+,Solidaridad 2,AE,F,O,private -1994-070,2449657.53,1994-11-01,1994,Ariane 42P,42P+,Astra 1D,AE,F,O,private -1995-016,2449805.47,1995-03-28,1995,Ariane 44LP,44LP+,Brasilsat B2,AE,F,O,private -1995-021,2449828.57,1995-04-21,1995,Ariane 40,40+,ERS-2,AE,F,O,private -1995-023,2449854.77,1995-05-17,1995,Ariane 44LP,44LP-3,INTELSAT 706,AE,F,O,private -1995-029,2449878.52,1995-06-10,1995,Ariane 42P,42P-3,DBS 3,AE,F,O,private -1995-033,2449906.18,1995-07-07,1995,Ariane 40,40-3,Helios 1A,AE,F,O,private -1995-040,2449933.46,1995-08-03,1995,Ariane 42L,42L-3,Panamsat K3,AE,F,O,private -1995-044,2449958.78,1995-08-29,1995,Ariane 44P,44P-3,N-STAR a,AE,F,O,private -1995-049,2449984.5,1995-09-24,1995,Ariane 42L,42L-3,Telstar 402R,AE,F,O,private -1995-055,2450009.53,1995-10-19,1995,Ariane 42L,42L-3,Astra 1E,AE,F,O,private -1995-062,2450038.56,1995-11-17,1995,Ariane 44P,44P-3,ISO,AE,F,O,private -1995-067,2450058.47,1995-12-06,1995,Ariane 44L,44L-3,Telecom 2C,AE,F,O,private -1996-002,2450095.47,1996-01-12,1996,Ariane 44L,44L-3,Panamsat K4,AE,F,O,private -1996-007,2450118.81,1996-02-05,1996,Ariane 44P,44P-3,N-Star b,AE,F,O,private -1996-015,2450156.8,1996-03-14,1996,Ariane 44LP,44LP-3,INTELSAT 707,AE,F,O,private -1996-022,2450194.44,1996-04-20,1996,Ariane 42P,42P-3,MSAT-1,AE,F,O,private -1996-030,2450219.58,1996-05-16,1996,Ariane 44L,44L-3,Palapa C2,AE,F,O,private -1996-035,2450249.79,1996-06-15,1996,Ariane 44P,44P-3,INTELSAT 709,AE,F,O,private -1996-040,2450274.43,1996-07-09,1996,Ariane 44L,44L-3,Arabsat 2A,AE,F,O,private -1996-044,2450304.45,1996-08-08,1996,Ariane 44L,44L-3,Italsat F2,AE,F,O,private -1996-055,2450337.5,1996-09-11,1996,Ariane 42P,42P-3,Echostar II,AE,F,O,private -1996-063,2450401.44,1996-11-13,1996,Ariane 44L,44L-3,Arabsat 2B,AE,F,O,private -1997-002,2450479.42,1997-01-30,1997,Ariane 44L,44L-3,GE 2,AE,F,O,private -1997-009,2450508.55,1997-03-01,1997,Ariane 44P,44P-3,INTELSAT 801,AE,F,O,private -1997-016,2450555.46,1997-04-16,1997,Ariane 44LP,44LP-3,Thaicom 3,AE,F,O,private -1997-027,2450603.47,1997-06-03,1997,Ariane 44L,44L-3,INMARSAT III F4,AE,F,O,private -1997-031,2450625.49,1997-06-25,1997,Ariane 44P,44P-3,INTELSAT 802,AE,F,O,private -1997-040,2450668.78,1997-08-08,1997,Ariane 44P,44P-3,PAS 6,AE,F,O,private -1997-049,2450694.43,1997-09-02,1997,Ariane 44LP,44LP-3,Eutelsat HB3,AE,F,O,private -1997-053,2450715.5,1997-09-23,1997,Ariane 42L,42L-3,INTELSAT 803,AE,F,O,private -1997-071,2450765.41,1997-11-12,1997,Ariane 44L,44L-3,Sirius 2,AE,F,O,private -1997-075,2450785.45,1997-12-02,1997,Ariane 44P,44P-3,JCSAT 5,AE,F,O,private -1997-083,2450804.51,1997-12-22,1997,Ariane 42L,42L-3,INTELSAT 804,AE,F,O,private -1998-006,2450849.48,1998-02-04,1998,Ariane 44LP,44LP-3,Brasilsat B3,AE,F,O,private -1998-013,2450872.44,1998-02-27,1998,Ariane 42P,42P-3,Eutelsat HB4,AE,F,O,private -1998-017,2450896.57,1998-03-24,1998,Ariane 40,40-3,SPOT-4,AE,F,O,private -1998-024,2450932.45,1998-04-28,1998,Ariane 44P,44P-3,Nilesat 101,AE,F,O,private -1998-049,2451051.46,1998-08-25,1998,Ariane 44P,44P-3,Singapore-Taiwan 1,AE,F,O,private -1998-052,2451072.77,1998-09-16,1998,Ariane 44LP,44LP-3,PAS 7,AE,F,O,private -1998-056,2451092.45,1998-10-05,1998,Ariane 44L,44L-3,Eutelsat W2,AE,F,O,private -1998-059,2451108.19,1998-10-21,1998,Ariane 5G,,Maqsat-3,AE,F,O,private -1998-063,2451115.43,1998-10-28,1998,Ariane 44L,44L-3,Afristar,AE,F,O,private -1998-070,2451153.53,1998-12-06,1998,Ariane 42L,42L-3,Satmex 5,AE,F,O,private -1998-075,2451169.55,1998-12-22,1998,Ariane 42L,42L-3,PAS 6B,AE,F,O,private -1999-009,2451236.45,1999-02-26,1999,Ariane 44L,44L-3,Arabsat 3A,AE,F,O,private -1999-016,2451271.42,1999-04-02,1999,Ariane 42P,42P-3,Insat 2E,AE,F,O,private -1999-042,2451403.45,1999-08-12,1999,Ariane 42P,42P-3,Telkom 1,AE,F,O,private -1999-046,2451426.44,1999-09-04,1999,Ariane 42P,42P-3,Koreasat 3,AE,F,O,private -1999-052,2451446.77,1999-09-25,1999,Ariane 44LP,44LP-3,Telstar 7,AE,F,O,private -1999-059,2451470.77,1999-10-19,1999,Ariane 44LP,44LP-3,Orion 2,AE,F,O,private -1999-060,2451496.45,1999-11-13,1999,Ariane 44LP,44LP-3,GE 4,AE,F,O,private -1999-064,2451516.18,1999-12-03,1999,Ariane 40,40-3,Helios 1B,AE,F,O,private -1999-066,2451523.11,1999-12-10,1999,Ariane 5G,,XMM,AE,F,O,private -1999-071,2451534.53,1999-12-22,1999,Ariane 44L,44L-3,Galaxy 11,AE,F,O,private -2000-002,2451568.54,2000-01-25,2000,Ariane 42L,42L-3,Galaxy XR,AE,F,O,private -2000-012,2451592.54,2000-02-18,2000,Ariane 44LP,44LP-3,Superbird 4,AE,F,O,private -2000-016,2451625.48,2000-03-21,2000,Ariane 5G,,Asiastar,AE,F,O,private -2000-020,2451653.52,2000-04-19,2000,Ariane 42L,42L-3,Galaxy IVR,AE,F,O,private -2000-046,2451774.47,2000-08-17,2000,Ariane 44LP,44LP-3,Brasilsat B4,AE,F,O,private -2000-052,2451794.44,2000-09-06,2000,Ariane 44P,44P-3,Eutelsat W1,AE,F,O,private -2000-054,2451802.45,2000-09-14,2000,Ariane 5G,,Astra 2B,AE,F,O,private -2000-060,2451824.46,2000-10-06,2000,Ariane 42L,42L-3,Superbird 5,AE,F,O,private -2000-068,2451846.75,2000-10-29,2000,Ariane 44LP,44LP-3,EuropeStar FM1,AE,F,O,private -2000-072,2451864.55,2000-11-16,2000,Ariane 5G,,PAS 1R,AE,F,O,private -2000-076,2451870.5,2000-11-21,2000,Ariane 44L,44L-3,Anik F1,AE,F,O,private -2000-081,2451898.52,2000-12-20,2000,Ariane 5G,,Astra 2D,AE,F,O,private -2001-002,2451920.42,2001-01-10,2001,Ariane 44P,44P-3,Eurasiasat 1,AE,F,O,private -2001-005,2451948.46,2001-02-07,2001,Ariane 44L,44L-3,SICRAL 1A,AE,F,O,private -2001-011,2451977.45,2001-03-08,2001,Ariane 5G,,Eurobird,AE,F,O,private -2001-024,2452069.78,2001-06-09,2001,Ariane 44L,44L-3,IS-901,AE,F,O,private -2001-029,2452103.42,2001-07-12,2001,Ariane 5G,,Artemis,AE,F,O,private -2001-039,2452151.78,2001-08-30,2001,Ariane 44L,44L-3,INTELSAT 902,AE,F,O,private -2001-042,2452178.47,2001-09-25,2001,Ariane 44P,44P-3,Atlantic Bird 2,AE,F,O,private -2001-052,2452240.52,2001-11-27,2001,Ariane 44LP,44LP-3,DirecTV-4S,AE,F,O,private -2002-002,2452298.49,2002-01-23,2002,Ariane 42L,42L-3,Insat 3C,AE,F,O,private -2002-007,2452328.79,2002-02-23,2002,Ariane 44L,44L-3,INTELSAT 904,AE,F,O,private -2002-009,2452334.55,2002-03-01,2002,Ariane 5G,,Envisat PPF,AE,F,O,private -2002-015,2452362.56,2002-03-29,2002,Ariane 44L,44L-3,JCSAT-8,AE,F,O,private -2002-019,2452381.46,2002-04-16,2002,Ariane 44L,44L-3,NSS 7,AE,F,O,private -2002-021,2452398.56,2002-05-04,2002,Ariane 42P,42P-3,SPOT 5,AE,F,O,private -2002-027,2452430.78,2002-06-05,2002,Ariane 44L,44L-3,INTELSAT 905,AE,F,O,private -2002-035,2452461.47,2002-07-05,2002,Ariane 5G,,Stellat 5,AE,F,O,private -2002-040,2452515.45,2002-08-28,2002,Ariane 5G,,Atlantic Bird 1,AE,F,O,private -2002-041,2452523.78,2002-09-06,2002,Ariane 44L,44L-3,INTELSAT 906,AE,F,O,private -2002-057,2452626.46,2002-12-17,2002,Ariane 44L,44L-3,NSS 6,AE,F,O,private -2003-007,2452685.79,2003-02-15,2003,Ariane 44L,44L-3,INTELSAT 907,AE,F,O,private -2003-013,2452739.45,2003-04-09,2003,Ariane 5G,,Insat 3A,AE,F,O,private -2003-028,2452802.44,2003-06-11,2003,Ariane 5G,,BSAT-2c,AE,F,O,private -2003-043,2452910.47,2003-09-27,2003,Ariane 5G,,e-Bird,AE,F,O,private -2004-006,2453066.8,2004-03-02,2004,Ariane 5G+,,Rosetta,AE,F,O,private -2004-027,2453204.53,2004-07-18,2004,Ariane 5G+,,Anik F2,AE,F,O,private -2004-049,2453358.18,2004-12-18,2004,Ariane 5G+,,Helios 2A,AE,F,O,private -2005-028,2453593.85,2005-08-11,2005,Ariane 5GS,,iPSTAR 1,AE,F,O,private -2005-041,2453657.44,2005-10-13,2005,Ariane 5GS,,Galaxy 15,AE,F,O,private -2005-049,2453726.44,2005-12-21,2005,Ariane 5GS,,Insat 4A,AE,F,O,private -2006-007,2453806.44,2006-03-11,2006,Ariane 5ECA,,Spainsat,AE,F,O,private -2006-020,2453883.38,2006-05-27,2006,Ariane 5ECA,,Satmex 6,AE,F,O,private -2006-033,2453959.43,2006-08-11,2006,Ariane 5ECA,,JCSAT 10,AE,F,O,private -2006-043,2454022.37,2006-10-13,2006,Ariane 5ECA,,DirecTV 9S,AE,F,O,private -2006-054,2454078.42,2006-12-08,2006,Ariane 5ECA,,WildBlue 1,AE,F,O,private -2007-007,2454171.42,2007-03-11,2007,Ariane 5ECA,,Insat 4B,AE,F,O,private -2007-016,2454225.44,2007-05-04,2007,Ariane 5ECA,,Astra 1L,AE,F,O,private -2007-036,2454327.49,2007-08-14,2007,Ariane 5ECA,,Spaceway 3,AE,F,O,private -2007-044,2454379.42,2007-10-05,2007,Ariane 5GS,,Optus D2,AE,F,O,private -2007-056,2454419.42,2007-11-14,2007,Ariane 5ECA,,Star One C1,AE,F,O,private -2007-063,2454456.4,2007-12-21,2007,Ariane 5GS,,Rascom 1,AE,F,O,private -2008-008,2454534.67,2008-03-09,2008,Ariane 5ES/ATV,,ATV 1,AE,F,O,private -2008-018,2454575.43,2008-04-18,2008,Ariane 5ECA,,Vinasat,AE,F,O,private -2008-030,2454630.42,2008-06-12,2008,Ariane 5ECA,,Skynet 5C,AE,F,O,private -2008-034,2454655.41,2008-07-07,2008,Ariane 5ECA,,Protostar 1,AE,F,O,private -2008-038,2454693.36,2008-08-14,2008,Ariane 5ECA,,Superbird 7,AE,F,O,private -2008-065,2454821.44,2008-12-20,2008,Ariane 5ECA,,Hot Bird 9,AE,F,O,private -2009-008,2454875.42,2009-02-12,2009,Ariane 5ECA,,NSS 9,AE,F,O,private -2009-026,2454966.05,2009-05-14,2009,Ariane 5ECA,,Herschel,AE,F,O,private -2009-035,2455014.24,2009-07-01,2009,Ariane 5ECA,,Terrestar 1,AE,F,O,private -2009-044,2455065.42,2009-08-21,2009,Ariane 5ECA,,JCSAT 12,AE,F,O,private -2009-054,2455106.42,2009-10-01,2009,Ariane 5ECA,,Amazonas 2,AE,F,O,private -2009-058,2455134.33,2009-10-29,2009,Ariane 5ECA,,NSS 12,AE,F,O,private -2009-073,2455184.18,2009-12-18,2009,Ariane 5GS,,Helios 2B,AE,F,O,private -2010-021,2455338.42,2010-05-21,2010,Ariane 5ECA,,Astra 3B,AE,F,O,private -2010-032,2455374.4,2010-06-26,2010,Ariane 5ECA,,COMS-1,AE,F,O,private -2010-037,2455413.37,2010-08-04,2010,Ariane 5ECA,,Nilesat 201,AE,F,O,private -2010-056,2455498.41,2010-10-28,2010,Ariane 5ECA,,Eutelsat W3B,AE,F,O,private -2010-065,2455527.28,2010-11-26,2010,Ariane 5ECA,,Hylas,AE,F,O,private -2010-070,2455560.39,2010-12-29,2010,Ariane 5ECA,,Hispasat 1E,AE,F,O,private -2011-007,2455609.41,2011-02-16,2011,Ariane 5ES/ATV,,ATV 2,AE,F,O,private -2011-016,2455674.4,2011-04-22,2011,Ariane 5ECA,,Intelsat New Dawn,AE,F,O,private -2011-022,2455702.36,2011-05-20,2011,Ariane 5ECA,,INSAT-4G,AE,F,O,private -2011-041,2455780.45,2011-08-06,2011,Ariane 5ECA,,Astra 1N,AE,F,O,private -2011-049,2455826.4,2011-09-21,2011,Ariane 5ECA,,SES-2,AE,F,O,private -2011-060,2455855.94,2011-10-21,2011,Soyuz-ST-B,Fregat,Galileo PFM,AE,F,O,private -2011-076,2455912.59,2011-12-17,2011,Soyuz-ST-A,Fregat,Elisa 1,AE,F,O,private -2012-010,2456009.69,2012-03-23,2012,Ariane 5ES/ATV,,ATV 3,AE,F,O,private -2012-023,2456063.43,2012-05-15,2012,Ariane 5ECA,,JCSAT 13,AE,F,O,private -2012-035,2456114.4,2012-07-05,2012,Ariane 5ECA,,Jupiter 1,AE,F,O,private -2012-043,2456142.37,2012-08-02,2012,Ariane 5ECA,,Intelsat IS-20,AE,F,O,private -2012-051,2456199.39,2012-09-28,2012,Ariane 5ECA,,Astra 2F,AE,F,O,private -2012-055,2456213.26,2012-10-12,2012,Soyuz-ST-B,Fregat,Galileo FM3,AE,F,O,private -2012-062,2456242.38,2012-11-10,2012,Ariane 5ECA,,Star One C3,AE,F,O,private -2012-068,2456263.59,2012-12-02,2012,Soyuz-ST-A,Fregat,Pleiades HR-2,AE,F,O,private -2012-075,2456281.41,2012-12-19,2012,Ariane 5ECA,,Skynet 5D,AE,F,O,private -2013-006,2456331.4,2013-02-07,2013,Ariane 5ECA,,Amazonas 3/Azerspace,AE,F,O,private -2013-021,2456419.59,2013-05-07,2013,Vega,,PROBA-V,AE,F,O,private -2013-027,2456449.41,2013-06-05,2013,Ariane 5ES/ATV,,ATV 4,AE,F,O,private -2013-031,2456469.31,2013-06-25,2013,Soyuz-ST-B,Fregat,O3b SV1/SV2/SV4/SV5,AE,F,O,private -2013-038,2456499.33,2013-07-25,2013,Ariane 5ECA,,Alphasat/Insat-3D,AE,F,O,private -2013-044,2456534.35,2013-08-29,2013,Ariane 5ECA,,Es'hail/GSAT-7,AE,F,O,private -2013-074,2456645.88,2013-12-19,2013,Soyuz-ST-B,Fregat,Gaia,AE,F,O,private -2014-006,2456695.4,2014-02-06,2014,Ariane 5ECA,,ABS-2/Athena-Fidus,AE,F,O,private -2014-011,2456739.42,2014-03-22,2014,Ariane 5ECA,,Astra 5B/Amazonas 4A,AE,F,O,private -2014-016,2456751.38,2014-04-03,2014,Soyuz-ST-A,Fregat,Sentinel 1A,AE,F,O,private -2014-024,2456777.57,2014-04-30,2014,Vega,,KazEOSat-1,AE,F,O,private -2014-038,2456849.29,2014-07-10,2014,Soyuz-ST-B,Fregat,O3b SV3/SV6/SV7/SV8,AE,F,O,private -2014-044,2456868.49,2014-07-29,2014,Ariane 5ES/ATV,,ATV 5,AE,F,O,private -2014-050,2456892.02,2014-08-22,2014,Soyuz-ST-B,Fregat,GalileoSat 5-6,AE,F,O,private -2014-054,2456912.42,2014-09-11,2014,Ariane 5ECA,,Measat 3B/Optus 10,AE,F,O,private -2014-062,2456947.41,2014-10-16,2014,Ariane 5ECA,,IS-30/Arsat 1,AE,F,O,private -2014-078,2456998.36,2014-12-06,2014,Ariane 5ECA,,DirectTV-14/GSAT-16,AE,F,O,private -2014-083,2457010.28,2014-12-18,2014,Soyuz-ST-B,Fregat,O3b SV9/SV10/SV11/SV12,AE,F,O,private -2015-017,2457109.41,2015-03-27,2015,Soyuz-ST-B,Fregat,GalileoSat 7-8,AE,F,O,private -2015-022,2457139.33,2015-04-26,2015,Ariane 5ECA,,Sicral 2/Thor 7,AE,F,O,private -2015-026,2457170.39,2015-05-27,2015,Ariane 5ECA,,DirecTV-15/SKYM-1,AE,F,O,private -2015-028,2457196.58,2015-06-23,2015,Vega,1,Sentinel-2A,AE,F,O,private -2015-034,2457219.4,2015-07-15,2015,Ariane 5ECA,,Star One C4/MSG 4,AE,F,O,private -2015-039,2457255.36,2015-08-20,2015,Ariane 5ECA,,Eutelsat 8WB/IS-34,AE,F,O,private -2015-045,2457276.59,2015-09-11,2015,Soyuz-ST-B,Fregat,GalileoSat 9-10,AE,F,O,private -2015-054,2457296.19,2015-09-30,2015,Ariane 5ECA,,NBN Co.1/ARSAT 2,AE,F,O,private -2015-065,2457337.4,2015-11-10,2015,Ariane 5ECA,,Badr 7/GSAT 15,AE,F,O,private -2015-070,2457359.67,2015-12-03,2015,Vega,1,LPF,AE,F,O,private -2015-079,2457373.99,2015-12-17,2015,Soyuz-ST-B,Fregat,GalileoSat 11-12,AE,F,O,private -2016-004,2457415.47,2016-01-27,2016,Ariane 5ECA,,Intelsat 29e,AE,F,O,private -2016-014,2457456.72,2016-03-09,2016,Ariane 5ECA,,Eutelsat 65 West A,AE,F,O,private -2016-025,2457504.38,2016-04-25,2016,Soyuz-ST-A,Fregat,Sentinel 1B/Microscope,AE,F,O,private -2016-030,2457532.87,2016-05-24,2016,Soyuz-ST-B,Fregat,GalileoSat 13-14,AE,F,O,private -2016-039,2457558.4,2016-06-18,2016,Ariane 5ECA,,Echostar 18/BRISAT,AE,F,O,private -2016-053,2457625.43,2016-08-24,2016,Ariane 5ECA,,IS-33e/IS-36,AE,F,O,private -2016-058,2457647.57,2016-09-16,2016,Vega,1,PeruSAT-1/Skysat 4-7,AE,F,O,private -2016-060,2457667.35,2016-10-05,2016,Ariane 5ECA,,Sky Muster/GSAT,AE,F,O,private -2016-069,2457710.05,2016-11-17,2016,Ariane 5ES,,GalileoSat 15-18,AE,F,O,private -2016-073,2457728.08,2016-12-05,2016,Vega,1,Gokturk-1,AE,F,O,private -2016-082,2457744.35,2016-12-21,2016,Ariane 5ECA,,JCSAT-15/Star One D1,AE,F,O,private -2017-006,2457781.54,2017-01-28,2017,Soyuz-ST-B,Fregat,Hispasat 36W-1,AE,F,O,private -2017-007,2457799.4,2017-02-14,2017,Ariane 5ECA,,SkyBrasil-1/Telkom-3S,AE,F,O,private -2017-013,2457819.58,2017-03-07,2017,Vega,1,Sentinel-2B,AE,F,O,private -2017-023,2457878.41,2017-05-04,2017,Ariane 5ECA,,SDGC/Koreasat 7,AE,F,O,private -2017-026,2457892,2017-05-18,2017,Soyuz-ST-A,Fregat,SES-15,AE,F,O,private -2017-029,2457906.49,2017-06-01,2017,Ariane 5ECA,,Viasat 2/Eutelsat 172B,AE,F,O,private -2017-040,2457933.39,2017-06-28,2017,Ariane 5ECA,,HellasSat 3/GSAT 17,AE,F,O,private -2017-044,2457967.58,2017-08-02,2017,Vega,1,Optsat-3000/Venmus,AE,F,O,private -2017-059,2458026.41,2017-09-29,2017,Ariane 5ECA,,IS-37e/BSAT-4a,AE,F,O,private -2017-070,2458065.57,2017-11-08,2017,Vega,1,Mohammed VI-A,AE,F,O,private -2017-079,2458100.27,2017-12-12,2017,Ariane 5ES,,Galileosat 19-22,AE,F,O,private -2018-012,2458144.43,2018-01-25,2018,Ariane 5ECA,,SES-14/Al Yah 3,AE,F,O,private -2018-024,2458187.22,2018-03-09,2018,Soyuz-ST-B,Fregat,O3b FM13/14/15/16,AE,F,O,private -2018-033,2458214.4,2018-04-05,2018,Ariane 5ECA,,Superbird 8/Hylas 4,AE,F,O,private -2018-060,2458324.98,2018-07-25,2018,Ariane 5ES,,Galileosat 23-26,AE,F,O,private -2018-066,2458353.39,2018-08-22,2018,Vega,1,ADM-Aeolus,AE,F,O,private -2018-074,2458387.44,2018-09-25,2018,Ariane 5ECA,,Horizons-3e/Azerspace-2,AE,F,O,private -1985-F03,2446321.48,1985-09-12,1985,Ariane 3,,ECS 3,AE,F,F,private -1986-F05,2446581.54,1986-05-31,1986,Ariane 2,,INTELSAT VA F14,AE,F,F,private -1990-F01,2447945.47,1990-02-22,1990,Ariane 44L,44L,Superbird B,AE,F,F,private -1994-F01,2449377.4,1994-01-24,1994,Ariane 44LP,44LP+,Eutelsat 2 F5,AE,F,F,private -1994-F04,2449688.46,1994-12-01,1994,Ariane 42P,42P-3,Panamsat K2,AE,F,F,private -2002-F03,2452620.43,2002-12-11,2002,Ariane 5ECA,,Hot Bird 7,AE,F,F,private -1997-F03,2450755.02,1997-11-02,1997,VLS-1,,SCD-2A,BR,BR,F,state -1999-F05,2451524.27,1999-12-11,1999,VLS-1,,SACI-2,BR,BR,F,state -1992-083,2448955.4,1992-11-28,1992,Titan 404A,,Improved CRYSTAL 2104,US,US,O,state -1994-004,2449378.19,1994-01-25,1994,Titan II SLV,,DSPSE,US,US,O,state -2000-004,2451570.63,2000-01-27,2000,Minotaur 1,,JAWSAT,US,US,O,state -2000-042,2451745.34,2000-07-19,2000,Minotaur 1,,Mightysat 2.1,US,US,O,state -1993-F02,2449202.33,1993-08-02,1993,Titan 403A,,SLDCOM 3/INTRUDER 3,US,US,F,state -1993-F04,2449266.25,1993-10-05,1993,Titan II SLV,,Landsat 6,US,US,F,state -1962 A OMI,2437899.98,1962-08-23,1962,Scout X-2M,,P35-2,US,US,O,state -1962 B PI,2437980.35,1962-11-11,1962,Atlas Agena B,,AFP-201 PVP 855,US,US,O,state -1962 B PSI,2438017.56,1962-12-19,1962,Scout X-3,,Transit VA-1,US,US,O,state -1963-005,2438080.2,1963-02-19,1963,Scout X-3M,,P35-3,US,US,O,state -1963-014,2438159.34,1963-05-09,1963,Atlas Agena B,,Midas ETS-III F2,US,US,O,state -1963-022,2438196.58,1963-06-16,1963,Scout X-3,,Transit VA-3,US,US,O,state -1963-028,2438223.37,1963-07-12,1963,Atlas Agena D,,GAMBIT SV 951,US,US,O,state -1963-030,2438229.66,1963-07-19,1963,Atlas Agena B,,Midas ETS-III F4,US,US,O,state -1963-036,2438279.31,1963-09-06,1963,Atlas Agena D,,GAMBIT SV 952,US,US,O,state -1963-041,2438328.29,1963-10-25,1963,Atlas Agena D,,GAMBIT SV 953,US,US,O,state -1963-051,2438382.41,1963-12-18,1963,Atlas Agena D,,GAMBIT SV 954,US,US,O,state -1963-053,2438383.28,1963-12-19,1963,Scout X-4,,AD-A,US,US,O,state -1964-009,2438451.29,1964-02-25,1964,Atlas Agena D,,GAMBIT SV 955,US,US,O,state -1964-012,2438466.34,1964-03-11,1964,Atlas Agena D,,GAMBIT SV 956,US,US,O,state -1964-020,2438509.28,1964-04-23,1964,Atlas Agena D,,GAMBIT SV 957,US,US,O,state -1964-024,2438535.31,1964-05-19,1964,Atlas Agena D,,GAMBIT SV 958,US,US,O,state -1964-026,2438550.66,1964-06-04,1964,Scout X-4,,Transit VC,US,US,O,state -1964-036,2438583.29,1964-07-06,1964,Atlas Agena D,,GAMBIT SV 959,US,US,O,state -1964-045,2438622.42,1964-08-14,1964,Atlas SLV-3 Agena D,,GAMBIT SV 960,US,US,O,state -1964-051,2438633.07,1964-08-25,1964,Scout X-4,,NASA S-48,US,US,O,state -1964-058,2438662.34,1964-09-23,1964,Atlas SLV-3 Agena D,,GAMBIT SV 962,US,US,O,state -1964-064,2438678.63,1964-10-10,1964,Scout X-4,,Beacon Explorer B,US,US,O,state -1964-068,2438692.27,1964-10-23,1964,Atlas Agena D,,GAMBIT SV 963,US,US,O,state -1964-076,2438721.22,1964-11-21,1964,Scout X-4,,AD-B,US,US,O,state -1964-079,2438734.29,1964-12-04,1964,Atlas SLV-3 Agena D,,GAMBIT SV 964,US,US,O,state -1965-101,2439101.38,1965-12-06,1965,Scout X-4,,FR-1,US,US,O,state -1965-005,2438784.34,1965-01-23,1965,Atlas SLV-3 Agena D,,GAMBIT SV 965,US,US,O,state -1965-108,2439116.08,1965-12-21,1965,Titan IIIC,,LES 4,US,US,O,state -1965-109,2439116.69,1965-12-22,1965,Scout A,,NNS O-6,US,US,O,state -1965-019,2438832.31,1965-03-12,1965,Atlas SLV-3 Agena D,,GAMBIT SV 966,US,US,O,state -1965-027,2438854.39,1965-04-03,1965,Atlas SLV-3 Agena D,,SNAP-10A FS-4,US,US,O,state -1965-031,2438879.39,1965-04-28,1965,Atlas SLV-3 Agena D,,GAMBIT SV 967,US,US,O,state -1965-041,2438908.37,1965-05-27,1965,Atlas SLV-3 Agena D,,GAMBIT SV 968,US,US,O,state -1965-050,2438937.31,1965-06-25,1965,Atlas SLV-3 Agena D,,P-11 No. 4402,US,US,O,state -1965-062,2438976.3,1965-08-03,1965,Atlas SLV-3 Agena D,,GAMBIT SV 971,US,US,O,state -1965-076,2439034.31,1965-09-30,1965,Atlas SLV-3 Agena D,,GAMBIT SV 972,US,US,O,state -1965-078,2439038.88,1965-10-05,1965,Atlas D,,OV1-2S,US,US,O,state -1965-090,2439073.31,1965-11-08,1965,Atlas SLV-3 Agena D,,GAMBIT SV 973,US,US,O,state -1966-002,2439145.34,1966-01-19,1966,Atlas SLV-3 Agena D,,GAMBIT SV 974,US,US,O,state -1966-005,2439154.21,1966-01-28,1966,Scout A,,NNS O-7,US,US,O,state -1966-109,2439465.38,1966-12-05,1966,Atlas SLV-3 Agena D,,GAMBIT SV 985,US,US,O,state -1966-111,2439471.38,1966-12-11,1966,Atlas D,,OV1-9,US,US,O,state -1966-012,2439172.35,1966-02-15,1966,Atlas SLV-3 Agena D,,GAMBIT SV 975,US,US,O,state -1966-113,2439474.26,1966-12-14,1966,Titan IIIB,,GAMBIT-3 Mission 4303,US,US,O,state -1966-022,2439203.33,1966-03-18,1966,Atlas SLV-3 Agena D,,GAMBIT SV 976,US,US,O,state -1966-024,2439210.65,1966-03-26,1966,Scout A,,NNS O-8,US,US,O,state -1966-025,2439214.89,1966-03-30,1966,Atlas D,,OV1-4S,US,US,O,state -1966-032,2439235.3,1966-04-19,1966,Atlas SLV-3 Agena D,,GAMBIT SV 977,US,US,O,state -1966-034,2439237.91,1966-04-22,1966,Scout B,,OV3-1,US,US,O,state -1966-039,2439260.29,1966-05-14,1966,Atlas SLV-3 Agena D,,GAMBIT SV 978,US,US,O,state -1966-041,2439264.6,1966-05-19,1966,Scout A,,NNS O-9,US,US,O,state -1966-048,2439280.31,1966-06-03,1966,Atlas SLV-3 Agena D,,GAMBIT SV 979,US,US,O,state -1966-051,2439286.34,1966-06-09,1966,Atlas SLV-3 Agena D,,Midas RTS-I F1,US,US,O,state -1966-062,2439319.25,1966-07-12,1966,Atlas SLV-3 Agena D,,GAMBIT SV 980,US,US,O,state -1966-063,2439320.59,1966-07-14,1966,Atlas D,,OV1-8 PasComSat,US,US,O,state -1966-069,2439336.27,1966-07-29,1966,Titan IIIB,,GAMBIT-3 Mission 4301,US,US,O,state -1966-070,2439341.95,1966-08-04,1966,Scout B,,OV3-3,US,US,O,state -1966-073,2439348.31,1966-08-10,1966,Atlas SLV-3 Agena D,,Lunar Orbiter A,US,US,O,state -1966-074,2439354.27,1966-08-16,1966,Atlas SLV-3 Agena D,,GAMBIT SV 981,US,US,O,state -1966-076,2439355.6,1966-08-18,1966,Scout A,,NNS O-10,US,US,O,state -1966-077,2439357.31,1966-08-19,1966,Atlas SLV-3 Agena D,,Midas RTS-I F2,US,US,O,state -1966-083,2439385.25,1966-09-16,1966,Atlas SLV-3 Agena D,,GAMBIT SV 982,US,US,O,state -1966-089,2439404.42,1966-10-05,1966,Atlas SLV-3 Agena D,,Midas RTS-I F3,US,US,O,state -1966-090,2439411.3,1966-10-12,1966,Atlas SLV-3 Agena D,,GAMBIT SV 983,US,US,O,state -1966-097,2439427,1966-10-28,1966,Scout B,,OV3-2,US,US,O,state -1966-098,2439432.35,1966-11-02,1966,Atlas SLV-3 Agena D,,GAMBIT SV 984,US,US,O,state -1967-103,2439789.3,1967-10-25,1967,Titan IIIB,,GAMBIT-3 Mission 4309,US,US,O,state -1967-007,2439524.33,1967-02-02,1967,Atlas SLV-3 Agena D,,GAMBIT SV 986,US,US,O,state -1967-016,2439546.33,1967-02-24,1967,Titan IIIB,,GAMBIT-3 Mission 4304,US,US,O,state -1967-120,2439829.54,1967-12-05,1967,Scout B,,OV3-6,US,US,O,state -1967-121,2439830.28,1967-12-05,1967,Titan IIIB,,GAMBIT-3 Mission 4310,US,US,O,state -1967-034,2439594.64,1967-04-14,1967,Scout A,,NNS O-12,US,US,O,state -1967-042,2439616.17,1967-05-05,1967,Scout A,,UK-3,US,US,O,state -1967-048,2439628.88,1967-05-18,1967,Scout A,,NNS O-13,US,US,O,state -1967-050,2439633.27,1967-05-22,1967,Atlas SLV-3 Agena D,,GAMBIT SV 987,US,US,O,state -1967-055,2439646.25,1967-06-04,1967,Atlas SLV-3 Agena D,,GAMBIT SV 988,US,US,O,state -1967-064,2439662.18,1967-06-20,1967,Titan IIIB,,GAMBIT-3 Mission 4306,US,US,O,state -1967-072,2439699.29,1967-07-27,1967,Atlas D,,OV1-8S,US,US,O,state -1967-079,2439719.21,1967-08-16,1967,Titan IIIB,,GAMBIT-3 Mission 4307,US,US,O,state -1967-090,2439753.28,1967-09-19,1967,Titan IIIB,,GAMBIT-3 Mission 4308,US,US,O,state -1967-092,2439758.85,1967-09-25,1967,Scout A,,NNS O-14,US,US,O,state -1968-005,2439874.29,1968-01-18,1968,Titan IIIB,,GAMBIT-3 Mission 4311,US,US,O,state -1968-108,2440195.31,1968-12-04,1968,Titan IIIB,,GAMBIT-3 Mission 4318,US,US,O,state -1968-012,2439917.66,1968-03-02,1968,Scout A,,NNS O-18,US,US,O,state -1968-014,2439920.05,1968-03-04,1968,Atlas SLV-3A Agena D,,OGO E,US,US,O,state -1968-018,2439929.33,1968-03-13,1968,Titan IIIB,,GAMBIT-3 Mission 4312,US,US,O,state -1968-026,2439952.92,1968-04-06,1968,Atlas F,,OV1-13,US,US,O,state -1968-031,2439964.21,1968-04-17,1968,Titan IIIB,,GAMBIT-3 Mission 4313,US,US,O,state -1968-041,2439993.59,1968-05-17,1968,Scout B,,ESRO 2B,US,US,O,state -1968-047,2440013.23,1968-06-05,1968,Titan IIIB,,GAMBIT-3 Mission 4314,US,US,O,state -1968-059,2440049.31,1968-07-11,1968,Atlas F,,OV1-15S,US,US,O,state -1968-064,2440075.19,1968-08-06,1968,Titan IIIB,,GAMBIT-3 Mission 4315,US,US,O,state -1968-066,2440077.34,1968-08-08,1968,Scout B,,AD-C,US,US,O,state -1968-074,2440110.27,1968-09-10,1968,Titan IIIB,,GAMBIT-3 Mission 4316,US,US,O,state -1968-084,2440133.37,1968-10-03,1968,Scout B,,ESRO 1A,US,US,O,state -1968-099,2440167.3,1968-11-06,1968,Titan IIIB,,GAMBIT-3 Mission 4317,US,US,O,state -1969-007,2440244.3,1969-01-22,1969,Titan IIIB,,GAMBIT-3 Mission 4319,US,US,O,state -1969-019,2440285.31,1969-03-04,1969,Titan IIIB,,GAMBIT-3 Mission 4320,US,US,O,state -1969-025,2440298.82,1969-03-18,1969,Atlas F,,OV1-17S,US,US,O,state -1969-036,2440324.6,1969-04-13,1969,Atlas SLV-3A Agena D,,CANYON 2,US,US,O,state -1969-039,2440327.23,1969-04-15,1969,Titan IIIB,,GAMBIT-3 Mission 4321,US,US,O,state -1969-050,2440376.2,1969-06-03,1969,Titan IIIB,,GAMBIT-3 Mission 4322,US,US,O,state -1969-074,2440457.17,1969-08-23,1969,Titan 23B,,GAMBIT-3 Mission 4323,US,US,O,state -1969-083,2440496.44,1969-10-01,1969,Scout B,,ESRO 1B,US,US,O,state -1969-095,2440519.26,1969-10-24,1969,Titan 23B,,GAMBIT-3 Mission 4324,US,US,O,state -1969-097,2440533.58,1969-11-08,1969,Scout B,,GRS-A,US,US,O,state -1970-002,2440601.28,1970-01-14,1970,Titan 23B,,GAMBIT-3 Mission 4325,US,US,O,state -1970-031,2440692.16,1970-04-15,1970,Titan 23B,,GAMBIT-3 Mission 4326,US,US,O,state -1970-048,2440763.12,1970-06-25,1970,Titan 23B,,GAMBIT-3 Mission 4327,US,US,O,state -1970-061,2440817.11,1970-08-18,1970,Titan 23B,,GAMBIT-3 Mission 4328,US,US,O,state -1970-067,2440826.06,1970-08-27,1970,Scout A,,NNS O-19,US,US,O,state -1970-090,2440883.24,1970-10-23,1970,Titan 23B,,GAMBIT-3 Mission 4329,US,US,O,state -1971-005,2440973.26,1971-01-21,1971,Titan 23B,,GAMBIT-3 Mission 4330,US,US,O,state -1971-109,2441297.37,1971-12-11,1971,Scout B-1,F,UK 4,US,US,O,state -1971-021,2441031.66,1971-03-21,1971,Titan 33B,,Jumpseat 1,US,US,O,state -1971-033,2441064.15,1971-04-22,1971,Titan 23B,,GAMBIT-3 Mission 4331,US,US,O,state -1971-056,2441118.28,1971-06-15,1971,Titan IIID,,HEXAGON SV-1,US,US,O,state -1971-067,2441170.51,1971-08-07,1971,Atlas F,,OAR-901,US,US,O,state -1972-100,2441667.98,1972-12-16,1972,Scout D-1,F,GRS-B,US,US,O,state -1972-069,2441563.24,1972-09-02,1972,Scout B-1,F,Triad OI-1X,US,US,O,state -1972-076,2441593.34,1972-10-02,1972,Atlas Burner 2,,Radcat,US,US,O,state -1972-092,2441643.51,1972-11-22,1972,Scout D-1,F,ESRO 4,US,US,O,state -1973-081,2441985.53,1973-10-30,1973,Scout A-1,,NNS O-20,US,US,O,state -1974-007,2442092.25,1974-02-13,1974,Titan 24B,,GAMBIT-3 Mission 4341,US,US,O,state -1974-013,2442115.6,1974-03-09,1974,Scout D-1,F,X-4,US,US,O,state -1974-020,2442148.35,1974-04-10,1974,Titan IIID,,HEXAGON SV-8,US,US,O,state -1974-039,2442198.04,1974-05-30,1974,Titan IIIC,,ATS F,US,US,O,state -1974-040,2442202.46,1974-06-03,1974,Scout E-1,,Injun 6,US,US,O,state -1974-042,2442205.19,1974-06-06,1974,Titan 24B,,GAMBIT-3 Mission 4342,US,US,O,state -1974-054,2442242.72,1974-07-14,1974,Atlas F/PTS,,NTS 1,US,US,O,state -1974-055,2442244.99,1974-07-16,1974,Scout D-1,F,Aeros B,US,US,O,state -1974-065,2442274.16,1974-08-14,1974,Titan 24B,,GAMBIT-3 Mission 4343,US,US,O,state -1974-070,2442290.09,1974-08-30,1974,Scout D-1,,ANS,US,US,O,state -1974-085,2442350.31,1974-10-29,1974,Titan IIID,,HEXAGON SV-9,US,US,O,state -1975-055,2442581.88,1975-06-18,1975,Atlas SLV-3A Agena D,,CANYON 6,US,US,O,state -1975-099,2442697.78,1975-10-12,1975,Scout D-1,,TIP 2,US,US,O,state -1976-038,2442899.3,1976-04-30,1976,Atlas F/MSD,,PARCAE 1,US,US,O,state -1976-047,2442920.82,1976-05-22,1976,Scout B-1,,NNS O-15,US,US,O,state -1976-089,2443023.38,1976-09-01,1976,Scout D-1,,TIP 3,US,US,O,state -1977-112,2443486.24,1977-12-08,1977,Atlas F/MSD,,PARCAE 2,US,US,O,state -1977-114,2443489.45,1977-12-11,1977,Atlas SLV-3A Agena D,,AQUACADE 3,US,US,O,state -1977-038,2443287.26,1977-05-23,1977,Atlas SLV-3A Agena D,,CANYON 7,US,US,O,state -1977-053,2443317.85,1977-06-23,1977,Atlas F/SVS,,NTS 2,US,US,O,state -1978-112,2443853.67,1978-12-11,1978,Atlas F/SVS,,Navstar GPS SVN 4,US,US,O,state -1978-113,2443856.53,1978-12-14,1978,Titan IIIC,,DSCS II C-11,US,US,O,state -1978-020,2443562.49,1978-02-22,1978,Atlas F/SVS,,Navstar GPS SVN 1,US,US,O,state -1978-029,2443584.28,1978-03-16,1978,Titan IIID,,HEXAGON SV-14,US,US,O,state -1978-038,2443605.53,1978-04-07,1978,Atlas SLV-3A Agena D,,AQUACADE 4,US,US,O,state -1978-047,2443641.94,1978-05-13,1978,Atlas F/SVS,,Navstar GPS SVN 2,US,US,O,state -1978-058,2443670.3,1978-06-10,1978,Titan IIIC,,CHALET 1,US,US,O,state -1978-060,2443674.27,1978-06-14,1978,Titan IIID,,KH11-2 KENNAN,US,US,O,state -1978-064,2443686.55,1978-06-27,1978,Atlas F/Agena D,,Seasat A,US,US,O,state -1978-075,2443725.71,1978-08-05,1978,Titan 34B,,SDS 3,US,US,O,state -1978-093,2443788.52,1978-10-07,1978,Atlas F/SVS,,Navstar GPS SVN 3,US,US,O,state -1978-096,2443794.97,1978-10-13,1978,Atlas F,,Tiros-N,US,US,O,state -1979-017,2443928.85,1979-02-24,1979,Atlas F/OIS,,P78-1,US,US,O,state -1979-025,2443949.27,1979-03-16,1979,Titan IIID,,HEXAGON SV-15,US,US,O,state -1979-044,2444022.27,1979-05-28,1979,Titan 24B,,GAMBIT-3 Mission 4350,US,US,O,state -1979-053,2444035.07,1979-06-10,1979,Titan IIIC,,DSP 11,US,US,O,state -1979-057,2444052.16,1979-06-27,1979,Atlas F,,NOAA A,US,US,O,state -1979-086,2444147.97,1979-10-01,1979,Titan IIIC,,VORTEX 2,US,US,O,state -1979-098,2444198.59,1979-11-21,1979,Titan IIIC,,DSCS II D-13,US,US,O,state -1980-100,2444587.17,1980-12-13,1980,Titan 34B,,SDS 4,US,US,O,state -1980-010,2444277.38,1980-02-07,1980,Titan IIID,,KH11-3 KENNAN,US,US,O,state -1980-011,2444279.46,1980-02-09,1980,Atlas F/SVS,,Navstar GPS SVN 5,US,US,O,state -1980-019,2444301.89,1980-03-03,1980,Atlas F/MSD,,PARCAE 3,US,US,O,state -1980-032,2444355.92,1980-04-26,1980,Atlas F/SVS,,Navstar GPS SVN 6,US,US,O,state -1980-043,2444388.95,1980-05-29,1980,Atlas F,,NOAA B,US,US,O,state -1980-052,2444409.27,1980-06-18,1980,Titan IIID,,HEXAGON SV-16,US,US,O,state -1981-107,2444908.89,1981-10-31,1981,Titan IIIC,,VORTEX 3,US,US,O,state -1981-019,2444664.3,1981-02-28,1981,Titan 24B,,GAMBIT-3 Mission 4351,US,US,O,state -1981-025,2444680.31,1981-03-16,1981,Titan IIIC,,DSP 10,US,US,O,state -1981-038,2444719.4,1981-04-24,1981,Titan 34B,,Jumpseat 6,US,US,O,state -1981-059,2444778.95,1981-06-23,1981,Atlas F,,NOAA C,US,US,O,state -1981-085,2444851.27,1981-09-03,1981,Titan IIID,,KH11-4 KENNAN,US,US,O,state -1982-006,2444991.31,1982-01-21,1982,Titan 24B,,GAMBIT-3 Mission 4352,US,US,O,state -1982-106,2445272.67,1982-10-30,1982,Titan 34D/IUS,,DSCS II F-16,US,US,O,state -1982-111,2445291.39,1982-11-17,1982,Titan IIID,,KH11-5 KENNAN,US,US,O,state -1982-118,2445324.61,1982-12-21,1982,Atlas E,,DMSP Block 5D-2 S-6,US,US,O,state -1982-019,2445035.31,1982-03-06,1982,Titan IIIC,,DSP 13,US,US,O,state -1982-041,2445101.27,1982-05-11,1982,Titan IIID,,HEXAGON SV-17,US,US,O,state -1983-008,2445375.07,1983-02-09,1983,Atlas H,,PARCAE 5,US,US,O,state -1983-113,2445656.77,1983-11-18,1983,Atlas E,,DMSP Block 5D-2 S-7,US,US,O,state -1983-022,2445422.16,1983-03-28,1983,Atlas E,,NOAA E,US,US,O,state -1983-032,2445440.28,1983-04-15,1983,Titan 24B,,GAMBIT-3 Mission 4353,US,US,O,state -1983-056,2445495.47,1983-06-09,1983,Atlas H,,PARCAE 6,US,US,O,state -1983-060,2445506.28,1983-06-20,1983,Titan 34D,,HEXAGON SV-18,US,US,O,state -1983-072,2445529.93,1983-07-14,1983,Atlas E/SGS-2,,Navstar GPS SVN 8,US,US,O,state -1983-078,2445547.15,1983-07-31,1983,Titan 34B,,Jumpseat 7,US,US,O,state -1984-009,2445730.63,1984-01-31,1984,Titan 34D/Transtage,,VORTEX 4,US,US,O,state -1984-012,2445736.28,1984-02-05,1984,Atlas H,,PARCAE 7,US,US,O,state -1984-122,2446039.25,1984-12-04,1984,Titan 34D,,KH11-6 KENNAN,US,US,O,state -1984-123,2446046.95,1984-12-12,1984,Atlas E,,NOAA F,US,US,O,state -1984-129,2446056.5,1984-12-22,1984,Titan 34D/Transtage,,DSP 6R,US,US,O,state -1984-037,2445805.2,1984-04-14,1984,Titan 34D/Transtage,,DSP 12,US,US,O,state -1984-039,2445808.28,1984-04-17,1984,Titan 24B,,GAMBIT-3 Mission 4354,US,US,O,state -1984-059,2445864.98,1984-06-13,1984,Atlas E/SGS-2,,Navstar GPS SVN 9,US,US,O,state -1984-065,2445877.28,1984-06-25,1984,Titan 34D,,HEXAGON SV-19,US,US,O,state -1984-091,2445941.25,1984-08-28,1984,Titan 34B,,SDS 5,US,US,O,state -1984-097,2445952.4,1984-09-08,1984,Atlas E/SGS-2,,Navstar GPS SVN 10,US,US,O,state -1985-014,2446104.76,1985-02-08,1985,Titan 34B,,SDS 6,US,US,O,state -1985-021,2446137.58,1985-03-13,1985,Atlas E/OIS,,Geosat,US,US,O,state -1985-093,2446347.62,1985-10-09,1985,Atlas E/SGS-2,,Navstar GPS SVN 11,US,US,O,state -1986-014,2446470.92,1986-02-09,1986,Atlas H,,PARCAE 8,US,US,O,state -1986-073,2446691.16,1986-09-17,1986,Atlas E,,NOAA G,US,US,O,state -1987-015,2446838.78,1987-02-12,1987,Titan 34B,,QUASAR 7?,US,US,O,state -1987-043,2446931.16,1987-05-15,1987,Atlas H,,PARCAE 9,US,US,O,state -1987-053,2446966.61,1987-06-20,1987,Atlas E,,DMSP Block 5D-2 S-9,US,US,O,state -1987-090,2447095.4,1987-10-26,1987,Titan 34D,,Improved CRYSTAL 2102,US,US,O,state -1987-097,2447128.64,1987-11-29,1987,Titan 34D/Transtage,,DSP 5R,US,US,O,state -1988-006,2447194.75,1988-02-03,1988,Atlas E,,DMSP Block 5D-2 S-8,US,US,O,state -1988-077,2447407,1988-09-02,1988,Titan 34D/Transtage,,VORTEX 5,US,US,O,state -1988-078,2447409.89,1988-09-05,1988,Titan II SLV,,P-11 No. 5103,US,US,O,state -1988-089,2447428.92,1988-09-24,1988,Atlas E,,NOAA H,US,US,O,state -1988-099,2447472.25,1988-11-06,1988,Titan 34D,,Improved CRYSTAL 2103,US,US,O,state -1989-035,2447657.32,1989-05-10,1989,Titan 34D/Transtage,,VORTEX 6,US,US,O,state -1989-046,2447692.05,1989-06-14,1989,Titan 402A/IUS,,DSP 14,US,US,O,state -1989-069,2447773.75,1989-09-04,1989,Titan 34D/Transtage,,DSCS II E-15,US,US,O,state -1989-072,2447775.58,1989-09-06,1989,Titan II SLV,,P-11 No. 5104,US,US,O,state -1990-031,2447993.12,1990-04-11,1990,Atlas E Altair,,POGS,US,US,O,state -1990-050,2448050.72,1990-06-08,1990,Titan 405A,,SLDCOM 1/INTRUDER 1,US,US,O,state -1990-095,2448208.53,1990-11-13,1990,Titan 402A/IUS,,DSP 15,US,US,O,state -1991-017,2448324,1991-03-08,1991,Titan 403A,,LACROSSE 2,US,US,O,state -1991-076,2448568.8,1991-11-08,1991,Titan 403A,,SLDCOM 2/INTRUDER 2,US,US,O,state -1992-023,2448737.87,1992-04-25,1992,Titan II SLV,,P-11 No. 5105,US,US,O,state -1994-009,2449391.41,1994-02-07,1994,Titan 401A/Centaur,,Milstar DFS-1,US,US,O,state -1962-F03,2437780.95,1962-04-26,1962,Scout X-2,,GRAB SV5,US,US,F,state -1962-F05,2437808.5,,1962,Scout X-2M,,P35-1,US,US,F,state -1962-F09,2438016.36,1962-12-17,1962,Atlas Agena B,,Midas ETS-III F1,US,US,F,state -1963-F04,2438124.63,1963-04-05,1963,Scout X-3,,Transit VA-2,US,US,F,state -1963-F06,2438145.5,,1963,Scout X-2M,,P35-4,US,US,F,state -1963-F09,2438192.5,,1963,Atlas Agena B,,Midas ETS-III F3,US,US,F,state -1963-F12,2438299.97,1963-09-27,1963,Scout X-2B,,P35-5,US,US,F,state -1964-F08,2438571.57,1964-06-25,1964,Scout X-4,,AFCRL B,US,US,F,state -1964-F11,2438676.31,1964-10-07,1964,Atlas SLV-3 Agena D,,GAMBIT SV 961,US,US,F,state -1965-F01,2438782.4,1965-01-21,1965,Atlas D,,OV1-1,US,US,F,state -1965-F06,2438908.62,1965-05-28,1965,Atlas D,,OV1-3,US,US,F,state -1965-F07,2438954.29,1965-07-12,1965,Atlas SLV-3 Agena D,,GAMBIT SV 970,US,US,F,state -1967-F01,2439522.03,1967-01-31,1967,Scout B,,ATCOS 1,US,US,F,state -1967-F05,2439640.59,1967-05-30,1967,Scout B,,ESRO 2A,US,US,F,state -1968-F07,2440085.37,1968-08-16,1968,Atlas Burner 2,,UVR,US,US,F,state -1975-F03,2442515.54,1975-04-13,1975,Atlas F,,P72-2,US,US,F,state -1975-F06,2442752.65,1975-12-06,1975,Scout F-1,,DAD-A,US,US,F,state -1978-F01,2443593.26,1978-03-25,1978,Titan IIIC,,DSCS II C-9,US,US,F,state -1981-F03,2444957.55,1981-12-19,1981,Atlas E/SVS,,Navstar GPS SVN 7,US,US,F,state -1985-F02,2446306.39,1985-08-28,1985,Titan 34D,,Improved CRYSTAL 2101?,US,US,F,state -1986-F03,2446539.28,1986-04-18,1986,Titan 34D,,HEXAGON SV-20,US,US,F,state -1990-105,2448227.16,1990-12-01,1990,Atlas E,,DMSP Block 5D-2 S-10,US,US,O,state -1991-032,2448391.16,1991-05-14,1991,Atlas E,,NOAA D,US,US,O,state -1991-082,2448589.06,1991-11-28,1991,Atlas E,,DMSP Block 5D-2 S-12,US,US,O,state -1993-050,2449208.92,1993-08-09,1993,Atlas E,,NOAA I,US,US,O,state -1994-057,2449594.23,1994-08-29,1994,Atlas E,,DMSP Block 5D-2 S-11,US,US,O,state -1995-015,2449801.09,1995-03-24,1995,Atlas E,,DMSP Block 5D-2 S-13,US,US,O,state -1995-066,2450057.39,1995-12-05,1995,Titan 404A,,Improved CRYSTAL 2105,US,US,O,state -1996-029,2450216.4,1996-05-12,1996,Titan 403A,,SLDCOM 4/INTRUDER 4,US,US,O,state -1996-072,2450438.25,1996-12-20,1996,Titan 404A,,Improved CRYSTAL 2106,US,US,O,state -1997-012,2450543.2,1997-04-04,1997,Titan II SLV,,DMSP Block 5D-2 S-14,US,US,O,state -1997-064,2450745.61,1997-10-24,1997,Titan 403A,,LACROSSE 3,US,US,O,state -1997-043,2450681.53,1997-08-21,1997,Delta 7920-10C,,Iridium SV026,BLS,US,O,private -1997-045,2450686.11,1997-08-25,1997,Delta 7920-8,,Advanced Composition Exp,BLS,US,O,private -1997-056,2450718.56,1997-09-27,1997,Delta 7920-10C,,Iridium SV019,BLS,US,O,private -1997-067,2450758.52,1997-11-06,1997,Delta 7925,,Navstar GPS SVN 38,BLS,US,O,private -1997-069,2450761.57,1997-11-09,1997,Delta 7920-10C,,Iridium SV043,BLS,US,O,private -1997-082,2450803.05,1997-12-20,1997,Delta 7920-10C,,Iridium SV045,BLS,US,O,private -1998-002,2450823.52,1998-01-10,1998,Delta 7925-9.5,,Skynet 4D,BLS,US,O,private -1998-008,2450859.11,1998-02-14,1998,Delta 7420-10C,,Globalstar FM1,BLS,US,O,private -1998-010,2450863.08,1998-02-18,1998,Delta 7920-10C,,Iridium SV052,BLS,US,O,private -1998-019,2450902.75,1998-03-30,1998,Delta 7920-10C,,Iridium SV055,BLS,US,O,private -1998-023,2450928.44,1998-04-24,1998,Delta 7420-10C,,Globalstar M014,BLS,US,O,private -2000-017,2451629.36,2000-03-25,2000,Delta 7326-9.5,,IMAGE,BLS,US,O,private -2000-025,2451675.58,2000-05-11,2000,Delta 7925-9.5,,Navstar GPS SVN 51,BLS,US,O,private -2000-040,2451741.89,2000-07-16,2000,Delta 7925-9.5,,Navstar GPS SVN 44,BLS,US,O,private -2000-048,2451779.96,2000-08-23,2000,Delta 8930,,DM-F3,BLS,US,O,private -2000-071,2451859.22,2000-11-10,2000,Delta 7925-9.5,,Navstar GPS SVN 41,BLS,US,O,private -2000-075,2451870.27,2000-11-21,2000,Delta 7320-10,,Earth Orbiter 1,BLS,US,O,private -2001-004,2451939.83,2001-01-30,2001,Delta 7925-9.5,,Navstar GPS SVN 54,BLS,US,O,private -2001-013,2452007.13,2001-04-07,2001,Delta 7925-9.5,,2001 Mars Odyssey,BLS,US,O,private -2001-020,2452048.24,2001-05-18,2001,Delta 7925-9.5,,GeoLITE,BLS,US,O,private -2001-027,2452091.32,2001-06-30,2001,Delta 7425-10,,Microwave Anisotropy Pro,BLS,US,O,private -2001-034,2452130.18,2001-08-08,2001,Delta 7326-9.5,,Genesis,BLS,US,O,private -2001-047,2452201.29,2001-10-18,2001,Delta 7320-10,,QuickBird,BLS,US,O,private -2001-055,2452251.13,2001-12-07,2001,Delta 7920-10,,Jason,BLS,US,O,private -2002-005,2452317.24,2002-02-11,2002,Delta 7920-10C,,Iridium SV091,BLS,US,O,private -2002-022,2452398.91,2002-05-04,2002,Delta 7920-10L,,EOS PM-1,BLS,US,O,private -2002-034,2452458.78,2002-07-03,2002,Delta 7425-9.5,,Contour,BLS,US,O,private -2002-051,2452599.44,2002-11-20,2002,"Delta 4M+(4,2)",,Eutelsat W5,BLS,US,O,private -2003-002,2452652.53,2003-01-13,2003,Delta 7320-10,,Icesat,BLS,US,O,private -2003-005,2452669.25,2003-01-29,2003,Delta 7925-9.5,,Navstar GPS SVN 56,BLS,US,O,private -2003-008,2452709.54,2003-03-11,2003,Delta 4M,,DSCS III A-3/IABS,BLS,US,O,private -2003-010,2452730.42,2003-03-31,2003,Delta 7925-9.5,,Navstar GPS SVN 45,BLS,US,O,private -2003-027,2452801.25,2003-06-10,2003,Delta 7925-9.5,,Mars Exploration Rover 2,BLS,US,O,private -2003-032,2452828.64,2003-07-08,2003,Delta 7925H,,Mars Exploration Rover 1,BLS,US,O,private -2003-038,2452876.73,2003-08-25,2003,Delta 7920H,,SIRTF,BLS,US,O,private -2003-040,2452881.47,2003-08-29,2003,Delta 4M,,DSCS III B-6/IABS,BLS,US,O,private -2003-058,2452994.84,2003-12-21,2003,Delta 7925-9.5,,Navstar GPS SVN 47,BLS,US,O,private -2004-009,2453085.25,2004-03-20,2004,Delta 7925-9.5,,Navstar GPS SVN 59,BLS,US,O,private -2004-014,2453116.21,2004-04-20,2004,Delta 7920-10C,,GP-B,BLS,US,O,private -2004-023,2453180.45,2004-06-23,2004,Delta 7925-9.5,,Navstar GPS SVN 60,BLS,US,O,private -2004-026,2453201.92,2004-07-15,2004,Delta 7920-10L,,EOS Chem-1,BLS,US,O,private -2004-030,2453220.76,2004-08-03,2004,Delta 7925H,,MESSENGER,BLS,US,O,private -2004-045,2453315.74,2004-11-06,2004,Delta 7925-9.5,,Navstar GPS SVN 61,BLS,US,O,private -2004-047,2453330.22,2004-11-20,2004,Delta 7320-10C,,Swift GRB Explorer,BLS,US,O,private -2004-050,2453361.41,2004-12-21,2004,Delta 4H,,HLV-OLDSP,BLS,US,O,private -2005-001,2453383.28,2005-01-12,2005,Delta 7925-9.5,,Deep Impact,BLS,US,O,private -2005-018,2453510.93,2005-05-20,2005,Delta 7320-10C,,NOAA N,BLS,US,O,private -2005-038,2453639.65,2005-09-26,2005,Delta 7925-9.5,,Navstar GPS SVN 53,BLS,US,O,private -2006-016,2453853.92,2006-04-28,2006,Delta 7420-10C,,Cloudsat,BLS,US,O,private -2006-018,2453880.42,2006-05-24,2006,"Delta 4M+(4,2)",,GOES N,BLS,US,O,private -2006-024,2453908.43,2006-06-21,2006,Delta 7925-9.5,,MITEX OSC satellite,BLS,US,O,private -2006-027,2453914.65,2006-06-28,2006,"Delta 4M+(4,2)",,Adv TRUMPET 1,BLS,US,O,private -2006-042,2454004.28,2006-09-25,2006,Delta 7925-9.5,,Navstar GPS SVN 52,BLS,US,O,private -2006-047,2454034.54,2006-10-26,2006,Delta 7925-10L,,STEREO Ahead,BLS,US,O,private -2006-050,2454044.08,2006-11-04,2006,Delta 4M,,DMSP Block 5D-3 S-17,BLS,US,O,private -2006-052,2454057.3,2006-11-17,2006,Delta 7925-9.5,,Navstar GPS SVN 58,BLS,US,O,private -1970-034,2440701.07,1970-04-24,1970,Chang Zheng 1,,Dong Fang Hong,CN,CN,O,state -1971-018,2441014,1971-03-03,1971,Chang Zheng 1,,shijian,CN,CN,O,state -1975-111,2442742.64,1975-11-26,1975,Chang Zheng 2C,,FSW No. 2,CN,CN,O,state -1976-117,2443119.69,1976-12-07,1976,Chang Zheng 2C,,FSW No. 3,CN,CN,O,state -1978-011,2443534.71,1978-01-26,1978,Chang Zheng 2C,,FSW No. 4,CN,CN,O,state -1982-090,2445221.8,1982-09-09,1982,Chang Zheng 2C,,FSW No. 5,CN,CN,O,state -1983-086,2445565.75,1983-08-19,1983,Chang Zheng 2C,,FSW No. 6,CN,CN,O,state -1984-008,2445729.02,1984-01-29,1984,Chang Zheng 3,,STW-1,CN,CN,O,state -1984-035,2445798.97,1984-04-08,1984,Chang Zheng 3,,STW,CN,CN,O,state -1984-098,2445955.74,1984-09-12,1984,Chang Zheng 2C,,FSW No. 7,CN,CN,O,state -1985-096,2446359.71,1985-10-21,1985,Chang Zheng 2C,,FSW No. 8,CN,CN,O,state -1986-010,2446463.03,1986-02-01,1986,Chang Zheng 3,,DFH-2,CN,CN,O,state -1986-076,2446709.74,1986-10-06,1986,Chang Zheng 2C,,FSW No. 9,CN,CN,O,state -1987-067,2447012.78,1987-08-05,1987,Chang Zheng 2C,,FSW No. 10,CN,CN,O,state -1987-075,2447047.8,1987-09-09,1987,Chang Zheng 2C,,FSW-1 No. 1,CN,CN,O,state -1988-111,2447518.03,1988-12-22,1988,Chang Zheng 3,,DFH 2A-2,CN,CN,O,state -1988-014,2447228.03,1988-03-07,1988,Chang Zheng 3,,DFH-2A,CN,CN,O,state -1988-067,2447378.81,1988-08-05,1988,Chang Zheng 2C,,FSW-1 RV,CN,CN,O,state -1990-011,2447927.02,1990-02-04,1990,Chang Zheng 3,,DFH 2A,CN,CN,O,state -1990-030,2447989.06,1990-04-07,1990,Chang Zheng 3,,Asiasat 1,CN,CN,O,state -1990-059,2448088.53,1990-07-16,1990,Chang Zheng 2E,,BADR,CN,CN,O,state -1990-089,2448169.76,1990-10-05,1990,Chang Zheng 2C,,FSW-1 No. 3,CN,CN,O,state -1991-088,2448619,1991-12-28,1991,Chang Zheng 3,,DFH 2A-4,CN,CN,O,state -1992-054,2448848.46,1992-08-13,1992,Chang Zheng 2E,,Optus B1,CN,CN,O,state -1992-064,2448901.76,1992-10-06,1992,Chang Zheng 2C,,Freja,CN,CN,O,state -1992-090,2448977.97,1992-12-21,1992,Chang Zheng 2E,,Optus B2,CN,CN,O,state -1993-063,2449268.83,1993-10-08,1993,Chang Zheng 2C,,FSW-1 No. 5 (14),CN,CN,O,state -1994-010,2449391.86,1994-02-08,1994,Chang Zheng 3A,,shijian sihao,CN,CN,O,state -1994-043,2449554.95,1994-07-21,1994,Chang Zheng 3,,APSTAR 1,CN,CN,O,state -1994-055,2449592.47,1994-08-27,1994,Chang Zheng 2E,,Optus B3,CN,CN,O,state -1994-080,2449686.21,1994-11-29,1994,Chang Zheng 3A,,DFH-3,CN,CN,O,state -1995-064,2450049.98,1995-11-28,1995,Chang Zheng 2E,,Asiasat 2,CN,CN,O,state -1995-073,2450079.99,1995-12-28,1995,Chang Zheng 2E,,Echostar 1,CN,CN,O,state -1996-039,2450267.95,1996-07-03,1996,Chang Zheng 3,,Apstar 1A,CN,CN,O,state -1996-048,2450313.94,1996-08-18,1996,Chang Zheng 3,,Zhongxing 7,CN,CN,O,state -1997-021,2450580.18,1997-05-11,1997,Chang Zheng 3A,,DFH-3,CN,CN,O,state -1997-029,2450610,1997-06-10,1997,Chang Zheng 3,,Feng Yun Er Jia,CN,CN,O,state -1997-042,2450680.24,1997-08-19,1997,Chang Zheng 3B,,Mabuhay,CN,CN,O,state -1997-048,2450693.08,1997-09-01,1997,Chang Zheng 2C-III/SD,,Iridium MFS 1,CN,CN,O,state -1997-062,2450738.3,1997-10-16,1997,Chang Zheng 3B,,Apstar 2R,CN,CN,O,state -1997-077,2450790.8,1997-12-08,1997,Chang Zheng 2C-III/SD,,Iridium SV042,CN,CN,O,state -1998-018,2450898.21,1998-03-25,1998,Chang Zheng 2C-III/SD,,Iridium SV051,CN,CN,O,state -1998-026,2450935.89,1998-05-02,1998,Chang Zheng 2C-III/SD,,Iridium SV069,CN,CN,O,state -1998-033,2450963.92,1998-05-30,1998,Chang Zheng 3B,,Chinastar 1,CN,CN,O,state -1998-044,2451012.89,1998-07-18,1998,Chang Zheng 3B,,xinnuo yihao,CN,CN,O,state -1998-048,2451045.46,1998-08-19,1998,Chang Zheng 2C-III/SD,,Iridium SV078,CN,CN,O,state -1998-074,2451166.99,1998-12-19,1998,Chang Zheng 2C-III/SD,,Iridium SV088?,CN,CN,O,state -1999-032,2451341.22,1999-06-11,1999,Chang Zheng 2C-III/SD,,Iridium SV092,CN,CN,O,state -1999-061,2451502.44,1999-11-19,1999,Chang Zheng 2F,,Shenzhou 1 Fanhui Cang,CN,CN,O,state -2000-003,2451569.2,2000-01-25,2000,Chang Zheng 3A,,Feng Huo 1,CN,CN,O,state -2000-032,2451720.99,2000-06-25,2000,Chang Zheng 3,,Feng Yun Er Yi,CN,CN,O,state -2000-069,2451848.17,2000-10-30,2000,Chang Zheng 3A,,yi ke beidou daohang s.w,CN,CN,O,state -2000-082,2451899.18,2000-12-20,2000,Chang Zheng 3A,,er ke beidou daohang s.w,CN,CN,O,state -2001-001,2451919.21,2001-01-09,2001,Chang Zheng 2F,,Shenzhou 2 Fanhui Cang,CN,CN,O,state -2002-014,2452359.09,2002-03-25,2002,Chang Zheng 2F,,Shenzhou 3 Fanhui Cang,CN,CN,O,state -2002-061,2452638.19,2002-12-29,2002,Chang Zheng 2F,,Shenzhou 4 Fanhui Cang,CN,CN,O,state -2003-021,2452784.19,2003-05-24,2003,Chang Zheng 3A,,san ke beidou daohang s.,CN,CN,O,state -2003-045,2452927.54,2003-10-15,2003,Chang Zheng 2F,,Shenzhou 5 Fanhui Cang,CN,CN,O,state -2003-052,2452958.17,2003-11-14,2003,Chang Zheng 3A,,Shentong yi hao 01 xing,CN,CN,O,state -2003-061,2453003.3,2003-12-29,2003,Chang Zheng 2C,SM,Double Star DSP-E,CN,CN,O,state -2004-012,2453114.17,2004-04-18,2004,Chang Zheng 2C,a,Shiyan 1,CN,CN,O,state -2004-029,2453211.8,2004-07-25,2004,Chang Zheng 2C,SM,Double Star DSP-P,CN,CN,O,state -2004-033,2453246.83,2004-08-29,2004,Chang Zheng 2C,b,FSW-3?,CN,CN,O,state -2004-042,2453297.56,2004-10-19,2004,Chang Zheng 3A,,FY-2 O4,CN,CN,O,state -2004-046,2453327.95,2004-11-18,2004,Chang Zheng 2C,a,Shiyan 2,CN,CN,O,state -2005-012,2453473,2005-04-12,2005,Chang Zheng 3B,,Apstar 6,CN,CN,O,state -2005-027,2453584.81,2005-08-02,2005,Chang Zheng 2C,b,FSW-3?,CN,CN,O,state -2005-040,2453655.54,2005-10-12,2005,Chang Zheng 2F,,Shenzhou 6 Fanhui Cang,CN,CN,O,state -2006-035,2453987.79,2006-09-09,2006,Chang Zheng 2C,b,shijian bahao yuzhong we,CN,CN,O,state -2006-038,2453991.17,2006-09-12,2006,Chang Zheng 3A,,Feng Huo 2?,CN,CN,O,state -2006-048,2454037.18,2006-10-28,2006,Chang Zheng 3B,,xinnuo erhao,CN,CN,O,state -2006-053,2454077.54,2006-12-08,2006,Chang Zheng 3A,,fengyun erhao D xing,CN,CN,O,state -2007-003,2454134.19,2007-02-02,2007,Chang Zheng 3A,,di si ke beidou daohang,CN,CN,O,state -2007-010,2454201.64,2007-04-11,2007,Chang Zheng 2C,b,haiyang yihao B,CN,CN,O,state -2007-011,2454204.34,2007-04-13,2007,Chang Zheng 3A,,yi ke beidou daohang wei,CN,CN,O,state -2007-018,2454234.17,2007-05-13,2007,Chang Zheng 3B,G2,Nigcomsat 1,CN,CN,O,state -2007-021,2454252.17,2007-05-31,2007,Chang Zheng 3A,,xinnuo sanhao,CN,CN,O,state -2007-031,2454287.01,2007-07-05,2007,Chang Zheng 3B,,zhongxing liu B weixing,CN,CN,O,state -2007-051,2454397.92,2007-10-24,2007,Chang Zheng 3A,,chang'e yihao weixing,CN,CN,O,state -2008-019,2454582.15,2008-04-25,2008,Chang Zheng 3C,,tianlian yihao 01 xing,CN,CN,O,state -2008-028,2454627.01,2008-06-09,2008,Chang Zheng 3B,,zhongxing jiuhao,CN,CN,O,state -2008-041,2454715.64,2008-09-06,2008,Chang Zheng 2C,SMA,huanjing jian zai A xing,CN,CN,O,state -2008-047,2454735.05,2008-09-25,2008,Chang Zheng 2F,,shenzhou qihao fanhui ca,CN,CN,O,state -2008-055,2454769.2,2008-10-29,2008,Chang Zheng 3B,G2,Venesat,CN,CN,O,state -2008-066,2454823.54,2008-12-23,2008,Chang Zheng 3A,,fengyun erhao 06 xing,CN,CN,O,state -2009-018,2454936.18,2009-04-14,2009,Chang Zheng 3C,,er ke beidou daohang wei,CN,CN,O,state -2009-021,2454943.62,2009-04-22,2009,Chang Zheng 2C,b,yaogan weixing liuhao,CN,CN,O,state -2009-046,2455074.89,2009-08-31,2009,Chang Zheng 3B,,Palapa D,CN,CN,O,state -2009-061,2455147.61,2009-11-12,2009,Chang Zheng 2C,b,shijian shi yihao 01 xin,CN,CN,O,state -2010-001,2455213.18,2010-01-16,2010,Chang Zheng 3C,,di san ke beidou daohang,CN,CN,O,state -2010-024,2455350.16,2010-06-02,2010,Chang Zheng 3C,,di si ke beidou daohang,CN,CN,O,state -2010-036,2455409.4,2010-07-31,2010,Chang Zheng 3A,,diwu ke beidou daohang w,CN,CN,O,state -2010-042,2455444.18,2010-09-04,2010,Chang Zheng 3B,G2,zhongxing liu A weixing,CN,CN,O,state -2010-050,2455470.96,2010-10-01,2010,Chang Zheng 3C,,chang'e erhao weixing,CN,CN,O,state -2010-057,2455501.18,2010-10-31,2010,Chang Zheng 3C,,di liu ke beidou daohang,CN,CN,O,state -2010-064,2455525.17,2010-11-24,2010,Chang Zheng 3A,,Shentong yi hao 02 xing,CN,CN,O,state -2010-068,2455548.35,2010-12-17,2010,Chang Zheng 3A,,diqi ke beidou daohang w,CN,CN,O,state -2011-013,2455661.37,2011-04-09,2011,Chang Zheng 3A,,diba ke beidou daohang w,CN,CN,O,state -2011-026,2455733.18,2011-06-20,2011,Chang Zheng 3B,G2,zhongxing shi hao weixin,CN,CN,O,state -2011-030,2455748.69,2011-07-06,2011,Chang Zheng 2C,b,shijian shi yihao 03 xin,CN,CN,O,state -2011-032,2455754.15,2011-07-11,2011,Chang Zheng 3C,,tianlian yihao 02 xing,CN,CN,O,state -2011-038,2455769.41,2011-07-26,2011,Chang Zheng 3A,,di jiu ke beidou daohang,CN,CN,O,state -2011-039,2455771.82,2011-07-29,2011,Chang Zheng 2C,b,shijian shi yihao 02 xin,CN,CN,O,state -2011-042,2455785.18,2011-08-11,2011,Chang Zheng 3B,G2,Paksat 1R,CN,CN,O,state -2011-047,2455823.19,2011-09-18,2011,Chang Zheng 3B,,Fenghuo 2,CN,CN,O,state -2011-053,2455834.05,2011-09-29,2011,Chang Zheng 2FT1,,Tiangong 1,CN,CN,O,state -2011-057,2455841.85,2011-10-07,2011,Chang Zheng 3B,G2,Eutelsat W3C,CN,CN,O,state -2011-063,2455866.42,2011-10-31,2011,Chang Zheng 2F,,shenzhou ba fanhui cang,CN,CN,O,state -2011-072,2455895.28,2011-11-29,2011,Chang Zheng 2C,b,yaogan weixing shisan ha,CN,CN,O,state -2011-073,2455897.38,2011-12-01,2011,Chang Zheng 3A,,di shi ke beidou daohang,CN,CN,O,state -2011-077,2455915.2,2011-12-19,2011,Chang Zheng 3B,G2,Nigcomsat 1R,CN,CN,O,state -2012-002,2455939.54,2012-01-13,2012,Chang Zheng 3A,,fengyun erhao 07 xing,CN,CN,O,state -2012-008,2455982.18,2012-02-24,2012,Chang Zheng 3C,,di shiyi ke beidou d.w.,CN,CN,O,state -2012-013,2456017.94,2012-03-31,2012,Chang Zheng 3B,G2,Apstar7,CN,CN,O,state -2012-018,2456047.37,2012-04-29,2012,Chang Zheng 3B,G1,di shier ke beidou-2 w.,CN,CN,O,state -2012-028,2456074.16,2012-05-26,2012,Chang Zheng 3B,G3,Shentong-2?,CN,CN,O,state -2012-032,2456094.94,2012-06-16,2012,Chang Zheng 2F,,shenzhou jiu fanhui cang,CN,CN,O,state -2012-040,2456134.15,2012-07-25,2012,Chang Zheng 3C,,tianlian yihao 03 xing,CN,CN,O,state -2012-050,2456189.3,2012-09-18,2012,Chang Zheng 3B,G1,14 ke beidou daohang wei,CN,CN,O,state -2012-056,2456214.64,2012-10-14,2012,Chang Zheng 2C,SMA,shi jian liuhao A weixin,CN,CN,O,state -2012-059,2456226.15,2012-10-25,2012,Chang Zheng 3C,,di 16 ke beidou d.weixin,CN,CN,O,state -2012-064,2456250.45,2012-11-18,2012,Chang Zheng 2C,b,huan jing yihao C weixin,CN,CN,O,state -2012-067,2456258.93,2012-11-27,2012,Chang Zheng 3B,G2,zhongxing shier hao weix,CN,CN,O,state -2013-020,2456414.17,2013-05-01,2013,Chang Zheng 3B,G2,ZX-11,CN,CN,O,state -2013-029,2456454.9,2013-06-11,2013,Chang Zheng 2F,,,CN,CN,O,state -2013-035,2456488.89,2013-07-15,2013,Chang Zheng 2C,b,SJ11-05,CN,CN,O,state -2013-059,2456594.62,2013-10-29,2013,Chang Zheng 2C,b,YW18,CN,CN,O,state -2013-070,2456628.23,2013-12-01,2013,Chang Zheng 3B,G3,CE-3,CN,CN,O,state -2013-075,2456647.2,2013-12-20,2013,Chang Zheng 3B,G2,TKSat-1,CN,CN,O,state -2014-014,2456747.62,2014-03-31,2014,Chang Zheng 2C,b,SJ-11-06,CN,CN,O,state -2014-059,2456928.72,2014-09-28,2014,Chang Zheng 2C,b,SJ-11-07,CN,CN,O,state -2014-065,2456954.25,2014-10-23,2014,Chang Zheng 3C,G2,CE5-T1,CN,CN,O,state -2014-066,2456957.79,2014-10-27,2014,Chang Zheng 2C,b,SJ-11-08,CN,CN,O,state -2014-071,2456976.29,2014-11-14,2014,Chang Zheng 2C,b,YG-23,CN,CN,O,state -2014-090,2457022.54,2014-12-31,2014,Chang Zheng 3A,,FY-2-08,CN,CN,O,state -2015-019,2457112.08,2015-03-30,2015,Chang Zheng 3C/YZ-1,,Beidou I1-S,CN,CN,O,state -2015-037,2457229.02,2015-07-25,2015,Chang Zheng 3B/YZ-1,,Beidou M1S?M2S,CN,CN,O,state -2015-046,2457278.15,2015-09-12,2015,Chang Zheng 3B,G2?,TXJSSY-1,CN,CN,O,state -2015-049,2457285.46,2015-09-19,2015,Chang Zheng 6,,,CN,CN,O,state -2015-051,2457290.57,2015-09-25,2015,Chang Zheng 11,,TW-1?,CN,CN,O,state -2015-053,2457295.47,2015-09-29,2015,Chang Zheng 3B,G2,Beidou I2-S,CN,CN,O,state -2015-059,2457312.18,2015-10-16,2015,Chang Zheng 3B,G2?,Apstar-9,CN,CN,O,state -2015-063,2457330.18,2015-11-03,2015,Chang Zheng 3B,G3,zhongxing er hao C xing,CN,CN,O,state -2015-067,2457347.17,2015-11-20,2015,Chang Zheng 3B,G2,Laosat 1,CN,CN,O,state -2015-073,2457366.2,2015-12-09,2015,Chang Zheng 3B,G2,zhongxing yi hao C xing,CN,CN,O,state -2015-083,2457385.17,2015-12-28,2015,Chang Zheng 3B,G2,gaofen si yao weixing,CN,CN,O,state -2016-001,2457403.21,2016-01-15,2016,Chang Zheng 3B,G2,Belintersat-1,CN,CN,O,state -2016-006,2457419.81,2016-02-01,2016,Chang Zheng 3C/YZ-1,,Beidou M3-S,CN,CN,O,state -2016-021,2457477.34,2016-03-29,2016,Chang Zheng 3A,,Beidou I3-S,CN,CN,O,state -2016-037,2457552.15,2016-06-12,2016,Chang Zheng 3C,,Beidou G7,CN,CN,O,state -2016-042,2457565,2016-06-25,2016,Chang Zheng 7/YZ-1A,,FC/Aoxiang,CN,CN,O,state -2016-048,2457606.18,2016-08-05,2016,Chang Zheng 3B,G2,Tiantong-1,CN,CN,O,state -2016-057,2457647.09,2016-09-15,2016,Chang Zheng 2F,,Tiangong 2,CN,CN,O,state -2016-061,2457678.48,2016-10-16,2016,Chang Zheng 2F,,Shenzhou 11,CN,CN,O,state -2016-065,2457696.03,2016-11-03,2016,Chang Zheng 5/YZ-2,,SJ-17,CN,CN,O,state -2016-066,2457702.49,2016-11-09,2016,Chang Zheng 11,,MXSW,CN,CN,O,state -2016-072,2457715.14,2016-11-22,2016,Chang Zheng 3C,G2,tianlian yihao 04 xing,CN,CN,O,state -2016-077,2457733.17,2016-12-10,2016,Chang Zheng 3B,G2,fengyun 4 01 xing,CN,CN,O,state -2017-001,2457759.14,2017-01-05,2017,Chang Zheng 3B,G2,TJS 2,CN,CN,O,state -2017-018,2457855.96,2017-04-12,2017,Chang Zheng 3B,G2,Shi Jian 13,CN,CN,O,state -2017-021,2457863.99,2017-04-20,2017,Chang Zheng 7,,Tianzhou 1,CN,CN,O,state -2017-035,2457923.17,2017-06-18,2017,Chang Zheng 3B,G2,Zhongxing-9A,CN,CN,O,state -2017-058,2458025.68,2017-09-29,2017,Chang Zheng 2C,b,YG-30-01,CN,CN,O,state -2017-069,2458062.99,2017-11-05,2017,Chang Zheng 3B/YZ-1,G2,Beidou-3,CN,CN,O,state -2017-074,2458078.7,2017-11-21,2017,Chang Zheng 6,,,CN,CN,O,state -2017-075,2458082.26,2017-11-24,2017,Chang Zheng 2C,b,YG-30-02,CN,CN,O,state -2017-078,2458098.19,2017-12-10,2017,Chang Zheng 3B,G2,AlComSat 1,CN,CN,O,state -2017-085,2458113.32,2017-12-25,2017,Chang Zheng 2C,b,YG-30-03,CN,CN,O,state -2018-003,2458130.47,2018-01-11,2018,Chang Zheng 3B/YZ-1,G2,Beidou-3,CN,CN,O,state -2018-008,2458137.68,2018-01-19,2018,Chang Zheng 11,,Jilin-1 Shipin 07-08,CN,CN,O,state -2018-011,2458143.74,2018-01-25,2018,Chang Zheng 2C,b,YG-30-04,CN,CN,O,state -2018-018,2458161.71,2018-02-12,2018,Chang Zheng 3B/YZ-1,G2,Beidou-3,CN,CN,O,state -2018-029,2458207.25,2018-03-29,2018,Chang Zheng 3B/YZ-1,G2,Beidou-3,CN,CN,O,state -2018-040,2458234.7,2018-04-26,2018,Chang Zheng 11,,"OVS-2, OHS-1A/B/C/D",CN,CN,O,state -2018-041,2458242.17,2018-05-03,2018,Chang Zheng 3B,G2,Apstar 6C,CN,CN,O,state -2018-050,2458275.05,2018-06-05,2018,Chang Zheng 3A,,FY-2-09,CN,CN,O,state -2018-054,2458296.65,2018-06-27,2018,Chang Zheng 2C,b,XJSS,CN,CN,O,state -2018-056,2458308.66,2018-07-09,2018,Chang Zheng 2C,SMA,PRSS-1,CN,CN,O,state -2018-057,2458309.37,2018-07-09,2018,Chang Zheng 3A,,Beidou-2,CN,CN,O,state -2018-062,2458328.58,2018-07-29,2018,Chang Zheng 3B/YZ-1,G2,Beidou-3,CN,CN,O,state -2018-067,2458355.49,2018-08-24,2018,Chang Zheng 3B/YZ-1,G2,Beidou-3,CN,CN,O,state -2018-068,2458368.64,2018-09-07,2018,Chang Zheng 2C,b,Haiyang 1C,CN,CN,O,state -2018-072,2458381.09,2018-09-19,2018,Chang Zheng 3B/YZ-1,G2,Beidou-3,CN,CN,O,state -2018-077,2458399.61,2018-10-08,2018,Chang Zheng 2C/YZ-1S,,YG-32-01,CN,CN,O,state -2018-078,2458406.68,2018-10-15,2018,Chang Zheng 3B/YZ-1,G2,Beidou-3,CN,CN,O,state -1974-F07,2442356.9,1974-11-05,1974,Chang Zheng 2,,FSW No. 1,CN,CN,F,state -1995-F01,2449743.44,1995-01-25,1995,Chang Zheng 2E,,Apstar 2,CN,CN,F,state -1996-F01,2450128.29,1996-02-14,1996,Chang Zheng 3B,,INTELSAT 708,CN,CN,F,state -2011-F02,2455791.89,2011-08-18,2011,Chang Zheng 2C,b,shijian shi yihao 04 xin,CN,CN,F,state -2017-F03,2457936.97,2017-07-02,2017,Chang Zheng 5,540,SJ-18,CN,CN,F,state -2017-012,2457815.5,2017-03-02,2017,KT-2,,Tiankun-1,CN,CN,O,state -1965-096,2439091.12,1965-11-26,1965,Diamant A,,A-1,F,F,O,state -1966-013,2439173.86,1966-02-17,1966,Diamant A,,Diapason D-1A,F,F,O,state -1967-011,2439529.9,1967-02-08,1967,Diamant A,,Diademe D-1C,F,F,O,state -1967-014,2439536.92,1967-02-15,1967,Diamant A,,Diademe D-1D,F,F,O,state -1970-109,2440933.04,1970-12-12,1970,Diamant B,,Peole,F,F,O,state -1970-017,2440656.01,1970-03-10,1970,Diamant B,,DIAL Wissenschaftliche K,F,F,O,state -1971-030,2441056.89,1971-04-15,1971,Diamant B,,D-2A,F,F,O,state -1975-010,2442450.19,1975-02-06,1975,Diamant BP.4,,Starlette,F,F,O,state -1975-039,2442549.94,1975-05-17,1975,Diamant BP.4,,D-5A,F,F,O,state -1975-092,2442682.86,1975-09-27,1975,Diamant BP.4,,D-2B,F,F,O,state -1971-F14,2441291.18,1971-12-05,1971,Diamant B,,D-2A Polaire,F,F,F,state -1967-038,2439606.92,1967-04-26,1967,Scout B,,San Marco B,I,I,O,state -1970-107,2440932.95,1970-12-12,1970,Scout B,,SAS A,I,I,O,state -1971-036,2441065.81,1971-04-24,1971,Scout B,,San Marco C,I,I,O,state -1971-096,2441270.74,1971-11-15,1971,Scout B,,SSS A,I,I,O,state -1972-091,2441637.43,1972-11-15,1972,Scout D-1,F,SAS B,I,I,O,state -1974-009,2442096.92,1974-02-18,1974,Scout D-1,F,San Marco C2,I,I,O,state -1974-077,2442335.82,1974-10-15,1974,Scout B-1,,UK 5,I,I,O,state -1975-037,2442540.45,1975-05-07,1975,Scout F-1,,SAS C,I,I,O,state -1988-026,2447246.33,1988-03-25,1988,Scout G-1,,San Marco D/L,I,I,O,state -1995-F05,2450014.42,1995-10-23,1995,Conestoga 1620,,Meteor SM,EER,US,F,private -1968-F09,2440190.47,1968-11-29,1968,Europa I,,STV 1,I-ELDO,I-ELDO,F,state -1969-F09,2440405.45,1969-07-02,1969,Europa I,,STV 2 Adapter,I-ELDO,I-ELDO,F,state -1971-F10,2441261.04,1971-11-05,1971,Europa II,,STV 4,I-ELDO,I-ELDO,F,state -2011-051,2455829.35,2011-09-24,2011,Zenit-3SL,,Atlantic Bird 7,ELUS,US,O,private -2012-030,2456079.72,2012-06-01,2012,Zenit-3SL,,Intelsat IS-19,ELUS,US,O,private -2012-045,2456158.79,2012-08-19,2012,Zenit-3SL,,Intelsat IS-21,ELUS,US,O,private -2012-069,2456265.36,2012-12-03,2012,Zenit-3SL,,EUTELSAT 70B,ELUS,US,O,private -2014-030,2456804.38,2014-05-26,2014,Zenit-3SL,,EUTELSAT 3B,ELUS,US,O,private -2013-F01,2456324.79,2013-02-01,2013,Zenit-3SL,,Intelsat IS-27,ELUS,US,F,private -1979-104,2444232.22,1979-12-24,1979,Ariane 1,,CAT,I-ESA,I-ESA,O,state -1981-122,2444958.56,1981-12-20,1981,Ariane 1,,Marecs A,I-ESA,I-ESA,O,state -1981-057,2444775.02,1981-06-19,1981,Ariane 1,,Meteosat F2,I-ESA,I-ESA,O,state -1983-105,2445626.53,1983-10-19,1983,Ariane 1,,INTELSAT V F7,I-ESA,I-ESA,O,state -1983-058,2445502,1983-06-16,1983,Ariane 1,,ECS 1,I-ESA,I-ESA,O,state -1984-023,2445764.53,1984-03-05,1984,Ariane 1,,INTELSAT V F8,I-ESA,I-ESA,O,state -1997-066,2450752.07,1997-10-30,1997,Ariane 5G,,TEAMSAT,I-ESA,I-ESA,O,state -2005-005,2453414.38,2005-02-12,2005,Ariane 5ECA,,XTAR-EUR,I-ESA,I-ESA,O,state -2005-046,2453691.49,2005-11-16,2005,Ariane 5ECA,,Telkom 2,I-ESA,I-ESA,O,state -2012-006,2455970.92,2012-02-13,2012,Vega,,LARES,I-ESA,I-ESA,O,state -1980-F01,2444383.1,1980-05-23,1980,Ariane 1,,CAT,I-ESA,I-ESA,F,state -1982-F06,2445221.59,1982-09-09,1982,Ariane 1,,Marecs B,I-ESA,I-ESA,F,state -1996-F03,2450239.02,1996-06-04,1996,Ariane 5G,,Cluster F1-F4,I-ESA,I-ESA,F,state -2000-026,2451680.85,2000-05-16,2000,Rokot,,EPN 813IP/003 (Iridium),EUROK,RU,O,private -2002-012,2452350.89,2002-03-17,2002,Rokot,,GRACE 1,EUROK,RU,O,private -2002-031,2452445.9,2002-06-20,2002,Rokot,,Iridium SV097,EUROK,RU,O,private -2003-031,2452821.09,2003-06-30,2003,Rokot,,Mimosa,EUROK,RU,O,private -2003-050,2452943.07,2003-10-30,2003,Rokot,,SERVIS-1,EUROK,RU,O,private -2006-031,2453944.8,2006-07-28,2006,Rokot,,KOMPSAT-2,EUROK,RU,O,private -2009-013,2454908.1,2009-03-17,2009,Rokot,,GOCE,EUROK,RU,O,private -2009-059,2455137.58,2009-11-02,2009,Rokot,,SMOS,EUROK,RU,O,private -2010-023,2455349.58,2010-06-02,2010,Rokot,,SERVIS-2,EUROK,RU,O,private -2013-067,2456619,2013-11-22,2013,Rokot,,"SWARM 1,2,3",EUROK,RU,O,private -2016-011,2457435.25,2016-02-16,2016,Rokot,,Sentinel-3A,EUROK,RU,O,private -2017-064,2458039.89,2017-10-13,2017,Rokot,,Sentinel-5P,EUROK,RU,O,private -2018-039,2458234.25,2018-04-25,2018,Rokot,,Sentinel-3B,EUROK,RU,O,private -2005-F03,2453652.13,2005-10-08,2005,Rokot,,Cryosat,EUROK,RU,F,private -2017-002,2457762.67,2017-01-09,2017,Kuaizhou-1A,,Jilin-1,CN,CN,O,state -2018-075,2458390.68,2018-09-29,2018,Kuaizhou-1A,,Centispace-1-1S,CN,CN,O,state -2004-013,2453114.64,2004-04-19,2004,Soyuz-FG,,Soyuz 11F732 No. 214,RU,RU,O,state -2004-019,2453151.02,2004-05-25,2004,Soyuz-U-PVB,,Progress M No. 249,RU,RU,O,state -2004-032,2453228.71,2004-08-11,2004,Soyuz-U,,Progress 7K-TGM No. 350,RU,RU,O,state -2004-040,2453292.63,2004-10-14,2004,Soyuz-FG,,Soyuz 11F732 No. 215,RU,RU,O,state -2004-051,2453363.43,2004-12-23,2004,Soyuz-U-PVB,,Progress 7K-TGM No. 351,RU,RU,O,state -2005-007,2453430.3,2005-02-28,2005,Soyuz-U-PVB,,TEKh-42,RU,RU,O,state -2005-013,2453475.53,2005-04-15,2005,Soyuz-FG,,Soyuz 11F732 No. 216,RU,RU,O,state -2005-020,2453522,2005-05-31,2005,Soyuz-U-PVB,,Foton-M No. 2,RU,RU,O,state -2005-021,2453538.46,2005-06-16,2005,Soyuz-U-PVB,,Progress 7K-TGM No. 353/,RU,RU,O,state -2005-035,2453622.05,2005-09-08,2005,Soyuz-U-PVB,,Progress 7K-TGM No. 354/,RU,RU,O,state -2005-039,2453644.66,2005-10-01,2005,Soyuz-FG,,Soyuz 11F732 No. 217,RU,RU,O,state -2005-047,2453726.28,2005-12-21,2005,Soyuz-U-PVB,,Progress 7K-TGM No. 355/,RU,RU,O,state -2006-009,2453824.6,2006-03-30,2006,Soyuz-FG,,Soyuz 11F732 No. 218,RU,RU,O,state -2006-013,2453850.17,2006-04-24,2006,Soyuz-U-PVB,,Progress 7K-TGM No. 356,RU,RU,O,state -2006-021,2453901.83,2006-06-15,2006,Soyuz-U-PVB,,Resurs-DK No. 1,RU,RU,O,state -2006-025,2453911.13,2006-06-24,2006,Soyuz-U-PVB,,Progress 7K-TGM No. 357,RU,RU,O,state -2006-040,2453996.67,2006-09-18,2006,Soyuz-FG,,Soyuz 11F732 No. 219,RU,RU,O,state -2006-044,2454028.19,2006-10-19,2006,Soyuz-2-1A,Fregat,METOP A,RU,RU,O,state -2006-045,2454032.07,2006-10-23,2006,Soyuz-U-PVB,,Progress 7K-TGM No. 358,RU,RU,O,state -2007-002,2454118.59,2007-01-18,2007,Soyuz-U-PVB,,Progress 7K-TGM No. 359,RU,RU,O,state -2007-008,2454198.23,2007-04-07,2007,Soyuz-FG,,Soyuz 11F732 No. 220,RU,RU,O,state -2007-017,2454232.64,2007-05-12,2007,Soyuz-U-PVB,,Progress 7K-TGM No. 360,RU,RU,O,state -2007-033,2454315.23,2007-08-02,2007,Soyuz-U-PVB,,Progress 7K-TGM No. 361,RU,RU,O,state -2007-040,2454357.96,2007-09-14,2007,Soyuz-U-PVB,,Foton-M No. 3,RU,RU,O,state -2007-045,2454384.06,2007-10-10,2007,Soyuz-FG,,Soyuz 11F732 No. 221,RU,RU,O,state -2007-064,2454457.8,2007-12-23,2007,Soyuz-U-PVB,,Progress 7K-TGM No.362,RU,RU,O,state -2008-004,2454502.04,2008-02-05,2008,Soyuz-U-PVB,,Progress 7K-TGM No.363,RU,RU,O,state -2008-015,2454564.97,2008-04-08,2008,Soyuz-FG,,Soyuz 11F732 No. 222,RU,RU,O,state -2008-023,2454601.35,2008-05-14,2008,Soyuz-U-PVB,,Progress 7K-TGM No.364,RU,RU,O,state -2008-043,2454720.33,2008-09-10,2008,Soyuz-U-PVB,,Progress 7K-TGM No.365,RU,RU,O,state -2008-050,2454751.79,2008-10-12,2008,Soyuz-FG,,Soyuz 11F732A17 No. 223,RU,RU,O,state -2008-060,2454797.03,2008-11-26,2008,Soyuz-U-PVB,,Progress 7K-TGM No.401,RU,RU,O,state -2009-006,2454872.74,2009-02-10,2009,Soyuz-U-PVB,,Progress 7K-TGM No.366,RU,RU,O,state -2009-015,2454916.99,2009-03-26,2009,Soyuz-FG,,Soyuz 11F732A17 No. 224,RU,RU,O,state -2009-024,2454959.28,2009-05-07,2009,Soyuz-U-PVB,,Progress 7K-TGM No.402,RU,RU,O,state -2009-030,2454978.94,2009-05-27,2009,Soyuz-FG,,Soyuz 11F732A17 No. 225,RU,RU,O,state -2009-040,2455036.96,2009-07-24,2009,Soyuz-U-PVB,,Progress 7K-TGM No.367,RU,RU,O,state -2009-049,2455092.16,2009-09-17,2009,Soyuz-2-1B,Fregat,Meteor-M No. 1,RU,RU,O,state -2009-053,2455104.8,2009-09-30,2009,Soyuz-FG,,Soyuz 11F732A17 No. 226,RU,RU,O,state -2009-056,2455119.55,2009-10-15,2009,Soyuz-U-PVB,,Progress 7K-TGM No.403,RU,RU,O,state -2009-060,2455146.1,2009-11-10,2009,Soyuz-U-PVB,,Maliy Issled. Modul-2,RU,RU,O,state -2009-074,2455186.41,2009-12-20,2009,Soyuz-FG,,Soyuz 11F732A17 No. 227,RU,RU,O,state -2010-003,2455230.66,2010-02-03,2010,Soyuz-U-PVB,,Progress 7K-TGM No.404,RU,RU,O,state -2010-011,2455288.67,2010-04-02,2010,Soyuz-FG,,Soyuz 11F732A17 No. 228,RU,RU,O,state -2010-018,2455315.22,2010-04-28,2010,Soyuz-U-PVB,,Progress 7K-TGM No.405,RU,RU,O,state -2010-029,2455363.4,2010-06-15,2010,Soyuz-FG,,Soyuz 11F732A17 No. 229,RU,RU,O,state -2010-033,2455378.15,2010-06-30,2010,Soyuz-U-PVB,,Progress 7K-TGM No.406,RU,RU,O,state -2010-044,2455449.93,2010-09-10,2010,Soyuz-U-PVB,,Progress 7K-TGM No.407,RU,RU,O,state -2010-052,2455477.47,2010-10-07,2010,Soyuz-FG,,Soyuz 11F732A47 No. 701,RU,RU,O,state -2010-054,2455489.22,2010-10-19,2010,Soyuz-2-1A,Fregat,Globalstar-2 FM8?,RU,RU,O,state -2010-055,2455497.13,2010-10-27,2010,Soyuz-U-PVB,,Progress 7K-TGM No.408,RU,RU,O,state -2010-067,2455546.3,2010-12-15,2010,Soyuz-FG,,Soyuz 11F732A17 No. 230,RU,RU,O,state -2011-004,2455589.56,2011-01-28,2011,Soyuz-U-PVB,,Progress 7K-TGM No.409,RU,RU,O,state -2011-012,2455656.43,2011-04-04,2011,Soyuz-FG,,Soyuz 11F732A17 No. 231,RU,RU,O,state -2011-017,2455679.05,2011-04-27,2011,Soyuz-U-PVB,,Progress 7K-TGM No.410,RU,RU,O,state -2011-023,2455720.34,2011-06-07,2011,Soyuz-FG,,Soyuz 11F732A47 No. 702,RU,RU,O,state -2011-027,2455734.11,2011-06-21,2011,Soyuz-U-PVB,,Progress 7K-TGM No.411,RU,RU,O,state -2011-033,2455755.6,2011-07-13,2011,Soyuz-2-1A,Fregat,Globalstar-2 FM7?,RU,RU,O,state -2011-062,2455864.92,2011-10-30,2011,Soyuz-U-PVB,,Progress 7K-TGM No.413,RU,RU,O,state -2011-067,2455879.68,2011-11-14,2011,Soyuz-FG,,Soyuz 11F732A17 No. 232,RU,RU,O,state -2011-078,2455917.05,2011-12-21,2011,Soyuz-FG,,Soyuz 11F732A47 No. 703,RU,RU,O,state -2011-080,2455924.21,2011-12-28,2011,Soyuz-2-1A,Fregat,Globalstar-2 FM13?,RU,RU,O,state -2012-004,2455952.46,2012-01-25,2012,Soyuz-U-PVB,,Progress 7K-TGM No.414,RU,RU,O,state -2012-015,2456038.04,2012-04-20,2012,Soyuz-U-PVB,,Progress 7K-TGM No.415,RU,RU,O,state -2012-022,2456062.63,2012-05-15,2012,Soyuz-FG,,Soyuz 11F732A47 No. 705,RU,RU,O,state -2012-037,2456123.61,2012-07-15,2012,Soyuz-FG,,Soyuz 11F732A47 No. 706,RU,RU,O,state -2012-039,2456130.78,2012-07-22,2012,Soyuz-FG,Fregat,Kanopus-V,RU,RU,O,state -2012-042,2456141.32,2012-08-01,2012,Soyuz-U-PVB,,Progress 7K-TGM No.416,RU,RU,O,state -2012-049,2456188.19,2012-09-17,2012,Soyuz-2-1A,Fregat,METOP B,RU,RU,O,state -2012-058,2456223.95,2012-10-23,2012,Soyuz-FG,,Soyuz 11F732A47 No. 707,RU,RU,O,state -2012-060,2456231.82,2012-10-31,2012,Soyuz-U-PVB,,Progress 7K-TGM No. 417,RU,RU,O,state -2012-074,2456281.01,2012-12-19,2012,Soyuz-FG,,Soyuz 11F732A47 No. 704A,RU,RU,O,state -2013-005,2456330.17,2013-02-06,2013,Soyuz-2-1A,Fregat,G lobalstar-2,RU,RU,O,state -2013-007,2456335.11,2013-02-11,2013,Soyuz-U-PVB,,Progress 7K-TGM No. 418,RU,RU,O,state -2013-013,2456380.36,2013-03-28,2013,Soyuz-FG,,Soyuz 11F732A47 No. 708,RU,RU,O,state -2013-015,2456401.92,2013-04-19,2013,Soyuz-2-1A,,Bion-M 12KSM No. 1,RU,RU,O,state -2013-017,2456406.93,2013-04-24,2013,Soyuz-U-PVB,,Progress 7K-TGM No. 419,RU,RU,O,state -2013-025,2456441.36,2013-05-28,2013,Soyuz-FG,,Soyuz 11F732A47 No. 709?,RU,RU,O,state -2013-030,2456469.23,2013-06-25,2013,Soyuz-2-1B,,Resurs-P No. 1,RU,RU,O,state -2013-039,2456501.36,2013-07-27,2013,Soyuz-U-PVB,,Progress 7K-TGM No. 420,RU,RU,O,state -2013-054,2456561.37,2013-09-25,2013,Soyuz-FG,,Soyuz 11F732A47 No. 710,RU,RU,O,state -2013-061,2456603.68,2013-11-07,2013,Soyuz-FG,,Soyuz 11F732A47 No. 711,RU,RU,O,state -2013-069,2456622.37,2013-11-25,2013,Soyuz-U-PVB,,Progress 7K-TGM No. 421,RU,RU,O,state -2014-005,2456694.18,2014-02-05,2014,Soyuz-U-PVB,,Progress 7K-TGM No. 422,RU,RU,O,state -2014-013,2456742.39,2014-03-25,2014,Soyuz-FG,,Soyuz 11F732A47 No. 712,RU,RU,O,state -2014-018,2456757.14,2014-04-09,2014,Soyuz-U-PVB,,Progress 7K-TGM No. 427,RU,RU,O,state -2014-021,2456764.18,2014-04-16,2014,Soyuz-U-PVB,,Egyptsat-2,RU,RU,O,state -2014-031,2456806.33,2014-05-28,2014,Soyuz-FG,,Soyuz 11F732A47 No. 713,RU,RU,O,state -2014-037,2456847.17,2014-07-08,2014,Soyuz-2-1B,Fregat,Meteor-M No. 2,RU,RU,O,state -2014-041,2456857.37,2014-07-18,2014,Soyuz-2-1A,,Foton-M No. 4,RU,RU,O,state -2014-042,2456862.41,2014-07-23,2014,Soyuz-U-PVB,,Progress 7K-TGM No. 423,RU,RU,O,state -2014-057,2456926.35,2014-09-25,2014,Soyuz-FG,,Soyuz 11F732A47 No. 714,RU,RU,O,state -2014-067,2456959.8,2014-10-29,2014,Soyuz-2-1A,,Progress 7K-TGM No. 424,RU,RU,O,state -2014-074,2456985.38,2014-11-23,2014,Soyuz-FG,,Soyuz 11F732A47 No. 715,RU,RU,O,state -2014-087,2457018.29,2014-12-26,2014,Soyuz-2-1B,,Resurs-P No. 2,RU,RU,O,state -2015-008,2457070.96,2015-02-17,2015,Soyuz-U-PVB,,Progress 7K-TGM No. 425,RU,RU,O,state -2015-016,2457109.32,2015-03-27,2015,Soyuz-FG,,Soyuz 11F732A47 No.716,RU,RU,O,state -2015-024,2457140.8,2015-04-28,2015,Soyuz-2-1A,,Progress 7K-TGM No. 426,RU,RU,O,state -2015-031,2457206.71,2015-07-03,2015,Soyuz-U-PVB,,Progress 7K-TGM No. 428,RU,RU,O,state -2015-035,2457226.38,2015-07-22,2015,Soyuz-FG,,Soyuz 11F732A47 No. 717,RU,RU,O,state -2015-043,2457267.69,2015-09-02,2015,Soyuz-FG,,Soyuz 11F732A47 No. 718,RU,RU,O,state -2015-055,2457297.2,2015-10-01,2015,Soyuz-U-PVB,,Progress 7K-TGM No. 429,RU,RU,O,state -2015-076,2457371.96,2015-12-15,2015,Soyuz-FG,,Soyuz 11F732A47 No. 719,RU,RU,O,state -2015-080,2457377.86,2015-12-21,2015,Soyuz-2-1A,,Progress 7K-TGM No. 431,RU,RU,O,state -2016-016,2457461.29,2016-03-13,2016,Soyuz-2-1B,,Resurs-P No. 3,RU,RU,O,state -2016-018,2457466.39,2016-03-18,2016,Soyuz-FG,,Soyuz 11F732A47 No. 720,RU,RU,O,state -2016-022,2457479.18,2016-03-31,2016,Soyuz-2-1A,,Progress 7K-TGM No. 432,RU,RU,O,state -2016-026,2457506.58,2016-04-28,2016,Soyuz-2-1A,Volga,Lomonosov/Aist-2D,RU,RU,O,state -2016-044,2457576.57,2016-07-07,2016,Soyuz-FG,,Soyuz 11F732A48 No. 731,RU,RU,O,state -2016-045,2457586.4,2016-07-16,2016,Soyuz-U-PVB,,Progress 7K-TGM No. 433,RU,RU,O,state -2016-063,2457680.84,2016-10-19,2016,Soyuz-FG,,Soyuz 11F732A48 No. 732,RU,RU,O,state -2016-070,2457710.35,2016-11-17,2016,Soyuz-FG,,Soyuz 11F732A48 No. 733,RU,RU,O,state -2017-010,2457806.75,2017-02-22,2017,Soyuz-U-PVB,,Progress 7K-TGM No. 435,RU,RU,O,state -2017-020,2457863.8,2017-04-20,2017,Soyuz-FG,,Soyuz 11F732A48 No. 735,RU,RU,O,state -2017-033,2457918.89,2017-06-14,2017,Soyuz-2-1A,,Progress 7K-TGM No. 436,RU,RU,O,state -2017-042,2457948.78,2017-07-14,2017,Soyuz-2-1A,Fregat,Kanopus-V-IK/Cubesats,RU,RU,O,state -2017-043,2457963.15,2017-07-28,2017,Soyuz-FG,,Soyuz 11F732A48 No. 736,RU,RU,O,state -2017-054,2458009.39,2017-09-12,2017,Soyuz-FG,,Soyuz 11F732A48 No. 734,RU,RU,O,state -2017-065,2458040.87,2017-10-14,2017,Soyuz-2-1A,,Progress 7K-TGM No. 437,RU,RU,O,state -2017-081,2458104.81,2017-12-17,2017,Soyuz-FG,,Soyuz 11F732A48 No. 737,RU,RU,O,state -2018-014,2458150.59,2018-02-01,2018,Soyuz-2-1A,Fregat,"Kanopus-V 3,4",RU,RU,O,state -2018-019,2458162.84,2018-02-13,2018,Soyuz-2-1A,,Progress 7K-TGM No. 438,RU,RU,O,state -2018-026,2458199.24,2018-03-21,2018,Soyuz-FG,,Soyuz 11F732A48 No. 738,RU,RU,O,state -2018-051,2458275.97,2018-06-06,2018,Soyuz-FG,,Soyuz 11F732A48 No. 739,RU,RU,O,state -2018-058,2458309.41,2018-07-09,2018,Soyuz-2-1A,,Progress 7K-TGM No. 439,RU,RU,O,state -2011-F03,2455798.04,2011-08-24,2011,Soyuz-U-PVB,,Progress 7K-TGM No.412,RU,RU,F,state -2016-F02,2457724.12,2016-12-01,2016,Soyuz-U-PVB,,Progress 7K-TGM No. 434,RU,RU,F,state -2017-F05,2458085.74,2017-11-28,2017,Soyuz-2-1B,Fregat,Meteor-M No. 2-1,RU,RU,F,state -2018-F01,2787120.86,2918-10-11,2018,Soyuz-FG,,Soyuz 11F732A48 No. 740,RU,RU,F,state -1990-065,2448098.31,1990-07-25,1990,Atlas I,,CRRES,GDCLS,US,O,private -1991-083,2448598.45,1991-12-07,1991,Atlas II,,Eutelsat II F-3,GDCLS,US,O,private -1992-006,2448663.53,1992-02-11,1992,Atlas II,,DSCS III B-14,GDCLS,US,O,private -1992-013,2448695.5,1992-03-14,1992,Atlas I,,Galaxy V,GDCLS,US,O,private -1992-032,2448783.5,1992-06-10,1992,Atlas IIA,,INTELSAT K,GDCLS,US,O,private -1992-037,2448806.41,1992-07-02,1992,Atlas II,,DSCS III B-12,GDCLS,US,O,private -1993-015,2449072.4,1993-03-25,1993,Atlas I,,UFO F1,GDCLS,US,O,private -1993-046,2449188.42,1993-07-19,1993,Atlas II,,DSCS III B-9,GDCLS,US,O,private -1993-056,2449233.97,1993-09-03,1993,Atlas I,,UFO F2,GDCLS,US,O,private -1993-074,2449320.49,1993-11-28,1993,Atlas II,,DSCS III B-10,GDCLS,US,O,private -1993-077,2449337.53,1993-12-16,1993,Atlas IIAS,,Telstar 401,GDCLS,US,O,private -1994-022,2449455.75,1994-04-13,1994,Atlas I,,GOES I,GDCLS,US,O,private -1991-F01,2448365.48,1991-04-18,1991,Atlas I,,BS-3H,GDCLS,US,F,private -1992-F02,2448857.44,1992-08-22,1992,Atlas I,,Galaxy IR,GDCLS,US,F,private -1996-021,2450182.46,1996-04-08,1996,Proton-K/DM-2M,DM3,Astra 1F,ILSK,RU,O,private -1997-026,2450593.21,1997-05-24,1997,Proton-K/DM-2M,DM4,Telstar 5,ILSK,RU,O,private -1997-046,2450688.52,1997-08-28,1997,Proton-K/DM-2M,DM3,PAS 5,ILSK,RU,O,private -1997-076,2450785.47,1997-12-02,1997,Proton-K/DM-2M,DM3,Astra 1G,ILSK,RU,O,private -1997-086,2450807.47,1997-12-24,1997,Proton-K/DM-2M,DM3,Asiasat 3,ILSK,RU,O,private -1998-028,2450941.49,1998-05-07,1998,Proton-K/DM-2M,DM3,Echostar 4,ILSK,RU,O,private -1998-050,2451055.52,1998-08-30,1998,Proton-K/DM-2M,DM3,Astra 2A,ILSK,RU,O,private -1998-065,2451121.72,1998-11-04,1998,Proton-K/DM-2M,DM3,PAS 8,ILSK,RU,O,private -1999-005,2451224.72,1999-02-15,1999,Proton-K/DM-2M,DM3,Telstar 6,ILSK,RU,O,private -1999-013,2451258.51,1999-03-21,1999,Proton-K/DM-2M,DM3,Asiasat 3S,ILSK,RU,O,private -1999-027,2451319.44,1999-05-20,1999,Proton-K/DM-2M,DM3,Telesat DTH-1,ILSK,RU,O,private -1999-033,2451347.58,1999-06-18,1999,Proton-K/DM-2M,DM3,Astra 1H,ILSK,RU,O,private -1999-053,2451448.44,1999-09-26,1999,Proton-K/DM-2M,DM3,LMI 1,ILSK,RU,O,private -2000-011,2451586.88,2000-02-12,2000,Proton-K/DM-2M,DM3,Garuda 1,ILSK,RU,O,private -2000-035,2451726.42,2000-06-30,2000,Proton-K/DM-2M,DM3,Sirius CD Radio 1,ILSK,RU,O,private -2000-051,2451792.91,2000-09-05,2000,Proton-K/DM-2M,DM3,Sirius CD Radio 2,ILSK,RU,O,private -2000-059,2451819.42,2000-10-01,2000,Proton-K/DM-2M,DM3,GE-1A,ILSK,RU,O,private -2000-067,2451839.42,2000-10-21,2000,Proton-K/DM-2M,DM3,GE 6,ILSK,RU,O,private -2000-077,2451879.33,2000-11-30,2000,Proton-K/DM-2M,DM3,Sirius CD Radio 3,ILSK,RU,O,private -2001-019,2452044.55,2001-05-15,2001,Proton-K/DM-2M,DM3,PAS 10,ILSK,RU,O,private -2001-025,2452076.58,2001-06-16,2001,Proton-K/DM-2M,DM3,Astra 2C,ILSK,RU,O,private -2002-016,2452364.23,2002-03-30,2002,Proton-K/DM-2M,DM3,INTELSAT 903,ILSK,RU,O,private -2002-023,2452402.21,2002-05-07,2002,Proton-K/DM-2M,DM3,DirecTV-5,ILSK,RU,O,private -2002-039,2452508.72,2002-08-22,2002,Proton-K/DM-2M,DM3,Echostar 8,ILSK,RU,O,private -2002-053,2452604.46,2002-11-25,2002,Proton-K/DM-2M,DM3,Astra 1K,ILSK,RU,O,private -2002-062,2452638.47,2002-12-29,2002,Proton-M/Briz-M,,Nimiq 2,ILSK,RU,O,private -2003-024,2452797.43,2003-06-06,2003,Proton-K/Briz-M,,Americom 9,ILSK,RU,O,private -2004-008,2453080.46,2004-03-15,2004,Proton-M/Briz-M,,Eutelsat W3A,ILSK,RU,O,private -2004-022,2453173.44,2004-06-16,2004,Proton-M/Briz-M,,INTELSAT 10-02,ILSK,RU,O,private -2004-031,2453222.44,2004-08-04,2004,Proton-M/Briz-M,,Amazonas,ILSK,RU,O,private -2004-041,2453293.39,2004-10-14,2004,Proton-M/Briz-M,,AMC-15,ILSK,RU,O,private -2004-043,2453308.42,2004-10-29,2004,Proton-K/DM-2M,DM-2M,Ekspress AM-1,ILSK,RU,O,private -2005-003,2453404.6,2005-02-03,2005,Proton-M/Briz-M,,Americom 12,ILSK,RU,O,private -2005-019,2453513.25,2005-05-22,2005,Proton-M/Briz-M,,DirecTV-8,ILSK,RU,O,private -2005-052,2453733.6,2005-12-29,2005,Proton-M/Briz-M,,Americom 23,ILSK,RU,O,private -2006-006,2453795.34,2006-02-28,2006,Proton-M/Briz-M,,Arabsat 4A,ILSK,RU,O,private -2006-032,2453952.41,2006-08-04,2006,Proton-M/Briz-M,,Hot Bird 8,ILSK,RU,O,private -2006-051,2454048.33,2006-11-08,2006,Proton-M/Briz-M,,Arabsat 4B,ILSK,RU,O,private -2006-056,2454081.48,2006-12-11,2006,Proton-M/Briz-M,,Measat,ILSK,RU,O,private -2007-009,2454200.45,2007-04-09,2007,Proton-M/Briz-M,,Anik F3,ILSK,RU,O,private -2007-032,2454288.55,2007-07-07,2007,Proton-M/Briz-M,,DirecTV 10,ILSK,RU,O,private -2007-057,2454422.44,2007-11-17,2007,Proton-M/Briz-M,,Sirius 4,ILSK,RU,O,private -2008-006,2454507.98,2008-02-11,2008,Proton-M/Briz-M,,Thor 5,ILSK,RU,O,private -2008-011,2454540.47,2008-03-14,2008,Proton-M/Briz-M,,Americom 14,ILSK,RU,O,private -2008-039,2454697.45,2008-08-18,2008,Proton-M/Briz-M,,INMARSAT 4 F3,ILSK,RU,O,private -2008-044,2454729.41,2008-09-19,2008,Proton-M/Briz-M,,Nimiq 4,ILSK,RU,O,private -2008-057,2454776.36,2008-11-05,2008,Proton-M/Briz-M,,Astra 1M,ILSK,RU,O,private -2008-063,2454811.07,2008-12-10,2008,Proton-M/Briz-M,,Ciel 2,ILSK,RU,O,private -2009-016,2454925.18,2009-04-03,2009,Proton-M/Briz-M,,Eutelsat W2A,ILSK,RU,O,private -2009-027,2454967.54,2009-05-16,2009,Proton-M/Briz-M,,Indostar II/Protostar II,ILSK,RU,O,private -2009-034,2455013.3,2009-06-30,2009,Proton-M/Briz-M,,Sirius CD Radio 5,ILSK,RU,O,private -2009-042,2455055.32,2009-08-11,2009,Proton-M/Briz-M,,Asiasat 5,ILSK,RU,O,private -2009-050,2455092.31,2009-09-17,2009,Proton-M/Briz-M,,Nimiq 5,ILSK,RU,O,private -2009-065,2455160.1,2009-11-24,2009,Proton-M/Briz-M,,Eutelsat W7,ILSK,RU,O,private -2009-075,2455194.52,2009-12-29,2009,Proton-M/Briz-M,,DirecTV-12,ILSK,RU,O,private -2010-006,2455239.53,2010-02-12,2010,Proton-M/Briz-M,,IS-16,ILSK,RU,O,private -2010-010,2455276.27,2010-03-20,2010,Proton-M/Briz-M,,Echostar 14,ILSK,RU,O,private -2010-016,2455310.97,2010-04-24,2010,Proton-M/Briz-M,,SES-1,ILSK,RU,O,private -2010-025,2455351.42,2010-06-03,2010,Proton-M/Briz-M,,Arabsat 5B,ILSK,RU,O,private -2010-034,2455388.28,2010-07-10,2010,Proton-M/Briz-M,,,ILSK,RU,O,private -2010-053,2455484.29,2010-10-14,2010,Proton-M/Briz-M,,,ILSK,RU,O,private -2010-061,2455515.23,2010-11-14,2010,Proton-M/Briz-M,,MSV 1,ILSK,RU,O,private -2010-069,2455557.41,2010-12-26,2010,Proton-M/Briz-M,,KA-Sat,ILSK,RU,O,private -2011-021,2455702.3,2011-05-20,2011,Proton-M/Briz-M,,Telstar 14R,ILSK,RU,O,private -2011-035,2455758.47,2011-07-15,2011,Proton-M/Briz-M,,SES-3,ILSK,RU,O,private -2011-054,2455834.27,2011-09-29,2011,Proton-M/Briz-M,,QuetzSat-1,ILSK,RU,O,private -2011-059,2455854.28,2011-10-19,2011,Proton-M/Briz-M,,ViaSat-1,ILSK,RU,O,private -2011-069,2455891.3,2011-11-25,2011,Proton-M/Briz-M,,Asiasat 7,ILSK,RU,O,private -2011-074,2455906.97,2011-12-11,2011,Proton-M/Briz-M,,Amos 5,ILSK,RU,O,private -2012-007,2455972.32,2012-02-14,2012,Proton-M/Briz-M,,SES-4,ILSK,RU,O,private -2012-011,2456012.01,2012-03-25,2012,Proton-M/Briz-M,,Intelsat IS-22,ILSK,RU,O,private -2012-016,2456041.43,2012-04-23,2012,Proton-M/Briz-M,,Yahsat 1B,ILSK,RU,O,private -2012-026,2456065.3,2012-05-17,2012,Proton-M/Briz-M,,Nimiq 6,ILSK,RU,O,private -2012-036,2456118.28,2012-07-09,2012,Proton-M/Briz-M,,Astra 4B ?,ILSK,RU,O,private -2012-057,2456214.86,2012-10-14,2012,Proton-M/Briz-M,,IS-23,ILSK,RU,O,private -2012-065,2456252.27,2012-11-20,2012,Proton-M/Briz-M,,Echostar 16,ILSK,RU,O,private -2012-070,2456270.05,2012-12-08,2012,Proton-M/Briz-M,,Yamal 402,ILSK,RU,O,private -2013-012,2456378.3,2013-03-26,2013,Proton-M/Briz-M,,Satmex 8,ILSK,RU,O,private -2013-014,2456398.27,2013-04-15,2013,Proton-M/Briz-M,,Anik G1,ILSK,RU,O,private -2013-022,2456427.17,2013-05-14,2013,Proton-M/Briz-M,,Eutelsat 3D,ILSK,RU,O,private -2013-026,2456446.89,2013-06-03,2013,Proton-M/Briz-M,,SES-6,ILSK,RU,O,private -2013-056,2456565.4,2013-09-29,2013,Proton-M/Briz-M,,Astra 2E,ILSK,RU,O,private -2013-058,2456591.26,2013-10-25,2013,Proton-M/Briz-M,,Sirius FM6,ILSK,RU,O,private -2013-073,2456635.01,2013-12-08,2013,Proton-M/Briz-M,,Inmarsat 5F1,ILSK,RU,O,private -2014-007,2456703.38,2014-02-14,2014,Proton-M/Briz-M,,Turksat 4A,ILSK,RU,O,private -2014-082,2457006.51,2014-12-15,2014,Proton-M/Briz-M,,Yamal-401,ILSK,RU,O,private -2014-089,2457019.4,2014-12-27,2014,Proton-M/Briz-M,,Astra 2G,ILSK,RU,O,private -2015-005,2457055.02,2015-02-01,2015,Proton-M/Briz-M,,Inmarsat 5F2,ILSK,RU,O,private -2015-042,2457262.99,2015-08-28,2015,Proton-M/Briz-M,,Inmarsat 5F3,ILSK,RU,O,private -2015-060,2457312.36,2015-10-16,2015,Proton-M/Briz-M,,Turksat 4B,ILSK,RU,O,private -2016-005,2457417.43,2016-01-29,2016,Proton-M/Briz-M,,Eutelsat 9B,ILSK,RU,O,private -2016-035,2457548.8,2016-06-09,2016,Proton-M/Briz-M,,Intelsat IS-31/DLA-2,ILSK,RU,O,private -2017-032,2457912.66,2017-06-08,2017,Proton-M/Briz-M,,Echostar 21,ILSK,RU,O,private -2017-053,2458008.31,2017-09-11,2017,Proton-M/Briz-M,,Amazonas 5,ILSK,RU,O,private -2017-057,2458025.29,2017-09-28,2017,Proton-M/Briz-M,,Asiasat 9,ILSK,RU,O,private -2007-F03,2454349.45,2007-09-05,2007,Proton-M/Briz-M,,JCSAT 11,ILSK,RU,F,private -2015-F01,2457158.74,2015-05-16,2015,Proton-M/Briz-M,,Mexsat-1,ILSK,RU,F,private -2000-022,2451667.8,2000-05-03,2000,Atlas IIA,,GOES L,ILSL,US,O,private -2000-028,2451689.47,2000-05-24,2000,Atlas 3A,,Eutelsat W4,ILSL,US,O,private -2000-034,2451726.04,2000-06-30,2000,Atlas IIA,,TDRS H,ILSL,US,O,private -2000-038,2451739.72,2000-07-14,2000,Atlas IIAS,,Echostar VI,ILSL,US,O,private -2000-065,2451837.53,2000-10-20,2000,Atlas IIA,,DSCS III B-11,ILSL,US,O,private -2000-080,2451884.62,2000-12-06,2000,Atlas IIAS,,QUASAR 13?,ILSL,US,O,private -2001-026,2452079.7,2001-06-19,2001,Atlas IIAS,,ICO 2,ILSL,US,O,private -2001-031,2452113.81,2001-07-23,2001,Atlas IIA,,GOES M,ILSL,US,O,private -2001-040,2452161.14,2001-09-08,2001,Atlas IIAS,,INTRUDER 5?,ILSL,US,O,private -2001-046,2452193.61,2001-10-11,2001,Atlas IIAS,,QUASAR 14?,ILSL,US,O,private -2002-006,2452327.03,2002-02-21,2002,Atlas 3B,DEC,Echostar 7,ILSL,US,O,private -2002-011,2452342.46,2002-03-08,2002,Atlas IIA,,TDRS I,ILSL,US,O,private -2002-038,2452508.42,2002-08-21,2002,Atlas V 401,,Eutelsat HB6,ILSL,US,O,private -2002-044,2452536.42,2002-09-18,2002,Atlas IIAS,,Hispasat 1D,ILSL,US,O,private -2002-055,2452613.61,2002-12-05,2002,Atlas IIA,,TDRS J,ILSL,US,O,private -2003-014,2452741.53,2003-04-12,2003,Atlas 3B,SEC,Asiasat 4,ILSL,US,O,private -2003-020,2452773.42,2003-05-13,2003,Atlas V 401,,Hellas Sat 2,ILSL,US,O,private -2003-033,2452838.49,2003-07-17,2003,Atlas V 521,,Rainbow 1,ILSL,US,O,private -2003-054,2452975.92,2003-12-02,2003,Atlas IIAS,,INTRUDER 6?,ILSL,US,O,private -2003-057,2452991.6,2003-12-18,2003,Atlas 3B,SEC,UHF F/O F11,ILSL,US,O,private -2004-003,2453041.49,2004-02-05,2004,Atlas IIAS,,AMC-10,ILSL,US,O,private -2004-007,2453077.74,2004-03-13,2004,Atlas 3A,,MBSAT,ILSL,US,O,private -2004-011,2453111.53,2004-04-16,2004,Atlas IIAS,,Superbird 6,ILSL,US,O,private -2004-017,2453145.43,2004-05-19,2004,Atlas IIAS,,Americom 11,ILSL,US,O,private -2004-034,2453249.47,2004-08-31,2004,Atlas IIAS,,QUASAR 15?,ILSL,US,O,private -2004-048,2453357,2004-12-17,2004,Atlas V 521,,AMC 16,ILSL,US,O,private -2005-004,2453404.82,2005-02-03,2005,Atlas 3B,SEC,INTRUDER 7,ILSL,US,O,private -2005-009,2453441.4,2005-03-11,2005,Atlas V 431,,INMARSAT 4 F1,ILSL,US,O,private -2005-029,2453594.99,2005-08-12,2005,Atlas V 401,,MRO,ILSL,US,O,private -2006-001,2453755.29,2006-01-19,2006,Atlas V 551,,New Horizons,ILSL,US,O,private -2006-012,2453846.35,2006-04-20,2006,Atlas V 411,,Astra 1KR,ILSL,US,O,private -2009-004,2454865.27,2009-02-02,2009,Safir,,,IR,IR,O,state -2011-025,2455727.89,2011-06-15,2011,Safir,,,IR,IR,O,state -2012-005,2455960.5,2012-02-03,2012,Safir,,Navid,IR,IR,O,state -2015-006,2457055.87,2015-02-02,2015,Safir,,Fajr,IR,IR,O,state -2008-F02,2454695.31,2008-08-16,2008,Safir,,,IR,IR,F,state -2012-F02,2456070.5,,2012,Safir,,Fajr,IR,IR,F,state -2012-F03,2456192.5,,2012,Safir,,Fajr,IR,IR,F,state -2017-F04,2457961.9,2017-07-27,2017,Simorgh,,,IR,IR,F,state -1988-087,2447423.9,1988-09-19,1988,Shaviyt,,'Ofeq-1,IL,IL,O,state -1990-027,2447985,1990-04-03,1990,Shaviyt,,'Ofeq-2,IL,IL,O,state -1995-018,2449812.97,1995-04-05,1995,Shaviyt 1,,'Ofeq-3,IL,IL,O,state -2002-025,2452423.14,2002-05-28,2002,Shaviyt 1,,'Ofeq-5,IL,IL,O,state -2007-025,2454262.49,2007-06-10,2007,Shaviyt 1,,'Ofeq-7,IL,IL,O,state -2010-031,2455370.29,2010-06-22,2010,Shaviyt 1,,'Ofeq-9,IL,IL,O,state -2014-019,2456757.3,2014-04-09,2014,Shaviyt 1,,'Ofeq-10,IL,IL,O,state -2016-056,2457645.11,2016-09-13,2016,Shaviyt 1,,'Ofeq-11,IL,IL,O,state -1998-F01,2450836.04,1998-01-22,1998,Shaviyt 1,,EROS A,IL,IL,F,state -2004-F01,2453254.95,2004-09-06,2004,Shaviyt 1,,'Ofeq-6,IL,IL,F,state -1970-011,2440628.68,1970-02-11,1970,Lambda 4S,,L-4S-5,J,J,O,state -1971-011,2440998.67,1971-02-16,1971,Mu-4S,,MS-T1,J,J,O,state -1971-080,2441222.67,1971-09-28,1971,Mu-4S,,MS-F2,J,J,O,state -1972-064,2441548.61,1972-08-19,1972,Mu-4S,,REXS,J,J,O,state -1974-008,2442094.71,1974-02-16,1974,Mu-3C,,MS-T2,J,J,O,state -1975-014,2442467.73,1975-02-24,1975,Mu-3C,,SRATS,J,J,O,state -1977-012,2443193.72,1977-02-19,1977,Mu-3H,,MS-T3,J,J,O,state -1978-014,2443543.79,1978-02-04,1978,Mu-3H,,EXOS-A,J,J,O,state -1978-087,2443767.71,1978-09-16,1978,Mu-3H,,EXOS-B,J,J,O,state -1979-014,2443925.71,1979-02-21,1979,Mu-3C,,CORSA-b,J,J,O,state -1980-015,2444286.53,1980-02-17,1980,Mu-3S,,MS-T4,J,J,O,state -1981-017,2444656.52,1981-02-21,1981,Mu-3S,,ASTRO-A,J,J,O,state -1983-011,2445385.72,1983-02-20,1983,Mu-3S,,ASTRO-B,J,J,O,state -1984-015,2445744.83,1984-02-14,1984,Mu-3S,,EXOS-C,J,J,O,state -1985-001,2446073.31,1985-01-07,1985,Mu-3S-II,,MS-T5,J,J,O,state -1985-073,2446296.48,1985-08-18,1985,Mu-3S-II,,PLANET-A,J,J,O,state -1987-012,2446831.77,1987-02-05,1987,Mu-3S-II,,ASTRO-C,J,J,O,state -1989-016,2447579.48,1989-02-21,1989,Mu-3S-II,,EXOS-D,J,J,O,state -1990-007,2447915.99,1990-01-24,1990,Mu-3S-II,,MUSES-A,J,J,O,state -1991-062,2448498.6,1991-08-30,1991,Mu-3S-II,,SOLAR-A,J,J,O,state -1993-011,2449038.6,1993-02-20,1993,Mu-3S-II,,ASTRO-D,J,J,O,state -1997-005,2450491.7,1997-02-12,1997,M-V,,MUSES-B,J,J,O,state -1998-041,2450998.26,1998-07-03,1998,M-V,,Planet B,J,J,O,state -2003-019,2452768.69,2003-05-09,2003,M-V,1,MUSES C,J,J,O,state -2005-025,2453561.65,2005-07-10,2005,M-V,1,ASTRO-E2,J,J,O,state -2006-005,2453788.39,2006-02-21,2006,M-V,1,ASTRO-F,J,J,O,state -2006-041,2454001.4,2006-09-22,2006,M-V,1,SOLAR-B,J,J,O,state -1966-F10,2439394.62,1966-09-26,1966,Lambda 4S,,L-4S-1,J,J,F,state -1966-F13,2439479.6,1966-12-20,1966,Lambda 4S,,L-4S-2,J,J,F,state -1967-F03,2439593.61,1967-04-13,1967,Lambda 4S,,L-4S-3,J,J,F,state -1969-F13,2440486.59,1969-09-22,1969,Lambda 4S,,L-4S-4,J,J,F,state -1970-F08,2440854.71,1970-09-25,1970,Mu-4S,,MS-F1,J,J,F,state -1976-F01,2442812.75,1976-02-04,1976,Mu-3C,,CORSA,J,J,F,state -1980-062,2444438.61,1980-07-18,1980,SLV-3,,Rohini RS-1,IN,IN,O,state -1981-051,2444755.71,1981-05-31,1981,SLV-3,,Rohini RS-D-1,IN,IN,O,state -1983-033,2445441.74,1983-04-17,1983,SLV-3,D4,Rohini RS-D-2,IN,IN,O,state -1992-028,2448762.52,1992-05-20,1992,ASLV,,SROSS-C,IN,IN,O,state -1994-027,2449476.5,1994-05-04,1994,ASLV,,SROSS-C2,IN,IN,O,state -1994-068,2449640.71,1994-10-15,1994,PSLV,,IRS-P2,IN,IN,O,state -1996-017,2450163.7,1996-03-21,1996,PSLV,,IRS-P3,IN,IN,O,state -1997-057,2450720.7,1997-09-29,1997,PSLV,C,IRS-1D,IN,IN,O,state -1999-029,2451324.77,1999-05-26,1999,PSLV,C,KITSAT-3,IN,IN,O,state -2001-015,2452017.93,2001-04-18,2001,GSLV Mk I,a,GSAT-1,IN,IN,O,state -2001-049,2452204.7,2001-10-22,2001,PSLV,C,TES,IN,IN,O,state -2002-043,2452529.93,2002-09-12,2002,PSLV,C,METSAT-1,IN,IN,O,state -2003-018,2452767.98,2003-05-08,2003,GSLV Mk I,a,GSAT-2,IN,IN,O,state -2003-046,2452929.7,2003-10-17,2003,PSLV,C,IRS-P6,IN,IN,O,state -2004-036,2453268.94,2004-09-20,2004,GSLV Mk I,b,GSAT-3,IN,IN,O,state -2005-017,2453495.7,2005-05-05,2005,PSLV,C,Cartosat-1,IN,IN,O,state -2007-001,2454110.66,2007-01-10,2007,PSLV,C,LAPAN-TUBSAT,IN,IN,O,state -2007-013,2454213.92,2007-04-23,2007,PSLV,CA,AGILE,IN,IN,O,state -2007-037,2454346.04,2007-09-02,2007,GSLV Mk I,b,INSAT 4CR,IN,IN,O,state -2008-002,2454486.66,2008-01-21,2008,PSLV,CA,TecSAR-1,IN,IN,O,state -2008-021,2454584.66,2008-04-28,2008,PSLV,CA,Cartosat-2A,IN,IN,O,state -2008-052,2454761.54,2008-10-22,2008,PSLV-XL,,Chandrayaan-1,IN,IN,O,state -2009-019,2454941.55,2009-04-20,2009,PSLV,CA,TecSAR-2,IN,IN,O,state -2009-051,2455097.76,2009-09-23,2009,PSLV,CA,IRS Oceansat-2,IN,IN,O,state -2010-035,2455389.66,2010-07-12,2010,PSLV,CA,Cartosat-2B,IN,IN,O,state -2011-015,2455671.7,2011-04-20,2011,PSLV,C,Resourcesat-2,IN,IN,O,state -2011-034,2455757.97,2011-07-15,2011,PSLV-XL,,GSAT-12,IN,IN,O,state -2011-058,2455846.73,2011-10-12,2011,PSLV,CA,Megha-Tropiques,IN,IN,O,state -2012-017,2456043.51,2012-04-26,2012,PSLV-XL,,RISAT-1,IN,IN,O,state -2012-047,2456179.68,2012-09-09,2012,PSLV,CA,SPOT 6,IN,IN,O,state -2013-009,2456349.02,2013-02-25,2013,PSLV,CA,SARAL/Sapphire,IN,IN,O,state -2013-034,2456475.26,2013-07-01,2013,PSLV-XL,,IRNSS-1A,IN,IN,O,state -2013-060,2456601.88,2013-11-05,2013,PSLV-XL,,Mars Orbiter Spacecraft,IN,IN,O,state -2014-001,2456662.95,2014-01-05,2014,GSLV Mk II,,GSAT-14,IN,IN,O,state -2014-017,2456751.99,2014-04-04,2014,PSLV-XL,,IRNSS-1B,IN,IN,O,state -2014-034,2456838.68,2014-06-30,2014,PSLV,CA,SPOT-7,IN,IN,O,state -2014-061,2456946.33,2014-10-15,2014,PSLV-XL,,IRNSS-1C,IN,IN,O,state -2015-018,2457109.99,2015-03-28,2015,PSLV-XL,,IRNSS-1D,IN,IN,O,state -2015-032,2457214.19,2015-07-10,2015,PSLV-XL,,DMC3,IN,IN,O,state -2015-041,2457261.97,2015-08-27,2015,GSLV Mk II,,GSAT-6,IN,IN,O,state -2015-052,2457293.69,2015-09-28,2015,PSLV-XL,,ASTROSAT,IN,IN,O,state -2015-077,2457373.02,2015-12-16,2015,PSLV,CA,TeLEOS-1,IN,IN,O,state -2016-003,2457407.67,2016-01-20,2016,PSLV-XL,,IRNSS-1E,IN,IN,O,state -2016-015,2457457.94,2016-03-10,2016,PSLV-XL,,IRNSS-1F,IN,IN,O,state -2016-027,2457506.81,2016-04-28,2016,PSLV-XL,,IRNSS-1G,IN,IN,O,state -2016-040,2457561.66,2016-06-22,2016,PSLV-XL,,Cartosat-2C,IN,IN,O,state -2016-054,2457639.97,2016-09-08,2016,GSLV Mk II,,Insat-3DR,IN,IN,O,state -2016-059,2457657.65,2016-09-26,2016,PSLV,C,Scatsat-1,IN,IN,O,state -2016-074,2457729.7,2016-12-07,2016,PSLV-XL,,Resourcesat-2A,IN,IN,O,state -2017-008,2457799.67,2017-02-15,2017,PSLV-XL,,Cartosat-2D,IN,IN,O,state -2017-024,2457878.98,2017-05-05,2017,GSLV Mk II,,GSAT-9,IN,IN,O,state -2017-031,2457910,2017-06-05,2017,GSLV Mk III,,GSAT-19,IN,IN,O,state -2017-036,2457927.67,2017-06-23,2017,PSLV-XL,,Cartosat-2E,IN,IN,O,state -2017-051,2457997.06,2017-08-31,2017,PSLV-XL,,IRNSS-1H,IN,IN,O,state -2018-004,2458130.67,2018-01-12,2018,PSLV-XL,,Cartosat-2ER,IN,IN,O,state -2018-027,2458206.98,2018-03-29,2018,GSLV Mk II,b,GSAT-6A,IN,IN,O,state -2018-035,2458220.44,2018-04-11,2018,PSLV-XL,,IRNSS-1I,IN,IN,O,state -2018-071,2458378.19,2018-09-16,2018,PSLV,CA,NovaSar-S/S1-4,IN,IN,O,state -1979-F03,2444095.6,1979-08-10,1979,SLV-3,,Rohini RS-1,IN,IN,F,state -1987-F01,2446878.78,1987-03-24,1987,ASLV,,SROSS-A,IN,IN,F,state -1988-F03,2447355.89,1988-07-13,1988,ASLV,,SROSS-B,IN,IN,F,state -1993-F03,2449250.72,1993-09-20,1993,PSLV,,IRS-1E,IN,IN,F,state -2006-F02,2453927.01,2006-07-10,2006,GSLV Mk I,b,Insat 4C,IN,IN,F,state -2010-F01,2455301.96,2010-04-15,2010,GSLV Mk II,,GSAT-4,IN,IN,F,state -2010-F04,2455555.94,2010-12-25,2010,GSLV Mk I,c,GSAT-5 Prime,IN,IN,F,state -2009-048,2455085.21,2009-09-10,2009,H-IIB,,HTV 1 Gijutso jissho-ki,J,J,O,state -2011-003,2455583.73,2011-01-22,2011,H-IIB,,HTV 2,J,J,O,state -2012-038,2456129.59,2012-07-21,2012,H-IIB,,HTV 3,J,J,O,state -2013-049,2456549.71,2013-09-14,2013,Epsilon,,,J,J,O,state -2016-080,2457742.96,2016-12-20,2016,Epsilon,,,J,J,O,state -2018-007,2458136.38,2018-01-17,2018,Epsilon,,,J,J,O,state -2018-016,2458152.71,2018-02-03,2018,SS-520,4,TRICOM-1R,J,J,O,state -2017-F01,2457768.48,2017-01-14,2017,SS-520,4,TRICOM-1,J,J,F,state -2013-003,2456322.79,2013-01-30,2013,Naro-1,,STSat-2C,KR,KR,O,state -2009-F03,2455068.83,2009-08-25,2009,Naro-1,,STSat-2,KR,KR,F,state -2010-F02,2455357.83,2010-06-10,2010,Naro-1,,STSat-2B,KR,KR,F,state -2012-072,2456273.53,2012-12-12,2012,Unha-3,,KMS-3 Unit 2,KP,KP,O,state -1998-F04,2451056.63,1998-08-31,1998,Paektusan 1,,,KP,KP,F,state -2009-F02,2454926.6,2009-04-05,2009,Unha-2,,,KP,KP,F,state -2012-F01,2456030.44,2012-04-12,2012,Unha-3,,,KP,KP,F,state -1999-047,2451428.19,1999-09-06,1999,Proton-K/DM-2M,DM-2M,Yamal-100 No. 2,RU,RU,O,state -2000-013,2451615.67,2000-03-12,2000,Proton-K/DM-2M,DM-2M,Ekspress A No. 2,RU,RU,O,state -2000-019,2451652.38,2000-04-17,2000,Proton-K/DM-2M,DM-2M,SESAT,RU,RU,O,state -2000-029,2451701.62,2000-06-06,2000,Proton-K/Briz-M,,Gorizont No. 45L,RU,RU,O,state -2000-031,2451719.52,2000-06-24,2000,Proton-K/DM-2M,DM-2M,Ekspress-A No. 3,RU,RU,O,state -2000-036,2451730.49,2000-07-04,2000,Proton-K/DM-2,,Geizer No. 22L,RU,RU,O,state -2000-037,2451737.71,2000-07-12,2000,Proton-K,,77KSM No. 128-01,RU,RU,O,state -2000-049,2451785.34,2000-08-28,2000,Proton-K/DM-2,,Globus No. 16L,RU,RU,O,state -2000-063,2451831.09,2000-10-13,2000,Proton-K/DM-2,,Uragan No. 83L,RU,RU,O,state -2001-014,2452006.66,2001-04-07,2001,Proton-M/Briz-M,,Ekran-M No. 18L,RU,RU,O,state -2001-037,2452146.36,2001-08-24,2001,Proton-K/DM-2,,Oko-1 No. 7124,RU,RU,O,state -2001-045,2452189.2,2001-10-06,2001,Proton-K/DM-2,,Globus No. 14L,RU,RU,O,state -2001-053,2452245.25,2001-12-01,2001,Proton-K/DM-2,,Uragan-M No. 711,RU,RU,O,state -2002-029,2452435.55,2002-06-10,2002,Proton-K/DM-2M,DM-2M,Ekspress-A No. 4,RU,RU,O,state -2002-037,2452481.13,2002-07-25,2002,Proton-K/17S40,DM-5,Arkon 11F664 No. 2?,RU,RU,O,state -2002-048,2452564.7,2002-10-17,2002,Proton-K/17S40,DM2,Integral,RU,RU,O,state -2002-060,2452633.82,2002-12-25,2002,Proton-K/DM-2M,DM-2M,Uragan No. 791,RU,RU,O,state -2003-015,2452753.68,2003-04-24,2003,Proton-K/DM-2,,Oko-1 No. 7126,RU,RU,O,state -2003-053,2452967.77,2003-11-24,2003,Proton-K/DM-2M,DM-2M,Yamal-201/202,RU,RU,O,state -2003-056,2452984.24,2003-12-10,2003,Proton-K/Briz-M,,Uragan 794,RU,RU,O,state -2003-060,2453002.46,2003-12-28,2003,Proton-K/DM-2M,DM-2M,Sesat-2,RU,RU,O,state -2004-010,2453091.65,2004-03-27,2004,Proton-K/DM-2,,Globus No. 17L,RU,RU,O,state -2004-015,2453122.36,2004-04-26,2004,Proton-K/DM-2M,DM-2M,Ekspress AM-11,RU,RU,O,state -2004-053,2453366.08,2004-12-26,2004,Proton-K/DM-2,,Uragan No. 796,RU,RU,O,state -2005-010,2453459.4,2005-03-29,2005,Proton-K/DM-2M,DM-2M,Ekspress AM-2,RU,RU,O,state -2005-023,2453546.32,2005-06-24,2005,Proton-K/DM-2,,Ekspress AM-3,RU,RU,O,state -2005-036,2453622.41,2005-09-08,2005,Proton-M/Briz-M,,Anik F1R,RU,RU,O,state -2005-050,2453729.71,2005-12-25,2005,Proton-K/DM-2,,Uragan No. 798,RU,RU,O,state -2006-022,2453904.45,2006-06-17,2006,Proton-K/DM-2M,DM3,Kazsat 78KS,RU,RU,O,state -2006-062,2454095.35,2006-12-25,2006,Proton-K/DM-2,,Uragan-M No. 715,RU,RU,O,state -2007-052,2454399.82,2007-10-26,2007,Proton-K/DM-2,,Uragan-M No. 718,RU,RU,O,state -2007-058,2454443.51,2007-12-09,2007,Proton-M/Briz-M,,Globus-1M No. 11L,RU,RU,O,state -2007-065,2454460.31,2007-12-25,2007,Proton-M/DM-2,,Uragan-M No. 721,RU,RU,O,state -2008-003,2454493.51,2008-01-28,2008,Proton-M/Briz-M,,Ekspress AM-33,RU,RU,O,state -2008-033,2454644.5,2008-06-26,2008,Proton-K/DM-2,,Oko-1 No. 7127,RU,RU,O,state -2008-046,2454734.87,2008-09-25,2008,Proton-M/DM-2,,Uragan-M No. 724,RU,RU,O,state -2008-067,2454825.95,2008-12-25,2008,Proton-M/DM-2,,Uragan-M No. 727,RU,RU,O,state -2009-007,2454873.5,2009-02-11,2009,Proton-M/Briz-M,,Ekspress AM-44,RU,RU,O,state -2009-010,2454890.67,2009-02-28,2009,Proton-K/DM-2,,Globus No. 18L,RU,RU,O,state -2009-070,2455179.94,2009-12-14,2009,Proton-M/DM-2,,Uragan-M No. 730,RU,RU,O,state -2010-002,2455224.51,2010-01-28,2010,Proton-M/Briz-M,,Globus-1M No. 12L?,RU,RU,O,state -2010-007,2455257.39,2010-03-01,2010,Proton-M/DM-2,,Uragan-M No. 731,RU,RU,O,state -2010-041,2455441.54,2010-09-02,2010,Proton-M/DM-2,,Uragan-M No. 736,RU,RU,O,state -2011-045,2455791.39,2011-08-17,2011,Proton-M/Briz-M,,Ekspress AM-4,RU,RU,O,state -2011-048,2455825.45,2011-09-20,2011,Proton-M/Briz-M,,Garpun No. 1,RU,RU,O,state -2011-064,2455870.04,2011-11-04,2011,Proton-M/Briz-M,,Uragan-M No. 743,RU,RU,O,state -2012-012,2456016.74,2012-03-30,2012,Proton-K/DM-2,,Oko-1 No. 7128,RU,RU,O,state -2012-044,2456146.31,2012-08-06,2012,Proton-M/Briz-M,,Telkom-3,RU,RU,O,state -2012-061,2456234.38,2012-11-02,2012,Proton-M/Briz-M,,Luch-5B,RU,RU,O,state -2013-062,2456608.49,2013-11-11,2013,Proton-M/Briz-M,,Globus-1M No. 13L,RU,RU,O,state -2013-077,2456652.95,2013-12-26,2013,Proton-M/Briz-M,,Ekspress AM-5,RU,RU,O,state -2014-010,2456732.46,2014-03-15,2014,Proton-M/Briz-M,,Ekspress AT1/Exp. AT2,RU,RU,O,state -2014-023,2456775.68,2014-04-28,2014,Proton-M/Briz-M,,Luch-5V/Kazsat-3,RU,RU,O,state -2014-058,2456928.35,2014-09-27,2014,Proton-M/Briz-M,,Olymp-K,RU,RU,O,state -2014-064,2456952.13,2014-10-21,2014,Proton-M/Briz-M,,Ekspress AM-6,RU,RU,O,state -2014-085,2457014.75,2014-12-23,2014,Angara A5,,,RU,RU,O,state -2015-012,2457100.42,2015-03-18,2015,Proton-M/Briz-M,,Ekspress AM-7,RU,RU,O,state -2015-048,2457280.29,2015-09-14,2015,Proton-M/DM-3,,Ekspress AM-8,RU,RU,O,state -2015-075,2457369.51,2015-12-13,2015,Proton-M/Briz-M,,Garpun No. 12L,RU,RU,O,state -2015-082,2457381.4,2015-12-24,2015,Proton-M/Briz-M,,Ekspress-AMU1,RU,RU,O,state -2016-017,2457461.9,2016-03-14,2016,Proton-M/Briz-M,,ExoMars TGO/EDM,RU,RU,O,state -2017-046,2457982.42,2017-08-16,2017,Proton-M/Briz-M,,Blagovest 11L,RU,RU,O,state -2018-037,2458227.42,2018-04-18,2018,Proton-M/Briz-M,,Blagovest 21L,RU,RU,O,state -1999-F03,2451479.18,1999-10-27,1999,Proton-K/DM-2,,Ekspress-A No. R 001,RU,RU,F,state -2010-F03,2455535.93,2010-12-05,2010,Proton-M/DM-3,,Uragan-M No. 739,RU,RU,F,state -2013-F02,2456475.61,2013-07-02,2013,Proton-M/DM-3,,"Glonass-M 48,49,50",RU,RU,F,state -2014-F01,2456793.4,2014-05-15,2014,Proton-M/Briz-M,,Ekspress AM-4R,RU,RU,F,state -2001-022,2452059.25,2001-05-29,2001,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -2001-023,2452069.13,2001-06-08,2001,Kosmos 11K65M,,Parus,RU,RU,O,state -2001-030,2452110.51,2001-07-20,2001,Molniya 8K78M,ML,Molniya-3K No. 11?,RU,RU,O,state -2001-032,2452121.83,2001-07-31,2001,Tsiklon-3,,AUOS-SM-KF,RU,RU,O,state -2001-050,2452207.98,2001-10-25,2001,Molniya 8K78M,ML,Molniya-3 No. 64,RU,RU,O,state -2001-056,2452254.22,2001-12-10,2001,Zenit-2,,Meteor-3M 17F45 No. 101,RU,RU,O,state -2001-057,2452264.67,2001-12-21,2001,Tsiklon-2,,US-PU,RU,RU,O,state -2001-058,2452271.64,2001-12-28,2001,Tsiklon-3,,Strela-3,RU,RU,O,state -2002-008,2452331.23,2002-02-25,2002,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -2002-017,2452366.42,2002-04-01,2002,Molniya 8K78M,2BL,Oko US-KS,RU,RU,O,state -2002-026,2452423.26,2002-05-28,2002,Kosmos 11K65M,,Parus?,RU,RU,O,state -2002-036,2452463.77,2002-07-08,2002,Kosmos 11K65M,,Strela-3,RU,RU,O,state -2002-046,2452544.1,2002-09-26,2002,Kosmos 11K65M,,Nadezhda-M 17F118M No. 4,RU,RU,O,state -2002-054,2452606.75,2002-11-28,2002,Kosmos 11K65M,,DMC Alsat-1,RU,RU,O,state -2002-059,2452633.01,2002-12-24,2002,Molniya 8K78M,2BL,Oko US-KS,RU,RU,O,state -2003-011,2452731.58,2003-04-02,2003,Molniya 8K78M,2BL,Molniya-1T,RU,RU,O,state -2003-023,2452795.31,2003-06-04,2003,Kosmos 11K65M,,Parus?,RU,RU,O,state -2003-029,2452810.33,2003-06-19,2003,Molniya 8K78M,2BL,Molniya-3 No. 65?,RU,RU,O,state -2003-035,2452864.1,2003-08-12,2003,Soyuz-U-PVB,,Don,RU,RU,O,state -2003-037,2452870.95,2003-08-19,2003,Kosmos 11K65M,,Strela-3,RU,RU,O,state -2003-042,2452909.76,2003-09-27,2003,Kosmos 11K65M,,Mozhaets 4,RU,RU,O,state -2004-005,2453053.8,2004-02-18,2004,Molniya 8K78M,ML,Molniya-1T?,RU,RU,O,state -2004-020,2453153.75,2004-05-28,2004,Tsiklon-2,,US-PU,RU,RU,O,state -2004-021,2453166.56,2004-06-10,2004,Zenit-2,,Tselina-2,RU,RU,O,state -2004-028,2453209.24,2004-07-22,2004,Kosmos 11K65M,,Parus,RU,RU,O,state -2004-037,2453272.13,2004-09-23,2004,Kosmos 11K65M,,Strela-3,RU,RU,O,state -2004-038,2453273.2,2004-09-24,2004,Soyuz-U-PVB,,Kobal't-M,RU,RU,O,state -2004-052,2453363.97,2004-12-24,2004,Tsiklon-3,,Okean-O1 No. 9,RU,RU,O,state -2005-002,2453390.63,2005-01-20,2005,Kosmos 11K65M,,Parus?,RU,RU,O,state -2005-032,2453609.27,2005-08-26,2005,Rokot,,98M,RU,RU,O,state -2005-034,2453615.91,2005-09-02,2005,Soyuz-U-PVB,,Kometa No. 21?,RU,RU,O,state -2005-043,2453670.79,2005-10-27,2005,Kosmos 11K65M,,China-DMC,RU,RU,O,state -2005-048,2453726.32,2005-12-21,2005,Kosmos 11K65M,,Rodnik,RU,RU,O,state -2006-017,2453859.23,2006-05-03,2006,Soyuz-U-PVB,,Kobal't-M,RU,RU,O,state -2006-026,2453911.67,2006-06-25,2006,Tsiklon-2,,US-PU/Konus-A,RU,RU,O,state -2006-030,2453937.68,2006-07-21,2006,Molniya 8K78M,2BL,Oko US-KS?,RU,RU,O,state -2006-039,2453993.07,2006-09-14,2006,Soyuz-U-PVB,,Don,RU,RU,O,state -2006-060,2454089.08,2006-12-19,2006,Kosmos 11K65M,,SAR-Lupe 1,RU,RU,O,state -2006-061,2454093.86,2006-12-24,2006,Soyuz-2-1A,Fregat,Meridian No. 11L,RU,RU,O,state -2007-022,2454259.25,2007-06-07,2007,Soyuz-U-PVB,,Kobal't-M,RU,RU,O,state -2007-029,2454280.92,2007-06-29,2007,Zenit-2M,,Tselina-2,RU,RU,O,state -2007-030,2454284.32,2007-07-02,2007,Kosmos 11K65M,,SAR-Lupe 2,RU,RU,O,state -2007-038,2454355.05,2007-09-11,2007,Kosmos 11K65M,,Parus?,RU,RU,O,state -2007-049,2454396.69,2007-10-23,2007,Molniya 8K78M,2BL,Oko US-KS,RU,RU,O,state -2007-053,2454405.54,2007-11-01,2007,Kosmos 11K65M,,SAR-Lupe 3,RU,RU,O,state -2008-014,2454553.22,2008-03-27,2008,Kosmos 11K65M,,SAR-Lupe 4,RU,RU,O,state -2008-025,2454610.14,2008-05-23,2008,Rokot,,Yubileyniy,RU,RU,O,state -2008-031,2454636.78,2008-06-19,2008,Kosmos 11K65M,,Orbcomm FM38,RU,RU,O,state -2008-036,2454669.61,2008-07-22,2008,Kosmos 11K65M,,SAR-Lupe 5,RU,RU,O,state -2008-037,2454674.27,2008-07-26,2008,Soyuz-2-1B,,Persona No. 1,RU,RU,O,state -2008-058,2454785.16,2008-11-14,2008,Soyuz-U-PVB,,Kobal't-M,RU,RU,O,state -2008-062,2454802.71,2008-12-02,2008,Molniya 8K78M,2BL,Oko US-KS?,RU,RU,O,state -2009-003,2454862.06,2009-01-30,2009,Tsiklon-3,,Koronas-Foton,RU,RU,O,state -2009-022,2454951.21,2009-04-29,2009,Soyuz-U-PVB,,Kobal't-M,RU,RU,O,state -2009-029,2454973.41,2009-05-21,2009,Soyuz-2-1A,Fregat,Meridian No. 12,RU,RU,O,state -2009-036,2455018.56,2009-07-06,2009,Rokot,,Strela-3,RU,RU,O,state -2009-039,2455033.67,2009-07-21,2009,Kosmos 11K65M,,Parus,RU,RU,O,state -2009-063,2455155.95,2009-11-20,2009,Soyuz-U-PVB,,Lotos-S No. 801,RU,RU,O,state -2010-014,2455303.12,2010-04-16,2010,Soyuz-U-PVB,,Kobal't-M,RU,RU,O,state -2010-017,2455313.55,2010-04-27,2010,Kosmos 11K65M,,Parus?,RU,RU,O,state -2010-043,2455447.65,2010-09-08,2010,Rokot,,Gonets-M No. 12,RU,RU,O,state -2010-049,2455470.21,2010-09-30,2010,Molniya 8K78M,2BL,Oko US-KS?,RU,RU,O,state -2010-058,2455502.54,2010-11-02,2010,Soyuz-2-1A,Fregat,Meridian No. 13L,RU,RU,O,state -2011-005,2455594.08,2011-02-01,2011,Rokot,,Musson-2 No. 11,RU,RU,O,state -2011-009,2455618.63,2011-02-26,2011,Soyuz-2-1B,Fregat,Uragan-K1 No. 11L,RU,RU,O,state -2011-018,2455686.24,2011-05-04,2011,Soyuz-2-1A,Fregat,Meridian No. 14L,RU,RU,O,state -2011-028,2455740.17,2011-06-27,2011,Soyuz-U-PVB,,Kobal't-M,RU,RU,O,state -2011-055,2455837.34,2011-10-02,2011,Soyuz-2-1B,Fregat,Uragan-M No. 742,RU,RU,O,state -2012-041,2456136.57,2012-07-28,2012,Rokot,,Strela-3M,RU,RU,O,state -2013-001,2456308.18,2013-01-15,2013,Rokot,,Strela-3M,RU,RU,O,state -2013-048,2456547.47,2013-09-11,2013,Rokot,,Gonets-M No. 14/16/17,RU,RU,O,state -2013-076,2456651.52,2013-12-25,2013,Rokot,,Rodnik,RU,RU,O,state -2014-028,2456800.73,2014-05-23,2014,Rokot,,Rodnik,RU,RU,O,state -2014-036,2456842.03,2014-07-03,2014,Rokot,,Gonets-M No.18/19/20,RU,RU,O,state -2015-020,2457113.07,2015-03-31,2015,Rokot,,Gonets-M,RU,RU,O,state -2015-050,2457289.42,2015-09-23,2015,Rokot,,Rodnik,RU,RU,O,state -2016-034,2457544.08,2016-06-04,2016,Rokot,,Musson-2 No. 12,RU,RU,O,state -2005-F01,2453542.53,2005-06-21,2005,Molniya 8K78M,ML,Molniya-3K No. 12L,RU,RU,F,state -1995-013,2449798.76,1995-03-22,1995,Atlas IIAS,,INTELSAT 705,LMA,US,O,private -1995-019,2449815.49,1995-04-07,1995,Atlas IIA,,AMSC 1,LMA,US,O,private -1995-025,2449860.74,1995-05-23,1995,Atlas I,,GOES J,LMA,US,O,private -1995-027,2449869.14,1995-05-31,1995,Atlas II,,UHF F/O F5-EHF,LMA,US,O,private -1995-038,2449930.48,1995-07-31,1995,Atlas IIA,,DSCS III B-7,LMA,US,O,private -1995-043,2449958.54,1995-08-29,1995,Atlas IIAS,,JCSAT 3,LMA,US,O,private -1995-057,2450012.83,1995-10-22,1995,Atlas II,,UFO F6-EHF,LMA,US,O,private -1995-065,2450053.84,1995-12-02,1995,Atlas IIAS,,SOHO,LMA,US,O,private -1995-069,2450066.52,1995-12-15,1995,Atlas IIA,,Galaxy 3R,LMA,US,O,private -1996-006,2450114.55,1996-02-01,1996,Atlas IIAS,,Palapa C1,LMA,US,O,private -1996-020,2450177.46,1996-04-03,1996,Atlas IIA,,INMARSAT III F-1,LMA,US,O,private -1996-027,2450203.69,1996-04-30,1996,Atlas I,,SAX,LMA,US,O,private -1996-042,2450290.03,1996-07-25,1996,Atlas II,,UFO F7-EHF,LMA,US,O,private -1996-054,2450335.41,1996-09-08,1996,Atlas IIA,,GE 1,LMA,US,O,private -1996-067,2450409.37,1996-11-21,1996,Atlas IIA,,Eutelsat HB2,LMA,US,O,private -1996-070,2450435.58,1996-12-18,1996,Atlas IIA,,INMARSAT III F3,LMA,US,O,private -1997-007,2450496.57,1997-02-17,1997,Atlas IIAS,,JCSAT 4,LMA,US,O,private -1997-011,2450515.75,1997-03-08,1997,Atlas IIA,,Tempo 2,LMA,US,O,private -1997-019,2450563.74,1997-04-25,1997,Atlas I,,GOES K,LMA,US,O,private -1997-036,2450657.55,1997-07-28,1997,Atlas IIAS,,Superbird C,LMA,US,O,private -1997-044,2450683.79,1997-08-23,1997,LMLV-1,,SSTI/Lewis,LMA,US,O,private -1997-050,2450696,1997-09-04,1997,Atlas IIAS,,GE 3,LMA,US,O,private -1997-059,2450727.38,1997-10-05,1997,Atlas IIAS,,Echostar 3,LMA,US,O,private -1997-065,2450746.53,1997-10-25,1997,Atlas IIA,,DSCS III B-13,LMA,US,O,private -1997-078,2450791.49,1997-12-08,1997,Atlas IIAS,,Galaxy 8-i,LMA,US,O,private -1998-001,2450820.6,1998-01-07,1998,Athena-2,,LP,LMA,US,O,private -1998-005,2450843.28,1998-01-29,1998,Atlas IIA,,QUASAR 12?,LMA,US,O,private -1998-014,2450872.51,1998-02-28,1998,Atlas IIAS,,INTELSAT 806,LMA,US,O,private -1998-016,2450889.4,1998-03-16,1998,Atlas II,,UFO F8,LMA,US,O,private -1998-037,2450983.45,1998-06-18,1998,Atlas IIAS,,INTELSAT 805,LMA,US,O,private -1998-057,2451096.45,1998-10-09,1998,Atlas IIA,,Eutelsat HB5,LMA,US,O,private -1998-058,2451106.8,1998-10-20,1998,Atlas IIA,,UFO F9,LMA,US,O,private -1999-002,2451205.52,1999-01-27,1999,Athena-1,,ROCSAT-1,LMA,US,O,private -1999-006,2451225.57,1999-02-16,1999,Atlas IIAS,,JCSAT 6,LMA,US,O,private -1999-018,2451281.45,1999-04-12,1999,Atlas IIAS,,Eutelsat W3,LMA,US,O,private -1999-050,2451444.75,1999-09-23,1999,Atlas IIAS,,Echostar 5,LMA,US,O,private -1999-051,2451446.26,1999-09-24,1999,Athena-2,,Ikonos 2,LMA,US,O,private -1999-063,2451505.67,1999-11-23,1999,Atlas IIA,,UFO 10,LMA,US,O,private -1999-068,2451531.29,1999-12-18,1999,Atlas IIAS,,EOS AM-1,LMA,US,O,private -2000-001,2451564.54,2000-01-21,2000,Atlas IIA,,DSCS III B-8,LMA,US,O,private -2000-007,2451578.48,2000-02-03,2000,Atlas IIAS,,Hispasat 1C,LMA,US,O,private -2001-043,2452182.61,2001-09-30,2001,Athena-1,,Starshine 3,LMA,US,O,private -1999-F01,2451296.27,1999-04-27,1999,Athena-2,,Ikonos 1,LMA,US,F,private -1995-F04,2449945.44,1995-08-15,1995,LLV-1,,Vitasat 1,LMSC,US,F,private -1989-013,2447572.27,1989-02-14,1989,Delta 6925,,Navstar GPS SVN 14,MDSSC,US,O,private -1989-026,2447610.41,1989-03-24,1989,Delta 3920-8,,Delta Star,MDSSC,US,O,private -1989-044,2447688.44,1989-06-10,1989,Delta 6925,,Navstar GPS SVN 13,MDSSC,US,O,private -1989-064,2447756.75,1989-08-18,1989,Delta 6925,,Navstar GPS SVN 16,MDSSC,US,O,private -1989-067,2447766.46,1989-08-27,1989,Delta 4925-8,,BSB R1,MDSSC,US,O,private -1989-085,2447820.9,1989-10-21,1989,Delta 6925,,Navstar GPS SVN 19,MDSSC,US,O,private -1989-097,2447872.26,1989-12-11,1989,Delta 6925,,Navstar GPS SVN 17,MDSSC,US,O,private -1990-103,2448222.4,1990-11-26,1990,Delta 7925,,Navstar GPS SVN 23,MDSSC,US,O,private -1990-008,2447916.45,1990-01-24,1990,Delta 6925,,Navstar GPS SVN 18,MDSSC,US,O,private -1990-015,2447937.18,1990-02-14,1990,Delta 6920-8,,LACE,MDSSC,US,O,private -1990-025,2447976.61,1990-03-26,1990,Delta 6925,,Navstar GPS SVN 20,MDSSC,US,O,private -1990-034,2447995.44,1990-04-13,1990,Delta 6925-8,,Palapa B2R,MDSSC,US,O,private -1990-049,2448044.41,1990-06-01,1990,Delta 6920-10,,ROSAT,MDSSC,US,O,private -1990-051,2448054.74,1990-06-12,1990,Delta 4925-8,,Insat 1D,MDSSC,US,O,private -1990-068,2448105.74,1990-08-02,1990,Delta 6925,,Navstar GPS SVN 21,MDSSC,US,O,private -1990-074,2448121.53,1990-08-18,1990,Delta 6925,,BSB R2,MDSSC,US,O,private -1990-088,2448166.41,1990-10-01,1990,Delta 6925,,Navstar GPS SVN 15,MDSSC,US,O,private -1990-093,2448195.47,1990-10-30,1990,Delta 6925,,INMARSAT II F-1,MDSSC,US,O,private -1991-001,2448264.54,1991-01-08,1991,Delta 7925,,NATO 4A,MDSSC,US,O,private -1991-018,2448324.46,1991-03-08,1991,Delta 6925,,INMARSAT II F-2,MDSSC,US,O,private -1991-028,2448359.51,1991-04-13,1991,Delta 7925,,ASC 2,MDSSC,US,O,private -1991-037,2448406.45,1991-05-29,1991,Delta 7925,,Satcom C-5,MDSSC,US,O,private -1991-047,2448441.61,1991-07-04,1991,Delta 7925,,Navstar GPS SVN 24,MDSSC,US,O,private -1992-009,2448676.44,1992-02-23,1992,Delta 7925,,Navstar GPS SVN 25,MDSSC,US,O,private -1992-019,2448722.64,1992-04-10,1992,Delta 7925,,Navstar GPS SVN 28,MDSSC,US,O,private -1992-027,2448756.53,1992-05-14,1992,Delta 7925,,Palapa B4,MDSSC,US,O,private -1992-031,2448781.19,1992-06-07,1992,Delta 6920-10,,EUVE,MDSSC,US,O,private -1992-039,2448810.89,1992-07-07,1992,Delta 7925,,Navstar GPS SVN 26,MDSSC,US,O,private -1992-044,2448828.1,1992-07-24,1992,Delta 6925,,Geotail,MDSSC,US,O,private -1992-057,2448865.95,1992-08-31,1992,Delta 7925,,Satcom C-4,MDSSC,US,O,private -1992-058,2448874.87,1992-09-09,1992,Delta 7925,,Navstar GPS SVN 27,MDSSC,US,O,private -1992-066,2448907.91,1992-10-12,1992,Delta 7925,,DFS 3,MDSSC,US,O,private -1992-079,2448949.5,1992-11-22,1992,Delta 7925,,Navstar GPS SVN 32,MDSSC,US,O,private -1992-089,2448975.43,1992-12-18,1992,Delta 7925,,Navstar GPS SVN 29,MDSSC,US,O,private -1993-007,2449021.62,1993-02-03,1993,Delta 7925,,Navstar GPS SVN 22,MDSSC,US,O,private -1993-017,2449076.63,1993-03-30,1993,Delta 7925,,Navstar GPS SVN 31,MDSSC,US,O,private -1993-032,2449120.5,1993-05-13,1993,Delta 7925,,Navstar GPS SVN 37,MDSSC,US,O,private -1993-042,2449165.06,1993-06-26,1993,Delta 7925,,Navstar GPS SVN 39,MDSSC,US,O,private -1993-054,2449230.03,1993-08-30,1993,Delta 7925,,Navstar GPS SVN 35,MDSSC,US,O,private -1993-068,2449287.21,1993-10-26,1993,Delta 7925,,Navstar GPS SVN 34,MDSSC,US,O,private -1993-076,2449329.53,1993-12-08,1993,Delta 7925,,NATO 4B,MDSSC,US,O,private -1994-013,2449403.49,1994-02-19,1994,Delta 7925-8,,Galaxy 1RR,MDSSC,US,O,private -1994-016,2449421.65,1994-03-10,1994,Delta 7925,,Navstar GPS SVN 36,MDSSC,US,O,private -1994-071,2449657.9,1994-11-01,1994,Delta 7925-10,,WIND,MDSSC,US,O,private -1995-041,2449934.97,1995-08-05,1995,Delta 7925,,Koreasat 1,MDSSC,US,O,private -1995-059,2450026.1,1995-11-04,1995,Delta 7920-10,,Radarsat,MDSSC,US,O,private -1995-074,2450082.08,1995-12-30,1995,Delta 7920-10,,XTE,MDSSC,US,O,private -1996-003,2450096.97,1996-01-14,1996,Delta 7925,,Koreasat 2,MDSSC,US,O,private -1996-008,2450131.36,1996-02-17,1996,Delta 7925-8,,NEAR,MDSSC,US,O,private -1996-013,2450137.98,1996-02-24,1996,Delta 7925-10,,Polar,MDSSC,US,O,private -1996-019,2450170.51,1996-03-28,1996,Delta 7925,,Navstar GPS SVN 33,MDSSC,US,O,private -1996-024,2450198.02,1996-04-24,1996,Delta 7920-10,,MSX,MDSSC,US,O,private -1996-033,2450227.55,1996-05-24,1996,Delta 7925,,Galaxy 9,MDSSC,US,O,private -1996-041,2450280.53,1996-07-16,1996,Delta 7925,,Navstar GPS SVN 40,MDSSC,US,O,private -1996-056,2450338.87,1996-09-12,1996,Delta 7925,,Navstar GPS SVN 30,MDSSC,US,O,private -1996-062,2450395.21,1996-11-07,1996,Delta 7925,,MGS,MDSSC,US,O,private -1996-068,2450421.79,1996-12-04,1996,Delta 7925,,MPF Lander,MDSSC,US,O,private -1997-020,2450574.12,1997-05-05,1997,Delta 7920-10C,,Iridium SV008,MDSSC,US,O,private -1997-025,2450589.44,1997-05-20,1997,Delta 7925,,Thor 2A,MDSSC,US,O,private -1997-034,2450639.04,1997-07-09,1997,Delta 7920-10C,,Iridium SV015,MDSSC,US,O,private -1997-035,2450652.65,1997-07-23,1997,Delta 7925,,Navstar GPS SVN 43,MDSSC,US,O,private -1997-F01,2450466.19,1997-01-17,1997,Delta 7925,,Navstar GPS SVN 42,MDSSC,US,F,private -2006-037,2453989.69,2006-09-11,2006,H-IIA 202,,IGS Optical-2,MHI,J,O,private -2006-059,2454087.77,2006-12-18,2006,H-IIA 204,,ETS-8,MHI,J,O,private -2007-005,2454155.7,2007-02-24,2007,H-IIA 2024,,IGS Radar-2,MHI,J,O,private -2007-039,2454357.56,2007-09-14,2007,H-IIA 2022,,SELENE,MHI,J,O,private -2008-007,2454519.87,2008-02-23,2008,H-IIA 2024,1,WINDS,MHI,J,O,private -2009-002,2454854.66,2009-01-23,2009,H-IIA 202,1,GOSAT,MHI,J,O,private -2009-066,2455163.56,2009-11-28,2009,H-IIA 202,,IGS Optical-3,MHI,J,O,private -2010-020,2455337.42,2010-05-20,2010,H-IIA 202,1,K-SAT,MHI,J,O,private -2010-045,2455450.97,2010-09-11,2010,H-IIA 202,1,QZSS,MHI,J,O,private -2011-050,2455827.69,2011-09-23,2011,H-IIA 202,,IGS Optical-4,MHI,J,O,private -2011-075,2455907.56,2011-12-12,2011,H-IIA 202,,IGS Radar-3,MHI,J,O,private -2012-025,2456065.19,2012-05-17,2012,H-IIA 202,1,GCOM-W1,MHI,J,O,private -2013-002,2456319.69,2013-01-27,2013,H-IIA 202,1,IGS Radar-4,MHI,J,O,private -2013-040,2456508.33,2013-08-03,2013,H-IIB,,HTV 4,MHI,J,O,private -2014-009,2456716.28,2014-02-27,2014,H-IIA 202,1,GPM-C,MHI,J,O,private -2014-029,2456801.63,2014-05-24,2014,H-IIA 202,1,ALOS-2,MHI,J,O,private -2014-060,2456937.72,2014-10-07,2014,H-IIA 202,1,Himawari 8,MHI,J,O,private -2014-076,2456994.68,2014-12-03,2014,H-IIA 202,1,Hayabusa-2,MHI,J,O,private -2015-004,2457054.56,2015-02-01,2015,H-IIA 202,1,IGS Radar-Spare,MHI,J,O,private -2015-015,2457107.56,2015-03-26,2015,H-IIA 202,1,IGS Optical-5,MHI,J,O,private -2015-038,2457253.99,2015-08-19,2015,H-IIB,,HTV 5,MHI,J,O,private -2015-068,2457350.78,2015-11-24,2015,H-IIA 204,2,Telstar 12V,MHI,J,O,private -2016-012,2457435.86,2016-02-17,2016,H-IIA 202,1,ASTRO-H,MHI,J,O,private -2016-064,2457694.76,2016-11-02,2016,H-IIA 202,1,Himawari 9,MHI,J,O,private -2016-076,2457732.06,2016-12-09,2016,H-IIB,,HTV 6,MHI,J,O,private -2017-005,2457777.82,2017-01-24,2017,H-IIA 204,2,DSN 2,MHI,J,O,private -2017-015,2457829.56,2017-03-17,2017,H-IIA 202,1,IGS R-5,MHI,J,O,private -2017-028,2457905.51,2017-06-01,2017,H-IIA 202,1,QZSS 2,MHI,J,O,private -2017-048,2457984.73,2017-08-19,2017,H-IIA 204,2,QZSS 3,MHI,J,O,private -2017-062,2458036.42,2017-10-09,2017,H-IIA 202,1,QZSS 4,MHI,J,O,private -2017-082,2458110.56,2017-12-23,2017,H-IIA 202,1,GCOM-C/SLATGS,MHI,J,O,private -2018-021,2458176.69,2018-02-27,2018,H-IIA 202,1,IGS O-6,MHI,J,O,private -2018-052,2458281.68,2018-06-12,2018,H-IIA 202,1,IGS R-6,MHI,J,O,private -2018-073,2458384.24,2018-09-22,2018,H-IIB,,HTV 7,MHI,J,O,private -1990-001,2447892.5,1990-01-01,1990,Commercial Titan 3,,Skynet 4A,MMA,US,O,private -1990-021,2447964.99,1990-03-14,1990,Commercial Titan 3,,INTELSAT VI F-3,MMA,US,O,private -1990-056,2448065.97,1990-06-23,1990,Commercial Titan 3,,INTELSAT VI F-4,MMA,US,O,private -1992-063,2448891.21,1992-09-25,1992,Commercial Titan 3,,Mars Observer,MMA,US,O,private -1994-035,2449528.08,1994-06-24,1994,Atlas I,,UFO F3,MMCLS,US,O,private -1994-047,2449568.5,1994-08-03,1994,Atlas IIA,,DBS 2,MMCLS,US,O,private -1994-064,2449631.77,1994-10-06,1994,Atlas IIAS,,INTELSAT 703,MMCLS,US,O,private -1994-079,2449685.93,1994-11-29,1994,Atlas IIA,,Orion 1,MMCLS,US,O,private -1994-089,2449716.92,1994-12-30,1994,Atlas E,,NOAA J,MMCLS,US,O,private -1995-001,2449727.76,1995-01-10,1995,Atlas IIAS,,INTELSAT 704,MMCLS,US,O,private -1995-003,2449746.56,1995-01-29,1995,Atlas II,,UFO F4 EHF,MMCLS,US,O,private -1957 ALP,2436116.31,1957-10-04,1957,Sputnik 8K71PS,,PS-1,,SU,O,state -1957 BET,2436145.6,1957-11-03,1957,Sputnik 8K71PS,,PS-2,,SU,O,state -1958 DEL,2436338.79,1958-05-15,1958,Sputnik 8A91,,D-1 No. 2,,SU,O,state -1959 MU,2436571.2,1959-01-02,1959,Vostok-L 8K72,,E-1 No. 4,,SU,O,state -1959 XI,2436823.78,1959-09-12,1959,Vostok-L 8K72,,E-1 No. 6,,SU,O,state -1959 THE,2436845.53,1959-10-04,1959,Vostok-L 8K72,,E-2A,,SU,O,state -1958-F03,2436320.88,1958-04-27,1958,Sputnik 8A91,,D-1 No. 1,,SU,F,state -1958-F15,2436469.82,1958-09-23,1958,Vostok-L 8K72,,E-1 No. 1,,SU,F,state -1958-F17,2436488.4,1958-10-11,1958,Vostok-L 8K72,,E-1 No. 2,,SU,F,state -1958-F20,2436542.26,1958-12-04,1958,Vostok-L 8K72,,E-1 No. 3,,SU,F,state -1959-F06,2436737.84,1959-06-18,1959,Vostok-L 8K72,,E-1 No. 5,,SU,F,state -2016-009,2457425.52,2016-02-07,2016,Kwangmyongsong,,KMS-4 Unit 1,KP,KP,O,state -1959 IOT,2436855.15,1959-10-13,1959,Juno II,,NASA S-1A,US,US,O,state -1960 IOT,2437158.9,1960-08-12,1960,Thor Delta,,A-11,US,US,O,state -1960 XI,2437241.72,1960-11-03,1960,Juno II,,NASA S-30,US,US,O,state -1960 PI,2437261.97,1960-11-23,1960,Thor Delta,,NASA A-2,US,US,O,state -1961 DEL,2437347.05,1961-02-16,1961,Scout X-1,,NASA S-56A,US,US,O,state -1961 KAP,2437384.14,1961-03-25,1961,Thor Delta,,P-14,US,US,O,state -1961 NU,2437417.09,1961-04-27,1961,Juno II,,NASA S-15,US,US,O,state -1961 RHO,2437492.93,1961-07-12,1961,Thor Delta,,NASA A-3,US,US,O,state -1961 UPS,2437527.64,1961-08-16,1961,Thor Delta,,NASA S-3,US,US,O,state -1961 CHI,2437537.27,1961-08-25,1961,Scout X-1,,NASA S-55A,US,US,O,state -1962 BET,2437704.03,1962-02-08,1962,Thor Delta,,NASA A-9,US,US,O,state -1962 ZET,2437731.17,1962-03-07,1962,Thor Delta,,NASA S-16,US,US,O,state -1962 OMI,2437781.25,1962-04-26,1962,Thor Delta,,UK 1,US,US,O,state -1962 A ALP,2437835.01,1962-06-19,1962,Thor Delta,,Tiros E,US,US,O,state -1962 A EPS,2437855.86,1962-07-10,1962,Thor Delta,,Telstar 1,US,US,O,state -1962 A PSI,2437925.87,1962-09-18,1962,Thor Delta,,Tiros F2,US,US,O,state -1962 B ALP,2437936.75,1962-09-29,1962,Thor Agena B,,Alouette 1,US,US,O,state -1962 B GAM,2437940.42,1962-10-02,1962,Thor Delta A,,EPE B,US,US,O,state -1962 B LAM,2437965.47,1962-10-27,1962,Thor Delta A,,EPE C,US,US,O,state -1962 B UPS,2438012.48,1962-12-13,1962,Thor Delta B,,Relay A,US,US,O,state -1962 B CHI,2438015.11,1962-12-16,1962,Scout X-3,,NASA S-55B,US,US,O,state -1963-004,2438074.73,1963-02-14,1963,Thor Delta B,,Syncom 1,US,US,O,state -1963-009,2438122.58,1963-04-03,1963,Thor Delta B,,AE-A,US,US,O,state -1963-013,2438156.98,1963-05-07,1963,Thor Delta B,,Telstar 2,US,US,O,state -1963-024,2438199.91,1963-06-19,1963,Thor Delta B,,Tiros G,US,US,O,state -1963-026,2438209.39,1963-06-28,1963,Scout X-4,,AFCRL A,US,US,O,state -1963-031,2438237.11,1963-07-26,1963,Thor Delta B,,Syncom 2,US,US,O,state -1963-046,2438360.6,1963-11-27,1963,Thor Delta C,,IMP A,US,US,O,state -1963-047,2438361.29,1963-11-27,1963,Atlas Centaur,,AC-2,US,US,O,state -1963-054,2438384.9,1963-12-21,1963,Thor Delta B,,Tiros H,US,US,O,state -1964-003,2438416.39,1964-01-21,1964,Thor Delta B,,Relay B,US,US,O,state -1964-005,2438424.18,1964-01-29,1964,Saturn I,Blk2,Jupiter Nosecone/Ballast,US,US,O,state -1964-015,2438482.23,1964-03-27,1964,Scout X-3,,UK-C,US,US,O,state -1964-018,2438494.17,1964-04-08,1964,Titan II GLV,,Gemini SC1,US,US,O,state -1964-025,2438544.21,1964-05-28,1964,Saturn I,Blk2,Apollo BP-13 CM,US,US,O,state -1964-047,2438627.01,1964-08-19,1964,Thor Delta D,,Syncom C,US,US,O,state -1964-057,2438657.18,1964-09-18,1964,Saturn I,Blk2,Apollo BP-15 CM,US,US,O,state -1964-060,2438672.66,1964-10-04,1964,Thor Delta C,,IMP B,US,US,O,state -1964-074,2438706,1964-11-06,1964,Scout X-4,,NASA S-55C,US,US,O,state -1964-082,2438741.1,1964-12-11,1964,Atlas Centaur,,Surveyor Model,US,US,O,state -1964-084,2438745.35,1964-12-15,1964,Scout X-4,,San Marco 1,US,US,O,state -1964-086,2438750.88,1964-12-21,1964,Thor Delta C,,EPE-D,US,US,O,state -1965-100,2439099.31,1965-12-04,1965,Titan II GLV,,Gemini SC7,US,US,O,state -1965-004,2438782.83,1965-01-22,1965,Thor Delta C,,Tiros I,US,US,O,state -1965-104,2439110.07,1965-12-15,1965,Titan II GLV,,Gemini SC6,US,US,O,state -1965-105,2439110.81,1965-12-16,1965,Thor Delta E,,Pioneer A,US,US,O,state -1965-007,2438795.19,1965-02-03,1965,Thor Delta C,,OSO B2,US,US,O,state -1965-009,2438808.11,1965-02-16,1965,Saturn I,Blk2,Pegasus 1,US,US,O,state -1965-024,2438843.1,1965-03-23,1965,Titan II GLV,,Gemini SC3,US,US,O,state -1965-028,2438857.49,1965-04-06,1965,Thor Delta D,,INTELSAT I,US,US,O,state -1965-032,2438880.1,1965-04-29,1965,Scout X-4,,Beacon Explorer C,US,US,O,state -1965-039,2438905.82,1965-05-25,1965,Saturn I,Blk2,Pegasus 2,US,US,O,state -1965-042,2438910,1965-05-29,1965,Thor Delta C,,IMP C,US,US,O,state -1965-043,2438915.14,1965-06-03,1965,Titan II GLV,,Gemini SC4,US,US,O,state -1965-051,2438943.67,1965-07-02,1965,Thor Delta C,,Tiros OT1,US,US,O,state -1965-060,2438972.04,1965-07-30,1965,Saturn I,Blk2,Pegasus 3,US,US,O,state -1965-063,2438983.25,1965-08-10,1965,Scout B,,Secor Type I S/N 2,US,US,O,state -1965-064,2438984.1,1965-08-11,1965,Atlas Centaur D,,Surveyor SD-2,US,US,O,state -1965-068,2438994.08,1965-08-21,1965,Titan II GLV,,Gemini SC5,US,US,O,state -1965-089,2439071.28,1965-11-06,1965,Thor Delta E,,GEOS A,US,US,O,state -1965-093,2439083.7,1965-11-19,1965,Scout X-4,,Solar Explorer A,US,US,O,state -1966-104,2439441.37,1966-11-11,1966,Titan II GLV,,Gemini SC12,US,US,O,state -1966-008,2439159.82,1966-02-03,1966,Thor Delta C,,Tiros OT3,US,US,O,state -1966-114,2439474.31,1966-12-14,1966,Thor Delta G,,Biosatellite A Adapter,US,US,O,state -1966-016,2439185.08,1966-02-28,1966,Thor Delta E,,Tiros OT2,US,US,O,state -1966-020,2439201.2,1966-03-16,1966,Titan II GLV,,Gemini SC8,US,US,O,state -1966-030,2439223.54,1966-04-08,1966,Atlas Centaur D,,Surveyor Model 2 (SM-2),US,US,O,state -1966-044,2439271.08,1966-05-25,1966,Thor Delta C1,,AE-B,US,US,O,state -1966-045,2439276.11,1966-05-30,1966,Atlas Centaur D,,Surveyor SC-1,US,US,O,state -1966-047,2439280.07,1966-06-03,1966,Titan II GLV,,Gemini SC9,US,US,O,state -1966-052,2439286.68,1966-06-10,1966,Scout B,,OV3-4 PHASR,US,US,O,state -1966-058,2439308.17,1966-07-01,1966,Thor Delta E1,,AIMP D,US,US,O,state -1966-059,2439312.12,1966-07-05,1966,Uprated Saturn I,,Subcritical Cryo LN2 Exp,US,US,O,state -1966-066,2439325.43,1966-07-18,1966,Titan II GLV,,Gemini SC10,US,US,O,state -1966-075,2439355.14,1966-08-17,1966,Thor Delta E1,,Pioneer B,US,US,O,state -1966-081,2439381.11,1966-09-12,1966,Titan II GLV,,Gemini SC11,US,US,O,state -1966-084,2439389.02,1966-09-20,1966,Atlas Centaur D,,Surveyor SC-2,US,US,O,state -1966-087,2439400.94,1966-10-02,1966,Thor Delta E,,TOS A,US,US,O,state -1966-095,2439424.97,1966-10-26,1966,Atlas Centaur D,,Surveyor SM-3,US,US,O,state -1966-096,2439425.46,1966-10-26,1966,Thor Delta E1,,INTELSAT II F-1,US,US,O,state -1967-100,2439782.17,1967-10-18,1967,Thor Delta C1,,OSO D,US,US,O,state -1967-001,2439501.95,1967-01-11,1967,Thor Delta E1,,INTELSAT II F-2,US,US,O,state -1967-006,2439517.23,1967-01-26,1967,Thor Delta E,,TOS B,US,US,O,state -1967-112,2439801.82,1967-11-07,1967,Atlas SLV-3C Centaur,,Surveyor SC-6,US,US,O,state -1967-113,2439804,1967-11-09,1967,Saturn V,,Apollo CM-017,US,US,O,state -1967-114,2439805.25,1967-11-10,1967,Thor Delta E1,,TOS D,US,US,O,state -1967-020,2439558.17,1967-03-08,1967,Thor Delta C,,OSO E1,US,US,O,state -1967-123,2439838.09,1967-12-13,1967,Thor Delta E1,,Pioneer C,US,US,O,state -1967-026,2439572.56,1967-03-23,1967,Thor Delta E1,,INTELSAT II F-3,US,US,O,state -1967-035,2439597.8,1967-04-17,1967,Atlas Centaur D,,Surveyor SC-3,US,US,O,state -1967-036,2439600.97,1967-04-20,1967,Thor Delta E,,TOS C,US,US,O,state -1967-051,2439635.09,1967-05-24,1967,Thor Delta E1,,IMP F,US,US,O,state -1967-068,2439686,1967-07-14,1967,Atlas Centaur D,,Surveyor SC-4,US,US,O,state -1967-070,2439691.1,1967-07-19,1967,Thor Delta E1,,AIMP E,US,US,O,state -1967-083,2439741.42,1967-09-07,1967,Thor Delta G,,Biosatellite B Adapter,US,US,O,state -1967-084,2439741.83,1967-09-08,1967,Atlas SLV-3C Centaur,,Surveyor 5,US,US,O,state -1967-094,2439761.53,1967-09-28,1967,Thor Delta E1,,INTELSAT II F-4,US,US,O,state -1968-100,2440168.91,1968-11-08,1968,Thor Delta E1,,Pioneer D,US,US,O,state -1968-001,2439862.77,1968-01-07,1968,Atlas SLV-3C Centaur,,Surveyor SC-7,US,US,O,state -1968-002,2439867.18,1968-01-11,1968,Thor Delta E1,,Geos B,US,US,O,state -1968-007,2439878.45,1968-01-22,1968,Saturn IB,,Apollo 5,US,US,O,state -1968-109,2440196.29,1968-12-05,1968,Thor Delta E1,,HEOS A1,US,US,O,state -1968-110,2440197.86,1968-12-07,1968,Atlas SLV-3C Centaur,,OAO A2,US,US,O,state -1968-114,2440206.22,1968-12-15,1968,Thor Delta N,,TOS F,US,US,O,state -1968-116,2440209.52,1968-12-19,1968,Thor Delta M,,INTELSAT III F-2,US,US,O,state -1968-017,2439921.27,1968-03-05,1968,Scout B,,Solar Explorer B,US,US,O,state -1968-118,2440212.04,1968-12-21,1968,Saturn V,,Apollo CM-103,US,US,O,state -1968-025,2439951,1968-04-04,1968,Saturn V,,Apollo CM-020,US,US,O,state -1968-055,2440042.23,1968-07-04,1968,Thor Delta J,,RAE A,US,US,O,state -1968-068,2440079.44,1968-08-10,1968,Atlas SLV-3C Centaur,,ATS D,US,US,O,state -1968-069,2440084.98,1968-08-16,1968,Thor Delta N,,TOS E,US,US,O,state -1968-089,2440141.13,1968-10-11,1968,Saturn IB,,Apollo CM-101,US,US,O,state -1969-101,2440547.53,1969-11-22,1969,Thor Delta M,,Skynet IA,US,US,O,state -1969-006,2440244.2,1969-01-22,1969,Thor Delta C1,,OSO F,US,US,O,state -1969-009,2440251.78,1969-01-30,1969,Thor Delta E1,,Isis A,US,US,O,state -1969-011,2440258.53,1969-02-06,1969,Thor Delta M,,INTELSAT III F-3,US,US,O,state -1969-014,2440277.56,1969-02-25,1969,Atlas SLV-3C Centaur,,Mariner 69-3,US,US,O,state -1969-016,2440278.82,1969-02-26,1969,Thor Delta E1,,TOS G,US,US,O,state -1969-018,2440284.17,1969-03-03,1969,Saturn V,,Apollo CM-104,US,US,O,state -1969-030,2440308.43,1969-03-27,1969,Atlas SLV-3C Centaur,,Mariner 69-2,US,US,O,state -1969-043,2440360.2,1969-05-18,1969,Saturn V,,Apollo CM-106,US,US,O,state -1969-045,2440363.58,1969-05-22,1969,Thor Delta M,,INTELSAT III F-4,US,US,O,state -1969-053,2440393.87,1969-06-21,1969,Thor Delta E1,,IMP G,US,US,O,state -1969-056,2440401.64,1969-06-29,1969,Thor Delta N,,Biosatellite D Adapter,US,US,O,state -1969-059,2440419.06,1969-07-16,1969,Saturn V,,Apollo CM-107,US,US,O,state -1969-064,2440428.59,1969-07-26,1969,Thor Delta M,,INTELSAT III F-5,US,US,O,state -1969-068,2440442.83,1969-08-09,1969,Thor Delta N,,OSO G,US,US,O,state -1969-069,2440445.96,1969-08-12,1969,Atlas SLV-3C Centaur,,ATS E,US,US,O,state -1969-099,2440540.18,1969-11-14,1969,Saturn V,,Apollo CM-108,US,US,O,state -1970-003,2440601.51,1970-01-15,1970,Thor Delta M,,INTELSAT III F-6,US,US,O,state -1970-106,2440931.98,1970-12-11,1970,Thor Delta N6,,ITOS A,US,US,O,state -1970-008,2440609.98,1970-01-23,1970,Thor Delta N6,,Tiros M,US,US,O,state -1970-021,2440666.49,1970-03-20,1970,Thor Delta M,,NATO IIA,US,US,O,state -1970-029,2440688.3,1970-04-11,1970,Saturn V,,Apollo CM-109,US,US,O,state -1970-032,2440699.53,1970-04-23,1970,Thor Delta M,,INTELSAT III F-7,US,US,O,state -1970-055,2440791.47,1970-07-23,1970,Thor Delta M,,INTELSAT III F-8,US,US,O,state -1970-062,2440818.01,1970-08-19,1970,Thor Delta M,,Skynet IB,US,US,O,state -1970-094,2440899.75,1970-11-09,1970,Scout B,,OFO,US,US,O,state -1971-006,2440977.53,1971-01-26,1971,Atlas SLV-3C Centaur,,INTELSAT IV F2,US,US,O,state -1971-008,2440983.38,1971-01-31,1971,Saturn V,,Apollo CM-110,US,US,O,state -1971-009,2440985.57,1971-02-03,1971,Thor Delta M,,NATO IIB,US,US,O,state -1971-116,2441305.55,1971-12-20,1971,Atlas SLV-3C Centaur,,INTELSAT IV F3,US,US,O,state -1971-019,2441024.18,1971-03-13,1971,Thor Delta M6,,IMP I,US,US,O,state -1971-024,2441042.62,1971-04-01,1971,Thor Delta E1,,Isis B,US,US,O,state -1971-051,2441102.43,1971-05-30,1971,Atlas SLV-3C Centaur,,Mariner 71J,US,US,O,state -1971-058,2441141.46,1971-07-08,1971,Scout B,,Solar Explorer C,US,US,O,state -1971-063,2441159.07,1971-07-26,1971,Saturn V,,Apollo CM-112,US,US,O,state -1971-071,2441180.28,1971-08-16,1971,Scout B-1,F,Eole,US,US,O,state -1971-083,2441223.91,1971-09-29,1971,Thor Delta N,,OSO H,US,US,O,state -1971-091,2441245.98,1971-10-21,1971,Thor Delta N6,,ITOS B,US,US,O,state -1972-003,2441339.51,1972-01-23,1972,Atlas SLV-3C Centaur,,INTELSAT IV F4,US,US,O,state -1972-005,2441348.22,1972-01-31,1972,Thor Delta L,,HEOS A2,US,US,O,state -1972-012,2441379.58,1972-03-03,1972,Atlas SLV-3C Centaur,,Pioneer F,US,US,O,state -1972-014,2441388.58,1972-03-12,1972,Thor Delta N,,TD-1A,US,US,O,state -1972-031,2441424.25,1972-04-16,1972,Saturn V,,Apollo CM-113,US,US,O,state -1972-041,2441482.41,1972-06-13,1972,Atlas SLV-3C Centaur,,INTELSAT IV F5,US,US,O,state -1972-058,2441522.25,1972-07-23,1972,Delta 0900,,ERTS A,US,US,O,state -1972-061,2441543.13,1972-08-13,1972,Scout D-1,F,Meteoroid Technology Sat,US,US,O,state -1972-065,2441550.94,1972-08-21,1972,Atlas SLV-3C Centaur,,OAO-C,US,US,O,state -1972-073,2441583.56,1972-09-23,1972,Delta 1604,,IMP H,US,US,O,state -1972-082,2441606.22,1972-10-15,1972,Delta 0300,,ITOS D,US,US,O,state -1972-090,2441631.55,1972-11-10,1972,Delta 1914,,Anik A1,US,US,O,state -1972-096,2441658.73,1972-12-07,1972,Saturn V,,Apollo CM-114,US,US,O,state -1972-097,2441662.83,1972-12-11,1972,Delta 0900,,Nimbus E,US,US,O,state -1973-101,2442032.76,1973-12-16,1973,Delta 1900,,AE-C,US,US,O,state -1973-019,2441778.59,1973-04-06,1973,Atlas SLV-3D Centaur,,Pioneer G,US,US,O,state -1973-023,2441793.49,1973-04-20,1973,Delta 1914,,Anik A2,US,US,O,state -1973-027,2441817.23,1973-05-14,1973,Saturn V,2,Skylab I OWS,US,US,O,state -1973-032,2441828.04,1973-05-25,1973,Saturn IB,,Apollo CM-116,US,US,O,state -1973-039,2441844.09,1973-06-10,1973,Delta 1913,,RAE B,US,US,O,state -1973-050,2441891.97,1973-07-28,1973,Saturn IB,,Apollo CM-117,US,US,O,state -1973-058,2441918.46,1973-08-23,1973,Atlas SLV-3D Centaur,,INTELSAT IV F7,US,US,O,state -1973-078,2441981.6,1973-10-26,1973,Delta 1604,,IMP J,US,US,O,state -1973-085,2441989.74,1973-11-03,1973,Atlas SLV-3D Centaur,,Mariner 73J,US,US,O,state -1973-086,2441993.21,1973-11-06,1973,Delta 0300,,ITOS F,US,US,O,state -1973-090,2442003.08,1973-11-16,1973,Saturn IB,,CM-118,US,US,O,state -1974-101,2442400.61,1974-12-19,1974,Delta 2914,,Symphonie MV1,US,US,O,state -1974-002,2442066.57,1974-01-19,1974,Delta 2313,,Skynet IIA,US,US,O,state -1974-022,2442151.48,1974-04-13,1974,Delta 2914,C,Westar 1,US,US,O,state -1974-033,2442184.9,1974-05-17,1974,Delta 2914,,SMS A,US,US,O,state -1974-075,2442331.45,1974-10-10,1974,Delta 2914,C,Westar 2,US,US,O,state -1974-089,2442367.22,1974-11-15,1974,Delta 2310,,ITOS G,US,US,O,state -1974-093,2442373.49,1974-11-21,1974,Atlas SLV-3D Centaur,,INTELSAT IV F8,US,US,O,state -1974-094,2442374.52,1974-11-23,1974,Delta 2313,,Skynet IIB,US,US,O,state -1975-100,2442702.44,1975-10-16,1975,Delta 2914,,GOES A,US,US,O,state -1975-004,2442435.25,1975-01-22,1975,Delta 2910,,Landsat B,US,US,O,state -1975-107,2442736.59,1975-11-20,1975,Delta 2910,,AE-E,US,US,O,state -1975-011,2442450.42,1975-02-06,1975,Delta 2914,,SMS B,US,US,O,state -1975-117,2442759.58,1975-12-13,1975,Delta 3914,,RCA-A,US,US,O,state -1975-027,2442512.5,1975-04-09,1975,Delta 1410,,Geos C,US,US,O,state -1975-038,2442540.48,1975-05-07,1975,Delta 2914,C,Anik A3,US,US,O,state -1975-042,2442555.42,1975-05-22,1975,Atlas SLV-3D Centaur,,INTELSAT IV F1,US,US,O,state -1975-052,2442575.84,1975-06-12,1975,Delta 2910,,Nimbus F,US,US,O,state -1975-057,2442584.99,1975-06-21,1975,Delta 1910,,OSO I,US,US,O,state -1975-066,2442609.33,1975-07-15,1975,Saturn IB,,Apollo CM-111,US,US,O,state -1975-072,2442633.58,1975-08-09,1975,Delta 2913,,COS-B,US,US,O,state -1975-077,2442651.57,1975-08-27,1975,Delta 2914,,Symphonie MV2,US,US,O,state -1975-091,2442681.51,1975-09-26,1975,Atlas SLV-3D Centaur,,INTELSAT IVA F1,US,US,O,state -1975-096,2442691.88,1975-10-06,1975,Delta 2910,,AE-D,US,US,O,state -1976-101,2443066.45,1976-10-14,1976,Delta 2914,,Marisat C,US,US,O,state -1976-004,2442795.48,1976-01-17,1976,Delta 2914,,CTS,US,US,O,state -1976-010,2442807.5,1976-01-29,1976,Atlas SLV-3D Centaur,,INTELSAT IVA F2,US,US,O,state -1976-017,2442828.44,1976-02-19,1976,Delta 2914,,Marisat A,US,US,O,state -1976-029,2442864.45,1976-03-26,1976,Delta 3914,,RCA-B,US,US,O,state -1976-035,2442891.37,1976-04-22,1976,Delta 2914,,NATO 3A,US,US,O,state -1976-039,2442902.83,1976-05-04,1976,Delta 2913,,Lageos,US,US,O,state -1976-042,2442912.44,1976-05-13,1976,Atlas SLV-3D Centaur,,Comstar D-1,US,US,O,state -1976-053,2442939.51,1976-06-10,1976,Delta 2914,,Marisat B,US,US,O,state -1976-066,2442968.48,1976-07-08,1976,Delta 2914,C,Palapa A1,US,US,O,state -1976-073,2442982.42,1976-07-22,1976,Atlas SLV-3D Centaur,,Comstar D-2,US,US,O,state -1976-077,2442989.21,1976-07-29,1976,Delta 2310,,ITOS H,US,US,O,state -1977-102,2443439.08,1977-10-22,1977,Delta 2914,,ISEE A,US,US,O,state -1977-005,2443171.53,1977-01-28,1977,Delta 2914,,NATO 3B,US,US,O,state -1977-106,2443444.7,1977-10-28,1977,Scout D-1,,NNS O-11,US,US,O,state -1977-108,2443470.57,1977-11-23,1977,Delta 2914,,Meteosat 1,US,US,O,state -1977-018,2443213.47,1977-03-10,1977,Delta 2914,,Palapa A2,US,US,O,state -1977-118,2443492.53,1977-12-15,1977,Delta 2914,,CS,US,US,O,state -1977-029,2443253.93,1977-04-20,1977,Delta 2914,,Geos 1,US,US,O,state -1977-041,2443290.41,1977-05-26,1977,Atlas SLV-3D Centaur,,INTELSAT IVA F4,US,US,O,state -1977-048,2443310.95,1977-06-16,1977,Delta 2914,,GOES B,US,US,O,state -1977-065,2443338.94,1977-07-14,1977,Delta 2914,,GMS,US,US,O,state -1977-075,2443367.77,1977-08-12,1977,Atlas SLV-3D Centaur,,HEAO A,US,US,O,state -1977-080,2443381.49,1977-08-25,1977,Delta 2313,,Sirio 1,US,US,O,state -1978-002,2443515.51,1978-01-07,1978,Atlas SLV-3D Centaur,,INTELSAT IVA F3,US,US,O,state -1978-103,2443825.73,1978-11-13,1978,Atlas SLV-3D Centaur,,HEAO B,US,US,O,state -1978-106,2443831.53,1978-11-19,1978,Delta 2914,,NATO 3C,US,US,O,state -1978-012,2443535.23,1978-01-26,1978,Delta 2914,,IUE,US,US,O,state -1978-016,2443549.39,1978-02-09,1978,Atlas SLV-3D Centaur,,FLTSATCOM F1,US,US,O,state -1978-116,2443858.51,1978-12-16,1978,Delta 3914,,Anik B,US,US,O,state -1978-026,2443573.25,1978-03-05,1978,Delta 2910,,Landsat C,US,US,O,state -1978-035,2443599.48,1978-03-31,1978,Atlas SLV-3D Centaur,,INTELSAT IVA F6,US,US,O,state -1978-039,2443606.42,1978-04-07,1978,Delta 2914,,BSE,US,US,O,state -1978-041,2443624.93,1978-04-26,1978,Scout D-1,,AEM-A,US,US,O,state -1978-044,2443640.46,1978-05-11,1978,Delta 3914,,OTS 2,US,US,O,state -1978-051,2443649.05,1978-05-20,1978,Atlas SLV-3D Centaur,,Pioneer Venus Orbiter,US,US,O,state -1978-062,2443675.95,1978-06-16,1978,Delta 2914,,GOES C,US,US,O,state -1978-068,2443689.43,1978-06-29,1978,Atlas SLV-3D Centaur,,Comstar D-3,US,US,O,state -1978-071,2443703.95,1978-07-14,1978,Delta 2914,,Geos 2,US,US,O,state -1978-078,2443728.81,1978-08-08,1978,Atlas SLV-3D Centaur,,Pioneer Venus Multiprobe,US,US,O,state -1978-079,2443733.13,1978-08-12,1978,Delta 2914,,ISEE C,US,US,O,state -1978-098,2443805.84,1978-10-24,1978,Delta 2910,,Nimbus G,US,US,O,state -1979-101,2444214.57,1979-12-07,1979,Delta 3914,,RCA-C,US,US,O,state -1979-007,2443904.4,1979-01-30,1979,Delta 2914,,P78-2,US,US,O,state -1979-013,2443923.18,1979-02-18,1979,Scout D-1,,AEM-B,US,US,O,state -1979-038,2443998.29,1979-05-04,1979,Atlas SLV-3D Centaur,,FLTSATCOM F2,US,US,O,state -1979-047,2444027.48,1979-06-02,1979,Scout D-1,,Ariel 6,US,US,O,state -1979-072,2444095.51,1979-08-10,1979,Delta 2914,,Westar 3,US,US,O,state -1979-082,2444136.73,1979-09-20,1979,Atlas SLV-3D Centaur,,HEAO C,US,US,O,state -1979-094,2444177.09,1979-10-30,1979,Scout G-1,,AEM-C,US,US,O,state -1980-004,2444256.56,1980-01-18,1980,Atlas SLV-3D Centaur,,FLTSATCOM F3,US,US,O,state -1980-014,2444284.16,1980-02-14,1980,Delta 3910,,SMM,US,US,O,state -1980-074,2444492.44,1980-09-09,1980,Delta 3914,,GOES D,US,US,O,state -1980-087,2444543.66,1980-10-31,1980,Atlas SLV-3D Centaur,,FLTSATCOM F4,US,US,O,state -1980-091,2444559.45,1980-11-15,1980,Delta 3910/PAM,,SBS 1,US,US,O,state -1980-098,2444580.48,1980-12-06,1980,Atlas SLV-3D Centaur,,INTELSAT V F2,US,US,O,state -1981-100,2444883.98,1981-10-06,1981,Delta 2310,,Solar Mesosphere Explore,US,US,O,state -1981-111,2444921.13,1981-11-12,1981,Space Shuttle,,OV-102 OFT-2,US,US,O,state -1981-114,2444928.57,1981-11-20,1981,Delta 3910/PAM,,RCA-D,US,US,O,state -1981-018,2444657.47,1981-02-21,1981,Atlas SLV-3D Centaur,,Comstar D-4,US,US,O,state -1981-119,2444954.48,1981-12-15,1981,Atlas SLV-3D Centaur,,INTELSAT V F3,US,US,O,state -1981-034,2444707,1981-04-12,1981,Space Shuttle,,OV-102 OFT-1,US,US,O,state -1981-044,2444739.76,1981-05-15,1981,Scout G-1,,Nova 1,US,US,O,state -1981-049,2444747.44,1981-05-22,1981,Delta 3914,,GOES E,US,US,O,state -1981-050,2444748.45,1981-05-23,1981,Atlas SLV-3D Centaur,,INTELSAT V F1,US,US,O,state -1981-070,2444819.91,1981-08-03,1981,Delta 3913,,DE A,US,US,O,state -1981-073,2444822.84,1981-08-06,1981,Atlas SLV-3D Centaur,,FLTSATCOM F5,US,US,O,state -1981-096,2444872.46,1981-09-24,1981,Delta 3910/PAM,,SBS 2,US,US,O,state -1982-004,2444985.58,1982-01-16,1982,Delta 3910/PAM,,RCA-C',US,US,O,state -1982-105,2445270.56,1982-10-28,1982,Delta 3924,,RCA-E,US,US,O,state -1982-110,2445285.01,1982-11-11,1982,Space Shuttle,,OV-102 PAM deploy,US,US,O,state -1982-014,2445026.5,1982-02-26,1982,Delta 3910/PAM,,Westar 4,US,US,O,state -1982-017,2445033.52,1982-03-05,1982,Atlas SLV-3D Centaur,,INTELSAT V F4,US,US,O,state -1982-022,2445051.17,1982-03-22,1982,Space Shuttle,,OV-102 OFT-3,US,US,O,state -1982-031,2445069.78,1982-04-10,1982,Delta 3910/PAM,,Insat 1A,US,US,O,state -1982-058,2445129.52,1982-06-09,1982,Delta 3910/PAM,,Westar 5,US,US,O,state -1982-065,2445148.12,1982-06-27,1982,Space Shuttle,,OV-102 OFT-4,US,US,O,state -1982-072,2445167.25,1982-07-16,1982,Delta 3920,,Landsat D,US,US,O,state -1982-082,2445208.47,1982-08-26,1982,Delta 3920/PAM,,Anik D-1,US,US,O,state -1982-097,2445241.47,1982-09-28,1982,Atlas SLV-3D Centaur,,INTELSAT V F5,US,US,O,state -1983-004,2445360.6,1983-01-26,1983,Delta 3910,,IRAS,US,US,O,state -1983-116,2445667.17,1983-11-28,1983,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1983-026,2445429.27,1983-04-04,1983,Space Shuttle,,OV-099 IUS deploy,US,US,O,state -1983-030,2445436.44,1983-04-11,1983,Delta 3924,,RCA-F,US,US,O,state -1983-041,2445453.43,1983-04-28,1983,Delta 3914,,GOES F,US,US,O,state -1983-047,2445474.43,1983-05-19,1983,Atlas SLV-3D Centaur,,INTELSAT V F6,US,US,O,state -1983-051,2445481.14,1983-05-26,1983,Delta 3914,,Exosat,US,US,O,state -1983-059,2445503.98,1983-06-18,1983,Space Shuttle,,OV-099 PAM deploy/FF,US,US,O,state -1983-063,2445513.15,1983-06-27,1983,Scout D-1,,NNS O-16,US,US,O,state -1983-065,2445514.46,1983-06-28,1983,Delta 3920/PAM,,Galaxy I,US,US,O,state -1983-077,2445544.45,1983-07-28,1983,Delta 3920/PAM,,Telstar 301,US,US,O,state -1983-089,2445576.77,1983-08-30,1983,Space Shuttle,,OV-099 PAM deploy,US,US,O,state -1983-094,2445586.45,1983-09-08,1983,Delta 3924,,RCA-G,US,US,O,state -1983-098,2445600.43,1983-09-22,1983,Delta 3920/PAM,,Galaxy II,US,US,O,state -1984-101,2445965.43,1984-09-21,1984,Delta 3920/PAM,,Galaxy III,US,US,O,state -1984-108,2445978.96,1984-10-05,1984,Space Shuttle,,OV-099 LEO deploy,US,US,O,state -1984-110,2445985.57,1984-10-12,1984,Scout G-1,,Nova 3,US,US,O,state -1984-011,2445734.04,1984-02-03,1984,Space Shuttle,,OV-099 PAM deploy/FF,US,US,O,state -1984-113,2446013.01,1984-11-08,1984,Space Shuttle,,OV-103 PAM deploy/Rend,US,US,O,state -1984-115,2446018.52,1984-11-14,1984,Delta 3914,,NATO 3D,US,US,O,state -1984-021,2445761.25,1984-03-01,1984,Delta 3920,,Landsat D',US,US,O,state -1984-034,2445797.08,1984-04-06,1984,Space Shuttle,,OV-099 LEO deploy/Rend,US,US,O,state -1984-057,2445861.46,1984-06-09,1984,Atlas G Centaur,,INTELSAT V F9,US,US,O,state -1984-088,2445929.12,1984-08-16,1984,Delta 3924,,AMPTE-CCE,US,US,O,state -1984-093,2445943.03,1984-08-30,1984,Space Shuttle,,OV-103 PAM deploy,US,US,O,state -1985-104,2446369.21,1985-10-30,1985,Space Shuttle,,OV-099 Spacelab,US,US,O,state -1985-109,2446396.52,1985-11-27,1985,Space Shuttle,,OV-104 PAM deploy,US,US,O,state -1985-010,2446090.33,1985-01-24,1985,Space Shuttle,,OV-103 IUS deploy,US,US,O,state -1985-114,2446412.61,1985-12-13,1985,Scout G-1,,ITV 1,US,US,O,state -1985-025,2446147.5,1985-03-22,1985,Atlas G Centaur,,INTELSAT VA F10,US,US,O,state -1985-028,2446168.08,1985-04-12,1985,Space Shuttle,,OV-103 PAM deploy,US,US,O,state -1985-034,2446185.17,1985-04-29,1985,Space Shuttle,,OV-099 Spacelab,US,US,O,state -1985-048,2446233.98,1985-06-17,1985,Space Shuttle,,OV-103 PAM deploy/FF,US,US,O,state -1985-055,2446246.53,1985-06-30,1985,Atlas G Centaur,,INTELSAT VA F11,US,US,O,state -1985-063,2446276.38,1985-07-29,1985,Space Shuttle,,OV-099 Spacelab,US,US,O,state -1985-066,2446280.65,1985-08-03,1985,Scout G-1,,NNS O-24,US,US,O,state -1985-076,2446304.96,1985-08-27,1985,Space Shuttle,,OV-103 PAM deploy/Rend,US,US,O,state -1985-087,2446337.47,1985-09-28,1985,Atlas G Centaur,,INTELSAT VA F12,US,US,O,state -1985-092,2446342.14,1985-10-03,1985,Space Shuttle,,OV-104 IUS deploy,US,US,O,state -1986-003,2446443,1986-01-12,1986,Space Shuttle,,OV-102 PAM deploy,US,US,O,state -1986-069,2446679.13,1986-09-05,1986,Delta 3920,,Payload Adapter System,US,US,O,state -1986-088,2446748.52,1986-11-14,1986,Scout G-1,,NNS O-17,US,US,O,state -1986-096,2446769.6,1986-12-05,1986,Atlas G Centaur,,FLTSATCOM F7,US,US,O,state -1987-022,2446853.46,1987-02-26,1987,Delta 3924,,GOES H,US,US,O,state -1987-029,2446875.43,1987-03-20,1987,Delta 3920/PAM,,Palapa B2P,US,US,O,state -1987-080,2447055.31,1987-09-16,1987,Scout G-1,,NNS O-27,US,US,O,state -1988-106,2447498.1,1988-12-02,1988,Space Shuttle,,OV-104 LEO deploy,US,US,O,state -1988-008,2447200.42,1988-02-08,1988,Delta 3910,,Canister Cluster,US,US,O,state -1988-033,2447277.58,1988-04-26,1988,Scout G-1,,NNS O-23,US,US,O,state -1988-052,2447328.79,1988-06-16,1988,Scout G-1,,Nova 2,US,US,O,state -1988-074,2447398.79,1988-08-25,1988,Scout G-1,,NNS O-25,US,US,O,state -1988-091,2447434.15,1988-09-29,1988,Space Shuttle,,OV-103 IUS deploy,US,US,O,state -1989-021,2447599.12,1989-03-13,1989,Space Shuttle,,OV-103 IUS deploy,US,US,O,state -1989-033,2447651.28,1989-05-04,1989,Space Shuttle,,OV-104 IUS deploy,US,US,O,state -1989-061,2447747.03,1989-08-08,1989,Space Shuttle,,OV-102 Medium deploy,US,US,O,state -1989-077,2447794.87,1989-09-25,1989,Atlas G Centaur,,FLTSATCOM F8,US,US,O,state -1989-084,2447818.2,1989-10-18,1989,Space Shuttle,,OV-104 IUS deploy,US,US,O,state -1989-089,2447849.11,1989-11-18,1989,Delta 5920-8,,COBE,US,US,O,state -1989-090,2447853.52,1989-11-23,1989,Space Shuttle,,OV-103 IUS deploy,US,US,O,state -1990-002,2447901.02,1990-01-09,1990,Space Shuttle,,OV-102 Medium dep/Rend,US,US,O,state -1990-106,2448227.78,1990-12-02,1990,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1990-019,2447950.83,1990-02-28,1990,Space Shuttle,,OV-104 LEO deploy,US,US,O,state -1990-037,2448006.02,1990-04-24,1990,Space Shuttle,,OV-103 HST mission,US,US,O,state -1990-043,2448021.24,1990-05-09,1990,Scout G-1,,MACSAT 1,US,US,O,state -1990-090,2448170.99,1990-10-06,1990,Space Shuttle,,OV-103 IUS deploy,US,US,O,state -1990-097,2448211.49,1990-11-15,1990,Space Shuttle,,OV-104 Medium dep,US,US,O,state -1991-027,2448352.1,1991-04-05,1991,Space Shuttle,,OV-104 LEO deploy,US,US,O,state -1991-031,2448374.98,1991-04-28,1991,Space Shuttle,,OV-103 Research/FF,US,US,O,state -1991-040,2448413.06,1991-06-05,1991,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1991-045,2448437.08,1991-06-29,1991,Scout G-1,,REX,US,US,O,state -1991-054,2448471.13,1991-08-02,1991,Space Shuttle,,OV-104 IUS deploy,US,US,O,state -1991-063,2448512.47,1991-09-12,1991,Space Shuttle,,OV-103 LEO deploy,US,US,O,state -1991-080,2448585.49,1991-11-24,1991,Space Shuttle,,OV-104 IUS deploy,US,US,O,state -1992-002,2448644.12,1992-01-22,1992,Space Shuttle,,OV-103 Spacelab,US,US,O,state -1992-015,2448706.05,1992-03-24,1992,Space Shuttle,,OV-104 Spacelab,US,US,O,state -1992-026,2448750.49,1992-05-07,1992,Space Shuttle,,OV-105 Rendezvous,US,US,O,state -1992-034,2448799.18,1992-06-25,1992,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1992-038,2448807.1,1992-07-03,1992,Scout G-1,,SAMPEX,US,US,O,state -1992-049,2448835.08,1992-07-31,1992,Space Shuttle,,OV-104 Research/FF,US,US,O,state -1992-061,2448878.1,1992-09-12,1992,Space Shuttle,,OV-105 Spacelab,US,US,O,state -1992-070,2448918.22,1992-10-22,1992,Space Shuttle,,OV-102 Research/Med dep,US,US,O,state -1992-078,2448948.07,1992-11-21,1992,Scout G-1,,MSTI-1,US,US,O,state -1992-086,2448959.06,1992-12-02,1992,Space Shuttle,,OV-103 Medium deploy,US,US,O,state -1993-003,2449001.08,1993-01-13,1993,Space Shuttle,,OV-105 IUS deploy,US,US,O,state -1993-023,2449085.73,1993-04-08,1993,Space Shuttle,,OV-103 Spacelab,US,US,O,state -1993-027,2449104.12,1993-04-26,1993,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1993-037,2449160.05,1993-06-21,1993,Space Shuttle,,OV-105 Research/Rendez,US,US,O,state -1993-041,2449164.48,1993-06-25,1993,Scout G-1,,RADCAL,US,US,O,state -1993-058,2449242.99,1993-09-12,1993,Space Shuttle,,OV-103 IUS deploy/FF,US,US,O,state -1993-065,2449279.12,1993-10-18,1993,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1993-075,2449323.89,1993-12-02,1993,Space Shuttle,,OV-105 HST mission,US,US,O,state -1994-006,2449387.01,1994-02-03,1994,Space Shuttle,,OV-103 Research/FF,US,US,O,state -1994-015,2449416.08,1994-03-04,1994,Space Shuttle,,OV-102 Research,US,US,O,state -1994-020,2449451.96,1994-04-09,1994,Space Shuttle,,OV-105 Spacelab,US,US,O,state -1994-028,2449481.62,1994-05-09,1994,Scout G-1,,MSTI-2,US,US,O,state -1994-039,2449542.2,1994-07-08,1994,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1994-059,2449605.43,1994-09-09,1994,Space Shuttle,,OV-103 Research/FF,US,US,O,state -1994-062,2449625.97,1994-09-30,1994,Space Shuttle,,OV-105 Spacelab,US,US,O,state -1994-073,2449660.21,1994-11-03,1994,Space Shuttle,,OV-104 Spacelab,US,US,O,state -1995-004,2449751.72,1995-02-03,1995,Space Shuttle,,OV-103 Shuttle/Mir,US,US,O,state -1995-007,2449778.78,1995-03-02,1995,Space Shuttle,,OV-105 Spacelab,US,US,O,state -1995-030,2449896.31,1995-06-27,1995,Space Shuttle,,OV-104 Shuttle/Mir,US,US,O,state -1995-035,2449912.07,1995-07-13,1995,Space Shuttle,,OV-103 IUS deploy,US,US,O,state -1995-048,2449968.13,1995-09-07,1995,Space Shuttle,,OV-105 Research/FF,US,US,O,state -1995-056,2450011.08,1995-10-20,1995,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1995-061,2450034.02,1995-11-12,1995,Space Shuttle,,OV-104 Shuttle/Mir,US,US,O,state -1996-001,2450093.9,1996-01-11,1996,Space Shuttle,,OV-105 Research/FF,US,US,O,state -1996-012,2450136.35,1996-02-22,1996,Space Shuttle,,OV-102 Research/FF,US,US,O,state -1996-018,2450164.84,1996-03-22,1996,Space Shuttle,,OV-104 Shuttle/Mir,US,US,O,state -1996-032,2450222.94,1996-05-19,1996,Space Shuttle,,OV-105 Research/FF,US,US,O,state -1996-036,2450255.12,1996-06-20,1996,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1996-057,2450342.87,1996-09-16,1996,Space Shuttle,,OV-104 Shuttle/Mir,US,US,O,state -1996-065,2450407.33,1996-11-19,1996,Space Shuttle,,OV-102 Research/FF,US,US,O,state -1997-001,2450460.89,1997-01-12,1997,Space Shuttle,,OV-104 Shuttle/Mir,US,US,O,state -1997-004,2450490.87,1997-02-11,1997,Space Shuttle,,OV-103 HST mission,US,US,O,state -1997-013,2450543.31,1997-04-04,1997,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1997-023,2450583.84,1997-05-15,1997,Space Shuttle,,OV-104 Shuttle/Mir,US,US,O,state -1997-032,2450631.25,1997-07-01,1997,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1997-039,2450668.11,1997-08-07,1997,Space Shuttle,,OV-103 Research/FF,US,US,O,state -1997-055,2450717.61,1997-09-26,1997,Space Shuttle,,OV-104 Shuttle/Mir,US,US,O,state -1997-061,2450736.86,1997-10-15,1997,Titan 401B/Centaur,,Cassini,US,US,O,state -1997-073,2450772.32,1997-11-19,1997,Space Shuttle,,OV-102 Research/FF,US,US,O,state -1998-003,2450836.62,1998-01-23,1998,Space Shuttle,,OV-105 Shuttle/Mir,US,US,O,state -1998-022,2450921.26,1998-04-17,1998,Space Shuttle,,OV-102 Spacelab,US,US,O,state -1998-034,2450967.42,1998-06-02,1998,Space Shuttle,,OV-103 Shuttle/Mir,US,US,O,state -1998-064,2451116.31,1998-10-29,1998,Space Shuttle,,OV-103 Research/FF,US,US,O,state -1998-069,2451151.86,1998-12-04,1998,Space Shuttle,,OV-105 ISS,US,US,O,state -1999-030,2451325.95,1999-05-27,1999,Space Shuttle,,OV-103 ISS,US,US,O,state -1999-040,2451382.69,1999-07-23,1999,Space Shuttle,,OV-102 IUS deploy,US,US,O,state -1999-069,2451532.53,1999-12-20,1999,Space Shuttle,,OV-103 HST mission,US,US,O,state -2000-010,2451586.24,2000-02-11,2000,Space Shuttle,,OV-105 Spacelab,US,US,O,state -2000-027,2451683.92,2000-05-19,2000,Space Shuttle,,OV-104 ISS,US,US,O,state -2000-053,2451796.03,2000-09-08,2000,Space Shuttle,,OV-104 ISS,US,US,O,state -2000-062,2451829.47,2000-10-11,2000,Space Shuttle,,OV-103 ISS,US,US,O,state -2000-078,2451879.63,2000-12-01,2000,Space Shuttle,,OV-105 ISS,US,US,O,state -2001-006,2451948.47,2001-02-07,2001,Space Shuttle,,OV-104 ISS,US,US,O,state -2001-010,2451976.99,2001-03-08,2001,Space Shuttle,,OV-103 ISS,US,US,O,state -2001-016,2452019.28,2001-04-19,2001,Space Shuttle,,OV-105 ISS,US,US,O,state -2001-028,2452102.88,2001-07-12,2001,Space Shuttle,,OV-104 ISS,US,US,O,state -2001-035,2452132.38,2001-08-10,2001,Space Shuttle,,OV-103 ISS,US,US,O,state -2001-054,2452249.43,2001-12-05,2001,Space Shuttle,,OV-105 ISS,US,US,O,state -2002-010,2452334.97,2002-03-01,2002,Space Shuttle,,OV-102 HST mission,US,US,O,state -2002-018,2452373.36,2002-04-08,2002,Space Shuttle,,OV-104 ISS,US,US,O,state -2002-028,2452431.39,2002-06-05,2002,Space Shuttle,,OV-105 ISS,US,US,O,state -2002-047,2452555.32,2002-10-07,2002,Space Shuttle,,OV-104 ISS,US,US,O,state -2002-052,2452602.53,2002-11-24,2002,Space Shuttle,,OV-105 ISS,US,US,O,state -2003-003,2452656.15,2003-01-16,2003,Space Shuttle,,OV-102 Research,US,US,O,state -2005-026,2453578.11,2005-07-26,2005,Space Shuttle,,OV-103 ISS,US,US,O,state -2006-028,2453921.28,2006-07-04,2006,Space Shuttle,,OV-103 ISS,US,US,O,state -2006-036,2453988.14,2006-09-09,2006,Space Shuttle,,OV-104 ISS,US,US,O,state -2006-055,2454079.57,2006-12-10,2006,Space Shuttle,,OV-103 ISS,US,US,O,state -2007-024,2454260.48,2007-06-08,2007,Space Shuttle,,OV-104 ISS,US,US,O,state -2007-035,2454321.44,2007-08-08,2007,Space Shuttle,,OV-105 ISS,US,US,O,state -2007-050,2454397.15,2007-10-23,2007,Space Shuttle,,OV-103 ISS,US,US,O,state -2008-005,2454504.32,2008-02-07,2008,Space Shuttle,,OV-104 ISS,US,US,O,state -2008-009,2454536.77,2008-03-11,2008,Space Shuttle,,OV-105 ISS,US,US,O,state -2008-027,2454618.38,2008-05-31,2008,Space Shuttle,,OV-103 ISS,US,US,O,state -2008-059,2454785.54,2008-11-15,2008,Space Shuttle,,OV-105 ISS,US,US,O,state -2009-012,2454906.49,2009-03-15,2009,Space Shuttle,,OV-103 ISS,US,US,O,state -2009-025,2454963.25,2009-05-11,2009,Space Shuttle,,OV-104 HST mission,US,US,O,state -2009-038,2455028.42,2009-07-15,2009,Space Shuttle,,OV-105 ISS,US,US,O,state -2009-045,2455072.67,2009-08-29,2009,Space Shuttle,,OV-103 ISS,US,US,O,state -2009-062,2455152.31,2009-11-16,2009,Space Shuttle,,OV-104 ISS,US,US,O,state -2010-004,2455235.88,2010-02-08,2010,Space Shuttle,,OV-105 ISS,US,US,O,state -2010-012,2455291.93,2010-04-05,2010,Space Shuttle,,OV-103 ISS,US,US,O,state -2010-019,2455331.26,2010-05-14,2010,Space Shuttle,,OV-104 ISS,US,US,O,state -2011-008,2455617.41,2011-02-24,2011,Space Shuttle,,OV-103 ISS,US,US,O,state -2011-020,2455698.04,2011-05-16,2011,Space Shuttle,,OV-105 ISS,US,US,O,state -2011-031,2455751.15,2011-07-08,2011,Space Shuttle,,OV-104 ISS,US,US,O,state -1959-F05,2436766.23,1959-07-16,1959,Juno II,,NASA S-1,US,US,F,state -1960-F04,2437017.07,1960-03-23,1960,Juno II,,NASA S-46,US,US,F,state -1960-F07,2437067.89,1960-05-13,1960,Thor Delta,,A-10 Echo,US,US,F,state -1960-F17,2437273.38,1960-12-04,1960,Scout X-1,,NASA S-56,US,US,F,state -1961-F01,2437355.51,1961-02-25,1961,Juno II,,NASA S-45,US,US,F,state -1961-F04,2437444.33,1961-05-24,1961,Juno II,,NASA S-45A,US,US,F,state -1961-F06,2437481.21,1961-06-30,1961,Scout X-1,,NASA S-55,US,US,F,state -1964-F02,2438473.97,1964-03-19,1964,Thor Delta B,,BE-A,US,US,F,state -1964-F09,2438577.09,1964-06-30,1964,Atlas Centaur,,AC-3,US,US,F,state -1965-F04,2438822.06,1965-03-02,1965,Atlas Centaur,,Surveyor SD-1,US,US,F,state -1965-F09,2438998.14,1965-08-25,1965,Thor Delta C,,OSO C,US,US,F,state -1968-F08,2440118.51,1968-09-19,1968,Thor Delta M,,INTELSAT III F-1,US,US,F,state -1969-F12,2440461.42,1969-08-27,1969,Thor Delta L,,TETR C,US,US,F,state -1971-F04,2441080.55,1971-05-09,1971,Atlas SLV-3C Centaur,,Mariner 71H,US,US,F,state -1973-F06,2441880.22,1973-07-16,1973,Delta 0300,,ITOS E,US,US,F,state -1975-F01,2442464.48,1975-02-20,1975,Atlas SLV-3D Centaur,,INTELSAT IV F6,US,US,F,state -1977-F04,2443400.48,1977-09-13,1977,Delta 3914,,OTS 1,US,US,F,state -1977-F05,2443416.54,1977-09-30,1977,Atlas SLV-3D Centaur,,INTELSAT IVA F5,US,US,F,state -1986-F01,2446459.19,1986-01-28,1986,Space Shuttle,,OV-099 IUS deploy,US,US,F,state -1986-F04,2446554.43,1986-05-03,1986,Delta 3914,,GOES G,US,US,F,state -1987-F02,2446881.39,1987-03-26,1987,Atlas G Centaur,,FLTSATCOM F6,US,US,F,state -1975-082,2442664.73,1975-09-09,1975,N-1,,ETS 1,J,J,O,state -1976-019,2442837.65,1976-02-29,1976,N-1,,ISS,J,J,O,state -1977-014,2443197.87,1977-02-23,1977,N-1,,ETS-2,J,J,O,state -1978-018,2443555.67,1978-02-16,1978,N-1,,ISS-b,J,J,O,state -1979-009,2443910.87,1979-02-06,1979,N-1,,ECS,J,J,O,state -1980-018,2444291.86,1980-02-22,1980,N-1,,ECS-b,J,J,O,state -1981-012,2444646.85,1981-02-11,1981,N-2,,ETS-4,J,J,O,state -1981-076,2444827.34,1981-08-10,1981,N-2,,GMS 2,J,J,O,state -1982-087,2445215.71,1982-09-03,1982,N-1,,ETS 3,J,J,O,state -1983-006,2445369.86,1983-02-04,1983,N-2,,CS 2A,J,J,O,state -1983-081,2445552.35,1983-08-05,1983,N-2,,CS-2B,J,J,O,state -1984-005,2445722.83,1984-01-23,1984,N-2,,BS 2A,J,J,O,state -1984-080,2445915.35,1984-08-02,1984,N-2,,GMS 3,J,J,O,state -1986-016,2446473.83,1986-02-12,1986,N-2,,BS 2b,J,J,O,state -1986-061,2446655.36,1986-08-12,1986,H-1,(2),EGP,J,J,O,state -1987-018,2446845.56,1987-02-19,1987,N-2,(2),MOS-1,J,J,O,state -1987-070,2447034.89,1987-08-27,1987,H-1,,ETS-5,J,J,O,state -1988-012,2447210.92,1988-02-19,1988,H-1,,CS-3A,J,J,O,state -1988-086,2447420.92,1988-09-16,1988,H-1,,CS-3B,J,J,O,state -1989-070,2447775.3,1989-09-05,1989,H-1,6R,GMS 4,J,J,O,state -1990-013,2447929.56,1990-02-07,1990,H-1,(2),Mos-1b,J,J,O,state -1990-077,2448131.88,1990-08-28,1990,H-1,,BS 3A,J,J,O,state -1991-060,2448493.86,1991-08-25,1991,H-1,,BS 3B,J,J,O,state -1992-007,2448663.58,1992-02-11,1992,H-1,(2),ERS-1,J,J,O,state -1994-007,2449387.43,1994-02-03,1994,H-II,,OREX,J,J,O,state -1994-056,2449592.83,1994-08-28,1994,H-II,,ETS-6,J,J,O,state -1995-011,2449794.83,1995-03-18,1995,H-II,(2S),SFU,J,J,O,state -1996-046,2450312.58,1996-08-17,1996,H-II,,ADEOS,J,J,O,state -1997-074,2450780.39,1997-11-27,1997,H-II,,TRMM,J,J,O,state -1998-011,2450865.83,1998-02-21,1998,H-II,,COMETS,J,J,O,state -2001-038,2452150.79,2001-08-29,2001,H-IIA 202,,LRE,J,J,O,state -2002-003,2452309.61,2002-02-04,2002,H-IIA 2024,,MDS-1,J,J,O,state -2002-042,2452527.85,2002-09-10,2002,H-IIA 2024,,USERS SEM,J,J,O,state -2002-056,2452622.56,2002-12-14,2002,H-IIA 202,,ADEOS-2,J,J,O,state -2003-009,2452726.56,2003-03-28,2003,H-IIA 2024,,IGS Optical-1,J,J,O,state -1999-F04,2451497.81,1999-11-15,1999,H-II,,MTSAT,J,J,F,state -2003-F02,2452972.69,2003-11-29,2003,H-IIA 2024,,IGS Optical-2,J,J,F,state -2017-050,2457991.75,2017-08-26,2017,Minotaur IV,2,ORS-5,OATK,US,O,private -2017-068,2458058.4,2017-10-31,2017,Minotaur-C 3210,,Planet Express,OATK,US,O,private -1990-028,2447987.3,1990-04-05,1990,Pegasus,,Pegsat,OSC,US,O,private -1991-051,2448455.23,1991-07-17,1991,Pegasus/HAPS,,Microsat 1,OSC,US,O,private -1993-009,2449028.1,1993-02-09,1993,Pegasus,,Orbcomm OXP,OSC,US,O,private -1993-026,2449103.08,1993-04-25,1993,Pegasus,,Alexis,OSC,US,O,private -1994-017,2449425.44,1994-03-13,1994,ARPA Taurus,,P90-5,OSC,US,O,private -1994-029,2449492.21,1994-05-19,1994,Pegasus/HAPS,,STEP 2,OSC,US,O,private -1994-046,2449568.11,1994-08-03,1994,Pegasus,,APEX,OSC,US,O,private -1995-017,2449811.08,1995-04-03,1995,Pegasus H,,Orbcomm FM1,OSC,US,O,private -1996-014,2450151.56,1996-03-09,1996,Pegasus XL,,REX II,OSC,US,O,private -1996-031,2450220.61,1996-05-17,1996,Pegasus H,,MSTI 3,OSC,US,O,private -1996-037,2450266.83,1996-07-02,1996,Pegasus XL,,TOMS-EP,OSC,US,O,private -1996-049,2450316.91,1996-08-21,1996,Pegasus XL,,FAST,OSC,US,O,private -1996-061,2450392.21,1996-11-04,1996,Pegasus XL,,HETE,OSC,US,O,private -1997-018,2450560,1997-04-21,1997,Pegasus XL,,Minisat-01,OSC,US,O,private -1997-037,2450662.35,1997-08-01,1997,Pegasus XL,,Seastar,OSC,US,O,private -1997-047,2450690.13,1997-08-29,1997,Pegasus XL,,FORTE,OSC,US,O,private -1997-063,2450744.05,1997-10-22,1997,Pegasus XL,,STEP M4,OSC,US,O,private -1997-084,2450806.3,1997-12-23,1997,Pegasus XL/HAPS,,Orbcomm FM5,OSC,US,O,private -1998-007,2450855.06,1998-02-10,1998,Taurus 2210,,GFO,OSC,US,O,private -1998-012,2450870.8,1998-02-26,1998,Pegasus XL,,SNOE,OSC,US,O,private -1998-020,2450905.61,1998-04-02,1998,Pegasus XL,,TRACE,OSC,US,O,private -1998-046,2451028.18,1998-08-02,1998,Pegasus XL/HAPS,,Orbcomm FM17,OSC,US,O,private -1998-053,2451079.71,1998-09-23,1998,Pegasus XL/HAPS,,Orbcomm FM21,OSC,US,O,private -1998-055,2451089.92,1998-10-03,1998,ARPA Taurus,,STEX,OSC,US,O,private -1998-060,2451109.5,1998-10-23,1998,Pegasus H,,SCD-2,OSC,US,O,private -1998-071,2451153.54,1998-12-06,1998,Pegasus XL,,SWAS,OSC,US,O,private -1999-011,2451242.62,1999-03-05,1999,Pegasus XL,,WIRE,OSC,US,O,private -1999-026,2451316.71,1999-05-18,1999,Pegasus XL/HAPS,,TERRIERS,OSC,US,O,private -1999-065,2451517.29,1999-12-04,1999,Pegasus XL/HAPS,,Orbcomm FM30,OSC,US,O,private -1999-070,2451533.8,1999-12-21,1999,Taurus 2110,,KOMPSAT,OSC,US,O,private -2000-014,2451615.9,2000-03-12,2000,Taurus 1110,,MTI,OSC,US,O,private -2000-030,2451703.06,2000-06-07,2000,Pegasus XL,,TSX-5,OSC,US,O,private -2000-061,2451826.73,2000-10-09,2000,Pegasus H,,HETE 2,OSC,US,O,private -2002-004,2452311.37,2002-02-05,2002,Pegasus XL,,HESSI,OSC,US,O,private -2003-004,2452665.34,2003-01-25,2003,Pegasus XL,,SORCE,OSC,US,O,private -2003-017,2452758,2003-04-28,2003,Pegasus XL,,GALEX,OSC,US,O,private -2003-030,2452817.29,2003-06-26,2003,Pegasus XL,,Orbview-3,OSC,US,O,private -2003-036,2452864.59,2003-08-13,2003,Pegasus XL,,SCISAT-1,OSC,US,O,private -2004-018,2453146.24,2004-05-20,2004,Taurus 3210,,ROCSAT-2,OSC,US,O,private -2005-014,2453476.23,2005-04-15,2005,Pegasus XL/HAPS,,DART/HAPS,OSC,US,O,private -2006-008,2453817.09,2006-03-22,2006,Pegasus XL,,Space Technology 5,OSC,US,O,private -2007-015,2454216.35,2007-04-25,2007,Pegasus XL,,AIM,OSC,US,O,private -2008-017,2454573.21,2008-04-16,2008,Pegasus XL,,C/NOFS,OSC,US,O,private -2008-051,2454759.24,2008-10-19,2008,Pegasus XL,,IBEX,OSC,US,O,private -2012-031,2456092.17,2012-06-13,2012,Pegasus XL,,NuSTAR,OSC,US,O,private -2013-016,2456404.38,2013-04-21,2013,Antares 110,,A-ONE,OSC,US,O,private -2013-033,2456471.6,2013-06-28,2013,Pegasus XL,,IRIS,OSC,US,O,private -2013-047,2456542.64,2013-09-07,2013,Minotaur V,,LADEE,OSC,US,O,private -2013-051,2456554.12,2013-09-18,2013,Antares 110,,Cygnus 1,OSC,US,O,private -2014-003,2456667.25,2014-01-09,2014,Antares 120,,Cygnus 2,OSC,US,O,private -2014-039,2456852.2,2014-07-13,2014,Antares 120,,Cygnus 3,OSC,US,O,private -2016-062,2457679.49,2016-10-17,2016,Antares 230,,Cygnus OA-5,OSC,US,O,private -2016-078,2457738.07,2016-12-15,2016,Pegasus XL,,CYGNSS,OSC,US,O,private -2017-071,2458070.01,2017-11-12,2017,Antares 230,,Cygnus OA-8,OSC,US,O,private -2018-046,2458259.86,2018-05-21,2018,Antares 230,,Cygnus OA-9,OSC,US,O,private -1994-F03,2449531.39,1994-06-27,1994,Pegasus XL,,STEP 1,OSC,US,F,private -1995-F03,2449891.33,1995-06-22,1995,Pegasus XL,,STEP 3,OSC,US,F,private -2009-F01,2454886.91,2009-02-24,2009,Taurus 3110,,Orbiting Carbon Observat,OSC,US,F,private -2011-F01,2455624.92,2011-03-04,2011,Taurus 3110,,Glory,OSC,US,F,private -2014-F02,2456959.43,2014-10-28,2014,Antares 130,,Cygnus 4,OSC,US,F,private -2013-053,2456560.69,2013-09-25,2013,Kuaizhou,,,CN,CN,O,state -2014-073,2456982.78,2014-11-21,2014,Kuaizhou,,,CN,CN,O,state -2002-F01,2452532.94,2002-09-15,2002,KT-1,,HTSTL-1,CN,CN,F,state -2005-F04,2453530.5,,2005,KT-1,?,MS-1?,CN,CN,F,state -2000-074,2451869.46,2000-11-20,2000,Kosmos 11K65M,,QuickBird 1,PU,RU,O,private -2000-079,2451884.02,2000-12-05,2000,Start-1,,EROS A1,PU,RU,O,private -2001-007,2451960.87,2001-02-20,2001,Start-1,,Odin,PU,RU,O,private -2006-014,2453851.2,2006-04-25,2006,Start-1,,EROS B,PU,RU,O,private -1971-093,2441252.67,1971-10-28,1971,Black Arrow,,X-3,UK,UK,O,state -1970-F07,2440831.52,1970-09-02,1970,Black Arrow,,X-2,UK,UK,F,state -2000-005,2451575.78,2000-02-01,2000,Soyuz-U-PVB,,Progress 7K-TGM No. 250,RU,RU,O,state -2000-018,2451638.71,2000-04-04,2000,Soyuz-U-PVB,,Soyuz 7K-STM No. 204,RU,RU,O,state -2000-021,2451660.34,2000-04-25,2000,Soyuz-U-PVB,,Progress M1 No. 252,RU,RU,O,state -2000-044,2451763.27,2000-08-06,2000,Soyuz-U-PVB,,Progress M1 No. 251,RU,RU,O,state -2000-064,2451834.39,2000-10-16,2000,Soyuz-U-PVB,,Progress 7K-TGM No. 243,RU,RU,O,state -2000-070,2451848.83,2000-10-31,2000,Soyuz-U-PVB,,Soyuz 7K-STM No. 205,RU,RU,O,state -2000-073,2451864.56,2000-11-16,2000,Soyuz-U-PVB,,Progress M1 No. 253,RU,RU,O,state -2001-003,2451933.69,2001-01-24,2001,Soyuz-U-PVB,,Progress M1 No. 254,RU,RU,O,state -2001-008,2451966.84,2001-02-26,2001,Soyuz-U-PVB,,Progress 7K-TGM No. 244,RU,RU,O,state -2001-017,2452027.82,2001-04-28,2001,Soyuz-U-PVB,,Soyuz 7K-STM No. 206,RU,RU,O,state -2001-021,2452050.44,2001-05-20,2001,Soyuz-FG,,Progress M1 No. 255,RU,RU,O,state -2001-036,2452142.89,2001-08-21,2001,Soyuz-U-PVB,,Progress M No. 245,RU,RU,O,state -2001-041,2452167.48,2001-09-14,2001,Soyuz-U-PVB,,Progress No. 301,RU,RU,O,state -2001-048,2452203.87,2001-10-21,2001,Soyuz-U-PVB,,Soyuz TM No. 207,RU,RU,O,state -2001-051,2452240.27,2001-11-26,2001,Soyuz-FG,,Progress M1 No. 256,RU,RU,O,state -2002-013,2452355.34,2002-03-21,2002,Soyuz-U-PVB,,Progress M1 No. 257,RU,RU,O,state -2002-020,2452389.77,2002-04-25,2002,Soyuz-U-PVB,,Soyuz TM No. 208,RU,RU,O,state -2002-033,2452451.73,2002-06-26,2002,Soyuz-U-PVB,,Progress M No. 246,RU,RU,O,state -2002-045,2452543.21,2002-09-25,2002,Soyuz-FG,,Progress M1 No. 258,RU,RU,O,state -2002-050,2452577.63,2002-10-30,2002,Soyuz-FG,,Soyuz 11F732 No. 211,RU,RU,O,state -2003-006,2452673.04,2003-02-02,2003,Soyuz-U-PVB,,Progress M No. 247,RU,RU,O,state -2003-016,2452755.66,2003-04-26,2003,Soyuz-FG,,Soyuz 11F732 No. 212,RU,RU,O,state -2003-025,2452798.94,2003-06-08,2003,Soyuz-U-PVB,,Progress M1 No. 259,RU,RU,O,state -2003-039,2452880.57,2003-08-29,2003,Soyuz-U-PVB,,Progress M No. 248,RU,RU,O,state -2003-047,2452930.73,2003-10-18,2003,Soyuz-FG,,Soyuz 11F732 No. 213,RU,RU,O,state -2004-002,2453034,2004-01-29,2004,Soyuz-U-PVB,,Progress M1 No. 260,RU,RU,O,state -2002-F02,2452563.26,2002-10-15,2002,Soyuz-U-PVB,,Foton-M No. 1,RU,RU,F,state -2011-065,2455874.34,2011-11-08,2011,Zenit-2SB,,Pereletniy modul' FG,RU,RU,O,state -2018-010,2458139.57,2018-01-21,2018,Electron,,Dove/Lemurs,RLABU,US,O,startup -2017-F02,2457898.68,2017-05-25,2017,Electron,,,RLABU,US,F,startup -2005-006,2453427.89,2005-02-26,2005,H-IIA 2022,,MTSAT-1R,RSC,J,O,private -2006-002,2453759.56,2006-01-24,2006,H-IIA 2022,,ALOS,RSC,J,O,private -2006-004,2453784.77,2006-02-18,2006,H-IIA 2024,,MTSAT-2,RSC,J,O,private -1960 EPS,2437069.5,1960-05-15,1960,Vostok 8K72,,Vostok-1P,,SU,O,state -1960 LAM,2437165.86,1960-08-19,1960,Vostok 8K72,,Vostok-1 No. 2,,SU,O,state -1960 RHO,2437269.81,1960-12-01,1960,Vostok 8K72,,Vostok-1 No. 3,,SU,O,state -1961 BET,2437334.55,1961-02-04,1961,Molniya 8K78,,1VA No. 1,,SU,O,state -1961 GAM,2437342.52,1961-02-12,1961,Molniya 8K78,,1VA No. 2,,SU,O,state -1961 THE,2437367.77,1961-03-09,1961,Vostok 8K72K,,Vostok-3 No. 1,,SU,O,state -1961 IOT,2437383.75,1961-03-25,1961,Vostok 8K72K,,Vostok-3 No. 2,,SU,O,state -1961 MU,2437401.75,1961-04-12,1961,Vostok 8K72K,,Vostok-3A No. 3,,SU,O,state -1961 TAU,2437517.75,1961-08-06,1961,Vostok 8K72K,,Vostok-3A No. 4,,SU,O,state -1962 THE,2437740,1962-03-16,1962,Kosmos 63S1,,DS-2 No. 1,,SU,O,state -1962 IOT,2437761.22,1962-04-06,1962,Kosmos 63S1,,1MS No. 1,,SU,O,state -1962 NU,2437778.67,1962-04-24,1962,Kosmos 63S1,,2MS No. 1,,SU,O,state -1962 XI,2437780.92,1962-04-26,1962,Vostok 8K72K,,Zenit-2 No. 2,,SU,O,state -1962 UPS,2437812.62,1962-05-28,1962,Kosmos 63S1,,2MS No. 2,,SU,O,state -1962 A DEL,2437846.17,1962-06-30,1962,Kosmos 63S1,,DS-P1 No. 1,,SU,O,state -1962 A IOT,2437873.89,1962-07-28,1962,Vostok 8A92,,Zenit-2 No. 4,,SU,O,state -1962 A MU,2437887.85,1962-08-11,1962,Vostok 8K72K,,Vostok-3A No. 5,,SU,O,state -1962 A NU,2437888.83,1962-08-12,1962,Vostok 8K72K,,Vostok-3A No. 6,,SU,O,state -1962 A XI,2437895.12,1962-08-18,1962,Kosmos 63S1,,DS-K-8 No. 1,,SU,O,state -1962 A PI,2437901.6,1962-08-25,1962,Molniya 8K78,,2MV-1 No. 1,,SU,O,state -1962 A TAU,2437908.59,1962-09-01,1962,Molniya 8K78,,2MV-1 No. 2,,SU,O,state -1962 A PHI,2437919.54,1962-09-12,1962,Molniya 8K78,,2MV-2 No. 1,,SU,O,state -1962 A OME,2437934.9,1962-09-27,1962,Vostok 8A92,,Zenit-2 No. 7,,SU,O,state -1962 B ZET,2437954.88,1962-10-17,1962,Vostok 8A92,,Zenit-2 No. 5,,SU,O,state -1962 B THE,2437957.67,1962-10-20,1962,Kosmos 63S1,,DS-A1 No. 1,,SU,O,state -1962 B IOT,2437962.25,1962-10-24,1962,Molniya 8K78,,2MV-4 No. 1,,SU,O,state -1962 B NU,2437970.18,1962-11-01,1962,Molniya 8K78,,2MV-4 No. 2,,SU,O,state -1962 B XI,2437973.15,1962-11-04,1962,Molniya 8K78,,2MV-3 No. 1,,SU,O,state -1962 B OME,2438020.89,1962-12-22,1962,Vostok 8A92,,Zenit-2 No. 6,,SU,O,state -1963-001,2438033.87,1963-01-04,1963,Molniya 8K78,E6,E-6 No. 2,,SU,O,state -1963-006,2438109.85,1963-03-21,1963,Vostok 8A92,,Zenit-2 No. 9,,SU,O,state -1963-008,2438121.84,1963-04-02,1963,Molniya 8K78,E6,E-6 No. 4,,SU,O,state -1963-010,2438132.96,1963-04-13,1963,Kosmos 63S1,,Omega-1 No. 1,,SU,O,state -1963-011,2438141.85,1963-04-22,1963,Vostok 8A92,,Zenit-2 No. 8,,SU,O,state -1963-012,2438147.87,1963-04-28,1963,Vostok 8A92,,Zenit-2 No. 10,,SU,O,state -1963-017,2438171.62,1963-05-22,1963,Kosmos 63S1,,DS-A1 No. 2,,SU,O,state -1963-018,2438173.94,1963-05-24,1963,Vostok 8A92,,Zenit-2 No. 11,,SU,O,state -1963-020,2438195,1963-06-14,1963,Vostok 8K72K,,Vostok-3A No. 7,,SU,O,state -1963-023,2438196.9,1963-06-16,1963,Vostok 8K72K,,Vostok-3A No. 8,,SU,O,state -1963-033,2438247.75,1963-08-06,1963,Kosmos 63S1,,DS-P1 No. 3,,SU,O,state -1963-040,2438320.9,1963-10-18,1963,Vostok 8A92,,Zenit-2 No. 13,,SU,O,state -1963-043,2438334.87,1963-11-01,1963,Sputnik 11A59,,I-2B No. 102,,SU,O,state -1963-044,2438344.77,1963-11-11,1963,Molniya 8K78,,3MV-1 No. 1,,SU,O,state -1963-045,2438349.94,1963-11-16,1963,Voskhod 11A57,,Zenit-4 No. 1,,SU,O,state -1963-050,2438377.09,1963-12-13,1963,Kosmos 63S1,,Omega-1 No. 2,,SU,O,state -1963-052,2438382.9,1963-12-19,1963,Vostok 8A92,,Zenit-2 No. 15,,SU,O,state -1964-006,2438424.91,1964-01-30,1964,Vostok 8K72K,,2D No. 1,,SU,O,state -1964-010,2438453.06,1964-02-27,1964,Kosmos 63S1,,DS-P1 No. 4,,SU,O,state -1964-013,2438473.13,1964-03-18,1964,Kosmos 63S1,,DS-MG No. 1,,SU,O,state -1964-014,2438481.64,1964-03-27,1964,Molniya 8K78,M,3MV-1 No. 3,,SU,O,state -1964-016,2438487.61,1964-04-02,1964,Molniya 8K78,M,3MV-1 No. 4,,SU,O,state -1964-017,2438489.91,1964-04-04,1964,Vostok 8A92,,Zenit-2 No. 16,,SU,O,state -1964-019,2438497.9,1964-04-12,1964,Sputnik 11A59,,I-1B No. 112,,SU,O,state -1964-021,2438510.93,1964-04-25,1964,Vostok 8A92,,Zenit-2 No. 19,,SU,O,state -1964-023,2438533.9,1964-05-18,1964,Voskhod 11A57,,Zenit-4 No. 2,,SU,O,state -1964-028,2438552.75,1964-06-06,1964,Kosmos 63S1,,DS-MT No. 2,,SU,O,state -1964-029,2438556.96,1964-06-10,1964,Vostok 8A92,,Zenit-2 No. 18,,SU,O,state -1964-033,2438569.92,1964-06-23,1964,Vostok 8A92,,Zenit-2 No. 20,,SU,O,state -1964-034,2438577.96,1964-07-01,1964,Voskhod 11A57,,Zenit-4 No. 3,,SU,O,state -1964-038,2438587.41,1964-07-10,1964,Vostok 8K72K,,2D No. 3,,SU,O,state -1964-039,2438591.98,1964-07-15,1964,Vostok 8A92,,Zenit-2 No. 21,,SU,O,state -1964-042,2438606.65,1964-07-30,1964,Kosmos 63S1,,DS-P1-Yu No. 1,,SU,O,state -1964-044,2438621.9,1964-08-14,1964,Vostok 8A92,,Zenit-2 No. 22,,SU,O,state -1964-046,2438625.89,1964-08-18,1964,Kosmos 65S3,,Strela-1,,SU,O,state -1964-049,2438629.81,1964-08-22,1964,Molniya 8K78,,Molniya-1 11F67 No. 1,,SU,O,state -1964-050,2438629.96,1964-08-22,1964,Kosmos 63S1,,Strela-1,,SU,O,state -1964-053,2438636.17,1964-08-28,1964,Vostok 8A92M,,Meteor 11F614 No. 1,,SU,O,state -1964-055,2438651.91,1964-09-13,1964,Voskhod 11A57,,Zenit-4 No. 5,,SU,O,state -1964-059,2438663,1964-09-24,1964,Vostok 8A92,,Zenit-2 No. 23,,SU,O,state -1964-062,2438674.79,1964-10-06,1964,Voskhod 11A57,,Voskhod 3KV No. 2,,SU,O,state -1964-065,2438680.81,1964-10-12,1964,Voskhod 11A57,,Voskhod 3KV No. 3,,SU,O,state -1964-066,2438682.92,1964-10-14,1964,Vostok 8A92,,Zenit-2 No. 24,,SU,O,state -1964-069,2438692.72,1964-10-24,1964,Kosmos 63S1,,DS-MG No. 2,,SU,O,state -1964-070,2438696.94,1964-10-28,1964,Vostok 8A92,,Zenit-2 No. 25,,SU,O,state -1964-078,2438730.06,1964-11-30,1964,Molniya 8K78,,3MV-4A No. 2,,SU,O,state -1964-080,2438739.46,1964-12-09,1964,Kosmos 63S1,,DS-MT No. 3,,SU,O,state -1965-001,2438771.9,1965-01-11,1965,Vostok 8A92,,Zenit-2 No. 26,,SU,O,state -1965-103,2439104.84,1965-12-10,1965,Vostok 8A92,,Zenit-2 No. 32,,SU,O,state -1965-006,2438790.9,1965-01-30,1965,Kosmos 63S1,,DS-A1 No. 5,,SU,O,state -1965-106,2439111.6,1965-12-17,1965,Vostok 8A92M,?,Meteor 11F614 No. 3,,SU,O,state -1965-107,2439115.76,1965-12-21,1965,Kosmos 63S1,,DS-P1-Yu No. 4,,SU,O,state -1965-011,2438812.96,1965-02-21,1965,Kosmos 65S3,,Strela-1,,SU,O,state -1965-111,2439122.43,1965-12-27,1965,Soyuz 11A510,,4Ya11 (US-A),,SU,O,state -1965-012,2438813.81,1965-02-22,1965,Voskhod 11A57,,Voskhod 3KD No. 1,,SU,O,state -1965-112,2439123.02,1965-12-28,1965,Kosmos 65S3,,Strela-2,,SU,O,state -1965-014,2438817.71,1965-02-26,1965,Vostok 8A92M,,Meteor 11F614 No. 2,,SU,O,state -1965-015,2438826.87,1965-03-07,1965,Voskhod 11A57,,Zenit-4 No. 11,,SU,O,state -1965-018,2438831.89,1965-03-12,1965,Molniya 8K78,E6,E-6 No. 9,,SU,O,state -1965-020,2438834.96,1965-03-15,1965,Kosmos 65S3,,Strela-1,,SU,O,state -1965-022,2438837.79,1965-03-18,1965,Voskhod 11A57,,Voskhod 3KD No. 4,,SU,O,state -1965-025,2438844.92,1965-03-25,1965,Vostok 8A92,,Zenit-2 No. 17,,SU,O,state -1965-029,2438867.91,1965-04-17,1965,Voskhod 11A57,,Zenit-4 No. 6,,SU,O,state -1965-030,2438873.58,1965-04-23,1965,Molniya 8K78,,Molniya-1 11F67 No. 3,,SU,O,state -1965-035,2438887.9,1965-05-07,1965,Vostok 8A92,,Zenit-2 No. 27,,SU,O,state -1965-036,2438889.83,1965-05-09,1965,Molniya 8K78,M,E-6 No. 10,,SU,O,state -1965-040,2438905.95,1965-05-25,1965,Voskhod 11A57,,Zenit-4 No. 10,,SU,O,state -1965-044,2438919.82,1965-06-08,1965,Molniya 8K78,M,E-6 No. 7,,SU,O,state -1965-046,2438926.9,1965-06-15,1965,Vostok 8A92,,Zenit-2 No. 29,,SU,O,state -1965-049,2438936.91,1965-06-25,1965,Voskhod 11A57,,Zenit-4 No. 4,,SU,O,state -1965-052,2438943.77,1965-07-02,1965,Kosmos 63S1,,DS-A1 No. 7,,SU,O,state -1965-053,2438957.65,1965-07-16,1965,Kosmos 65S3,,Strela-1,,SU,O,state -1965-054,2438957.97,1965-07-16,1965,UR-500,,N-4 No. 1,,SU,O,state -1965-056,2438960.11,1965-07-18,1965,Molniya 8K78,,3MV-4 No. 3,,SU,O,state -1965-059,2438964.69,1965-07-23,1965,Kosmos 63S1,,DS-P1-Yu No. 3,,SU,O,state -1965-061,2438975.96,1965-08-03,1965,Voskhod 11A57,,Zenit-4 No. 13,,SU,O,state -1965-066,2438986.96,1965-08-14,1965,Vostok 8A92,,Zenit-2 No. 30,,SU,O,state -1965-069,2438997.92,1965-08-25,1965,Voskhod 11A57,,Zenit-4 No. 7,,SU,O,state -1965-070,2439007.08,1965-09-03,1965,Kosmos 65S3,,Strela-1,,SU,O,state -1965-071,2439012.9,1965-09-09,1965,Voskhod 11A57,,Zenit-4 No. 8,,SU,O,state -1965-073,2439021.83,1965-09-18,1965,Kosmos 65S3,,Strela-1,,SU,O,state -1965-075,2439026.88,1965-09-23,1965,Voskhod 11A57,,Zenit-4 No. 9,,SU,O,state -1965-077,2439037.82,1965-10-04,1965,Molniya 8K78M,,E-6 No. 11,,SU,O,state -1965-080,2439047.75,1965-10-14,1965,Molniya 8K78,,Molniya-1 11F67 No. 4,,SU,O,state -1965-083,2439049.84,1965-10-16,1965,Voskhod 11A57,,Zenit-4 No. 16,,SU,O,state -1965-084,2439052.74,1965-10-19,1965,Kosmos 11K63,,DS-U2-V No. 1,,SU,O,state -1965-085,2439061.84,1965-10-28,1965,Voskhod 11A57,,Zenit-4 No. 15,,SU,O,state -1965-087,2439067.02,1965-11-02,1965,UR-500,,N-4 No. 2,,SU,O,state -1965-088,2439068.73,1965-11-04,1965,Kosmos 11K63,,DS-U2-V No. 2,,SU,O,state -1965-091,2439076.7,1965-11-12,1965,Molniya 8K78,M,3MV-4 No. 4,,SU,O,state -1965-092,2439080.68,1965-11-16,1965,Molniya 8K78,M,3MV-3 No. 1,,SU,O,state -1965-094,2439087.63,1965-11-23,1965,Molniya 8K78,M,3MV-4 No. 6,,SU,O,state -1965-095,2439091.01,1965-11-26,1965,Kosmos 11K63,,DS-U2-M No. 1,,SU,O,state -1965-097,2439091.85,1965-11-27,1965,Vostok 8A92,,Zenit-2 No. 31,,SU,O,state -1965-099,2439097.95,1965-12-03,1965,Molniya 8K78,,E-6 No. 12,,SU,O,state -1966-001,2439132.85,1966-01-07,1966,Vostok 8A92,,Zenit-2 No. 36,,SU,O,state -1966-101,2439431.53,1966-11-02,1966,R-36O 8K69,,OGCh No. 06L?,,SU,O,state -1966-003,2439147.85,1966-01-22,1966,Vostok 8A92,,Zenit-2 No. 38,,SU,O,state -1966-004,2439151.02,1966-01-25,1966,Kosmos 11K63,,DS-P1-I No. 1,,SU,O,state -1966-105,2439441.91,1966-11-12,1966,Voskhod 11A57,,Zenit-4 No. 25,,SU,O,state -1966-006,2439156.99,1966-01-31,1966,Molniya 8K78M,?,E-6M No. 202 (13),,SU,O,state -1966-106,2439448.83,1966-11-19,1966,Vostok 8A92,,Zenit-2 No. 46,,SU,O,state -1966-107,2439457.96,1966-11-28,1966,Soyuz 11A511,,Soyuz 7K-OK No. 2,,SU,O,state -1966-108,2439462.84,1966-12-03,1966,Voskhod 11A57,,Zenit-4 No. 26,,SU,O,state -1966-010,2439166.86,1966-02-10,1966,Vostok 8A92,,Zenit-2 No. 34,,SU,O,state -1966-011,2439168.25,1966-02-11,1966,Kosmos 63S1,,DS-U1-G No. 1,,SU,O,state -1966-112,2439472.36,1966-12-12,1966,Kosmos 11K63,,DS-U2-MP No. 1,,SU,O,state -1966-014,2439175.87,1966-02-19,1966,Voskhod 11A57,,Zenit-4 No. 14,,SU,O,state -1966-015,2439179.34,1966-02-22,1966,Voskhod 11A57,,Voskhod 3KV No. 5,,SU,O,state -1966-115,2439479,1966-12-19,1966,Vostok 8A92,,Zenit-2 No. 47,,SU,O,state -1966-116,2439480.93,1966-12-21,1966,Molniya 8K78M,?,E-6M No. 205,,SU,O,state -1966-017,2439185.96,1966-03-01,1966,Molniya 8K78M,?,E-6S No. 204 ISL,,SU,O,state -1966-117,2439481.05,1966-12-21,1966,Kosmos 63S1,,DS-U2-D No. 1,,SU,O,state -1966-021,2439201.94,1966-03-17,1966,Vostok 8A92,,Zenit-2 No. 37,,SU,O,state -1966-023,2439205.9,1966-03-21,1966,Voskhod 11A57,,Zenit-4 No. 17,,SU,O,state -1966-027,2439215.95,1966-03-31,1966,Molniya 8K78M,?,E-6S No. 206 ISL,,SU,O,state -1966-028,2439221.99,1966-04-06,1966,Voskhod 11A57,,Zenit-4 No. 19,,SU,O,state -1966-033,2439235.94,1966-04-20,1966,Vostok 8A92,,Zenit-2 No. 35,,SU,O,state -1966-035,2439240.8,1966-04-25,1966,Molniya 8K78,M,Molniya-1 11F67 No. 6,,SU,O,state -1966-036,2439241.92,1966-04-26,1966,Kosmos 11K63,,DS-P1-Yu No. 6,,SU,O,state -1966-037,2439251.96,1966-05-06,1966,Vostok 8A92,,Zenit-2 No. 39,,SU,O,state -1966-038,2439257.09,1966-05-11,1966,Vostok 8A92M,,Meteor 11F614 No. 4,,SU,O,state -1966-043,2439269.73,1966-05-24,1966,Kosmos 11K63,,DS-U2-I No. 1,,SU,O,state -1966-050,2439284.96,1966-06-08,1966,Voskhod 11A57,,Zenit-2 No. 41,,SU,O,state -1966-054,2439293.96,1966-06-17,1966,Voskhod 11A57,,Zenit-4 No. 20,,SU,O,state -1966-057,2439301.94,1966-06-25,1966,Vostok 8A92M,,Meteor 11F614 No. 5,,SU,O,state -1966-060,2439313.04,1966-07-06,1966,UR-500,,N-4 No. 4,,SU,O,state -1966-061,2439314.73,1966-07-08,1966,Kosmos 63S1,,DS-P1-Yu No. 5,,SU,O,state -1966-064,2439320.93,1966-07-14,1966,Voskhod 11A57,,Zenit-2 No. 42,,SU,O,state -1966-067,2439326.87,1966-07-20,1966,Soyuz 11A510,,US-A,,SU,O,state -1966-068,2439334.95,1966-07-28,1966,Voskhod 11A57,,Zenit-4 No. 21,,SU,O,state -1966-071,2439345.98,1966-08-08,1966,Voskhod 11A57,,Zenit-4 No. 22,,SU,O,state -1966-078,2439361.84,1966-08-24,1966,Molniya 8K78M,?,E-6LF No. 101,,SU,O,state -1966-079,2439364.91,1966-08-27,1966,Voskhod 11A57,,Zenit-4 No. 23,,SU,O,state -1966-088,2439386.44,1966-09-17,1966,R-36O 8K69,,OGCh No. 05L?,,SU,O,state -1966-091,2439413.01,1966-10-14,1966,Vostok 8A92,,Zenit-2 No. 33,,SU,O,state -1966-092,2439418.83,1966-10-20,1966,Molniya 8K78,M,Molniya-1 11F67 No. 7,,SU,O,state -1966-093,2439418.87,1966-10-20,1966,Voskhod 11A57,,Zenit-4 No. 24,,SU,O,state -1966-094,2439420.86,1966-10-22,1966,Molniya 8K78M,?,E-6LF No. 102,,SU,O,state -1967-101,2439785.86,1967-10-22,1967,Molniya 8K78,M,Molniya-1 11F67 No. 12,,SU,O,state -1967-102,2439788.45,1967-10-24,1967,Vostok 8A92M,,Meteor 11F614 No. 8,,SU,O,state -1967-004,2439510.03,1967-01-19,1967,Vostok 8A92,,Zenit-2 No. 43,,SU,O,state -1967-104,2439790.6,1967-10-27,1967,Tsiklon-2A,,I2-BM,,SU,O,state -1967-005,2439516.08,1967-01-25,1967,R-36O 8K69,,OGCh No. 07L,,SU,O,state -1967-105,2439790.9,1967-10-27,1967,Soyuz 11A511,,Soyuz No. 6,,SU,O,state -1967-106,2439792.05,1967-10-28,1967,R-36O 8K69,,OGCh No. 16?,,SU,O,state -1967-107,2439793.84,1967-10-30,1967,Soyuz 11A511,,Soyuz No. 5,,SU,O,state -1967-108,2439794.25,1967-10-30,1967,Kosmos 11K65M,,Tselina-O GVM,,SU,O,state -1967-009,2439528.64,1967-02-07,1967,Soyuz 11A511,,Soyuz No. 3,,SU,O,state -1967-110,2439797.97,1967-11-03,1967,Voskhod 11A57,,Zenit-4 No. 35,,SU,O,state -1967-012,2439529.93,1967-02-08,1967,Voskhod 11A57,,Zenit-4 No. 29,,SU,O,state -1967-013,2439535.92,1967-02-14,1967,Kosmos 11K63,,DS-U2-I No. 2,,SU,O,state -1967-115,2439816.1,1967-11-21,1967,Kosmos 11K63,,DS-P1-Yu No. 9,,SU,O,state -1967-116,2439818.12,1967-11-23,1967,Kosmos 11K65M,,Tsiklon,,SU,O,state -1967-017,2439548.86,1967-02-27,1967,Vostok 8A92,,Zenit-2 No. 45,,SU,O,state -1967-117,2439819.98,1967-11-25,1967,Voskhod 11A57,,Zenit-2 No. 58,,SU,O,state -1967-018,2439550.11,1967-02-28,1967,Vostok 8A92M,?,Meteor 11F614 No. 6,,SU,O,state -1967-019,2439552.78,1967-03-03,1967,Kosmos 11K63,,DS-U2-M No. 2,,SU,O,state -1967-119,2439828,1967-12-03,1967,Voskhod 11A57,,Zenit-4 No. 39,,SU,O,state -1967-021,2439559.98,1967-03-10,1967,UR-500K/Blok D,,L-1 No. 2P,,SU,O,state -1967-022,2439563.01,1967-03-13,1967,Vostok 8A92,,Zenit-2 No. 44,,SU,O,state -1967-023,2439566.23,1967-03-16,1967,Kosmos 11K63,,DS-P1-I No. 2,,SU,O,state -1967-024,2439570.92,1967-03-21,1967,Kosmos 11K63,,DS-MO No. 1,,SU,O,state -1967-124,2439841,1967-12-16,1967,Voskhod 11A57,,Zenit-2 No. 57,,SU,O,state -1967-025,2439572.03,1967-03-22,1967,Voskhod 11A57,,Zenit-4 No. 27,,SU,O,state -1967-125,2439843.77,1967-12-19,1967,Kosmos 63S1,,DS-U1-G No. 2,,SU,O,state -1967-126,2439850.88,1967-12-26,1967,Kosmos 11K63,,DS-U2-V No. 3,,SU,O,state -1967-027,2439573.99,1967-03-24,1967,Kosmos 11K65,,Strela-2,,SU,O,state -1967-127,2439851.98,1967-12-27,1967,Tsiklon-2A,,US-A reactor,,SU,O,state -1967-028,2439574.79,1967-03-25,1967,Kosmos 11K63,,DS-P1-Yu No. 7,,SU,O,state -1967-030,2439585.08,1967-04-04,1967,Vostok 8A92,,Zenit-2 No. 48,,SU,O,state -1967-032,2439588.88,1967-04-08,1967,Proton-K/D,,L-1 No. 3P,,SU,O,state -1967-033,2439592.95,1967-04-12,1967,Voskhod 11A57,,Zenit-4 No. 28,,SU,O,state -1967-037,2439603.52,1967-04-23,1967,Soyuz 11A511,,Soyuz No. 4,,SU,O,state -1967-039,2439608.03,1967-04-27,1967,Vostok 8A92M,,Meteor 11F614 No. 7,,SU,O,state -1967-044,2439622.94,1967-05-12,1967,Vostok 8A92,,Zenit-2 No. 49,,SU,O,state -1967-045,2439625.96,1967-05-15,1967,Kosmos 11K65M,,Tsiklon GVM,,SU,O,state -1967-046,2439627.41,1967-05-16,1967,Molniya 8K78M,?,E-6LS No. 111,,SU,O,state -1967-047,2439628.17,1967-05-17,1967,R-36O 8K69,,OGCh No. 09?,,SU,O,state -1967-049,2439633.08,1967-05-22,1967,Voskhod 11A57,,Zenit-4 No. 31,,SU,O,state -1967-052,2439635.45,1967-05-24,1967,Molniya 8K78,M,Molniya-1 11F67 No. 8,,SU,O,state -1967-054,2439642.94,1967-06-01,1967,Voskhod 11A57,,Zenit-4 No. 30,,SU,O,state -1967-056,2439646.71,1967-06-05,1967,Kosmos 11K63,,DS-U2-MP No. 2,,SU,O,state -1967-057,2439650.04,1967-06-08,1967,Voskhod 11A57,,Zenit-2 No. 50,,SU,O,state -1967-058,2439653.61,1967-06-12,1967,Molniya 8K78M,VL,4V-1 No. 310,,SU,O,state -1967-059,2439654.25,1967-06-12,1967,Kosmos 11K63,,DS-P1-Yu No. 11,,SU,O,state -1967-061,2439657.7,1967-06-16,1967,Kosmos 11K63,,DS-U3-S No. 1,,SU,O,state -1967-063,2439658.61,1967-06-17,1967,Molniya 8K78M,VL,4V-1 No. 311,,SU,O,state -1967-067,2439675.75,1967-07-04,1967,Voskhod 11A57,,Zenit-2 No. 52,,SU,O,state -1967-069,2439689.2,1967-07-17,1967,R-36O 8K69,,OGCh No. 10?,,SU,O,state -1967-074,2439703.2,1967-07-31,1967,R-36O 8K69,,OGCh No. 11?,,SU,O,state -1967-077,2439711.17,1967-08-08,1967,R-36O 8K69,,OGCh No. 12?,,SU,O,state -1967-078,2439711.74,1967-08-09,1967,Voskhod 11A57,,Zenit-4 No. 34,,SU,O,state -1967-081,2439726.71,1967-08-24,1967,Kosmos 11K63,,DS-P1-Yu No. 8,,SU,O,state -1967-082,2439733.83,1967-08-31,1967,Molniya 8K78,M,Molniya-1Yu 11F67 No. 11,,SU,O,state -1967-085,2439744.94,1967-09-11,1967,Voskhod 11A57,,Zenit-4 No. 37,,SU,O,state -1967-086,2439746.21,1967-09-12,1967,Kosmos 11K63,,DS-P1-Yu No. 10,,SU,O,state -1967-088,2439749.75,1967-09-16,1967,Voskhod 11A57,,Zenit-2 No. 53,,SU,O,state -1967-089,2439753.11,1967-09-19,1967,R-36O 8K69,,OGCh No. 13?,,SU,O,state -1967-091,2439756.09,1967-09-22,1967,R-36O 8K69,,OGCh No. 14?,,SU,O,state -1967-093,2439759.93,1967-09-26,1967,Voskhod 11A57,,Zenit-2 No. 54,,SU,O,state -1967-095,2439766.71,1967-10-03,1967,Molniya 8K78,M,Molniya-1 11F67 No. 9,,SU,O,state -1967-097,2439774.98,1967-10-11,1967,Voskhod 11A57,,Zenit-2 No. 55,,SU,O,state -1967-098,2439779.83,1967-10-16,1967,Voskhod 11A57,,Zenit-4 No. 36,,SU,O,state -1967-099,2439782.06,1967-10-18,1967,R-36O 8K69,,OGCh No. 15?,,SU,O,state -1968-101,2440171.3,1968-11-10,1968,Proton-K/D,,L-1 No. 12L,,SU,O,state -1968-102,2440174,1968-11-13,1968,Voskhod 11A57,,Zenit-2 No. 67,,SU,O,state -1968-003,2439872,1968-01-16,1968,Voskhod 11A57,,Zenit-2 No. 59,,SU,O,state -1968-103,2440176.99,1968-11-16,1968,Proton-K,,N-6 No. 1,,SU,O,state -1968-104,2440182.01,1968-11-21,1968,Voskhod 11A57,,Zenit-4 No. 50,,SU,O,state -1968-105,2440190.03,1968-11-29,1968,Voskhod 11A57,,Zenit-2 No. 68,,SU,O,state -1968-006,2439875.42,1968-01-19,1968,Kosmos 11K65M,,Tselina-O,,SU,O,state -1968-106,2440191,1968-11-30,1968,Kosmos 11K65M,,Sfera,,SU,O,state -1968-107,2440194.12,1968-12-03,1968,Kosmos 11K63,,DS-P1-Yu No. 17,,SU,O,state -1968-009,2439892.83,1968-02-06,1968,Voskhod 11A57,,Zenit-4 No. 40,,SU,O,state -1968-010,2439906.92,1968-02-20,1968,Kosmos 11K63,,DS-U2-V No. 4,,SU,O,state -1968-011,2439907.17,1968-02-20,1968,Kosmos 11K65M,,Sfera,,SU,O,state -1968-111,2440200.85,1968-12-10,1968,Voskhod 11A57,,Zenit-2 No. 69,,SU,O,state -1968-013,2439918.27,1968-03-02,1968,Proton-K/D,,L-1 No. 6L,,SU,O,state -1968-113,2440204.72,1968-12-14,1968,Kosmos 11K63,,DS-U2-I No. 3,,SU,O,state -1968-015,2439920.97,1968-03-05,1968,Kosmos 11K63,,DS-P1-I No. 3,,SU,O,state -1968-115,2440206.89,1968-12-16,1968,Molniya 8K78M,,Molniya-1Yu 11F67 No. 15,,SU,O,state -1968-016,2439921.02,1968-03-05,1968,Voskhod 11A57,,Zenit-2 No. 56,,SU,O,state -1968-117,2440210.5,1968-12-19,1968,Kosmos 11K63,,DS-U2-GK No. 1,,SU,O,state -1968-019,2439929.9,1968-03-14,1968,Vostok 8A92M,,Meteor 11F614 No. 9,,SU,O,state -1968-119,2440216.91,1968-12-26,1968,Kosmos 11K63,,DS-U2-GF No. 1,,SU,O,state -1968-021,2439932.02,1968-03-16,1968,Voskhod 11A57,,Zenit-4 No. 38,,SU,O,state -1968-022,2439936.91,1968-03-21,1968,Voskhod 11A57,,Zenit-2M,,SU,O,state -1968-023,2439937.9,1968-03-22,1968,Tsiklon-2A,,US-A reactor,,SU,O,state -1968-024,2439949.96,1968-04-03,1968,Voskhod 11A57,,Zenit-2 No. 60,,SU,O,state -1968-027,2439953.92,1968-04-07,1968,Molniya 8K78M,,E-6LS No. 113,,SU,O,state -1968-028,2439955.98,1968-04-09,1968,Kosmos 11K63,,DS-P1-Yu No. 13,,SU,O,state -1968-029,2439960.92,1968-04-14,1968,Soyuz 11A511,,Soyuz No. 8,,SU,O,state -1968-030,2439961.9,1968-04-15,1968,Soyuz 11A511,,Soyuz No. 7,,SU,O,state -1968-032,2439964.94,1968-04-18,1968,Voskhod 11A57,,Zenit-4 No. 45,,SU,O,state -1968-033,2439965.44,1968-04-18,1968,Kosmos 11K63,,DS-U1-A No. 1,,SU,O,state -1968-034,2439966.94,1968-04-20,1968,Voskhod 11A57,,Zenit-2 No. 62,,SU,O,state -1968-035,2439967.68,1968-04-21,1968,Molniya 8K78M,,Molniya-1 11F67 No. 10,,SU,O,state -1968-036,2439971.17,1968-04-24,1968,Tsiklon-2A,,I2M,,SU,O,state -1968-037,2439971.53,1968-04-25,1968,R-36O 8K69,,OGCh No. 17LU,,SU,O,state -1968-038,2439972.7,1968-04-26,1968,Kosmos 11K63,,DS-U2-D No. 2,,SU,O,state -1968-040,2439984.08,1968-05-07,1968,Kosmos 11K65M,,Tsiklon,,SU,O,state -1968-043,2440000.8,1968-05-24,1968,Kosmos 11K63,,DS-P1-Yu No. 14,,SU,O,state -1968-044,2440007.35,1968-05-30,1968,Kosmos 11K63,,DS-P1-Yu No. 12,,SU,O,state -1968-045,2440008.95,1968-06-01,1968,Voskhod 11A57,,Zenit-2 No. 63,,SU,O,state -1968-046,2440011.78,1968-06-04,1968,Voskhod 11A57,,Zenit-4 No. 46,,SU,O,state -1968-048,2440019.4,1968-06-11,1968,Kosmos 11K63,,DS-U1-Ya No. 2,,SU,O,state -1968-049,2440020.05,1968-06-12,1968,Vostok 8A92M,,Meteor No. 10,,SU,O,state -1968-051,2440025.76,1968-06-18,1968,Voskhod 11A57,,Zenit-4 No. 44,,SU,O,state -1968-053,2440029,1968-06-21,1968,Voskhod 11A57,,Zenit-2M,,SU,O,state -1968-054,2440033.96,1968-06-26,1968,Voskhod 11A57,,Zenit-4 No. 41,,SU,O,state -1968-056,2440042.79,1968-07-05,1968,Kosmos 11K63,,DS-U3-S No. 2,,SU,O,state -1968-057,2440043.14,1968-07-05,1968,Molniya 8K78M,,Molniya-1 11F67 No. 13,,SU,O,state -1968-058,2440048.33,1968-07-10,1968,Voskhod 11A57,,Zenit-2 No. 64,,SU,O,state -1968-060,2440054.05,1968-07-16,1968,Voskhod 11A57,,Zenit-4 No. 47,,SU,O,state -1968-061,2440056.33,1968-07-18,1968,Kosmos 11K63,,DS-P1-Yu No. 15,,SU,O,state -1968-062,2440067.79,1968-07-30,1968,Voskhod 11A57,,Zenit-4 No. 42,,SU,O,state -1968-067,2440077.79,1968-08-09,1968,Voskhod 11A57,,Zenit-2 No. 61,,SU,O,state -1968-070,2440095.98,1968-08-27,1968,Kosmos 11K65,,Strela-2 No. 4,,SU,O,state -1968-071,2440096.02,1968-08-27,1968,Voskhod 11A57,,Zenit-4 No. 43,,SU,O,state -1968-072,2440096.92,1968-08-28,1968,Soyuz 11A511,,Soyuz No. 9,,SU,O,state -1968-073,2440104.79,1968-09-05,1968,Voskhod 11A57,,Zenit-4 No. 48,,SU,O,state -1968-075,2440113.78,1968-09-14,1968,Voskhod 11A57,,Zenit-2 No. 66,,SU,O,state -1968-076,2440114.4,1968-09-14,1968,Proton-K/D,,L-1 No. 9L,,SU,O,state -1968-077,2440116.02,1968-09-16,1968,Voskhod 11A57,,Zenit-4 No. 49,,SU,O,state -1968-079,2440120.11,1968-09-20,1968,Kosmos 11K63,,DS-P1-I No. 4,,SU,O,state -1968-080,2440122.82,1968-09-23,1968,Voskhod 11A57,,Zenit-2M,,SU,O,state -1968-082,2440132.07,1968-10-02,1968,R-36O 8K69,,OGCh No. V22500-10 (20?),,SU,O,state -1968-083,2440133.04,1968-10-03,1968,Kosmos 11K63,,DS-P1-Yu No. 16,,SU,O,state -1968-085,2440134.52,1968-10-05,1968,Molniya 8K78M,,Molniya-1 11F67 No. 14,,SU,O,state -1968-087,2440137,1968-10-07,1968,Voskhod 11A57,,Zenit-4 No. 51,,SU,O,state -1968-088,2440141,1968-10-11,1968,Voskhod 11A57,,Zenit-2 No. 65,,SU,O,state -1968-090,2440148.68,1968-10-19,1968,Tsiklon-2A,,I2M,,SU,O,state -1968-091,2440149.67,1968-10-20,1968,Tsiklon-2A,,I2P,,SU,O,state -1968-093,2440154.88,1968-10-25,1968,Soyuz 11A511,,Soyuz No. 11,,SU,O,state -1968-094,2440155.86,1968-10-26,1968,Soyuz 11A511,,Soyuz No. 10,,SU,O,state -1968-095,2440160.42,1968-10-30,1968,Kosmos 11K65M,,Tselina-O,,SU,O,state -1968-096,2440160.89,1968-10-31,1968,Voskhod 11A57,,Zenit-4M,,SU,O,state -1968-097,2440161.52,1968-11-01,1968,Tsiklon-2A,,I2P,,SU,O,state -1969-100,2440540.85,1969-11-15,1969,Voskhod 11A57,,Zenit-4 No. 69,,SU,O,state -1969-001,2440226.77,1969-01-05,1969,Molniya 8K78M,VL,4V-1 No. 330,,SU,O,state -1969-002,2440231.74,1969-01-10,1969,Molniya 8K78M,VL,4V-1 No. 331,,SU,O,state -1969-102,2440549.96,1969-11-24,1969,Kosmos 11K63,,DS-P1-Yu No. 27,,SU,O,state -1969-003,2440234.01,1969-01-12,1969,Voskhod 11A57,,Zenit-2 No. 70,,SU,O,state -1969-103,2440550.2,1969-11-24,1969,Kosmos 11K65M,,Sfera,,SU,O,state -1969-004,2440235.81,1969-01-14,1969,Soyuz 11A511,,Soyuz No. 12,,SU,O,state -1969-104,2440559.06,1969-12-03,1969,Voskhod 11A57,,Zenit-2M,,SU,O,state -1969-005,2440236.8,1969-01-15,1969,Soyuz 11A511,,Soyuz No. 13,,SU,O,state -1969-106,2440567.04,1969-12-11,1969,Kosmos 11K63,,DS-P1-Yu No. 30,,SU,O,state -1969-107,2440575.64,1969-12-20,1969,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1969-008,2440244.89,1969-01-23,1969,Voskhod 11A57,,Zenit-4M,,SU,O,state -1969-108,2440578.89,1969-12-23,1969,Tsiklon-2,,IM IS (I2P?),,SU,O,state -1969-109,2440579.08,1969-12-23,1969,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1969-110,2440580.92,1969-12-25,1969,Kosmos 11K63,,DS-U1-IK No. 1,,SU,O,state -1969-012,2440260.08,1969-02-07,1969,Kosmos 11K63,,DS-P1-Yu No. 21,,SU,O,state -1969-015,2440277.93,1969-02-25,1969,Voskhod 11A57,,Zenit-2 No. 71,,SU,O,state -1969-017,2440278.85,1969-02-26,1969,Voskhod 11A57,,Zenit-4 No. 54,,SU,O,state -1969-020,2440286.05,1969-03-05,1969,Kosmos 11K63,,DS-P1-Yu No. 18,,SU,O,state -1969-021,2440286.23,1969-03-05,1969,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1969-022,2440287.01,1969-03-06,1969,Voskhod 11A57,,Zenit-4 No. 53,,SU,O,state -1969-023,2440296.01,1969-03-15,1969,Voskhod 11A57,,Zenit-4 No. 52,,SU,O,state -1969-024,2440298.19,1969-03-17,1969,Kosmos 11K65M,,Sfera,,SU,O,state -1969-027,2440303.01,1969-03-22,1969,Voskhod 11A57,,Zenit-2 No. 77,,SU,O,state -1969-028,2440304.92,1969-03-24,1969,Voskhod 11A57,,Zenit-4 No. 58,,SU,O,state -1969-029,2440307.02,1969-03-26,1969,Vostok 8A92M,,Meteor 11F614M No. 12,,SU,O,state -1969-031,2440309.17,1969-03-28,1969,Kosmos 11K63,,DS-P1-I No. 5,,SU,O,state -1969-032,2440315.93,1969-04-04,1969,Voskhod 11A57,,Zenit-4 No. 55,,SU,O,state -1969-033,2440316.04,1969-04-04,1969,Kosmos 11K63,,DS-P1-Yu No. 20,,SU,O,state -1969-034,2440321.04,1969-04-09,1969,Voskhod 11A57,,Zenit-2 No. 78,,SU,O,state -1969-035,2440322.6,1969-04-11,1969,Molniya 8K78M,,Molniya-1 11F67 No. 16,,SU,O,state -1969-038,2440326.84,1969-04-15,1969,Voskhod 11A57,,Zenit-4 No. 61,,SU,O,state -1969-040,2440334.91,1969-04-23,1969,Voskhod 11A57,,Zenit-4M,,SU,O,state -1969-042,2440354.89,1969-05-13,1969,Voskhod 11A57,,Zenit-2 No. 72,,SU,O,state -1969-044,2440361.86,1969-05-20,1969,Voskhod 11A57,,Zenit-4 No. 57,,SU,O,state -1969-047,2440369.04,1969-05-27,1969,Kosmos 11K63,,DS-P1-Yu No. 19,,SU,O,state -1969-048,2440370.79,1969-05-29,1969,Voskhod 11A57,,Zenit-4 No. 62,,SU,O,state -1969-049,2440376.04,1969-06-03,1969,Kosmos 11K63,,DS-P1-Yu No. 24,,SU,O,state -1969-052,2440387.87,1969-06-15,1969,Voskhod 11A57,,Zenit-4 No. 60,,SU,O,state -1969-054,2440396.78,1969-06-24,1969,Voskhod 11A57,,Zenit-2 No. 76,,SU,O,state -1969-055,2440399.79,1969-06-27,1969,Voskhod 11A57,,Zenit-4 No. 59,,SU,O,state -1969-057,2440412.88,1969-07-10,1969,Voskhod 11A57,,Zenit-4 No. 56,,SU,O,state -1969-058,2440415.62,1969-07-13,1969,Proton-K/D,,E-8-5 No. 401,,SU,O,state -1969-060,2440425.02,1969-07-22,1969,Voskhod 11A57,,Zenit-2 No. 75,,SU,O,state -1969-061,2440425.04,1969-07-22,1969,Molniya 8K78M,,Molniya-1 11F67 No. 18,,SU,O,state -1969-066,2440439.74,1969-08-06,1969,Tsiklon-2,,IS-M GVM,,SU,O,state -1969-067,2440441.49,1969-08-07,1969,Proton-K/D,,L-1 No. 11,,SU,O,state -1969-070,2440447.42,1969-08-13,1969,Kosmos 11K65M,,Tsiklon,,SU,O,state -1969-071,2440450,1969-08-16,1969,Voskhod 11A57,,Zenit-2M,,SU,O,state -1969-072,2440453.04,1969-08-19,1969,Voskhod 11A57,,Zenit-4 No. 63,,SU,O,state -1969-073,2440456.09,1969-08-22,1969,Kosmos 11K63,,DS-P1-Yu No. 29,,SU,O,state -1969-075,2440462.88,1969-08-29,1969,Voskhod 11A57,,Zenit-4 No. 68,,SU,O,state -1969-076,2440466.96,1969-09-02,1969,Voskhod 11A57,,Zenit-4 No. 64,,SU,O,state -1969-077,2440480.17,1969-09-15,1969,R-36O 8K69,,OGCh No. 21?,,SU,O,state -1969-078,2440482.86,1969-09-18,1969,Voskhod 11A57,,Zenit-4 No. 65,,SU,O,state -1969-080,2440488.09,1969-09-23,1969,Proton-K/D,,E-8-5 No. 403,,SU,O,state -1969-081,2440489.01,1969-09-24,1969,Voskhod 11A57,,Zenit-2 No. 79,,SU,O,state -1969-084,2440500.57,1969-10-06,1969,Vostok 8A92M,,Meteor 11F614M No. 15,,SU,O,state -1969-085,2440505.97,1969-10-11,1969,Soyuz 11A511,,Soyuz No. 14,,SU,O,state -1969-086,2440506.95,1969-10-12,1969,Soyuz 11A511,,Soyuz No. 15,,SU,O,state -1969-087,2440507.93,1969-10-13,1969,Soyuz 11A511,,Soyuz No. 16,,SU,O,state -1969-088,2440509.06,1969-10-14,1969,Kosmos 11K63,,DS-U3-IK No. 1,,SU,O,state -1969-089,2440511.99,1969-10-17,1969,Voskhod 11A57,,Zenit-4 No. 67,,SU,O,state -1969-090,2440512.92,1969-10-18,1969,Kosmos 11K63,,DS-P1-Yu No. 28,,SU,O,state -1969-091,2440516.03,1969-10-21,1969,Kosmos 11K65M,,Tsiklon,,SU,O,state -1969-092,2440517.09,1969-10-22,1969,Proton-K/D,,VA,,SU,O,state -1969-093,2440518.9,1969-10-24,1969,Voskhod 11A57,,Zenit-2M,,SU,O,state -1969-094,2440519.04,1969-10-24,1969,Kosmos 11K63,,DS-P1-Yu No. 22,,SU,O,state -1969-096,2440530,1969-11-04,1969,Kosmos 11K63,,DS-P1-I No. 7,,SU,O,state -1969-098,2440537.98,1969-11-12,1969,Voskhod 11A57,,Zenit-2 No. 80,,SU,O,state -1970-100,2440914.96,1970-11-24,1970,Kosmos 11K63,,DS-P1-Yu No. 26,,SU,O,state -1970-001,2440595.89,1970-01-09,1970,Voskhod 11A57,,Zenit-2M,,SU,O,state -1970-101,2440918.16,1970-11-27,1970,Molniya 8K78M,,Molniya-1 11F67 No. 23,,SU,O,state -1970-102,2440922.67,1970-12-02,1970,Kosmos 11K65M,,Ionosfernaya Stantsiya N,,SU,O,state -1970-103,2440923.21,1970-12-02,1970,Proton-K/D,,L-1e No. 2K,,SU,O,state -1970-004,2440602.07,1970-01-15,1970,Kosmos 11K63,,DS-P1-Yu No. 25,,SU,O,state -1970-104,2440924.08,1970-12-03,1970,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1970-005,2440602.96,1970-01-16,1970,Kosmos 11K63,,DS-MO No. 3,,SU,O,state -1970-105,2440930.97,1970-12-10,1970,Voskhod 11A57,,Zenit-2M,,SU,O,state -1970-006,2440607.35,1970-01-20,1970,Kosmos 11K63,,DS-U2-MG No. 1,,SU,O,state -1970-007,2440608,1970-01-21,1970,Voskhod 11A57,,Zenit-4 No. 70,,SU,O,state -1970-108,2440933.04,1970-12-12,1970,Kosmos 11K65M,,Tsiklon,,SU,O,state -1970-010,2440628,1970-02-10,1970,Voskhod 11A57,,Zenit-4 No. 71,,SU,O,state -1970-110,2440935.92,1970-12-15,1970,Voskhod 11A57,,Zenit-4M,,SU,O,state -1970-111,2440936.69,1970-12-16,1970,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1970-112,2440938.9,1970-12-18,1970,Kosmos 11K63,,DS-P1-Yu No. 43,,SU,O,state -1970-013,2440637.29,1970-02-19,1970,Molniya 8K78M,M1M,Molniya-1 11F67 No. 17,,SU,O,state -1970-113,2440939.18,1970-12-18,1970,Vostok 8A92M,,Tselina-D No. Yu2250-01,,SU,O,state -1970-014,2440645.23,1970-02-27,1970,Kosmos 11K63,,DS-P1-Yu No. 32,,SU,O,state -1970-114,2440945.66,1970-12-25,1970,Molniya 8K78M,,Molniya-1 11F67 No. 22,,SU,O,state -1970-015,2440650.01,1970-03-04,1970,Voskhod 11A57,,Zenit-2 No. 73,,SU,O,state -1970-018,2440658.83,1970-03-13,1970,Voskhod 11A57,,Zenit-2 No. 74,,SU,O,state -1970-019,2440662.97,1970-03-17,1970,Vostok 8A92M,,Meteor 11F614M No. 14,,SU,O,state -1970-020,2440664.11,1970-03-18,1970,Kosmos 11K63,,DS-P1-I No. 8,,SU,O,state -1970-022,2440672.99,1970-03-27,1970,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1970-023,2440679.85,1970-04-03,1970,Voskhod 11A57,,Zenit-2M,,SU,O,state -1970-024,2440683.97,1970-04-07,1970,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1970-026,2440684.93,1970-04-08,1970,Voskhod 11A57,,Zenit-4 No. 66,,SU,O,state -1970-028,2440688.21,1970-04-11,1970,Kosmos 11K65M,,Tsiklon,,SU,O,state -1970-030,2440691.88,1970-04-15,1970,Voskhod 11A57,,Zenit-4M,,SU,O,state -1970-033,2440700.06,1970-04-23,1970,Kosmos 11K63,,DS-P1-Yu No. 31,,SU,O,state -1970-035,2440701.43,1970-04-24,1970,Kosmos 11K63,,DS-U1-R No. 1,,SU,O,state -1970-036,2440702.21,1970-04-25,1970,Kosmos 11K65M,,Strela-1M,,SU,O,state -1970-037,2440704.95,1970-04-28,1970,Vostok 8A92M,,Meteor 11F614M No. 13,,SU,O,state -1970-038,2440718.92,1970-05-12,1970,Voskhod 11A57,,Zenit-2 No. 81,,SU,O,state -1970-039,2440726.89,1970-05-20,1970,Voskhod 11A57,,Zenit-4 No. 77,,SU,O,state -1970-041,2440739.29,1970-06-01,1970,Soyuz 11A511,,Soyuz No. 17,,SU,O,state -1970-042,2440747.9,1970-06-10,1970,Voskhod 11A57,,Zenit-4 No. 72,,SU,O,state -1970-043,2440749.9,1970-06-12,1970,Kosmos 11K63,,DS-P1-Yu No. 35,,SU,O,state -1970-044,2440750.71,1970-06-13,1970,Kosmos 11K63,,DS-U2-GK No. 2,,SU,O,state -1970-045,2440755.04,1970-06-17,1970,Voskhod 11A57,,Zenit-4 No. 73,,SU,O,state -1970-047,2440761.09,1970-06-23,1970,Vostok 8A92M,,Meteor-M No. 17,,SU,O,state -1970-049,2440763.64,1970-06-26,1970,Molniya 8K78M,M1M,Molniya-1 11F67 No. 21,,SU,O,state -1970-050,2440764,1970-06-26,1970,Voskhod 11A57,,Zenit-2M,,SU,O,state -1970-051,2440764.82,1970-06-27,1970,Kosmos 11K63,,DS-P1-Yu No. 38,,SU,O,state -1970-052,2440774.94,1970-07-07,1970,Voskhod 11A57,,Zenit-4 No. 74,,SU,O,state -1970-053,2440777.07,1970-07-09,1970,Voskhod 11A57,,Zenit-2M,,SU,O,state -1970-056,2440796.42,1970-07-28,1970,R-36O 8K69,,OGCh No. Yu22500-11 (22),,SU,O,state -1970-057,2440805.62,1970-08-07,1970,Kosmos 11K63,,DS-U2-IK No. 1,,SU,O,state -1970-058,2440805.9,1970-08-07,1970,Voskhod 11A57,,Zenit-4 No. 76,,SU,O,state -1970-059,2440809.33,1970-08-10,1970,Kosmos 11K63,,DS-U2-MG No. 2,,SU,O,state -1970-060,2440815.73,1970-08-17,1970,Molniya 8K78M,NVL,4V-1 No. 630,,SU,O,state -1970-063,2440818.12,1970-08-19,1970,Kosmos 11K63,,DS-P1-Yu No. 40,,SU,O,state -1970-064,2440819.1,1970-08-20,1970,Kosmos 11K65M,,Lira,,SU,O,state -1970-065,2440820.71,1970-08-22,1970,Molniya 8K78M,NVL,4V-1 No. 631,,SU,O,state -1970-068,2440827.85,1970-08-29,1970,Voskhod 11A57,,Zenit-4M,,SU,O,state -1970-071,2440837.94,1970-09-08,1970,Voskhod 11A57,,Zenit-4M,,SU,O,state -1970-072,2440842.06,1970-09-12,1970,Proton-K/D,,E-8-5 No. 406,,SU,O,state -1970-073,2440846,1970-09-16,1970,Kosmos 11K63,,DS-P1-I No. 9,,SU,O,state -1970-074,2440846.84,1970-09-17,1970,Voskhod 11A57,,Zenit-2M,,SU,O,state -1970-075,2440852.04,1970-09-22,1970,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1970-076,2440855.09,1970-09-25,1970,R-36O 8K69M,,OGCh-K No. Xh22511-65,,SU,O,state -1970-077,2440858.84,1970-09-29,1970,Molniya 8K78M,M1M,Molniya-1 11F67 No. 19,,SU,O,state -1970-078,2440860.85,1970-10-01,1970,Voskhod 11A57,,Zenit-2M,,SU,O,state -1970-079,2440862.94,1970-10-03,1970,Tsiklon-2,,US-A reactor,,SU,O,state -1970-080,2440868.03,1970-10-08,1970,Voskhod 11A57,,Zenit-2M (Bion),,SU,O,state -1970-081,2440868.13,1970-10-08,1970,Kosmos 11K63,,DS-P1-Yu No. 42,,SU,O,state -1970-082,2440868.96,1970-10-09,1970,Voskhod 11A57,,Zenit-4M,,SU,O,state -1970-083,2440872.08,1970-10-12,1970,Kosmos 11K65M,,Tsiklon,,SU,O,state -1970-084,2440873.98,1970-10-14,1970,Kosmos 11K63,,DS-U3-IK No. 2,,SU,O,state -1970-085,2440874.97,1970-10-15,1970,Vostok 8A92M,,Meteor-M No. 16,,SU,O,state -1970-086,2440876.12,1970-10-16,1970,Kosmos 11K65M,,Strela-2M,,SU,O,state -1970-087,2440879.73,1970-10-20,1970,Tsiklon-2,,IS-M,,SU,O,state -1970-088,2440880.33,1970-10-20,1970,Proton-K/D,,L-1 No. 14,,SU,O,state -1970-089,2440882.7,1970-10-23,1970,Tsiklon-2,,I2P,,SU,O,state -1970-091,2440889.61,1970-10-30,1970,Tsiklon-2,,I2P,,SU,O,state -1970-092,2440890.06,1970-10-30,1970,Voskhod 11A57,,Zenit-4M,,SU,O,state -1970-095,2440901.11,1970-11-10,1970,Proton-K/D,,E-8 No. 203,,SU,O,state -1970-096,2440901.89,1970-11-11,1970,Voskhod 11A57,,Zenit-2M,,SU,O,state -1970-097,2440908.26,1970-11-17,1970,Kosmos 11K65M,,DS-U2-IP No. 1,,SU,O,state -1970-099,2440914.72,1970-11-24,1970,Soyuz 11A511L,,T2K No. 1,,SU,O,state -1971-100,2441279.9,1971-11-24,1971,Molniya 8K78M,,Molniya-2,,SU,O,state -1971-001,2440963.9,1971-01-12,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-101,2441284.92,1971-11-29,1971,Kosmos 11K63,,DS-P1-Yu No. 53,,SU,O,state -1971-002,2440966,1971-01-14,1971,Kosmos 11K63,,DS-P1-I No. 11,,SU,O,state -1971-102,2441285.23,1971-11-29,1971,Kosmos 11K65M,,DS-P1-M No. 5,,SU,O,state -1971-003,2440971.98,1971-01-20,1971,Vostok 8A92M,,Meteor-M No. 19,,SU,O,state -1971-103,2441286.19,1971-11-30,1971,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1971-004,2440972.86,1971-01-21,1971,Voskhod 11A57,,Zenit-2M,,SU,O,state -1971-104,2441287.85,1971-12-02,1971,Kosmos 11K63,,DS-U2-IK No. 2,,SU,O,state -1971-105,2441288.23,1971-12-02,1971,Kosmos 11K65M,,DS-U2-MT No. 1,,SU,O,state -1971-106,2441289.06,1971-12-03,1971,Tsiklon-2,,I2P,,SU,O,state -1971-007,2440978.03,1971-01-26,1971,Kosmos 11K63,,DS-P1-Yu No. 34,,SU,O,state -1971-107,2441291.91,1971-12-06,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-108,2441295.96,1971-12-10,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-010,2440992.28,1971-02-09,1971,Kosmos 11K65M,,DS-P1-M No. 2,,SU,O,state -1971-111,2441300.69,1971-12-15,1971,Kosmos 11K65M,,Tsiklon,,SU,O,state -1971-112,2441301.9,1971-12-16,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-013,2441000.38,1971-02-17,1971,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1971-113,2441302.94,1971-12-17,1971,Kosmos 11K63,,DS-P1-Yu No. 45,,SU,O,state -1971-014,2441001.08,1971-02-18,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-114,2441303.04,1971-12-17,1971,Kosmos 11K65M,,Strela-2M,,SU,O,state -1971-015,2441007.97,1971-02-25,1971,Tsiklon-2,,I2P,,SU,O,state -1971-115,2441305.45,1971-12-19,1971,Molniya 8K78M,,Molniya-1 11F67 No. 25,,SU,O,state -1971-016,2441008.71,1971-02-26,1971,Soyuz 11A511L,,T2K No. 2,,SU,O,state -1971-017,2441013.9,1971-03-03,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-117,2441310.98,1971-12-25,1971,Tsiklon-2,,US-A reactor,,SU,O,state -1971-118,2441313.09,1971-12-27,1971,Soyuz 11A511M,,Zenit-4MT,,SU,O,state -1971-119,2441313.29,1971-12-27,1971,Kosmos 11K65M,,DS-U2-GKA No. 1,,SU,O,state -1971-020,2441029.41,1971-03-18,1971,Kosmos 11K65M,,DS-P1-M No. 3,,SU,O,state -1971-120,2441314.95,1971-12-29,1971,Vostok 8A92M,,Meteor-MV No. 18,,SU,O,state -1971-023,2441037.96,1971-03-27,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-025,2441042.98,1971-04-01,1971,Tsiklon-2,,US-A reactor,,SU,O,state -1971-026,2441043.85,1971-04-02,1971,Voskhod 11A57,,Zenit-2M,,SU,O,state -1971-027,2441046.1,1971-04-04,1971,Tsiklon-2,,I2P,,SU,O,state -1971-028,2441048.8,1971-04-07,1971,Vostok 8A92M,,Tselina-D,,SU,O,state -1971-029,2441055.83,1971-04-14,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-031,2441058.99,1971-04-17,1971,Vostok 8A92M,,Meteor-M No. 21 (71),,SU,O,state -1971-032,2441060.57,1971-04-19,1971,Proton-K,,DOS-1 17K No. 121,,SU,O,state -1971-034,2441064.5,1971-04-22,1971,Soyuz 11A511,,Soyuz 7K-T No. 31,,SU,O,state -1971-035,2441064.98,1971-04-23,1971,Kosmos 11K65M,,Strela-2M,,SU,O,state -1971-037,2441065.97,1971-04-24,1971,Kosmos 11K63,,DS-P1-Yu No. 37,,SU,O,state -1971-038,2441070.11,1971-04-28,1971,Kosmos 11K65M,,Sfera,,SU,O,state -1971-040,2441077.76,1971-05-06,1971,Voskhod 11A57,,Zenit-2M,,SU,O,state -1971-041,2441079.1,1971-05-07,1971,Kosmos 11K65M,,Strela-1M,,SU,O,state -1971-042,2441082.21,1971-05-10,1971,Proton-K/D,,3MS No. 170,,SU,O,state -1971-043,2441089.83,1971-05-18,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-044,2441090.93,1971-05-19,1971,Kosmos 11K63,,DS-P1-Yu No. 48,,SU,O,state -1971-045,2441091.18,1971-05-19,1971,Proton-K/D,,4M No. 171,,SU,O,state -1971-046,2441093.54,1971-05-22,1971,Kosmos 11K65M,,Tsiklon,,SU,O,state -1971-047,2441099,1971-05-27,1971,Kosmos 11K63,,DS-P1-Yu No. 47,,SU,O,state -1971-048,2441099.94,1971-05-28,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-049,2441100.14,1971-05-28,1971,Proton-K/D,,4M No. 172,,SU,O,state -1971-050,2441100.66,1971-05-29,1971,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1971-052,2441107.26,1971-06-04,1971,Kosmos 11K65M,,DS-U2-K No. 1,,SU,O,state -1971-053,2441108.7,1971-06-06,1971,Soyuz 11A511,,Soyuz 7K-T No. 32,,SU,O,state -1971-055,2441113.92,1971-06-11,1971,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1971-057,2441126.83,1971-06-24,1971,Voskhod 11A57,,Zenit-2M,,SU,O,state -1971-059,2441148.57,1971-07-16,1971,Vostok 8A92M,,Meteor-M No. 20,,SU,O,state -1971-061,2441152.92,1971-07-20,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-062,2441155.96,1971-07-23,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-064,2441160.65,1971-07-28,1971,Molniya 8K78M,,Molniya-1 11F67 No. 20,,SU,O,state -1971-065,2441162.85,1971-07-30,1971,Voskhod 11A57,,Zenit-2M,,SU,O,state -1971-066,2441168.92,1971-08-05,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-068,2441172.49,1971-08-08,1971,R-36O 8K69M,,OGCh-K No. 5102740-251,,SU,O,state -1971-069,2441175.73,1971-08-12,1971,Soyuz 11A511L,,T2K No. 3,,SU,O,state -1971-072,2441190.95,1971-08-27,1971,Kosmos 11K63,,DS-P1-Yu No. 41,,SU,O,state -1971-073,2441197.07,1971-09-02,1971,Proton-K/D,,E-8-5 No. 407,,SU,O,state -1971-074,2441201.55,1971-09-07,1971,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1971-075,2441204.65,1971-09-10,1971,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1971-077,2441209.04,1971-09-14,1971,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1971-078,2441216,1971-09-21,1971,Voskhod 11A57,,Zenit-2M,,SU,O,state -1971-079,2441218.94,1971-09-24,1971,Kosmos 11K63,,DS-P1-I No. 10,,SU,O,state -1971-081,2441222.82,1971-09-28,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-082,2441222.92,1971-09-28,1971,Proton-K/D,,E-8LS No. 202,,SU,O,state -1971-084,2441223.98,1971-09-29,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-085,2441232.02,1971-10-07,1971,Voskhod 11A57,,Zenit-2M,,SU,O,state -1971-086,2441238.07,1971-10-13,1971,Kosmos 11K65M,,Strela-1M,,SU,O,state -1971-088,2441238.88,1971-10-14,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-090,2441244.03,1971-10-19,1971,Kosmos 11K63,,DS-P1-Yu No. 44,,SU,O,state -1971-094,2441258.1,1971-11-02,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-097,2441272.97,1971-11-17,1971,Kosmos 11K63,,DS-P1-Yu No. 54,,SU,O,state -1971-098,2441275,1971-11-19,1971,Voskhod 11A57,,Zenit-4M,,SU,O,state -1971-099,2441276.25,1971-11-20,1971,Kosmos 11K65M,,Sfera,,SU,O,state -1972-001,2441328.92,1972-01-12,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-102,2441672.59,1972-12-21,1972,Kosmos 11K65M,,Sfera,,SU,O,state -1972-004,2441341.97,1972-01-25,1972,Kosmos 11K63,,DS-P1-Yu No. 52,,SU,O,state -1972-104,2441677.46,1972-12-25,1972,Kosmos 11K65M,,Strela-2M,,SU,O,state -1972-105,2441678.94,1972-12-27,1972,Soyuz 11A511M,,Zenit-4MT,,SU,O,state -1972-006,2441350.86,1972-02-03,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-106,2441679.96,1972-12-28,1972,Vostok 8A92M,,Tselina-D,,SU,O,state -1972-007,2441361.64,1972-02-14,1972,Proton-K/D,,VA,,SU,O,state -1972-008,2441363.9,1972-02-16,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-009,2441372.83,1972-02-25,1972,Kosmos 11K65M,,Tsiklon,,SU,O,state -1972-011,2441377.97,1972-03-01,1972,Vostok 8A92M,,Tselina-D,,SU,O,state -1972-013,2441380.92,1972-03-04,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-015,2441392.04,1972-03-15,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-017,2441399.35,1972-03-22,1972,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1972-019,2441401.6,1972-03-25,1972,Kosmos 11K65M,,Sfera,,SU,O,state -1972-020,2441401.94,1972-03-25,1972,Kosmos 11K63,,DS-P1-Yu No. 46,,SU,O,state -1972-021,2441403.68,1972-03-27,1972,Molniya 8K78M,NVL,4V-1 No. 670,,SU,O,state -1972-022,2441407.09,1972-03-30,1972,Vostok 8A92M,,Meteor-MV No. 23,,SU,O,state -1972-023,2441407.67,1972-03-31,1972,Molniya 8K78M,NVL,4V-1 No. 671,,SU,O,state -1972-024,2441410.93,1972-04-03,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-025,2441412.36,1972-04-04,1972,Molniya 8K78M,,Molniya-1 11F67 No. 27,,SU,O,state -1972-026,2441413.83,1972-04-06,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-027,2441414.92,1972-04-07,1972,Voskhod 11A57,,Energiya No. 1,,SU,O,state -1972-028,2441418.96,1972-04-11,1972,Kosmos 11K63,,DS-P1-Yu No. 58,,SU,O,state -1972-029,2441421.54,1972-04-14,1972,Molniya 8K78M,SOL,SO No. 501,,SU,O,state -1972-030,2441421.83,1972-04-14,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-033,2441429,1972-04-21,1972,Kosmos 11K63,,DS-P1-Yu No. 57,,SU,O,state -1972-034,2441442.97,1972-05-05,1972,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1972-035,2441443.98,1972-05-06,1972,Kosmos 11K65M,,Tsiklon,,SU,O,state -1972-036,2441454.93,1972-05-17,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-037,2441457.1,1972-05-19,1972,Molniya 8K78M,,Molniya-2,,SU,O,state -1972-038,2441462.77,1972-05-25,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-040,2441477.79,1972-06-09,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-042,2441489.77,1972-06-21,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-043,2441491.89,1972-06-23,1972,Kosmos 11K65M,,Strela-2M,,SU,O,state -1972-044,2441491.97,1972-06-23,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-045,2441495.12,1972-06-26,1972,Soyuz 11A511,,Soyuz 7K-T No. 33A,,SU,O,state -1972-046,2441497.66,1972-06-29,1972,Molniya 8K78M,SOL,SO-M No. 503,,SU,O,state -1972-047,2441498.75,1972-06-30,1972,Kosmos 11K63,,DS-U3-IK No. 3,,SU,O,state -1972-048,2441498.89,1972-06-30,1972,Kosmos 11K63,,DS-P1-I No. 12,,SU,O,state -1972-049,2441499.29,1972-06-30,1972,Vostok 8A92M,,Meteor-MV No. 26,,SU,O,state -1972-050,2441503.9,1972-07-05,1972,Kosmos 11K63,,DS-P1-Yu No. 56,,SU,O,state -1972-051,2441504.94,1972-07-06,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-053,2441509.18,1972-07-10,1972,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1972-054,2441510.75,1972-07-12,1972,Kosmos 11K63,,DS-P1-Yu No. 50,,SU,O,state -1972-055,2441512.1,1972-07-13,1972,Soyuz 11A511M,,Zenit-4MT,,SU,O,state -1972-056,2441518.07,1972-07-19,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-057,2441519.26,1972-07-20,1972,Kosmos 11K65M,,Strela-1M,,SU,O,state -1972-059,2441526.93,1972-07-28,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-060,2441531.84,1972-08-02,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-062,2441546.07,1972-08-16,1972,Kosmos 11K65M,,Tsiklon GVM,,SU,O,state -1972-063,2441547.92,1972-08-18,1972,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1972-066,2441550.94,1972-08-21,1972,Tsiklon-2,,US-A reactor,,SU,O,state -1972-067,2441559.85,1972-08-30,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-070,2441575.9,1972-09-15,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-071,2441576.85,1972-09-16,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-072,2441580.3,1972-09-19,1972,Molniya 8K78M,,Oko,,SU,O,state -1972-074,2441590.35,1972-09-29,1972,Kosmos 11K65M,,DS-P1-M No. 4,,SU,O,state -1972-075,2441591.35,1972-09-30,1972,Molniya 8K78M,,Molniya-2,,SU,O,state -1972-077,2441595,1972-10-04,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1972-078,2441595.98,1972-10-05,1972,Kosmos 11K63,,DS-P1-Yu No. 63,,SU,O,state -1972-080,2441602.06,1972-10-11,1972,Kosmos 11K63,,DS-P1-Yu No. 49,,SU,O,state -1972-081,2441604.76,1972-10-14,1972,Molniya 8K78M,,Molniya-1 11F67 No. 26,,SU,O,state -1972-083,2441609,1972-10-18,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-084,2441615.94,1972-10-25,1972,Kosmos 11K63,,DS-P1-Yu No. 61,,SU,O,state -1972-085,2441617.42,1972-10-26,1972,Vostok 8A92M,,Meteor-M No. 25,,SU,O,state -1972-086,2441622.06,1972-10-31,1972,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1972-087,2441622.59,1972-11-01,1972,Kosmos 11K65M,,Strela-1M,,SU,O,state -1972-088,2441624.57,1972-11-03,1972,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1972-093,2441646.88,1972-11-25,1972,Voskhod 11A57,,Zenit-2M,,SU,O,state -1972-094,2441652.41,1972-11-30,1972,Kosmos 11K63,,DS-U1-IK No. 2,,SU,O,state -1972-095,2441653.69,1972-12-02,1972,Molniya 8K78M,,Molniya-1 11F67 No. 28,,SU,O,state -1972-098,2441663.79,1972-12-12,1972,Molniya 8K78M,,Molniya-2,,SU,O,state -1972-099,2441666.07,1972-12-14,1972,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-001,2441690.79,1973-01-08,1973,Proton-K/D,,E-8 No. 204,,SU,O,state -1973-002,2441693.92,1973-01-11,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-102,2442034,1973-12-17,1973,Soyuz 11A511M,,Zenit-4MT,,SU,O,state -1973-003,2441702.65,1973-01-20,1973,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1973-103,2442035,1973-12-18,1973,Soyuz 11A511,,Soyuz 7K-T No. 33,,SU,O,state -1973-004,2441706.99,1973-01-24,1973,Kosmos 11K63,,DS-P1-Yu No. 62,,SU,O,state -1973-104,2442035.9,1973-12-19,1973,Kosmos 11K65M,,Strela-1M,,SU,O,state -1973-005,2441708.99,1973-01-26,1973,Kosmos 11K65M,,Tsiklon GVM,,SU,O,state -1973-105,2442038.02,1973-12-21,1973,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1973-006,2441714.85,1973-02-01,1973,Voskhod 11A57,,Zenit-2M,,SU,O,state -1973-106,2442041.97,1973-12-25,1973,Molniya 8K78M,,Molniya-2,,SU,O,state -1973-007,2441716.74,1973-02-03,1973,Molniya 8K78M,,Molniya-1 11F67 No. 31,,SU,O,state -1973-107,2442043.19,1973-12-26,1973,Kosmos 11K65M,,DS-U2-GKA No. 2,,SU,O,state -1973-008,2441722.05,1973-02-08,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-108,2442044.35,1973-12-27,1973,Tsiklon-2,,US-A reactor,,SU,O,state -1973-009,2441728.55,1973-02-15,1973,Molniya 8K78M,SOL,SO-M No. 502,,SU,O,state -1973-109,2442045.67,1973-12-29,1973,Kosmos 11K65M,,Zaliv,,SU,O,state -1973-010,2441741.69,1973-02-28,1973,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1973-011,2441743.03,1973-03-01,1973,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1973-012,2441747.89,1973-03-06,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-015,2441761.97,1973-03-20,1973,Vostok 8A92M,,Meteor-M No. 29,,SU,O,state -1973-016,2441763.92,1973-03-22,1973,Voskhod 11A57,,Zenit-2M,,SU,O,state -1973-017,2441775.88,1973-04-03,1973,Proton-K,,Almaz OPS 1,,SU,O,state -1973-018,2441777.97,1973-04-05,1973,Molniya 8K78M,,Molniya-2,,SU,O,state -1973-020,2441784.99,1973-04-12,1973,Kosmos 11K63,,DS-P1-Yu No. 55,,SU,O,state -1973-021,2441791.87,1973-04-19,1973,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1973-022,2441791.93,1973-04-19,1973,Kosmos 11K63,,DS-U2-IK Kopernik-500,,SU,O,state -1973-024,2441797.95,1973-04-25,1973,Voskhod 11A57,,Zenit-2M,,SU,O,state -1973-025,2441807.79,1973-05-05,1973,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1973-026,2441813.51,1973-05-11,1973,Proton-K,,DOS 3,,SU,O,state -1973-029,2441820.06,1973-05-17,1973,Kosmos 11K63,,DS-P1-Yu No. 65,,SU,O,state -1973-030,2441820.96,1973-05-18,1973,Soyuz-U,,Zenit-4MK,,SU,O,state -1973-031,2441825.94,1973-05-23,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-033,2441828.06,1973-05-25,1973,Voskhod 11A57,,Zenit-2M,,SU,O,state -1973-034,2441831.93,1973-05-29,1973,Vostok 8A92M,,Meteor-M No. 27,,SU,O,state -1973-035,2441838.98,1973-06-05,1973,Kosmos 11K63,,DS-P1-Yu No. 66,,SU,O,state -1973-036,2441839.98,1973-06-06,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-037,2441842.16,1973-06-08,1973,Kosmos 11K65M,,Strela-1M,,SU,O,state -1973-038,2441843.92,1973-06-10,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-041,2441848.75,1973-06-15,1973,Soyuz 11A511,,Soyuz 7K-T No. 36,,SU,O,state -1973-042,2441853.76,1973-06-20,1973,Kosmos 11K65M,,Zaliv,,SU,O,state -1973-043,2441855.06,1973-06-21,1973,Voskhod 11A57,,Zenit-2M,,SU,O,state -1973-044,2441860.99,1973-06-27,1973,Soyuz 11A511M,,Zenit-4MT,,SU,O,state -1973-045,2441874.92,1973-07-11,1973,Molniya 8K78M,,Molniya-2,,SU,O,state -1973-047,2441885.31,1973-07-21,1973,Proton-K/D,,3MS No. 52S,,SU,O,state -1973-048,2441888.98,1973-07-25,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-049,2441889.29,1973-07-25,1973,Proton-K/D,,3MS No. 53S,,SU,O,state -1973-051,2441896.08,1973-08-01,1973,Voskhod 11A57,,Zenit-2M,,SU,O,state -1973-052,2441900.24,1973-08-05,1973,Proton-K/D,,3MP No. 50P,,SU,O,state -1973-053,2441904.21,1973-08-09,1973,Proton-K/D,,3MP No. 51P,,SU,O,state -1973-055,2441916.02,1973-08-21,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-057,2441916.98,1973-08-22,1973,Kosmos 11K63,,DS-P1-Yu No. 59,,SU,O,state -1973-059,2441918.96,1973-08-24,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-060,2441922.92,1973-08-28,1973,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1973-061,2441924.51,1973-08-30,1973,Molniya 8K78M,,Molniya-1,,SU,O,state -1973-062,2441924.94,1973-08-30,1973,Voskhod 11A57,,Zenit-2M,,SU,O,state -1973-063,2441931.94,1973-09-06,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-064,2441933.58,1973-09-08,1973,Kosmos 11K65M,,Geoid,,SU,O,state -1973-065,2441939.52,1973-09-14,1973,Kosmos 11K65M,,Zaliv,,SU,O,state -1973-066,2441947.05,1973-09-21,1973,Soyuz-U,,Zenit-4MK,,SU,O,state -1973-067,2441953.01,1973-09-27,1973,Soyuz 11A511,,Soyuz 7K-T No. 37,,SU,O,state -1973-069,2441958.41,1973-10-02,1973,Kosmos 11K65M,,Strela-1M,,SU,O,state -1973-070,2441959.04,1973-10-03,1973,Voskhod 11A57,,Zenit-2M,,SU,O,state -1973-071,2441962.02,1973-10-06,1973,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1973-072,2441965.95,1973-10-10,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-073,2441970.86,1973-10-15,1973,Voskhod 11A57,,Zenit-2M,,SU,O,state -1973-074,2441972,1973-10-16,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-075,2441972.08,1973-10-16,1973,Kosmos 11K63,,DS-P1-Yu No. 60,,SU,O,state -1973-076,2441974.93,1973-10-19,1973,Molniya 8K78M,,Molniya-2,,SU,O,state -1973-077,2441975.93,1973-10-20,1973,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1973-079,2441982.97,1973-10-27,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-080,2441985.08,1973-10-29,1973,Vostok 8A92M,,Tselina-D,,SU,O,state -1973-082,2441986.29,1973-10-30,1973,Kosmos 11K65M,,DS-U2-IK No. 3,,SU,O,state -1973-083,2441987.27,1973-10-31,1973,Soyuz-U,,Bion No. 1,,SU,O,state -1973-084,2441989.04,1973-11-02,1973,Molniya 8K78M,,Oko,,SU,O,state -1973-087,2441997.03,1973-11-10,1973,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1973-089,2442001.36,1973-11-14,1973,Molniya 8K78M,,Molniya-1 11F67 No. 32,,SU,O,state -1973-091,2442007.02,1973-11-20,1973,Kosmos 11K63,,DS-P1-Yu No. 69,,SU,O,state -1973-092,2442007.92,1973-11-21,1973,Voskhod 11A57,,Zenit-4M,,SU,O,state -1973-093,2442013.51,1973-11-27,1973,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1973-094,2442014.9,1973-11-28,1973,Kosmos 11K63,,DS-P1-Yu No. 64,,SU,O,state -1973-095,2442014.99,1973-11-28,1973,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1973-096,2442016.72,1973-11-30,1973,Soyuz 11A511,,Soyuz 7K-T No. 34A,,SU,O,state -1973-097,2442017.05,1973-11-30,1973,Molniya 8K78M,,Molniya-1,,SU,O,state -1973-098,2442021.13,1973-12-04,1973,Kosmos 11K65M,,Strela-2M,,SU,O,state -1973-099,2442029.97,1973-12-13,1973,Kosmos 11K63,,DS-P1-I No. 13,,SU,O,state -1974-100,2442400.09,1974-12-18,1974,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1974-001,2442064.92,1974-01-17,1974,Kosmos 11K65M,,Zaliv,,SU,O,state -1974-102,2442402.6,1974-12-21,1974,Molniya 8K78M,,Molniya-2,,SU,O,state -1974-003,2442072.13,1974-01-24,1974,Voskhod 11A57,,Zenit-2M,,SU,O,state -1974-103,2442405.96,1974-12-24,1974,Tsiklon-2,,US-P,,SU,O,state -1974-004,2442077.96,1974-01-30,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-104,2442407.68,1974-12-26,1974,Proton-K,,DOS 4 (17K No. 124),,SU,O,state -1974-005,2442084.52,1974-02-06,1974,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1974-105,2442408,1974-12-26,1974,Kosmos 11K65M,,Tsiklon-B,,SU,O,state -1974-006,2442090.87,1974-02-12,1974,Voskhod 11A57,,Zenit-4M,,SU,O,state -1974-106,2442408.88,1974-12-27,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-010,2442105.96,1974-02-27,1974,Kosmos 11K63,,DS-P1-Yu No. 71,,SU,O,state -1974-011,2442111.98,1974-03-05,1974,Vostok 8A92M,,Meteor-M No. 30,,SU,O,state -1974-012,2442112.17,1974-03-05,1974,Kosmos 11K63,,DS-P1-Yu No. 67,,SU,O,state -1974-014,2442120.94,1974-03-14,1974,Voskhod 11A57,,Zenit-2M,,SU,O,state -1974-016,2442126.85,1974-03-20,1974,Soyuz-U,,Zenit-4MK,,SU,O,state -1974-017,2442133.07,1974-03-26,1974,Proton-K/DM,,11F638 GVM,,SU,O,state -1974-018,2442140.81,1974-04-03,1974,Soyuz-U,,Soyuz 7K-TM No. 71-EPSA,,SU,O,state -1974-019,2442141.85,1974-04-04,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-021,2442149.02,1974-04-11,1974,Voskhod 11A57,,Zenit-2M,,SU,O,state -1974-023,2442158.37,1974-04-20,1974,Molniya 8K78M,,Molniya-1,,SU,O,state -1974-024,2442161.09,1974-04-23,1974,Kosmos 11K65M,,Strela-1M,,SU,O,state -1974-025,2442161.99,1974-04-24,1974,Vostok 8A92M,,Meteor-M No. 22,,SU,O,state -1974-026,2442164.1,1974-04-26,1974,Molniya 8K78M,,Molniya-2,,SU,O,state -1974-027,2442167.06,1974-04-29,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-028,2442167.22,1974-04-29,1974,Kosmos 11K65M,,Geoid,,SU,O,state -1974-029,2442182.81,1974-05-15,1974,Tsiklon-2,,US-A reactor,,SU,O,state -1974-030,2442182.85,1974-05-15,1974,Soyuz-U,,Zenit-4MK,,SU,O,state -1974-031,2442183.02,1974-05-15,1974,Voskhod 11A57,,Zenit-2M,,SU,O,state -1974-032,2442184.79,1974-05-17,1974,Tsiklon-2,,US-A reactor,,SU,O,state -1974-034,2442184.96,1974-05-17,1974,Kosmos 11K65M,,DS-U3-IK No. 4,,SU,O,state -1974-035,2442188.76,1974-05-21,1974,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1974-036,2442194.81,1974-05-27,1974,Soyuz 11A511,,Soyuz 7K-T(A9) No. 61,,SU,O,state -1974-037,2442196.87,1974-05-29,1974,Proton-K/D,,E-8LS No. 206,,SU,O,state -1974-038,2442198.03,1974-05-30,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-041,2442204.76,1974-06-06,1974,Voskhod 11A57,,Zenit-2M,,SU,O,state -1974-043,2442212.02,1974-06-13,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-044,2442217.04,1974-06-18,1974,Kosmos 11K65M,,Vektor,,SU,O,state -1974-045,2442219.88,1974-06-21,1974,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1974-046,2442223.44,1974-06-24,1974,Proton-K,,Almaz 2 (11F71 No. 101-2,,SU,O,state -1974-047,2442225.02,1974-06-26,1974,Kosmos 11K63,,DS-P1-I No. 14,,SU,O,state -1974-048,2442226.15,1974-06-27,1974,Kosmos 11K65M,,Zaliv,,SU,O,state -1974-049,2442228.03,1974-06-29,1974,Soyuz 11A511M,,Zenit-4MT,,SU,O,state -1974-050,2442228.17,1974-06-29,1974,Molniya 8K78M,,Oko,,SU,O,state -1974-051,2442232.29,1974-07-03,1974,Soyuz 11A511,,Soyuz 7K-T(A9) No. 62,,SU,O,state -1974-052,2442238.11,1974-07-09,1974,Vostok 8A92M,,Meteor-Priroda No. 1,,SU,O,state -1974-053,2442241.03,1974-07-12,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-056,2442251.56,1974-07-23,1974,Molniya 8K78M,,Molniya-2,,SU,O,state -1974-057,2442253.79,1974-07-25,1974,Voskhod 11A57,,Zenit-4M,,SU,O,state -1974-058,2442254,1974-07-25,1974,Kosmos 11K63,,DS-P1-Yu No. 74,,SU,O,state -1974-059,2442254.79,1974-07-26,1974,Voskhod 11A57,,Zenit-2M,,SU,O,state -1974-060,2442258,1974-07-29,1974,Proton-K/DM,,Molniya-1 11F658 No. 38,,SU,O,state -1974-061,2442265.5,1974-08-06,1974,Soyuz-U,,Soyuz 7K-S No. 1L,,SU,O,state -1974-062,2442267.03,1974-08-07,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-064,2442271.77,1974-08-12,1974,Soyuz-U,,Soyuz 7K-TM No. 72-EPSA,,SU,O,state -1974-066,2442275.65,1974-08-16,1974,Vostok 8A92M,,Tselina-D,,SU,O,state -1974-067,2442286.33,1974-08-26,1974,Soyuz 11A511,,Soyuz 7K-T(A9) No. 63,,SU,O,state -1974-068,2442288.82,1974-08-29,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-069,2442289.12,1974-08-29,1974,Kosmos 11K65M,,Geoid,,SU,O,state -1974-071,2442302.24,1974-09-11,1974,Kosmos 11K65M,,Strela-2M,,SU,O,state -1974-072,2442310.12,1974-09-19,1974,Kosmos 11K65M,,Strela-1M,,SU,O,state -1974-073,2442310.9,1974-09-20,1974,Voskhod 11A57,,Zenit-2M,,SU,O,state -1974-074,2442317.19,1974-09-26,1974,Kosmos 11K63,,DS-P1-Yu No. 72,,SU,O,state -1974-076,2442331.98,1974-10-11,1974,Kosmos 11K65M,,Vektor,,SU,O,state -1974-078,2442339.12,1974-10-18,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-079,2442339.44,1974-10-18,1974,Kosmos 11K65M,,Zaliv,,SU,O,state -1974-080,2442343.25,1974-10-22,1974,Soyuz-U,,Bion No. 2,,SU,O,state -1974-081,2442345.03,1974-10-24,1974,Molniya 8K78M,,Molniya-1 No. 26,,SU,O,state -1974-082,2442345.9,1974-10-25,1974,Soyuz-U,,Zenit-4MK,,SU,O,state -1974-083,2442348.93,1974-10-28,1974,Vostok 8A92M,,Meteor-M No. 33,,SU,O,state -1974-084,2442349.1,1974-10-28,1974,Proton-K/D,,E-8-5M No. 410,,SU,O,state -1974-086,2442351.92,1974-10-31,1974,Kosmos 11K65M,,DS-U2-IK No. 4,,SU,O,state -1974-087,2442353.1,1974-11-01,1974,Voskhod 11A57,,Zenit-2M,,SU,O,state -1974-088,2442355.94,1974-11-04,1974,Soyuz 11A511M,,Zenit-4MT,,SU,O,state -1974-090,2442367.99,1974-11-16,1974,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1974-091,2442372,1974-11-20,1974,Kosmos 11K63,,DS-P1-Yu No. 73,,SU,O,state -1974-092,2442372.94,1974-11-21,1974,Molniya 8K78M,,Molniya-3 No. 11,,SU,O,state -1974-095,2442378.99,1974-11-27,1974,Voskhod 11A57,,Zenit-2M,,SU,O,state -1974-096,2442383.9,1974-12-02,1974,Soyuz-U,,Soyuz 7K-TM No. 73-EPSA,,SU,O,state -1974-098,2442395.06,1974-12-13,1974,Soyuz-U,,Yantar'-2K No. 2,,SU,O,state -1974-099,2442398.99,1974-12-17,1974,Vostok 8A92M,,Meteor-M No. 32,,SU,O,state -1975-001,2442423.41,1975-01-10,1975,Soyuz 11A511,,Soyuz 7K-T No. 38,,SU,O,state -1975-101,2442703.1,1975-10-17,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-002,2442429.88,1975-01-17,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-102,2442714.96,1975-10-29,1975,Tsiklon-2,,US-P,,SU,O,state -1975-003,2442433.96,1975-01-21,1975,Kosmos 11K63,,DS-P1-Yu No. 70,,SU,O,state -1975-103,2442720.93,1975-11-04,1975,Kosmos 11K65M,,Tsiklon-B,,SU,O,state -1975-104,2442721.14,1975-11-04,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-005,2442435.96,1975-01-23,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-105,2442731.3,1975-11-14,1975,Molniya 8K78M,,Molniya-3 No. 13,,SU,O,state -1975-006,2442441,1975-01-28,1975,Kosmos 11K63,,DS-P1-Yu No. 75,,SU,O,state -1975-106,2442734.11,1975-11-17,1975,Soyuz-U,,Soyuz 7K-T(A9) No. 64,,SU,O,state -1975-007,2442443.13,1975-01-30,1975,Molniya 8K78M,,Oko,,SU,O,state -1975-008,2442449.05,1975-02-05,1975,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1975-108,2442737.89,1975-11-21,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-009,2442449.7,1975-02-06,1975,Molniya 8K78M,,Molniya-2,,SU,O,state -1975-109,2442738.22,1975-11-21,1975,Kosmos 11K65M,,Tselina-OK,,SU,O,state -1975-110,2442742.21,1975-11-25,1975,Soyuz-U,,Bion No. 3,,SU,O,state -1975-012,2442455.65,1975-02-12,1975,Kosmos 11K65M,,Geoid,,SU,O,state -1975-112,2442744.51,1975-11-28,1975,Kosmos 11K65M,,Strela-2M,,SU,O,state -1975-013,2442456.1,1975-02-12,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-113,2442749.92,1975-12-03,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-015,2442469.88,1975-02-26,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-115,2442758.21,1975-12-11,1975,Kosmos 11K65M,,DS-U2-IK No. 6,,SU,O,state -1975-016,2442472.08,1975-02-28,1975,Kosmos 11K65M,,Strela-1M,,SU,O,state -1975-116,2442759.03,1975-12-12,1975,Tsiklon-2,,US-A reactor,,SU,O,state -1975-018,2442483.87,1975-03-12,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-019,2442492.78,1975-03-21,1975,Soyuz-U,,Zenit-4MT,,SU,O,state -1975-020,2442497.87,1975-03-26,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-120,2442762.91,1975-12-16,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-021,2442498.83,1975-03-27,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-121,2442763.96,1975-12-17,1975,Molniya 8K78M,,Molniya-2,,SU,O,state -1975-022,2442499.1,1975-03-27,1975,Kosmos 11K65M,,DS-U2-IK No. 5,,SU,O,state -1975-122,2442768.59,1975-12-22,1975,Molniya 8K78M,SOL,SO-M No. 504,,SU,O,state -1975-023,2442504.02,1975-04-01,1975,Vostok 8A92M,,Meteor-M No. 31,,SU,O,state -1975-123,2442769.04,1975-12-22,1975,Proton-K/DM,,Gran' No. 11L,,SU,O,state -1975-024,2442504.96,1975-04-02,1975,Tsiklon-2,,US-A reactor,,SU,O,state -1975-124,2442772.29,1975-12-25,1975,Vostok 8A92M,,Meteor No. 38,,SU,O,state -1975-025,2442509.96,1975-04-07,1975,Tsiklon-2,,US-A reactor,,SU,O,state -1975-125,2442773.93,1975-12-27,1975,Molniya 8K78M,,Molniya-3 No. 15,,SU,O,state -1975-026,2442511.27,1975-04-08,1975,Kosmos 11K63,,DS-P1-Yu No. 77,,SU,O,state -1975-028,2442513.83,1975-04-11,1975,Kosmos 11K65M,,Tsiklon-B,,SU,O,state -1975-029,2442517.25,1975-04-14,1975,Molniya 8K78M,,Molniya-3 No. 12,,SU,O,state -1975-030,2442518.83,1975-04-16,1975,Soyuz-U,,Zenit-4MK,,SU,O,state -1975-031,2442520.92,1975-04-18,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-033,2442521.83,1975-04-19,1975,Kosmos 11K65M,,ISS,,SU,O,state -1975-034,2442525.38,1975-04-22,1975,Kosmos 11K65M,,Zaliv,,SU,O,state -1975-035,2442526.84,1975-04-24,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-036,2442531.93,1975-04-29,1975,Molniya 8K78M,,Molniya-1,,SU,O,state -1975-041,2442553.79,1975-05-21,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-044,2442557.12,1975-05-24,1975,Soyuz 11A511,,Soyuz 7K-T No. 40,,SU,O,state -1975-045,2442560.52,1975-05-28,1975,Kosmos 11K65M,,Strela-1M,,SU,O,state -1975-046,2442560.81,1975-05-28,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-047,2442562.78,1975-05-30,1975,Voskhod 11A57,,Gektor-Priroda,,SU,O,state -1975-048,2442567.06,1975-06-03,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-049,2442568.57,1975-06-05,1975,Molniya 8K78M,,Molniya-1 No. 24,,SU,O,state -1975-050,2442571.61,1975-06-08,1975,Proton-K/D,,4V-1 No. 660,,SU,O,state -1975-053,2442576.02,1975-06-12,1975,Soyuz-U,,Zenit-4MK,,SU,O,state -1975-054,2442577.63,1975-06-14,1975,Proton-K/D,,4V-1 No. 661,,SU,O,state -1975-056,2442583.79,1975-06-20,1975,Vostok 8A92M,,Tselina-D,,SU,O,state -1975-058,2442588,1975-06-24,1975,Kosmos 11K63,,DS-P1-Yu No. 76,,SU,O,state -1975-059,2442589.04,1975-06-25,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-060,2442591.04,1975-06-27,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-061,2442597.07,1975-07-03,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-062,2442597.54,1975-07-04,1975,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1975-063,2442601.71,1975-07-08,1975,Molniya 8K78M,,Molniya-2,,SU,O,state -1975-064,2442604.68,1975-07-11,1975,Vostok 8A92M,,Meteor-2 No. 1,,SU,O,state -1975-065,2442609.01,1975-07-15,1975,Soyuz-U,,Soyuz 7K-TM No. 75,,SU,O,state -1975-067,2442610.88,1975-07-17,1975,Kosmos 11K63,,DS-P1-I No. 15,,SU,O,state -1975-068,2442617.04,1975-07-23,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-069,2442618.29,1975-07-24,1975,Kosmos 11K65M,,Vektor,,SU,O,state -1975-071,2442625.04,1975-07-31,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-073,2442637.81,1975-08-13,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-074,2442639.06,1975-08-14,1975,Kosmos 11K65M,,Tsiklon-B,,SU,O,state -1975-076,2442646.59,1975-08-22,1975,Vostok 8A92M,,Tselina-D,,SU,O,state -1975-078,2442652.11,1975-08-27,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-079,2442658.05,1975-09-02,1975,Molniya 8K78M,,Molniya-1,,SU,O,state -1975-080,2442661.12,1975-09-05,1975,Soyuz-U,,Yantar'-2K No. 3,,SU,O,state -1975-081,2442664.51,1975-09-09,1975,Molniya 8K78M,,Molniya-2,,SU,O,state -1975-084,2442667.73,1975-09-12,1975,Soyuz-U,,Zenit-4MT,,SU,O,state -1975-085,2442671.88,1975-09-16,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-086,2442672.8,1975-09-17,1975,Kosmos 11K65M,,Strela-1M,,SU,O,state -1975-087,2442673.51,1975-09-18,1975,Vostok 8A92M,,Meteor-M No. 28,,SU,O,state -1975-088,2442678.92,1975-09-23,1975,Voskhod 11A57,,Zenit-2M,,SU,O,state -1975-089,2442680,1975-09-24,1975,Kosmos 11K65M,,Geoid,,SU,O,state -1975-090,2442680.91,1975-09-25,1975,Soyuz-U,,Fram,,SU,O,state -1975-093,2442684.68,1975-09-29,1975,Soyuz-U,,Soyuz 7K-S No. 2L,,SU,O,state -1975-094,2442686.28,1975-09-30,1975,Kosmos 11K65M,,Strela-2M,,SU,O,state -1975-095,2442686.85,1975-10-01,1975,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1975-097,2442693.52,1975-10-08,1975,Proton-K/DM,,Oko?,,SU,O,state -1976-100,2443066.24,1976-10-14,1976,Soyuz 11A511,,Soyuz 7K-T(A9) No. 65,,SU,O,state -1976-001,2442783.7,1976-01-06,1976,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1976-002,2442785.15,1976-01-07,1976,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1976-102,2443067.46,1976-10-15,1976,Vostok 8A92M,,Meteor No. 35,,SU,O,state -1976-103,2443069.25,1976-10-17,1976,Tsiklon-2,,US-A reactor,,SU,O,state -1976-104,2443073.2,1976-10-21,1976,Tsiklon-2,,US-A reactor,,SU,O,state -1976-005,2442798.21,1976-01-20,1976,Kosmos 11K65M,,Tsiklon-B,,SU,O,state -1976-105,2443073.88,1976-10-22,1976,Molniya 8K78M,,Oko,,SU,O,state -1976-006,2442799.98,1976-01-22,1976,Molniya 8K78M,,Molniya-1 11F658 No. 40,,SU,O,state -1976-106,2443077.1,1976-10-25,1976,Soyuz-U,,Zenit-4MK,,SU,O,state -1976-007,2442800.43,1976-01-22,1976,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1976-107,2443078.12,1976-10-26,1976,Proton-K/DM,,Ekran No. 11L,,SU,O,state -1976-008,2442805.94,1976-01-28,1976,Kosmos 11K65M,,Strela-1M,,SU,O,state -1976-108,2443081.03,1976-10-29,1976,Kosmos 11K65M,,Parus,,SU,O,state -1976-009,2442806.85,1976-01-29,1976,Voskhod 11A57,,Zenit-2M,,SU,O,state -1976-109,2443083.97,1976-11-01,1976,Soyuz-U,,Zenit-2M,,SU,O,state -1976-110,2443093.95,1976-11-11,1976,Soyuz-U,,Zenit-4MK,,SU,O,state -1976-011,2442811.84,1976-02-03,1976,Kosmos 11K65M,,Zaliv,,SU,O,state -1976-111,2443106.19,1976-11-23,1976,Soyuz-U,,Zenit-6,,SU,O,state -1976-012,2442814.1,1976-02-05,1976,Kosmos 11K63,,DS-P1-I No. 16,,SU,O,state -1976-112,2443107.67,1976-11-25,1976,Molniya 8K78M,SOL,SO-M No. 505,,SU,O,state -1976-013,2442819.87,1976-02-11,1976,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1976-113,2443109.1,1976-11-26,1976,Tsiklon-2,,US-P,,SU,O,state -1976-014,2442821.04,1976-02-12,1976,Kosmos 11K65M,,Lira,,SU,O,state -1976-114,2443112.17,1976-11-29,1976,Soyuz-U,,Soyuz 7K-S No. 3L,,SU,O,state -1976-015,2442824.85,1976-02-16,1976,Tsiklon-2,,IS,,SU,O,state -1976-115,2443114.51,1976-12-02,1976,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1976-116,2443114.61,1976-12-02,1976,Molniya 8K78M,,Molniya-2,,SU,O,state -1976-018,2442829.08,1976-02-20,1976,Soyuz-U,,Yantar'-2K No. 4,,SU,O,state -1976-118,2443119.93,1976-12-07,1976,Kosmos 11K65M,,Strela-1M,,SU,O,state -1976-119,2443121.92,1976-12-09,1976,Soyuz-U,,Zenit-2M,,SU,O,state -1976-020,2442847.83,1976-03-10,1976,Soyuz-U,,Zenit-4MK,,SU,O,state -1976-120,2443122.33,1976-12-09,1976,Kosmos 11K65M,,Lira,,SU,O,state -1976-021,2442849.32,1976-03-11,1976,Molniya 8K78M,,Molniya-1,,SU,O,state -1976-121,2443127.56,1976-12-15,1976,Proton-K,,TKS VA No. 009A/1,,SU,O,state -1976-022,2442850.06,1976-03-12,1976,Kosmos 11K65M,,Vektor,,SU,O,state -1976-122,2443128.08,1976-12-15,1976,Kosmos 11K65M,,Tsikada,,SU,O,state -1976-123,2443129.9,1976-12-17,1976,Soyuz-U,,Zenit-4MK,,SU,O,state -1976-024,2442854.22,1976-03-16,1976,Vostok 8A92M,,Tselina-D,,SU,O,state -1976-124,2443130,1976-12-17,1976,Kosmos 11K65M,,Romb 2,,SU,O,state -1976-025,2442855.89,1976-03-18,1976,Soyuz-U,,Zenit-2M,,SU,O,state -1976-026,2442857.31,1976-03-19,1976,Molniya 8K78M,,Molniya-1 11F658 No. 42,,SU,O,state -1976-126,2443140,1976-12-27,1976,Tsiklon-2,,IS,,SU,O,state -1976-127,2443140.78,1976-12-28,1976,Molniya 8K78M,,Molniya-3 No. 17,,SU,O,state -1976-028,2442864.12,1976-03-26,1976,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1976-128,2443140.83,1976-12-28,1976,Kosmos 11K65M,,Parus,,SU,O,state -1976-030,2442869.03,1976-03-31,1976,Soyuz 11A511M,,Orion,,SU,O,state -1976-031,2442874.68,1976-04-06,1976,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1976-032,2442876.05,1976-04-07,1976,Vostok 8A92M,,Meteor No. 37,,SU,O,state -1976-033,2442877.85,1976-04-09,1976,Voskhod 11A57,,Zenit-2M,,SU,O,state -1976-034,2442882.22,1976-04-13,1976,Tsiklon-2,,IS,,SU,O,state -1976-036,2442896.9,1976-04-28,1976,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1976-037,2442897.06,1976-04-28,1976,Kosmos 11K65M,,Romb 1,,SU,O,state -1976-040,2442903.83,1976-05-05,1976,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1976-041,2442911.25,1976-05-12,1976,Molniya 8K78M,,Molniya-3 No. 16,,SU,O,state -1976-043,2442914.06,1976-05-15,1976,Vostok 8A92M,,Meteor-Priroda No. 2-1,,SU,O,state -1976-044,2442916.96,1976-05-18,1976,Kosmos 11K63,,DS-P1-Yu No. 78,,SU,O,state -1976-045,2442918.88,1976-05-20,1976,Voskhod 11A57,,Zenit-2M,,SU,O,state -1976-046,2442919.79,1976-05-21,1976,Soyuz-U,,Fram,,SU,O,state -1976-048,2442924.88,1976-05-26,1976,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1976-049,2442927.13,1976-05-28,1976,Kosmos 11K65M,,Vektor,,SU,O,state -1976-051,2442932.44,1976-06-02,1976,Kosmos 11K65M,,Zaliv,,SU,O,state -1976-052,2442937.79,1976-06-08,1976,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1976-054,2442945.05,1976-06-15,1976,Kosmos 11K65M,,Strela-1M,,SU,O,state -1976-055,2442946.05,1976-06-16,1976,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1976-056,2442949.17,1976-06-19,1976,Kosmos 11K65M,,AUOS-Z-T-IK,,SU,O,state -1976-057,2442952.25,1976-06-22,1976,Proton-K,,Almaz OPS 3,,SU,O,state -1976-058,2442953.8,1976-06-24,1976,Soyuz-U,,Zenit-2M,,SU,O,state -1976-060,2442958.81,1976-06-29,1976,Voskhod 11A57,,Zenit-4MK,,SU,O,state -1976-061,2442958.84,1976-06-29,1976,Kosmos 11K65M,,Strela-2M,,SU,O,state -1976-062,2442960.84,1976-07-01,1976,Molniya 8K78M,,Molniya-2,,SU,O,state -1976-063,2442961.94,1976-07-02,1976,Tsiklon-2,,US-P,,SU,O,state -1976-064,2442966.01,1976-07-06,1976,Soyuz 11A511,,Soyuz 7K-T No. 41,,SU,O,state -1976-067,2442968.38,1976-07-08,1976,Kosmos 11K65M,,Lira,,SU,O,state -1976-068,2442973.88,1976-07-14,1976,Soyuz-U,,Zenit-2M,,SU,O,state -1976-069,2442975.05,1976-07-15,1976,Kosmos 11K65M,,Strela-2M,,SU,O,state -1976-070,2442980.93,1976-07-21,1976,Kosmos 11K65M,,Geoid,,SU,O,state -1976-071,2442981.13,1976-07-21,1976,Tsiklon-2,,IS,,SU,O,state -1976-072,2442982.15,1976-07-22,1976,Soyuz-U,,Yantar'-2K No. 5,,SU,O,state -1976-074,2442983.16,1976-07-23,1976,Molniya 8K78M,,Molniya-1 11F658 No. 43,,SU,O,state -1976-075,2442986.72,1976-07-27,1976,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1976-076,2442987,1976-07-27,1976,Kosmos 11K65M,,DS-U3-IK No. 6?,,SU,O,state -1976-078,2442989.34,1976-07-29,1976,Kosmos 11K65M,,Zaliv,,SU,O,state -1976-079,2442995.07,1976-08-04,1976,Soyuz-U,,Zenit-4MK,,SU,O,state -1976-081,2443000.13,1976-08-09,1976,Proton-K/D-1,,E-8-5M No. 413,,SU,O,state -1976-082,2443003.06,1976-08-12,1976,Soyuz-U,,Zenit-2M,,SU,O,state -1976-083,2443008.9,1976-08-18,1976,Kosmos 11K63,,DS-P1-I No. 17,,SU,O,state -1976-084,2443016.96,1976-08-26,1976,Kosmos 11K63,,DS-P1-Yu No. 79,,SU,O,state -1976-085,2443018.11,1976-08-27,1976,Vostok 8A92M,,Tselina-D,,SU,O,state -1976-086,2443018.88,1976-08-28,1976,Soyuz-U,,Zenit-4MK,,SU,O,state -1976-088,2443022.64,1976-09-01,1976,Molniya 8K78M,,Molniya-2,,SU,O,state -1976-090,2443024.89,1976-09-03,1976,Soyuz-U,,Zenit-4MK,,SU,O,state -1976-092,2443033.27,1976-09-11,1976,Proton-K/DM,,Gran' No. 12L,,SU,O,state -1976-093,2443036.91,1976-09-15,1976,Soyuz-U,,Soyuz 7K-TM No. 74,,SU,O,state -1976-095,2443042.99,1976-09-21,1976,Soyuz-U,,Orion,,SU,O,state -1976-096,2443043.9,1976-09-22,1976,Soyuz-U,,Zenit-2M,,SU,O,state -1976-097,2443046.12,1976-09-24,1976,Soyuz-U,,Zenit-4MK,,SU,O,state -1976-098,2443050.79,1976-09-29,1976,Kosmos 11K65M,,Strela-2M,,SU,O,state -1976-099,2443061.9,1976-10-10,1976,Soyuz-U,,Zenit-4MK,,SU,O,state -1977-100,2443428.13,1977-10-11,1977,Soyuz-U,,Zenit-6,,SU,O,state -1977-001,2443149.9,1977-01-06,1977,Soyuz-U,,Zenit-4MK,,SU,O,state -1977-101,2443437.92,1977-10-21,1977,Kosmos 11K65M,,Lira,,SU,O,state -1977-002,2443150.47,1977-01-06,1977,Vostok 8A92M,,Meteor-2 No. 2,,SU,O,state -1977-003,2443163.85,1977-01-20,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-103,2443441.73,1977-10-25,1977,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1977-004,2443164.34,1977-01-20,1977,Kosmos 11K65M,,Zaliv,,SU,O,state -1977-104,2443442.72,1977-10-26,1977,Tsiklon-2,,IS,,SU,O,state -1977-105,2443444.57,1977-10-28,1977,Molniya 8K78M,,Molniya-3 No. 18,,SU,O,state -1977-006,2443177.02,1977-02-02,1977,Kosmos 11K65M,,Vektor,,SU,O,state -1977-107,2443445.17,1977-10-28,1977,Kosmos 11K65M,,Zaliv,,SU,O,state -1977-008,2443182.17,1977-02-07,1977,Soyuz-U,,Soyuz 7K-T(A9) No. 66,,SU,O,state -1977-009,2443183.98,1977-02-09,1977,Soyuz-U,,Zenit-4MK,,SU,O,state -1977-109,2443472.1,1977-11-24,1977,Kosmos 11K65M,,Geoid,,SU,O,state -1977-010,2443186.12,1977-02-11,1977,Molniya 8K78M,,Molniya-2,,SU,O,state -1977-110,2443482,1977-12-04,1977,Soyuz-U,,Zenit-4MKM,,SU,O,state -1977-011,2443189.96,1977-02-15,1977,Kosmos 11K65M,,GVM DS-U2-IK,,SU,O,state -1977-111,2443485.96,1977-12-08,1977,Kosmos 11K65M,,Romb 4,,SU,O,state -1977-013,2443196.22,1977-02-21,1977,Kosmos 11K65M,,Parus,,SU,O,state -1977-113,2443487.55,1977-12-10,1977,Soyuz-U,,Soyuz 7K-T No. 43,,SU,O,state -1977-015,2443201.39,1977-02-26,1977,Vostok 8A92M,,Tselina-D,,SU,O,state -1977-115,2443489.9,1977-12-12,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-016,2443205.94,1977-03-03,1977,Soyuz-U,,Zenit-6,,SU,O,state -1977-116,2443491.16,1977-12-13,1977,Kosmos 11K65M,,Lira,,SU,O,state -1977-017,2443212.96,1977-03-10,1977,Soyuz-U,,Zenit-4MK,,SU,O,state -1977-117,2443491.9,1977-12-14,1977,Vostok 8A92M,,Meteor-2 No. 3,,SU,O,state -1977-119,2443493.68,1977-12-16,1977,Kosmos 11K65M,,Strela-2M,,SU,O,state -1977-020,2443219.85,1977-03-17,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-120,2443498.16,1977-12-20,1977,Soyuz-U,,Zenit-4MKM,,SU,O,state -1977-021,2443226.99,1977-03-24,1977,Molniya 8K78M,,Molniya-1,,SU,O,state -1977-121,2443498.94,1977-12-21,1977,Tsiklon-2,,IS,,SU,O,state -1977-022,2443227.42,1977-03-24,1977,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1977-122,2443501.18,1977-12-23,1977,Kosmos 11K65M,,Parus,,SU,O,state -1977-023,2443232.46,1977-03-29,1977,Kosmos 11K65M,,AUOS-Z-R-O Oval,,SU,O,state -1977-123,2443504.83,1977-12-27,1977,Tsiklon-3,,EPN No. 03.0380?,,SU,O,state -1977-024,2443238.59,1977-04-05,1977,Vostok 8A92M,,Meteor-M No. 39,,SU,O,state -1977-124,2443504.89,1977-12-27,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-025,2443238.94,1977-04-05,1977,Kosmos 11K63,,DS-P1-I No. 18,,SU,O,state -1977-026,2443240.87,1977-04-07,1977,Soyuz-U,,Zenit-4MK,,SU,O,state -1977-027,2443244.57,1977-04-11,1977,Molniya 8K78M,,Oko,,SU,O,state -1977-028,2443253.88,1977-04-20,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-030,2443260.11,1977-04-26,1977,Soyuz-U,,Yantar'-2K No. 6,,SU,O,state -1977-031,2443260.65,1977-04-27,1977,Kosmos 11K65M,,ER763-4,,SU,O,state -1977-032,2443261.88,1977-04-28,1977,Molniya 8K78M,,Molniya-3 No. 19,,SU,O,state -1977-033,2443269.08,1977-05-05,1977,Soyuz-U,,Zenit-4MK,,SU,O,state -1977-035,2443280.92,1977-05-17,1977,Soyuz-U,,Zenit-4MK,,SU,O,state -1977-036,2443283.19,1977-05-19,1977,Kosmos 11K65M,,Lira,,SU,O,state -1977-037,2443287.01,1977-05-23,1977,Tsiklon-2,,IS,,SU,O,state -1977-039,2443288.96,1977-05-25,1977,Kosmos 11K65M,,Geoid,,SU,O,state -1977-040,2443289.79,1977-05-26,1977,Soyuz-U,,Fram,,SU,O,state -1977-042,2443294.44,1977-05-30,1977,Kosmos 11K65M,,Romb 3,,SU,O,state -1977-043,2443294.81,1977-05-31,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-045,2443303.08,1977-06-08,1977,Soyuz-U,,Zenit-4MK,,SU,O,state -1977-046,2443304.83,1977-06-10,1977,Soyuz-U,,Orion,,SU,O,state -1977-047,2443310.58,1977-06-16,1977,Molniya 8K78M,,Oko,,SU,O,state -1977-049,2443311.65,1977-06-17,1977,Kosmos 11K65M,,Signe 3,,SU,O,state -1977-050,2443311.81,1977-06-17,1977,Tsiklon-2,,IS,,SU,O,state -1977-051,2443312.94,1977-06-18,1977,Kosmos 11K63,,DS-P1-I No. 19,,SU,O,state -1977-052,2443316.83,1977-06-22,1977,Soyuz-U,,Zenit-4MK,,SU,O,state -1977-054,2443318.74,1977-06-24,1977,Molniya 8K78M,,Molniya-1 11F658 No. 45,,SU,O,state -1977-055,2443318.94,1977-06-24,1977,Tsiklon-3,,EPN No. 03.0380?,,SU,O,state -1977-057,2443324.27,1977-06-29,1977,Vostok 8A92M,,Meteor-Priroda No. 2-2,,SU,O,state -1977-058,2443325.08,1977-06-30,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-059,2443325.99,1977-07-01,1977,Kosmos 11K65M,,Strela-2M,,SU,O,state -1977-060,2443329.43,1977-07-04,1977,Kosmos 11K65M,,Tselina-OK,,SU,O,state -1977-061,2443331.81,1977-07-07,1977,Vostok 8A92M,,Tselina-D,,SU,O,state -1977-062,2443333.23,1977-07-08,1977,Kosmos 11K65M,,Tsikada,,SU,O,state -1977-063,2443336.88,1977-07-12,1977,Soyuz-U,,Zenit-4MKM,,SU,O,state -1977-064,2443337.71,1977-07-13,1977,Kosmos 11K65M,,Parus,,SU,O,state -1977-066,2443341.88,1977-07-17,1977,Proton-K,,TKS No. 16101,,SU,O,state -1977-067,2443343.86,1977-07-19,1977,Kosmos 11K65M,,Vektor,,SU,O,state -1977-068,2443344.7,1977-07-20,1977,Molniya 8K78M,,Oko,,SU,O,state -1977-069,2443344.82,1977-07-20,1977,Soyuz-U,,Zenit-4MKM,,SU,O,state -1977-070,2443346.92,1977-07-22,1977,Kosmos 11K65M,,Vektor,,SU,O,state -1977-071,2443348.39,1977-07-23,1977,Proton-K/DM,,Gran' No. 13L,,SU,O,state -1977-072,2443352.25,1977-07-27,1977,Soyuz-U,,Zenit-6,,SU,O,state -1977-073,2443353.83,1977-07-29,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-074,2443359.08,1977-08-03,1977,Soyuz-U,,Bion No. 4,,SU,O,state -1977-077,2443379.8,1977-08-24,1977,Tsiklon-2,,US-P,,SU,O,state -1977-078,2443380.1,1977-08-24,1977,Soyuz-U,,Zenit-4MKM,,SU,O,state -1977-079,2443380.26,1977-08-24,1977,Kosmos 11K65M,,Strela-1M,,SU,O,state -1977-081,2443382.92,1977-08-27,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-082,2443386.25,1977-08-30,1977,Molniya 8K78M,,Molniya-1,,SU,O,state -1977-083,2443388.88,1977-09-02,1977,Soyuz-U,,Fram,,SU,O,state -1977-085,2443393.23,1977-09-06,1977,Soyuz-U,,Yantar'-2K No. 7,,SU,O,state -1977-086,2443400.13,1977-09-13,1977,Soyuz-U,,Zenit-2M,,SU,O,state -1977-087,2443400.33,1977-09-13,1977,Kosmos 11K65M,,Parus,,SU,O,state -1977-088,2443403.1,1977-09-16,1977,Tsiklon-2,,US-A reactor,,SU,O,state -1977-089,2443403.1,1977-09-16,1977,Soyuz-U,,Zenit-4MKM,,SU,O,state -1977-090,2443405.08,1977-09-18,1977,Tsiklon-2,,US-A,,SU,O,state -1977-091,2443406.54,1977-09-20,1977,Vostok 8A92M,,Tselina-D,,SU,O,state -1977-092,2443407.23,1977-09-20,1977,Proton-K/DM,,Ekran No. 12L,,SU,O,state -1977-093,2443408.54,1977-09-22,1977,Molniya 8K78M,SOL,SO-M No. 506,,SU,O,state -1977-095,2443410.93,1977-09-24,1977,Tsiklon-3,,EPN No. 03.0380?,,SU,O,state -1977-096,2443411.19,1977-09-24,1977,Kosmos 11K65M,,AUOS-Z-R-IK,,SU,O,state -1977-097,2443415.78,1977-09-29,1977,Proton-K,,DOS 5,,SU,O,state -1977-098,2443416.91,1977-09-30,1977,Soyuz-U,,Zenit-4MKM,,SU,O,state -1977-099,2443425.61,1977-10-09,1977,Soyuz-U,,Soyuz 7K-T No. 42,,SU,O,state -1978-100,2443807.79,1978-10-26,1978,Tsiklon-3,,Meteor-2 GVM,,SU,O,state -1978-001,2443515.16,1978-01-06,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-101,2443811.72,1978-10-30,1978,Molniya 8K78M,SOL,SO-M No. 507,,SU,O,state -1978-102,2443814,1978-11-01,1978,Soyuz-U,,Orion,,SU,O,state -1978-003,2443519.02,1978-01-10,1978,Soyuz-U,,Soyuz 7K-T No. 44,,SU,O,state -1978-004,2443519.06,1978-01-10,1978,Vostok 8A92M,,Tselina-D,,SU,O,state -1978-104,2443827.99,1978-11-15,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-005,2443519.37,1978-01-10,1978,Kosmos 11K65M,,Strela-1M,,SU,O,state -1978-105,2443829.41,1978-11-16,1978,Kosmos 11K65M,,Strela-2M,,SU,O,state -1978-006,2443522.14,1978-01-13,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-007,2443525.64,1978-01-17,1978,Kosmos 11K65M,,Parus,,SU,O,state -1978-107,2443834,1978-11-21,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-008,2443528.85,1978-01-20,1978,Soyuz-U,,Progress 7K-TG No. 102,,SU,O,state -1978-108,2443841.18,1978-11-28,1978,Soyuz-U,,Zenit-6,,SU,O,state -1978-009,2443532.79,1978-01-24,1978,Molniya 8K78M,,Molniya-3 No. 20,,SU,O,state -1978-109,2443848.26,1978-12-05,1978,Kosmos 11K65M,,Strela-1M,,SU,O,state -1978-010,2443532.91,1978-01-24,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-110,2443850.15,1978-12-07,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-111,2443850.9,1978-12-08,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-013,2443540.12,1978-01-31,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-114,2443857.14,1978-12-14,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-015,2443548.01,1978-02-08,1978,Soyuz-U,,Orion,,SU,O,state -1978-115,2443858.05,1978-12-15,1978,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1978-017,2443553.9,1978-02-14,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-117,2443861.57,1978-12-19,1978,Vostok 8A92M,,Tselina-D,,SU,O,state -1978-118,2443862.01,1978-12-19,1978,Proton-K/DM,,Gorizont No. 11L,,SU,O,state -1978-019,2443557.19,1978-02-17,1978,Kosmos 11K65M,,Strela-2M,,SU,O,state -1978-119,2443863.36,1978-12-20,1978,Kosmos 11K65M,,Parus,,SU,O,state -1978-120,2443865.42,1978-12-22,1978,Kosmos 11K65M,,Romb 5,,SU,O,state -1978-121,2443865.86,1978-12-23,1978,Vostok 8A92M,,Astrofizika 11F653 No. 1,,SU,O,state -1978-022,2443567.78,1978-02-28,1978,Kosmos 11K65M,,Parus,,SU,O,state -1978-122,2443869.06,1978-12-26,1978,Kosmos 11K65M,,Geoid,,SU,O,state -1978-023,2443570.14,1978-03-02,1978,Soyuz-U,,Soyuz 7K-T No. 45,,SU,O,state -1978-123,2443869.15,1978-12-26,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-024,2443570.42,1978-03-02,1978,Molniya 8K78M,,Molniya-1,,SU,O,state -1978-124,2443871.19,1978-12-28,1978,Soyuz-U,,Orion,,SU,O,state -1978-025,2443571.82,1978-03-04,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-027,2443577.95,1978-03-10,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-028,2443583.16,1978-03-15,1978,Kosmos 11K65M,,Zaliv,,SU,O,state -1978-030,2443584.95,1978-03-17,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-031,2443595.56,1978-03-28,1978,Kosmos 11K65M,,Parus,,SU,O,state -1978-032,2443597.5,1978-03-30,1978,Proton-K,,TKS VA No. 009A/P2,,SU,O,state -1978-033,2443597.83,1978-03-30,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-034,2443599.08,1978-03-31,1978,Kosmos 11K65M,,Tsikada,,SU,O,state -1978-036,2443603.12,1978-04-04,1978,Soyuz-U,,Soyuz 7K-ST No. 4L,,SU,O,state -1978-037,2443604.88,1978-04-06,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-040,2443619.15,1978-04-20,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-043,2443634.15,1978-05-05,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-045,2443640.67,1978-05-12,1978,Vostok 8A92M,,Tselina-D,,SU,O,state -1978-046,2443640.96,1978-05-12,1978,Kosmos 11K65M,,Vektor,,SU,O,state -1978-048,2443644.94,1978-05-16,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-049,2443646.11,1978-05-17,1978,Kosmos 11K65M,,Tselina-OK,,SU,O,state -1978-050,2443647.51,1978-05-19,1978,Tsiklon-2,,IS,,SU,O,state -1978-052,2443651.81,1978-05-23,1978,Soyuz-U,,Fram,,SU,O,state -1978-053,2443652.21,1978-05-23,1978,Kosmos 11K65M,,Parus,,SU,O,state -1978-054,2443654.1,1978-05-25,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-055,2443662.01,1978-06-02,1978,Molniya 8K78M,,Molniya-1,,SU,O,state -1978-056,2443667.42,1978-06-07,1978,Kosmos 11K65M,,Strela-1M,,SU,O,state -1978-057,2443669.86,1978-06-10,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-059,2443671.94,1978-06-12,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-061,2443675.34,1978-06-15,1978,Soyuz-U,,Soyuz 7K-T No. 46,,SU,O,state -1978-063,2443680.89,1978-06-21,1978,Kosmos 11K65M,,Strela-2M,,SU,O,state -1978-065,2443687.14,1978-06-27,1978,Soyuz-U,,Soyuz 7K-T(A9) No. 67,,SU,O,state -1978-066,2443687.62,1978-06-28,1978,Molniya 8K78M,,Oko,,SU,O,state -1978-067,2443688.23,1978-06-28,1978,Tsiklon-3,,EPN No. 03.0380?,,SU,O,state -1978-069,2443691.9,1978-07-02,1978,Soyuz-U,,Energiya No. 2,,SU,O,state -1978-070,2443696.98,1978-07-07,1978,Soyuz-U,,Progress 7K-TG No. 101,,SU,O,state -1978-072,2443704.12,1978-07-14,1978,Molniya 8K78M,,Molniya-1,,SU,O,state -1978-073,2443708.42,1978-07-18,1978,Proton-K/DM,,Gran' No. 14L,,SU,O,state -1978-074,2443716.7,1978-07-27,1978,Kosmos 11K65M,,Zaliv,,SU,O,state -1978-076,2443726.12,1978-08-05,1978,Soyuz-U,,Feniks No. 14,,SU,O,state -1978-077,2443728.44,1978-08-07,1978,Soyuz-U,,Progress 7K-TG No. 103,,SU,O,state -1978-080,2443743.49,1978-08-22,1978,Molniya 8K78M,,Molniya-1,,SU,O,state -1978-081,2443747.12,1978-08-26,1978,Soyuz-U,,Soyuz 7K-T No. 47,,SU,O,state -1978-082,2443750.12,1978-08-29,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-083,2443757.63,1978-09-06,1978,Molniya 8K78M,,Oko,,SU,O,state -1978-084,2443760.64,1978-09-09,1978,Proton-K/D-1,,4V-1 No. 360,,SU,O,state -1978-085,2443761.12,1978-09-09,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-086,2443765.6,1978-09-14,1978,Proton-K/D-1,,4V-1 No. 361,,SU,O,state -1978-088,2443770.84,1978-09-19,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-089,2443784.96,1978-10-03,1978,Soyuz-U,,Fram,,SU,O,state -1978-090,2443785.46,1978-10-03,1978,Soyuz-U,,Progress 7K-TG No. 105,,SU,O,state -1978-091,2443785.66,1978-10-04,1978,Kosmos 11K65M,,Strela-1M,,SU,O,state -1978-092,2443788.15,1978-10-06,1978,Soyuz-U,,Zenit-4MKM,,SU,O,state -1978-094,2443792.32,1978-10-10,1978,Vostok 8A92M,,Tselina-D,,SU,O,state -1978-095,2443794.72,1978-10-13,1978,Molniya 8K78M,,Molniya-3 No. 22,,SU,O,state -1978-097,2443799.12,1978-10-17,1978,Soyuz-U,,Zenit-2M,,SU,O,state -1978-099,2443806.29,1978-10-24,1978,Kosmos 11K65M,,AUOS-Z Mag-IK,,SU,O,state -1979-100,2444212.88,1979-12-05,1979,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1979-001,2443885.12,1979-01-11,1979,Soyuz-U,,Zenit-2M,,SU,O,state -1979-002,2443887.15,1979-01-13,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-102,2444220.02,1979-12-12,1979,Soyuz-U,,Zenit-6,,SU,O,state -1979-003,2443890.23,1979-01-16,1979,Kosmos 11K65M,,Parus,,SU,O,state -1979-103,2444224.02,1979-12-16,1979,Soyuz-U,,Soyuz 7K-ST No. 6L,,SU,O,state -1979-004,2443892.15,1979-01-18,1979,Molniya 8K78M,,Molniya-3 No. 23,,SU,O,state -1979-005,2443898.74,1979-01-25,1979,Vostok 8A92M,,Meteor-Priroda No. 2-3,,SU,O,state -1979-105,2444235.99,1979-12-28,1979,Proton-K/DM,,Gorizont No. 13L,,SU,O,state -1979-006,2443904.14,1979-01-30,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-106,2444236.04,1979-12-28,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-008,2443904.88,1979-01-31,1979,Soyuz-U,,Soyuz 7K-ST No. 5L,,SU,O,state -1979-010,2443912.92,1979-02-08,1979,Kosmos 11K65M,,Vektor,,SU,O,state -1979-011,2443917.04,1979-02-12,1979,Tsiklon-3,,Okean-E NKh No. 1,,SU,O,state -1979-012,2443918.4,1979-02-13,1979,Vostok 8A92M,,Tselina-D,,SU,O,state -1979-015,2443925.83,1979-02-21,1979,Proton-K/DM,,Ekran No. 16L,,SU,O,state -1979-016,2443927.01,1979-02-22,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-018,2443930,1979-02-25,1979,Soyuz-U,,Soyuz 7K-T No. 48,,SU,O,state -1979-019,2443932.12,1979-02-27,1979,Soyuz-U,,Feniks No. 15,,SU,O,state -1979-020,2443932.21,1979-02-27,1979,Kosmos 11K65M,,AUOS-Z Ionozond-IK,,SU,O,state -1979-021,2443934.28,1979-03-01,1979,Vostok 8A92M,,Meteor-2 No. 4,,SU,O,state -1979-022,2443944.74,1979-03-12,1979,Soyuz-U,,Progress 7K-TG No. 104,,SU,O,state -1979-023,2443946.95,1979-03-14,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-024,2443947.62,1979-03-15,1979,Kosmos 11K65M,,Strela-1M,,SU,O,state -1979-026,2443953.68,1979-03-21,1979,Kosmos 11K65M,,Parus,,SU,O,state -1979-027,2443963.95,1979-03-31,1979,Soyuz-U,,Zenit-2M,,SU,O,state -1979-028,2443970.76,1979-04-07,1979,Kosmos 11K65M,,Parus,,SU,O,state -1979-029,2443974.23,1979-04-10,1979,Soyuz-U,,Soyuz 7K-T No. 49,,SU,O,state -1979-030,2443975.41,1979-04-11,1979,Kosmos 11K65M,,Tsikada,,SU,O,state -1979-031,2443975.52,1979-04-12,1979,Molniya 8K78M,,Molniya-1,,SU,O,state -1979-032,2443977.73,1979-04-14,1979,Vostok 8A92M,,Tselina-D,,SU,O,state -1979-033,2443982,1979-04-18,1979,Tsiklon-2,,US-P,,SU,O,state -1979-034,2443983.98,1979-04-20,1979,Soyuz-U,,Zenit-6,,SU,O,state -1979-035,2443988.66,1979-04-25,1979,Proton-K/DM,,Gran' No. 15L,,SU,O,state -1979-036,2443988.92,1979-04-25,1979,Tsiklon-2,,US-P,,SU,O,state -1979-037,2443991.22,1979-04-27,1979,Soyuz-U,,Yantar'-4K1 No. 1,,SU,O,state -1979-039,2444006.68,1979-05-13,1979,Soyuz-U,,Progress 7K-TG No. 106,,SU,O,state -1979-040,2444008.99,1979-05-15,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-041,2444010.8,1979-05-17,1979,Soyuz-U,,Fram,,SU,O,state -1979-042,2444016.46,1979-05-22,1979,Proton-K,,TKS VA No. 0102A,,SU,O,state -1979-043,2444018.79,1979-05-25,1979,Soyuz-U,,Gektor-Priroda,,SU,O,state -1979-045,2444025.19,1979-05-31,1979,Soyuz-U,,Zenit-6,,SU,O,state -1979-046,2444025.25,1979-05-31,1979,Kosmos 11K65M,,Parus,,SU,O,state -1979-048,2444030.48,1979-06-05,1979,Molniya 8K78M,,Molniya-3 No. 21,,SU,O,state -1979-049,2444031.26,1979-06-06,1979,Soyuz-U,,Soyuz 7K-T No. 50,,SU,O,state -1979-051,2444031.94,1979-06-07,1979,Kosmos 11K65M,,SEO,,SU,O,state -1979-052,2444032.8,1979-06-08,1979,Soyuz-U,,Fram,,SU,O,state -1979-054,2444036.79,1979-06-12,1979,Soyuz-U,,Gektor-Priroda,,SU,O,state -1979-055,2444039.95,1979-06-15,1979,Soyuz-U,,Zenit-6,,SU,O,state -1979-056,2444046.79,1979-06-22,1979,Soyuz-U,,Fram,,SU,O,state -1979-058,2444052.26,1979-06-27,1979,Molniya 8K78M,,Oko,,SU,O,state -1979-059,2444052.89,1979-06-28,1979,Soyuz-U,,Progress 7K-TG No. 107,,SU,O,state -1979-060,2444053.34,1979-06-28,1979,Kosmos 11K65M,,Strela-2M,,SU,O,state -1979-061,2444054.17,1979-06-29,1979,Soyuz-U,,Zenit-6,,SU,O,state -1979-062,2444060.47,1979-07-05,1979,Proton-K/DM,,Gorizont No. 12L,,SU,O,state -1979-063,2444060.85,1979-07-06,1979,Kosmos 11K65M,,Romb,,SU,O,state -1979-064,2444064.88,1979-07-10,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-065,2444066.15,1979-07-11,1979,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1979-066,2444067.85,1979-07-13,1979,Soyuz-U,,Fram,,SU,O,state -1979-067,2444075,1979-07-20,1979,Vostok 8A92M,,Tselina-D,,SU,O,state -1979-068,2444080.14,1979-07-25,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-069,2444081.81,1979-07-27,1979,Soyuz-U,,Gektor-Priroda,,SU,O,state -1979-070,2444085.66,1979-07-31,1979,Molniya 8K78M,,Molniya-1,,SU,O,state -1979-071,2444088.95,1979-08-03,1979,Soyuz-U,,Orion,,SU,O,state -1979-073,2444096.89,1979-08-11,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-074,2444100.15,1979-08-14,1979,Soyuz-U,,Feniks No. 929,,SU,O,state -1979-075,2444102.82,1979-08-17,1979,Soyuz-U,,Gektor-Priroda,,SU,O,state -1979-076,2444106.97,1979-08-21,1979,Soyuz-U,,Fram,,SU,O,state -1979-077,2444113.51,1979-08-28,1979,Molniya 8K78M,,Oko,,SU,O,state -1979-078,2444113.54,1979-08-28,1979,Kosmos 11K65M,,Strela-2M,,SU,O,state -1979-079,2444116.98,1979-08-31,1979,Soyuz-U,,Zenit-6,,SU,O,state -1979-080,2444121.93,1979-09-05,1979,Soyuz-U,,Resurs-F1 17F41 No. 11,,SU,O,state -1979-081,2444131.15,1979-09-14,1979,Soyuz-U,,Zenit-4MKM,,SU,O,state -1979-083,2444142.15,1979-09-25,1979,Soyuz-U,,Bion No. 5,,SU,O,state -1979-084,2444142.38,1979-09-25,1979,Kosmos 11K65M,,Strela-1M,,SU,O,state -1979-085,2444145.01,1979-09-28,1979,Soyuz-U,,Zenit-6,,SU,O,state -1979-087,2444150.22,1979-10-03,1979,Proton-K/DM,,Ekran No. 17L,,SU,O,state -1979-088,2444151.98,1979-10-05,1979,Soyuz-U,,Orion,,SU,O,state -1979-089,2444158.19,1979-10-11,1979,Kosmos 11K65M,,Strela-2M,,SU,O,state -1979-090,2444163.01,1979-10-16,1979,Kosmos 11K65M,,Parus,,SU,O,state -1979-091,2444166.79,1979-10-20,1979,Molniya 8K78M,,Molniya-1,,SU,O,state -1979-092,2444169.02,1979-10-22,1979,Soyuz-U,,Zenit-6,,SU,O,state -1979-093,2444173.26,1979-10-26,1979,Vostok 8A92M,,Tselina-D,,SU,O,state -1979-095,2444177.89,1979-10-31,1979,Vostok 8A92M,,Meteor-2 No. 7,,SU,O,state -1979-096,2444178.84,1979-11-01,1979,Kosmos 11K65M,,AUOS-Z ?,,SU,O,state -1979-097,2444180.17,1979-11-02,1979,Soyuz-U,,Feniks No. 939,,SU,O,state -1979-099,2444204.91,1979-11-27,1979,Vostok 8A92M,,Tselina-D,,SU,O,state -1980-001,2444248.01,1980-01-09,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-101,2444590.01,1980-12-16,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-002,2444250.02,1980-01-11,1980,Molniya 8K78M,,Molniya-1,,SU,O,state -1980-102,2444597.45,1980-12-23,1980,Kosmos 11K65M,,Strela-1M,,SU,O,state -1980-003,2444253.33,1980-01-14,1980,Kosmos 11K65M,,Parus,,SU,O,state -1980-103,2444598.67,1980-12-25,1980,Molniya 8K78M,SOL,SO-M No. 508,,SU,O,state -1980-104,2444599.99,1980-12-26,1980,Proton-K/DM,,Ekran No. 20L,,SU,O,state -1980-005,2444261.79,1980-01-23,1980,Tsiklon-3,,Okean-E NKh No. 2,,SU,O,state -1980-105,2444600.17,1980-12-26,1980,Soyuz-U,,Feniks No. 941,,SU,O,state -1980-006,2444263.16,1980-01-24,1980,Soyuz-U,,Feniks No. 928,,SU,O,state -1980-007,2444264.36,1980-01-25,1980,Kosmos 11K65M,,Parus,,SU,O,state -1980-008,2444269.04,1980-01-30,1980,Vostok 8A92M,,Tselina-D,,SU,O,state -1980-009,2444276.96,1980-02-07,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-012,2444281.48,1980-02-11,1980,Kosmos 11K65M,,Strela-1M,,SU,O,state -1980-013,2444281.54,1980-02-12,1980,Molniya 8K78M,,Oko,,SU,O,state -1980-016,2444289.84,1980-02-20,1980,Proton-K/DM,,Gran' No. 16L,,SU,O,state -1980-017,2444291,1980-02-21,1980,Soyuz-U,,Zenit-4MKM,,SU,O,state -1980-020,2444302.94,1980-03-04,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-021,2444312.94,1980-03-14,1980,Tsiklon-2,,US-P,,SU,O,state -1980-022,2444316.4,1980-03-17,1980,Kosmos 11K65M,,Tsikada,,SU,O,state -1980-023,2444325.81,1980-03-27,1980,Kosmos 11K65M,,Vektor,,SU,O,state -1980-024,2444326.29,1980-03-27,1980,Soyuz-U,,Progress 7K-TG No. 108,,SU,O,state -1980-025,2444330.83,1980-04-01,1980,Soyuz-U,,Zenit-4MKM,,SU,O,state -1980-026,2444332.82,1980-04-03,1980,Kosmos 11K65M,,Lira,,SU,O,state -1980-027,2444339.07,1980-04-09,1980,Soyuz-U,,Soyuz 7K-T No. 51,,SU,O,state -1980-028,2444342.35,1980-04-12,1980,Molniya 8K78M,,Oko,,SU,O,state -1980-029,2444346.85,1980-04-17,1980,Soyuz-U,,Zenit-4MKM,,SU,O,state -1980-030,2444347.54,1980-04-18,1980,Tsiklon-2,,IS,,SU,O,state -1980-031,2444348.23,1980-04-18,1980,Molniya 8K78M,,Molniya-3 No. 26,,SU,O,state -1980-033,2444356.77,1980-04-27,1980,Soyuz-U,,Progress 7K-TG No. 109,,SU,O,state -1980-034,2444358.99,1980-04-29,1980,Tsiklon-2,,US-A reactor,,SU,O,state -1980-035,2444359.06,1980-04-29,1980,Soyuz-U,,Yantar'-4K1 No. 2,,SU,O,state -1980-036,2444367.04,1980-05-07,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-037,2444374.04,1980-05-14,1980,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1980-038,2444374.73,1980-05-15,1980,Soyuz-U,,Orion,,SU,O,state -1980-039,2444379.89,1980-05-20,1980,Kosmos 11K65M,,Parus,,SU,O,state -1980-040,2444382.8,1980-05-23,1980,Soyuz-U,,Fram,,SU,O,state -1980-041,2444386.26,1980-05-26,1980,Soyuz-U,,Soyuz 7K-T No. 52,,SU,O,state -1980-042,2444388,1980-05-28,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-044,2444394.82,1980-06-04,1980,Vostok 8A92M,,Tselina-D,,SU,O,state -1980-045,2444396.1,1980-06-05,1980,Soyuz-U,,Soyuz 7K-ST No. 7L,,SU,O,state -1980-046,2444396.79,1980-06-06,1980,Soyuz-U,,Resurs-F1 17F41 No. 12,,SU,O,state -1980-047,2444396.96,1980-06-06,1980,Kosmos 11K65M,,Romb,,SU,O,state -1980-048,2444403.02,1980-06-12,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-049,2444404.53,1980-06-14,1980,Proton-K/DM,,Gorizont No. 15L,,SU,O,state -1980-050,2444405.37,1980-06-14,1980,Molniya 8K78M,,Oko,,SU,O,state -1980-051,2444408.76,1980-06-18,1980,Vostok 8A92M,,Meteor-Priroda No. 3-1,,SU,O,state -1980-053,2444412.27,1980-06-21,1980,Molniya 8K78M,,Molniya-1,,SU,O,state -1980-054,2444417.01,1980-06-26,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-055,2444419.69,1980-06-29,1980,Soyuz-U,,Progress 7K-TG No. 110,,SU,O,state -1980-056,2444421.8,1980-07-01,1980,Kosmos 11K65M,,Strela-2M,,SU,O,state -1980-057,2444422.54,1980-07-02,1980,Molniya 8K78M,,Oko,,SU,O,state -1980-058,2444429.53,1980-07-09,1980,Kosmos 11K65M,,Strela-1M,,SU,O,state -1980-059,2444430.03,1980-07-09,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-060,2444435.44,1980-07-14,1980,Proton-K/DM,,Ekran No. 19L,,SU,O,state -1980-061,2444435.81,1980-07-15,1980,Soyuz-U,,Fram,,SU,O,state -1980-063,2444438.94,1980-07-18,1980,Molniya 8K78M,,Molniya-3 No. 27,,SU,O,state -1980-064,2444444.27,1980-07-23,1980,Soyuz-U,,Soyuz 7K-T No. 53,,SU,O,state -1980-065,2444445.03,1980-07-24,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-066,2444451.82,1980-07-31,1980,Soyuz-U,,Resurs-F1 17F41 No. 13,,SU,O,state -1980-067,2444451.93,1980-07-31,1980,Kosmos 11K65M,,Romb,,SU,O,state -1980-068,2444463.99,1980-08-12,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-069,2444466.73,1980-08-15,1980,Vostok 8A92M,,Tselina-D,,SU,O,state -1980-070,2444473.92,1980-08-22,1980,Soyuz-U,,Fram,,SU,O,state -1980-071,2444478.15,1980-08-26,1980,Soyuz-U,,Feniks No. 927,,SU,O,state -1980-072,2444485.93,1980-09-03,1980,Soyuz-U,,Resurs-F1 17F41 No. 14,,SU,O,state -1980-073,2444491.96,1980-09-09,1980,Vostok 8A92M,,Meteor-2 No. 5,,SU,O,state -1980-075,2444501.3,1980-09-18,1980,Soyuz-U,,Soyuz 7K-T No. 54,,SU,O,state -1980-076,2444501.92,1980-09-19,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-077,2444505.94,1980-09-23,1980,Soyuz-U,,Orion,,SU,O,state -1980-078,2444508.92,1980-09-26,1980,Soyuz-U,,Fram,,SU,O,state -1980-079,2444511.13,1980-09-28,1980,Soyuz-U,,Progress 7K-TG No. 111,,SU,O,state -1980-080,2444516,1980-10-03,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-081,2444518.22,1980-10-05,1980,Proton-K/DM,,Gran' No. 17L,,SU,O,state -1980-082,2444523.05,1980-10-10,1980,Soyuz-U,,Zenit-4MKM,,SU,O,state -1980-083,2444527.36,1980-10-14,1980,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1980-084,2444529.01,1980-10-16,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-085,2444536.95,1980-10-24,1980,Molniya 8K78M,,Oko,,SU,O,state -1980-086,2444542.92,1980-10-30,1980,Soyuz-U,,Yantar'-4K1 No. 3,,SU,O,state -1980-088,2444544,1980-10-31,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-089,2444548.13,1980-11-04,1980,Tsiklon-2,,US-P,,SU,O,state -1980-090,2444556.02,1980-11-12,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-092,2444559.68,1980-11-16,1980,Molniya 8K78M,,Molniya-1,,SU,O,state -1980-093,2444565,1980-11-21,1980,Vostok 8A92M,,Tselina-D,,SU,O,state -1980-094,2444571.1,1980-11-27,1980,Soyuz-U,,Soyuz 7K-ST No. 8L,,SU,O,state -1980-095,2444571.4,1980-11-27,1980,Molniya 8K78M,,Oko,,SU,O,state -1980-096,2444575.01,1980-12-01,1980,Soyuz-U,,Zenit-6,,SU,O,state -1980-097,2444578.68,1980-12-05,1980,Kosmos 11K65M,,Parus,,SU,O,state -1980-099,2444584.37,1980-12-10,1980,Kosmos 11K65M,,Tsikada,,SU,O,state -1981-001,2444611.01,1981-01-06,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-101,2444886.94,1981-10-09,1981,Soyuz-U,,Fram,,SU,O,state -1981-002,2444614.12,1981-01-09,1981,Molniya 8K78M,,Molniya-3 No. 25,,SU,O,state -1981-102,2444887.21,1981-10-09,1981,Proton-K/DM,,Gran' No. 20L,,SU,O,state -1981-003,2444620.88,1981-01-16,1981,Kosmos 11K65M,,Vektor,,SU,O,state -1981-103,2444891.46,1981-10-13,1981,Vostok 8A92M,,Tselina-D,,SU,O,state -1981-004,2444621,1981-01-16,1981,Soyuz-U,,Orion,,SU,O,state -1981-104,2444892.89,1981-10-15,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-005,2444624.96,1981-01-20,1981,Soyuz-U,,Feniks No. 975,,SU,O,state -1981-105,2444894.75,1981-10-17,1981,Molniya 8K78M,,Molniya-3 No. 31,,SU,O,state -1981-006,2444625.85,1981-01-21,1981,Kosmos 11K65M,,Lira,,SU,O,state -1981-106,2444907.75,1981-10-30,1981,Proton-K/D-1,,4V-1M No. 760,,SU,O,state -1981-007,2444629.1,1981-01-24,1981,Soyuz-U,,Progress 7K-TG No. 113,,SU,O,state -1981-008,2444632.12,1981-01-27,1981,Vostok 8A92M,,Tselina-D,,SU,O,state -1981-108,2444909.45,1981-10-31,1981,Molniya 8K78M,,Oko,,SU,O,state -1981-009,2444635.19,1981-01-30,1981,Molniya 8K78M,,Molniya-1,,SU,O,state -1981-109,2444912.04,1981-11-03,1981,Soyuz-U,,Feniks No. 944,,SU,O,state -1981-010,2444637.6,1981-02-02,1981,Tsiklon-2,,IS,,SU,O,state -1981-110,2444912.73,1981-11-04,1981,Proton-K/D-1,,4V-1M No. 761,,SU,O,state -1981-011,2444641.83,1981-02-06,1981,Kosmos 11K65M,,AUOS-Z R-P-IK,,SU,O,state -1981-112,2444921.9,1981-11-13,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-013,2444648.26,1981-02-12,1981,Kosmos 11K65M,,Parus,,SU,O,state -1981-113,2444926.14,1981-11-17,1981,Molniya 8K78M,,Molniya-1,,SU,O,state -1981-014,2444648.97,1981-02-13,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-015,2444653.88,1981-02-18,1981,Soyuz-U,,Siluet No. 1,,SU,O,state -1981-115,2444928.85,1981-11-20,1981,Kosmos 11K65M,,SEO B,,SU,O,state -1981-016,2444654.92,1981-02-19,1981,Molniya 8K78M,,Oko,,SU,O,state -1981-116,2444937.26,1981-11-28,1981,Kosmos 11K65M,,Strela-1M,,SU,O,state -1981-117,2444941.99,1981-12-03,1981,Tsiklon-3,,Tselina-D,,SU,O,state -1981-118,2444942.91,1981-12-04,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-020,2444669.12,1981-03-05,1981,Soyuz-U,,Feniks No. 940,,SU,O,state -1981-120,2444955.96,1981-12-17,1981,Kosmos 11K65M,,RS-3,,SU,O,state -1981-021,2444669.26,1981-03-05,1981,Tsiklon-2,,US-A reactor,,SU,O,state -1981-121,2444957.99,1981-12-19,1981,Soyuz-U,,Feniks No. 952,,SU,O,state -1981-022,2444669.98,1981-03-06,1981,Kosmos 11K65M,,Strela-1M,,SU,O,state -1981-023,2444676.29,1981-03-12,1981,Soyuz-U,,Soyuz 7K-ST No. 10L,,SU,O,state -1981-123,2444962.05,1981-12-23,1981,Molniya 8K78M,,Molniya-1 11F658 No. 55,,SU,O,state -1981-024,2444678.2,1981-03-14,1981,Tsiklon-2,,IS,,SU,O,state -1981-026,2444680.86,1981-03-17,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-027,2444681.69,1981-03-18,1981,Proton-K/DM,,Gran' No. 18L,,SU,O,state -1981-028,2444684.49,1981-03-20,1981,Tsiklon-2,,US-P,,SU,O,state -1981-029,2444686.12,1981-03-22,1981,Soyuz-U,,Soyuz 7K-T No. 55,,SU,O,state -1981-030,2444687.65,1981-03-24,1981,Molniya 8K78M,,Molniya-3 No. 24,,SU,O,state -1981-031,2444694.9,1981-03-31,1981,Molniya 8K78M,,Oko,,SU,O,state -1981-032,2444701.95,1981-04-07,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-033,2444704,1981-04-09,1981,Kosmos 11K65M,,Vektor,,SU,O,state -1981-035,2444709.94,1981-04-15,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-036,2444710.98,1981-04-16,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-037,2444715.66,1981-04-21,1981,Tsiklon-2,,US-A reactor,,SU,O,state -1981-039,2444719.58,1981-04-25,1981,Proton-K,,TKS No. 16301,,SU,O,state -1981-040,2444722.88,1981-04-28,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-041,2444732.06,1981-05-07,1981,Kosmos 11K65M,,Strela-2M,,SU,O,state -1981-042,2444739.22,1981-05-14,1981,Soyuz-U,,Soyuz 7K-T No. 56,,SU,O,state -1981-043,2444739.41,1981-05-14,1981,Vostok 8A92M,,Meteor-2 No. 8,,SU,O,state -1981-045,2444742.99,1981-05-18,1981,Soyuz-U,,Feniks No. 980,,SU,O,state -1981-046,2444743.66,1981-05-19,1981,Vostok 8A92M,,Tselina-D,,SU,O,state -1981-047,2444745.88,1981-05-21,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-048,2444746.8,1981-05-22,1981,Soyuz-U,,Fram,,SU,O,state -1981-052,2444759.08,1981-06-03,1981,Soyuz-U,,Feniks No. 942,,SU,O,state -1981-053,2444760.15,1981-06-04,1981,Kosmos 11K65M,,Parus,,SU,O,state -1981-054,2444764.65,1981-06-09,1981,Molniya 8K78M,,Molniya-3 No. 30,,SU,O,state -1981-055,2444771.79,1981-06-16,1981,Soyuz-U,,Fram,,SU,O,state -1981-056,2444772.9,1981-06-17,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-058,2444775.32,1981-06-19,1981,Molniya 8K78M,,Oko,,SU,O,state -1981-060,2444780.24,1981-06-24,1981,Molniya 8K78M,,Molniya-1,,SU,O,state -1981-061,2444781.5,1981-06-25,1981,Proton-K/DM,,Ekran No. 21L,,SU,O,state -1981-062,2444786.9,1981-07-01,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-063,2444787.8,1981-07-02,1981,Soyuz-U,,Resurs-F1 17F41 No. 15,,SU,O,state -1981-064,2444793.02,1981-07-07,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-065,2444795.72,1981-07-10,1981,Vostok 8A92M,,Meteor-Priroda No. 2-4,,SU,O,state -1981-066,2444801.04,1981-07-15,1981,Soyuz-U,,Feniks No. 951,,SU,O,state -1981-067,2444802.83,1981-07-17,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-068,2444815,1981-07-29,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-069,2444816.4,1981-07-30,1981,Proton-K/DM,,Gran' No. 19L,,SU,O,state -1981-071,2444820.51,1981-08-04,1981,Molniya 8K78M,,Oko,,SU,O,state -1981-072,2444820.85,1981-08-04,1981,Tsiklon-2,,US-PM1,,SU,O,state -1981-074,2444822.99,1981-08-06,1981,Kosmos 11K65M,,Strela-1M,,SU,O,state -1981-075,2444824.07,1981-08-07,1981,Vostok 8A92M,,IK Bulgaria-1300,,SU,O,state -1981-077,2444828.74,1981-08-12,1981,Kosmos 11K65M,,Parus,,SU,O,state -1981-078,2444830.18,1981-08-13,1981,Soyuz-U,,Feniks No. 943,,SU,O,state -1981-079,2444834.9,1981-08-18,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-080,2444837.93,1981-08-21,1981,Soyuz-U,,Yantar'-4K2,,SU,O,state -1981-081,2444841.19,1981-08-24,1981,Tsiklon-2,,US-A reactor,,SU,O,state -1981-082,2444841.4,1981-08-24,1981,Tsiklon-3,,Tselina-D,,SU,O,state -1981-083,2444843.94,1981-08-27,1981,Soyuz-U,,Resurs-F1 17F41 No. 16,,SU,O,state -1981-084,2444845.18,1981-08-28,1981,Kosmos 11K65M,,Strela-2M,,SU,O,state -1981-086,2444851.83,1981-09-04,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-087,2444851.96,1981-09-04,1981,Kosmos 11K65M,,Tsikada,,SU,O,state -1981-088,2444858.86,1981-09-11,1981,Molniya 8K78M,,Molniya-3 No. 28,,SU,O,state -1981-089,2444862.35,1981-09-14,1981,Tsiklon-2,,US-PM,,SU,O,state -1981-090,2444862.98,1981-09-15,1981,Soyuz-U,,Zenit-6,,SU,O,state -1981-091,2444865.65,1981-09-18,1981,Kosmos 11K65M,,Parus,,SU,O,state -1981-092,2444865.9,1981-09-18,1981,Soyuz-U,,Orion,,SU,O,state -1981-094,2444869.05,1981-09-21,1981,Tsiklon-3,,AUOS-Z 401 M-A-IK,,SU,O,state -1981-095,2444870.83,1981-09-23,1981,Kosmos 11K65M,,Vektor,,SU,O,state -1981-097,2444876.38,1981-09-28,1981,Kosmos 11K65M,,Romb,,SU,O,state -1981-098,2444877.83,1981-09-30,1981,Tsiklon-3,,Musson No. 12,,SU,O,state -1981-099,2444878.88,1981-10-01,1981,Soyuz-U,,Zenit-6,,SU,O,state -1960-F06,2437041.17,1960-04-16,1960,Vostok-L 8K72,,E-3 No. 2,,SU,F,state -1960-F09,2437143.9,1960-07-28,1960,Vostok 8K72,,Vostok-1 No. 1,,SU,F,state -1960-F12,2437218.1,1960-10-10,1960,Molniya 8K78,,1M No. 1,,SU,F,state -1960-F14,2437222.08,1960-10-14,1960,Molniya 8K78,,1M No. 2,,SU,F,state -1960-F19,2437290.82,1960-12-22,1960,Vostok 8K72K,,Vostok-1 No. 4,,SU,F,state -1961-F11,2437600.19,1961-10-27,1961,Kosmos 63S1,,DS-1 No. 1,,SU,F,state -1961-F14,2437644.9,1961-12-11,1961,Vostok 8K72K,,Zenit-2 No. 1,,SU,F,state -1961-F15,2437655.02,1961-12-21,1961,Kosmos 63S1,,DS-1 No. 2,,SU,F,state -1962-F06,2437816.9,1962-06-01,1962,Vostok 8A92,,Zenit-2 No. 3,,SU,F,state -1962-F08,2437962.79,1962-10-25,1962,Kosmos 63S1,,1MS No. 2,,SU,F,state -1963-F01,2438063.9,1963-02-03,1963,Molniya 8K78,E6,E-6 No. 3,,SU,F,state -1963-F05,2438125.63,1963-04-06,1963,Kosmos 63S1,,DS-P1 No. 2,,SU,F,state -1963-F08,2438181.62,1963-06-01,1963,Kosmos 63S1,,DS-MT No. 1,,SU,F,state -1963-F11,2438263.75,1963-08-22,1963,Kosmos 63S1,,DS-A1 No. 3,,SU,F,state -1963-F13,2438326.69,1963-10-24,1963,Kosmos 63S1,,DS-A1 No. 4,,SU,F,state -1963-F15,2438361.89,1963-11-28,1963,Vostok 8A92,,Zenit-2 No. 14,,SU,F,state -1964-F01,2438444.74,1964-02-19,1964,Molniya 8K78,M,3MV-1 No. 2,,SU,F,state -1964-F03,2438475.84,1964-03-21,1964,Molniya 8K78,E6,E-6 No. 6,,SU,F,state -1964-F05,2438505.84,1964-04-20,1964,Molniya 8K78,E6,E-6 No. 5,,SU,F,state -1964-F07,2438550.67,1964-06-04,1964,Molniya 8K78,,Molniya-1 11F67 No 2,,SU,F,state -1964-F12,2438691.81,1964-10-23,1964,Kosmos 65S3,,Strela-1,,SU,F,state -1964-F13,2438730.86,1964-12-01,1964,Kosmos 63S1,,DS-2 No. 2,,SU,F,state -1965-F02,2438804,1965-02-12,1965,Kosmos 63S1,,DS-P1-Yu No. 2,,SU,F,state -1965-F03,2438811.77,1965-02-20,1965,Kosmos 63S1,,DS-A1 No. 6,,SU,F,state -1965-F05,2438860.86,1965-04-10,1965,Molniya 8K78,,E-6 No. 8,,SU,F,state -1965-F08,2438954.5,,1965,Vostok 8A92,,Zenit-2 No. 28,,SU,F,state -1965-F12,2439122.84,1965-12-28,1965,Kosmos 63S1,,DS-K-40 No. 1,,SU,F,state -1966-F02,2439178.06,1966-02-21,1966,Kosmos 63S1,,DS-K-40 No. 2,,SU,F,state -1966-F03,2439209.11,1966-03-24,1966,UR-500,,N-4 No. 3,,SU,F,state -1966-F04,2439211.81,1966-03-27,1966,Molniya 8K78,M,Molniya-1 11F67 No 5,,SU,F,state -1966-F06,2439262.96,1966-05-17,1966,Voskhod 11A57,,Zenit-4 No. 18,,SU,F,state -1966-F09,2439384.9,1966-09-16,1966,Vostok 8A92,,Zenit-2 No. 40,,SU,F,state -1966-F11,2439446.04,1966-11-16,1966,Kosmos 11K65,,Strela-2 No. 1,,SU,F,state -1966-F12,2439473.96,1966-12-14,1966,Soyuz 11A511,,Soyuz No. 1,,SU,F,state -1967-F02,2439572.09,1967-03-22,1967,R-36O 8K69,,OGCh No. 08?,,SU,F,state -1967-F06,2439661.96,1967-06-20,1967,Voskhod 11A57,,Zenit-4 No. 32,,SU,F,state -1967-F07,2439667.69,1967-06-26,1967,Kosmos 11K65M,,Tselina-O GVM,,SU,F,state -1967-F08,2439692.75,1967-07-21,1967,Voskhod 11A57,,Zenit-4 No. 33,,SU,F,state -1967-F09,2439734.94,1967-09-01,1967,Voskhod 11A57,,Zenit-2 No. 51,,SU,F,state -1967-F10,2439760.96,1967-09-27,1967,Kosmos 11K65M,,Tsiklon GVM,,SU,F,state -1967-F11,2439761.42,1967-09-27,1967,Proton-K/D,,L-1 No. 4L,,SU,F,state -1967-F12,2439817.3,1967-11-22,1967,Proton-K/D,,L-1 No. 5L,,SU,F,state -1968-F01,2439893.95,1968-02-07,1968,Molniya 8K78M,,E-6LS No. 112,,SU,F,state -1968-F02,2439921.96,1968-03-06,1968,Kosmos 11K63,,DS-U1-Ya No. 1,,SU,F,state -1968-F03,2439969.46,1968-04-22,1968,Proton-K/D,,L-1 No. 7L,,SU,F,state -1968-F05,2440012.28,1968-06-04,1968,Kosmos 11K65M,,Sfera No. 12L,,SU,F,state -1968-F06,2440023.02,1968-06-15,1968,Kosmos 11K65,,Strela-2 No. 3,,SU,F,state -1969-F01,2440241.68,1969-01-20,1969,Proton-K/D,,L-1 No. 13L,,SU,F,state -1969-F03,2440254.01,1969-02-01,1969,Vostok 8A92M,,Meteor No. 11,,SU,F,state -1969-F04,2440271.78,1969-02-19,1969,Proton-K/D,,E-8 No. 201,,SU,F,state -1969-F05,2440273.89,1969-02-21,1969,N-1 11A52,,L-1S No. 3 11F92,,SU,F,state -1969-F06,2440307.94,1969-03-27,1969,Proton-K/D,,2M No. 521,,SU,F,state -1969-F07,2440313.94,1969-04-02,1969,Proton-K/D,,2M No. 522,,SU,F,state -1969-F08,2440386.67,1969-06-14,1969,Proton-K/D,,E-8-5 No. 402,,SU,F,state -1969-F10,2440406.35,1969-07-03,1969,N-1 11A52,,L-1S No. 5,,SU,F,state -1969-F11,2440425.88,1969-07-23,1969,Kosmos 11K63,,DS-P1-Yu No. 23,,SU,F,state -1969-F14,2440553.88,1969-11-28,1969,Proton-K/D,,L-1e No 1,,SU,F,state -1969-F15,2440583.1,1969-12-27,1969,Kosmos 11K65M,,Ionosfernaya Stantsiya N,,SU,F,state -1970-F01,2440617.15,1970-01-30,1970,Kosmos 11K63,,DS-P1-I No. 6,,SU,F,state -1970-F02,2440623.68,1970-02-06,1970,Proton-K/D,,E-8-5 No. 405,,SU,F,state -1970-F03,2440729.03,1970-05-22,1970,Kosmos 11K63,,DS-P1-Yu No. 36,,SU,F,state -1970-F05,2440765.19,1970-06-27,1970,Kosmos 11K65M,,Strela-2M,,SU,F,state -1970-F06,2440789.02,1970-07-21,1970,Voskhod 11A57,,Zenit-4 No. 75,,SU,F,state -1970-F10,2440943.4,1970-12-22,1970,Kosmos 11K65M,,DS-P1-M No. 1,,SU,F,state -1971-F02,2441015.84,1971-03-05,1971,Kosmos 11K63,,DS-P1-Yu No. 39,,SU,F,state -1971-F03,2441015.54,1971-03-05,1971,Voskhod 11A57,,Zenit-2M,,SU,F,state -1971-F05,2441127.94,1971-06-25,1971,Voskhod 11A57,,Zenit-4M,,SU,F,state -1971-F06,2441129.47,1971-06-26,1971,N-1 11A52,,LK,,SU,F,state -1971-F07,2441155.07,1971-07-22,1971,Kosmos 11K65M,,Tselina-OM,,SU,F,state -1971-F08,2441166.96,1971-08-03,1971,Kosmos 11K63,,DS-P1-Yu No. 33,,SU,F,state -1971-F09,2441182.77,1971-08-19,1971,Voskhod 11A57,,Zenit-4M,,SU,F,state -1971-F12,2441289.04,1971-12-03,1971,Voskhod 11A57,,Zenit-2M,,SU,F,state -1972-F02,2441432.98,1972-04-25,1972,Kosmos 11K63,,DS-P1-Yu No. 51,,SU,F,state -1972-F04,2441527.64,1972-07-29,1972,Proton-K,,DOS 2 (17K No. 122),,SU,F,state -1972-F05,2441562.95,1972-09-02,1972,Voskhod 11A57,,Zenit-4M,,SU,F,state -1972-F06,2441608.33,1972-10-17,1972,Kosmos 11K65M,,Strela-2M,,SU,F,state -1972-F07,2441644.76,1972-11-23,1972,N-1 11A52,,Mockup LK,,SU,F,state -1973-F03,2441827.89,1973-05-25,1973,Kosmos 11K65M,,Zaliv,,SU,F,state -1973-F05,2441867.96,1973-07-04,1973,Voskhod 11A57,,Zenit-4M,,SU,F,state -1974-F02,2442149.83,1974-04-12,1974,Voskhod 11A57,,Zenit-4MK,,SU,F,state -1974-F03,2442191.01,1974-05-23,1974,Soyuz-U,,Yantar'-2K No. 1,,SU,F,state -1974-F04,2442239.96,1974-07-11,1974,Kosmos 11K63,,DS-P1-Yu No. 68,,SU,F,state -1974-F06,2442289.88,1974-08-30,1974,Voskhod 11A57,,Zenit-2M,,SU,F,state -1975-F02,2442507.96,1975-04-05,1975,Soyuz 11A511,,Soyuz 7K-T No. 39,,SU,F,state -1975-F04,2442566.88,1975-06-03,1975,Kosmos 11K65M,,DS-U3-IK No. 5,,SU,F,state -1975-F05,2442701.67,1975-10-16,1975,Proton-K/D-1,,E-8-5M No. 412,,SU,F,state -1975-F07,2442766.08,1975-12-19,1975,Kosmos 11K65M,,Lira,,SU,F,state -1976-F02,2443055.96,1976-10-04,1976,Soyuz-U,,Fram,,SU,F,state -1977-F01,2443196.89,1977-02-22,1977,Soyuz-U,,Zenit-4MK,,SU,F,state -1977-F02,2443360.42,1977-08-04,1977,Proton-K,,TKS VA No. 009A/P,,SU,F,state -1977-F03,2443365.94,1977-08-10,1977,Soyuz-U,,Zenit-4MKM,,SU,F,state -1977-F06,2443476.8,1977-11-29,1977,Kosmos 11K65M,,Tsikada?,,SU,F,state -1978-F02,2443655.56,1978-05-27,1978,Proton-K/DM,,Ekran No. 13L,,SU,F,state -1978-F03,2443738.33,1978-08-17,1978,Proton-K/DM,,Ekran No. 15L,,SU,F,state -1978-F04,2443799.17,1978-10-17,1978,Proton-K/DM,,Ekran No. 14L,,SU,F,state -1979-F01,2443921.12,1979-02-16,1979,Soyuz-U,,Zenit-2M No. 131,,SU,F,state -1981-F01,2444627.97,1981-01-23,1981,Tsiklon-3,,Musson No. 11,,SU,F,state -1981-F02,2444691.9,1981-03-28,1981,Soyuz-U,,Feniks No. 979,,SU,F,state -1993-014,2449072.05,1993-03-25,1993,Start-1,,EKA-1,RU,RU,O,state -1997-070,2450765.21,1997-11-12,1997,Proton-K/DM-2M,DM-2M,K95K,RU,RU,O,state -1997-079,2450791.8,1997-12-09,1997,Tsiklon-2,,US-PU,RU,RU,O,state -1997-080,2450798.15,1997-12-15,1997,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -1997-081,2450802.86,1997-12-20,1997,Soyuz-U,,Progress 7K-TGM No 236,RU,RU,O,state -1997-085,2450807.06,1997-12-24,1997,Start-1,,EarlyBird,RU,RU,O,state -1998-004,2450843.19,1998-01-29,1998,Soyuz-U-PVB,?,Soyuz 7K-STM No. 76,RU,RU,O,state -1998-009,2450861.94,1998-02-17,1998,Soyuz-U-PVB,?,Kometa No. 19,RU,RU,O,state -1998-015,2450887.45,1998-03-14,1998,Soyuz-U-PVB,?,Progress 7K-TGM No 240,RU,RU,O,state -1998-021,2450910.59,1998-04-07,1998,Proton-K/17S40,DM2,Iridium SV062,RU,RU,O,state -1998-025,2450932.69,1998-04-29,1998,Proton-K/DM-2,,Oko-1 No. 7122,RU,RU,O,state -1998-027,2450940.87,1998-05-07,1998,Molniya 8K78M,ML,Oko,RU,RU,O,state -1998-031,2450948.43,1998-05-14,1998,Soyuz-U-PVB,?,Progress 7K-TGM No 238,RU,RU,O,state -1998-036,2450980.46,1998-06-15,1998,Tsiklon-3,,Strela-3,RU,RU,O,state -1998-038,2450989.27,1998-06-24,1998,Soyuz-U-PVB,?,Kobal't,RU,RU,O,state -1998-039,2450990.08,1998-06-25,1998,Soyuz-U-PVB,?,Neman,RU,RU,O,state -1998-040,2450995.53,1998-07-01,1998,Molniya 8K78M,ML,Molniya-3 No. 61,RU,RU,O,state -1998-043,2451004.77,1998-07-10,1998,Zenit-2,,Resurs-O1 No. 4L,RU,RU,O,state -1998-045,2451022.89,1998-07-28,1998,Zenit-2,,Tselina-2,RU,RU,O,state -1998-047,2451038.9,1998-08-13,1998,Soyuz-U-PVB,?,Soyuz 7K-STM No. 77,RU,RU,O,state -1998-054,2451085.49,1998-09-28,1998,Molniya 8K78M,ML,Molniya-1T No. 99,RU,RU,O,state -1998-062,2451111.68,1998-10-25,1998,Soyuz-U-PVB,?,Progress 7K-TGM No 239,RU,RU,O,state -1998-067,2451137.78,1998-11-20,1998,Proton-K,,77KM No. 17501,RU,RU,O,state -1998-072,2451158,1998-12-10,1998,Kosmos 11K65M,,Nadezhda 17F118,RU,RU,O,state -1998-076,2451172.33,1998-12-24,1998,Kosmos 11K65M,,Parus,RU,RU,O,state -1998-077,2451178.27,1998-12-30,1998,Proton-K/DM-2,,Uragan No. 86L,RU,RU,O,state -1999-007,2451229.68,1999-02-20,1999,Soyuz-U,,Soyuz 7K-STM No. 78,RU,RU,O,state -1999-010,2451237.67,1999-02-28,1999,Proton-K/DM-2,,Globus No. 15L,RU,RU,O,state -1999-015,2451270.98,1999-04-02,1999,Soyuz-U-PVB,,Progress 7K-TGM No 241,RU,RU,O,state -1999-022,2451297.35,1999-04-28,1999,Kosmos 11K65M,,ABRIXAS,RU,RU,O,state -1999-036,2451367.86,1999-07-08,1999,Molniya 8K78M,ML,Molniya-3 No. 63?,RU,RU,O,state -1999-038,2451376.19,1999-07-16,1999,Soyuz-U-PVB,,Progress 7K-TGM No 242,RU,RU,O,state -1999-039,2451376.73,1999-07-17,1999,Zenit-2,,Okean-O No. 1,RU,RU,O,state -1999-044,2451409.25,1999-08-18,1999,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -1999-045,2451417,1999-08-26,1999,Kosmos 11K65M,,Parus,RU,RU,O,state -1999-048,2451431.25,1999-09-09,1999,Soyuz-U-PVB,,Foton No. 12,RU,RU,O,state -1999-054,2451449.96,1999-09-28,1999,Soyuz-U-PVB,,Resurs F-1M,RU,RU,O,state -1999-072,2451538.83,1999-12-26,1999,Tsiklon-2,,US-PU/Konus-A,RU,RU,O,state -1999-073,2451540.3,1999-12-27,1999,Molniya 8K78M,2BL,Oko,RU,RU,O,state -2000-006,2451577.89,2000-02-03,2000,Zenit-2,,Tselina-2,RU,RU,O,state -2000-023,2451668.06,2000-05-03,2000,Soyuz-U-PVB,,Neman,RU,RU,O,state -2000-033,2451723.94,2000-06-28,2000,Kosmos 11K65M,,Nadezhda 17F118 No. 701,RU,RU,O,state -2000-039,2451741,2000-07-15,2000,Kosmos 11K65M,,MITA-NINA,RU,RU,O,state -2000-056,2451812.92,2000-09-25,2000,Zenit-2,,Yenisey,RU,RU,O,state -2000-058,2451816.9,2000-09-29,2000,Soyuz-U-PVB,,Kometa No. 20?,RU,RU,O,state -2003-055,2452978.75,2003-12-05,2003,Strela,,Kondor-E GVM 14S135,RU,RU,O,state -2005-031,2453606.38,2005-08-23,2005,Dnepr,,OICETS,RU,RU,O,state -2006-029,2453929.12,2006-07-12,2006,Dnepr,,Bigelow Genesis-1,RU,RU,O,state -2013-032,2456471.2,2013-06-27,2013,Strela,,Kondor No. 202,RU,RU,O,state -2014-084,2457010.7,2014-12-19,2014,Strela,,Kondor-E No. 2,RU,RU,O,state -1995-F02,2449804.92,1995-03-28,1995,Start,,Techsat 1,RU,RU,F,state -1998-F05,2451066.35,1998-09-09,1998,Zenit-2 11K77.05,,Globalstar FM5,RU,RU,F,state -1999-F02,2451365.06,1999-07-05,1999,Proton-K/Briz-M,,Gran' No. 45,RU,RU,F,state -2000-F03,2451905.91,2000-12-27,2000,Tsiklon-3,,Gonets-D1 No. 7,RU,RU,F,state -1980-F02,2444435.6,1980-07-15,1980,Thor DSV-2U,,DMSP Block 5D S-4,US,US,F,state -1965-003,2438779.71,1965-01-19,1965,Thor MG-18,,DAPP 10,US,US,O,state -1965-021,2438837.7,1965-03-18,1965,Thor MG-18,,DAPP 11,US,US,O,state -1965-038,2438901.19,1965-05-20,1965,Thor Burner 1,,DAPP 12 (Block 3),US,US,O,state -1965-072,2439013.7,1965-09-10,1965,Thor Burner 1,,DAPP 13,US,US,O,state -1966-026,2439215.74,1966-03-31,1966,Thor Burner 1,,DAPP 15,US,US,O,state -1966-082,2439384.69,1966-09-16,1966,Thor Burner 2,,DAPP 1416,US,US,O,state -1967-010,2439529.83,1967-02-08,1967,Thor Burner 2,,DAPP 2418,US,US,O,state -1966-F01,2439132.7,1966-01-07,1966,Thor Burner 1,,DAPP 14,US,US,F,state -1975-119,2442762.89,1975-12-16,1975,Feng Bao 1,,JSSW,CN,CN,O,state -1975-070,2442620.06,1975-07-26,1975,Feng Bao 1,,JSSW,CN,CN,O,state -1976-087,2443020.99,1976-08-30,1976,Feng Bao 1,,JSSW,CN,CN,O,state -1981-093,2444867.39,1981-09-19,1981,Feng Bao 1,,shijian erhao B xing,CN,CN,O,state -1988-080,2447411.35,1988-09-06,1988,Chang Zheng 4,,feng yun yi jia,CN,CN,O,state -1990-081,2448137.54,1990-09-03,1990,Chang Zheng 4,,feng yun yi yi,CN,CN,O,state -1992-051,2448843.83,1992-08-09,1992,Chang Zheng 2D,,FSW-2 No. 1,CN,CN,O,state -1994-037,2449536.83,1994-07-03,1994,Chang Zheng 2D,,FSW-2 No. 2,CN,CN,O,state -1996-059,2450376.81,1996-10-20,1996,Chang Zheng 2D,,FSW-2 No. 3,CN,CN,O,state -1999-025,2451308.56,1999-05-10,1999,Chang Zheng 4B,,Feng Yun Yi Beng,CN,CN,O,state -1999-057,2451465.64,1999-10-14,1999,Chang Zheng 4B,,ZY-1/CBERS 1,CN,CN,O,state -2000-050,2451788.64,2000-09-01,2000,Chang Zheng 4B,,ziyuan erhao 01 xing,CN,CN,O,state -2002-024,2452409.58,2002-05-15,2002,Chang Zheng 4B,,haiyang yihao A,CN,CN,O,state -2002-049,2452574.64,2002-10-27,2002,Chang Zheng 4B,,ziyuan erhao 02 xing,CN,CN,O,state -2003-049,2452933.64,2003-10-21,2003,Chang Zheng 4B,,ZY-1-2,CN,CN,O,state -2003-051,2452946.81,2003-11-03,2003,Chang Zheng 2D,j,FSW Service Module,CN,CN,O,state -2004-035,2453257.47,2004-09-08,2004,Chang Zheng 4B,,shijian liuhao B xing,CN,CN,O,state -2004-039,2453275.83,2004-09-27,2004,Chang Zheng 2D,j,FSW-3?,CN,CN,O,state -2004-044,2453315.63,2004-11-06,2004,Chang Zheng 4B,,ziyuan erhao 03 xing,CN,CN,O,state -2005-024,2453557.44,2005-07-05,2005,Chang Zheng 2D,j,Tansuo-2,CN,CN,O,state -2005-033,2453611.86,2005-08-29,2005,Chang Zheng 2D,j,FSW-3?,CN,CN,O,state -2006-015,2453852.45,2006-04-26,2006,Chang Zheng 4C,,yaogan weixing yihao,CN,CN,O,state -2006-046,2454032.48,2006-10-23,2006,Chang Zheng 4B,,shijian liuhao er zu B x,CN,CN,O,state -2007-019,2454245.8,2007-05-25,2007,Chang Zheng 2D,j,yaogan weixing erhao,CN,CN,O,state -2007-042,2454362.64,2007-09-19,2007,Chang Zheng 4B,,ziyuan yihao 02B weixing,CN,CN,O,state -2007-055,2454416.45,2007-11-11,2007,Chang Zheng 4C,,yaogan weixing sanhao,CN,CN,O,state -2008-026,2454613.63,2008-05-27,2008,Chang Zheng 4C,,fengyun sanhao 01 xing,CN,CN,O,state -2008-053,2454764.55,2008-10-25,2008,Chang Zheng 4B,,shijian liuhao san zu B,CN,CN,O,state -2008-056,2454775.51,2008-11-05,2008,Chang Zheng 2D,j,shiyan weixing sanhao,CN,CN,O,state -2008-061,2454801.7,2008-12-01,2008,Chang Zheng 2D,j,yaogan weixing sihao,CN,CN,O,state -2008-064,2454815.64,2008-12-15,2008,Chang Zheng 4B,,yaogan weixing wuhao,CN,CN,O,state -2009-069,2455174.86,2009-12-09,2009,Chang Zheng 2D,j,yaogan weixing qihao,CN,CN,O,state -2009-072,2455180.6,2009-12-15,2009,Chang Zheng 4C,,yaogan weixing bahao,CN,CN,O,state -2010-009,2455260.7,2010-03-05,2010,Chang Zheng 4C,,yaogan weixing jiuhao,CN,CN,O,state -2010-027,2455362.57,2010-06-15,2010,Chang Zheng 2D,j,shijian shi erhao weixin,CN,CN,O,state -2010-038,2455418.45,2010-08-09,2010,Chang Zheng 4C,,yaogan weixing shihao,CN,CN,O,state -2010-040,2455432.8,2010-08-24,2010,Chang Zheng 2D,j,tianhui yi hao weixing,CN,CN,O,state -2010-047,2455461.61,2010-09-22,2010,Chang Zheng 2D,j,yaogan weixing shi yihao,CN,CN,O,state -2010-051,2455475.53,2010-10-06,2010,Chang Zheng 4B,,shijian liuhao 4 zu B xi,CN,CN,O,state -2010-059,2455505.28,2010-11-04,2010,Chang Zheng 4C,,fengyun sanhao 01 B xing,CN,CN,O,state -2011-043,2455789.46,2011-08-15,2011,Chang Zheng 4B,,Haiyang er hao,CN,CN,O,state -2011-066,2455874.64,2011-11-09,2011,Chang Zheng 4B,,tianxun yihao,CN,CN,O,state -2011-068,2455885.51,2011-11-20,2011,Chang Zheng 2D,j,chuangxin yihao 03 xing,CN,CN,O,state -2011-079,2455917.64,2011-12-22,2011,Chang Zheng 4B,,ziyuan yihao 02C weixing,CN,CN,O,state -2012-001,2455935.64,2012-01-09,2012,Chang Zheng 4B,,ziyuan san hao,CN,CN,O,state -2012-020,2456053.8,2012-05-06,2012,Chang Zheng 2D,j,tianhui yi hao 02 xing,CN,CN,O,state -2012-021,2456057.8,2012-05-10,2012,Chang Zheng 4B,,yaogan weixing shisi hao,CN,CN,O,state -2012-029,2456076.81,2012-05-29,2012,Chang Zheng 4C,,yaogan weixing shiwuhao,CN,CN,O,state -2012-052,2456199.68,2012-09-29,2012,Chang Zheng 2D,j,VRSS-1,CN,CN,O,state -2012-066,2456256.67,2012-11-25,2012,Chang Zheng 4C,,yaogan weixing shiliu ha,CN,CN,O,state -2012-073,2456280.18,2012-12-18,2012,Chang Zheng 2D,,GK-2,CN,CN,O,state -2013-018,2456408.68,2013-04-26,2013,Chang Zheng 2D,,GF-1,CN,CN,O,state -2013-037,2456493.48,2013-07-19,2013,Chang Zheng 4C,,SJ-15/CX-3/SY-7,CN,CN,O,state -2013-046,2456537.3,2013-09-01,2013,Chang Zheng 4C,,YW-17,CN,CN,O,state -2013-052,2456558.63,2013-09-23,2013,Chang Zheng 4C,,san ke fengyun san hao,CN,CN,O,state -2013-057,2456590.66,2013-10-25,2013,Chang Zheng 4B,,SJ-16,CN,CN,O,state -2013-065,2456616.65,2013-11-20,2013,Chang Zheng 4C,,yaogan weixing 19,CN,CN,O,state -2013-068,2456621.59,2013-11-25,2013,Chang Zheng 2D,,SW5,CN,CN,O,state -2014-047,2456878.74,2014-08-09,2014,Chang Zheng 4C,,YW20,CN,CN,O,state -2014-049,2456888.64,2014-08-19,2014,Chang Zheng 4B,,GF-2,CN,CN,O,state -2014-051,2456904.51,2014-09-04,2014,Chang Zheng 2D,,CX-1-04/LQ,CN,CN,O,state -2014-053,2456908.64,2014-09-08,2014,Chang Zheng 4B,,YG-21/TT-1 No. 2,CN,CN,O,state -2014-063,2456950.77,2014-10-20,2014,Chang Zheng 4C,,YG-22,CN,CN,O,state -2014-072,2456981.8,2014-11-20,2014,Chang Zheng 2D,,YG-24,CN,CN,O,state -2014-079,2456998.64,2014-12-07,2014,Chang Zheng 4B,,ZY1-4,CN,CN,O,state -2014-080,2457002.31,2014-12-10,2014,Chang Zheng 4C,,YG-25,CN,CN,O,state -2014-088,2457018.64,2014-12-27,2014,Chang Zheng 4B,,YG-26,CN,CN,O,state -2015-030,2457199.77,2015-06-26,2015,Chang Zheng 4B,,GF-8,CN,CN,O,state -2015-040,2457261.61,2015-08-27,2015,Chang Zheng 4C,,YG-27,CN,CN,O,state -2015-047,2457279.7,2015-09-14,2015,Chang Zheng 2D,,GF-9,CN,CN,O,state -2015-057,2457302.68,2015-10-07,2015,Chang Zheng 2D,,Jilin-1,CN,CN,O,state -2015-061,2457321.8,2015-10-26,2015,Chang Zheng 2D,,tianhui yi hao 03 xing,CN,CN,O,state -2015-064,2457334.8,2015-11-08,2015,Chang Zheng 4B,,YG-28,CN,CN,O,state -2015-069,2457353.39,2015-11-26,2015,Chang Zheng 4C,,YG-29,CN,CN,O,state -2015-078,2457373.51,2015-12-17,2015,Chang Zheng 2D,,DAMPE,CN,CN,O,state -2016-023,2457484.23,2016-04-05,2016,Chang Zheng 2D,,SJ-10,CN,CN,O,state -2016-029,2457523.61,2016-05-15,2016,Chang Zheng 2D,,YG30,CN,CN,O,state -2016-033,2457538.64,2016-05-30,2016,Chang Zheng 4B,,"ZY-3-02/Nusat-1,2",CN,CN,O,state -2016-043,2457568.64,2016-06-29,2016,Chang Zheng 4B,,SJ-16-02,CN,CN,O,state -2016-049,2457610.45,2016-08-09,2016,Chang Zheng 4C,,Gaofen 3,CN,CN,O,state -2016-051,2457616.24,2016-08-15,2016,Chang Zheng 2D,,QUESS,CN,CN,O,state -2016-068,2457704.47,2016-11-11,2016,Chang Zheng 2D,,Yunhai-1 01,CN,CN,O,state -2016-081,2457744.31,2016-12-21,2016,Chang Zheng 2D,,TanSat,CN,CN,O,state -2016-083,2457750.64,2016-12-28,2016,Chang Zheng 2D,,Superview 1/2,CN,CN,O,state -2017-034,2457919.62,2017-06-15,2017,Chang Zheng 4B,,HXMT,CN,CN,O,state -2017-060,2458035.68,2017-10-09,2017,Chang Zheng 2D,,VRSS-2,CN,CN,O,state -2017-072,2458072.27,2017-11-14,2017,Chang Zheng 4C,,Fengyun 3 04,CN,CN,O,state -2017-077,2458090.67,2017-12-03,2017,Chang Zheng 2D,,LKW-1,CN,CN,O,state -2017-084,2458110.68,2017-12-23,2017,Chang Zheng 2D,,LKW-2,CN,CN,O,state -2018-002,2458127.64,2018-01-09,2018,Chang Zheng 2D,,Superview 3/4,CN,CN,O,state -2018-006,2458131.8,2018-01-13,2018,Chang Zheng 2D,,LKW-3,CN,CN,O,state -2018-015,2458151.83,2018-02-02,2018,Chang Zheng 2D,,CSES,CN,CN,O,state -2018-025,2458194.8,2018-03-17,2018,Chang Zheng 2D,,LKW-4,CN,CN,O,state -2018-031,2458208.64,2018-03-31,2018,Chang Zheng 4C,,"GF-1 02,03,04",CN,CN,O,state -2018-034,2458218.68,2018-04-10,2018,Chang Zheng 4C,,YG-31-01,CN,CN,O,state -2018-043,2458247.27,2018-05-08,2018,Chang Zheng 4C,,Gao Fen 5,CN,CN,O,state -2018-045,2458259.4,2018-05-20,2018,Chang Zheng 4C,,Chang'e-4 Relay,CN,CN,O,state -2018-048,2458271.68,2018-06-02,2018,Chang Zheng 2D,,Gao Fen 6/LJ-1,CN,CN,O,state -2018-063,2458330.63,2018-07-31,2018,Chang Zheng 4B,,Gao Fen 11,CN,CN,O,state -1973-F07,2441944.01,1973-09-18,1973,Feng Bao 1,,JSSW,CN,CN,F,state -1974-F05,2442241.08,1974-07-12,1974,Feng Bao 1,,JSSW,CN,CN,F,state -1976-F03,2443092.88,1976-11-10,1976,Feng Bao 1,,JSSW?,CN,CN,F,state -1979-F02,2444082.39,1979-07-27,1979,Feng Bao 1,,SKW,CN,CN,F,state -2013-F03,2456635.64,2013-12-09,2013,Chang Zheng 4B,,CBERS 3,CN,CN,F,state -2016-F01,2457632.29,2016-08-31,2016,Chang Zheng 4C,,Gaofen 10,CN,CN,F,state -1999-014,2451265.56,1999-03-28,1999,Zenit-3SL,,DemoSat,SEALC,CYM,O,private -1999-056,2451461.64,1999-10-10,1999,Zenit-3SL,,DirecTV-1R,SEALC,CYM,O,private -2000-043,2451754.45,2000-07-28,2000,Zenit-3SL,,PAS 9,SEALC,CYM,O,private -2000-F02,2451616.12,2000-03-12,2000,Zenit-3SL,,ICO F1,SEALC,CYM,F,private -2000-066,2451838.74,2000-10-21,2000,Zenit-3SL,,Thuraya 1,SEALP,US,O,private -2001-012,2451987.44,2001-03-18,2001,Zenit-3SL,,XM Radio-2,SEALP,US,O,private -2001-018,2452038.42,2001-05-08,2001,Zenit-3SL,,XM Radio-1,SEALP,US,O,private -2002-030,2452441.44,2002-06-15,2002,Zenit-3SL,,Galaxy III-C,SEALP,US,O,private -2003-026,2452801.08,2003-06-10,2003,Zenit-3SL,,Thuraya 2,SEALP,US,O,private -2003-034,2452859.65,2003-08-08,2003,Zenit-3SL,,Echostar IX,SEALP,US,O,private -2003-044,2452913.67,2003-10-01,2003,Zenit-3SL,,Galaxy XIII/Horizons 1,SEALP,US,O,private -2004-001,2453015.68,2004-01-11,2004,Zenit-3SL,,Telstar 14,SEALP,US,O,private -2004-016,2453130.03,2004-05-04,2004,Zenit-3SL,,DirecTV 7S,SEALP,US,O,private -2004-024,2453185.67,2004-06-29,2004,Zenit-3SL,,Apstar 5,SEALP,US,O,private -2005-008,2453430.66,2005-03-01,2005,Zenit-3SL,,XM Radio-3,SEALP,US,O,private -2005-015,2453486.81,2005-04-26,2005,Zenit-3SL,,Spaceway 1,SEALP,US,O,private -2005-022,2453545.09,2005-06-23,2005,Zenit-3SL,,Intelsat Americas 8,SEALP,US,O,private -2005-044,2453683.09,2005-11-08,2005,Zenit-3SL,,INMARSAT 4 F2,SEALP,US,O,private -2006-003,2453782.48,2006-02-15,2006,Zenit-3SL,,Echostar 10,SEALP,US,O,private -2006-010,2453838.48,2006-04-12,2006,Zenit-3SL,,JCSAT-9,SEALP,US,O,private -2006-023,2453904.83,2006-06-18,2006,Zenit-3SL,,Galaxy 16,SEALP,US,O,private -2006-034,2453969.64,2006-08-22,2006,Zenit-3SL,,Koreasat 5,SEALP,US,O,private -2006-049,2454039.49,2006-10-30,2006,Zenit-3SL,,XM Radio-4,SEALP,US,O,private -2008-001,2454480.99,2008-01-15,2008,Zenit-3SL,,Thuraya 3,SEALP,US,O,private -2008-013,2454545.45,2008-03-19,2008,Zenit-3SL,,DirecTV-11,SEALP,US,O,private -2008-024,2454607.91,2008-05-21,2008,Zenit-3SL,,Galaxy 18,SEALP,US,O,private -2008-035,2454663.72,2008-07-16,2008,Zenit-3SL,,Echostar 11,SEALP,US,O,private -2008-045,2454733.89,2008-09-24,2008,Zenit-3SL,,Galaxy 19,SEALP,US,O,private -2009-020,2454941.84,2009-04-20,2009,Zenit-3SL,,SICRAL 1B,SEALP,US,O,private -2007-F01,2454131.47,2007-01-30,2007,Zenit-3SL,,NSS 8,SEALP,US,F,private -2008-022,2454584.71,2008-04-28,2008,Zenit-3SLB,,Amos 3,RU,RU,O,state -2009-009,2454889.27,2009-02-26,2009,Zenit-3SLB,,Telstar 11N,RU,RU,O,state -2009-032,2455004.41,2009-06-21,2009,Zenit-3SLB,,Measat 3A,RU,RU,O,state -2009-067,2455166.38,2009-11-30,2009,Zenit-3SLB,,IS-15,RU,RU,O,state -2008-048,2454738.47,2008-09-28,2008,Falcon 1,,Mass simulator,SPX,US,O,startup -2009-037,2455026.65,2009-07-14,2009,Falcon 1,,MACSat,SPX,US,O,startup -2010-026,2455352.28,2010-06-04,2010,Falcon 9,,Dragon Spacecraft,SPX,US,O,startup -2010-066,2455539.15,2010-12-08,2010,Falcon 9,,Dragon C101,SPX,US,O,startup -2012-027,2456069.82,2012-05-22,2012,Falcon 9,,Dragon C102,SPX,US,O,startup -2012-054,2456208.52,2012-10-08,2012,Falcon 9,,Dragon C103,SPX,US,O,startup -2013-010,2456353.13,2013-03-01,2013,Falcon 9,,Dragon C104,SPX,US,O,startup -2013-055,2456565.17,2013-09-29,2013,Falcon 9,1.1,Cassiope,SPX,US,O,startup -2013-071,2456630.45,2013-12-03,2013,Falcon 9,1.1,SES-8,SPX,US,O,startup -2014-002,2456664.42,2014-01-06,2014,Falcon 9,1.1,,SPX,US,O,startup -2014-022,2456766.31,2014-04-18,2014,Falcon 9,1.1,Dragon C105,SPX,US,O,startup -2014-040,2456853.14,2014-07-14,2014,Falcon 9,1.1,Orbcomm OG2,SPX,US,O,startup -2014-046,2456874.83,2014-08-05,2014,Falcon 9,1.1,Asiasat 8,SPX,US,O,startup -2014-052,2456907.71,2014-09-07,2014,Falcon 9,1.1,Asiasat 6/Thaicom,SPX,US,O,startup -2014-056,2456921.74,2014-09-21,2014,Falcon 9,1.1,Dragon C106,SPX,US,O,startup -2015-001,2457032.91,2015-01-10,2015,Falcon 9,1.1,Dragon C107,SPX,US,O,startup -2015-007,2457065.46,2015-02-11,2015,Falcon 9,1.1,DSCOVR,SPX,US,O,startup -2015-010,2457083.66,2015-03-02,2015,Falcon 9,1.1,ABS-3A/Eutelsat115WB,SPX,US,O,startup -2015-021,2457127.34,2015-04-14,2015,Falcon 9,1.1,Dragon C108,SPX,US,O,startup -2015-023,2457140.46,2015-04-27,2015,Falcon 9,1.1,Turkmensat,SPX,US,O,startup -2015-081,2457378.56,2015-12-22,2015,Falcon 9,FT3,Orbcomm OG2,SPX,US,O,startup -2016-002,2457405.28,2016-01-17,2016,Falcon 9,1.1,Jason-3,SPX,US,O,startup -2016-013,2457452.48,2016-03-04,2016,Falcon 9,FT3,SES-9,SPX,US,O,startup -2016-024,2457487.36,2016-04-08,2016,Falcon 9,FT3,Dragon C110,SPX,US,O,startup -2016-028,2457514.72,2016-05-06,2016,Falcon 9,FT3,JCSAT 14,SPX,US,O,startup -2016-031,2457536.4,2016-05-27,2016,Falcon 9,FT3,Thaicom 8,SPX,US,O,startup -2016-038,2457555.1,2016-06-15,2016,Falcon 9,FT3,ABS-2/Eutelsat 117WB,SPX,US,O,startup -2016-046,2457587.7,2016-07-18,2016,Falcon 9,FT3,Dragon C111,SPX,US,O,startup -2016-050,2457614.73,2016-08-14,2016,Falcon 9,FT3,JCSAT 16,SPX,US,O,startup -2017-003,2457768.25,2017-01-14,2017,Falcon 9,FT3,Iridium Next SV1-10,SPX,US,O,startup -2017-009,2457804.11,2017-02-19,2017,Falcon 9,FT3,Dragon C112,SPX,US,O,startup -2017-014,2457828.75,2017-03-16,2017,Falcon 9,FT3,Echostar 23,SPX,US,O,startup -2017-017,2457843.44,2017-03-30,2017,Falcon 9,FT3,SES-10,SPX,US,O,startup -2017-022,2457874.97,2017-05-01,2017,Falcon 9,FT3/4,NROL-76,SPX,US,O,startup -2017-025,2457889.47,2017-05-15,2017,Falcon 9,FT3/4,Inmarsat 5F4,SPX,US,O,startup -2017-030,2457908.38,2017-06-03,2017,Falcon 9,FT3,Dragon C106.2,SPX,US,O,startup -2017-038,2457928.3,2017-06-23,2017,Falcon 9,FT3,BulgariaSat-1,SPX,US,O,startup -2017-039,2457930.35,2017-06-25,2017,Falcon 9,FT3,Iridium Next SV11-20,SPX,US,O,startup -2017-041,2457940.48,2017-07-05,2017,Falcon 9,FT3/4,Intelsat IS-35e,SPX,US,O,startup -2017-045,2457980.19,2017-08-14,2017,Falcon 9,FT4,Dragon C113,SPX,US,O,startup -2017-049,2457990.29,2017-08-24,2017,Falcon 9,FT3/4,Formosat-5,SPX,US,O,startup -2017-052,2458004.08,2017-09-07,2017,Falcon 9,FT4,OTV-5,SPX,US,O,startup -2017-061,2458036.03,2017-10-09,2017,Falcon 9,FT4,Iridium Next SV21-30,SPX,US,O,startup -2017-063,2458038.45,2017-10-11,2017,Falcon 9,FT3/4,SES-11/Echostar-105,SPX,US,O,startup -2017-067,2458057.32,2017-10-30,2017,Falcon 9,FT4,Koreasat-5A,SPX,US,O,startup -2017-080,2458103.15,2017-12-15,2017,Falcon 9,FT3/4,Dragon C108.2,SPX,US,O,startup -2017-083,2458110.56,2017-12-23,2017,Falcon 9,FT3/4,Iridium Next SV31-40,SPX,US,O,startup -2018-001,2458126.54,2018-01-08,2018,Falcon 9,FT4,Zuma,SPX,US,O,startup -2018-013,2458150.39,2018-01-31,2018,Falcon 9,FT3/4,GovSat-1,SPX,US,O,startup -2018-017,2458156.36,2018-02-06,2018,Falcon Heavy,,Tesla Roadster,SPX,US,O,startup -2018-020,2458172.1,2018-02-22,2018,Falcon 9,FT3/4,PAZ/SpaceX Demo,SPX,US,O,startup -2018-023,2458183.73,2018-03-06,2018,Falcon 9,FT4,Hispasat 30W-6,SPX,US,O,startup -2018-030,2458208.09,2018-03-30,2018,Falcon 9,FT4,Iridium Next SV41-50,SPX,US,O,startup -2018-032,2458211.35,2018-04-02,2018,Falcon 9,FT4,Dragon C110.2,SPX,US,O,startup -2018-038,2458227.45,2018-04-18,2018,Falcon 9,FT4,TESS,SPX,US,O,startup -2018-044,2458250.34,2018-05-11,2018,Falcon 9,FT5,Bangabadhu 1,SPX,US,O,startup -2018-047,2458261.32,2018-05-22,2018,Falcon 9,FT4,Iridium-6/GRACE-FO,SPX,US,O,startup -2018-049,2458273.7,2018-06-04,2018,Falcon 9,FT4/5,SES-12,SPX,US,O,startup -2018-055,2458298.9,2018-06-29,2018,Falcon 9,FT4/5,Dragon C111.2,SPX,US,O,startup -2018-059,2458321.74,2018-07-22,2018,Falcon 9,FT5,Telstar 19V,SPX,US,O,startup -2018-061,2458324.99,2018-07-25,2018,Falcon 9,FT5,Iridium-7,SPX,US,O,startup -2018-064,2458337.72,2018-08-07,2018,Falcon 9,FT5,Telkom 4,SPX,US,O,startup -2018-069,2458371.7,2018-09-10,2018,Falcon 9,FT5,Telstar 18V,SPX,US,O,startup -2018-076,2458399.6,2018-10-08,2018,Falcon 9,FT5,SAOCOM-1A,SPX,US,O,startup -2006-F01,2453819.44,2006-03-24,2006,Falcon 1,,Falconsat 2,SPX,US,F,startup -2007-F02,2454180.55,2007-03-21,2007,Falcon 1,,AFSS/LCT2,SPX,US,F,startup -2008-F01,2454681.65,2008-08-03,2008,Falcon 1,,ORS Trailblazer,SPX,US,F,startup -2015-F02,2457202.1,2015-06-28,2015,Falcon 9,1.1,Dragon C109,SPX,US,F,startup -1999-004,2451218.66,1999-02-09,1999,Soyuz-U-PVB,Ikar,Globalstar FM23,STSM,F,O,private -1999-012,2451252.63,1999-03-15,1999,Soyuz-U-PVB,Ikar,Globalstar FM22,STSM,F,O,private -1999-019,2451283.53,1999-04-15,1999,Soyuz-U-PVB,Ikar,Globalstar FM45,STSM,F,O,private -1999-049,2451444.11,1999-09-22,1999,Soyuz-U-PVB,Ikar,Globalstar FM58,STSM,F,O,private -1999-058,2451470.06,1999-10-18,1999,Soyuz-U-PVB,Ikar,Globalstar M057,STSM,F,O,private -1999-062,2451505.18,1999-11-22,1999,Soyuz-U-PVB,Ikar,Globalstar M039,STSM,F,O,private -2000-009,2451583.47,2000-02-08,2000,Soyuz-U-PVB,Fregat,Dummy satellite,STSM,F,O,private -2000-015,2451624.27,2000-03-20,2000,Soyuz-U-PVB,Fregat,Dumsat,STSM,F,O,private -2000-041,2451742.03,2000-07-16,2000,Soyuz-U-PVB,Fregat,Cluster FM7 (C3),STSM,F,O,private -2000-045,2451765.97,2000-08-09,2000,Soyuz-U-PVB,Fregat,Cluster FM5 (C1),STSM,F,O,private -2003-022,2452793.24,2003-06-02,2003,Soyuz-FG,Fregat,Mars Express,STSM,F,O,private -2003-059,2453001.4,2003-12-27,2003,Soyuz-FG,Fregat,Amos-2,STSM,F,O,private -2005-030,2453596.48,2005-08-13,2005,Soyuz-FG,Fregat,Galaxy 14,STSM,F,O,private -2005-045,2453683.65,2005-11-09,2005,Soyuz-FG,Fregat,Venus Express,STSM,F,O,private -2005-051,2453732.72,2005-12-28,2005,Soyuz-FG,Fregat,GSTB-v2/A,STSM,F,O,private -2006-063,2454097.1,2006-12-27,2006,Soyuz-2-1B,Fregat,COROT,STSM,F,O,private -2007-020,2454250.36,2007-05-29,2007,Soyuz-FG,Fregat,Globalstar,STSM,F,O,private -2007-048,2454394.34,2007-10-20,2007,Soyuz-FG,Fregat,Globalstar,STSM,F,O,private -2007-061,2454449.05,2007-12-14,2007,Soyuz-FG,Fregat,Radarsat-2,STSM,F,O,private -2008-020,2454583.43,2008-04-26,2008,Soyuz-FG,Fregat,Giove B,STSM,F,O,private -2006-057,2454084.38,2006-12-14,2006,Delta 7920-10C,,NROL-21,ULAB,US,O,private -2007-004,2454149.46,2007-02-17,2007,Delta 7925-10C,,THEMIS P5,ULAB,US,O,private -2007-023,2454259.61,2007-06-08,2007,Delta 7420-10C,,COSMO-Skymed,ULAB,US,O,private -2007-034,2454316.89,2007-08-04,2007,Delta 7925-9.5,,Phoenix Lander,ULAB,US,O,private -2007-041,2454362.27,2007-09-18,2007,Delta 7920-10C,,WorldView-1,ULAB,US,O,private -2007-043,2454370.98,2007-09-27,2007,Delta 7925H,,Dawn,ULAB,US,O,private -2007-047,2454391.02,2007-10-17,2007,Delta 7925-9.5,,Navstar GPS SVN 55,ULAB,US,O,private -2007-054,2454415.58,2007-11-11,2007,Delta 4H,,DSP F23,ULAB,US,O,private -2007-059,2454443.61,2007-12-09,2007,Delta 7420-10C,,COSMO-Skymed 2,ULAB,US,O,private -2007-062,2454455.34,2007-12-20,2007,Delta 7925-9.5,,Navstar GPS SVN 57,ULAB,US,O,private -2008-012,2454540.76,2008-03-15,2008,Delta 7925-9.5,,Navstar GPS SVN 48,ULAB,US,O,private -2008-029,2454629.17,2008-06-11,2008,Delta 7920H,,GLAST,ULAB,US,O,private -2008-032,2454637.82,2008-06-20,2008,Delta 7320-10C,,Jason-2,ULAB,US,O,private -2008-042,2454716.29,2008-09-06,2008,Delta 7420-10C,,GeoEye-1,ULAB,US,O,private -2008-054,2454764.6,2008-10-25,2008,Delta 7420-10C,,COSMO-Skymed 3,ULAB,US,O,private -2009-001,2454849.62,2009-01-18,2009,Delta 4H,,ORION 6,ULAB,US,O,private -2009-005,2454868.93,2009-02-06,2009,Delta 7320-10C,,NOAA N',ULAB,US,O,private -2009-011,2454897.66,2009-03-07,2009,Delta 7925-10L,,Kepler,ULAB,US,O,private -2009-014,2454914.86,2009-03-24,2009,Delta 7925-9.5,,Navstar GPS SVN 49,ULAB,US,O,private -2009-023,2454957.35,2009-05-05,2009,Delta 7920-10C,,STSS Adv Tech Risk Reduc,ULAB,US,O,private -2009-033,2455010.45,2009-06-27,2009,"Delta 4M+(4,2)",,GOES O,ULAB,US,O,private -2009-043,2455060.94,2009-08-17,2009,Delta 7925-9.5,,Navstar GPS SVN 50,ULAB,US,O,private -2009-052,2455100.01,2009-09-25,2009,Delta 7920-10C,,STSS 1,ULAB,US,O,private -2009-055,2455113.29,2009-10-08,2009,Delta 7920-10C,,WorldView-2,ULAB,US,O,private -2009-068,2455171.57,2009-12-06,2009,"Delta 4M+(5,4)",,Wideband Global Satcom 3,ULAB,US,O,private -2009-071,2455180.09,2009-12-14,2009,Delta 7320-10C,,Wide Field IR Explorer,ULAB,US,O,private -2010-008,2455260.5,2010-03-04,2010,"Delta 4M+(4,2)",,GOES P,ULAB,US,O,private -2010-022,2455344.62,2010-05-28,2010,"Delta 4M+(4,2)",,GPS SVN 62,ULAB,US,O,private -2010-060,2455506.6,2010-11-06,2010,Delta 7420-10C,,COSMO-Skymed 4,ULAB,US,O,private -2010-063,2455522.46,2010-11-21,2010,Delta 4H,,ORION 7,ULAB,US,O,private -2011-002,2455582.38,2011-01-20,2011,Delta 4H,,Improved CRYSTAL 2109?,ULAB,US,O,private -2011-011,2455632.48,2011-03-11,2011,"Delta 4M+(4,2)",,QUASAR 17?,ULAB,US,O,private -2011-024,2455723.1,2011-06-10,2011,Delta 7320-10C,,SAC-D,ULAB,US,O,private -2011-036,2455758.78,2011-07-16,2011,"Delta 4M+(4,2)",,GPS SVN 63,ULAB,US,O,private -2011-046,2455815.05,2011-09-10,2011,Delta 7920H,,GRAIL A,ULAB,US,O,private -2011-061,2455862.91,2011-10-28,2011,Delta 7920-10C,,NPOESS Prep Project,ULAB,US,O,private -2012-003,2455946.53,2012-01-20,2012,"Delta 4M+(5,4)",,Wideband Global Satcom 4,ULAB,US,O,private -2012-014,2456021.47,2012-04-03,2012,"Delta 4M+(5,2)",,TOPAZ 2?,ULAB,US,O,private -2012-034,2456108.05,2012-06-29,2012,Delta 4H,A,ORION 8,ULAB,US,O,private -2012-053,2456205.01,2012-10-04,2012,"Delta 4M+(4,2)",,GPS SVN 65,ULAB,US,O,private -2013-024,2456437.52,2013-05-25,2013,"Delta 4M+(5,4)",,Wideband Global Satcom 5,ULAB,US,O,private -2013-041,2456512.52,2013-08-08,2013,"Delta 4M+(5,4)",,Wideband Global Satcom 6,ULAB,US,O,private -2013-043,2456533.25,2013-08-28,2013,Delta 4H,,EIS CRYSTAL,ULAB,US,O,private -2014-008,2456709.58,2014-02-21,2014,"Delta 4M+(4,2)",,GPS SVN 64,ULAB,US,O,private -2014-026,2456794.5,2014-05-17,2014,"Delta 4M+(4,2)",,GPS SVN 67,ULAB,US,O,private -2014-035,2456840.91,2014-07-02,2014,Delta 7320-10C,,OCO-2,ULAB,US,O,private -2014-043,2456867.48,2014-07-28,2014,"Delta 4M+(4,2)",,GSSAP-1/2/ANGELS,ULAB,US,O,private -2014-077,2456997,2014-12-05,2014,Delta 4H,,Orion EFT-1,ULAB,US,O,private -2015-003,2457054.1,2015-01-31,2015,Delta 7320-10C,,SMAP,ULAB,US,O,private -2015-013,2457107.27,2015-03-25,2015,"Delta 4M+(4,2)",,GPS SVN 71,ULAB,US,O,private -2015-036,2457227.5,2015-07-24,2015,"Delta 4M+(5,4)",A,Wideband Global Satcom 7,ULAB,US,O,private -2016-010,2457428.99,2016-02-10,2016,"Delta 4M+(5,2)",A,TOPAZ 4,ULAB,US,O,private -2016-036,2457551.24,2016-06-11,2016,Delta 4H,A,ORION 10,ULAB,US,O,private -2016-052,2457619.7,2016-08-19,2016,"Delta 4M+(4,2)",A,GSSAP 3/4,ULAB,US,O,private -2016-075,2457730.49,2016-12-07,2016,"Delta 4M+(5,4)",A,Wideband Global Satcom 8,ULAB,US,O,private -2017-016,2457831.51,2017-03-19,2017,"Delta 4M+(5,4)",A,Wideband Global Satcom 9,ULAB,US,O,private -2017-073,2458075.91,2017-11-18,2017,Delta 7290-10C,,JPSS-1,ULAB,US,O,private -2018-005,2458131.42,2018-01-12,2018,"Delta 4M+(5,2)",A,TOPAZ 5?,ULAB,US,O,private -2018-065,2458342.81,2018-08-12,2018,Delta 4H/Star 48BV,,Solar Probe Plus,ULAB,US,O,private -2018-070,2458374.04,2018-09-12,2018,Delta 7420-10C,,ICESAT-2,ULAB,US,O,private -2007-006,2454168.63,2007-03-09,2007,Atlas V 401,,Orbital Express,ULAL,US,O,private -2007-027,2454267.13,2007-06-15,2007,Atlas V 401,,INTRUDER 8?,ULAL,US,O,private -2007-046,2454384.52,2007-10-11,2007,Atlas V 421,,Wideband Global Satcom 1,ULAL,US,O,private -2007-060,2454445.42,2007-12-10,2007,Atlas V 401,,QUASAR 15?,ULAL,US,O,private -2008-010,2454538.92,2008-03-13,2008,Atlas V 411,,Adv TRUMPET 2,ULAL,US,O,private -2008-016,2454571.34,2008-04-14,2008,Atlas V 421,,ICO G1,ULAL,US,O,private -2009-017,2454925.52,2009-04-04,2009,Atlas V 421,,Wideband Global Satcom 2,ULAL,US,O,private -2009-031,2455001.4,2009-06-18,2009,Atlas V 401,,LRO,ULAL,US,O,private -2009-047,2455083.4,2009-09-08,2009,Atlas V 401,,NEMESIS 1,ULAL,US,O,private -2009-057,2455123.18,2009-10-18,2009,Atlas V 401,,DMSP Block 5D-3 S-18,ULAL,US,O,private -2009-064,2455158.79,2009-11-23,2009,Atlas V 431,,IS-14,ULAL,US,O,private -2010-005,2455239.14,2010-02-11,2010,Atlas V 401,,SDO,ULAL,US,O,private -2010-015,2455309.49,2010-04-22,2010,Atlas V 501,,X-37B No. 1,ULAL,US,O,private -2010-039,2455422.96,2010-08-14,2010,Atlas V 531,,AEHF SV-1,ULAL,US,O,private -2010-046,2455460.67,2010-09-21,2010,Atlas V 501,,TOPAZ 1,ULAL,US,O,private -2011-010,2455626.45,2011-03-05,2011,Atlas V 501,,X-37B No. 2,ULAL,US,O,private -2011-014,2455666.68,2011-04-15,2011,Atlas V 411,,INTRUDER 9,ULAL,US,O,private -2011-019,2455689.26,2011-05-07,2011,Atlas V 401,,SBIRS GEO-1,ULAL,US,O,private -2011-040,2455779.18,2011-08-05,2011,Atlas V 551,,Juno,ULAL,US,O,private -2011-070,2455892.13,2011-11-26,2011,Atlas V 541,,Mars Science Lab Rover,ULAL,US,O,private -2012-009,2455982.43,2012-02-24,2012,Atlas V 551,,MUOS 1,ULAL,US,O,private -2012-019,2456052.28,2012-05-04,2012,Atlas V 531,,AEHF SV-2,ULAL,US,O,private -2012-033,2456099.02,2012-06-20,2012,Atlas V 401,,QUASAR 17?,ULAL,US,O,private -2012-046,2456169.84,2012-08-30,2012,Atlas V 401,,RBSP-A,ULAL,US,O,private -2012-048,2456184.4,2012-09-13,2012,Atlas V 401,,INTRUDER 10,ULAL,US,O,private -2012-071,2456273.25,2012-12-11,2012,Atlas V 501,,X-37B No. 1,ULAL,US,O,private -2013-004,2456323.58,2013-01-31,2013,Atlas V 401,,TDRS K,ULAL,US,O,private -2013-008,2456335.25,2013-02-11,2013,Atlas V 401,,Landsat LDCM,ULAL,US,O,private -2013-011,2456371.39,2013-03-19,2013,Atlas V 401,,SBIRS GEO-2,ULAL,US,O,private -2013-023,2456428.4,2013-05-15,2013,Atlas V 401,,GPS SVN 66,ULAL,US,O,private -2013-036,2456493.04,2013-07-19,2013,Atlas V 551,,MUOS 2,ULAL,US,O,private -2013-050,2456553.84,2013-09-18,2013,Atlas V 531,,AEHF 3,ULAL,US,O,private -2013-063,2456615.27,2013-11-18,2013,Atlas V 401,,MAVEN,ULAL,US,O,private -2013-072,2456632.8,2013-12-06,2013,Atlas V 501,,TOPAZ 3,ULAL,US,O,private -2014-004,2456681.61,2014-01-24,2014,Atlas V 401,,TDRS L,ULAL,US,O,private -2014-015,2456751.12,2014-04-03,2014,Atlas V 401,,DMSP 5D-13 F19,ULAL,US,O,private -2014-020,2456758.24,2014-04-10,2014,Atlas V 541,,ORION 9?,ULAL,US,O,private -2014-027,2456800.05,2014-05-22,2014,Atlas V 401,,QUASAR 18?,ULAL,US,O,private -2014-045,2456871.64,2014-08-02,2014,Atlas V 401,,GPS SVN 68,ULAL,US,O,private -2014-048,2456883.27,2014-08-13,2014,Atlas V 401,,Worldview-3,ULAL,US,O,private -2014-055,2456917.51,2014-09-17,2014,Atlas V 401,,CLIO,ULAL,US,O,private -2014-068,2456960.22,2014-10-29,2014,Atlas V 401,,GPS SVN 69,ULAL,US,O,private -2014-081,2457004.64,2014-12-13,2014,Atlas V 541,C,Adv TRUMPET 3?,ULAL,US,O,private -2015-002,2457043.54,2015-01-21,2015,Atlas V 551,C,MUOS 3,ULAL,US,O,private -2015-011,2457094.61,2015-03-13,2015,Atlas V 421,,MMS 1-4,ULAL,US,O,private -2015-025,2457163.13,2015-05-20,2015,Atlas V 501,C,X-37B No. 2?,ULAL,US,O,private -2015-033,2457219.15,2015-07-15,2015,Atlas V 401,C,GPS SVN 72,ULAL,US,O,private -2015-044,2457267.93,2015-09-02,2015,Atlas V 551,C,MUOS 4,ULAL,US,O,private -2015-056,2457297.94,2015-10-02,2015,Atlas V 421,C,Morelos 3,ULAL,US,O,private -2015-058,2457304.03,2015-10-08,2015,Atlas V 401,C,INTRUDER,ULAL,US,O,private -2015-062,2457327.18,2015-10-31,2015,Atlas V 401,C,GPS SVN 73,ULAL,US,O,private -2015-072,2457363.41,2015-12-06,2015,Atlas V 401,C,Cygnus OA-4,ULAL,US,O,private -2016-007,2457424.07,2016-02-05,2016,Atlas V 401,C,GPS SVN 70,ULAL,US,O,private -2016-019,2457470.63,2016-03-23,2016,Atlas V 401,C,Cygnus OA-6,ULAL,US,O,private -2016-041,2457564.1,2016-06-24,2016,Atlas V 551,C,MUOS 5,ULAL,US,O,private -2016-047,2457598.03,2016-07-28,2016,Atlas V 421,C,QUASAR 19?,ULAL,US,O,private -2016-055,2457640.46,2016-09-08,2016,Atlas V 411,C,OSIRIS-REx,ULAL,US,O,private -2016-067,2457704.27,2016-11-11,2016,Atlas V 401,C,WorldView-4,ULAL,US,O,private -2016-071,2457712.49,2016-11-19,2016,Atlas V 541,C,GOES R,ULAL,US,O,private -2016-079,2457741.3,2016-12-18,2016,Atlas V 431,C,Echostar 19 (Jupiter 2),ULAL,US,O,private -2017-004,2457774.53,2017-01-21,2017,Atlas V 401,C,SBIRS GEO-3,ULAL,US,O,private -2017-011,2457814.24,2017-03-01,2017,Atlas V 401,C,INTRUDER,ULAL,US,O,private -2017-019,2457862.13,2017-04-18,2017,Atlas V 401,C,Cygnus OA-7,ULAL,US,O,private -2017-047,2457984.02,2017-08-18,2017,Atlas V 401,C,TDRS M,ULAL,US,O,private -2017-056,2458020.74,2017-09-24,2017,Atlas V 541,C,Adv TRUMPET 4?,ULAL,US,O,private -2017-066,2458041.81,2017-10-15,2017,Atlas V 421,C,QUASAR 20?,ULAL,US,O,private -2018-009,2458138.53,2018-01-20,2018,Atlas V 411,C,SBIRS GEO-4,ULAL,US,O,private -2018-022,2458179.42,2018-03-01,2018,Atlas V 541,C,GOES S,ULAL,US,O,private -2018-036,2458223.47,2018-04-14,2018,Atlas V 551,C,CBAS/EAGLE,ULAL,US,O,private -2018-042,2458243.96,2018-05-05,2018,Atlas V 401,C,Mars Insight,ULAL,US,O,private -2018-079,2458408.68,2018-10-17,2018,Atlas V 551,C,AEHF 4,ULAL,US,O,private -1982-100,2445255.12,1982-10-12,1982,Proton-K/DM-2,,Uragan No. 11L,,SU,O,state -1982-001,2444977.15,1982-01-07,1982,Kosmos 11K65M,,Strela-2M,,SU,O,state -1982-101,2445256.88,1982-10-14,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-002,2444982.02,1982-01-12,1982,Soyuz-U,,Orion,,SU,O,state -1982-102,2445261.75,1982-10-19,1982,Kosmos 11K65M,,Parus,,SU,O,state -1982-003,2444983.83,1982-01-14,1982,Kosmos 11K65M,,Parus,,SU,O,state -1982-103,2445263.18,1982-10-20,1982,Proton-K/DM,,Gorizont No. 16L,,SU,O,state -1982-104,2445264.08,1982-10-21,1982,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1982-005,2444989.98,1982-01-20,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-007,2444998.96,1982-01-29,1982,Kosmos 11K65M,,Romb,,SU,O,state -1982-107,2445273.97,1982-10-31,1982,Soyuz-U,,Progress 7K-TG No. 115,,SU,O,state -1982-008,2444999.98,1982-01-30,1982,Soyuz-U,,Feniks No. 953,,SU,O,state -1982-108,2445275.9,1982-11-02,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-009,2445005.88,1982-02-05,1982,Proton-K/DM,,Ekran No. 22L,,SU,O,state -1982-109,2445284.76,1982-11-11,1982,Kosmos 11K65M,,Strela-2M,,SU,O,state -1982-010,2445011.55,1982-02-11,1982,Tsiklon-2,,US-PM1,,SU,O,state -1982-011,2445016.97,1982-02-16,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-012,2445018.41,1982-02-17,1982,Kosmos 11K65M,,Tsikada,,SU,O,state -1982-112,2445291.89,1982-11-18,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-013,2445019.57,1982-02-19,1982,Vostok 8A92M,,Tselina-D,,SU,O,state -1982-113,2445300.09,1982-11-26,1982,Proton-K/DM,,Gran' No. 21L,,SU,O,state -1982-114,2445307,1982-12-03,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-015,2445027.34,1982-02-26,1982,Molniya 8K78M,,Molniya-1,,SU,O,state -1982-115,2445312.07,1982-12-08,1982,Molniya 8K78M,,Molniya-1 11F658 No. 60,,SU,O,state -1982-016,2445031.74,1982-03-03,1982,Molniya 8K78M,,Oko,,SU,O,state -1982-116,2445318.44,1982-12-14,1982,Vostok 8A92M,,Meteor-2 No. 9,,SU,O,state -1982-117,2445319.92,1982-12-16,1982,Soyuz-U,,Oktan No. 217,,SU,O,state -1982-018,2445033.95,1982-03-05,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-119,2445326.88,1982-12-23,1982,Soyuz-U2,,Zenit-6,,SU,O,state -1982-020,2445043.69,1982-03-15,1982,Proton-K/DM,,Gorizont No. 14L,,SU,O,state -1982-120,2445332,1982-12-28,1982,Soyuz-U,,Yantar'-4KS1,,SU,O,state -1982-021,2445045.94,1982-03-17,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-121,2445333,1982-12-29,1982,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1982-023,2445052.51,1982-03-24,1982,Molniya 8K78M,,Molniya-3 No. 29,,SU,O,state -1982-024,2445053.32,1982-03-24,1982,Kosmos 11K65M,,Parus,,SU,O,state -1982-025,2445053.91,1982-03-25,1982,Tsiklon-3,,Meteor-2 No. 12,,SU,O,state -1982-026,2445059.88,1982-03-31,1982,Kosmos 11K65M,,Tselina-OM,,SU,O,state -1982-027,2445060.19,1982-03-31,1982,Vostok 8A92M,,Tselina-D,,SU,O,state -1982-028,2445061.93,1982-04-02,1982,Soyuz-U,,Yantar'-4K2,,SU,O,state -1982-029,2445067.07,1982-04-07,1982,Molniya 8K78M,,Oko,,SU,O,state -1982-030,2445067.51,1982-04-08,1982,Kosmos 11K65M,,Parus,,SU,O,state -1982-032,2445075.1,1982-04-15,1982,Soyuz-U,,Feniks No. 978,,SU,O,state -1982-033,2445079.32,1982-04-19,1982,Proton-K,,DOS 6 (17K No. 125-02),,SU,O,state -1982-034,2445080.57,1982-04-21,1982,Kosmos 11K65M,,Romb,,SU,O,state -1982-035,2445080.89,1982-04-21,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-036,2445082.9,1982-04-23,1982,Soyuz-U,,Fram,,SU,O,state -1982-037,2445087.62,1982-04-28,1982,Kosmos 11K65M,,Strela-2M,,SU,O,state -1982-038,2445088.91,1982-04-29,1982,Tsiklon-2,,US-PM1,,SU,O,state -1982-039,2445094.83,1982-05-05,1982,Vostok 8A92M,,Tselina-D,,SU,O,state -1982-040,2445096.25,1982-05-06,1982,Kosmos 11K65M,,Strela-1M,,SU,O,state -1982-042,2445102.92,1982-05-13,1982,Soyuz-U,,Soyuz 7K-ST No. 11L,,SU,O,state -1982-043,2445104.32,1982-05-14,1982,Tsiklon-2,,US-A reactor,,SU,O,state -1982-044,2445107.49,1982-05-17,1982,Proton-K/DM,,Geizer No. 11L,,SU,O,state -1982-045,2445110.05,1982-05-20,1982,Molniya 8K78M,,Oko,,SU,O,state -1982-046,2445111.03,1982-05-21,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-047,2445112.75,1982-05-23,1982,Soyuz-U,,Progress 7K-TG No. 114,,SU,O,state -1982-048,2445114.88,1982-05-25,1982,Soyuz-U,,Resurs-F1 17F41 No. 17,,SU,O,state -1982-049,2445117.88,1982-05-28,1982,Soyuz-U,,Siluet No. 2,,SU,O,state -1982-050,2445118.42,1982-05-28,1982,Molniya 8K78M,,Molniya-1,,SU,O,state -1982-051,2445121.69,1982-06-01,1982,Kosmos 11K65M,,Strela-2M,,SU,O,state -1982-052,2445122.08,1982-06-01,1982,Tsiklon-2,,US-A reactor,,SU,O,state -1982-053,2445123.03,1982-06-02,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-054,2445124.4,1982-06-03,1982,K65M-RB,,BOR-4 No. 404,,SU,O,state -1982-055,2445127.22,1982-06-06,1982,Kosmos 11K65M,,Lira,,SU,O,state -1982-056,2445128.82,1982-06-08,1982,Soyuz-U,,Resurs-F1 17F41 No. 18,,SU,O,state -1982-057,2445129,1982-06-08,1982,Soyuz-U,,Oktan No. 215,,SU,O,state -1982-059,2445131.23,1982-06-10,1982,Tsiklon-3,,Tselina-D,,SU,O,state -1982-060,2445138.96,1982-06-18,1982,Tsiklon-2,,IS-P Uran,,SU,O,state -1982-061,2445139,1982-06-18,1982,Kosmos 11K65M,,Parus,,SU,O,state -1982-062,2445139.04,1982-06-18,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-063,2445145.19,1982-06-24,1982,Soyuz-U,,Soyuz 7K-ST No. 9L,,SU,O,state -1982-064,2445145.6,1982-06-25,1982,Molniya 8K78M,,Oko,,SU,O,state -1982-066,2445150.41,1982-06-29,1982,Kosmos 11K65M,,Nadezhda 11F643N No. 514,,SU,O,state -1982-067,2445151.12,1982-06-30,1982,Soyuz-U,,Feniks No. 954,,SU,O,state -1982-068,2445156.83,1982-07-06,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-069,2445157.91,1982-07-07,1982,Kosmos 11K65M,,Parus,,SU,O,state -1982-070,2445160.92,1982-07-10,1982,Soyuz-U,,Progress 7K-TG No. 117,,SU,O,state -1982-071,2445163.83,1982-07-13,1982,Soyuz-U,,Fram,,SU,O,state -1982-073,2445171.77,1982-07-21,1982,Kosmos 11K65M,,Strela-1M,,SU,O,state -1982-074,2445171.9,1982-07-21,1982,Molniya 8K78M,,Molniya-1 11F658 No. 62,,SU,O,state -1982-075,2445178.02,1982-07-27,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-076,2445180.32,1982-07-29,1982,Kosmos 11K65M,,Romb,,SU,O,state -1982-077,2445184.98,1982-08-03,1982,Soyuz-U,,Orion,,SU,O,state -1982-078,2445185.98,1982-08-04,1982,Soyuz-U,,Oktan No. 216,,SU,O,state -1982-079,2445186.79,1982-08-05,1982,Vostok 8A92M,,Tselina-D,,SU,O,state -1982-080,2445201.22,1982-08-19,1982,Soyuz-U,,Soyuz 7K-ST No. 12L,,SU,O,state -1982-081,2445201.91,1982-08-20,1982,Soyuz-U,,Resurs-F1 17F41 No. 19,,SU,O,state -1982-083,2445208.5,1982-08-27,1982,Molniya 8K78M,,Molniya-3 No. 33,,SU,O,state -1982-084,2445211.92,1982-08-30,1982,Tsiklon-2,,US-A,,SU,O,state -1982-085,2445213.88,1982-09-01,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-086,2445213.99,1982-09-01,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-088,2445217.24,1982-09-04,1982,Tsiklon-2,,US-P,,SU,O,state -1982-089,2445220.93,1982-09-08,1982,Soyuz-U,,Fram,,SU,O,state -1982-091,2445228.15,1982-09-15,1982,Soyuz-U,,Feniks No. 955,,SU,O,state -1982-092,2445228.7,1982-09-16,1982,Tsiklon-3,,Tselina-D,,SU,O,state -1982-093,2445229.27,1982-09-16,1982,Proton-K/DM,,Ekran No. 24L,,SU,O,state -1982-094,2445230.71,1982-09-18,1982,Soyuz-U,,Progress 7K-TG No. 112,,SU,O,state -1982-095,2445234.77,1982-09-22,1982,Molniya 8K78M,,Oko,,SU,O,state -1982-096,2445236.89,1982-09-24,1982,Tsiklon-3,,Musson No. 13,,SU,O,state -1982-098,2445242.99,1982-09-30,1982,Soyuz-U,,Zenit-6,,SU,O,state -1982-099,2445244.5,1982-10-02,1982,Tsiklon-2,,US-A reactor,,SU,O,state -1983-100,2445607.23,1983-09-29,1983,Proton-K/DM,,Ekran No. 25L,,SU,O,state -1983-001,2445347.08,1983-01-12,1983,Kosmos 11K65M,,Parus,,SU,O,state -1983-101,2445607.96,1983-09-30,1983,Kosmos 11K65M,,Romb,,SU,O,state -1983-002,2445353.6,1983-01-19,1983,Kosmos 11K65M,,Strela-1M,,SU,O,state -1983-102,2445613,1983-10-05,1983,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1983-003,2445355.23,1983-01-20,1983,Vostok 8A92M,,Tselina-D,,SU,O,state -1983-103,2445619.51,1983-10-12,1983,Kosmos 11K65M,,Strela-2M,,SU,O,state -1983-104,2445621.92,1983-10-14,1983,Soyuz-U,,Yantar'-4K2,,SU,O,state -1983-005,2445361.85,1983-01-27,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-106,2445627.92,1983-10-20,1983,Soyuz-U,,Progress 7K-TG No. 118,,SU,O,state -1983-007,2445371.98,1983-02-06,1983,Soyuz-U,,Feniks No. 956,,SU,O,state -1983-107,2445629.01,1983-10-21,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-108,2445634.22,1983-10-26,1983,Kosmos 11K65M,,Tsikada,,SU,O,state -1983-009,2445375.8,1983-02-10,1983,Soyuz-U,,Resurs-F1 17F41 No. 20,,SU,O,state -1983-109,2445635.88,1983-10-28,1983,Vostok 8A92M,,Meteor-2 No. 10,,SU,O,state -1983-010,2445381.92,1983-02-16,1983,Vostok 8A92M,,Tselina-D,,SU,O,state -1983-110,2445636.85,1983-10-29,1983,Tsiklon-2,,US-PM1,,SU,O,state -1983-111,2445650.02,1983-11-11,1983,Kosmos 11K65M,,Vektor,,SU,O,state -1983-012,2445391.03,1983-02-25,1983,Soyuz-U,,Oktan No. 248,,SU,O,state -1983-112,2445656.01,1983-11-17,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-013,2445395.9,1983-03-02,1983,Proton-K,,TKS-M No. 16401,,SU,O,state -1983-014,2445395.95,1983-03-02,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-114,2445662.2,1983-11-23,1983,Molniya 8K78M,ML,Molniya-1!No. 48,,SU,O,state -1983-015,2445405.15,1983-03-11,1983,Molniya 8K78M,ML,Molniya-3 No. 34,,SU,O,state -1983-115,2445663.02,1983-11-24,1983,Tsiklon-3,,Musson No. 14,,SU,O,state -1983-016,2445406.08,1983-03-12,1983,Proton-K/DM,,Ekran No. 18L,,SU,O,state -1983-017,2445409.44,1983-03-15,1983,K65M-RB,,BOR-4 No. 403,,SU,O,state -1983-117,2445669.07,1983-11-30,1983,Soyuz-U,,Oktan No. 249,,SU,O,state -1983-018,2445409.87,1983-03-16,1983,Soyuz-U2,,Zenit-6,,SU,O,state -1983-118,2445669.08,1983-11-30,1983,Proton-K/DM,,Gorizont No. 18L,,SU,O,state -1983-019,2445410.26,1983-03-16,1983,Molniya 8K78M,ML,Molniya-1,,SU,O,state -1983-119,2445676.01,1983-12-07,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-020,2445417.03,1983-03-23,1983,Proton-K/D-1,,1A No. 602,,SU,O,state -1983-120,2445676.76,1983-12-08,1983,Kosmos 11K65M,,Parus,,SU,O,state -1983-021,2445418.37,1983-03-24,1983,Kosmos 11K65M,,Nadezhda 11F643N No. 530,,SU,O,state -1983-121,2445682.79,1983-12-14,1983,Soyuz-U,,Bion No. 6,,SU,O,state -1983-122,2445684.02,1983-12-15,1983,Tsiklon-3,,Tselina-D,,SU,O,state -1983-023,2445423.55,1983-03-30,1983,Kosmos 11K65M,,Parus,,SU,O,state -1983-123,2445689.76,1983-12-21,1983,Molniya 8K78M,ML,Molniya-3 No. 35,,SU,O,state -1983-024,2445424.95,1983-03-31,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-124,2445695.9,1983-12-27,1983,Soyuz-U,,Siluet No. 3,,SU,O,state -1983-025,2445426.58,1983-04-02,1983,Molniya 8K78M,ML,Molniya-1 11F658T No. 68,,SU,O,state -1983-125,2445695.92,1983-12-27,1983,K65M-RB,,BOR-4 No. 405,,SU,O,state -1983-126,2445696.66,1983-12-28,1983,Molniya 8K78M,2BL,Oko,,SU,O,state -1983-027,2445431,1983-04-06,1983,Kosmos 11K65M,,Vektor,,SU,O,state -1983-127,2445697.54,1983-12-29,1983,Proton-K/DM-2,,Uragan No. 14L,,SU,O,state -1983-028,2445432.7,1983-04-08,1983,Proton-K/DM,,Gran' No. 23L,,SU,O,state -1983-029,2445432.85,1983-04-08,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-031,2445437.26,1983-04-12,1983,Kosmos 11K65M,,Strela-2M,,SU,O,state -1983-034,2445444,1983-04-19,1983,Kosmos 11K65M,,Romb,,SU,O,state -1983-035,2445445.05,1983-04-20,1983,Soyuz-U,,Soyuz 7K-ST No. 13L,,SU,O,state -1983-036,2445447.1,1983-04-22,1983,Soyuz-U,,Feniks No. 957,,SU,O,state -1983-037,2445448.1,1983-04-23,1983,Tsiklon-3,,Tselina-D,,SU,O,state -1983-038,2445450.32,1983-04-25,1983,Molniya 8K78M,2BL,Oko,,SU,O,state -1983-039,2445450.92,1983-04-26,1983,Soyuz-U,,Oktan No. 214,,SU,O,state -1983-040,2445452.85,1983-04-28,1983,Soyuz-U,,Fram,,SU,O,state -1983-042,2445460.62,1983-05-06,1983,Kosmos 11K65M,,Parus,,SU,O,state -1983-043,2445460.88,1983-05-06,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-044,2445461.94,1983-05-07,1983,Tsiklon-2,,US-P,,SU,O,state -1983-045,2445471.83,1983-05-17,1983,Soyuz-U,,Resurs-F1 17F41 No. 21,,SU,O,state -1983-046,2445474,1983-05-19,1983,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1983-048,2445478.62,1983-05-24,1983,Kosmos 11K65M,,Parus,,SU,O,state -1983-049,2445480.71,1983-05-26,1983,Kosmos 11K65M,,Romb,,SU,O,state -1983-050,2445481,1983-05-26,1983,Soyuz-U,,Oktan No. 250,,SU,O,state -1983-052,2445485.99,1983-05-31,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-053,2445487.61,1983-06-02,1983,Proton-K/D-1,,4V-2 No. 860,,SU,O,state -1983-054,2445492.61,1983-06-07,1983,Proton-K/D-1,,4V-2 No. 861,,SU,O,state -1983-055,2445492.83,1983-06-07,1983,Soyuz-U,,Resurs-F1 17F41 No. 22,,SU,O,state -1983-057,2445500.01,1983-06-14,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-061,2445508.5,1983-06-22,1983,Tsiklon-3,,Tselina-D,,SU,O,state -1983-062,2445512.88,1983-06-27,1983,Soyuz-U,,Soyuz 7K-ST No. 14L,,SU,O,state -1983-064,2445514.12,1983-06-28,1983,Soyuz-U,,Feniks No. 958,,SU,O,state -1983-066,2445516.5,1983-06-30,1983,Proton-K/DM,,Gorizont No. 17L,,SU,O,state -1983-067,2445517.01,1983-07-01,1983,Molniya 8K78M,SOL,SO-M No. 509,,SU,O,state -1983-068,2445520.83,1983-07-05,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-069,2445521.52,1983-07-06,1983,Kosmos 11K65M,,Strela-1M,,SU,O,state -1983-070,2445524.31,1983-07-08,1983,Molniya 8K78M,2BL,Oko,,SU,O,state -1983-071,2445528.9,1983-07-13,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-073,2445535.13,1983-07-19,1983,Molniya 8K78M,ML,Molniya-1 11F658 No. 66,,SU,O,state -1983-074,2445535.83,1983-07-20,1983,Soyuz-U,,Resurs-F1 17F41 No. 23,,SU,O,state -1983-075,2445539.74,1983-07-24,1983,Vostok 8A92M,,Resurs-OE No. 3-2,,SU,O,state -1983-076,2445542,1983-07-26,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-079,2445550.03,1983-08-03,1983,Kosmos 11K65M,,Strela-2M,,SU,O,state -1983-080,2445551.89,1983-08-05,1983,Soyuz-U,,Resurs-F1 17F41 No. 25,,SU,O,state -1983-082,2445555.97,1983-08-09,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-083,2445557.04,1983-08-10,1983,Soyuz-U,,Oktan No. 252,,SU,O,state -1983-084,2445557.27,1983-08-10,1983,Proton-K/DM-2,,Uragan No. 12L,,SU,O,state -1983-085,2445564.01,1983-08-17,1983,Soyuz-U,,Progress 7K-TG No. 119,,SU,O,state -1983-087,2445569.96,1983-08-23,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-088,2445572.33,1983-08-25,1983,Proton-K/DM,,Gran' No. 24L,,SU,O,state -1983-090,2445577.45,1983-08-30,1983,Molniya 8K78M,ML,Molniya-3 No. 32,,SU,O,state -1983-091,2445577.77,1983-08-31,1983,Kosmos 11K65M,,Romb,,SU,O,state -1983-092,2445580.93,1983-09-03,1983,Soyuz-U,,Fram,,SU,O,state -1983-093,2445585.06,1983-09-07,1983,Soyuz-U,,Oktan No. 251,,SU,O,state -1983-095,2445586.96,1983-09-09,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-096,2445591.93,1983-09-14,1983,Soyuz-U,,Resurs-F1 17F41 No. 24,,SU,O,state -1983-097,2445594.97,1983-09-17,1983,Soyuz-U,,Zenit-6,,SU,O,state -1983-099,2445605.83,1983-09-28,1983,Tsiklon-3,,Okean-OE NKhM No. 1,,SU,O,state -1984-100,2445957.16,1984-09-13,1984,Kosmos 11K65M,,Parus,,SU,O,state -1984-001,2445705.34,1984-01-05,1984,Kosmos 11K65M,,Strela-1M,,SU,O,state -1984-002,2445711.01,1984-01-11,1984,Soyuz-U,,Zenit-6,,SU,O,state -1984-102,2445969.1,1984-09-25,1984,Soyuz-U,,Kobal't,,SU,O,state -1984-003,2445711.26,1984-01-11,1984,Kosmos 11K65M,,Parus,,SU,O,state -1984-103,2445970.84,1984-09-27,1984,Soyuz-U,,Oblik,,SU,O,state -1984-004,2445713.11,1984-01-13,1984,Soyuz-U,,Kobal't,,SU,O,state -1984-104,2445970.9,1984-09-27,1984,Kosmos 11K65M,,Romb,,SU,O,state -1984-105,2445971.75,1984-09-28,1984,Tsiklon-3,,Okean-OE NKhM No. 2,,SU,O,state -1984-006,2445725.87,1984-01-26,1984,Soyuz-U2,,Zenit-6,,SU,O,state -1984-106,2445972.08,1984-09-28,1984,Proton-K/DM-2,,Tselina-2,,SU,O,state -1984-007,2445726,1984-01-26,1984,Kosmos 11K65M,,Vektor,,SU,O,state -1984-107,2445978.33,1984-10-04,1984,Molniya 8K78M,2BL,Oko,,SU,O,state -1984-109,2445985.11,1984-10-11,1984,Kosmos 11K65M,,Parus,,SU,O,state -1984-010,2445733.23,1984-02-02,1984,Kosmos 11K65M,,Parus,,SU,O,state -1984-111,2445992.24,1984-10-18,1984,Tsiklon-3,,Tselina-D,,SU,O,state -1984-112,2446005.02,1984-10-31,1984,Tsiklon-2,,US-A reactor,,SU,O,state -1984-013,2445738.89,1984-02-08,1984,Tsiklon-3,,Tselina-D,,SU,O,state -1984-014,2445739.01,1984-02-08,1984,Soyuz-U,,Soyuz 7K-ST No. 15L,,SU,O,state -1984-016,2445745.87,1984-02-15,1984,Proton-K/DM,,Gran' No. 25L,,SU,O,state -1984-116,2446018.82,1984-11-14,1984,Soyuz-U,,Siluet No. 4,,SU,O,state -1984-017,2445746.84,1984-02-16,1984,Soyuz-U,,Resurs-F1 17F41 No. 27,,SU,O,state -1984-117,2446019.01,1984-11-14,1984,Soyuz-U,,Oblik,,SU,O,state -1984-018,2445751.78,1984-02-21,1984,Soyuz-U,,Progress 7K-TG No. 120,,SU,O,state -1984-118,2446019.78,1984-11-15,1984,Kosmos 11K65M,,Parus,,SU,O,state -1984-019,2445752.15,1984-02-21,1984,Kosmos 11K65M,,Strela-2M,,SU,O,state -1984-119,2446025.94,1984-11-21,1984,Soyuz-U,,Kobal't,,SU,O,state -1984-020,2445759.08,1984-02-28,1984,Soyuz-U,,Kobal't,,SU,O,state -1984-120,2446032.1,1984-11-27,1984,Tsiklon-3,,Meteor-3 No. 1,,SU,O,state -1984-121,2446034.08,1984-11-29,1984,Soyuz-U-PVB,,Oblik,,SU,O,state -1984-022,2445761.66,1984-03-02,1984,Proton-K/DM,,Geizer No. 12L,,SU,O,state -1984-024,2445766.22,1984-03-06,1984,Molniya 8K78M,ML,Oko,,SU,O,state -1984-124,2446049.36,1984-12-14,1984,Molniya 8K78M,ML,Molniya-1!No. 55,,SU,O,state -1984-025,2445766.83,1984-03-07,1984,Soyuz-U2,,Zenit-6,,SU,O,state -1984-125,2446049.89,1984-12-15,1984,Proton-K/D-1,,5VK No. 901,,SU,O,state -1984-026,2445770.21,1984-03-10,1984,Soyuz-U,,Efir No. 1,,SU,O,state -1984-126,2446053.66,1984-12-19,1984,K65M-RB,,BOR-4 No. 406,,SU,O,state -1984-027,2445775.21,1984-03-15,1984,Tsiklon-3,,Tselina-D,,SU,O,state -1984-127,2446055.04,1984-12-20,1984,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1984-028,2445776.08,1984-03-16,1984,Proton-K/DM,,Ekran No. 26L,,SU,O,state -1984-128,2446055.88,1984-12-21,1984,Proton-K/D-1,,5VK No. 902,,SU,O,state -1984-029,2445776.48,1984-03-16,1984,Molniya 8K78M,2BL,Molniya-1!No. 51,,SU,O,state -1984-030,2445780.96,1984-03-21,1984,Soyuz-U-PVB,,Zenit-6,,SU,O,state -1984-031,2445788.75,1984-03-29,1984,Proton-K/DM,,Oko-S F1,,SU,O,state -1984-032,2445794.05,1984-04-03,1984,Soyuz-U,,Soyuz 7K-ST No. 17L,,SU,O,state -1984-033,2445794.57,1984-04-04,1984,Molniya 8K78M,2BL,Oko,,SU,O,state -1984-036,2445801.08,1984-04-10,1984,Soyuz-U,,Kobal't,,SU,O,state -1984-038,2445805.84,1984-04-15,1984,Soyuz-U2,,Progress 7K-TG No. 121,,SU,O,state -1984-040,2445809.99,1984-04-19,1984,Soyuz-U,,Zenit-6,,SU,O,state -1984-041,2445812.68,1984-04-22,1984,Proton-K/DM,,Gorizont No. 19L,,SU,O,state -1984-042,2445828.45,1984-05-07,1984,Soyuz-U,,Progress 7K-TG No. 116,,SU,O,state -1984-043,2445831.76,1984-05-11,1984,Kosmos 11K65M,,Parus,,SU,O,state -1984-044,2445832.04,1984-05-11,1984,Soyuz-U,,Zenit-6,,SU,O,state -1984-045,2445835.08,1984-05-14,1984,Soyuz-U,,Yantar'-4KS1,,SU,O,state -1984-046,2445838.11,1984-05-17,1984,Kosmos 11K65M,,Tsikada,,SU,O,state -1984-047,2445840.13,1984-05-19,1984,Proton-K/DM-2,,Uragan No. 16L,,SU,O,state -1984-048,2445842.85,1984-05-22,1984,Soyuz-U,,Fram,,SU,O,state -1984-050,2445845.98,1984-05-25,1984,Soyuz-U,,Kobal't,,SU,O,state -1984-051,2445849.09,1984-05-28,1984,Soyuz-U,,Progress 7K-TG No. 122,,SU,O,state -1984-052,2445849.41,1984-05-28,1984,Kosmos 11K65M,,Strela-1M,,SU,O,state -1984-053,2445851.28,1984-05-30,1984,Tsiklon-2,,US-PM1,,SU,O,state -1984-054,2445853.08,1984-06-01,1984,Soyuz-U,,Zenit-6,,SU,O,state -1984-055,2445858.15,1984-06-06,1984,Molniya 8K78M,2BL,Oko,,SU,O,state -1984-056,2445859.98,1984-06-08,1984,Kosmos 11K65M,,Strela-2M,,SU,O,state -1984-058,2445862.86,1984-06-11,1984,Soyuz-U,,Oblik,,SU,O,state -1984-060,2445866.85,1984-06-15,1984,Soyuz-U,,Resurs-F1 17F41 No. 26,,SU,O,state -1984-061,2445870.95,1984-06-19,1984,Soyuz-U,,Zenit-6,,SU,O,state -1984-062,2445873.32,1984-06-21,1984,Kosmos 11K65M,,Nadezhda 11F643N No. 531,,SU,O,state -1984-063,2445873.51,1984-06-22,1984,Proton-K/DM,,Gran' No. 27L,,SU,O,state -1984-064,2445873.82,1984-06-22,1984,Soyuz-U,,Resurs-F1 17F41 No. 48,,SU,O,state -1984-066,2445878.15,1984-06-26,1984,Soyuz-U,,Kobal't,,SU,O,state -1984-067,2445878.71,1984-06-27,1984,Kosmos 11K65M,,Parus,,SU,O,state -1984-068,2445880.05,1984-06-28,1984,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1984-069,2445880.51,1984-06-29,1984,Tsiklon-2,,US-A reactor,,SU,O,state -1984-070,2445881.12,1984-06-29,1984,Soyuz-U,,Oblik No. 793,,SU,O,state -1984-071,2445885.4,1984-07-03,1984,Molniya 8K78M,2BL,Oko,,SU,O,state -1984-072,2445886.65,1984-07-05,1984,Tsiklon-3,,Meteor-2 No. 16,,SU,O,state -1984-073,2445899.24,1984-07-17,1984,Soyuz-U2,,Soyuz 7K-ST No. 18L,,SU,O,state -1984-074,2445900.85,1984-07-19,1984,Soyuz-U,,Resurs-F1 17F41 No. 49,,SU,O,state -1984-075,2445906.03,1984-07-24,1984,Soyuz-U,,Oblik,,SU,O,state -1984-076,2445908.87,1984-07-27,1984,Soyuz-U,,Oblik (Priroda),,SU,O,state -1984-077,2445913.02,1984-07-31,1984,Soyuz-U,,Kobal't,,SU,O,state -1984-078,2445914.4,1984-08-01,1984,Proton-K/DM,,Gorizont No. 20L,,SU,O,state -1984-079,2445914.86,1984-08-02,1984,Molniya 8K78M,2BL,Oko,,SU,O,state -1984-082,2445919.08,1984-08-06,1984,Soyuz-U,,Oblik,,SU,O,state -1984-083,2445920.45,1984-08-07,1984,Tsiklon-2,,US-PM1,,SU,O,state -1984-084,2445921.01,1984-08-08,1984,Tsiklon-3,,Musson No. 15,,SU,O,state -1984-085,2445922.5,1984-08-10,1984,Molniya 8K78M,ML,Molniya-1!No. 53,,SU,O,state -1984-086,2445926.77,1984-08-14,1984,Soyuz-U,,Progress 7K-TG No. 124,,SU,O,state -1984-087,2445928.91,1984-08-16,1984,Soyuz-U,,Resurs-F1 17F41 No. 50,,SU,O,state -1984-089,2445936.85,1984-08-24,1984,Molniya 8K78M,ML,Molniya-1!No. 54,,SU,O,state -1984-090,2445937.33,1984-08-24,1984,Proton-K/DM,,Ekran No. 27L,,SU,O,state -1984-092,2445942.92,1984-08-30,1984,Soyuz-U,,Resurs-F1 17F41 No. 51,,SU,O,state -1984-094,2445947.93,1984-09-04,1984,Soyuz-U,,Oblik,,SU,O,state -1984-095,2445948.16,1984-09-04,1984,Proton-K/DM-2,,Uragan No. 18L,,SU,O,state -1984-096,2445951.3,1984-09-07,1984,Molniya 8K78M,2BL,Oko,,SU,O,state -1984-099,2445956.93,1984-09-13,1984,Soyuz-U,,Fram,,SU,O,state -1985-100,2446362.6,1985-10-24,1985,Tsiklon-3,,Meteor-3 No. 2,,SU,O,state -1985-101,2446364.11,1985-10-25,1985,Soyuz-U,,Kobal't,,SU,O,state -1985-002,2446074.95,1985-01-09,1985,Soyuz-U,,Kobal't,,SU,O,state -1985-102,2446364.16,1985-10-25,1985,Proton-K/DM-2,,Al'tair No. 11L,,SU,O,state -1985-003,2446081.12,1985-01-15,1985,Tsiklon-3,,Strela-3,,SU,O,state -1985-103,2446367.23,1985-10-28,1985,Molniya 8K78M,ML,Molniya-1!No. 56,,SU,O,state -1985-004,2446081.77,1985-01-16,1985,Molniya 8K78M,ML,Molniya-3 No. 36,,SU,O,state -1985-005,2446081.85,1985-01-16,1985,Soyuz-U,,Oblik,,SU,O,state -1985-105,2446378.85,1985-11-09,1985,Molniya 8K78M,2BL,Oko,,SU,O,state -1985-006,2446083.24,1985-01-17,1985,Kosmos 11K65M,,Strela-2M,,SU,O,state -1985-106,2446383.02,1985-11-13,1985,Soyuz-U,,Oblik,,SU,O,state -1985-007,2446083.93,1985-01-18,1985,Proton-K/DM,,Gorizont No. 21L,,SU,O,state -1985-107,2446385.1,1985-11-15,1985,Proton-K/DM,,Gran' No. 28L,,SU,O,state -1985-008,2446089.33,1985-01-23,1985,Tsiklon-2,,US-PM,,SU,O,state -1985-108,2446392.43,1985-11-22,1985,Tsiklon-3,,Tselina-D,,SU,O,state -1985-009,2446090.2,1985-01-24,1985,Tsiklon-3,,Tselina-D,,SU,O,state -1985-110,2446398.05,1985-11-28,1985,Kosmos 11K65M,,Parus,,SU,O,state -1985-011,2446098.32,1985-02-01,1985,Kosmos 11K65M,,Parus,,SU,O,state -1985-111,2446403.01,1985-12-03,1985,Soyuz-U,,Oblik,,SU,O,state -1985-012,2446102.96,1985-02-06,1985,Soyuz-U,,Oblik,,SU,O,state -1985-112,2446411.11,1985-12-11,1985,Soyuz-U,,Kobal't,,SU,O,state -1985-013,2446103.41,1985-02-06,1985,Tsiklon-3,,Meteor-2 No. 13,,SU,O,state -1985-113,2446412.16,1985-12-12,1985,Tsiklon-3,,Tselina-D,,SU,O,state -1985-115,2446412.82,1985-12-13,1985,Soyuz-U,,Resurs-F1 17F41 No. 56,,SU,O,state -1985-016,2446117.83,1985-02-21,1985,Proton-K/DM,,Oko-S F2,,SU,O,state -1985-116,2446418.87,1985-12-19,1985,Kosmos 11K65M,,Parus,,SU,O,state -1985-017,2446123.97,1985-02-27,1985,Soyuz-U,,Kobal't,,SU,O,state -1985-117,2446424.29,1985-12-24,1985,Molniya 8K78M,ML,Molniya-3 No. 40,,SU,O,state -1985-018,2446124.04,1985-02-27,1985,Kosmos 11K65M,,Vektor,,SU,O,state -1985-118,2446424.41,1985-12-24,1985,Proton-K/DM-2,,Uragan No. 22L,,SU,O,state -1985-019,2446125.94,1985-03-01,1985,Soyuz-U,,Oblik,,SU,O,state -1985-119,2446425.58,1985-12-26,1985,Tsiklon-3,,Meteor-2 No. 14,,SU,O,state -1985-020,2446130.15,1985-03-05,1985,Tsiklon-3,,Tselina-D,,SU,O,state -1985-120,2446427.21,1985-12-27,1985,Soyuz-U,,Efir No. 2,,SU,O,state -1985-121,2446427.89,1985-12-28,1985,Zenit-2,,Tselina-2 No. 3L,,SU,O,state -1985-022,2446138.55,1985-03-14,1985,Kosmos 11K65M,,Parus,,SU,O,state -1985-023,2446145.51,1985-03-21,1985,Kosmos 11K65M,,Strela-1M,,SU,O,state -1985-024,2446146.71,1985-03-22,1985,Proton-K/DM,,Ekran No. 28L,,SU,O,state -1985-026,2446149.92,1985-03-25,1985,Soyuz-U,,Terilen,,SU,O,state -1985-027,2446158.86,1985-04-03,1985,Soyuz-U,,Oblik,,SU,O,state -1985-029,2446172.22,1985-04-16,1985,Soyuz-U,,Foton No. 1L,,SU,O,state -1985-030,2446174.4,1985-04-18,1985,Tsiklon-2,,US-PM1,,SU,O,state -1985-031,2446175.08,1985-04-19,1985,Soyuz-U,,Kobal't,,SU,O,state -1985-032,2446180.9,1985-04-25,1985,Soyuz-U,,Oblik,,SU,O,state -1985-033,2446181.74,1985-04-26,1985,Molniya 8K78M,SOL,SO-M No. 510,,SU,O,state -1985-036,2446201.03,1985-05-15,1985,Soyuz-U,,Oblik,,SU,O,state -1985-037,2446203.44,1985-05-17,1985,Proton-K/DM-2,,Uragan No. 20L,,SU,O,state -1985-038,2446207.86,1985-05-22,1985,Soyuz-U,,Resurs-F1 17F41 No. 52,,SU,O,state -1985-039,2446209.03,1985-05-23,1985,Soyuz-U,,Kobal't,,SU,O,state -1985-040,2446214.82,1985-05-29,1985,Molniya 8K78M,ML,Molniya-3 No. 39,,SU,O,state -1985-041,2446215.55,1985-05-30,1985,Kosmos 11K65M,,Tsikada,,SU,O,state -1985-042,2446216.12,1985-05-30,1985,Proton-K/DM-2,,Tselina-2,,SU,O,state -1985-043,2446222.78,1985-06-06,1985,Soyuz-U2,,Soyuz 7K-ST No. 19L,,SU,O,state -1985-044,2446223.82,1985-06-07,1985,Soyuz-U-PVB,,Resurs-F1 17F41 No. 54,,SU,O,state -1985-045,2446228.1,1985-06-11,1985,Molniya 8K78M,2BL,Oko,,SU,O,state -1985-046,2446230.01,1985-06-13,1985,Soyuz-U,,Oblik,,SU,O,state -1985-047,2446230.94,1985-06-14,1985,Tsiklon-3,,Musson No. 17,,SU,O,state -1985-049,2446234.53,1985-06-18,1985,Molniya 8K78M,2BL,Oko,,SU,O,state -1985-050,2446235.98,1985-06-19,1985,Kosmos 11K65M,,Romb,,SU,O,state -1985-051,2446237.53,1985-06-21,1985,Soyuz-U,,Progress 7K-TG No. 125,,SU,O,state -1985-052,2446237.82,1985-06-21,1985,Soyuz-U,,Resurs-F1 17F41 No. 55,,SU,O,state -1985-053,2446237.85,1985-06-21,1985,Zenit-2,,EPN No. 03.694,,SU,O,state -1985-054,2446243.02,1985-06-26,1985,Soyuz-U,,Oblik,,SU,O,state -1985-057,2446250.01,1985-07-03,1985,Soyuz-U,,Oblik,,SU,O,state -1985-058,2446255.49,1985-07-08,1985,Tsiklon-3,,Tselina-D,,SU,O,state -1985-059,2446256.64,1985-07-10,1985,Soyuz-U,,Bion No. 7,,SU,O,state -1985-060,2446261.77,1985-07-15,1985,Soyuz-U,,Oblik,,SU,O,state -1985-061,2446263.55,1985-07-17,1985,Molniya 8K78M,ML,Molniya-3 No. 37,,SU,O,state -1985-062,2446266.05,1985-07-19,1985,Soyuz-U,,Progress 7K-TG No. 126,,SU,O,state -1985-064,2446278.73,1985-08-01,1985,Tsiklon-2,,US-A reactor,,SU,O,state -1985-065,2446279.99,1985-08-02,1985,Soyuz-U,,Oblik,,SU,O,state -1985-067,2446284.91,1985-08-07,1985,Soyuz-U,,Resurs-F1 17F41 No. 57,,SU,O,state -1985-068,2446285.93,1985-08-08,1985,Soyuz-U,,Siluet No. 5,,SU,O,state -1985-069,2446285.99,1985-08-08,1985,Tsiklon-3,,Tselina-D,,SU,O,state -1985-070,2446286.38,1985-08-08,1985,Proton-K/DM,,Gran' No. 26L,,SU,O,state -1985-071,2446290.13,1985-08-12,1985,Molniya 8K78M,2BL,Oko,,SU,O,state -1985-072,2446294.13,1985-08-16,1985,Soyuz-U,,Kobal't,,SU,O,state -1985-074,2446300.31,1985-08-22,1985,Molniya 8K78M,ML,Molniya-1!No. 61,,SU,O,state -1985-075,2446301.44,1985-08-23,1985,Tsiklon-2,,US-A reactor,,SU,O,state -1985-077,2446306.93,1985-08-29,1985,Soyuz-U,,Resurs-F1 17F41 No. 53,,SU,O,state -1985-078,2446306.98,1985-08-29,1985,Soyuz-U,,Kobal't,,SU,O,state -1985-079,2446312.8,1985-09-04,1985,Kosmos 11K65M,,Strela-2M,,SU,O,state -1985-080,2446314.95,1985-09-06,1985,Soyuz-U,,Fram,,SU,O,state -1985-081,2446326.03,1985-09-17,1985,Soyuz-U2,,Soyuz 7K-ST No. 20L,,SU,O,state -1985-082,2446327.56,1985-09-19,1985,Tsiklon-2,,US-PM1,,SU,O,state -1985-083,2446327.92,1985-09-19,1985,Soyuz-U,,Oblik,,SU,O,state -1985-084,2446332.55,1985-09-24,1985,Molniya 8K78M,2BL,Oko,,SU,O,state -1985-085,2446334.97,1985-09-26,1985,Soyuz-U,,Oblik,,SU,O,state -1985-086,2446335.86,1985-09-27,1985,Proton-K,,TKS-M No. 16501,,SU,O,state -1985-088,2446339.31,1985-09-30,1985,Molniya 8K78M,2BL,Oko,,SU,O,state -1985-089,2446340.88,1985-10-02,1985,Kosmos 11K65M,,Romb,,SU,O,state -1985-090,2446341.74,1985-10-03,1985,Vostok 8A92M,,Resurs-O1 No. 1L,,SU,O,state -1985-091,2446341.81,1985-10-03,1985,Molniya 8K78M,ML,Molniya-3 No. 38,,SU,O,state -1985-094,2446348.4,1985-10-09,1985,Tsiklon-3,,Strela-3,,SU,O,state -1985-095,2446354.89,1985-10-16,1985,Soyuz-U,,Oblik,,SU,O,state -1985-097,2446360.79,1985-10-22,1985,Zenit-2,,EPN No. 03.694,,SU,O,state -1985-098,2446361.35,1985-10-22,1985,Molniya 8K78M,2BL,Oko,,SU,O,state -1985-099,2446361.53,1985-10-23,1985,Molniya 8K78M,ML,Molniya-1 11F658 No. 73,,SU,O,state -1986-100,2446782.21,1986-12-17,1986,Kosmos 11K65M,,Parus,,SU,O,state -1986-001,2446438.98,1986-01-08,1986,Soyuz-U,,Oblik,,SU,O,state -1986-101,2446782.83,1986-12-18,1986,Tsiklon-3,,AUOS-Z 501 Ionozond-E,,SU,O,state -1986-002,2446439.62,1986-01-09,1986,Kosmos 11K65M,,Strela-1M,,SU,O,state -1986-102,2446790.96,1986-12-26,1986,Soyuz-U,,Terilen,,SU,O,state -1986-103,2446791.14,1986-12-26,1986,Molniya 8K78M,ML,Molniya-1!No. 62,,SU,O,state -1986-004,2446446.1,1986-01-15,1986,Soyuz-U,,Kobal't,,SU,O,state -1986-005,2446446.98,1986-01-16,1986,Kosmos 11K65M,,Parus,,SU,O,state -1986-006,2446447.81,1986-01-17,1986,Tsiklon-3,,Tselina-D,,SU,O,state -1986-007,2446447.93,1986-01-17,1986,Proton-K/DM,,Gran' No. 29L,,SU,O,state -1986-008,2446454.29,1986-01-23,1986,Kosmos 11K65M,,Tsikada,,SU,O,state -1986-009,2446458.86,1986-01-28,1986,Soyuz-U,,Oblik,,SU,O,state -1986-011,2446463.26,1986-02-01,1986,Molniya 8K78M,2BL,Oko,,SU,O,state -1986-012,2446465.97,1986-02-04,1986,Soyuz-U,,Oblik,,SU,O,state -1986-013,2446468.86,1986-02-07,1986,Soyuz-U,,Terilen,,SU,O,state -1986-015,2446472.79,1986-02-11,1986,Tsiklon-3,,Musson No. 16,,SU,O,state -1986-017,2446481.39,1986-02-19,1986,Proton-K,,DOS 7 (17K No. 127-01),,SU,O,state -1986-018,2446481.46,1986-02-19,1986,Tsiklon-3,,Tselina-D,,SU,O,state -1986-020,2446488.07,1986-02-26,1986,Soyuz-U,,Kobal't,,SU,O,state -1986-021,2446488.57,1986-02-27,1986,Tsiklon-2,,US-PM,,SU,O,state -1986-022,2446503.02,1986-03-13,1986,Soyuz-U2,,Soyuz 7K-ST No. 21L,,SU,O,state -1986-023,2446508.92,1986-03-19,1986,Soyuz-U2,,Progress 7K-TG No. 134,,SU,O,state -1986-024,2446510.92,1986-03-21,1986,Tsiklon-2,,US-A reactor,,SU,O,state -1986-025,2446515.31,1986-03-25,1986,Tsiklon-2,,US-PM1,,SU,O,state -1986-027,2446524.66,1986-04-04,1986,Proton-K/DM,,Geizer No. 13L,,SU,O,state -1986-028,2446529.83,1986-04-09,1986,Soyuz-U,,Kobal't,,SU,O,state -1986-029,2446535.99,1986-04-15,1986,Soyuz-U,,Oblik,,SU,O,state -1986-030,2446538.38,1986-04-17,1986,Kosmos 11K65M,,Strela-2M,,SU,O,state -1986-031,2446539.33,1986-04-18,1986,Molniya 8K78M,ML,Molniya-3 No. 43,,SU,O,state -1986-032,2446544.32,1986-04-23,1986,Soyuz-U2,,Progress 7K-TG No. 136,,SU,O,state -1986-033,2446565.03,1986-05-14,1986,Soyuz-U,,Oblik,,SU,O,state -1986-034,2446565.68,1986-05-15,1986,Tsiklon-3,,Tselina-D,,SU,O,state -1986-035,2446571.85,1986-05-21,1986,Soyuz-U2,,Soyuz 7K-STM No. 51,,SU,O,state -1986-036,2446572.19,1986-05-21,1986,Soyuz-U,,Foton No. 2L,,SU,O,state -1986-037,2446574.04,1986-05-23,1986,Kosmos 11K65M,,Parus,,SU,O,state -1986-038,2446574.57,1986-05-24,1986,Proton-K/DM,,Ekran No. 30L,,SU,O,state -1986-039,2446577.9,1986-05-27,1986,Tsiklon-3,,Meteor-2 No. 18,,SU,O,state -1986-040,2446578.83,1986-05-28,1986,Soyuz-U,,Resurs-F1 17F41 No. 58,,SU,O,state -1986-041,2446579.89,1986-05-29,1986,Soyuz-U,,Oblik,,SU,O,state -1986-042,2446587.66,1986-06-06,1986,Kosmos 11K65M,,Strela-1M,,SU,O,state -1986-043,2446588.03,1986-06-06,1986,Soyuz-U,,Kobal't,,SU,O,state -1986-044,2446591.53,1986-06-10,1986,Proton-K/DM,,Gorizont No. 24L,,SU,O,state -1986-045,2446592.82,1986-06-11,1986,Soyuz-U,,Oblik (Priroda),,SU,O,state -1986-046,2446593.7,1986-06-12,1986,Tsiklon-3,,Tselina-D,,SU,O,state -1986-047,2446600.34,1986-06-18,1986,Kosmos 11K65M,,Parus,,SU,O,state -1986-048,2446600.94,1986-06-19,1986,Soyuz-U,,Oblik,,SU,O,state -1986-049,2446601.38,1986-06-19,1986,Molniya 8K78M,ML,Molniya-3 No. 44,,SU,O,state -1986-050,2446616.55,1986-07-05,1986,Molniya 8K78M,2BL,Oko,,SU,O,state -1986-051,2446621.83,1986-07-10,1986,Soyuz-U,,Resurs-F1 14F40 No. 59,,SU,O,state -1986-052,2446627.68,1986-07-16,1986,Kosmos 11K65M,,Strela-2M,,SU,O,state -1986-053,2446629.02,1986-07-17,1986,Soyuz-U,,Kobal't,,SU,O,state -1986-054,2446636.02,1986-07-24,1986,Soyuz-U,,Oblik,,SU,O,state -1986-055,2446640.38,1986-07-28,1986,Tsiklon-3,,Okean-O1 NKhM No. 3,,SU,O,state -1986-056,2446641.85,1986-07-30,1986,Zenit-2,,EPN No. 03.695,,SU,O,state -1986-057,2446642.13,1986-07-30,1986,Molniya 8K78M,ML,Molniya-1!No. 59,,SU,O,state -1986-058,2446644.89,1986-08-02,1986,Soyuz-U,,Resurs-F1 14F40 No. 60,,SU,O,state -1986-059,2446646.71,1986-08-04,1986,Tsiklon-2,,US-PM1,,SU,O,state -1986-060,2446649.06,1986-08-06,1986,Soyuz-U,,Terilen,,SU,O,state -1986-062,2446663.04,1986-08-20,1986,Tsiklon-2,,US-A reactor,,SU,O,state -1986-063,2446663.96,1986-08-21,1986,Soyuz-U,,Oblik,,SU,O,state -1986-064,2446669.99,1986-08-27,1986,Soyuz-U,,Kobal't,,SU,O,state -1986-065,2446670.84,1986-08-28,1986,Molniya 8K78M,2BL,Oko,,SU,O,state -1986-066,2446676.83,1986-09-03,1986,Soyuz-U,,Oblik,,SU,O,state -1986-067,2446676.88,1986-09-03,1986,Kosmos 11K65M,,Romb,,SU,O,state -1986-068,2446678.88,1986-09-05,1986,Molniya 8K78M,ML,Molniya-1!No. 57,,SU,O,state -1986-070,2446683.57,1986-09-10,1986,Kosmos 11K65M,,Strela-2M,,SU,O,state -1986-071,2446689.98,1986-09-16,1986,Proton-K/DM-2,,Uragan No. 24L,,SU,O,state -1986-072,2446690.83,1986-09-17,1986,Soyuz-U,,Oblik,,SU,O,state -1986-074,2446704.27,1986-09-30,1986,Tsiklon-3,,Tselina-D,,SU,O,state -1986-075,2446707.05,1986-10-03,1986,Molniya 8K78M,2BL,Oko,,SU,O,state -1986-077,2446709.82,1986-10-06,1986,Soyuz-U,,Siluet No. 6,,SU,O,state -1986-078,2446718.9,1986-10-15,1986,Molniya 8K78M,2BL,Oko,,SU,O,state -1986-079,2446723.87,1986-10-20,1986,Molniya 8K78M,ML,Molniya-3 No. 41,,SU,O,state -1986-080,2446725.83,1986-10-22,1986,Zenit-2,,Taifun-1B,,SU,O,state -1986-081,2446725.88,1986-10-22,1986,Soyuz-U,,Oblik,,SU,O,state -1986-082,2446729.15,1986-10-25,1986,Proton-K/DM,,Gran' No. 30L,,SU,O,state -1986-083,2446731.03,1986-10-27,1986,Kosmos 11K65M,,Vektor,,SU,O,state -1986-084,2446734.83,1986-10-31,1986,Soyuz-U,,Resurs-F1 14F40 No. 61,,SU,O,state -1986-085,2446738.99,1986-11-04,1986,Soyuz-U,,Oblik,,SU,O,state -1986-086,2446747.76,1986-11-13,1986,Kosmos 11K65M,,Tsikada,,SU,O,state -1986-087,2446747.96,1986-11-13,1986,Soyuz-U,,Kobal't,,SU,O,state -1986-089,2446750.4,1986-11-15,1986,Molniya 8K78M,ML,Molniya-1!No. 60,,SU,O,state -1986-090,2446753.09,1986-11-18,1986,Proton-K/DM,,Gorizont No. 22L,,SU,O,state -1986-091,2446755.01,1986-11-20,1986,Molniya 8K78M,2BL,Oko,,SU,O,state -1986-092,2446755.58,1986-11-21,1986,Kosmos 11K65M,,Strela-1M,,SU,O,state -1986-093,2446759.41,1986-11-24,1986,Kosmos 11K65M,,Parus,,SU,O,state -1986-094,2446766.79,1986-12-02,1986,Tsiklon-3,,Musson No. 18,,SU,O,state -1986-095,2446768.92,1986-12-04,1986,Soyuz-U,,Oblik,,SU,O,state -1986-097,2446774.81,1986-12-10,1986,Tsiklon-3,,Tselina-R,,SU,O,state -1986-098,2446777.27,1986-12-12,1986,Molniya 8K78M,2BL,Oko,,SU,O,state -1986-099,2446781.08,1986-12-16,1986,Soyuz-U,,Kobal't,,SU,O,state -1987-100,2447139.98,1987-12-10,1987,Proton-K/DM-2,,Gran' No. 32L,,SU,O,state -1987-001,2446800.56,1987-01-05,1987,Tsiklon-3,,Meteor-2 No. 17,,SU,O,state -1987-101,2447141.74,1987-12-12,1987,Tsiklon-2,,US-AM reactor,,SU,O,state -1987-002,2446805.03,1987-01-09,1987,Soyuz-U,,Kobal't,,SU,O,state -1987-102,2447143.98,1987-12-14,1987,Soyuz-U,,Kobal't,,SU,O,state -1987-003,2446809.88,1987-01-14,1987,Tsiklon-3,,Tselina-D,,SU,O,state -1987-103,2447145.06,1987-12-15,1987,Kosmos 11K65M,,Vektor,,SU,O,state -1987-004,2446810.97,1987-01-15,1987,Soyuz-U,,Oblik,,SU,O,state -1987-104,2447150.97,1987-12-21,1987,Soyuz-U2,,Soyuz 7K-STM No. 54,,SU,O,state -1987-005,2446811.75,1987-01-16,1987,Soyuz-U2,,Progress 7K-TG No. 135,,SU,O,state -1987-105,2447151.44,1987-12-21,1987,Molniya 8K78M,2BL,Oko,,SU,O,state -1987-006,2446816.88,1987-01-21,1987,Kosmos 11K65M,,Strela-2M,,SU,O,state -1987-106,2447153.35,1987-12-23,1987,Kosmos 11K65M,,Parus,,SU,O,state -1987-007,2446817.79,1987-01-22,1987,Kosmos 11K65M,,Romb,,SU,O,state -1987-107,2447154.86,1987-12-25,1987,Soyuz-U,,Oblik,,SU,O,state -1987-008,2446818.17,1987-01-22,1987,Molniya 8K78M,ML,Molniya-3 No. 42,,SU,O,state -1987-108,2447155.98,1987-12-26,1987,Soyuz-U,,Resurs-F2 17F42 No. 1,,SU,O,state -1987-009,2446824.76,1987-01-29,1987,Kosmos 11K65M,,Tsikada,,SU,O,state -1987-109,2447156.98,1987-12-27,1987,Proton-K/DM-2,,Ekran-M No. 13L,,SU,O,state -1987-010,2446825.89,1987-01-30,1987,Proton-K/DM-2,,Ekran-M No. 11L,,SU,O,state -1987-110,2447158.99,1987-12-29,1987,Soyuz-U,,Oblik,,SU,O,state -1987-011,2446828.48,1987-02-01,1987,Tsiklon-2,,Plazma-A No. 1,,SU,O,state -1987-013,2446832.4,1987-02-05,1987,Soyuz-U2,,Soyuz 7K-STM No. 52,,SU,O,state -1987-014,2446833.94,1987-02-07,1987,Soyuz-U,,Oblik,,SU,O,state -1987-016,2446840.85,1987-02-14,1987,Zenit-2,,EPN No. 03.695,,SU,O,state -1987-017,2446845.08,1987-02-18,1987,Kosmos 11K65M,,Parus,,SU,O,state -1987-019,2446845.93,1987-02-19,1987,Soyuz-U,,Oblik,,SU,O,state -1987-020,2446846.7,1987-02-20,1987,Tsiklon-3,,Musson No. 19,,SU,O,state -1987-021,2446853.06,1987-02-26,1987,Soyuz-U,,Kobal't,,SU,O,state -1987-023,2446857.97,1987-03-03,1987,Soyuz-U2,,Progress 7K-TG No. 137,,SU,O,state -1987-024,2446858.13,1987-03-03,1987,Tsiklon-3,,Tselina-D,,SU,O,state -1987-025,2446865.93,1987-03-11,1987,Soyuz-U,,Oblik,,SU,O,state -1987-026,2446868.05,1987-03-13,1987,Tsiklon-3,,Strela-3,,SU,O,state -1987-027,2446872.85,1987-03-18,1987,Zenit-2,,EPN No. 03.694,,SU,O,state -1987-028,2446873.66,1987-03-19,1987,Proton-K/DM,,Gran' No. 31L,,SU,O,state -1987-030,2446885.5,1987-03-31,1987,Proton-K,,TsM-e 37Ke No. 010,,SU,O,state -1987-031,2446893.66,1987-04-08,1987,Tsiklon-2,,US-PM,,SU,O,state -1987-032,2446894.99,1987-04-09,1987,Soyuz-U,,Kobal't,,SU,O,state -1987-033,2446901.76,1987-04-16,1987,Soyuz-U,,Terilen,,SU,O,state -1987-034,2446907.13,1987-04-21,1987,Soyuz-U2,,Progress 7K-TG No. 127,,SU,O,state -1987-035,2446907.88,1987-04-22,1987,Soyuz-U,,Oblik,,SU,O,state -1987-036,2446910.03,1987-04-24,1987,Proton-K/DM-2,,Uragan No. 30L,,SU,O,state -1987-037,2446910.21,1987-04-24,1987,Soyuz-U,,Foton No. 3L,,SU,O,state -1987-038,2446912.5,1987-04-27,1987,Tsiklon-3,,Tselina-D,,SU,O,state -1987-039,2446920.89,1987-05-05,1987,Soyuz-U,,Oblik,,SU,O,state -1987-040,2446927.11,1987-05-11,1987,Proton-K/DM,,Gorizont No. 23L,,SU,O,state -1987-041,2446928.74,1987-05-13,1987,Zenit-2,,Tselina-2,,SU,O,state -1987-042,2446928.75,1987-05-13,1987,Soyuz-U,,Oblik,,SU,O,state -1987-044,2446934.67,1987-05-19,1987,Soyuz-U2,,Progress 7K-TG No. 128,,SU,O,state -1987-045,2446936.82,1987-05-21,1987,Soyuz-U,,Resurs-F1 14F40 No. 104,,SU,O,state -1987-046,2446942.07,1987-05-26,1987,Soyuz-U,,Kobal't,,SU,O,state -1987-047,2446944.03,1987-05-28,1987,Soyuz-U,,Oblik,,SU,O,state -1987-048,2446951.28,1987-06-04,1987,Molniya 8K78M,2BL,Oko,,SU,O,state -1987-049,2446956.11,1987-06-09,1987,Kosmos 11K65M,,Strela-2M,,SU,O,state -1987-050,2446958.82,1987-06-12,1987,Molniya 8K78M,2BL,Oko,,SU,O,state -1987-051,2446963.24,1987-06-16,1987,Kosmos 11K65M,,Strela-1M,,SU,O,state -1987-052,2446965.4,1987-06-18,1987,Tsiklon-2,,US-A ROCh,,SU,O,state -1987-054,2446969.82,1987-06-23,1987,Kosmos 11K65M,,Tsikada/RS-10/RS-11,,SU,O,state -1987-055,2446978.32,1987-07-01,1987,Tsiklon-3,,Tselina-D,,SU,O,state -1987-056,2446981.02,1987-07-04,1987,Soyuz-U,,Oblik,,SU,O,state -1987-057,2446983.42,1987-07-06,1987,Kosmos 11K65M,,Parus,,SU,O,state -1987-058,2446984.96,1987-07-08,1987,Soyuz-U,,Siluet No. 7,,SU,O,state -1987-059,2446986.17,1987-07-09,1987,Soyuz-U,,Kobal't,,SU,O,state -1987-060,2446987.15,1987-07-10,1987,Tsiklon-2,,Plazma-A No. 2,,SU,O,state -1987-061,2446991.08,1987-07-14,1987,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1987-062,2446992.68,1987-07-16,1987,Tsiklon-3,,Okean-O1 NKhM No. 4,,SU,O,state -1987-063,2446998.58,1987-07-22,1987,Soyuz-U2,,Soyuz 7K-STM No. 53,,SU,O,state -1987-064,2447001.88,1987-07-25,1987,Proton-K,,Mech-K No. 304,,SU,O,state -1987-065,2447008.67,1987-08-01,1987,Zenit-2,,EPN No. 03.695,,SU,O,state -1987-066,2447011.36,1987-08-03,1987,Soyuz-U2,,Progress 7K-TG No. 138,,SU,O,state -1987-068,2447025.6,1987-08-18,1987,Tsiklon-3,,Meteor-2 No. 21,,SU,O,state -1987-069,2447026.79,1987-08-19,1987,Soyuz-U,,Oblik,,SU,O,state -1987-071,2447035.85,1987-08-28,1987,Zenit-2,,EPN No. 03.695,,SU,O,state -1987-072,2447041.93,1987-09-03,1987,Soyuz-U,,Oblik,,SU,O,state -1987-073,2447042.31,1987-09-03,1987,Proton-K/DM,,Ekran No. 29L,,SU,O,state -1987-074,2447046.49,1987-09-07,1987,Tsiklon-3,,Strela-3,,SU,O,state -1987-076,2447049.59,1987-09-11,1987,Soyuz-U,,Terilen,,SU,O,state -1987-077,2447053.94,1987-09-15,1987,Soyuz-U,,Resurs-F1 14F40 No. 107,,SU,O,state -1987-079,2447054.62,1987-09-16,1987,Proton-K/DM-2,,Uragan No. 33L,,SU,O,state -1987-081,2447056.12,1987-09-17,1987,Soyuz-U,,Kobal't,,SU,O,state -1987-082,2447062.49,1987-09-23,1987,Soyuz-U2,,Progress 7K-TG No. 139,,SU,O,state -1987-083,2447068.03,1987-09-29,1987,Soyuz-U,,Bion No. 8,,SU,O,state -1987-084,2447070.21,1987-10-01,1987,Proton-K/DM-2,,Geizer No. 15L,,SU,O,state -1987-085,2447077.85,1987-10-09,1987,Soyuz-U,,Oblik,,SU,O,state -1987-086,2447079.41,1987-10-10,1987,Tsiklon-2,,US-PM,,SU,O,state -1987-087,2447083.02,1987-10-14,1987,Kosmos 11K65M,,Parus,,SU,O,state -1987-088,2447088.88,1987-10-20,1987,Tsiklon-3,,Tselina-D,,SU,O,state -1987-089,2447091.1,1987-10-22,1987,Soyuz-U,,Kobal't,,SU,O,state -1987-091,2447097.14,1987-10-28,1987,Proton-K/DM-2,,Oko-S F3,,SU,O,state -1987-092,2447110.88,1987-11-11,1987,Soyuz-U,,Oblik,,SU,O,state -1987-093,2447113.9,1987-11-14,1987,Soyuz-U,,Kometa No. 8,,SU,O,state -1987-094,2447120.49,1987-11-20,1987,Soyuz-U2,,Progress 7K-TG No. 140,,SU,O,state -1987-096,2447126.06,1987-11-26,1987,Proton-K/DM-2,,Al'tair No. 12L,,SU,O,state -1987-098,2447131.09,1987-12-01,1987,Kosmos 11K65M,,Strela-2M,,SU,O,state -1987-099,2447136.87,1987-12-07,1987,Soyuz-U,,Oblik,,SU,O,state -1988-100,2447480.63,1988-11-15,1988,Energiya/Buran,,Buran OK-1K No. 711 (1K1,,SU,O,state -1988-001,2447166.82,1988-01-06,1988,Tsiklon-3,,Tselina-D,,SU,O,state -1988-101,2447483.51,1988-11-18,1988,Tsiklon-2,,US-PM,,SU,O,state -1988-002,2447175.66,1988-01-15,1988,Tsiklon-3,,Strela-3,,SU,O,state -1988-102,2447489.12,1988-11-23,1988,Zenit-2,,Tselina-2,,SU,O,state -1988-003,2447181.45,1988-01-20,1988,Soyuz-U2,,Progress 7K-TG No. 142,,SU,O,state -1988-103,2447490.12,1988-11-24,1988,Soyuz-U,,Oblik,,SU,O,state -1988-004,2447186.97,1988-01-26,1988,Soyuz-U,,Oblik,,SU,O,state -1988-104,2447492.16,1988-11-26,1988,Soyuz-U2,,Soyuz 7K-STM No. 57,,SU,O,state -1988-005,2447190.96,1988-01-30,1988,Tsiklon-3,,Meteor-2 No. 20,,SU,O,state -1988-105,2447495.88,1988-11-30,1988,Soyuz-U,,Oblik,,SU,O,state -1988-007,2447195.01,1988-02-03,1988,Soyuz-U,,Kobal't,,SU,O,state -1988-107,2447504.12,1988-12-08,1988,Soyuz-U-PVB,,Oblik,,SU,O,state -1988-108,2447506,1988-12-10,1988,Proton-K/DM-2,,Ekran-M No. 12L,,SU,O,state -1988-009,2447208.52,1988-02-17,1988,Proton-K/DM-2,,Uragan No. 36L,,SU,O,state -1988-010,2447209.91,1988-02-18,1988,Soyuz-U,,Resurs-F1 14F40 No. 106,,SU,O,state -1988-110,2447512.29,1988-12-16,1988,Soyuz-U,,Kobal't,,SU,O,state -1988-011,2447210.83,1988-02-19,1988,Soyuz-U,,Oblik,,SU,O,state -1988-112,2447518.09,1988-12-22,1988,Molniya 8K78M,ML,Molniya-3 No. 52,,SU,O,state -1988-013,2447217.9,1988-02-26,1988,Molniya 8K78M,2BL,Oko,,SU,O,state -1988-113,2447518.81,1988-12-23,1988,Tsiklon-3,,ESO,,SU,O,state -1988-114,2447520.67,1988-12-25,1988,Soyuz-U2,,Progress 7K-TG No. 147,,SU,O,state -1988-015,2447230.94,1988-03-10,1988,Soyuz-U,,Oblik,,SU,O,state -1988-115,2447523.73,1988-12-28,1988,Molniya 8K78M,ML,Molniya-1 No. 63,,SU,O,state -1988-016,2447231.51,1988-03-11,1988,Kosmos 11K65M,,Strela-1M,,SU,O,state -1988-116,2447524.92,1988-12-29,1988,Soyuz-U,,Kometa No. 10,,SU,O,state -1988-017,2447231.78,1988-03-11,1988,Molniya 8K78M,ML,Molniya-1!No. 65,,SU,O,state -1988-019,2447235.1,1988-03-14,1988,Tsiklon-2,,US-A reactor,,SU,O,state -1988-020,2447236.28,1988-03-15,1988,Tsiklon-3,,Tselina-D,,SU,O,state -1988-021,2447237.78,1988-03-17,1988,Vostok 8A92M,,IRS-1A,,SU,O,state -1988-022,2447238.37,1988-03-17,1988,Molniya 8K78M,ML,Molniya-1!No. 64,,SU,O,state -1988-023,2447243.09,1988-03-22,1988,Kosmos 11K65M,,Parus,,SU,O,state -1988-024,2447244.38,1988-03-23,1988,Soyuz-U2,,Progress 7K-TG No. 143,,SU,O,state -1988-025,2447245.09,1988-03-24,1988,Soyuz-U,,Kobal't,,SU,O,state -1988-027,2447251,1988-03-30,1988,Soyuz-U,,Terilen,,SU,O,state -1988-028,2447251.68,1988-03-31,1988,Proton-K/DM,,Gorizont No. 26L,,SU,O,state -1988-029,2447257.11,1988-04-05,1988,Kosmos 11K65M,,Strela-2M,,SU,O,state -1988-030,2447262.97,1988-04-11,1988,Soyuz-U,,Oblik,,SU,O,state -1988-031,2447266.21,1988-04-14,1988,Soyuz-U,,Foton No. 4L,,SU,O,state -1988-032,2447271.74,1988-04-20,1988,Vostok 8A92M,,Resurs-O1 No. 2L,,SU,O,state -1988-034,2447277.64,1988-04-26,1988,Proton-K/DM-2,,Geofizika?,,SU,O,state -1988-035,2447278.88,1988-04-27,1988,Soyuz-U,,Oblik,,SU,O,state -1988-036,2447287.62,1988-05-06,1988,Proton-K/DM,,Ekran No. 31L,,SU,O,state -1988-037,2447294.11,1988-05-12,1988,Soyuz-U,,Kobal't,,SU,O,state -1988-038,2447294.52,1988-05-13,1988,Soyuz-U2,,Progress 7K-TG No. 144,,SU,O,state -1988-039,2447296.89,1988-05-15,1988,Zenit-2,,Tselina-2,,SU,O,state -1988-041,2447299.94,1988-05-18,1988,Soyuz-U,,Kometa No. 9,,SU,O,state -1988-042,2447300.89,1988-05-19,1988,Soyuz-U,,Oblik,,SU,O,state -1988-043,2447303.25,1988-05-21,1988,Proton-K/DM-2,,Uragan No. 39L,,SU,O,state -1988-044,2447308.14,1988-05-26,1988,Molniya 8K78M,ML,Molniya-3 No. 49,,SU,O,state -1988-045,2447309.62,1988-05-28,1988,Tsiklon-2,,US-PU,,SU,O,state -1988-046,2447311.83,1988-05-30,1988,Tsiklon-3,,Musson No. 21,,SU,O,state -1988-047,2447312.82,1988-05-31,1988,Soyuz-U,,Resurs-F1 14F43 No. 28,,SU,O,state -1988-048,2447320.09,1988-06-07,1988,Soyuz-U2,,Soyuz 7K-STM No. 55,,SU,O,state -1988-049,2447323.92,1988-06-11,1988,Soyuz-U,,Oblik,,SU,O,state -1988-050,2447326.64,1988-06-14,1988,Tsiklon-3,,Tselina-D,,SU,O,state -1988-053,2447334.18,1988-06-21,1988,Kosmos 11K65M,,Strela-2M,,SU,O,state -1988-054,2447335.04,1988-06-22,1988,Soyuz-U,,Kobal't,,SU,O,state -1988-055,2447335.82,1988-06-23,1988,Soyuz-U,,Oblik,,SU,O,state -1988-056,2447347.91,1988-07-05,1988,Tsiklon-3,,Okean-O1 NKhM No. 5,,SU,O,state -1988-057,2447349.84,1988-07-07,1988,Soyuz-U,,Resurs-F1 14F43 No. 29,,SU,O,state -1988-058,2447350.23,1988-07-07,1988,Proton-K/D-2,,1F No. 101,,SU,O,state -1988-059,2447355.21,1988-07-12,1988,Proton-K/D-2,,1F No. 102,,SU,O,state -1988-060,2447356.99,1988-07-14,1988,Kosmos 11K65M,,Vektor,,SU,O,state -1988-061,2447361.38,1988-07-18,1988,Soyuz-U2,,Progress 7K-TG No. 145,,SU,O,state -1988-062,2447361.44,1988-07-18,1988,Kosmos 11K65M,,Parus,,SU,O,state -1988-064,2447368.71,1988-07-26,1988,Tsiklon-3,,Meteor-3 No. 3,,SU,O,state -1988-065,2447370.97,1988-07-28,1988,Kosmos 11K65M,,Romb,,SU,O,state -1988-066,2447375.38,1988-08-01,1988,Proton-K/DM-2,,Geizer No. 16L,,SU,O,state -1988-068,2447381.89,1988-08-08,1988,Soyuz-U,,Oblik,,SU,O,state -1988-069,2447386.04,1988-08-12,1988,Molniya 8K78M,ML,Molniya-1 No. 66,,SU,O,state -1988-070,2447390.04,1988-08-16,1988,Soyuz-U,,Kobal't,,SU,O,state -1988-071,2447392.33,1988-08-18,1988,Proton-K/DM-2,,Gorizont No. 28L,,SU,O,state -1988-072,2447396.89,1988-08-23,1988,Soyuz-U,,Oblik,,SU,O,state -1988-073,2447396.97,1988-08-23,1988,Soyuz-U,,Resurs-F2 17F42 No. 2,,SU,O,state -1988-075,2447402.68,1988-08-29,1988,Soyuz-U2,,Soyuz 7K-STM No. 56,,SU,O,state -1988-076,2447404.09,1988-08-30,1988,Molniya 8K78M,2BL,Oko,,SU,O,state -1988-079,2447410.81,1988-09-06,1988,Soyuz-U,,Oblik,,SU,O,state -1988-082,2447413.94,1988-09-09,1988,Soyuz-U,,Resurs-F1 14F43 No. 31,,SU,O,state -1988-083,2447414.48,1988-09-09,1988,Soyuz-U2,,Progress 7K-TG No. 146,,SU,O,state -1988-084,2447420.12,1988-09-15,1988,Soyuz-U,,Kobal't,,SU,O,state -1988-085,2447420.58,1988-09-16,1988,Proton-K/DM-2,,Uragan No. 42L,,SU,O,state -1988-088,2447426.93,1988-09-22,1988,Soyuz-U-PVB,,Oblik,,SU,O,state -1988-090,2447433.88,1988-09-29,1988,Molniya 8K78M,ML,Molniya-3 No. 51,,SU,O,state -1988-092,2447438.43,1988-10-03,1988,Molniya 8K78M,2BL,Oko,,SU,O,state -1988-093,2447445.83,1988-10-11,1988,Tsiklon-3,,Tselina-D,,SU,O,state -1988-094,2447447.97,1988-10-13,1988,Soyuz-U,,Oblik,,SU,O,state -1988-095,2447455.15,1988-10-20,1988,Proton-K/DM-2,,Gran' No. 34L,,SU,O,state -1988-096,2447460.25,1988-10-25,1988,Molniya 8K78M,2BL,Oko,,SU,O,state -1988-097,2447461.98,1988-10-27,1988,Soyuz-U,,Oblik,,SU,O,state -1989-100,2447887.5,1989-12-27,1989,Tsiklon-3,,Kol'tso,,SU,O,state -1989-001,2447536.59,1989-01-10,1989,Proton-K/DM-2,,Uragan No. 27L,,SU,O,state -1989-101,2447887.97,1989-12-27,1989,Proton-K/DM-2,,Al'tair No. 14L,,SU,O,state -1989-002,2447538.98,1989-01-12,1989,Soyuz-U,,Resurs-F2 17F42 No. 3,,SU,O,state -1989-003,2447544.85,1989-01-18,1989,Soyuz-U,,Oblik,,SU,O,state -1989-004,2447552.89,1989-01-26,1989,Proton-K/DM-2,,Gorizont No. 29L,,SU,O,state -1989-005,2447553.15,1989-01-26,1989,Kosmos 11K65M,,Strela-2M,,SU,O,state -1989-007,2447555.02,1989-01-28,1989,Soyuz-U,,Kobal't,,SU,O,state -1989-008,2447567.87,1989-02-10,1989,Soyuz-U2,,Progress 7K-TG No. 148,,SU,O,state -1989-009,2447568.13,1989-02-10,1989,Tsiklon-3,,Strela-3,,SU,O,state -1989-010,2447568.2,1989-02-10,1989,Soyuz-U,,Oblik,,SU,O,state -1989-011,2447571.68,1989-02-14,1989,Molniya 8K78M,2BL,Oko,,SU,O,state -1989-012,2447572.21,1989-02-14,1989,Kosmos 11K65M,,Duga-K,,SU,O,state -1989-014,2447572.96,1989-02-15,1989,Molniya 8K78M,ML,Molniya-1 11F658 No. 84,,SU,O,state -1989-015,2447575.12,1989-02-17,1989,Soyuz-U,,Oblik,,SU,O,state -1989-017,2447579.65,1989-02-22,1989,Kosmos 11K65M,,Parus,,SU,O,state -1989-018,2447585.67,1989-02-28,1989,Tsiklon-3,,Meteor-2 No. 22,,SU,O,state -1989-019,2447588.29,1989-03-02,1989,Soyuz-U,,Kobal't,,SU,O,state -1989-022,2447602.12,1989-03-16,1989,Soyuz-U-PVB,,Oblik,,SU,O,state -1989-023,2447602.29,1989-03-16,1989,Soyuz-U2,,Progress 7K-TG No. 149,,SU,O,state -1989-024,2447609.02,1989-03-23,1989,Soyuz-U,,Terilen,,SU,O,state -1989-025,2447610.07,1989-03-24,1989,Kosmos 11K65M,,Strela-1M,,SU,O,state -1989-028,2447621.28,1989-04-04,1989,Kosmos 11K65M,,Parus,,SU,O,state -1989-029,2447623.08,1989-04-06,1989,Soyuz-U-PVB,,Oblik,,SU,O,state -1989-030,2447630.67,1989-04-14,1989,Proton-K/DM-2,,Gran' No. 33L,,SU,O,state -1989-031,2447637.27,1989-04-20,1989,Soyuz-U,,Kobal't,,SU,O,state -1989-032,2447643.21,1989-04-26,1989,Soyuz-U,,Foton No. 5L,,SU,O,state -1989-034,2447652.04,1989-05-05,1989,Soyuz-U-PVB,,Oblik,,SU,O,state -1989-036,2447664.04,1989-05-17,1989,Soyuz-U,,Kobal't,,SU,O,state -1989-037,2447670.94,1989-05-24,1989,Soyuz-U,,Kometa No. 11,,SU,O,state -1989-038,2447671.87,1989-05-25,1989,Soyuz-U-PVB,,Resurs-F1 14F43 No. 45,,SU,O,state -1989-039,2447677.86,1989-05-31,1989,Proton-K/DM-2,,Uragan No. 28L,,SU,O,state -1989-040,2447679.04,1989-06-01,1989,Soyuz-U,,Oblik,,SU,O,state -1989-042,2447684.72,1989-06-07,1989,Kosmos 11K65M,,Parus,,SU,O,state -1989-043,2447686.22,1989-06-08,1989,Molniya 8K78M,ML,Molniya-3 No. 45,,SU,O,state -1989-045,2447692.02,1989-06-14,1989,Kosmos 11K65M,,Vektor,,SU,O,state -1989-047,2447693.9,1989-06-16,1989,Soyuz-U,,Oblik,,SU,O,state -1989-048,2447699.48,1989-06-21,1989,Proton-K/DM-2,,Globus No. 11,,SU,O,state -1989-049,2447704.84,1989-06-27,1989,Soyuz-U,,Resurs-F1 14F43 No. 46,,SU,O,state -1989-050,2447712.14,1989-07-04,1989,Kosmos 11K65M,,Nadehzda 17F118 No. 403,,SU,O,state -1989-051,2447712.83,1989-07-05,1989,Soyuz-U-PVB,,Oblik,,SU,O,state -1989-052,2447713.45,1989-07-05,1989,Proton-K/DM-2,,Gorizont No. 27L,,SU,O,state -1989-054,2447720.12,1989-07-12,1989,Soyuz-U,,Kobal't,,SU,O,state -1989-055,2447725.91,1989-07-18,1989,Soyuz-U,,Resurs-F1 14F43 No. 47,,SU,O,state -1989-056,2447726.01,1989-07-18,1989,Soyuz-U,,Orlets,,SU,O,state -1989-057,2447727.87,1989-07-20,1989,Soyuz-U,,Oblik,,SU,O,state -1989-058,2447731.5,1989-07-24,1989,Tsiklon-2,,US-PM,,SU,O,state -1989-059,2447732.83,1989-07-25,1989,Kosmos 11K65M,,Parus,,SU,O,state -1989-060,2447740.98,1989-08-02,1989,Soyuz-U,,Oblik,,SU,O,state -1989-063,2447753.94,1989-08-15,1989,Soyuz-U,,Resurs-F2 17F42 No. 4,,SU,O,state -1989-065,2447761.04,1989-08-22,1989,Soyuz-U,,Oblik,,SU,O,state -1989-066,2447761.63,1989-08-23,1989,Soyuz-U2,,Progress 7K-TGM No. 201,,SU,O,state -1989-068,2447766.51,1989-08-28,1989,Tsiklon-3,,Musson No. 20,,SU,O,state -1989-071,2447775.4,1989-09-05,1989,Soyuz-U2,,Soyuz 7K-STM No. 58,,SU,O,state -1989-073,2447775.95,1989-09-06,1989,Soyuz-U-PVB,,Resurs-F1 14F43 No. 48,,SU,O,state -1989-074,2447783.91,1989-09-14,1989,Tsiklon-3,,Strela-3,,SU,O,state -1989-075,2447784.77,1989-09-15,1989,Soyuz-U,,Bion No. 9,,SU,O,state -1989-076,2447791.83,1989-09-22,1989,Soyuz-U,,Oblik,,SU,O,state -1989-078,2447797.11,1989-09-27,1989,Molniya 8K78M,ML,Molniya-1 No. 69,,SU,O,state -1989-079,2447797.18,1989-09-27,1989,Tsiklon-2,,US-PU,,SU,O,state -1989-080,2447797.5,1989-09-28,1989,Tsiklon-3,,AUOS-Z No. 201,,SU,O,state -1989-081,2447798.21,1989-09-28,1989,Proton-K/DM-2,,Gorizont No. 31L,,SU,O,state -1989-082,2447803.12,1989-10-03,1989,Soyuz-U,,Kobal't,,SU,O,state -1989-083,2447817.04,1989-10-17,1989,Soyuz-U,,Oblik,,SU,O,state -1989-086,2447824.4,1989-10-24,1989,Tsiklon-3,,Meteor-3 No. 4,,SU,O,state -1989-088,2447847.95,1989-11-17,1989,Soyuz-U,,Terilen,,SU,O,state -1989-091,2447854.36,1989-11-23,1989,Molniya 8K78M,2BL,Oko,,SU,O,state -1989-092,2447855.47,1989-11-24,1989,Tsiklon-2,,US-PM,,SU,O,state -1989-093,2447857.04,1989-11-26,1989,Proton-K,,TsM-D,,SU,O,state -1989-094,2447858.92,1989-11-28,1989,Molniya 8K78M,ML,Molniya-3 No. 46,,SU,O,state -1989-095,2447861.13,1989-11-30,1989,Soyuz-U,,Kobal't,,SU,O,state -1989-096,2447862.35,1989-12-01,1989,Proton-K/D-1,,1AS No. 1,,SU,O,state -1989-098,2447875.98,1989-12-15,1989,Proton-K/DM-2,,Gran' No. 36L,,SU,O,state -1989-099,2447880.65,1989-12-20,1989,Soyuz-U2,,Progress 7K-TGM No. 202,,SU,O,state -1990-101,2448218.66,1990-11-23,1990,Molniya 8K78M,ML,Molniya-1T No. 70,,SU,O,state -1990-102,2448219.06,1990-11-23,1990,Proton-K/DM-2,,Gorizont No. 33L,,SU,O,state -1990-003,2447909.11,1990-01-17,1990,Soyuz-U,,Oblik,,SU,O,state -1990-004,2447910.04,1990-01-18,1990,Kosmos 11K65M,,Strela-2M,,SU,O,state -1990-104,2448224.19,1990-11-28,1990,Tsiklon-3,,Kol'tso,,SU,O,state -1990-006,2447914.62,1990-01-23,1990,Molniya 8K78M,ML,Molniya-3 No. 53,,SU,O,state -1990-107,2448227.84,1990-12-02,1990,Soyuz-U2,,Soyuz 7K-STM No. 61,,SU,O,state -1990-108,2448229.53,1990-12-04,1990,Tsiklon-2,,US-PM,,SU,O,state -1990-009,2447917.22,1990-01-25,1990,Soyuz-U,,Kobal't,,SU,O,state -1990-109,2448230.27,1990-12-04,1990,Soyuz-U,,Kobal't,,SU,O,state -1990-010,2447921.97,1990-01-30,1990,Tsiklon-3,,Tselina-R,,SU,O,state -1990-110,2448233.61,1990-12-08,1990,Proton-K/DM-2,,Uragan No. 47L,,SU,O,state -1990-111,2448235.83,1990-12-10,1990,Kosmos 11K65M,,Strela-2M,,SU,O,state -1990-012,2447929.19,1990-02-06,1990,Kosmos 11K65M,,Duga-K,,SU,O,state -1990-112,2448245.98,1990-12-20,1990,Proton-K/DM-2,,Gran' No. 37L,,SU,O,state -1990-113,2448246.76,1990-12-21,1990,Soyuz-U,,Terilen,,SU,O,state -1990-014,2447933.76,1990-02-11,1990,Soyuz-U2,,Soyuz 7K-STM No. 60,,SU,O,state -1990-114,2448247.81,1990-12-22,1990,Tsiklon-3,,Strela-3,,SU,O,state -1990-115,2448251.97,1990-12-26,1990,Soyuz-U-PVB,,Oblik,,SU,O,state -1990-016,2447937.83,1990-02-15,1990,Proton-K/DM-2,,Gran' No. 35L,,SU,O,state -1990-116,2448252.96,1990-12-27,1990,Proton-K/DM-2,,Globus No. 12,,SU,O,state -1990-017,2447950.37,1990-02-27,1990,Kosmos 11K65M,,Nadezhda 17F118 No. 405,,SU,O,state -1990-018,2447950.54,1990-02-28,1990,Tsiklon-3,,Okean-O1 No. 5/NKhM No.,,SU,O,state -1990-020,2447951.47,1990-02-28,1990,Soyuz-U2,,Progress 7K-TGM No. 203,,SU,O,state -1990-022,2447965.14,1990-03-14,1990,Tsiklon-2,,US-PM,,SU,O,state -1990-023,2447970.52,1990-03-20,1990,Kosmos 11K65M,,Parus,,SU,O,state -1990-024,2447972.81,1990-03-22,1990,Soyuz-U,,Oblik,,SU,O,state -1990-026,2447978.19,1990-03-27,1990,Molniya 8K78M,2BL,Oko,,SU,O,state -1990-029,2447987.63,1990-04-06,1990,Kosmos 11K65M,,Strela-1M,,SU,O,state -1990-032,2447993.21,1990-04-11,1990,Soyuz-U,,Foton No. 6L,,SU,O,state -1990-033,2447995.29,1990-04-13,1990,Soyuz-U,,Terilen,,SU,O,state -1990-035,2447998.83,1990-04-17,1990,Soyuz-U,,Oblik,,SU,O,state -1990-036,2448002.28,1990-04-20,1990,Kosmos 11K65M,,Parus,,SU,O,state -1990-038,2448007.04,1990-04-25,1990,Kosmos 11K65M,,Romb,,SU,O,state -1990-039,2448007.57,1990-04-26,1990,Molniya 8K78M,ML,Molniya-1 No. 71,,SU,O,state -1990-040,2448009.98,1990-04-28,1990,Molniya 8K78M,2BL,Oko,,SU,O,state -1990-041,2448017.36,1990-05-05,1990,Soyuz-U2,,Progress 7K-TG No. 150,,SU,O,state -1990-042,2448019.28,1990-05-07,1990,Soyuz-U,,Kobal't,,SU,O,state -1990-044,2448026.91,1990-05-15,1990,Soyuz-U,,Kometa No. 12,,SU,O,state -1990-045,2448030.86,1990-05-19,1990,Proton-K/DM-2,,Uragan No. 46L,,SU,O,state -1990-046,2448033.72,1990-05-22,1990,Zenit-2,,Tselina-2,,SU,O,state -1990-047,2448040.81,1990-05-29,1990,Soyuz-U,,Resurs-F1 14F43 No. 50,,SU,O,state -1990-048,2448042.94,1990-05-31,1990,Proton-K,,TsM-T 77KST No. 17201,,SU,O,state -1990-052,2448055.55,1990-06-13,1990,Molniya 8K78M,ML,Molniya-3 No. 47,,SU,O,state -1990-053,2448061.86,1990-06-19,1990,Soyuz-U,,Oblik,,SU,O,state -1990-054,2448063.48,1990-06-20,1990,Proton-K/DM,,Gorizont No. 30L,,SU,O,state -1990-055,2448064.37,1990-06-21,1990,Molniya 8K78M,2BL,Oko,,SU,O,state -1990-057,2448070.44,1990-06-27,1990,Tsiklon-3,,Meteor-2 No. 23,,SU,O,state -1990-058,2448083.92,1990-07-11,1990,Soyuz-U2,,Gamma No. 1L,,SU,O,state -1990-060,2448089.9,1990-07-17,1990,Soyuz-U-PVB,,Resurs-F2 17F42 No. 5,,SU,O,state -1990-061,2448091.41,1990-07-18,1990,Proton-K/DM-2,,Geizer No. 17L,,SU,O,state -1990-062,2448092.86,1990-07-20,1990,Soyuz-U,,Oblik,,SU,O,state -1990-064,2448098.26,1990-07-25,1990,Molniya 8K78M-PVB,2BL,Oko,,SU,O,state -1990-066,2448102.5,1990-07-30,1990,Tsiklon-3,,Musson No. 22,,SU,O,state -1990-067,2448104.9,1990-08-01,1990,Soyuz-U2,,Soyuz 7K-STM No. 61A,,SU,O,state -1990-069,2448107.32,1990-08-03,1990,Soyuz-U-PVB,,Kobal't,,SU,O,state -1990-070,2448111.68,1990-08-08,1990,Tsiklon-3,,Strela-3,,SU,O,state -1990-071,2448114.35,1990-08-10,1990,Molniya 8K78M,ML,Molniya-1T No. 68,,SU,O,state -1990-072,2448118.67,1990-08-15,1990,Soyuz-U2,,Progress 7K-TGM No. 204,,SU,O,state -1990-073,2448119.91,1990-08-16,1990,Soyuz-U-PVB,,Resurs-F1 14F43 No. 49,,SU,O,state -1990-075,2448127.18,1990-08-23,1990,Tsiklon-2,,US-PM,,SU,O,state -1990-076,2448131.83,1990-08-28,1990,Molniya 8K78M-PVB,2BL,Oko,,SU,O,state -1990-078,2448132.16,1990-08-28,1990,Kosmos 11K65M,,Vektor,,SU,O,state -1990-080,2448134.83,1990-08-31,1990,Soyuz-U,,Oblik,,SU,O,state -1990-082,2448142,1990-09-07,1990,Soyuz-U-PVB,,Resurs-F1 14F43 No. 51,,SU,O,state -1990-083,2448148.75,1990-09-14,1990,Kosmos 11K65M,,Parus,,SU,O,state -1990-084,2448155.35,1990-09-20,1990,Molniya 8K78M,ML,Molniya-3 No. 54,,SU,O,state -1990-085,2448161.94,1990-09-27,1990,Soyuz-U2,,Progress 7K-TGM No. 206,,SU,O,state -1990-086,2448162.81,1990-09-28,1990,Tsiklon-3,,Meteor-2 No. 25,,SU,O,state -1990-087,2448165.96,1990-10-01,1990,Soyuz-U2,,Orlets,,SU,O,state -1990-092,2448181.29,1990-10-16,1990,Soyuz-U,,Kobal't,,SU,O,state -1990-094,2448199.11,1990-11-03,1990,Proton-K/DM-2,,Gorizont No. 32L,,SU,O,state -1990-096,2448209.77,1990-11-14,1990,Tsiklon-2,,US-PM,,SU,O,state -1990-098,2448212.19,1990-11-16,1990,Soyuz-U,,Oblik,,SU,O,state -1990-099,2448215.61,1990-11-20,1990,Molniya 8K78M-PVB,2BL,Oko,,SU,O,state -1991-002,2448271.12,1991-01-14,1991,Soyuz-U2,,Progress 7K-TGM No. 205,,SU,O,state -1991-004,2448273.94,1991-01-17,1991,Soyuz-U-PVB,,Oblik,,SU,O,state -1991-005,2448274.98,1991-01-18,1991,Tsiklon-2,,US-PU,,SU,O,state -1991-006,2448286,1991-01-29,1991,Kosmos 11K65M,,Informator No. 1,,SU,O,state -1991-007,2448292.61,1991-02-05,1991,Kosmos 11K65M,,Tsikada/RS-12/RS-13,,SU,O,state -1991-008,2448295.26,1991-02-07,1991,Soyuz-U,,Kobal't,,SU,O,state -1991-009,2448299.61,1991-02-12,1991,Kosmos 11K65M,,Strela-1M,,SU,O,state -1991-010,2448301.86,1991-02-14,1991,Proton-K/DM-2,,Oko-1 No. 7120,,SU,O,state -1991-011,2448302.9,1991-02-15,1991,Soyuz-U,,Kometa No. 13,,SU,O,state -1991-012,2448303.14,1991-02-15,1991,Molniya 8K78M,ML,Molniya-1T No. 73?,,SU,O,state -1991-013,2448313.7,1991-02-26,1991,Kosmos 11K65M,,Parus,,SU,O,state -1991-014,2448315.73,1991-02-28,1991,Proton-K/DM-2,,Gran' No. 38L,,SU,O,state -1991-016,2448322.15,1991-03-06,1991,Soyuz-U-PVB,,Oblik,,SU,O,state -1991-019,2448328.31,1991-03-12,1991,Kosmos 11K65M,,Nadezhda 17F118 No. 409,,SU,O,state -1991-020,2448335.05,1991-03-19,1991,Soyuz-U2,,Progress 7K-TGM No. 208,,SU,O,state -1991-021,2448335.1,1991-03-19,1991,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1991-022,2448338.01,1991-03-22,1991,Molniya 8K78M,ML,Molniya-3 No. 55,,SU,O,state -1991-023,2448342.07,1991-03-26,1991,Soyuz-U,,Kobal't,,SU,O,state -1991-024,2448347.13,1991-03-31,1991,Proton-K,,Mech-KU No. 305,,SU,O,state -1991-025,2448350.95,1991-04-04,1991,Proton-K/DM-2,,Uragan No. 50L,,SU,O,state -1991-029,2448362.81,1991-04-16,1991,Kosmos 11K65M,,Parus,,SU,O,state -1991-030,2448370.57,1991-04-24,1991,Tsiklon-3,,Meteor-3 No. 6,,SU,O,state -1991-033,2448393.4,1991-05-16,1991,Tsiklon-3,,Strela-3,,SU,O,state -1991-034,2448395.04,1991-05-18,1991,Soyuz-U2,,Soyuz 7K-STM No. 62,,SU,O,state -1991-035,2448397.88,1991-05-21,1991,Soyuz-U-PVB,,Resurs-F2 17F42 No. 6,,SU,O,state -1991-036,2448401.15,1991-05-24,1991,Soyuz-U,,Kobal't,,SU,O,state -1991-038,2448406.84,1991-05-30,1991,Soyuz-U2,,Progress 7K-TGM No. 207,,SU,O,state -1991-039,2448411.84,1991-06-04,1991,Tsiklon-3,,Okean-O1 No. 6/NKhM No.,,SU,O,state -1991-041,2448418.74,1991-06-11,1991,Kosmos 11K65M,,Strela-2M,,SU,O,state -1991-042,2448421.15,1991-06-13,1991,Tsiklon-3,,Tselina-R,,SU,O,state -1991-043,2448425.88,1991-06-18,1991,Molniya 8K78M,ML,Molniya-1T No. 74,,SU,O,state -1991-044,2448435.84,1991-06-28,1991,Soyuz-U-PVB,,Resurs-F1 14F43 No. 52,,SU,O,state -1991-046,2448439.41,1991-07-01,1991,Proton-K/DM-2,,Gorizont No. 34L,,SU,O,state -1991-048,2448446.9,1991-07-09,1991,Soyuz-U-PVB,,Oblik,,SU,O,state -1991-049,2448448.08,1991-07-10,1991,Soyuz-U,,Yantar'-4KS1M,,SU,O,state -1991-052,2448460.88,1991-07-23,1991,Soyuz-U,,Resurs-F1 14F43 No. 53,,SU,O,state -1991-053,2448470,1991-08-01,1991,Molniya 8K78M,ML,Molniya-1T No. 76,,SU,O,state -1991-056,2448483.89,1991-08-15,1991,Tsiklon-3,,Meteor-3 No. 5/TOMS,,SU,O,state -1991-057,2448489.45,1991-08-20,1991,Soyuz-U2,,Progress 7K-TGM No. 210,,SU,O,state -1991-058,2448489.95,1991-08-21,1991,Soyuz-U-PVB,,Resurs-F2 17F42 No. 7,,SU,O,state -1991-059,2448491.02,1991-08-22,1991,Kosmos 11K65M,,Parus,,SU,O,state -1991-061,2448497.78,1991-08-29,1991,Vostok 8A92M,,IRS-1B,,SU,O,state -1991-064,2448513.24,1991-09-13,1991,Proton-K/DM-2,,Oko-S F4,,SU,O,state -1991-065,2448517.33,1991-09-17,1991,Molniya 8K78M,ML,Molniya-3 No. 48,,SU,O,state -1991-066,2448519.18,1991-09-19,1991,Soyuz-U,,Kobal't,,SU,O,state -1991-068,2448527.8,1991-09-28,1991,Tsiklon-3,,Strela-3,,SU,O,state -1991-069,2448531.75,1991-10-02,1991,Soyuz-U2,,Soyuz 7K-STM No. 63,,SU,O,state -1991-070,2448534.26,1991-10-04,1991,Soyuz-U-PVB,,Foton No. 7L,,SU,O,state -1991-071,2448539.05,1991-10-09,1991,Soyuz-U2,,Orlets,,SU,O,state -1991-072,2448540.08,1991-10-10,1991,Kosmos 11K65M,,Taifun-1B,,SU,O,state -1991-073,2448546.5,1991-10-17,1991,Soyuz-U2,,Progress 7K-TGM No. 211,,SU,O,state -1991-074,2448553.14,1991-10-23,1991,Proton-K/DM-2,,Gorizont No. 35L,,SU,O,state -1991-077,2448573.34,1991-11-12,1991,Tsiklon-3,,Strela-3,,SU,O,state -1991-078,2448581.3,1991-11-20,1991,Soyuz-U,,Kobal't,,SU,O,state -1991-079,2448583.06,1991-11-22,1991,Proton-K/DM-2,,Geizer No. 18L,,SU,O,state -1991-081,2448587.65,1991-11-27,1991,Kosmos 11K65M,,Parus,,SU,O,state -1991-085,2448607.96,1991-12-17,1991,Soyuz-U,,Kometa No. 14,,SU,O,state -1991-086,2448608.66,1991-12-18,1991,Tsiklon-3,,AUOS-Z No. 301,,SU,O,state -1991-087,2448609.99,1991-12-19,1991,Proton-K/DM-2,,Gran' No. 39L,,SU,O,state -1982-F01,2445033.2,1982-03-04,1982,Kosmos 11K65M,,Romb?,,SU,F,state -1982-F02,2445105.1,1982-05-15,1982,Soyuz-U,,Zenit-6,,SU,F,state -1982-F03,2445132.88,1982-06-12,1982,Soyuz-U,,Zenit-6,,SU,F,state -1982-F04,2445173.42,1982-07-22,1982,Proton-K/DM,,Ekran No. 23L,,SU,F,state -1982-F05,2445212.33,1982-08-30,1982,Kosmos 11K65M,,Strela-2M,,SU,F,state -1982-F07,2445297.96,1982-11-24,1982,Kosmos 11K65M,,Strela-1M,,SU,F,state -1982-F08,2445328,1982-12-24,1982,Proton-K/DM,,Gran' No. 22L,,SU,F,state -1983-F01,2445360,1983-01-25,1983,Kosmos 11K65M,,Romb,,SU,F,state -1983-F02,2445604.32,1983-09-26,1983,Soyuz-U,,Soyuz 7K-ST No. 16L,,SU,F,state -1985-F01,2446168.83,1985-04-13,1985,Zenit-2,,EPN No. 03.694 No. 5102,,SU,F,state -1985-F04,2446362.23,1985-10-23,1985,Kosmos 11K65M,,Parus,,SU,F,state -1986-F02,2446515.94,1986-03-26,1986,Soyuz-U,,Oblik??,,SU,F,state -1986-F06,2446718.73,1986-10-15,1986,Tsiklon-3,,Strela-3,,SU,F,state -1986-F07,2446763.83,1986-11-29,1986,Proton-K,,Mech-K No. 303,,SU,F,state -1987-F04,2446964.81,1987-06-18,1987,Soyuz-U,,Resurs-F1 14F40 No. 105,,SU,F,state -1988-F01,2447178.92,1988-01-18,1988,Proton-K/DM-2,,Gorizont No. 25L,,SU,F,state -1988-F02,2447352.06,1988-07-09,1988,Soyuz-U,,Terilen,,SU,F,state -1988-F04,2447369.88,1988-07-27,1988,Soyuz-U,,Resurs-F1 14F43 No. 30,,SU,F,state -1988-F05,2447476.94,1988-11-11,1988,Soyuz-U,,Terilen,,SU,F,state -1989-F01,2447686.92,1989-06-09,1989,Tsiklon-3,,Okean-O1 No. 4 (NKhM No.,,SU,F,state -1990-F02,2447985.25,1990-04-03,1990,Soyuz-U,,Kobal't No. 527,,SU,F,state -1990-F03,2448076.31,1990-07-03,1990,Soyuz-U,,Kobal't No. 531,,SU,F,state -1990-F04,2448113.35,1990-08-09,1990,Proton-K/DM-2,,Ekran-M No. 14L,,SU,F,state -1990-F05,2448168.69,1990-10-04,1990,Zenit-2,,Tselina-2,,SU,F,state -1991-F02,2448433.06,1991-06-25,1991,Kosmos 11K65M,,Romb,,SU,F,state -1991-F03,2448498.87,1991-08-30,1991,Zenit-2,,Tselina-2,,SU,F,state -1992-001,2448643.12,1992-01-21,1992,Soyuz-U,,Kobal't,RU,RU,O,state -1992-003,2448645.55,1992-01-24,1992,Molniya 8K78M,2BL,Oko,RU,RU,O,state -1992-004,2448646.83,1992-01-25,1992,Soyuz-U2,,Progress 7K-TGM No. 212,RU,RU,O,state -1992-005,2448651.43,1992-01-29,1992,Proton-K/DM-2,,Uragan No. 68L,RU,RU,O,state -1992-008,2448670.42,1992-02-17,1992,Kosmos 11K65M,,Parus,RU,RU,O,state -1992-011,2448685.69,1992-03-04,1992,Molniya 8K78M,ML,Molniya-1T!No. 75,RU,RU,O,state -1992-012,2448691.44,1992-03-09,1992,Kosmos 11K65M,,Tsikada,RU,RU,O,state -1992-014,2448698.95,1992-03-17,1992,Soyuz-U2,,Soyuz 7K-STM No. 64,RU,RU,O,state -1992-016,2448714.1,1992-04-01,1992,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -1992-017,2448714.58,1992-04-02,1992,Proton-K/DM-2,,Gorizont No. 36L,RU,RU,O,state -1992-018,2448721.01,1992-04-08,1992,Soyuz-U,,Neman,RU,RU,O,state -1992-020,2448727.8,1992-04-15,1992,Kosmos 11K65M,,Parus,RU,RU,O,state -1992-022,2448732.4,1992-04-19,1992,Soyuz-U2,,Progress 7K-TGM No. 213,RU,RU,O,state -1992-024,2448741.88,1992-04-29,1992,Soyuz-U,,Resurs-F2 17F42 No. 8,RU,RU,O,state -1992-025,2448741.92,1992-04-29,1992,Soyuz-U,,Kometa No. 15,RU,RU,O,state -1992-029,2448771.3,1992-05-28,1992,Soyuz-U,,Kobal't,RU,RU,O,state -1992-030,2448776.54,1992-06-03,1992,Kosmos 11K65M,,Strela-1M,RU,RU,O,state -1992-033,2448796.83,1992-06-23,1992,Soyuz-U-PVB,,Resurs-F1 14F43 No. 55,RU,RU,O,state -1992-035,2448804.2,1992-06-30,1992,Soyuz-U2,,Progress 7K-TGM No. 214,RU,RU,O,state -1992-036,2448805.34,1992-07-01,1992,Kosmos 11K65M,,Parus,RU,RU,O,state -1992-040,2448811.91,1992-07-08,1992,Molniya 8K78M-PVB,2BL,Oko,RU,RU,O,state -1992-042,2448817.24,1992-07-13,1992,Tsiklon-3,,Strela-3,RU,RU,O,state -1992-043,2448818.42,1992-07-14,1992,Proton-K/DM-2,,Gorizont No. 37L,RU,RU,O,state -1992-045,2448828.32,1992-07-24,1992,Soyuz-U,,Kobal't,RU,RU,O,state -1992-046,2448830.76,1992-07-27,1992,Soyuz-U2,,Soyuz 7K-STM No. 65,RU,RU,O,state -1992-047,2448833.58,1992-07-30,1992,Proton-K/DM-2,,Uragan No. 56L,RU,RU,O,state -1992-048,2448833.96,1992-07-30,1992,Soyuz-U-PVB,,Oblik,RU,RU,O,state -1992-050,2448841.31,1992-08-06,1992,Molniya 8K78M,ML,Molniya-1T!No. 72,RU,RU,O,state -1992-F01,2448658.26,1992-02-05,1992,Zenit-2,,Tselina-2,RU,RU,F,state -1958 THE,2436543.74,1958-12-06,1958,Juno II,,Pioneer 3,US,US,O,state -1959 NU,2436630.72,1959-03-03,1959,Juno II,,Pioneer 4,US,US,O,state -1967-118,2439823.7,1967-11-29,1967,SPARTA,,WRESAT,US,US,O,state -1959-F07,2436795.52,1959-08-15,1959,Juno II,(3),Beacon,US,US,F,state -1958 ETA,2436487.86,1958-10-11,1958,Thor Able I,,Able 2,US,US,O,state -1958 ZET,2436556.46,1958-12-18,1958,Atlas B,,SCORE,US,US,O,state -1959 BET,2436628.41,1959-02-28,1959,Thor Agena A,,CORONA Test Vehicle 2,US,US,O,state -1959 GAM,2436672.39,1959-04-13,1959,Thor Agena A,,CORONA BIO 1,US,US,O,state -1959 DEL,2436788.1,1959-08-07,1959,Thor Able III,,NASA S-2,US,US,O,state -1959 EPS,2436794.29,1959-08-13,1959,Thor Agena A,,CORONA C-2,US,US,O,state -1959 ZET,2436800.31,1959-08-19,1959,Thor Agena A,,CORONA C-3,US,US,O,state -1959 KAP,2436880.35,1959-11-07,1959,Thor Agena A,,CORONA C-4,US,US,O,state -1959 LAM,2436893.31,1959-11-20,1959,Thor Agena A,,CORONA C-5,US,US,O,state -1960 ALP,2437005.04,1960-03-11,1960,Thor Able IV,,P-2,US,US,O,state -1960 BET,2437025.99,1960-04-01,1960,Thor Able II,M1,A-1,US,US,O,state -1960 GAM,2437038,1960-04-13,1960,Thor Ablestar,,Transit 1B,US,US,O,state -1960 DEL,2437040.35,1960-04-15,1960,Thor Agena A,,CORONA C-8,US,US,O,state -1960 ZET,2437079.23,1960-05-24,1960,Atlas Agena A,,Midas ETS-I F2,US,US,O,state -1960 ETA,2437107.75,1960-06-22,1960,Thor Ablestar,,Transit 2A,US,US,O,state -1960 THE,2437157.36,1960-08-10,1960,Thor Agena A,,CORONA Diagnostic 2,US,US,O,state -1960 KAP,2437165.33,1960-08-18,1960,Thor Agena A,,CORONA C-9,US,US,O,state -1960 MU,2437191.43,1960-09-13,1960,Thor Agena A,,CORONA C-10,US,US,O,state -1960 NU,2437212.24,1960-10-04,1960,Thor Ablestar,,Courier 1B,US,US,O,state -1960 OMI,2437251.36,1960-11-12,1960,Thor Agena B,,CORONA C'-2,US,US,O,state -1960 SIG,2437276.35,1960-12-07,1960,Thor Agena B,,CORONA C'-3,US,US,O,state -1960 TAU,2437289.36,1960-12-20,1960,Thor Agena B,,CORONA RM-1,US,US,O,state -1961 ALP,2437331.35,1961-01-31,1961,Atlas Agena A,,SAMOS F-1,US,US,O,state -1961 EPS,2437348.35,1961-02-17,1961,Thor Agena B,,ARGON 1,US,US,O,state -1961 ZET,2437349.46,1961-02-18,1961,Thor Agena B,,CORONA RM-2,US,US,O,state -1961 ETA,2437352.66,1961-02-22,1961,Thor Ablestar,,Transit 3B,US,US,O,state -1961 LAM,2437398.31,1961-04-08,1961,Thor Agena B,,ARGON 2,US,US,O,state -1961 XI,2437467.46,1961-06-16,1961,Thor Agena B,,CORONA C'-5,US,US,O,state -1961 OMI,2437479.68,1961-06-29,1961,Thor Ablestar,,Transit 4A,US,US,O,state -1961 PI,2437488.48,1961-07-07,1961,Thor Agena B,,CORONA C'-6,US,US,O,state -1961 SIG,2437493.13,1961-07-12,1961,Atlas Agena B,,Midas ETS-II F1,US,US,O,state -1961 PHI,2437534.92,1961-08-23,1961,Atlas Agena B,,NASA P-32,US,US,O,state -1961 PSI,2437542.33,1961-08-30,1961,Thor Agena B,,CORONA C'''-1,US,US,O,state -1961 OME,2437555.33,1961-09-12,1961,Thor Agena B,,CORONA C'''-2,US,US,O,state -1961 A ALP,2437556.09,1961-09-13,1961,Atlas D,,Mercury SC8A,US,US,O,state -1961 A BET,2437560.38,1961-09-17,1961,Thor Agena B,,CORONA C'''-3,US,US,O,state -1961 A GAM,2437586.31,1961-10-13,1961,Thor Agena B,,CORONA C'''-4,US,US,O,state -1961 A DEL,2437594.08,1961-10-21,1961,Atlas Agena B,,Midas ETS-II F2,US,US,O,state -1961 A EPS,2437609.33,1961-11-05,1961,Thor Agena B,,CORONA C'-9,US,US,O,state -1961 A ZET,2437619.39,1961-11-15,1961,Thor Agena B,,CORONA C'-10,US,US,O,state -1961 A ETA,2437619.43,1961-11-15,1961,Thor Ablestar,,Transit 4B,US,US,O,state -1961 A THE,2437621.84,1961-11-18,1961,Atlas Agena B,,NASA P-33,US,US,O,state -1961 A IOT,2437633.13,1961-11-29,1961,Atlas D,,Mercury SC9,US,US,O,state -1961 A KAP,2437646.36,1961-12-12,1961,Thor Agena B,,CORONA C'''-5,US,US,O,state -1961 A LAM,2437656.3,1961-12-22,1961,Atlas Agena B,,Samos E-5,US,US,O,state -1962 ALP,2437691.35,1962-01-26,1962,Atlas Agena B,,NASA P-34,US,US,O,state -1962 GAM,2437716.12,1962-02-20,1962,Atlas D,,Mercury SC13,US,US,O,state -1962 DEL,2437717.28,1962-02-21,1962,Thor Agena B,,Ferret 1,US,US,O,state -1962 EPS,2437723.32,1962-02-27,1962,Thor Agena B,,CORONA M-1,US,US,O,state -1962 ETA,2437731.42,1962-03-07,1962,Atlas Agena B,,Samos E-5,US,US,O,state -1962 KAP,2437764.13,1962-04-09,1962,Atlas Agena B,,Midas ETS-II F3,US,US,O,state -1962 LAM,2437772.54,1962-04-18,1962,Thor Agena B,,CORONA M-2,US,US,O,state -1962 MU,2437778.37,1962-04-23,1962,Atlas Agena B,,Ranger 4,US,US,O,state -1962 PI,2437781.29,1962-04-26,1962,Atlas Agena B,,AFP-201 PVP 851,US,US,O,state -1962 RHO,2437783.52,1962-04-29,1962,Thor Agena B,,CORONA M-3,US,US,O,state -1962 SIG,2437800.32,1962-05-15,1962,Thor Agena B,,ARGON 5,US,US,O,state -1962 TAU,2437809.03,1962-05-24,1962,Atlas D,,Mercury SC18,US,US,O,state -1962 PHI,2437814.54,1962-05-30,1962,Thor Agena B,,CORONA M-4,US,US,O,state -1962 CHI,2437817.52,1962-06-02,1962,Thor Agena B,,CORONA M-5,US,US,O,state -1962 PSI,2437833.26,1962-06-17,1962,Atlas Agena B,,AFP-201 PVP 852,US,US,O,state -1962 OME,2437834.35,1962-06-18,1962,Thor Agena B,,Ferret 2,US,US,O,state -1962 A BET,2437838.52,1962-06-23,1962,Thor Agena B,,CORONA M-6,US,US,O,state -1962 A GAM,2437843.55,1962-06-28,1962,Thor Agena D,,CORONA M-7,US,US,O,state -1962 A ZET,2437864.37,1962-07-18,1962,Atlas Agena B,,AFP-201 PVP 853,US,US,O,state -1962 A ETA,2437866.54,1962-07-21,1962,Thor Agena B,,CORONA M-8,US,US,O,state -1962 A THE,2437873.52,1962-07-28,1962,Thor Agena B,,CORONA M-9,US,US,O,state -1962 A KAP,2437878.51,1962-08-02,1962,Thor Agena D,,CORONA M-10,US,US,O,state -1962 A LAM,2437882.25,1962-08-05,1962,Atlas Agena B,,AFP-201 PVP 854,US,US,O,state -1962 A RHO,2437903.79,1962-08-27,1962,Atlas Agena B,,Mariner R-2,US,US,O,state -1962 A SIG,2437905.54,1962-08-29,1962,Thor Agena D,,CORONA M-11,US,US,O,state -1962 A UPS,2437909.36,1962-09-01,1962,Thor Agena B,,ARGON 10,US,US,O,state -1962 A CHI,2437925.49,1962-09-17,1962,Thor Agena B,,CORONA M-12,US,US,O,state -1962 B BET,2437937.48,1962-09-29,1962,Thor Agena D,,CORONA M-13,US,US,O,state -1962 B DEL,2437941.01,1962-10-03,1962,Atlas D,,Mercury SC16,US,US,O,state -1962 B EPS,2437947.27,1962-10-09,1962,Thor Agena B,,ARGON 9,US,US,O,state -1962 B ETA,2437956.21,1962-10-18,1962,Atlas Agena B,,Ranger 5,US,US,O,state -1962 B KAP,2437964.18,1962-10-26,1962,Thor Agena D,,CORONA R&D FTV 1401,US,US,O,state -1962 B MU,2437968.84,1962-10-31,1962,Thor Ablestar,,ANNA 1B,US,US,O,state -1962 B OMI,2437974.42,1962-11-05,1962,Thor Agena B,,CORONA M-14,US,US,O,state -1962 B RHO,2437993.42,1962-11-24,1962,Thor Agena B,,CORONA M-15,US,US,O,state -1962 B SIG,2438003.4,1962-12-04,1962,Thor Agena D,,CORONA M-16,US,US,O,state -1962 B TAU,2438011.67,1962-12-13,1962,Thor Agena D,,POPPY 1 SV1,US,US,O,state -1962 B PHI,2438013.39,1962-12-14,1962,Thor Agena D,,CORONA M-17,US,US,O,state -1963-002,2438037.38,1963-01-07,1963,Thor Agena D,,CORONA M-18,US,US,O,state -1963-003,2438046.42,1963-01-16,1963,Thor Agena B,,Ferret 3,US,US,O,state -1963-007,2438121.46,1963-04-01,1963,Thor Agena D,,CORONA M-19,US,US,O,state -1963-015,2438165.04,1963-05-15,1963,Atlas D,,Mercury SC20,US,US,O,state -1963-016,2438168.43,1963-05-18,1963,Thor SLV-2A Agena D,,LANYARD 2,US,US,O,state -1963-019,2438193.5,1963-06-12,1963,Thor SLV-2A Agena D,,CORONA M-21,US,US,O,state -1963-021,2438196.1,1963-06-15,1963,Thor Agena D,,SURCAL,US,US,O,state -1963-025,2438207.53,1963-06-27,1963,Thor SLV-2A Agena D,,CORONA M-22,US,US,O,state -1963-027,2438210.44,1963-06-29,1963,Thor SLV-2A Agena B,,Ferret 4,US,US,O,state -1963-029,2438229.5,1963-07-19,1963,Thor Agena D,,CORONA M-23,US,US,O,state -1963-032,2438241.5,1963-07-31,1963,Thor SLV-2A Agena D,,LANYARD 3,US,US,O,state -1963-034,2438266.52,1963-08-25,1963,Thor SLV-2A Agena D,,CORONA J-1,US,US,O,state -1963-035,2438271.35,1963-08-29,1963,Thor SLV-2 Agena D,,ARGON 11,US,US,O,state -1963-037,2438296.46,1963-09-23,1963,Thor SLV-2A Agena D,,CORONA J-2,US,US,O,state -1963-038,2438301.35,1963-09-28,1963,Thor Ablestar,2,Transit VBN-1,US,US,O,state -1963-039,2438319.61,1963-10-17,1963,Atlas Agena D,,Vela 1A,US,US,O,state -1963-042,2438332.39,1963-10-29,1963,Thor SLV-2A Agena D,,ARGON 6,US,US,O,state -1963-048,2438361.39,1963-11-27,1963,Thor SLV-2 Agena D,,CORONA M-25,US,US,O,state -1963-049,2438369.41,1963-12-05,1963,Thor Ablestar,2,Transit VBN-2,US,US,O,state -1963-055,2438385.41,1963-12-21,1963,Thor SLV-2A Agena D,,CORONA M-26,US,US,O,state -1964-001,2438406.34,1964-01-11,1964,Thor SLV-2A Agena D,,POPPY 3/HAYLOFT,US,US,O,state -1964-002,2438413.96,1964-01-19,1964,Thor SLV-2 Agena D,,P35-6,US,US,O,state -1964-004,2438420.08,1964-01-25,1964,Thor SLV-2 Agena B,,Echo C,US,US,O,state -1964-007,2438425.16,1964-01-30,1964,Atlas Agena B,,RA-6,US,US,O,state -1964-008,2438441.4,1964-02-15,1964,Thor SLV-2A Agena D,,CORONA J-5,US,US,O,state -1964-011,2438453.64,1964-02-28,1964,Thor SLV-2A Agena D,,Ferret 5,US,US,O,state -1964-022,2438513.47,1964-04-27,1964,Thor SLV-2A Agena D,,CORONA J-8,US,US,O,state -1964-027,2438551.46,1964-06-04,1964,Thor SLV-2A Agena D,,CORONA J-9,US,US,O,state -1964-030,2438560.16,1964-06-13,1964,Thor SLV-2A Agena D,,ARGON 21,US,US,O,state -1964-031,2438564.71,1964-06-18,1964,Thor SLV-2 Agena D,,P35-8,US,US,O,state -1964-032,2438566.47,1964-06-19,1964,Thor SLV-2A Agena D,,CORONA J-7,US,US,O,state -1964-035,2438579.5,1964-07-02,1964,Thor SLV-2A Agena D,,Ferret 6,US,US,O,state -1964-037,2438587.47,1964-07-10,1964,Thor SLV-2A Agena D,,CORONA J-10,US,US,O,state -1964-040,2438593.85,1964-07-17,1964,Atlas Agena D,,Vela 2A,US,US,O,state -1964-041,2438605.2,1964-07-28,1964,Atlas Agena B,,Ranger 7,US,US,O,state -1964-043,2438613.47,1964-08-05,1964,Thor SLV-2A Agena D,,CORONA J-12,US,US,O,state -1964-048,2438629.16,1964-08-21,1964,Thor SLV-2A Agena D,,ARGON 22,US,US,O,state -1964-052,2438635.83,1964-08-28,1964,Thor SLV-2 Agena B,,Nimbus A,US,US,O,state -1964-054,2438643.56,1964-09-05,1964,Atlas Agena B,,OGO A,US,US,O,state -1964-056,2438653.45,1964-09-14,1964,Thor SLV-2A Agena D,,CORONA J-11,US,US,O,state -1964-061,2438674.41,1964-10-05,1964,Thor SLV-2A Agena D,,CORONA J-3,US,US,O,state -1964-063,2438675.21,1964-10-06,1964,Thor Ablestar,2,NNS O-1,US,US,O,state -1964-067,2438686.42,1964-10-17,1964,Thor SLV-2A Agena D,,CORONA J-13,US,US,O,state -1964-071,2438702.4,1964-11-02,1964,Thor SLV-2A Agena D,,CORONA J-15,US,US,O,state -1964-072,2438703.59,1964-11-04,1964,Thor SLV-2A Agena D,,Ferret 7,US,US,O,state -1964-073,2438705.31,1964-11-05,1964,Atlas Agena D,,Mariner C-2,US,US,O,state -1964-075,2438718.36,1964-11-18,1964,Thor SLV-2A Agena D,,CORONA J-16,US,US,O,state -1964-077,2438728.1,1964-11-28,1964,Atlas Agena D,,Mariner C-3,US,US,O,state -1964-081,2438740.2,1964-12-10,1964,Titan IIIA,,Lead Dummy Payload,US,US,O,state -1964-083,2438742.51,1964-12-13,1964,Thor Ablestar,2,APL SN-43,US,US,O,state -1964-085,2438749.38,1964-12-19,1964,Thor SLV-2A Agena D,,CORONA J-17,US,US,O,state -1964-087,2438751.3,1964-12-21,1964,Thor SLV-2A Agena D,,QUILL,US,US,O,state -1965-002,2438776.38,1965-01-15,1965,Thor SLV-2A Agena D,,CORONA J-18,US,US,O,state -1965-102,2439104.38,1965-12-09,1965,Thor SLV-2A Agena D,,CORONA JX-27,US,US,O,state -1965-008,2438803.14,1965-02-11,1965,Titan IIIA,,Payload Truss,US,US,O,state -1965-010,2438809.21,1965-02-17,1965,Atlas Agena B,,RA-8,US,US,O,state -1965-110,2439119.38,1965-12-24,1965,Thor SLV-2A Agena D,,CORONA J-26,US,US,O,state -1965-013,2438817.41,1965-02-25,1965,Thor SLV-2A Agena D,,CORONA J-14,US,US,O,state -1965-016,2438829.27,1965-03-09,1965,Thor SLV-2 Agena D,,Secor Type II S/N 1,US,US,O,state -1965-017,2438831.07,1965-03-11,1965,Thor Ablestar,2,Secor Type II S/N 3,US,US,O,state -1965-023,2438841.4,1965-03-21,1965,Atlas Agena B,,RA-9,US,US,O,state -1965-026,2438845.38,1965-03-25,1965,Thor SLV-2A Agena D,,CORONA J-19,US,US,O,state -1965-033,2438880.41,1965-04-29,1965,Thor SLV-2A Agena D,,CORONA J-4,US,US,O,state -1965-034,2438887.13,1965-05-06,1965,Titan IIIA,,,US,US,O,state -1965-037,2438899.25,1965-05-18,1965,Thor SLV-2A Agena D,,CORONA J-21,US,US,O,state -1965-045,2438921.42,1965-06-09,1965,Thor SLV-2A Agena D,,CORONA J-20,US,US,O,state -1965-047,2438930.08,1965-06-18,1965,Titan IIIC,,Lead Ballast,US,US,O,state -1965-048,2438936.44,1965-06-24,1965,Thor Ablestar,2,NNS O-4,US,US,O,state -1965-055,2438958.75,1965-07-17,1965,Thor SLV-2A Agena D,,Ferret 8,US,US,O,state -1965-057,2438961.42,1965-07-19,1965,Thor SLV-2A Agena D,,CORONA J-22,US,US,O,state -1965-058,2438961.85,1965-07-20,1965,Atlas Agena D,,Vela 3A,US,US,O,state -1965-065,2438986.42,1965-08-13,1965,Thor Ablestar,2,Dodecapole 2,US,US,O,state -1965-067,2438990.37,1965-08-17,1965,Thor SLV-2A Agena D,,CORONA J-23,US,US,O,state -1965-074,2439026.4,1965-09-22,1965,Thor SLV-2A Agena D,,CORONA J-24,US,US,O,state -1965-079,2439039.24,1965-10-05,1965,Thor SLV-2A Agena D,,CORONA JX-28,US,US,O,state -1965-081,2439048.05,1965-10-14,1965,Thor SLV-2A Agena D,,OGO C,US,US,O,state -1965-082,2439049.22,1965-10-15,1965,Titan IIIC,,LCS 2,US,US,O,state -1965-086,2439062.39,1965-10-28,1965,Thor SLV-2A Agena D,,CORONA J-25,US,US,O,state -1965-098,2439093.7,1965-11-29,1965,Thor SLV-2 Agena B,,Alouette 2,US,US,O,state -1966-100,2439436.47,1966-11-06,1966,Atlas SLV-3 Agena D,,Lunar Orbiter B,US,US,O,state -1966-102,2439438.33,1966-11-08,1966,Thorad SLV-2G Agena D,,CORONA J-38,US,US,O,state -1966-103,2439441.3,1966-11-11,1966,Atlas SLV-3 Agena D,,TDA 7A,US,US,O,state -1966-007,2439159.4,1966-02-02,1966,Thor SLV-2A Agena D,,CORONA J-27,US,US,O,state -1966-009,2439166.32,1966-02-09,1966,Thor SLV-2A Agena D,,Ferret 9,US,US,O,state -1966-110,2439466.59,1966-12-07,1966,Atlas SLV-3 Agena D,,ATS B,US,US,O,state -1966-018,2439194.42,1966-03-09,1966,Thor SLV-2A Agena D,,CORONA J-29,US,US,O,state -1966-118,2439489,1966-12-29,1966,Thor SLV-2A Agena D,,MULTIGROUP 1,US,US,O,state -1966-019,2439201.13,1966-03-16,1966,Atlas SLV-3 Agena D,,TDA 3,US,US,O,state -1966-029,2439223.42,1966-04-07,1966,Thor SLV-2A Agena D,,CORONA J-30,US,US,O,state -1966-031,2439224.32,1966-04-08,1966,Atlas SLV-3 Agena D,,OAO A1,US,US,O,state -1966-040,2439260.83,1966-05-15,1966,Thor SLV-2A Agena B,,Nimbus C,US,US,O,state -1966-042,2439269.58,1966-05-24,1966,Thor SLV-2A Agena D,,CORONA J-33,US,US,O,state -1966-046,2439278.13,1966-06-01,1966,Atlas SLV-3,,TDA 4,US,US,O,state -1966-049,2439283.62,1966-06-07,1966,Atlas SLV-3 Agena B,,OGO B,US,US,O,state -1966-053,2439293.08,1966-06-16,1966,Titan IIIC,,GGTS,US,US,O,state -1966-055,2439298.4,1966-06-21,1966,Thor SLV-2A Agena D,,CORONA J-31,US,US,O,state -1966-056,2439300.51,1966-06-24,1966,Thor SLV-2A Agena D,,Pageos A,US,US,O,state -1966-065,2439325.36,1966-07-18,1966,Atlas SLV-3 Agena D,,TDA 1A,US,US,O,state -1966-072,2439347.37,1966-08-09,1966,Thorad SLV-2G Agena D,,CORONA J-32,US,US,O,state -1966-080,2439381.05,1966-09-12,1966,Atlas SLV-3 Agena D,,TDA 6,US,US,O,state -1966-085,2439389.38,1966-09-20,1966,Thor SLV-2A Agena D,,CORONA J-36,US,US,O,state -1966-086,2439397.3,1966-09-28,1966,Titan IIIB,,GAMBIT-3 Mission 4302,US,US,O,state -1966-099,2439433.08,1966-11-03,1966,Titan IIIC,,OV4-3,US,US,O,state -1967-002,2439505.39,1967-01-14,1967,Thor SLV-2A Agena D,,CORONA J-34,US,US,O,state -1967-003,2439509.1,1967-01-18,1967,Titan IIIC,,IDCSP 8,US,US,O,state -1967-008,2439526.55,1967-02-05,1967,Atlas SLV-3 Agena D,,Lunar Orbiter C,US,US,O,state -1967-109,2439797.4,1967-11-02,1967,Thorad SLV-2G Agena D,,CORONA J-41,US,US,O,state -1967-111,2439800.48,1967-11-05,1967,Atlas SLV-3 Agena D,,ATS C,US,US,O,state -1967-015,2439544.42,1967-02-22,1967,Thor SLV-2A Agena D,,CORONA J-39,US,US,O,state -1967-122,2439834.43,1967-12-09,1967,Thorad SLV-2G Agena D,,CORONA CR-2,US,US,O,state -1967-029,2439580.29,1967-03-30,1967,Thor SLV-2A Agena D,,CORONA J-35,US,US,O,state -1967-031,2439586.64,1967-04-06,1967,Atlas SLV-3 Agena D,,ATS A,US,US,O,state -1967-040,2439608.92,1967-04-28,1967,Titan IIIC,,Vela 4A,US,US,O,state -1967-041,2439615.43,1967-05-04,1967,Atlas SLV-3 Agena D,,Lunar Orbiter D,US,US,O,state -1967-043,2439620.41,1967-05-09,1967,Thorad SLV-2G Agena D,,CORONA J-40,US,US,O,state -1967-053,2439641.9,1967-05-31,1967,Thor SLV-2 Agena D,,NRL PL160,US,US,O,state -1967-060,2439655.75,1967-06-14,1967,Atlas SLV-3 Agena D,,Mariner 67-2,US,US,O,state -1967-062,2439658.4,1967-06-16,1967,Thorad SLV-2G Agena D,,CORONA J-37,US,US,O,state -1967-066,2439673.05,1967-07-01,1967,Titan IIIC,,IDCSP 16,US,US,O,state -1967-071,2439696.66,1967-07-25,1967,Thor SLV-2A Agena D,,MULTIGROUP 2,US,US,O,state -1967-073,2439700.1,1967-07-28,1967,Thor SLV-2A Agena D,,OGO D,US,US,O,state -1967-075,2439704.44,1967-08-01,1967,Atlas SLV-3 Agena D,,Lunar Orbiter E,US,US,O,state -1967-076,2439710.41,1967-08-07,1967,Thorad SLV-2G Agena D,,CORONA J-42,US,US,O,state -1967-087,2439749.32,1967-09-15,1967,Thorad SLV-2G Agena D,,CORONA CR-1,US,US,O,state -1968-004,2439872.92,1968-01-17,1968,Thor SLV-2A Agena D,,MULTIGROUP 3,US,US,O,state -1968-008,2439880.43,1968-01-24,1968,Thorad SLV-2G Agena D,,CORONA J-45,US,US,O,state -1968-112,2440203.43,1968-12-12,1968,Thorad SLV-2G Agena D,,CORONA J-50,US,US,O,state -1968-020,2439930.42,1968-03-14,1968,Thorad SLV-2G Agena D,,CORONA J-48,US,US,O,state -1968-039,2439978.4,1968-05-01,1968,Thorad SLV-2G Agena D,,CORONA CR-3,US,US,O,state -1968-050,2440021.09,1968-06-13,1968,Titan IIIC,,IDCSP 20,US,US,O,state -1968-052,2440028.41,1968-06-20,1968,Thorad SLV-2G Agena D,,CORONA J-47,US,US,O,state -1968-063,2440074.96,1968-08-06,1968,Atlas SLV-3A Agena D,,CANYON 1,US,US,O,state -1968-065,2440076.4,1968-08-07,1968,Thorad SLV-2G Agena D,?,CORONA CR-4,US,US,O,state -1968-078,2440118.4,1968-09-18,1968,Thorad SLV-2G Agena D,?,CORONA J-49,US,US,O,state -1968-081,2440125.82,1968-09-26,1968,Titan IIIC,,OV2-5,US,US,O,state -1968-086,2440134.97,1968-10-05,1968,Thorad SLV-2G Agena D,?,STRAWMAN 1,US,US,O,state -1968-098,2440164.4,1968-11-03,1968,Thorad SLV-2G Agena D,?,CORONA CR-5,US,US,O,state -1969-105,2440560.4,1969-12-04,1969,Thorad SLV-2H Agena D,,CORONA CR-9,US,US,O,state -1969-010,2440258.42,1969-02-05,1969,Thorad SLV-2G Agena D,?,CORONA CR-6,US,US,O,state -1969-013,2440262.38,1969-02-09,1969,Titan IIIC,,Tacsat,US,US,O,state -1969-026,2440300.4,1969-03-19,1969,Thorad SLV-2G Agena D,,CORONA J-43,US,US,O,state -1969-037,2440325.83,1969-04-14,1969,Thorad SLV-2G Agena D,?,Nimbus B2,US,US,O,state -1969-041,2440343.57,1969-05-02,1969,Thorad SLV-2G Agena D,?,CORONA J-44,US,US,O,state -1969-046,2440364.83,1969-05-23,1969,Titan IIIC,,ERS 29,US,US,O,state -1969-051,2440378.11,1969-06-05,1969,Thorad SLV-2H Agena D,,OGO F,US,US,O,state -1969-063,2440426.56,1969-07-24,1969,Thorad SLV-2H Agena D,?,CORONA CR-7,US,US,O,state -1969-065,2440433.93,1969-07-31,1969,Thorad SLV-2G Agena D,?,STRAWMAN 2,US,US,O,state -1969-079,2440487.38,1969-09-22,1969,Thorad SLV-2G Agena D,,CORONA J-46,US,US,O,state -1969-082,2440495.07,1969-09-30,1969,Thorad SLV-2G Agena D,,P-11 No. 4407,US,US,O,state -1970-009,2440621.62,1970-02-04,1970,Thorad SLV-2G Agena D,,SERT 2,US,US,O,state -1970-016,2440650.43,1970-03-04,1970,Thorad SLV-2H Agena D,,CORONA CR-10,US,US,O,state -1970-025,2440684.85,1970-04-08,1970,Thorad SLV-2G Agena D,?,Nimbus D,US,US,O,state -1970-027,2440684.95,1970-04-08,1970,Titan IIIC,,Vela 6A,US,US,O,state -1970-040,2440727.4,1970-05-20,1970,Thorad SLV-2H Agena D,,CORONA CR-11,US,US,O,state -1970-046,2440756.98,1970-06-19,1970,Atlas SLV-3A Agena D,,RHYOLITE 1,US,US,O,state -1970-054,2440790.56,1970-07-23,1970,Thorad SLV-2H Agena D,,CORONA CR-12,US,US,O,state -1970-066,2440824.92,1970-08-26,1970,Thorad SLV-2G Agena D,?,STRAWMAN 3,US,US,O,state -1970-069,2440830.54,1970-09-01,1970,Atlas SLV-3A Agena D,,CANYON 3,US,US,O,state -1970-093,2440896.94,1970-11-06,1970,Titan IIIC,,DSP 1,US,US,O,state -1970-098,2440909.39,1970-11-18,1970,Thorad SLV-2H Agena D,,CORONA QR-2R,US,US,O,state -1971-000,2441076.82,1971-05-05,1971,R-UNK,,See SSN 5310,US,US,O,state -1971-110,2441300.01,1971-12-14,1971,Thorad SLV-2G Agena D,,POPPY 7 SV1,US,US,O,state -1971-022,2441035.38,1971-03-24,1971,Thorad SLV-2H Agena D,,CORONA CR-14,US,US,O,state -1971-039,2441076.82,1971-05-05,1971,Titan IIIC,,DSP 3,US,US,O,state -1971-060,2441148.95,1971-07-16,1971,Thorad SLV-2H Agena D,?,STRAWMAN 4,US,US,O,state -1971-070,2441176.15,1971-08-12,1971,Titan 24B,,GAMBIT-3 Mission 4332,US,US,O,state -1971-076,2441205.4,1971-09-10,1971,Thorad SLV-2H Agena D,,CORONA CR-15,US,US,O,state -1971-089,2441242.07,1971-10-17,1971,Thorad SLV-2G Agena D,,ASTEX P71-2,US,US,O,state -1971-092,2441248.22,1971-10-23,1971,Titan 24B,,GAMBIT-3 Mission 4333,US,US,O,state -1971-095,2441258.63,1971-11-03,1971,Titan IIIC,,DSCS II A-1,US,US,O,state -1972-101,2441672.43,1972-12-20,1972,Atlas SLV-3A Agena D,,CANYON 5,US,US,O,state -1972-002,2441337.27,1972-01-20,1972,Titan IIID,,HEXAGON SV-2,US,US,O,state -1972-103,2441673.24,1972-12-21,1972,Titan 24B,,GAMBIT-3 Mission 4337,US,US,O,state -1972-010,2441377.9,1972-03-01,1972,Titan IIIC,,DSP 4,US,US,O,state -1972-016,2441394.21,1972-03-17,1972,Titan 24B,,GAMBIT-3 Mission 4334,US,US,O,state -1972-032,2441427.41,1972-04-19,1972,Thorad SLV-2H Agena D,,CORONA CR-16,US,US,O,state -1972-039,2441463.28,1972-05-25,1972,Thorad SLV-2H Agena D,,CORONA CR-8R,US,US,O,state -1972-052,2441506.24,1972-07-07,1972,Titan IIID,,HEXAGON SV-3,US,US,O,state -1972-068,2441562.23,1972-09-01,1972,Titan 24B,,GAMBIT-3 Mission 4336,US,US,O,state -1972-079,2441601.25,1972-10-10,1972,Titan IIID,,HEXAGON SV-4,US,US,O,state -1973-100,2442030.5,1973-12-13,1973,Titan IIIC,,DSCS II B-3,US,US,O,state -1973-013,2441747.9,1973-03-06,1973,Atlas SLV-3A Agena D,,RHYOLITE 2,US,US,O,state -1973-014,2441751.38,1973-03-09,1973,Titan IIID,,HEXAGON SV-5,US,US,O,state -1973-028,2441819.19,1973-05-16,1973,Titan 24B,,GAMBIT-3 Mission 4338,US,US,O,state -1973-040,2441845.8,1973-06-12,1973,Titan IIIC,,DSP 2,US,US,O,state -1973-046,2441877.35,1973-07-13,1973,Titan IIID,,HEXAGON SV-6,US,US,O,state -1973-056,2441916.17,1973-08-21,1973,Titan 33B,,Jumpseat 3,US,US,O,state -1973-068,2441953.22,1973-09-27,1973,Titan 24B,,GAMBIT-3 Mission 4340,US,US,O,state -1973-088,2441997.34,1973-11-10,1973,Titan IIID,,HEXAGON SV-7,US,US,O,state -1974-097,2442391.8,1974-12-10,1974,Titan IIIE,,Helios 1,US,US,O,state -1975-114,2442751.35,1975-12-04,1975,Titan IIID,,HEXAGON SV-11,US,US,O,state -1975-017,2442481.7,1975-03-10,1975,Titan 34B,,Jumpseat 4,US,US,O,state -1975-118,2442760.72,1975-12-14,1975,Titan IIIC,,DSP 8,US,US,O,state -1975-032,2442521.2,1975-04-18,1975,Titan 24B,,GAMBIT-3 Mission 4344,US,US,O,state -1975-040,2442553.09,1975-05-20,1975,Titan IIIC,,DSCS II B-5,US,US,O,state -1975-051,2442572.27,1975-06-08,1975,Titan IIID,,HEXAGON SV-10,US,US,O,state -1975-075,2442645.39,1975-08-20,1975,Titan IIIE,,Viking Orbiter 1,US,US,O,state -1975-083,2442665.28,1975-09-09,1975,Titan IIIE,,Viking Orbiter 2,US,US,O,state -1975-098,2442695.3,1975-10-09,1975,Titan 24B,,GAMBIT-3 Mission 4345,US,US,O,state -1976-003,2442792.73,1976-01-15,1976,Titan IIIE,,Helios 2,US,US,O,state -1976-023,2442852.56,1976-03-15,1976,Titan IIIC,,LES 8,US,US,O,state -1976-125,2443132.26,1976-12-19,1976,Titan IIID,,KH11-1 KENNAN,US,US,O,state -1976-027,2442860.26,1976-03-22,1976,Titan 24B,,GAMBIT-3 Mission 4346,US,US,O,state -1976-050,2442932.37,1976-06-02,1976,Titan 34B,,SDS 1,US,US,O,state -1976-059,2442955.63,1976-06-26,1976,Titan IIIC,,DSP 7,US,US,O,state -1976-065,2442968.27,1976-07-08,1976,Titan IIID,,HEXAGON SV-12,US,US,O,state -1976-080,2442997.43,1976-08-06,1976,Titan 34B,,SDS 2,US,US,O,state -1976-094,2443037.28,1976-09-15,1976,Titan 24B,,GAMBIT-3 Mission 4347,US,US,O,state -1977-007,2443180.75,1977-02-06,1977,Titan IIIC,,DSP 9,US,US,O,state -1977-019,2443216.28,1977-03-13,1977,Titan 24B,,GAMBIT-3 Mission 4348,US,US,O,state -1977-034,2443276.1,1977-05-12,1977,Titan IIIC,,DSCS II C-7,US,US,O,state -1977-056,2443322.27,1977-06-27,1977,Titan IIID,,HEXAGON SV-13,US,US,O,state -1977-076,2443376.1,1977-08-20,1977,Titan IIIE,,Voyager 2,US,US,O,state -1977-084,2443392.04,1977-09-05,1977,Titan IIIE,,Voyager 1,US,US,O,state -1977-094,2443410.27,1977-09-23,1977,Titan 24B,,GAMBIT-3 Mission 4349,US,US,O,state -1978-021,2443564.71,1978-02-25,1978,Titan 34B,,Jumpseat 5,US,US,O,state -1994-026,2449476.16,1994-05-03,1994,Titan 401A/Centaur,,TRUMPET 1,US,US,O,state -1994-054,2449591.87,1994-08-27,1994,Titan 401A/Centaur,,MERCURY 1,US,US,O,state -1994-084,2449709.43,1994-12-22,1994,Titan 402A/IUS,,DSP 17,US,US,O,state -1995-022,2449852.07,1995-05-14,1995,Titan 401A/Centaur,,ORION 3,US,US,O,state -1995-034,2449909.03,1995-07-10,1995,Titan 401A/Centaur,,TRUMPET 2,US,US,O,state -1995-060,2450027.72,1995-11-06,1995,Titan 401A/Centaur,,Milstar DFS-2,US,US,O,state -1996-026,2450198.48,1996-04-24,1996,Titan 401A/Centaur,,MERCURY 2,US,US,O,state -1996-038,2450267.52,1996-07-03,1996,Titan 405A,,QUASAR 11?,US,US,O,state -1997-008,2450503.35,1997-02-23,1997,Titan 402B/IUS,,DSP 20,US,US,O,state -1997-068,2450760.59,1997-11-08,1997,Titan 401A/Centaur,,TRUMPET 3,US,US,O,state -1998-029,2450942.57,1998-05-09,1998,Titan 401B/Centaur,,ORION 4,US,US,O,state -1999-028,2451320.9,1999-05-22,1999,Titan 404B,?,MISTY 2?,US,US,O,state -1999-034,2451349.59,1999-06-20,1999,Titan II SLV,,QuikScat,US,US,O,state -1999-067,2451525.23,1999-12-12,1999,Titan II SLV,,DMSP Block 5D-3 S-15,US,US,O,state -2000-024,2451673.17,2000-05-08,2000,Titan 402B/IUS,,DSP 18?,US,US,O,state -2000-047,2451774.49,2000-08-17,2000,Titan 403B,?,ONYX 4,US,US,O,state -2000-055,2451808.93,2000-09-21,2000,Titan II SLV,,NOAA L,US,US,O,state -2001-009,2451968.39,2001-02-27,2001,Titan 401B/Centaur,,Milstar DFS-4,US,US,O,state -2001-033,2452127.81,2001-08-06,2001,Titan 402B/IUS,,DSP,US,US,O,state -2001-044,2452188.39,2001-10-05,2001,Titan 404B,?,Improved CRYSTAL 2107?,US,US,O,state -2002-001,2452290.52,2002-01-16,2002,Titan 401B/Centaur,,Milstar DFS-5,US,US,O,state -2002-032,2452450.27,2002-06-24,2002,Titan II SLV,,NOAA M,US,US,O,state -2003-001,2452646.1,2003-01-06,2003,Titan II SLV,,P98-2 Coriolis,US,US,O,state -2003-012,2452738.07,2003-04-08,2003,Titan 401B/Centaur,,Milstar DFS-6,US,US,O,state -2003-041,2452891.69,2003-09-09,2003,Titan 401B/Centaur,,ORION 5,US,US,O,state -2003-048,2452931.18,2003-10-18,2003,Titan II SLV,,DMSP Block 5D-3 S-20,US,US,O,state -2004-004,2453050.28,2004-02-14,2004,Titan 402B/IUS,,DSP F22,US,US,O,state -2005-011,2453472.07,2005-04-11,2005,Minotaur 1,,USA 165 (XSS-11),US,US,O,state -2005-016,2453490.53,2005-04-30,2005,Titan 405B,?,ONYX 5,US,US,O,state -2005-037,2453636.6,2005-09-23,2005,Minotaur 1,,Streak (STP-R1),US,US,O,state -2005-042,2453663.25,2005-10-19,2005,Titan 404B,?,Improved CRYSTAL 2108?,US,US,O,state -2006-011,2453840.57,2006-04-15,2006,Minotaur 1,,COSMIC,US,US,O,state -2006-058,2454086,2006-12-16,2006,Minotaur 1,,Tacsat-2,US,US,O,state -2007-014,2454214.78,2007-04-24,2007,Minotaur 1,,NFIRE,US,US,O,state -2009-028,2454971.5,2009-05-19,2009,Minotaur 1,,Tacsat 3,US,US,O,state -2010-048,2455465.7,2010-09-26,2010,Minotaur IV,,SBSS Block 10,US,US,O,state -2010-062,2455520.56,2010-11-20,2010,Minotaur IV,H,STP-SIV,US,US,O,state -2011-006,2455599.02,2011-02-06,2011,Minotaur 1,,USA 225,US,US,O,state -2011-029,2455742.63,2011-06-30,2011,Minotaur 1,,ORS-1,US,US,O,state -2011-052,2455832.16,2011-09-27,2011,Minotaur IV+,,TacSat-4,US,US,O,state -2013-064,2456616.55,2013-11-20,2013,Minotaur 1,,ORS-3,US,US,O,state -1958-F09,2436433.01,1958-08-17,1958,Thor Able I,,Able 1,US,US,F,state -1958-F19,2436515.81,1958-11-08,1958,Thor Able I,,Able 3,US,US,F,state -1959-F02,2436723.34,1959-06-03,1959,Thor Agena A,,CORONA BIO 2,US,US,F,state -1959-F08,2436829.11,1959-09-17,1959,Thor Able II,M1,Transit 1A,US,US,F,state -1959-F09,2436898.81,1959-11-26,1959,Atlas Able,,Able IVB,US,US,F,state -1960-F01,2436969.29,1960-02-04,1960,Thor Agena A,,CORONA C-6,US,US,F,state -1960-F02,2436984.34,1960-02-19,1960,Thor Agena A,,CORONA C-7,US,US,F,state -1960-F03,2436991.23,1960-02-26,1960,Atlas Agena A,,Midas ETS-I F1,US,US,F,state -1960-F08,2437115.42,1960-06-29,1960,Thor Agena A,,CORONA Diagnostic 1,US,US,F,state -1960-F10,2437165.33,1960-08-18,1960,Thor Ablestar,,Courier 1A,US,US,F,state -1960-F11,2437203.13,1960-09-25,1960,Atlas Able,,Able VA,US,US,F,state -1960-F13,2437219.36,1960-10-11,1960,Atlas Agena A,,SAMOS E-1,US,US,F,state -1960-F15,2437234.35,1960-10-26,1960,Thor Agena B,,CORONA C'-1,US,US,F,state -1960-F16,2437269.33,1960-11-30,1960,Thor Ablestar,,Transit 3A,US,US,F,state -1960-F18,2437283.88,1960-12-15,1960,Atlas Able,,Able VB,US,US,F,state -1961-F02,2437389.36,1961-03-30,1961,Thor Agena B,,CORONA C'-4,US,US,F,state -1961-F03,2437415.18,1961-04-25,1961,Atlas D,,Mercury SC8,US,US,F,state -1961-F05,2437459.39,1961-06-08,1961,Thor Agena B,,ARGON 3,US,US,F,state -1961-F07,2437502.44,1961-07-21,1961,Thor Agena B,,ARGON 4,US,US,F,state -1961-F08,2437515.5,1961-08-04,1961,Thor Agena B,,CORONA C'-7,US,US,F,state -1961-F09,2437552.31,1961-09-09,1961,Atlas Agena B,,SAMOS E-2,US,US,F,state -1961-F10,2437596.31,1961-10-23,1961,Thor Agena B,,CORONA C'-8,US,US,F,state -1961-F12,2437605.15,1961-11-01,1961,Blue Scout II,,Mercury MS-1,US,US,F,state -1961-F13,2437626.37,1961-11-22,1961,Atlas Agena B,,Samos 4 (E-5),US,US,F,state -1962-F01,2437678.4,1962-01-13,1962,Thor Agena B,,CORONA C'''-6,US,US,F,state -1962-F02,2437688.9,1962-01-24,1962,Thor Ablestar,,GRAB SV4,US,US,F,state -1962-F04,2437795,1962-05-10,1962,Thor Ablestar,,ANNA 1A,US,US,F,state -1962-F07,2437867.89,1962-07-22,1962,Atlas Agena B,,Mariner R-1,US,US,F,state -1963-F02,2438089.41,1963-02-28,1963,Thor SLV-2A Agena D,,CORONA M-20,US,US,F,state -1963-F03,2438107.38,1963-03-18,1963,Thor SLV-2A Agena D,,LANYARD 1,US,US,F,state -1963-F07,2438146.34,1963-04-26,1963,Thor Agena D,,ARGON 12,US,US,F,state -1963-F14,2438343.35,1963-11-09,1963,Thor SLV-2 Agena D,,CORONA M-24,US,US,F,state -1964-F04,2438479.43,1964-03-24,1964,Thor SLV-2A Agena D,,CORONA J-6,US,US,F,state -1964-F10,2438640.13,1964-09-01,1964,Titan IIIA,,Lead Dummy Payload,US,US,F,state -1965-F10,2439006.33,1965-09-02,1965,Thor SLV-2 Agena D,,CORONA R&D FTV 1602,US,US,F,state -1965-F11,2439059.12,1965-10-25,1965,Atlas SLV-3 Agena D,,TDA-2,US,US,F,state -1966-F05,2439249.31,1966-05-03,1966,Thor SLV-2A Agena D,,CORONA J-28,US,US,F,state -1966-F07,2439263.14,1966-05-17,1966,Atlas SLV-3 Agena D,,TDA 5,US,US,F,state -1966-F08,2439364.08,1966-08-26,1966,Titan IIIC,,IDCSP,US,US,F,state -1967-F04,2439607.25,1967-04-26,1967,Titan IIIB,,GAMBIT-3 Mission 4305,US,US,F,state -1968-F04,2439994.85,1968-05-18,1968,Thorad SLV-2G Agena D,,Nimbus B,US,US,F,state -1971-F01,2441000.34,1971-02-17,1971,Thorad SLV-2H Agena D,?,CORONA CR-13,US,US,F,state -1971-F13,2441290.44,1971-12-04,1971,Atlas SLV-3A Agena D,,CANYON 4,US,US,F,state -1972-F01,2441363.92,1972-02-16,1972,Titan 33B,,Jumpseat 2,US,US,F,state -1972-F03,2441458.15,1972-05-20,1972,Titan 24B,,GAMBIT-3 Mission 4335,US,US,F,state -1973-F04,2441860.21,1973-06-26,1973,Titan 24B,,GAMBIT-3 Mission 4339,US,US,F,state -1974-F01,2442090.08,1974-02-11,1974,Titan IIIE,,VDS,US,US,F,state -2015-F03,2457330.66,2015-11-04,2015,Super Strypi,,Hiakasat,US,US,F,state -1958 BET,2436280.01,1958-03-17,1958,Vanguard,,Vanguard Test Satellite,US,US,O,state -1959 ALP,2436617.16,1959-02-17,1959,Vanguard,,Cloud cover satellite,US,US,O,state -1959 ETA,2436829.72,1959-09-18,1959,Vanguard,X-248,Magne-Ray satellite,US,US,O,state -1957-F01,2436179.2,1957-12-06,1957,Vanguard,,Vanguard Test Satellite,US,US,F,state -1958-F01,2436239.81,1958-02-05,1958,Vanguard,,Vanguard Test Satellite,US,US,F,state -1958-F04,2436322.62,1958-04-29,1958,Vanguard,,X-ray satellite,US,US,F,state -1958-F05,2436351.66,1958-05-28,1958,Vanguard,,Lyman Alpha satellite,US,US,F,state -1958-F06,2436380.71,1958-06-26,1958,Vanguard,,X-ray satellite,US,US,F,state -1958-F07,2436409.5,,1958,Project Pilot,,Diagnostic Payload 1,US,US,F,state -1958-F08,2436427.5,,1958,Project Pilot,,Diagnostic Payload 2,US,US,F,state -1958-F10,2436437.5,,1958,Project Pilot,,Diagnostic Payload 3,US,US,F,state -1958-F12,2436440.5,,1958,Project Pilot,,Radiation Payload 1,US,US,F,state -1958-F13,2436441.5,,1958,Project Pilot,,Radiation Payload 2,US,US,F,state -1958-F14,2436443.5,,1958,Project Pilot,,Radiation Payload 3,US,US,F,state -1959-F01,2436672.62,1959-04-14,1959,Vanguard,,Magnetometer satellite,US,US,F,state -1959-F03,2436742.34,1959-06-22,1959,Vanguard,,Radiation Balance sat,US,US,F,state -1992-053,2448846.74,1992-08-12,1992,Kosmos 11K65M,,Strela-2M,RU,RU,O,state -1992-055,2448850.43,1992-08-15,1992,Soyuz-U2,,Progress 7K-TGM No. 209,RU,RU,O,state -1992-056,2448853.93,1992-08-19,1992,Soyuz-U,,Resurs-F1 14F43 No. 54,RU,RU,O,state -1992-059,2448876.25,1992-09-10,1992,Proton-K/DM-2,,Oko-S F5,RU,RU,O,state -1992-062,2448888.17,1992-09-22,1992,Soyuz-U,,Kobal't,RU,RU,O,state -1992-065,2448904.29,1992-10-08,1992,Soyuz-U,,Foton No. 8L,RU,RU,O,state -1992-067,2448910.33,1992-10-14,1992,Molniya 8K78M-PVB,ML,Molniya-3 No. 50,RU,RU,O,state -1992-068,2448916.04,1992-10-20,1992,Tsiklon-3,,Strela-3,RU,RU,O,state -1992-069,2448916.93,1992-10-21,1992,Molniya 8K78M-PVB,2BL,Oko,RU,RU,O,state -1992-071,2448923.22,1992-10-27,1992,Soyuz-U2,,Progress 7K-TGM No. 215,RU,RU,O,state -1992-073,2448924.94,1992-10-29,1992,Kosmos 11K65M,,Parus,RU,RU,O,state -1992-074,2448926.12,1992-10-30,1992,Proton-K/DM-2,,Ekran-M No. 15L,RU,RU,O,state -1992-075,2448942.41,1992-11-15,1992,Soyuz-U-PVB,,Resurs-500 No. 1,RU,RU,O,state -1992-076,2448943.82,1992-11-17,1992,Zenit-2,,Tselina-2,RU,RU,O,state -1992-077,2448947.15,1992-11-20,1992,Soyuz-U,,Kobal't,RU,RU,O,state -1992-080,2448950.67,1992-11-24,1992,Tsiklon-3,,Tselina-D,RU,RU,O,state -1992-081,2448952.01,1992-11-25,1992,Molniya 8K78M-PVB,2BL,Oko,RU,RU,O,state -1992-082,2448954.05,1992-11-27,1992,Proton-K/DM-2,,Gorizont No. 38L,RU,RU,O,state -1992-085,2448958.58,1992-12-02,1992,Molniya 8K78M-PVB,ML,Molniya-3 No. 56,RU,RU,O,state -1992-087,2448965.98,1992-12-09,1992,Soyuz-U,,Neman,RU,RU,O,state -1992-088,2448974.03,1992-12-17,1992,Proton-K/DM-2,,Oko-1 No. 7121,RU,RU,O,state -1992-091,2448979,1992-12-22,1992,Soyuz-U,,Don,RU,RU,O,state -1992-092,2448979.02,1992-12-22,1992,Tsiklon-3,,Musson No. 23,RU,RU,O,state -1992-093,2448981.75,1992-12-25,1992,Zenit-2,,Tselina-2,RU,RU,O,state -1992-094,2448982.34,1992-12-25,1992,Tsiklon-3,,Tselina-D,RU,RU,O,state -1992-095,2448986.06,1992-12-29,1992,Soyuz-U-PVB,,Bion No. 10,RU,RU,O,state -1993-001,2448999.97,1993-01-12,1993,Kosmos 11K65M,,Tsikada,RU,RU,O,state -1993-002,2449000.58,1993-01-13,1993,Molniya 8K78M,ML,Molniya-1T!No. 78,RU,RU,O,state -1993-004,2449007.12,1993-01-19,1993,Soyuz-U,,Kobal't,RU,RU,O,state -1993-005,2449011.75,1993-01-24,1993,Soyuz-U2,,Soyuz 7K-STM No. 101,RU,RU,O,state -1993-006,2449014.16,1993-01-26,1993,Molniya 8K78M,2BL,Oko,RU,RU,O,state -1993-008,2449027.62,1993-02-09,1993,Kosmos 11K65M,,Parus,RU,RU,O,state -1993-010,2449036.34,1993-02-17,1993,Proton-K/DM-2,,Uragan No. 73L,RU,RU,O,state -1993-012,2449040.27,1993-02-21,1993,Soyuz-U2,,Progress 7K-TGM No. 216,RU,RU,O,state -1993-013,2449071.6,1993-03-25,1993,Proton-K/DM-2,,Gran' No. 42L,RU,RU,O,state -1993-016,2449072.6,1993-03-26,1993,Zenit-2,,Tselina-2,RU,RU,O,state -1993-018,2449077,1993-03-30,1993,Tsiklon-2,,US-PM,RU,RU,O,state -1993-019,2449077.65,1993-03-31,1993,Soyuz-U2,,Progress 7K-TGM No. 217,RU,RU,O,state -1993-020,2449079.29,1993-04-01,1993,Kosmos 11K65M,,Parus,RU,RU,O,state -1993-021,2449080.1,1993-04-02,1993,Soyuz-U,,Kobal't,RU,RU,O,state -1993-022,2449084.3,1993-04-06,1993,Molniya 8K78M,2BL,Oko,RU,RU,O,state -1993-024,2449093.83,1993-04-16,1993,Tsiklon-3,,Tselina-R,RU,RU,O,state -1993-025,2449098.52,1993-04-21,1993,Molniya 8K78M,ML,Molniya-3 No. 57,RU,RU,O,state -1993-028,2449104.94,1993-04-27,1993,Soyuz-U,,Kometa No. 16,RU,RU,O,state -1993-029,2449105.65,1993-04-28,1993,Tsiklon-2,,US-PM,RU,RU,O,state -1993-030,2449119.12,1993-05-11,1993,Tsiklon-3,,Strela-3,RU,RU,O,state -1993-033,2449128.89,1993-05-21,1993,Soyuz-U,,Resurs-F2 17F42 No. 9,RU,RU,O,state -1993-034,2449129.78,1993-05-22,1993,Soyuz-U2,,Progress 7K-TGM No. 218,RU,RU,O,state -1993-035,2449133.64,1993-05-26,1993,Molniya 8K78M,ML,Molniya-1T No. 81,RU,RU,O,state -1993-036,2449154.68,1993-06-16,1993,Kosmos 11K65M,,Strela-2M,RU,RU,O,state -1993-038,2449162.68,1993-06-24,1993,Tsiklon-3,,Strela-3,RU,RU,O,state -1993-040,2449163.85,1993-06-25,1993,Soyuz-U-PVB,,Resurs-F1 14F43 No. 57,RU,RU,O,state -1993-043,2449170.11,1993-07-01,1993,Soyuz-U2,,Soyuz 7K-STM No. 66,RU,RU,O,state -1993-044,2449175.8,1993-07-07,1993,Tsiklon-2,,US-PM,RU,RU,O,state -1993-045,2449183.19,1993-07-14,1993,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -1993-047,2449190.86,1993-07-22,1993,Soyuz-U-PVB,,Resurs-T,RU,RU,O,state -1993-049,2449203.54,1993-08-04,1993,Molniya 8K78M,ML,Molniya-3 No. 58,RU,RU,O,state -1993-051,2449210.12,1993-08-10,1993,Molniya 8K78M,2BL,Oko,RU,RU,O,state -1993-052,2449210.43,1993-08-10,1993,Soyuz-U,,Progress 7K-TGM No. 219,RU,RU,O,state -1993-053,2449223.95,1993-08-24,1993,Soyuz-U-PVB,,Resurs-F1 14F43 No. 56,RU,RU,O,state -1993-055,2449230.69,1993-08-31,1993,Tsiklon-3,,Meteor-2 No. 24,RU,RU,O,state -1993-057,2449238.06,1993-09-07,1993,Soyuz-U2,,Don,RU,RU,O,state -1993-059,2449246.82,1993-09-16,1993,Zenit-2,,Tselina-2,RU,RU,O,state -1993-060,2449247.53,1993-09-17,1993,Tsiklon-2,,US-PM,RU,RU,O,state -1993-062,2449261.21,1993-09-30,1993,Proton-K/DM-2,,Gran' No. 41L,RU,RU,O,state -1993-064,2449272.4,1993-10-11,1993,Soyuz-U,,Progress 7K-TGM No. 220,RU,RU,O,state -1993-067,2449287.04,1993-10-26,1993,Kosmos 11K65M,,Taifun-1B,RU,RU,O,state -1993-069,2449289.14,1993-10-28,1993,Proton-K/DM-2,,Gorizont No. 40L,RU,RU,O,state -1993-070,2449294.01,1993-11-02,1993,Kosmos 11K65M,,Parus,RU,RU,O,state -1993-071,2449296.85,1993-11-05,1993,Soyuz-U,,Neman,RU,RU,O,state -1993-072,2449310.08,1993-11-18,1993,Proton-K/DM-2,,Gorizont No. 41L,RU,RU,O,state -1993-079,2449344.36,1993-12-22,1993,Molniya 8K78M,ML,Molniya-1T,RU,RU,O,state -1994-001,2449360.92,1994-01-08,1994,Soyuz-U2,,Soyuz 7K-STM No. 67,RU,RU,O,state -1994-002,2449372.91,1994-01-20,1994,Proton-K/DM-2M,DM-2M,Gals No. 11L,RU,RU,O,state -1994-003,2449377.52,1994-01-25,1994,Tsiklon-3,,Meteor-3 No. 7,RU,RU,O,state -1994-005,2449380.59,1994-01-28,1994,Soyuz-U,,Progress 7K-TGM No. 221,RU,RU,O,state -1994-008,2449388.87,1994-02-05,1994,Proton-K/DM-2,,Globus!No. 13L,RU,RU,O,state -1994-011,2449395.87,1994-02-12,1994,Tsiklon-3,,Strela-3,RU,RU,O,state -1994-012,2449401.83,1994-02-18,1994,Proton-K/DM-2,,Gran' No. 40L,RU,RU,O,state -1994-014,2449413.64,1994-03-02,1994,Tsiklon-3,,AUOS-SM-KI-IK!No. 801,RU,RU,O,state -1994-018,2449429.19,1994-03-17,1994,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -1994-019,2449433.7,1994-03-22,1994,Soyuz-U,,Progress 7K-TGM No. 222,RU,RU,O,state -1994-021,2449453.83,1994-04-11,1994,Proton-K/DM-2,,Uragan No. 58L,RU,RU,O,state -1994-023,2449465.83,1994-04-23,1994,Zenit-2,,Tselina-2,RU,RU,O,state -1994-024,2449468.59,1994-04-26,1994,Kosmos 11K65M,,Parus,RU,RU,O,state -1994-025,2449471.22,1994-04-28,1994,Soyuz-U,,Neman,RU,RU,O,state -1994-030,2449492.58,1994-05-20,1994,Proton-K/DM-2,,Gorizont No. 42L,RU,RU,O,state -1994-031,2449494.69,1994-05-22,1994,Soyuz-U2,,Progress 7K-TGM No. 223,RU,RU,O,state -1994-032,2449510.81,1994-06-07,1994,Soyuz-U-PVB,,Oblik (Priroda),RU,RU,O,state -1994-033,2449518.17,1994-06-14,1994,Soyuz-U-PVB,,Foton No. 9,RU,RU,O,state -1994-036,2449535.02,1994-07-01,1994,Soyuz-U2,,Soyuz 7K-STM No. 68,RU,RU,O,state -1994-038,2449540.5,1994-07-06,1994,Proton-K/DM-2,,Oko-1 No. 7123,RU,RU,O,state -1994-041,2449547.72,1994-07-14,1994,Kosmos 11K65M,,Nadezhda 17F118 No. 104,RU,RU,O,state -1994-042,2449554.23,1994-07-20,1994,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -1994-044,2449562.9,1994-07-29,1994,Soyuz-U,,Kometa No. 17,RU,RU,O,state -1994-045,2449567.33,1994-08-02,1994,Kosmos 11K65M,,Obzor No. 1,RU,RU,O,state -1994-048,2449569.55,1994-08-05,1994,Molniya 8K78M,2BL,Oko,RU,RU,O,state -1994-050,2449576.14,1994-08-11,1994,Proton-K/DM-2,,Uragan No. 67L,RU,RU,O,state -1994-051,2449588.1,1994-08-23,1994,Molniya 8K78M,ML,Molniya-3 No. 60,RU,RU,O,state -1994-052,2449590.1,1994-08-25,1994,Soyuz-U,,Progress 7K-TGM No. 224,RU,RU,O,state -1994-053,2449591,1994-08-26,1994,Zenit-2,,Orlets-2,RU,RU,O,state -1994-060,2449617.25,1994-09-21,1994,Proton-K/DM-2,,Geizer No. 19L,RU,RU,O,state -1994-061,2449623.08,1994-09-27,1994,Kosmos 11K65M,,Vektor,RU,RU,O,state -1994-063,2449629.45,1994-10-03,1994,Soyuz-U2,,Soyuz 7K-STM No. 69,RU,RU,O,state -1994-066,2449637.1,1994-10-11,1994,Tsiklon-3,,Okean-O1 No. 7/NKhM No.,RU,RU,O,state -1994-067,2449639.18,1994-10-13,1994,Proton-K/DM-2M,DM-2M,Ekspress No. 11L,RU,RU,O,state -1994-069,2449657.1,1994-10-31,1994,Proton-K/DM-2,,Elektro No. 1L,RU,RU,O,state -1994-072,2449658.54,1994-11-02,1994,Tsiklon-2,,US-PM,RU,RU,O,state -1994-074,2449660.74,1994-11-04,1994,Zenit-2,,Resurs-O1 No. 3L,RU,RU,O,state -1994-075,2449667.81,1994-11-11,1994,Soyuz-U,,Progress 7K-TGM No. 225,RU,RU,O,state -1994-076,2449676.53,1994-11-20,1994,Proton-K/DM-2,,Uragan No. 62L,RU,RU,O,state -1994-077,2449680.89,1994-11-24,1994,Zenit-2,,Tselina-2,RU,RU,O,state -1994-078,2449685.62,1994-11-29,1994,Tsiklon-3,,Musson No. 24,RU,RU,O,state -1994-081,2449701.1,1994-12-14,1994,Molniya 8K78M,ML,Molniya-1T,RU,RU,O,state -1994-082,2449703,1994-12-16,1994,Proton-K/DM-2,,Al'tair No. 13L,RU,RU,O,state -1994-083,2449706.72,1994-12-20,1994,Kosmos 11K65M,,Strela-2M,RU,RU,O,state -1994-085,2449712.63,1994-12-26,1994,Rokot,K,Radio-ROSTO,RU,RU,O,state -1994-086,2449713.44,1994-12-26,1994,Tsiklon-3,,Strela-3,RU,RU,O,state -1994-087,2449714.98,1994-12-28,1994,Proton-K/DM-2,,Gran' No. 43L,RU,RU,O,state -1994-088,2449715.98,1994-12-29,1994,Soyuz-U,,Neman,RU,RU,O,state -1995-002,2449741.66,1995-01-24,1995,Kosmos 11K65M,,Tsikada,RU,RU,O,state -1995-005,2449764.2,1995-02-15,1995,Soyuz-U,,Progress 7K-TGM No. 226,RU,RU,O,state -1995-006,2449765.24,1995-02-16,1995,Soyuz-U,,Foton No. 10,RU,RU,O,state -1995-008,2449779.04,1995-03-02,1995,Kosmos 11K65M,,Romb,RU,RU,O,state -1995-009,2449783.89,1995-03-07,1995,Proton-K/DM-2,,Uragan No. 65L,RU,RU,O,state -1995-010,2449790.76,1995-03-14,1995,Soyuz-U2,,Soyuz 7K-STM No. 70,RU,RU,O,state -1995-012,2449798.67,1995-03-22,1995,Kosmos 11K65M,,Parus,RU,RU,O,state -1995-014,2449799.2,1995-03-22,1995,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -1995-020,2449817.32,1995-04-09,1995,Soyuz-U,,Progress 7K-TGM No. 227,RU,RU,O,state -1995-024,2449857.65,1995-05-20,1995,Proton-K,,TsM-O No. 17301,RU,RU,O,state -1995-026,2449862.34,1995-05-24,1995,Molniya 8K78M,2BL,Oko,RU,RU,O,state -1995-028,2449876.7,1995-06-08,1995,Tsiklon-2,,US-PM,RU,RU,O,state -1995-031,2449897.27,1995-06-28,1995,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -1995-032,2449903.63,1995-07-05,1995,Kosmos 11K65M,,Nadezhda 17F118,RU,RU,O,state -1995-036,2449918.63,1995-07-20,1995,Soyuz-U,,Progress 7K-TGM No. 228,RU,RU,O,state -1995-037,2449923.16,1995-07-24,1995,Proton-K/DM-2,,Uragan No. 80L,RU,RU,O,state -1995-039,2449932.5,1995-08-02,1995,Molniya 8K78M,SOL,SO-M2 No. 511,RU,RU,O,state -1995-042,2449938.6,1995-08-09,1995,Molniya 8K78M,ML,Molniya-3 No. 59,RU,RU,O,state -1995-045,2449960.31,1995-08-30,1995,Proton-K/DM-2,,Geizer No. 20L,RU,RU,O,state -1995-046,2449960.78,1995-08-31,1995,Tsiklon-3,,Okean-O1 No. 8/NKhM 10,RU,RU,O,state -1995-047,2449963.88,1995-09-03,1995,Soyuz-U2,,Soyuz 7K-STM No. 71,RU,RU,O,state -1995-050,2449986.97,1995-09-26,1995,Soyuz-U,,Resurs-F2 No. 10,RU,RU,O,state -1995-051,2449989.68,1995-09-29,1995,Soyuz-U,,Neman,RU,RU,O,state -1995-052,2449996.64,1995-10-06,1995,Kosmos 11K65M,,Parus,RU,RU,O,state -1995-053,2449999.29,1995-10-08,1995,Soyuz-U,,Progress 7K-TGM No. 229,RU,RU,O,state -1995-054,2450002.18,1995-10-11,1995,Proton-K/DM-2,,Gelios No. 12L,RU,RU,O,state -1995-058,2450022.35,1995-10-31,1995,Zenit-2,,Tselina-2,RU,RU,O,state -1995-063,2450039.1,1995-11-17,1995,Proton-K/DM-2,,Gals No. 12L,RU,RU,O,state -1995-068,2450065.76,1995-12-14,1995,Proton-K/DM-2,,Uragan No. 82L,RU,RU,O,state -1995-070,2450070.11,1995-12-18,1995,Soyuz-U,,Progress 7K-TGM No. 230,RU,RU,O,state -1995-071,2450071.54,1995-12-20,1995,Tsiklon-2,,US-PU/Konus-A,RU,RU,O,state -1995-072,2450079.78,1995-12-28,1995,Molniya 8K78M,2BL,IRS-1C,RU,RU,O,state -1996-004,2450099.15,1996-01-16,1996,Kosmos 11K65M,,Parus,RU,RU,O,state -1996-005,2450107.91,1996-01-25,1996,Proton-K/DM-2,,Gorizont No. 43L,RU,RU,O,state -1996-009,2450132.54,1996-02-19,1996,Tsiklon-3,,Gonets-D1 No. 1 (13),RU,RU,O,state -1996-010,2450132.85,1996-02-19,1996,Proton-K/DM-2,,Gran' No. 44L,RU,RU,O,state -1996-011,2450135.02,1996-02-21,1996,Soyuz-U,,Soyuz 7K-STM No. 72,RU,RU,O,state -1996-016,2450157.24,1996-03-14,1996,Soyuz-U-PVB,,Kobal't,RU,RU,O,state -1996-023,2450196.99,1996-04-23,1996,Proton-K,,TsM-I 77KSI No. 17401,RU,RU,O,state -1996-025,2450198.04,1996-04-24,1996,Kosmos 11K65M,,Taifun-1B,RU,RU,O,state -1996-028,2450208.79,1996-05-05,1996,Soyuz-U,,Progress 7K-TGM No. 231,RU,RU,O,state -1996-034,2450228.59,1996-05-25,1996,Proton-K/DM-2,,Gorizont No. 44L,RU,RU,O,state -1996-043,2450296.33,1996-07-31,1996,Soyuz-U,,Progress 7K-TGM No. 232,RU,RU,O,state -1996-045,2450310.43,1996-08-14,1996,Molniya 8K78M,ML,Molniya-1T,RU,RU,O,state -1996-047,2450313.05,1996-08-17,1996,Soyuz-U,,Soyuz 7K-STM No. 73,RU,RU,O,state -1996-050,2450324.72,1996-08-29,1996,Molniya 8K78M,SOL,Microsatelite,RU,RU,O,state -1996-051,2450330.88,1996-09-04,1996,Zenit-2,,Tselina-2,RU,RU,O,state -1996-052,2450332.03,1996-09-05,1996,Kosmos 11K65M,,Parus,RU,RU,O,state -1996-053,2450333.23,1996-09-06,1996,Proton-K/DM-2,DM1,INMARSAT III F-2,RU,RU,O,state -1996-058,2450353.24,1996-09-26,1996,Proton-K/DM-2M,DM-2M,Ekspress No. 12L,RU,RU,O,state -1996-060,2450380.98,1996-10-24,1996,Molniya 8K78M,2BL,Molniya-3 No. 62,RU,RU,O,state -1996-064,2450404.37,1996-11-16,1996,Proton-K/D-2,,M1 No. 520 (Mars-96),RU,RU,O,state -1996-066,2450407.47,1996-11-19,1996,Soyuz-U,,Progress 7K-TGM No. 233,RU,RU,O,state -1996-069,2450429,1996-12-11,1996,Tsiklon-2,,US-PU,RU,RU,O,state -1996-071,2450437.78,1996-12-20,1996,Kosmos 11K65M,,Parus,RU,RU,O,state -1996-073,2450442.08,1996-12-24,1996,Soyuz-U,,Bion No. 11,RU,RU,O,state -1997-003,2450490.09,1997-02-10,1997,Soyuz-U,,Soyuz 7K-STM No. 74,RU,RU,O,state -1997-006,2450493.66,1997-02-14,1997,Tsiklon-3,,Strela-3,RU,RU,O,state -1997-010,2450511.58,1997-03-04,1997,Start-1.2,,Mozhaets 2,RU,RU,O,state -1997-014,2450545.17,1997-04-06,1997,Soyuz-U,,Progress 7K-TGM No. 234,RU,RU,O,state -1997-015,2450547.87,1997-04-09,1997,Molniya 8K78M,2BL,Oko,RU,RU,O,state -1997-017,2450556.04,1997-04-17,1997,Kosmos 11K65M,,Parus,RU,RU,O,state -1997-022,2450582.52,1997-05-14,1997,Molniya 8K78M,2BL,Oko,RU,RU,O,state -1997-024,2450584.01,1997-05-15,1997,Soyuz-U,,Don,RU,RU,O,state -1997-028,2450606.21,1997-06-06,1997,Proton-K/17S40,DM-5,Arkon 11F664 No. 1,RU,RU,O,state -1997-030,2450618.09,1997-06-18,1997,Proton-K/17S40,DM2,Iridium SV014,RU,RU,O,state -1997-033,2450634.67,1997-07-05,1997,Soyuz-U,,Progress 7K-TGM No. 235,RU,RU,O,state -1997-038,2450666.15,1997-08-05,1997,Soyuz-U,,Soyuz 7K-STM No. 75,RU,RU,O,state -1997-041,2450675.37,1997-08-14,1997,Proton-K/DM-2,,Oko-S F6,RU,RU,O,state -1997-051,2450705.57,1997-09-14,1997,Proton-K/17S40,DM2,Iridium SV029,RU,RU,O,state -1997-052,2450715.2,1997-09-23,1997,Kosmos 11K65M,,Parus,RU,RU,O,state -1997-054,2450716.4,1997-09-24,1997,Molniya 8K78M,ML,Molniya-1T No. 98,RU,RU,O,state -1997-058,2450727.13,1997-10-05,1997,Soyuz-U,,RS-17,RU,RU,O,state -1997-060,2450731.25,1997-10-09,1997,Soyuz-U,,Foton No. 11,RU,RU,O,state -1997-072,2450770.97,1997-11-18,1997,Soyuz-U,,Resurs F-1M,RU,RU,O,state -1993-F01,2449134.56,1993-05-27,1993,Proton-K/DM-2,,Gorizont No. 39L,RU,RU,F,state -1994-F02,2449497.93,1994-05-25,1994,Tsiklon-3,,Tselina-D,RU,RU,F,state -1996-F02,2450217.87,1996-05-14,1996,Soyuz-U,,Kometa No. 18,RU,RU,F,state -1996-F04,2450255.28,1996-06-20,1996,Soyuz-U-PVB,,Kobal't,RU,RU,F,state -1997-F02,2450588.8,1997-05-20,1997,Zenit-2,,Tselina-2,RU,RU,F,state -1998-042,2451001.64,1998-07-07,1998,Shtil'-1,,Tubsat-N,RU,RU,O,state -2006-019,2453882.28,2006-05-26,2006,Shtil'-1,,Vulkan-Kompas-2,RU,RU,O,state -2005-F02,2453543.32,2005-06-21,2005,Volna,,TPS Solar Sail,RU,RU,F,state -2011-071,2455893.85,2011-11-28,2011,Soyuz-2-1B,Fregat,Uragan-M No. 746,RU,RU,O,state -2012-024,2456065.09,2012-05-17,2012,Soyuz-U-PVB,,Kobal't-M,RU,RU,O,state -2012-063,2456245.99,2012-11-14,2012,Soyuz-2-1A,Fregat,Meridian No. 16L,RU,RU,O,state -2013-019,2456408.72,2013-04-26,2013,Soyuz-2-1B,Fregat,Uragan-M No. 747,RU,RU,O,state -2013-028,2456451.28,2013-06-07,2013,Soyuz-2-1B,,Persona No. 2,RU,RU,O,state -2013-078,2456655.02,2013-12-28,2013,Soyuz-2-1V,Volga,Aist-1,RU,RU,O,state -2014-012,2456740.45,2014-03-23,2014,Soyuz-2-1B,Fregat,Uragan-M No. 754,RU,RU,O,state -2014-025,2456784.08,2014-05-06,2014,Soyuz-2-1A,,Kobal't-M No. 564,RU,RU,O,state -2014-032,2456823.22,2014-06-14,2014,Soyuz-2-1B,Fregat,Uragan-M No. 755,RU,RU,O,state -2014-069,2456960.57,2014-10-30,2014,Soyuz-2-1A,Fregat,Meridian No. 17L,RU,RU,O,state -2014-075,2456992.41,2014-11-30,2014,Soyuz-2-1B,Fregat,Glonass-K No. 2,RU,RU,O,state -2014-086,2457016.63,2014-12-25,2014,Soyuz-2-1B,,Lotos-S No. 802,RU,RU,O,state -2015-009,2457080.96,2015-02-27,2015,Soyuz-2-1A,,Bars-M No. 1L,RU,RU,O,state -2015-027,2457179.14,2015-06-05,2015,Soyuz-2-1A,,Kobal't-M No. 565,RU,RU,O,state -2015-029,2457197.2,2015-06-23,2015,Soyuz-2-1B,,Persona No. 3,RU,RU,O,state -2015-066,2457343.77,2015-11-17,2015,Soyuz-2-1B,Fregat,EKS No. 1,RU,RU,O,state -2015-071,2457362.09,2015-12-05,2015,Soyuz-2-1V,Volga,Kanopus-ST/KYuA-1,RU,RU,O,state -2016-008,2457425.51,2016-02-07,2016,Soyuz-2-1B,Fregat,Uragan-M,RU,RU,O,state -2016-020,2457471.9,2016-03-24,2016,Soyuz-2-1A,,Bars-M No. 2,RU,RU,O,state -2016-032,2457537.86,2016-05-29,2016,Soyuz-2-1B,Fregat,Uragan-M No. 753,RU,RU,O,state -2017-027,2457898.77,2017-05-25,2017,Soyuz-2-1B,Fregat,EKS No. 2,RU,RU,O,state -2017-037,2457928.25,2017-06-23,2017,Soyuz-2-1V,Volga,Napryazheniye No. 1?,RU,RU,O,state -2017-055,2458018.5,2017-09-22,2017,Soyuz-2-1B,Fregat,Uragan-M No. 752,RU,RU,O,state -2017-076,2458089.95,2017-12-02,2017,Soyuz-2-1B,,Lotos-S1 No. 803,RU,RU,O,state -2018-028,2458207.24,2018-03-29,2018,Soyuz-2-1V,,EMKA,RU,RU,O,state -2018-053,2458286.41,2018-06-16,2018,Soyuz-2-1B,Fregat,Uragan-M No. 756,RU,RU,O,state -2011-F04,2455919.01,2011-12-23,2011,Soyuz-2-1B,Fregat,Meridian No. 15L?,RU,RU,F,state diff --git a/tests/testthat/testfiles/strange_delim.txt b/tests/testthat/testfiles/strange_delim.txt deleted file mode 100644 index 7bd2449..0000000 --- a/tests/testthat/testfiles/strange_delim.txt +++ /dev/null @@ -1,1387 +0,0 @@ -season|number|production_code|episode_title|guest_star|role -1|002–102|7G02|Bart the Genius|Marcia Wallace|Edna Krabappel; Ms. Melon -1|003–103|7G03|Homer's Odyssey|Sam McMurray|Worker -1|003–103|7G03|Homer's Odyssey|Marcia Wallace|Edna Krabappel -1|006–106|7G06|Moaning Lisa|Miriam Flynn|Ms. Barr -1|006–106|7G06|Moaning Lisa|Ron Taylor|Bleeding Gums Murphy -1|007–107|7G09|The Call of the Simpsons|Albert Brooks|Cowboy Bob -1|008–108|7G07|The Telltale Head|Marcia Wallace|Edna Krabappel -1|009–109|7G11|Life on the Fast Lane|Albert Brooks|Jacques -1|010–110|7G10|Homer's Night Out|Sam McMurray|Gulliver Dark -1|011–111|7G13|The Crepes of Wrath|Christian Coffinet|Gendarme Officer -1|012–112|7G12|Krusty Gets Busted|Kelsey Grammer|Sideshow Bob -1|013–113|7G01|Some Enchanted Evening|June Foray|Babysitter service receptionist; Doofy the Elf -1|013–113|7G01|Some Enchanted Evening|Penny Marshall|Ms. Botz; Lucille Botzcowski -1|013–113|7G01|Some Enchanted Evening|Paul Willson|Florist -2|014–201|7F03|Bart Gets an "F"|Marcia Wallace|Edna Krabappel -2|015–202|7F02|Simpson and Delilah|Harvey Fierstein|Karl -2|016–203|7F04|Treehouse of Horror|James Earl Jones|Removal man; Serak the Preparer; Narrator -2|018–205|7F05|Dancin' Homer|Tony Bennett|Himself -2|018–205|7F05|Dancin' Homer|Daryl Coley|Bleeding Gums Murphy -2|018–205|7F05|Dancin' Homer|Ken Levine|Dan Horde -2|018–205|7F05|Dancin' Homer|Tom Poston|Capital City Goofball -2|020–207|7F07|Bart vs. Thanksgiving|Greg Berg|Rory; Eddie; Radio voice; "Hooray for Everything" Announcer; Security Man -2|020–207|7F07|Bart vs. Thanksgiving|Carol Kane|Maggie Simpson -2|022–209|7F09|Itchy & Scratchy & Marge|Alex Rocco|Roger Meyers Jr. -2|023–210|7F10|Bart Gets Hit by a Car|Phil Hartman|Lionel Hutz; Heaven -2|024–211|7F11|One Fish, Two Fish, Blowfish, Blue Fish|Larry King|Himself -2|024–211|7F11|One Fish, Two Fish, Blowfish, Blue Fish|Joey Miyashima|Toshiro -2|024–211|7F11|One Fish, Two Fish, Blowfish, Blue Fish|Sab Shimono|Master Sushi Chef -2|024–211|7F11|One Fish, Two Fish, Blowfish, Blue Fish|George Takei|Akira -2|024–211|7F11|One Fish, Two Fish, Blowfish, Blue Fish|Diana Tanaka|Hostess -2|025–212|7F12|The Way We Was|Jon Lovitz|Artie Ziff; Mr. Seckofsky -2|026–213|7F13|Homer vs. Lisa and the 8th Commandment|Phil Hartman|Troy McClure; Moses; Cable guy -2|027–214|7F15|Principal Charming|Marcia Wallace|Edna Krabappel -2|028–215|7F16|Oh Brother, Where Art Thou?|Danny DeVito|Herbert Powell -2|029–216|7F14|Bart's Dog Gets an F|Tracey Ullman|Emily Winthropp; Sylvia Winfield -2|029–216|7F14|Bart's Dog Gets an F|Frank Welker|Santa's Little Helper; Additional dog voices -2|030–217|7F17|Old Money|Phil Hartman|Lionel Hutz; Plato -2|030–217|7F17|Old Money|Audrey Meadows|Bea Simmons -2|030–217|7F17|Old Money|Marcia Wallace|Edna Krabappel -2|031–218|7F18|Brush with Greatness|Jon Lovitz|Professor Lombardo -2|031–218|7F18|Brush with Greatness|Ringo Starr|Himself -2|032–219|7F19|Lisa's Substitute|Dustin Hoffman|Mr. Bergstrom -2|032–219|7F19|Lisa's Substitute|Marcia Wallace|Edna Krabappel -2|034–221|7F21|Three Men and a Comic Book|Cloris Leachman|Mrs. Glick -2|034–221|7F21|Three Men and a Comic Book|Daniel Stern|Narrator -3|036–301|7F24|Stark Raving Dad|Michael Jackson|Leon Kompowsky -3|036–301|7F24|Stark Raving Dad|Kipp Lennon|Leon Kompowsky's singing voice -3|037–302|8F01|Mr. Lisa Goes to Washington|Lona Williams|Minnesota girl -3|039–304|8F03|Bart the Murderer|Neil Patrick Harris|Himself playing Bart Simpson -3|039–304|8F03|Bart the Murderer|Phil Hartman|Lionel Hutz; Troy McClure; Joey; Godfather -3|039–304|8F03|Bart the Murderer|Joe Mantegna|Fat Tony; Himself playing Fat Tony -3|039–304|8F03|Bart the Murderer|Marcia Wallace|Edna Krabappel -3|040–305|8F04|Homer Defined|Chick Hearn|Himself -3|040–305|8F04|Homer Defined|Magic Johnson|Himself -3|040–305|8F04|Homer Defined|Jon Lovitz|Aristotle Amadopolis; Mr. Devaro -3|041–306|8F05|Like Father, Like Clown|Jackie Mason|Rabbi Hyman Krustofsky -3|042–307|8F02|Treehouse of Horror II|Marcia Wallace|Edna Krabappel -3|043–308|8F06|Lisa's Pony|Marcia Wallace|Edna Krabappel -3|043–308|8F06|Lisa's Pony|Frank Welker|Princess -3|044–309|8F07|Saturdays of Thunder|Phil Hartman|Troy McClure -3|044–309|8F07|Saturdays of Thunder|Larry McKay|Announcer -3|045–310|8F08|Flaming Moe's|Aerosmith|Themselves -3|045–310|8F08|Flaming Moe's|Phil Hartman|Lionel Hutz -3|045–310|8F08|Flaming Moe's|Kipp Lennon|Sings "Flaming Moe's" (parody of the Cheers theme song) -3|045–310|8F08|Flaming Moe's|Marcia Wallace|Edna Krabappel -3|046–311|8F09|Burns Verkaufen der Kraftwerk|Phil Hartman|Horst; Stockbroker -3|048–313|8F11|Radio Bart|Sting|Himself -3|048–313|8F11|Radio Bart|Marcia Wallace|Edna Krabappel -3|049–314|8F12|Lisa the Greek|Phil Hartman|Troy McClure; Smooth Jimmy Apollo -3|050–315|8F14|Homer Alone|Phil Hartman|Troy McClure -3|051–316|8F16|Bart the Lover|Marcia Wallace|Edna Krabappel -3|052–317|8F13|Homer at the Bat|Wade Boggs|Himself -3|052–317|8F13|Homer at the Bat|Jose Canseco|Himself -3|052–317|8F13|Homer at the Bat|Roger Clemens|Himself -3|052–317|8F13|Homer at the Bat|Terry Cashman|Sings "Talkin' Softball" (parody of the song Talkin' Baseball) -3|052–317|8F13|Homer at the Bat|Ken Griffey, Jr.|Himself -3|052–317|8F13|Homer at the Bat|Don Mattingly|Himself -3|052–317|8F13|Homer at the Bat|Steve Sax|Himself -3|052–317|8F13|Homer at the Bat|Mike Scioscia|Himself -3|052–317|8F13|Homer at the Bat|Ozzie Smith|Himself -3|052–317|8F13|Homer at the Bat|Darryl Strawberry|Himself -3|053–318|8F15|Separate Vocations|Steve Allen|Electronically altered voice of Bart -3|053–318|8F15|Separate Vocations|Marcia Wallace|Edna Krabappel -3|054–319|8F17|Dog of Death|Frank Welker|Santa's Little Helper -3|055–320|8F19|Colonel Homer|Beverly D'Angelo|Lurleen Lumpkin -3|056–321|8F20|Black Widower|Kelsey Grammer|Sideshow Bob -3|057–322|8F21|The Otto Show|Christopher Guest|Nigel Tufnel -3|057–322|8F21|The Otto Show|Michael McKean|David St. Hubbins -3|058–323|8F22|Bart's Friend Falls in Love|Phil Hartman|Troy McClure -3|058–323|8F22|Bart's Friend Falls in Love|Kimmy Robertson|Samantha Stanky -3|058–323|8F22|Bart's Friend Falls in Love|Marcia Wallace|Edna Krabappel -3|058–323|8F23|Brother, Can You Spare Two Dimes?|Danny DeVito|Herbert Powell -3|058–323|8F23|Brother, Can You Spare Two Dimes?|Joe Frazier|Himself -4|060–401|8F24|Kamp Krusty|Gene Merlino|Sings "South of the Border" -4|060–401|8F24|Kamp Krusty|Marcia Wallace|Edna Krabappel -4|061–402|8F18|A Streetcar Named Marge|Phil Hartman|Troy McClure; Lionel Hutz -4|061–402|8F18|A Streetcar Named Marge|Jon Lovitz|Llewellyn Sinclair; Ms. Sinclair -4|061–402|8F18|A Streetcar Named Marge|Lona Williams|Debra Jo Smallwood -4|063–404|9F02|Lisa the Beauty Queen|Bob Hope|Himself -4|063–404|9F02|Lisa the Beauty Queen|Lona Williams|Amber Dempsey -4|064–405|9F04|Treehouse of Horror III|Marcia Wallace|Edna Krabappel -4|065–406|9F03|Itchy & Scratchy: The Movie|Neil Armstrong (archival)|Himself -4|065–406|9F03|Itchy & Scratchy: The Movie|Marcia Wallace|Edna Krabappel -4|066–407|9F05|Marge Gets a Job|Phil Hartman|Troy McClure; Lionel Hutz -4|066–407|9F05|Marge Gets a Job|Tom Jones|Himself -4|066–407|9F05|Marge Gets a Job|Marcia Wallace|Edna Krabappel -4|067–408|9F06|New Kid on the Block|Sara Gilbert|Laura Powers -4|067–408|9F06|New Kid on the Block|Phil Hartman|Lionel Hutz -4|067–408|9F06|New Kid on the Block|Pamela Reed|Ruth Powers -4|068–409|9F07|Mr. Plow|Phil Hartman|Troy McClure -4|068–409|9F07|Mr. Plow|Linda Ronstadt|Herself -4|068–409|9F07|Mr. Plow|Adam West|Himself -4|069–410|9F08|Lisa's First Word|Elizabeth Taylor|Maggie Simpson -4|071–412|9F10|Marge vs. the Monorail|Phil Hartman|Lyle Lanley -4|071–412|9F10|Marge vs. the Monorail|Leonard Nimoy|Himself -4|072–413|9F11|Selma's Choice|Phil Hartman|Lionel Hutz; Troy McClure; Security Guard; Mandy Patinkin -4|072–413|9F11|Selma's Choice|Michele Pillar|Sings "A Natural Woman" -4|073–414|9F12|Brother from the Same Planet|Phil Hartman|Tom; Eddie Muntz -4|073–414|9F12|Brother from the Same Planet|Marcia Wallace|Edna Krabappel -4|074–415|9F13|I Love Lisa|Michael Carrington|Krusty Anniversary Show Announcer; Sideshow Raheem -4|075–416|9F14|Duffless|Phil Hartman|Troy McClure; Lionel Hutz -4|075–416|9F14|Duffless|Kipp Lennon|Sings "Raindrops Keep Fallin' on My Head" -4|075–416|9F14|Duffless|Marcia Wallace|Edna Krabappel -4|076–417|9F15|Last Exit to Springfield|Joyce Brothers|Herself -4|078–419|9F16|The Front|Brooke Shields|Herself -4|079–420|9F18|Whacking Day|Gene Merlino|Sings "Born Free" -4|079–420|9F18|Whacking Day|Barry White|Himself -4|080–421|9F20|Marge in Chains|David Crosby|Himself -4|080–421|9F20|Marge in Chains|Phil Hartman|Troy McClure; Lionel Hutz -4|081–422|9F19|Krusty Gets Kancelled|Johnny Carson|Himself -4|081–422|9F19|Krusty Gets Kancelled|Hugh Hefner|Himself -4|081–422|9F19|Krusty Gets Kancelled|Bette Midler|Herself -4|081–422|9F19|Krusty Gets Kancelled|Luke Perry|Himself -4|081–422|9F19|Krusty Gets Kancelled|Red Hot Chili Peppers|Themselves -4|081–422|9F19|Krusty Gets Kancelled|Elizabeth Taylor|Herself -4|081–422|9F19|Krusty Gets Kancelled|Marcia Wallace|Edna Krabappel -4|081–422|9F19|Krusty Gets Kancelled|Barry White|Himself -5|082–501|9F21|Homer's Barbershop Quartet|David Crosby|Himself -5|082–501|9F21|Homer's Barbershop Quartet|The Dapper Dans|The singing voices of the Be Sharps -5|082–501|9F21|Homer's Barbershop Quartet|George Harrison|Himself -5|083–502|9F22|Cape Feare|Kelsey Grammer|Sideshow Bob -5|083–502|9F22|Cape Feare|Marcia Wallace|Edna Krabappel -5|085–504|1F01|Rosebud|Ramones|Themselves -5|086–505|1F04|Treehouse of Horror IV|Phil Hartman|Lionel Hutz -5|086–505|1F04|Treehouse of Horror IV|Frank Welker|Gremlin -5|086–505|1F03|Marge on the Lam|George Fenneman|Narrator -5|086–505|1F03|Marge on the Lam|Phil Hartman|Troy McClure; Lionel Hutz -5|086–505|1F03|Marge on the Lam|Pamela Reed|Ruth Powers; Truck-stop Waitress -5|088–507|1F05|Bart's Inner Child|Albert Brooks|Brad Goodman -5|088–507|1F05|Bart's Inner Child|James Brown|Himself -5|088–507|1F05|Bart's Inner Child|Phil Hartman|Troy McClure -5|088–507|1F05|Bart's Inner Child|Marcia Wallace|Edna Krabappel -5|089–508|1F06|Boy-Scoutz 'n the Hood|Ernest Borgnine|Himself -5|089–508|1F06|Boy-Scoutz 'n the Hood|Marcia Wallace|Edna Krabappel -5|091–510|1F08|The Last Temptation of Homer|Phil Hartman|Lionel Hutz -5|091–510|1F08|The Last Temptation of Homer|Werner Klemperer|Colonel Klink -5|091–510|1F08|The Last Temptation of Homer|Michelle Pfeiffer|Mindy Simmons -5|091–510|1F08|The Last Temptation of Homer|Marcia Wallace|Edna Krabappel -5|091–510|1F08|$pringfield (Or, How I Learned to; Stop Worrying and Love Legalized Gambling)|Gerry Cooney|Himself -5|091–510|1F08|$pringfield (Or, How I Learned to; Stop Worrying and Love Legalized Gambling)|Robert Goulet|Himself -5|092–511|1F09|Homer the Vigilante|Sam Neill|Molloy -5|093–512|1F11|Bart Gets Famous|Conan O'Brien|Himself -5|093–512|1F11|Bart Gets Famous|Marcia Wallace|Edna Krabappel -5|094–513|1F10|Homer and Apu|Michael Carrington|Black comedian -5|094–513|1F10|Homer and Apu|James Woods|Himself -5|095–514|1F12|Lisa vs. Malibu Stacy|Kathleen Turner|Stacy Lovell -5|096–515|1F13|Deep Space Homer|Buzz Aldrin|Himself -5|096–515|1F13|Deep Space Homer|James Taylor|Himself -5|099–518|1F16|Burns' Heir|Phil Hartman|Lionel Hutz -5|100–519|1F18|Sweet Seymour Skinner's Baadasssss Song|Marcia Wallace|Edna Krabappel -5|100–519|1F18|Sweet Seymour Skinner's Baadasssss Song|Frank Welker|Santa's Little Helper -5|101–520|1F19|The Boy Who Knew Too Much|Phil Hartman|Lionel Hutz -5|101–520|1F19|The Boy Who Knew Too Much|Marcia Wallace|Edna Krabappel -5|102–521|1F21|Lady Bouvier's Lover|Phil Hartman|Troy McClure -5|102–521|1F21|Lady Bouvier's Lover|Kipp Lennon|Sings "The Sound of Grampa" (parody of the song The Sound of Silence) -5|103–522|1F20|Secrets of a Successful Marriage|Phil Hartman|Lionel Hutz -5|103–522|1F20|Secrets of a Successful Marriage|Marcia Wallace|Edna Krabappel -6|105–602|1F17|Lisa's Rival|Winona Ryder|Allison Taylor -6|108–605|2F02|Sideshow Bob Roberts|Henry Corden|Fred Flintstone -6|108–605|2F02|Sideshow Bob Roberts|Dr. Demento|Himself -6|108–605|2F02|Sideshow Bob Roberts|Kelsey Grammer|Sideshow Bob -6|108–605|2F02|Sideshow Bob Roberts|Phil Hartman|Lionel Hutz -6|108–605|2F02|Sideshow Bob Roberts|Larry King|Himself -6|108–605|2F02|Sideshow Bob Roberts|Marcia Wallace|Edna Krabappel -6|109–606|2F03|Treehouse of Horror V|James Earl Jones|Alternate Universe Maggie Simpson -6|109–606|2F03|Treehouse of Horror V|Marcia Wallace|Edna Krabappel -6|110–607|2F04|Bart's Girlfriend|Meryl Streep|Jessica Lovejoy -6|111–608|2F05|Lisa on Ice|Marcia Wallace|Edna Krabappel -6|112–609|2F06|Homer Badman|Dennis Franz|Himself playing Homer Simpson -6|113–610|2F07|Grampa vs. Sexual Inadequacy|Phil Hartman|Troy McClure -6|114–611|2F08|Fear of Flying|Anne Bancroft|Dr. Zweig -6|114–611|2F08|Fear of Flying|Ted Danson|Sam Malone -6|114–611|2F08|Fear of Flying|Woody Harrelson|Woody Boyd -6|114–611|2F08|Fear of Flying|John Ratzenberger|Cliff Clavin -6|114–611|2F08|Fear of Flying|Rhea Perlman|Carla Tortelli -6|114–611|2F08|Fear of Flying|George Wendt|Norm Peterson -6|115–612|2F09|Homer the Great|Patrick Stewart|Number One -6|118–615|2F12|Homie the Clown|Dick Cavett|Himself -6|118–615|2F12|Homie the Clown|Joe Mantegna|Fat Tony -6|118–615|2F12|Homie the Clown|Johnny Unitas|Himself -6|119–616|2F13|Bart vs. Australia|Phil Hartman|Evan Conover -6|120–617|2F14|Homer vs. Patty and Selma|Mel Brooks|Himself -6|120–617|2F14|Homer vs. Patty and Selma|Susan Sarandon|Ballet teacher -6|121–618|2F31|A Star Is Burns|Phil Hartman|Charlton Heston -6|121–618|2F31|A Star Is Burns|Maurice LaMarche|George C. Scott; Hannibal Lecter; Captain James T. Kirk; Eudora Welty -6|121–618|2F31|A Star Is Burns|Jon Lovitz|Jay Sherman -6|122–619|2F15|Lisa's Wedding|Phil Hartman|Troy McClure -6|122–619|2F15|Lisa's Wedding|Mandy Patinkin|Hugh Parkfield -6|123–620|2F18|Two Dozen and One Greyhounds|Frank Welker|Santa's Little Helper; Various dogs -6|124–621|2F19|The PTA Disbands|Marcia Wallace|Edna Krabappel -6|125–622|2F32|'Round Springfield|Steve Allen|Himself -6|125–622|2F32|'Round Springfield|Phil Hartman|Lionel Hutz -6|125–622|2F32|'Round Springfield|Ron Taylor|Bleeding Gums Murphy -6|125–622|2F32|'Round Springfield|Marcia Wallace|Edna Krabappel -6|126–623|2F21|The Springfield Connection|Phil Hartman|Lionel Hutz -6|126–623|2F21|The Springfield Connection|Marcia Wallace|Edna Krabappel -6|127–624|2F22|Lemon of Troy|Marcia Wallace|Edna Krabappel -6|128–625|2F16|Who Shot Mr. Burns? Part 1|Tito Puente|Himself -7|129–701|2F20|Who Shot Mr. Burns? Part 2|Tito Puente|Himself -7|130–702|2F17|Radioactive Man|Phil Hartman|Lionel Hutz -7|130–702|2F17|Radioactive Man|Mickey Rooney|Himself -7|131–703|3F01|Home Sweet Homediddly-Dum-Doodily|Joan Kenley|Telephone voice -7|131–703|3F01|Home Sweet Homediddly-Dum-Doodily|Marcia Wallace|Edna Krabappel -7|131–703|3F01|Home Sweet Homediddly-Dum-Doodily|Frank Welker|Monkey -7|133–705|3F03|Lisa the Vegetarian|Phil Hartman|Troy McClure -7|133–705|3F03|Lisa the Vegetarian|Linda McCartney|Herself -7|133–705|3F03|Lisa the Vegetarian|Paul McCartney|Himself -7|134–706|3F04|Treehouse of Horror VI|Paul Anka|Himself -7|134–706|3F04|Treehouse of Horror VI|Marcia Wallace|Edna Krabappel -7|135–707|3F05|King-Size Homer|Joan Kenley|Telephone voice -7|136–708|3F06|Mother Simpson|Glenn Close|Mona Simpson -7|136–708|3F06|Mother Simpson|Harry Morgan|Bill Gannon -7|137–709|3F08|Sideshow Bob's Last Gleaming|R. Lee Ermey|Colonel Leslie Hapablap -7|137–709|3F08|Sideshow Bob's Last Gleaming|Kelsey Grammer|Sideshow Bob -7|138–710|3F31|The Simpsons 138th Episode Spectacular|Phil Hartman|Troy McClure; Lionel Hutz -7|139–711|3F07|Marge Be Not Proud|Phil Hartman|Troy McClure -7|139–711|3F07|Marge Be Not Proud|Lawrence Tierney|Don Brodka -7|140–712|3F10|Team Homer|Marcia Wallace|Edna Krabappel -7|142–714|3F11|Scenes from the Class Struggle in Springfield|Tom Kite|Himself -7|143–715|3F12|Bart the Fink|Phil Hartman|Troy McClure -7|143–715|3F12|Bart the Fink|Bob Newhart|Himself -7|144–716|3F13|Lisa the Iconoclast|Phil Hartman|Troy McClure -7|144–716|3F13|Lisa the Iconoclast|Donald Sutherland|Hollis Hurlbut -7|144–716|3F13|Lisa the Iconoclast|Marcia Wallace|Edna Krabappel -7|146–718|3F16|The Day the Violence Died|Kirk Douglas|Chester J. Lampwick -7|146–718|3F16|The Day the Violence Died|Phil Hartman|Lionel Hutz -7|146–718|3F16|The Day the Violence Died|Alex Rocco|Roger Meyers Jr. -7|146–718|3F16|The Day the Violence Died|Jack Sheldon|Amendment -7|146–718|3F16|The Day the Violence Died|Suzanne Somers|Herself -7|147–719|3F15|A Fish Called Selma|Jeff Goldblum|MacArthur Parker -7|147–719|3F15|A Fish Called Selma|Phil Hartman|Troy McClure; Fat Tony -7|148–720|3F17|Bart on the Road|Jim Lau|Hong Kong doctor -7|149–721|3F18|22 Short Films About Springfield|Phil Hartman|Lionel Hutz; Hospital chairman -7|150–722|3F19|Raging Abe Simpson and His Grumbling Grandson in "The Curse of the Flying Hellfish"|Marcia Wallace|Edna Krabappel -7|151–723|3F20|Much Apu About Nothing|Joe Mantegna|Fat Tony -7|152–724|3F21|Homerpalooza|Cypress Hill|Themselves -7|152–724|3F21|Homerpalooza|Peter Frampton|Himself -7|152–724|3F21|Homerpalooza|The Smashing Pumpkins|Themselves -7|152–724|3F21|Homerpalooza|Sonic Youth|Themselves -7|153–725|3F22|Summer of 4 Ft. 2|Christina Ricci|Erin -7|153–725|3F22|Summer of 4 Ft. 2|Marcia Wallace|Edna Krabappel -8|154–801|4F02|Treehouse of Horror VII|Phil Hartman|Bill Clinton -8|155–802|3F23|You Only Move Twice|Albert Brooks|Hank Scorpio -8|155–802|3F23|You Only Move Twice|Sally Stevens|Sings "Scorpio" -8|156–803|4F03|The Homer They Fall|Michael Buffer|Himself -8|156–803|4F03|The Homer They Fall|Sally Stevens|Sings "People" -8|156–803|4F03|The Homer They Fall|Paul Winfield|Lucius Sweet -8|157–804|4F05|Burns, Baby Burns|Rodney Dangerfield|Larry Burns -8|161–808|4F07|Hurricane Neddy|Jon Lovitz|Jay Sherman -8|162–809|3F24|El Viaje Misterioso de Nuestro Jomer; (The Mysterious Voyage of Homer)|Johnny Cash|Coyote -8|163–810|3G01|The Springfield Files|Gillian Anderson|Dana Scully -8|163–810|3G01|The Springfield Files|David Duchovny|Fox Mulder -8|163–810|3G01|The Springfield Files|Leonard Nimoy|Himself -8|164–811|4F08|The Twisted World of Marge Simpson|Joe Mantegna|Fat Tony -8|164–811|4F08|The Twisted World of Marge Simpson|Jack Lemmon|Frank Ormand -8|164–811|4F08|The Twisted World of Marge Simpson|Marcia Wallace|Edna Krabappel -8|167–814|4F12|The Itchy & Scratchy & Poochie Show|Phil Hartman|Troy McClure -8|167–814|4F12|The Itchy & Scratchy & Poochie Show|Alex Rocco|Roger Meyers Jr. -8|168–815|4F11|Homer's Phobia|John Waters|John -8|169–816|4F14|Brother from Another Series|Kelsey Grammer|Sideshow Bob -8|169–816|4F14|Brother from Another Series|David Hyde Pierce|Cecil Terwilliger; Man in the crowd -8|169–816|4F14|Brother from Another Series|Marcia Wallace|Edna Krabappel -8|171–818|4F15|Homer vs. the Eighteenth Amendment|Joe Mantegna|Fat Tony -8|171–818|4F15|Homer vs. the Eighteenth Amendment|Dave Thomas|Rex Banner -8|172–819|4F09|Grade School Confidential|Michael Dees|Sings "Embraceable You" -8|172–819|4F09|Grade School Confidential|Marcia Wallace|Edna Krabappel -8|173–820|4F16|The Canine Mutiny|Frank Welker|Santa's Little Helper; Laddie -8|174–821|4F17|The Old Man and the Lisa|Bret Hart|Himself -8|175–822|4F18|In Marge We Trust|Denice Kumagai|Dancer -8|175–822|4F18|In Marge We Trust|Karen Maruyama|Dancer -8|175–822|4F18|In Marge We Trust|Sab Shimono|Mr. Sparkle -8|175–822|4F18|In Marge We Trust|Gedde Watanabe|Factory foreman -8|175–822|4F18|In Marge We Trust|Frank Welker|Baboons -8|176–823|4F19|Homer's Enemy|Frank Welker|Executive Vice President dog -8|177–824|4F20|The Simpsons Spin-Off Showcase|Tim Conway|Himself -8|177–824|4F20|The Simpsons Spin-Off Showcase|Phil Hartman|Troy McClure -8|177–824|4F20|The Simpsons Spin-Off Showcase|Gailard Sartain|Charles "Big" Daddy -8|176–825|4F19|The Secret War of Lisa Simpson|Willem Dafoe|The Commandant -8|176–825|4F19|The Secret War of Lisa Simpson|Marcia Wallace|Edna Krabappel -9|179–901|4F22|The City of New York vs. Homer Simpson|Michael Dees|Sings "New York, New York" -9|179–901|4F22|The City of New York vs. Homer Simpson|Joan Kenley|Telephone voice -9|179–901|4F22|The City of New York vs. Homer Simpson|Kipp Lennon|Sings "I'm Checking In" -9|180–902|4F23|The Principal and the Pauper|Martin Sheen|The real Seymour Skinner -9|180–902|4F23|The Principal and the Pauper|Marcia Wallace|Edna Krabappel -9|181–903|3G02|Lisa's Sax|Fyvush Finkel|Himself playing Krusty -9|182–904|5F02|Treehouse of Horror VIII|Marcia Wallace|Edna Krabappel -9|184–906|5F03|Bart Star|Roy Firestone|Himself -9|184–906|5F03|Bart Star|Mike Judge|Hank Hill -9|184–906|5F03|Bart Star|Joe Namath|Himself -9|185–907|5F04|The Two Mrs. Nahasapeemapetilons|Jan Hooks|Manjula Nahasapeemapetilon -9|185–907|5F04|The Two Mrs. Nahasapeemapetilons|Andrea Martin|Apu's mother -9|185–907|5F04|The Two Mrs. Nahasapeemapetilons|Marcia Wallace|Edna Krabappel -9|186–908|5F05|Lisa the Skeptic|Stephen Jay Gould|Himself -9|186–908|5F05|Lisa the Skeptic|Phil Hartman|Lionel Hutz -9|186–908|5F05|Lisa the Skeptic|Marcia Wallace|Edna Krabappel -9|187–909|5F06|Realty Bites|Phil Hartman|Lionel Hutz -9|188–910|5F07|Miracle on Evergreen Terrace|Alex Trebek|Himself -9|188–910|5F07|Miracle on Evergreen Terrace|Marcia Wallace|Edna Krabappel -9|190–912|5F08|Bart Carny|Jim Varney|Cooder -9|191–913|5F23|The Joy of Sect|Marcia Wallace|Edna Krabappel -9|192–914|5F11|Das Bus|Phil Hartman|Troy McClure -9|192–914|5F11|Das Bus|James Earl Jones|Narrator -9|192–914|5F11|Das Bus|Jack Ong|Fisherman -9|193–915|5F10|The Last Temptation of Krust|Bruce Baum|Himself -9|193–915|5F10|The Last Temptation of Krust|Janeane Garofalo|Herself -9|193–915|5F10|The Last Temptation of Krust|Bobcat Goldthwait|Himself -9|193–915|5F10|The Last Temptation of Krust|Jay Leno|Himself -9|193–915|5F10|The Last Temptation of Krust|Marcia Wallace|Edna Krabappel -9|193–915|5F10|The Last Temptation of Krust|Hank Williams, Jr.|Sings "Canyonero!" -9|193–915|5F10|The Last Temptation of Krust|Steven Wright|Himself -9|194–916|5F12|Dumbbell Indemnity|Helen Hunt|Renee -9|194–916|5F12|Dumbbell Indemnity|Marcia Wallace|Edna Krabappel -9|195–917|4F24|Lisa the Simpson|Phil Hartman|Troy McClure -9|196–918|5F13|This Little Wiggy|Phil Hartman|Troy McClure -9|196–918|5F13|This Little Wiggy|Marcia Wallace|Edna Krabappel -9|197–919|3G04|Simpson Tide|Michael Carrington|Drill instructor -9|197–919|3G04|Simpson Tide|Bob Denver|Himself -9|197–919|3G04|Simpson Tide|Rod Steiger|Captain Tenille -9|198–920|5F14|The Trouble with Trillions|Marcia Wallace|Edna Krabappel -9|198–920|5F14|The Trouble with Trillions|Paul Winfield|Lucius Sweet -9|199–921|5F15|Girly Edition|Marcia Wallace|Edna Krabappel -9|200–922|5F09|Trash of the Titans|Steve Martin|Ray Patterson -9|200–922|5F09|Trash of the Titans|Paul McGuinness|Himself -9|200–922|5F09|Trash of the Titans|Susie Smith|Herself -9|200–922|5F09|Trash of the Titans|U2|Themselves -9|200–922|5F09|Trash of the Titans|Marcia Wallace|Edna Krabappel -9|201–923|5F16|King of the Hill|Brendan Fraser|Brad -9|201–923|5F16|King of the Hill|Steven Weber|Neil -9|202–924|5F17|Lost Our Lisa|Marcia Wallace|Edna Krabappel -9|203–925|5F18|Natural Born Kissers|Marcia Wallace|Edna Krabappel -10|204–1001|5F20|Lard of the Dance|Lisa Kudrow|Alex Whitney -10|205–1002|5F21|The Wizard of Evergreen Terrace|William Daniels|KITT -10|206–1003|5F22|Bart the Mother|Phil Hartman|Troy McClure -10|206–1003|5F22|Bart the Mother|Marcia Wallace|Edna Krabappel -10|207–1004|AABF01|Treehouse of Horror IX|Robert Englund|Freddy Krueger -10|207–1004|AABF01|Treehouse of Horror IX|Kathie Lee Gifford|Herself (live action) -10|207–1004|AABF01|Treehouse of Horror IX|Ed McMahon|Himself -10|207–1004|AABF01|Treehouse of Horror IX|Regis Philbin|Himself (live action) -10|207–1004|AABF01|Treehouse of Horror IX|Jerry Springer|Himself -10|208–1005|5F19|When You Dish Upon a Star|Alec Baldwin|Himself -10|208–1005|5F19|When You Dish Upon a Star|Kim Basinger|Herself -10|208–1005|5F19|When You Dish Upon a Star|Brian Grazer|Himself -10|208–1005|5F19|When You Dish Upon a Star|Ron Howard|Himself -10|209–1006|AABF02|D'oh-in in the Wind|George Carlin|Munchie -10|209–1006|AABF02|D'oh-in in the Wind|Martin Mull|Seth -10|209–1006|AABF02|D'oh-in in the Wind|Yo La Tengo|Play the end credits -10|210–1007|AABF03|Lisa Gets an "A"|Marcia Wallace|Edna Krabappel -10|212–1009|AABF05|Mayored to the Mob|Mark Hamill|Himself; Leavelle; Theater owner -10|212–1009|AABF05|Mayored to the Mob|Joe Mantegna|Fat Tony -10|212–1009|AABF05|Mayored to the Mob|Dick Tufeld|Robot B-9 -10|212–1009|AABF05|Mayored to the Mob|Marcia Wallace|Edna Krabappel -10|213–1010|AABF06|Viva Ned Flanders|The Moody Blues|Themselves -10|213–1010|AABF06|Viva Ned Flanders|Marcia Wallace|Edna Krabappel -10|214–1011|AABF07|Wild Barts Can't Be Broken|Cyndi Lauper|Herself -10|214–1011|AABF07|Wild Barts Can't Be Broken|Franklin D. Roosevelt (archival)|Himself -10|214–1011|AABF07|Wild Barts Can't Be Broken|Marcia Wallace|Edna Krabappel -10|215–1012|AABF08|Sunday, Cruddy Sunday|Troy Aikman|Himself -10|215–1012|AABF08|Sunday, Cruddy Sunday|Rosey Grier|Himself -10|215–1012|AABF08|Sunday, Cruddy Sunday|John Madden|Himself -10|215–1012|AABF08|Sunday, Cruddy Sunday|Dan Marino|Himself -10|215–1012|AABF08|Sunday, Cruddy Sunday|Rupert Murdoch|Himself -10|215–1012|AABF08|Sunday, Cruddy Sunday|Dolly Parton|Herself -10|215–1012|AABF08|Sunday, Cruddy Sunday|Pat Summerall|Himself -10|215–1012|AABF08|Sunday, Cruddy Sunday|Fred Willard|Wally Kogen -10|216–1013|AABF09|Homer to the Max|Ed Begley, Jr.|Himself -10|217–1014|AABF11|I'm with Cupid|Jan Hooks|Manjula Nahasapeemapetilon -10|217–1014|AABF11|I'm with Cupid|Elton John|Himself -10|217–1014|AABF11|I'm with Cupid|Marcia Wallace|Edna Krabappel -10|218–1015|AABF10|Marge Simpson in: "Screaming Yellow Honkers"|John Kassir|Possum -10|218–1015|AABF10|Marge Simpson in: "Screaming Yellow Honkers"|Marcia Wallace|Edna Krabappel -10|218–1015|AABF10|Marge Simpson in: "Screaming Yellow Honkers"|Hank Williams, Jr.|Sings "Canyonero!" -10|221–1018|AABF14|Simpsons Bible Stories|Marcia Wallace|Mrs. Krabapatra -10|222–1019|AABF15|Mom and Pop Art|Michael Dees|Sings "Arrivederci Roma" -10|222–1019|AABF15|Mom and Pop Art|Jasper Johns|Himself -10|222–1019|AABF15|Mom and Pop Art|Isabella Rossellini|Astrid Weller -10|222–1019|AABF15|Mom and Pop Art|Marcia Wallace|Edna Krabappel -10|223–1020|AABF16|The Old Man and the "C" Student|Jack LaLanne|Himself -10|223–1020|AABF16|The Old Man and the "C" Student|NRBQ|Sing "Can't Buy Me Love" -10|224–1021|AABF17|Monty Can't Buy Me Love|Michael McKean|Jerry Rude -10|225–1022|AABF18|They Saved Lisa's Brain|Stephen Hawking|Himself -10|226–1023|AABF20|Thirty Minutes over Tokyo|Denice Kumagai|Mother -10|226–1023|AABF20|Thirty Minutes over Tokyo|Karen Maruyama|Stewardess -10|226–1023|AABF20|Thirty Minutes over Tokyo|George Takei|Wink -10|226–1023|AABF20|Thirty Minutes over Tokyo|Gedde Watanabe|Waiter; Father; Toilet -10|226–1023|AABF20|Thirty Minutes over Tokyo|Keone Young|Sumo wrestler -11|227–1101|AABF23|Beyond Blunderdome|Jack Burns|Edward Christian -11|227–1101|AABF23|Beyond Blunderdome|Mel Gibson|Himself -11|227–1101|AABF23|Beyond Blunderdome|Marcia Wallace|Edna Krabappel -11|228–1102|AABF22|Brother's Little Helper|Mark McGwire|Himself -11|228–1102|AABF22|Brother's Little Helper|Marcia Wallace|Edna Krabappel -11|229–1103|AABF21|Guess Who's Coming to Criticize Dinner?|Edward Asner|Newspaper editor -11|229–1103|AABF21|Guess Who's Coming to Criticize Dinner?|Marcia Wallace|Edna Krabappel -11|230–1104|BABF01|Treehouse of Horror X|Tom Arnold|Himself -11|230–1104|BABF01|Treehouse of Horror X|Dick Clark|Himself -11|230–1104|BABF01|Treehouse of Horror X|Lucy Lawless|Herself -11|230–1104|BABF01|Treehouse of Horror X|Frank Welker|Werewolf; Werewolf Flanders -11|231–1105|AABF19|E-I-E-I-(Annoyed Grunt)|The B-52's|Sing "Glove Slap" (parody of the song Love Shack) -11|231–1105|AABF19|E-I-E-I-(Annoyed Grunt)|Marcia Wallace|Edna Krabappel -11|231–1105|AABF19|E-I-E-I-(Annoyed Grunt)|Frank Welker|Various animals -11|232–1106|BABF02|Hello Gutter, Hello Fadder|Ron Howard|Himself -11|232–1106|BABF02|Hello Gutter, Hello Fadder|Penn Jillette|Himself -11|232–1106|BABF02|Hello Gutter, Hello Fadder|Pat O'Brien|Himself -11|232–1106|BABF02|Hello Gutter, Hello Fadder|Nancy O'Dell|Herself -11|232–1106|BABF02|Hello Gutter, Hello Fadder|Teller|Himself -11|232–1106|BABF02|Hello Gutter, Hello Fadder|Marcia Wallace|Edna Krabappel -11|233–1107|BABF03|Eight Misbehavin'|Jan Hooks|Manjula Nahasapeemapetilon -11|233–1107|BABF03|Eight Misbehavin'|Garry Marshall|Larry Kidkill -11|233–1107|BABF03|Eight Misbehavin'|Butch Patrick|Himself -11|233–1107|BABF03|Eight Misbehavin'|Marcia Wallace|Edna Krabappel -11|233–1107|BABF03|Eight Misbehavin'|Frank Welker|Zoo animals -11|234–1108|BABF05|Take My Wife, Sleaze|John Goodman|Meathook -11|234–1108|BABF05|Take My Wife, Sleaze|Jan Hooks|Manjula Nahasapeemapetilon -11|234–1108|BABF05|Take My Wife, Sleaze|Jay North|Himself -11|234–1108|BABF05|Take My Wife, Sleaze|NRBQ|Perform various songs -11|234–1108|BABF05|Take My Wife, Sleaze|Marcia Wallace|Edna Krabappel -11|234–1108|BABF05|Take My Wife, Sleaze|Henry Winkler|Ramrod -11|235–1109|BABF07|Grift of the Magi|Clarence Clemons|Narrator -11|235–1109|BABF07|Grift of the Magi|Gary Coleman|Himself -11|235–1109|BABF07|Grift of the Magi|Joe Mantegna|Fat Tony -11|235–1109|BABF07|Grift of the Magi|Tim Robbins|Jim Hope -11|235–1109|BABF07|Grift of the Magi|Marcia Wallace|Edna Krabappel -11|236–1110|BABF04|Little Big Mom|Elwood Edwards|Virtual doctor -11|236–1110|BABF04|Little Big Mom|Marcia Wallace|Edna Krabappel -11|237–1111|BABF06|Faith Off|Don Cheadle|Brother Faith -11|237–1111|BABF06|Faith Off|Joe Mantegna|Fat Tony -11|237–1111|BABF06|Faith Off|Marcia Wallace|Edna Krabappel -11|238–1112|BABF08|The Mansion Family|Britney Spears|Herself -11|239–1113|BABF09|Saddlesore Galactica|Randy Bachman|Himself -11|239–1113|BABF09|Saddlesore Galactica|Jim Cummings|Duncan; Furious D -11|239–1113|BABF09|Saddlesore Galactica|Trevor Denman|Track announcer -11|239–1113|BABF09|Saddlesore Galactica|Fred Turner|Himself -11|240–1114|BABF10|Alone Again, Natura-Diddily|Shawn Colvin|Rachel Jordan -11|240–1114|BABF10|Alone Again, Natura-Diddily|Marcia Wallace|Edna Krabappel -11|240–1114|BABF10|Alone Again, Natura-Diddily|Frank Welker|Parrot -11|241–1115|BABF11|Missionary: Impossible|Betty White|Herself -11|242–1116|BABF12|Pygmoelian|Marcia Wallace|Edna Krabappel -11|244–1118|BABF14|Days of Wine and D'oh'ses|Marcia Wallace|Edna Krabappel -11|245–1119|BABF16|Kill the Alligator and Run|Diedrich Bader|Sheriff -11|245–1119|BABF16|Kill the Alligator and Run|Joe C.|Himself -11|245–1119|BABF16|Kill the Alligator and Run|Robert Evans|Himself -11|245–1119|BABF16|Kill the Alligator and Run|Kid Rock|Himself -11|245–1119|BABF16|Kill the Alligator and Run|Charlie Rose|Himself -11|246–1120|BABF15|Last Tap Dance in Springfield|Frank Welker|Lion -11|247–1121|BABF18|It's a Mad, Mad, Mad, Mad Marge|Parker Posey|Becky -11|247–1121|BABF18|It's a Mad, Mad, Mad, Mad Marge|Marcia Wallace|Edna Krabappel -11|247–1121|BABF18|It's a Mad, Mad, Mad, Mad Marge|Marc Wilmore|Dr. Wilmore -11|248–1122|BABF19|Behind the Laughter|Jim Forbes|Narrator -11|248–1122|BABF19|Behind the Laughter|Willie Nelson|Himself -11|248–1122|BABF19|Behind the Laughter|Marcia Wallace|Edna Krabappel -12|249–1201|BABF21|Treehouse of Horror XI|Frank Welker|Dolphins -12|250–1202|BABF20|A Tale of Two Springfields|Gary Coleman|Himself -12|250–1202|BABF20|A Tale of Two Springfields|Marcia Wallace|Edna Krabappel -12|250–1202|BABF20|A Tale of Two Springfields|Frank Welker|Badger; Woodpecker -12|250–1202|BABF20|A Tale of Two Springfields|The Who|Themselves -12|251–1203|BABF17|Insane Clown Poppy|Drew Barrymore|Sophie -12|251–1203|BABF17|Insane Clown Poppy|Stephen King|Himself -12|251–1203|BABF17|Insane Clown Poppy|Joe Mantegna|Fat Tony -12|251–1203|BABF17|Insane Clown Poppy|Jay Mohr|Christopher Walken -12|251–1203|BABF17|Insane Clown Poppy|Amy Tan|Herself -12|251–1203|BABF17|Insane Clown Poppy|John Updike|Himself -12|252–1204|CABF01|Lisa the Tree Hugger|Joshua Jackson|Jesse Grass -12|253–1205|CABF04|Homer vs. Dignity|Leeza Gibbons|Herself -12|253–1205|CABF04|Homer vs. Dignity|Marcia Wallace|Edna Krabappel -12|254–1206|CABF02|The Computer Wore Menace Shoes|Patrick McGoohan|Number Six -12|254–1206|CABF02|The Computer Wore Menace Shoes|Marcia Wallace|Edna Krabappel -12|255–1207|CABF03|The Great Money Caper|Edward Norton|Devon Bradley -12|256–1208|CABF06|Skinner's Sense of Snow|Marcia Wallace|Edna Krabappel -12|258–1210|CABF05|Pokey Mom|Michael Keaton|Jack Crowley -12|258–1210|CABF05|Pokey Mom|Charles Napier|Warden -12|258–1210|CABF05|Pokey Mom|Robert Schimmel|Convict -12|258–1210|CABF05|Pokey Mom|Bruce Vilanch|Himself -12|258–1210|CABF05|Pokey Mom|Marcia Wallace|Edna Krabappel -12|259–1211|CABF08|Worst Episode Ever|Neil Armstrong (archival)|Himself -12|259–1211|CABF08|Worst Episode Ever|Johnnie Cochran (archival)|Himself -12|259–1211|CABF08|Worst Episode Ever|Richard Nixon (archival)|Himself -12|259–1211|CABF08|Worst Episode Ever|Tom Savini|Himself -12|260–1212|CABF07|Tennis the Menace|Andre Agassi|Himself -12|260–1212|CABF07|Tennis the Menace|Pete Sampras|Himself -12|260–1212|CABF07|Tennis the Menace|Marcia Wallace|Edna Krabappel -12|260–1212|CABF07|Tennis the Menace|Serena Williams|Herself -12|260–1212|CABF07|Tennis the Menace|Venus Williams|Herself -12|261–1213|CABF10|Day of the Jackanapes|Gary Coleman|Himself -12|261–1213|CABF10|Day of the Jackanapes|Kelsey Grammer|Sideshow Bob -12|262–1214|CABF12|New Kids on the Blecch|'N Sync|Themselves -12|263–1215|CABF09|Hungry, Hungry Homer|Stacy Keach|Howard K. Duff VIII -12|263–1215|CABF09|Hungry, Hungry Homer|Marcia Wallace|Edna Krabappel -12|264–1216|CABF11|Bye Bye Nerdie|Kathy Griffin|Francine -12|264–1216|CABF11|Bye Bye Nerdie|Jan Hooks|Manjula Nahasapeemapetilon -12|264–1216|CABF11|Bye Bye Nerdie|Marcia Wallace|Edna Krabappel -12|265–1217|CABF13|Simpson Safari|Frank Welker|Various animals -12|266–1218|CABF14|Trilogy of Error|Joe Mantegna|Fat Tony -12|266–1218|CABF14|Trilogy of Error|Frankie Muniz|Thelonius -12|267–1219|CABF15|I'm Goin' to Praiseland|Shawn Colvin|Rachel Jordan -12|267–1219|CABF15|I'm Goin' to Praiseland|Marcia Wallace|Edna Krabappel -12|269–1221|CABF17|Simpsons Tall Tales|Marcia Wallace|Edna Krabappel -12|269–1221|CABF17|Simpsons Tall Tales|Frank Welker|Babe, the Blue Ox; Various animals -13|270–1301|CABF19|Treehouse of Horror XII|Pierce Brosnan|Ultrahouse's Pierce Brosnan voice; Himself -13|270–1301|CABF19|Treehouse of Horror XII|Matthew Perry|Ultrahouse's Matthew Perry voice -13|270–1301|CABF19|Treehouse of Horror XII|Marcia Wallace|Edna Krabappel -13|271–1302|CABF22|The Parent Rap|Jess Harnell|Various animals -13|271–1302|CABF22|The Parent Rap|Jane Kaczmarek|Judge Constance Harm -13|271–1302|CABF22|The Parent Rap|Marcia Wallace|Edna Krabappel -13|272–1303|CABF20|Homer the Moe|R.E.M.|Themselves -13|273–1304|CABF18|A Hunka Hunka Burns in Love|Julia Louis-Dreyfus|Gloria -13|273–1304|CABF18|A Hunka Hunka Burns in Love|George Takei|Waiter -13|274–1305|CABF21|The Blunder Years|Joe Mantegna|Fat Tony -13|274–1305|CABF21|The Blunder Years|Paul Newman|Himself -13|274–1305|CABF21|The Blunder Years|Judith Owen|Herself -13|275–1306|DABF02|She of Little Faith|Richard Gere|Himself -13|276–1307|DABF01|Brawl in the Family|Jane Kaczmarek|Judge Constance Harm -13|276–1307|DABF01|Brawl in the Family|Delroy Lindo|Gabriel -13|277–1308|DABF03|Sweets and Sour Marge|Ben Stiller|Garth Motherloving -13|278–1309|DABF05|Jaws Wired Shut|Dana Gould|Producer -13|278–1309|DABF05|Jaws Wired Shut|John Kassir|Various Animals -13|279–1310|DABF04|Half-Decent Proposal|Jon Lovitz|Artie Ziff -13|279–1310|DABF04|Half-Decent Proposal|Marcia Wallace|Edna Krabappel -13|280–1311|DABF06|The Bart Wants What It Wants|Wolfgang Puck|Himself -13|280–1311|DABF06|The Bart Wants What It Wants|Reese Witherspoon|Greta Wolfcastle -13|281–1312|DABF07|The Lastest Gun in the West|Dennis Weaver|Buck McCoy -13|281–1312|DABF07|The Lastest Gun in the West|Frank Welker|Dog -13|282–1313|DABF09|The Old Man and the Key|Olympia Dukakis|Zelda -13|282–1313|DABF09|The Old Man and the Key|Bill Saluga|Ray J. Johnson -13|283–1314|DABF08|Tales from the Public Domain|Sally Stevens|Sings "Island of Sirens" (parody of the song Copacabana) -13|285–1316|DABF11|Weekend at Burnsie's|Phish|Themselves -13|287–1318|DABF13|I Am Furious (Yellow)|Stan Lee|Himself -13|287–1318|DABF13|I Am Furious (Yellow)|Marcia Wallace|Edna Krabappel -13|288–1319|DABF14|The Sweetest Apu|James Lipton|Himself -13|289–1320|DABF15|Little Girl in the Big Ten|Robert Pinsky|Himself -13|290–1321|DABF16|The Frying Game|Carmen Electra|Herself -13|290–1321|DABF16|The Frying Game|Frances Sternhagen|Mrs. Bellamy -13|291–1322|DABF17|Poppa's Got a Brand New Badge|Joe Mantegna|Fat Tony -13|291–1322|DABF17|Poppa's Got a Brand New Badge|Marcia Wallace|Edna Krabappel -14|293–1402|DABF22|How I Spent My Strummer Vacation|Elvis Costello|Himself -14|293–1402|DABF22|How I Spent My Strummer Vacation|Mick Jagger|Himself -14|293–1402|DABF22|How I Spent My Strummer Vacation|Lenny Kravitz|Himself -14|293–1402|DABF22|How I Spent My Strummer Vacation|Tom Petty|Himself -14|293–1402|DABF22|How I Spent My Strummer Vacation|Keith Richards|Himself -14|293–1402|DABF22|How I Spent My Strummer Vacation|Brian Setzer|Himself -14|293–1402|DABF22|How I Spent My Strummer Vacation|Marcia Wallace|Edna Krabappel -14|294–1403|DABF20|Bart vs. Lisa vs. the Third Grade|Tony Bennett|Sings "Capital City" -14|294–1403|DABF20|Bart vs. Lisa vs. the Third Grade|Marcia Wallace|Edna Krabappel -14|295–1404|DABF18|Large Marge|Baha Men|Themselves -14|295–1404|DABF18|Large Marge|Jan Hooks|Manjula Nahasapeemapetilon -14|295–1404|DABF18|Large Marge|Marcia Wallace|Edna Krabappel -14|295–1404|DABF18|Large Marge|Burt Ward|Robin -14|295–1404|DABF18|Large Marge|Adam West|Batman -14|296–1405|DABF21|Helter Shelter|Larry Holmes|Himself -14|296–1405|DABF21|Helter Shelter|David Lander|Himself -14|297–1406|EABF01|The Great Louse Detective|Kelsey Grammer|Sideshow Bob -14|297–1406|EABF01|The Great Louse Detective|Sally Stevens|Sings "The Way We Were" -14|298–1407|EABF02|Special Edna|Little Richard|Himself -14|298–1407|EABF02|Special Edna|Marcia Wallace|Edna Krabappel -14|299–1408|EABF03|The Dad Who Knew Too Little|Elliott Gould|Himself -14|300–1409|EABF04|Strong Arms of the Ma|Pamela Reed|Ruth Powers -14|301–1410|EABF06|Pray Anything|Ken Burns|Himself -14|301–1410|EABF06|Pray Anything|Lisa Leslie|Herself -14|302–1411|EABF05|Barting Over|Blink-182|Themselves -14|302–1411|EABF05|Barting Over|Tony Hawk|Himself -14|302–1411|EABF05|Barting Over|Jane Kaczmarek|Judge Constance Harm -14|302–1411|EABF05|Barting Over|Marcia Wallace|Edna Krabappel -14|303–1412|EABF07|I'm Spelling as Fast as I Can|George Plimpton|Himself -14|304–1413|EABF08|A Star Is Born Again|James L. Brooks|Himself -14|304–1413|EABF08|A Star Is Born Again|Helen Fielding|Herself -14|304–1413|EABF08|A Star Is Born Again|Gene Merlino|Sings "Jellyfish" -14|304–1413|EABF08|A Star Is Born Again|Marisa Tomei|Sara Sloane -14|304–1413|EABF08|A Star Is Born Again|Marcia Wallace|Edna Krabappel -14|305–1414|EABF09|Mr. Spritz Goes to Washington|Joe Mantegna|Fat Tony -14|307–1416|EABF11|'Scuse Me While I Miss the Sky|Eric Idle|Declan Desmond -14|307–1416|EABF11|'Scuse Me While I Miss the Sky|Joe Mantegna|Fat Tony -14|307–1416|EABF11|'Scuse Me While I Miss the Sky|Marcia Wallace|Edna Krabappel -14|308–1417|EABF12|Three Gays of the Condo|Terry W. Greene|Large Gay Military Man -14|308–1417|EABF12|Three Gays of the Condo|Ben Schatz|Himself -14|308–1417|EABF12|Three Gays of the Condo|Scott Thompson|Grady -14|308–1417|EABF12|Three Gays of the Condo|"Weird Al" Yankovic|Himself -14|309–1418|EABF13|Dude, Where's My Ranch?|David Byrne|Himself -14|309–1418|EABF13|Dude, Where's My Ranch?|Andy Serkis|Cleanie -14|309–1418|EABF13|Dude, Where's My Ranch?|Jonathan Taylor Thomas|Luke Stetson -14|310–1419|EABF14|Old Yeller Belly|Stacy Keach|Howard K. Duff VII -14|310–1419|EABF14|Old Yeller Belly|John Kassir|Various animals -14|311–1420|EABF15|Brake My Wife, Please|Jackson Browne|Himself -14|311–1420|EABF15|Brake My Wife, Please|Steve Buscemi|Himself -14|311–1420|EABF15|Brake My Wife, Please|Jane Kaczmarek|Judge Constance Harm -14|311–1420|EABF15|Brake My Wife, Please|Marcia Wallace|Edna Krabappel -14|313–1422|EABF17|Moe Baby Blues|Joe Mantegna|Fat Tony -15|314–1501|EABF21|Treehouse of Horror XIV|Oscar De La Hoya|Himself -15|314–1501|EABF21|Treehouse of Horror XIV|Jennifer Garner|Herself -15|314–1501|EABF21|Treehouse of Horror XIV|Dudley R. Herschbach|Himself -15|314–1501|EABF21|Treehouse of Horror XIV|Jerry Lewis|Professor John Frink Sr. -15|315–1502|EABF18|My Mother the Carjacker|Glenn Close|Mona Simpson -15|316–1503|EABF20|The President Wore Pearls|Michael Moore|Himself -15|316–1503|EABF20|The President Wore Pearls|Marcia Wallace|Edna Krabappel -15|317–1504|EABF22|The Regina Monologues|Tony Blair|Himself -15|317–1504|EABF22|The Regina Monologues|Jane Leeves|Edwina -15|317–1504|EABF22|The Regina Monologues|Evan Marriott|Himself -15|317–1504|EABF22|The Regina Monologues|Ian McKellen|Himself -15|317–1504|EABF22|The Regina Monologues|J. K. Rowling|Herself -15|318–1505|EABF19|The Fat and the Furriest|Charles Napier|Grant Connor -15|319–1506|FABF01|Today I Am A Clown|Jackie Mason|Rabbi Hyman Krustofsky -15|319–1506|FABF01|Today I Am A Clown|Mr. T|Himself -15|320–1507|FABF02|'Tis the Fifteenth Season|Jim Gilstrap|Soulful Prune -15|321–1508|FABF03|Marge vs. Singles, Seniors, Childless Couples and Teens and Gays|Marcia Wallace|Edna Krabappel -15|323–1510|FABF05|Diatribe of a Mad Housewife|Tom Clancy|Himself -15|323–1510|FABF05|Diatribe of a Mad Housewife|Ashley Olsen|Herself -15|323–1510|FABF05|Diatribe of a Mad Housewife|Mary-Kate Olsen|Herself -15|323–1510|FABF05|Diatribe of a Mad Housewife|Thomas Pynchon|Himself -15|325–1512|FABF07|Milhouse Doesn't Live Here Anymore|Nick Bakay|Salem Saberhagen -15|325–1512|FABF07|Milhouse Doesn't Live Here Anymore|William Daniels|KITT -15|325–1512|FABF07|Milhouse Doesn't Live Here Anymore|Isabel Sanford|Herself -15|325–1512|FABF07|Milhouse Doesn't Live Here Anymore|Dick Tufeld|Robot B-9 -15|325–1512|FABF07|Milhouse Doesn't Live Here Anymore|Marcia Wallace|Edna Krabappel -15|326–1513|FABF09|Smart and Smarter|Simon Cowell|Henry -15|327–1514|FABF08|The Ziff Who Came to Dinner|Jon Lovitz|Artie Ziff; Jay Sherman; Llewelyn Sinclair; Aristotle Amadopoulis; Professor Lombardo -15|328–1515|FABF10|Co-Dependent's Day|Brave Combo|Play the end credits -15|328–1515|FABF10|Co-Dependent's Day|Marcia Wallace|Edna Krabappel -15|329–1516|FABF11|The Wandering Juvie|Sarah Michelle Gellar|Gina Vendetti -15|329–1516|FABF11|The Wandering Juvie|Jane Kaczmarek|Judge Constance Harm -15|329–1516|FABF11|The Wandering Juvie|Charles Napier|Warden -15|329–1516|FABF11|The Wandering Juvie|Marcia Wallace|Edna Krabappel -15|330–1517|FABF12|My Big Fat Geek Wedding|Matt Groening|Himself -15|330–1517|FABF12|My Big Fat Geek Wedding|Marcia Wallace|Edna Krabappel -15|332–1519|FABF15|Simple Simpson|Mark Campbell|Country singer -15|332–1519|FABF15|Simple Simpson|Nichelle Nichols|Herself -15|334–1521|FABF17|The Bart-Mangled Banner|Marcia Wallace|Edna Krabappel -16|336–1601|FABF23|Treehouse of Horror XV|Marie Cain|Sings "I've Got You Under My Skin" -16|337–1602|FABF20|All's Fair in Oven War|James Caan|Himself -16|337–1602|FABF20|All's Fair in Oven War|Thomas Pynchon|Himself -16|337–1602|FABF20|All's Fair in Oven War|Marcia Wallace|Edna Krabappel -16|338–1603|FABF19|Sleeping with the Enemy|Marcia Wallace|Edna Krabappel -16|339–1604|FABF22|She Used to Be My Girl|Kim Cattrall|Chloe Talbot -16|339–1604|FABF22|She Used to Be My Girl|Michael Dees|Sings "Too-Ra-Loo-Ra-Loo-Ral (That's an Irish Lullaby)" -16|340–1605|FABF21|Fat Man and Little Boy|Terry W. Greene|Sgt. Activity -16|340–1605|FABF21|Fat Man and Little Boy|Eric Idle|Declan Desmond -16|343–1608|GABF02|Homer and Ned's Hail Mary Pass|Tom Brady|Himself -16|343–1608|GABF02|Homer and Ned's Hail Mary Pass|LeBron James|Himself -16|343–1608|GABF02|Homer and Ned's Hail Mary Pass|Michelle Kwan|Herself -16|343–1608|GABF02|Homer and Ned's Hail Mary Pass|Warren Sapp|Himself -16|343–1608|GABF02|Homer and Ned's Hail Mary Pass|Yao Ming|Himself -16|344–1609|GABF03|Pranksta Rap|50 Cent|Himself -16|344–1609|GABF03|Pranksta Rap|Dana Gould|Barney Fife -16|345–1610|GABF04|There's Something About Marrying|Marcia Wallace|Edna Krabappel -16|346–1611|GABF05|On a Clear Day I Can't See My Sister|Gary Busey|Himself -16|346–1611|GABF05|On a Clear Day I Can't See My Sister|Jane Kaczmarek|Judge Constance Harm -16|346–1611|GABF05|On a Clear Day I Can't See My Sister|Marcia Wallace|Edna Krabappel -16|347–1612|GABF06|Goo Goo Gai Pan|Lucy Liu|Madam Wu -16|347–1612|GABF06|Goo Goo Gai Pan|Robert Wagner|Himself -16|349–1614|GABF08|The Seven-Beer Snitch|Frank Gehry|Himself -16|349–1614|GABF08|The Seven-Beer Snitch|Joe Mantegna|Fat Tony -16|349–1614|GABF08|The Seven-Beer Snitch|Charles Napier|Officer Krackney -16|350–1615|GABF12|Future-Drama|John DiMaggio|Bender -16|350–1615|GABF12|Future-Drama|Amy Poehler|Jenda -16|350–1615|GABF12|Future-Drama|Marcia Wallace|Edna Krabappel -16|351–1616|GABF10|Don't Fear the Roofer|Stephen Hawking|Himself -16|351–1616|GABF10|Don't Fear the Roofer|Ray Romano|Ray Magini -16|352–1617|GABF11|The Heartbroke Kid|Albert Brooks|Tab Spangler; Jacques -16|352–1617|GABF11|The Heartbroke Kid|Marcia Wallace|Edna Krabappel -16|353–1618|GABF13|A Star Is Torn|Fantasia Barrino|Clarissa Wellington -16|354–1619|GABF14|Thank God, It's Doomsday|Baha Men|Sing "Who Wants a Haircut?" (parody of the song Who Let the Dogs Out?) -16|354–1619|GABF14|Thank God, It's Doomsday|Los Lobos|Play end credits -16|355–1620|GABF15|Home Away from Homer|Jason Bateman|Himself -16|356–1621|GABF09|The Father, the Son, and the Holy Guest Star|Liam Neeson|Father Sean -16|356–1621|GABF09|The Father, the Son, and the Holy Guest Star|Marcia Wallace|Edna Krabappel -17|357–1701|GABF18|Bonfire of the Manatees|Alec Baldwin|Caleb Thorn -17|357–1701|GABF18|Bonfire of the Manatees|Joe Mantegna|Fat Tony -17|360–1704|GABF17|Treehouse of Horror XVI|Terry Bradshaw|Himself -17|360–1704|GABF17|Treehouse of Horror XVI|Terry W. Greene|Lava-tron -17|360–1704|GABF17|Treehouse of Horror XVI|Dennis Rodman|Himself -17|363–1707|GABF22|The Last of the Red Hat Mamas|Lily Tomlin|Tammy -17|364–1708|HABF02|The Italian Bob|Maria Grazia Cucinotta|Francesca Terwilliger -17|364–1708|HABF02|The Italian Bob|Kelsey Grammer|Sideshow Bob -17|364–1708|HABF02|The Italian Bob|Marcia Wallace|Edna Krabappel -17|366–1710|HABF03|Homer's Paternity Coot|Joe Frazier|Himself -17|366–1710|HABF03|Homer's Paternity Coot|William H. Macy|Himself -17|366–1710|HABF03|Homer's Paternity Coot|Michael York|Mason Fairbanks -17|367–1711|HABF04|We're on the Road to D'ohwhere|Marcia Wallace|Edna Krabappel -17|368–1712|HABF05|My Fair Laddy|Marcia Wallace|Edna Krabappel -17|369–1713|HABF06|The Seemingly Never-Ending Story|Michael Dees|Sings "Fly Me to the Moon" -17|369–1713|HABF06|The Seemingly Never-Ending Story|Maurice LaMarche|Commander McBragg -17|369–1713|HABF06|The Seemingly Never-Ending Story|Marcia Wallace|Edna Krabappel -17|370–1714|HABF07|Bart Has Two Mommies|Antonio Fargas|Huggy Bear -17|370–1714|HABF07|Bart Has Two Mommies|Randy Johnson|Himself -17|370–1714|HABF07|Bart Has Two Mommies|Susan Sarandon|Herself -17|370–1714|HABF07|Bart Has Two Mommies|Dave Thomas|Bob Hope -17|371–1715|HABF08|Homer Simpson, This Is Your Wife|Ricky Gervais|Charles Heathbar -17|371–1715|HABF08|Homer Simpson, This Is Your Wife|Marcia Wallace|Edna Krabappel -17|372–1716|HABF09|Million Dollar Abie|Michael Carrington|Sports anchor #2 -17|372–1716|HABF09|Million Dollar Abie|Rob Reiner|Himself -17|373–1717|HABF10|Kiss Kiss, Bang Bangalore|Richard Dean Anderson|Himself -17|373–1717|HABF10|Kiss Kiss, Bang Bangalore|Meher Tatna|Indian passenger -17|375–1719|HABF12|Girls Just Want to Have Sums|Amick Byram|Singing Itchy -17|375–1719|HABF12|Girls Just Want to Have Sums|Jim Gilstrap|Wise Old Cat singer -17|375–1719|HABF12|Girls Just Want to Have Sums|Bob Joyce|Singing Scratchy -17|375–1719|HABF12|Girls Just Want to Have Sums|Frances McDormand|Melanie Upfoot -17|375–1719|HABF12|Girls Just Want to Have Sums|Sally Stevens|Singing Female Cat -17|375–1719|HABF12|Girls Just Want to Have Sums|Marcia Wallace|Edna Krabappel -17|375–1719|HABF12|Girls Just Want to Have Sums|Oren Waters|Singing Male Cat -17|376–1720|HABF13|Regarding Margie|Sal Bando|Himself -17|376–1720|HABF13|Regarding Margie|Gene Tenace|Himself -17|376–1720|HABF13|Regarding Margie|Marcia Wallace|Edna Krabappel -17|377–1721|HABF14|The Monkey Suit|Melanie Griffith|Herself -17|377–1721|HABF14|The Monkey Suit|Larry Hagman|Wallace Brady -17|378–1722|HABF16|Marge and Homer Turn a Couple Play|Stacy Keach|Howard K. Duff VII -17|378–1722|HABF16|Marge and Homer Turn a Couple Play|Mandy Moore|Tabitha Vixx -18|379–1801|HABF15|The Mook, the Chef, the Wife and Her Homer|Michael Imperioli|Dante Calabresis Jr. -18|379–1801|HABF15|The Mook, the Chef, the Wife and Her Homer|Joe Mantegna|Fat Tony -18|379–1801|HABF15|The Mook, the Chef, the Wife and Her Homer|Metallica|Themselves -18|379–1801|HABF15|The Mook, the Chef, the Wife and Her Homer|Joe Pantoliano|Dante Calabresis -18|380–1802|HABF18|Jazzy and the Pussycats|Larina Jean Adamson|Waitress -18|380–1802|HABF18|Jazzy and the Pussycats|The White Stripes|Themselves -18|382–1804|HABF17|Treehouse of Horror XVII|Fran Drescher|Female Golem -18|382–1804|HABF17|Treehouse of Horror XVII|Maurice LaMarche|Orson Welles -18|382–1804|HABF17|Treehouse of Horror XVII|Richard Lewis|Male Golem -18|382–1804|HABF17|Treehouse of Horror XVII|Phil McGraw|Himself -18|382–1804|HABF17|Treehouse of Horror XVII|Sir Mix-a-Lot|Sings "Baby Likes Fat" (parody of the song Baby Got Back) -18|382–1804|HABF17|Treehouse of Horror XVII|Marcia Wallace|Edna Krabappel -18|383–1805|HABF21|G.I. (Annoyed Grunt)|Maurice LaMarche|Recruiter #2; Cap'n Crunch -18|383–1805|HABF21|G.I. (Annoyed Grunt)|Kiefer Sutherland|Colonel -18|384–1806|HABF19|Moe'N'a Lisa|Michael Chabon|Himself -18|384–1806|HABF19|Moe'N'a Lisa|Jonathan Franzen|Himself -18|384–1806|HABF19|Moe'N'a Lisa|J. K. Simmons|J. Jonah Jameson -18|384–1806|HABF19|Moe'N'a Lisa|Gore Vidal|Himself -18|384–1806|HABF19|Moe'N'a Lisa|Tom Wolfe|Himself -18|387–1809|JABF01|Kill Gil, Volumes I & II|Elvis Stojko|Himself -18|388–1810|JABF03|The Wife Aquatic|Dana Gould|Rotting Pelican Crewman -18|388–1810|JABF03|The Wife Aquatic|Maurice LaMarche|First Mate Billy; Oceanographer -18|388–1810|JABF03|The Wife Aquatic|Sab Shimono|Japanese fisherman -18|390–1812|JABF04|Little Big Girl|Natalie Portman|Darcy -18|391–1813|JABF07|Springfield Up|Eric Idle|Declan Desmond -18|392–1814|JABF09|Yokel Chords|Peter Bogdanovich|Psychologist -18|392–1814|JABF09|Yokel Chords|Andy Dick|Himself -18|392–1814|JABF09|Yokel Chords|James Patterson|Himself -18|392–1814|JABF09|Yokel Chords|Meg Ryan|Dr. Stacy Swanson -18|392–1814|JABF09|Yokel Chords|Stephen Sondheim|Himself -18|392–1814|JABF09|Yokel Chords|Marcia Wallace|Edna Krabappel -18|393–1815|JABF08|Rome-old and Juli-eh|Jane Kaczmarek|Judge Constance Harm -18|394–1816|JABF06|Homerazzi|Jon Lovitz|Enrico Irritazio -18|394–1816|JABF06|Homerazzi|J. K. Simmons|Tabloid editor -18|394–1816|JABF06|Homerazzi|Betty White|Herself -18|395–1817|JABF10|Marge Gamer|Ronaldo|Himself -18|395–1817|JABF10|Marge Gamer|Marcia Wallace|Edna Krabappel -18|398–1818|JABF12|Stop or My Dog Will Shoot|Rudy Giuliani|Himself -18|398–1818|JABF12|Stop or My Dog Will Shoot|Stephen Hawking|Himself -18|398–1818|JABF12|Stop or My Dog Will Shoot|Maurice LaMarche|Farmer; Horn Stuffer -18|398–1818|JABF12|Stop or My Dog Will Shoot|Marcia Wallace|Edna Krabappel -18|399–1821|JABF14|24 Minutes|Mary Lynn Rajskub|Chloe O'Brian -18|399–1821|JABF14|24 Minutes|Kiefer Sutherland|Jack Bauer -18|400–1822|JABF15|You Kent Always Say What You Want|Maurice LaMarche|Fox announcer -18|400–1822|JABF15|You Kent Always Say What You Want|Ludacris|Himself -Movie|M1|—|The Simpsons Movie|Albert Brooks|Russ Cargill -Movie|M1|—|The Simpsons Movie|Green Day|Themselves -Movie|M1|—|The Simpsons Movie|Tom Hanks|Himself -Movie|M1|—|The Simpsons Movie|Joe Mantegna|Fat Tony -Movie|M1|—|The Simpsons Movie|Philip Rosenthal|TV Dad -Movie|M1|—|The Simpsons Movie|Marcia Wallace|Edna Krabappel -19|401–1901|JABF20|He Loves to Fly and He D'ohs|Stephen Colbert|Colby Kraus -19|401–1901|JABF20|He Loves to Fly and He D'ohs|Lionel Richie|Himself -19|402–1902|JABF18|Homer of Seville|Plácido Domingo|Himself -19|402–1902|JABF18|Homer of Seville|Maya Rudolph|Julia -19|403–1903|JABF21|Midnight Towboy|Matt Dillon|Louie -19|404–1904|JABF19|I Don't Wanna Know Why the Caged Bird Sings|Steve Buscemi|Dwight David Diddlehoffer -19|404–1904|JABF19|I Don't Wanna Know Why the Caged Bird Sings|Julia Louis-Dreyfus|Gloria -19|404–1904|JABF19|I Don't Wanna Know Why the Caged Bird Sings|Ted Nugent|Himself -19|405–1905|JABF16|Treehouse of Horror XVIII|Maurice LaMarche|Government Official -19|407–1907|JABF17|Husbands and Knives|Jack Black|Milo -19|407–1907|JABF17|Husbands and Knives|Daniel Clowes|Himself -19|407–1907|JABF17|Husbands and Knives|Maurice LaMarche|Jock -19|407–1907|JABF17|Husbands and Knives|Sang Am Lee|Korean singer -19|407–1907|JABF17|Husbands and Knives|Alan Moore|Himself -19|407–1907|JABF17|Husbands and Knives|Art Spiegelman|Himself -19|408–1908|KABF01|Funeral for a Fiend|Kelsey Grammer|Sideshow Bob -19|408–1908|KABF01|Funeral for a Fiend|John Mahoney|Dr. Robert Terwilliger, Sr. -19|408–1908|KABF01|Funeral for a Fiend|Keith Olbermann|Himself -19|408–1908|KABF01|Funeral for a Fiend|David Hyde Pierce|Cecil Terwilliger -19|410–1910|KABF03|E Pluribus Wiggum|Dan Rather|Himself -19|410–1910|KABF03|E Pluribus Wiggum|Jon Stewart|Himself -19|411–1911|KABF04|That '90s Show|Michael Dees|Sings "Winter Wonderland" -19|411–1911|KABF04|That '90s Show|Kurt Loder|Himself -19|411–1911|KABF04|That 90's Show|"Weird Al" Yankovic|Himself -19|413–1913|KABF06|The Debarted|Topher Grace|Donny -19|413–1913|KABF06|The Debarted|Terry Gross|Herself -19|413–1913|KABF06|The Debarted|Marcia Wallace|Edna Krabappel -19|414–1914|KABF07|Dial "N" for Nerder|Marcia Wallace|Edna Krabappel -19|416–1916|KABF09|Papa Don't Leech|Beverly D'Angelo|Lurleen Lumpkin -19|416–1916|KABF09|Papa Don't Leech|Dixie Chicks|Themselves -19|417–1917|KABF10|Apocalypse Cow|Zooey Deschanel|Mary Spuckler -19|418–1918|KABF11|Any Given Sundance|Jim Jarmusch|Himself -19|418–1918|KABF11|Any Given Sundance|John C. Reilly|Himself -19|419–1919|KABF12|Mona Leaves-a|Lance Armstrong|Himself -19|419–1919|KABF12|Mona Leaves-a|Glenn Close|Mona Simpson -19|420–1920|KABF13|All About Lisa|Drew Carey|Himself -20|421–2001|KABF17|Sex, Pies and Idiot Scrapes|Robert Forster|Lucky Jim -20|421–2001|KABF17|Sex, Pies and Idiot Scrapes|Julia Louis-Dreyfus|Gloria -20|421–2001|KABF17|Sex, Pies and Idiot Scrapes|Joe Mantegna|Fat Tony -20|422–2002|KABF15|Lost Verizon|Brian Grazer|Himself -20|422–2002|KABF15|Lost Verizon|Denis Leary|Himself -20|423–2003|KABF14|Double, Double, Boy in Trouble|Joe Montana|Himself -20|424–2004|KABF16|Treehouse of Horror XIX|Marcia Wallace|Edna Krabappel -20|425–2005|KABF18|Dangerous Curves|Maurice LaMarche|Toucan Sam; Cap'n Crunch; Trix Rabbit -20|426–2006|KABF19|Homer and Lisa Exchange Cross Words|Merl Reagle|Himself -20|426–2006|KABF19|Homer and Lisa Exchange Cross Words|Will Shortz|Himself -20|426–2006|KABF19|Homer and Lisa Exchange Cross Words|Scott Thompson|Grady -20|426–2006|KABF19|Homer and Lisa Exchange Cross Words|Marcia Wallace|Edna Krabappel -20|427–2007|KABF20|Mypods and Boomsticks|Shohreh Aghdashloo|Mina bin Laden -20|428–2008|KABF21|The Burns and the Bees|Marv Albert|Himself -20|428–2008|KABF21|The Burns and the Bees|Jeff Bezos|Himself -20|428–2008|KABF21|The Burns and the Bees|Mark Cuban|Himself -20|429–2009|KABF22|Lisa the Drama Queen|Emily Blunt|Juliet Hobbes -20|429–2009|KABF22|Lisa the Drama Queen|Fall Out Boy|Play the end credits -20|430–2010|LABF01|Take My Life, Please|Marcia Wallace|Edna Krabappel -20|431–2011|LABF02|How the Test Was Won|Marcia Wallace|Edna Krabappel -20|432–2012|LABF03|No Loan Again, Naturally|Maurice LaMarche|Dwight D. Eisenhower -20|432–2012|LABF03|No Loan Again, Naturally|Marcia Wallace|Edna Krabappel -20|433–2013|LABF04|Gone Maggie Gone|Ed Begley, Jr.|Himself -20|434–2014|LABF11|In the Name of the Grandfather|Glen Hansard|Street musician -20|434–2014|LABF11|In the Name of the Grandfather|Markéta Irglová|Czech singer -20|434–2014|LABF11|In the Name of the Grandfather|Colm Meaney|Tom O'Flanagan -20|434–2014|LABF11|In the Name of the Grandfather|Marcia Wallace|Edna Krabappel -20|435–2015|LABF05|Wedding for Disaster|Kelsey Grammer|Sideshow Bob -20|437–2017|LABF07|The Good, the Sad and the Drugly|Anne Hathaway|Jenny -20|438–2018|LABF08|Father Knows Worst|Marcia Wallace|Edna Krabappel -20|439–2019|LABF10|Waverly Hills 9-0-2-1-D'oh|Maurice LaMarche|City Inspector -20|439–2019|LABF10|Waverly Hills 9-0-2-1-D'oh|Ellen Page|Alaska Nebraska -20|439–2019|LABF10|Waverly Hills 9-0-2-1-D'oh|Marcia Wallace|Edna Krabappel -20|440–2020|LABF09|Four Great Women and a Manicure|Jodie Foster|Maggie Simpson -21|442–2101|LABF13|Homer the Whopper|Matt Groening|Himself -21|442–2101|LABF13|Homer the Whopper|Seth Rogen|Lyle McCarthy -21|442–2101|LABF13|Homer the Whopper|Kevin Michael Richardson|Security guard -21|443–2102|LABF15|Bart Gets a "Z"|Marcia Wallace|Edna Krabappel -21|444–2103|LABF16|The Great Wife Hope|Chuck Liddell|Himself -21|444–2103|LABF16|The Great Wife Hope|Marcia Wallace|Edna Krabappel -21|445–2104|LABF14|Treehouse of Horror XX|Marcia Wallace|Edna Krabappel -21|446–2105|LABF17|The Devil Wears Nada|Marcia Wallace|Edna Krabappel -21|447–2106|LABF18|Pranks and Greens|Jonah Hill|Andy Hamilton -21|447–2106|LABF18|Pranks and Greens|Marcia Wallace|Edna Krabappel -21|448–2107|LABF19|Rednecks and Broomsticks|Neve Campbell|Cassandra -21|449–2108|MABF01|O Brother, Where Bart Thou?|Kim Cattrall|Fourth Simpson child -21|449–2108|MABF01|O Brother, Where Bart Thou?|Huell Howser|Himself -21|449–2108|MABF01|O Brother, Where Bart Thou?|Cooper Manning|Himself -21|449–2108|MABF01|O Brother, Where Bart Thou?|Eli Manning|Himself -21|449–2108|MABF01|O Brother, Where Bart Thou?|Peyton Manning|Himself -21|449–2108|MABF01|O Brother, Where Bart Thou?|Jordan Nagai|Charlie -21|449–2108|MABF01|O Brother, Where Bart Thou?|Smothers Brothers|Themselves -21|450–2109|MABF02|Thursdays with Abie|Mitch Albom|Himself -21|450–2109|MABF02|Thursdays with Abie|Marcia Wallace|Edna Krabappel -21|451–2110|LABF20|Once Upon a Time in Springfield|Anne Hathaway|Princess Penelope -21|451–2110|LABF20|Once Upon a Time in Springfield|Eartha Kitt|Herself -21|451–2110|LABF20|Once Upon a Time in Springfield|Maurice LaMarche|Nuclear Power Plant Guard -21|451–2110|LABF20|Once Upon a Time in Springfield|Gary Larson|Himself -21|451–2110|LABF20|Once Upon a Time in Springfield|Jackie Mason|Rabbi Hyman Krustofsky -21|452–2111|MABF03|Million Dollar Maybe|Chris Martin|Himself -21|452–2111|MABF03|Million Dollar Maybe|Marcia Wallace|Edna Krabappel -21|453–2112|MABF05|Boy Meets Curl|Bob Costas|Himself -21|454–2113|MABF06|The Color Yellow|Wren T. Brown|Virgil Simpson -21|455–2114|MABF04|Postcards from the Wedge|Marcia Wallace|Edna Krabappel -21|456–2115|MABF07|Stealing First Base|Angela Bassett|Michelle Obama -21|456–2115|MABF07|Stealing First Base|Sarah Silverman|Nikki McKenna -21|457–2116|MABF10|The Greatest Story Ever D'ohed|Sacha Baron Cohen|Jakob -21|457–2116|MABF10|The Greatest Story Ever D'ohed|Yael Naim|Dorit -21|458–2117|MABF08|American History X-cellent|Joe Mantegna|Fat Tony -21|458–2117|MABF08|American History X-cellent|Kevin Michael Richardson|Prisoner -21|459–2118|MABF09|Chief of Hearts|Jane Kaczmarek|Judge Constance Harm -21|459–2118|MABF09|Chief of Hearts|Maurice LaMarche|David Starsky -21|459–2118|MABF09|Chief of Hearts|Joe Mantegna|Fat Tony -21|461–2120|MABF12|To Surveil with Love|Eddie Izzard|Queen Elizabeth II; Prince Charles; Nigel Bakerbutcher -21|461–2120|MABF12|To Surveil with Love|Marcia Wallace|Edna Krabappel -21|462–2121|MABF13|Moe Letter Blues|Don Pardo|Himself -21|463–2122|MABF11|The Bob Next Door|Kelsey Grammer|Sideshow Bob -21|464–2123|MABF15|Judge Me Tender|Simon Cowell|Himself -21|464–2123|MABF15|Judge Me Tender|Ellen DeGeneres|Herself -21|464–2123|MABF15|Judge Me Tender|Kara DioGuardi|Herself -21|464–2123|MABF15|Judge Me Tender|Randy Jackson|Himself -21|464–2123|MABF15|Judge Me Tender|Rupert Murdoch|Himself -21|464–2123|MABF15|Judge Me Tender|Ryan Seacrest|Himself -22|465–2201|MABF21|Elementary School Musical|Jemaine Clement|Ethan Ballantyne -22|465–2201|MABF21|Elementary School Musical|Ira Glass|Himself -22|465–2201|MABF21|Elementary School Musical|Stephen Hawking|Himself -22|465–2201|MABF21|Elementary School Musical|Bret McKenzie|Kurt Hardwick -22|465–2201|MABF21|Elementary School Musical|Lea Michele|Sarah -22|465–2201|MABF21|Elementary School Musical|Cory Monteith|Flynn -22|465–2201|MABF21|Elementary School Musical|Amber Riley|Aiesha -22|466–2202|MABF17|Loan-a Lisa|Terry W. Greene|Janitor -22|466–2202|MABF17|Loan-a Lisa|Chris Hansen|Himself -22|466–2202|MABF17|Loan-a Lisa|Muhammad Yunus|Himself -22|466–2202|MABF17|Loan-a Lisa|Mark Zuckerberg|Himself -22|467–2203|MABF18|MoneyBART|Bill James|Himself -22|467–2203|MABF18|MoneyBART|Mike Scioscia|Himself -22|468–2204|MABF16|Treehouse of Horror XXI|Hugh Laurie|Roger -22|468–2204|MABF16|Treehouse of Horror XXI|Daniel Radcliffe|Edmund -22|470–2206|NABF01|The Fool Monty|Terry W. Greene|Sgt. Activity -22|471–2207|NABF02|How Munched is That Birdie in the Window?|Gregg Berger|Various animals -22|471–2207|NABF02|How Munched is That Birdie in the Window?|Danica Patrick|Herself -22|471–2207|NABF02|How Munched is That Birdie in the Window?|Marcia Wallace|Edna Krabappel -22|471–2207|NABF02|How Munched is That Birdie in the Window?|Rachel Weisz|Dr. Thurston -22|472–2208|MABF22|The Fight Before Christmas|Katy Perry|Herself (live action) -22|472–2208|MABF22|The Fight Before Christmas|Martha Stewart|Herself -22|473–2209|MABF19|Donnie Fatso|Jon Hamm|FBI agent -22|473–2209|MABF19|Donnie Fatso|Joe Mantegna|Fat Tony; Fit Tony -22|474–2210|NABF03|Moms I'd Like to Forget|Marcia Wallace|Edna Krabappel -22|475–2211|NABF04|Flaming Moe|Alyson Hannigan|Melody Juniper -22|475–2211|NABF04|Flaming Moe|Scott Thompson|Grady -22|475–2211|NABF04|Flaming Moe|Kristen Wiig|Calliope Juniper -22|476–2212|NABF05|Homer the Father|Michael Paul Chan|Chinese agent -22|476–2212|NABF05|Homer the Father|James Lipton|Himself -22|476–2212|NABF05|Homer the Father|David Mamet|Himself -22|476–2212|NABF05|Homer the Father|Garry Marshall|Sheldon Leavitt -22|477–2213|NABF06|The Blue and the Gray|Marcia Wallace|Edna Krabappel -22|478–2214|NABF07|Angry Dad: The Movie|Halle Berry|Herself -22|478–2214|NABF07|Angry Dad: The Movie|Russell Brand|Himself -22|478–2214|NABF07|Angry Dad: The Movie|Ricky Gervais|Himself -22|478–2214|NABF07|Angry Dad: The Movie|Terry W. Greene|Ridley Scott Seat Filler -22|478–2214|NABF07|Angry Dad: The Movie|Maurice LaMarche|Anthony Hopkins -22|478–2214|NABF07|Angry Dad: The Movie|Nick Park|Himself -22|478–2214|NABF07|Angry Dad: The Movie|J. B. Smoove|DJ Kwanzaa -22|479–2215|NABF08|The Scorpion's Tale|Werner Herzog|Walter Hotenhoffer -22|479–2215|NABF08|The Scorpion's Tale|Kevin Michael Richardson|Retirement Castle orderly -22|480–2216|NABF09|A Midsummer's Nice Dream|Tommy Chong|Himself -22|480–2216|NABF09|A Midsummer's Nice Dream|Cheech Marin|Himself -22|481–2217|NABF10|Love Is a Many Strangled Thing|Kareem Abdul-Jabbar|Himself -22|481–2217|NABF10|Love Is a Many Strangled Thing|Kevin Michael Richardson|Masseur -22|481–2217|NABF10|Love Is a Many Strangled Thing|Paul Rudd|Dr. Zander -22|481–2217|NABF10|Love Is a Many Strangled Thing|Marcia Wallace|Edna Krabappel -22|482–2218|NABF11|The Great Simpsina|David Copperfield|Himself -22|482–2218|NABF11|The Great Simpsina|Ricky Jay|Himself -22|482–2218|NABF11|The Great Simpsina|Penn Jillette|Himself -22|482–2218|NABF11|The Great Simpsina|Martin Landau|The Great Raymondo -22|482–2218|NABF11|The Great Simpsina|Jack McBrayer|Ewell Freestone -22|482–2218|NABF11|The Great Simpsina|Teller|Himself -22|483–2219|NABF12|The Real Housewives of Fat Tony|Joe Mantegna|Fat Tony -22|484–2220|NABF13|Homer Scissorhands|Kristen Schaal|Taffy -22|484–2220|NABF13|Homer Scissorhands|Marcia Wallace|Edna Krabappel -22|485–2221|NABF14|500 Keys|Albert Brooks|Hank Scorpio -22|486–2222|NABF15|The Ned-Liest Catch|Ken Burns|Himself -22|486–2222|NABF15|The Ned-Liest Catch|Joey Kramer|Himself -22|486–2222|NABF15|The Ned-Liest Catch|Marcia Wallace|Edna Krabappel -23|487–2301|NABF16|The Falcon and the D'ohman|Tom Colicchio|Himself -23|487–2301|NABF16|The Falcon and the D'ohman|Ping Marshall|Viktor -23|487–2301|NABF16|The Falcon and the D'ohman|Kevin Michael Richardson|SendEx Courier -23|487–2301|NABF16|The Falcon and the D'ohman|Kiefer Sutherland|Wayne Slater -23|487–2301|NABF16|The Falcon and the D'ohman|Marcia Wallace|Edna Krabappel -23|488–2302|NABF17|Bart Stops to Smell the Roosevelts|Theodore Roosevelt (archival)|Himself -23|488–2302|NABF17|Bart Stops to Smell the Roosevelts|Marcia Wallace|Edna Krabappel -23|489–2303|NABF19|Treehouse of Horror XXII|Jackie Mason|Rabbi Hyman Krustofsky -23|489–2303|NABF19|Treehouse of Horror XXII|Aron Ralston|911 operator -23|490–2304|NABF21|Replaceable You|Jane Lynch|Roz Davis -23|491–2305|NABF20|The Food Wife|Mario Batali|Himself -23|491–2305|NABF20|The Food Wife|Anthony Bourdain|Himself -23|491–2305|NABF20|The Food Wife|Tim Heidecker|Amus Bruse -23|491–2305|NABF20|The Food Wife|Gordon Ramsay|Himself -23|491–2305|NABF20|The Food Wife|Eric Wareheim|Fois Garth -23|492–2306|NABF22|The Book Job|Neil Gaiman|Himself -23|492–2306|NABF22|The Book Job|Andy García|TweenLit Inc. Publisher -23|493–2307|PABF01|The Man in the Blue Flannel Pants|Kevin Michael Richardson|Party guest -23|493–2307|PABF01|The Man in the Blue Flannel Pants|John Slattery|Robert Marlowe -23|493–2307|PABF01|The Man in the Blue Flannel Pants|Matthew Weiner|Nuclear regulator -23|494–2308|PABF02|The Ten-Per-Cent Solution|Kevin Dillon|Himself -23|494–2308|PABF02|The Ten-Per-Cent Solution|Janeane Garofalo|Herself -23|494–2308|PABF02|The Ten-Per-Cent Solution|Jackie Mason|Rabbi Hyman Krustofsky -23|494–2308|PABF02|The Ten-Per-Cent Solution|Joan Rivers|Annie Dubinsky -23|494–2309|PABF02|Holidays of Future Passed|Matt Groening|Announcer -23|496–2310|PABF03|Politically Inept, with Homer Simpson|Dana Gould|Air marshall -23|496–2310|PABF03|Politically Inept, with Homer Simpson|Ted Nugent|Himself -23|497–2311|PABF04|The D'oh-cial Network|Armie Hammer|The Winklevoss twins -23|497–2311|PABF04|The D'oh-cial Network|David Letterman|Himself -23|497–2311|PABF04|The D'oh-cial Network|Tiger Lillies|Play the end credits -23|498–2312|PABF05|Moe Goes from Rags to Riches|Jeremy Irons|Bar rag -23|499–2313|PABF06|The Daughter Also Rises|Michael Cera|Nick -23|499–2313|PABF06|The Daughter Also Rises|Jamie Hyneman|Himself -23|499–2313|PABF06|The Daughter Also Rises|Adam Savage|Himself -23|500–2314|PABF07|At Long Last Leave|Julian Assange|Himself -23|500–2314|PABF07|At Long Last Leave|Kelsey Grammer|Sideshow Bob -23|500–2314|PABF07|At Long Last Leave|Alison Krauss and Union Station|Perform the theme -23|500–2314|PABF07|At Long Last Leave|Susie Stevens|Sings "We'll Meet Again" -23|500–2314|PABF07|At Long Last Leave|Jackie Mason|Rabbi Hyman Krustofsky -23|501–2315|PABF09|Exit Through the Kwik-E-Mart|Robbie Conal|Himself -23|501–2315|PABF09|Exit Through the Kwik-E-Mart|Ron English|Himself -23|501–2315|PABF09|Exit Through the Kwik-E-Mart|Shepard Fairey|Himself -23|501–2315|PABF09|Exit Through the Kwik-E-Mart|Nicholas McKaig|Sings the end credits -23|501–2315|PABF09|Exit Through the Kwik-E-Mart|Kenny Scharf|Himself -23|502–2316|PABF08|How I Wet Your Mother|David Byrne|Sings "Dream Operator" -23|502–2316|PABF08|How I Wet Your Mother|Glenn Close|Mona Simpson -23|503–2317|PABF10|Them, Robot|Brent Spiner|Robots -23|504–2318|PABF11|Beware My Cheating Bart|Kevin Michael Richardson|Security guard -23|505–2319|PABF12|A Totally Fun Thing That Bart Will Never Do Again|Steve Coogan|Rowan Priddis -23|505–2319|PABF12|A Totally Fun Thing That Bart Will Never Do Again|Renee Ridgeley|Cruise Ship Receptionist -23|505–2319|PABF12|A Totally Fun Thing That Bart Will Never Do Again|Treat Williams|Himself -23|506–2320|PABF13|The Spy Who Learned Me|Bryan Cranston|Stradivarius Cain -23|506–2320|PABF13|The Spy Who Learned Me|Eric Idle|Declan Desmond -23|506–2320|PABF13|The Spy Who Learned Me|Marcia Wallace|Edna Krabappel -23|507–2321|PABF15|Ned 'n Edna's Blend|Marcia Wallace|Edna Krabappel -23|508–2322|PABF14|Lisa Goes Gaga|Lady Gaga|Herself -23|508–2322|PABF14|Lisa Goes Gaga|Kevin Michael Richardson|Conductor -24|509–2401|PABF21|Moonshine River|Ken Burns|Narrator -24|509–2401|PABF21|Moonshine River|Zooey Deschanel|Mary Spuckler -24|509–2401|PABF21|Moonshine River|Sarah Michelle Gellar|Gina Vendetti -24|509–2401|PABF21|Moonshine River|Anne Hathaway|Jenny -24|509–2401|PABF21|Moonshine River|Maurice LaMarche|Charlie Sheen -24|509–2401|PABF21|Moonshine River|Don Pardo|Himself -24|509–2401|PABF21|Moonshine River|Natalie Portman|Darcy -24|509–2401|PABF21|Moonshine River|Kevin Michael Richardson|Drummer -24|509–2401|PABF21|Moonshine River|Al Roker|Himself -24|509–2401|PABF21|Moonshine River|Sarah Silverman|Nikki McKenna -24|509–2401|PABF21|Moonshine River|Marcia Wallace|Edna Krabappel -24|510–2402|PABF17|Treehouse of Horror XXIII|Jon Lovitz|Artie Ziff -24|510–2402|PABF17|Treehouse of Horror XXIII|Marcia Wallace|Edna Krabappel -24|511–2403|PABF18|Adventures in Baby-Getting|Jeff Gordon|Himself -24|512–2404|PABF15|Gone Abie Gone|Marvin Hamlisch|Himself -24|512–2404|PABF15|Gone Abie Gone|Anika Noni Rose|Rita LaFleur -24|512–2404|PABF15|Gone Abie Gone|Jennifer Tilly|Herself -24|513–2405|PABF19|Penny-Wiseguys|Steve Carell|Dan Gillick -24|513–2405|PABF19|Penny-Wiseguys|Terry W. Greene|Giant Ant -24|513–2405|PABF19|Penny-Wiseguys|Joe Mantegna|Fat Tony -24|513–2405|PABF19|Penny-Wiseguys|Alex Trebek|Himself -24|514–2406|PABF22|A Tree Grows in Springfield|Kelsey Grammer|Sideshow Bob -24|514–2406|PABF22|A Tree Grows in Springfield|Marcia Wallace|Edna Krabappel -24|515–2407|PABF20|The Day the Earth Stood Cool|Fred Armisen|Terrence -24|515–2407|PABF20|The Day the Earth Stood Cool|Carrie Brownstein|Emily -24|515–2407|PABF20|The Day the Earth Stood Cool|Colin Meloy|Himself -24|515–2407|PABF20|The Day the Earth Stood Cool|Patton Oswalt|T-Rex -24|515–2407|PABF20|The Day the Earth Stood Cool|Marcia Wallace|Edna Krabappel -24|517–2409|RABF02|Homer Goes to Prep School|Maurice LaMarche|Prepper -24|517–2409|RABF02|Homer Goes to Prep School|Tom Waits|Lloyd -24|518–2410|RABF03|A Test Before Trying|Valerie Harper|Proctor Jennifer Clarkeson -24|518–2410|RABF03|A Test Before Trying|Marcia Wallace|Edna Krabappel -24|519–2411|RABF04|The Changing of the Guardian|Danny DeVito|Herbert Powell -24|519–2411|RABF04|The Changing of the Guardian|Terry W. Greene|Man Baby -24|519–2411|RABF04|The Changing of the Guardian|Rashida Jones|Portia -24|520–2412|RABF07|Love is a Many-Splintered Thing|Robert A. Caro|Himself -24|520–2412|RABF07|Love is a Many-Splintered Thing|Benedict Cumberbatch|Prime Minister; Alan Rickman -24|520–2412|RABF07|Love is a Many-Splintered Thing|Zooey Deschanel|Mary Spuckler -24|520–2412|RABF07|Love is a Many-Splintered Thing|Max Weinberg|Himself -24|521–2413|RABF05|Hardly Kirk-ing|Kevin Michael Richardson|Book Store Security Guard -24|523–2415|RABF09|Black Eyed, Please|Richard Dawkins|Himself -24|523–2415|RABF09|Black Eyed, Please|Tina Fey|Ms. Cantwell -24|523–2415|RABF09|Black Eyed, Please|Marcia Wallace|Edna Krabappel -24|524–2416|RABF10|Dark Knight Court|Michael Dees|Sings "Easter Parade" -24|524–2416|RABF10|Dark Knight Court|Janet Reno|Herself -24|524–2416|RABF10|Dark Knight Court|Maggy Reno Hurchalla|Janet Reno -24|525–2417|RABF08|What Animated Women Want|Bryan Cranston|Walter White (live action) -24|525–2417|RABF08|What Animated Women Want|Maurice LaMarche|Chef Naziwa; Karl Malden -24|525–2417|RABF08|What Animated Women Want|Aaron Paul|Jesse Pinkman (live action) -24|525–2417|RABF08|What Animated Women Want|Wanda Sykes|School therapist -24|525–2417|RABF08|What Animated Women Want|George Takei|Akira -24|525–2417|RABF08|What Animated Women Want|Marcia Wallace|Edna Krabappel -24|526–2418|RABF11|Pulpit Friction|Edward Norton|Rev. Elijah Hooper -24|526–2418|RABF11|Pulpit Friction|Susie Stevens|Sings "Day By Day" -24|527–2419|RABF13|Whiskey Business|Tony Bennett|Sings "Capital City" -24|527–2419|RABF13|Whiskey Business|Kevin Michael Richardson|Police officer -24|527–2419|RABF13|Whiskey Business|Sonny Rollins|Himself -24|527–2419|RABF13|Whiskey Business|Ron Taylor|Bleeding Gums Murphy -24|528–2420|RABF12|The Fabulous Faker Boy|Justin Bieber|Himself -24|528–2420|RABF12|The Fabulous Faker Boy|Bill Hader|Slava -24|528–2420|RABF12|The Fabulous Faker Boy|Jane Krakowski|Zhenya -24|528–2420|RABF12|The Fabulous Faker Boy|Patrick Stewart|Power plant employee -24|529–2421|RABF14|The Saga of Carl|Sigur Rós|Themselves -24|530–2422|RABF17|Dangers on a Train|Lisa Lampanelli|Ramona -24|530–2422|RABF17|Dangers on a Train|Seth MacFarlane|Ben -25|531–2501|RABF20|Homerland|Kevin Michael Richardson|FBI agent -25|531–2501|RABF20|Homerland|Kristen Wiig|Annie Crawford -25|532–2502|RABF16|Treehouse of Horror XXIV|Marcia Wallace|Edna Krabappel -25|533–2503|RABF18|Four Regrettings and a Funeral|Rachel Maddow|Herself -25|533–2503|RABF18|Four Regrettings and a Funeral|Joe Namath|Himself -25|533–2503|RABF18|Four Regrettings and a Funeral|Marcia Wallace|Edna Krabappel -25|534–2504|RABF22|YOLO|Denise Donatelli|Sings "You Only Live Once" (parody of the song You Only Live Twice) -25|534–2504|RABF22|YOLO|Jon Lovitz|Llewellyn Sinclair -25|534–2504|RABF22|YOLO|Marcia Wallace|Edna Krabappel -25|534–2504|RABF19|Labor Pains|Elisabeth Moss|Gretchen -25|536–2506|SABF02|The Kid Is All Right|Anderson Cooper|Himself -25|536–2506|SABF02|The Kid Is All Right|Maurice LaMarche|John Kerry -25|536–2506|SABF02|The Kid Is All Right|Eva Longoria|Isabel Gutierrez -25|537–2507|SABF04|Yellow Subterfuge|Kevin Michael Richardson|Jamaican Krusty -25|539–2509|SABF05|Steal This Episode|Judd Apatow|Himself -25|539–2509|SABF05|Steal This Episode|Will Arnett|Deputy Director Gratman -25|539–2509|SABF05|Steal This Episode|Rob Halford|Himself -25|539–2509|SABF05|Steal This Episode|Leslie Mann|Herself -25|539–2509|SABF05|Steal This Episode|Kevin Michael Richardson|Inmate; Hollywood Bigshot -25|539–2509|SABF05|Steal This Episode|Seth Rogen|Himself -25|539–2509|SABF05|Steal This Episode|Paul Rudd|Himself -25|539–2509|SABF05|Steal This Episode|Channing Tatum|Himself playing Homer -25|540–2510|SABF03|Married to the Blob|Harlan Ellison|Himself -25|540–2510|SABF03|Married to the Blob|Maurice LaMarche|Milo -25|540–2510|SABF03|Married to the Blob|Stan Lee|Himself -25|541–2511|SABF06|Specs and the City|Maurice LaMarche|Football Commentator -25|541–2511|SABF06|Specs and the City|Will Lyman|Himself -25|542–2512|SABF08|Diggs|Daniel Radcliffe|Diggs -25|543–2513|SABF07|The Man Who Grew Too Much|Kelsey Grammer|Sideshow Bob -25|543–2513|SABF07|The Man Who Grew Too Much|Marcia Wallace|Edna Krabappel -25|544–2514|SABF09|The Winter of His Content|Kevin Michael Richardson|Hibbert's Father; S.A.T. Preppers Member -25|545–2515|SABF10|The War of Art|Renee Ridgeley|Waitress -25|545–2515|SABF10|The War of Art|Max von Sydow|Klaus Ziegler -25|546–2516|SABF11|You Don't Have to Live Like a Referee|Andrés Cantor|Himself -25|546–2516|SABF11|You Don't Have to Live Like a Referee|Joey Vieira|Soccer Player -25|547–2517|SABF12|Luca$|Zach Galifianakis|Lucas Bortner -25|548–2518|SABF13|Days of Future Future|Amy Poehler|Jenda -25|549–2519|SABF14|What to Expect When Bart's Expecting|Tavi Gevinson|Jenny -25|549–2519|SABF14|What to Expect When Bart's Expecting|Joe Mantegna|Fat Tony -25|551–2521|SABF15|Pay Pal|Carl Kasell|Himself -25|551–2521|SABF15|Pay Pal|John Oliver|Booth Wilkes-John -25|551–2521|SABF15|Pay Pal|Peter Sagal|Himself -25|552–2522|SABF18|The Yellow Badge of Cowardge|Glenn Close|Mona Simpson -25|552–2522|SABF18|The Yellow Badge of Cowardge|Edwin Moses|Himself -26|553–2601|SABF20|Clown in the Dumps|Kelsey Grammer|Sideshow Bob -26|553–2601|SABF20|Clown in the Dumps|Don Hertzfeldt|Couch gag Simpsons -26|553–2601|SABF20|Clown in the Dumps|Maurice LaMarche|Clive Meriwether; Neil Simon; Rodney Dangerfield -26|553–2601|SABF20|Clown in the Dumps|Jackie Mason|Rabbi Hyman Krustofsky -26|553–2601|SABF20|Clown in the Dumps|David Hyde Pierce|Himself -26|553–2601|SABF20|Clown in the Dumps|Jeff Ross|Himself -26|553–2601|SABF20|Clown in the Dumps|Sarah Silverman|Herself -26|554–2602|SABF17|The Wreck of the Relationship|Nick Offerman|Captain Bowditch -26|554–2602|SABF17|The Wreck of the Relationship|Marc Wilmore|Narrator -26|556–2604|SABF21|Treehouse of Horror XXV|John Ratzenberger|CGI Homer Simpson -26|557–2605|SABF22|Opposites A-Frack|Jane Fonda|Maxine Lombard -26|557–2605|SABF22|Opposites A-Frack|Robert Siegel|Himself -26|558–2606|SABF16|Simpsorama|John DiMaggio|Bender -26|558–2606|SABF16|Simpsorama|David Herman|Scruffy -26|558–2606|SABF16|Simpsorama|Maurice LaMarche|Morbo; Hedonismbot; Lrrr -26|558–2606|SABF16|Simpsorama|Phil LaMarr|Hermes Conrad -26|558–2606|SABF16|Simpsorama|Katey Sagal|Turanga Leela -26|558–2606|SABF16|Simpsorama|Sally Stevens|Sings "I Will Wait For You" and "A Natural Woman" -26|558–2606|SABF16|Simpsorama|Lauren Tom|Amy Wong -26|558–2606|SABF16|Simpsorama|Frank Welker|Nibbler -26|558–2606|SABF16|Simpsorama|Billy West|Philip J. Fry; Professor Farnsworth; Dr. Zoidberg -26|559–2607|TABF01|Blazed and Confused|Willem Dafoe|Jack Lassen -26|559–2607|TABF01|Blazed and Confused|Kelsey Grammer|Sideshow Bob -26|559–2607|TABF01|Blazed and Confused|David Silverman|Himself -26|560–2608|TABF02|Covercraft|Will Forte|King Toot -26|560–2608|TABF02|Covercraft|Sammy Hagar|Himself -26|560–2608|TABF02|Covercraft|Heavy Young Heathens|performing "Hopin' for a Dream" -26|560–2608|TABF02|Covercraft|Matthew Sweet|Nick Delacourt -26|561–2609|TABF03|I Won't Be Home for Christmas|Gene Lockhart (archival)|Henry X. Harper -26|563–2611|TABF05|Bart's New Friend|Stacy Keach|Don Bookner -26|564–2612|TABF04|The Musk Who Fell To Earth|Elon Musk|Himself -26|565–2613|TABF06|Walking Big & Tall|Kevin Michael Richardson|Albert -26|565–2613|TABF06|Walking Big & Tall|Pharrell Williams|Himself -26|566–2614|TABF07|My Fare Lady|Christopher Lloyd|Jim Ignatowski -26|566–2614|TABF07|My Fare Lady|Rich Sommer|Young Man -26|567–2615|TABF08|The Princess Guide|Richard Branson|Himself -26|567–2615|TABF08|The Princess Guide|Yaya DaCosta|Princess Kemi -26|567–2615|TABF08|The Princess Guide|Jon Lovitz|Enrico Irritazio -26|567–2615|TABF08|The Princess Guide|Kevin Michael Richardson|The Nigerian King -26|568–2616|TABF09|Sky Police|Nathan Fielder|Doug Blattner -26|569–2617|TABF10|Waiting for Duffman|Cat Deeley|Herself -26|569–2617|TABF10|Waiting for Duffman|R. Lee Ermey|Colonel Leslie Hapablap -26|569–2617|TABF10|Waiting for Duffman|Stacy Keach|Howard K. Duff VIII -26|572–2620|TABF13|Let's Go Fly a Coot|Glenn Close|Mona Simpson -26|572–2620|TABF13|Let's Go Fly a Coot|Carice van Houten|Annika Van Houten -26|573–2621|TABF15|Bull-E|Albert Brooks|Dr. Raufbold -26|573–2621|TABF15|Bull-E|Joe Mantegna|Fat Tony -26|573–2621|TABF15|Bull-E|Johnny Mathis|Himself -26|574–2622|TABF16|Mathlete's Feat|Justin Roiland|Rick Sanchez and Morty Smith -27|575–2701|TABF14|Every Man's Dream|Adam Driver|Adam Sackler -27|575–2701|TABF14|Every Man's Dream|Lena Dunham|Candace; Hannah Helene Horvath -27|575–2701|TABF14|Every Man's Dream|Laura Ingraham|Dr. Zilowitz -27|575–2701|TABF14|Every Man's Dream|Jemima Kirke|Candace's Friend #3 -27|575–2701|TABF14|Every Man's Dream|Zosia Mamet|Candace's Friend #2 -27|575–2701|TABF14|Every Man's Dream|Allison Williams|Candace's Friend #1 -27|576–2702|TABF17|'Cue Detective|Alton Brown|Himself -27|576–2702|TABF17|'Cue Detective|Rex Harrison (archival)|Doctor John Dolittle -27|576–2702|TABF17|'Cue Detective|Bobby Moynihan|Tyler Boom -27|576–2702|TABF17|'Cue Detective|Anthony Newley (archival)|Matthew Mugg -27|576–2702|TABF17|'Cue Detective|Edward James Olmos|Pit Master -27|576–2702|TABF17|'Cue Detective|Ben Schwartz|Clerk -27|577–2703|TABF19|Puffless|Jon Lovitz|Cigarette -27|577–2703|TABF19|Puffless|Yo-Yo Ma|Himself -27|578–2704|TABF22|Halloween of Horror|Blake Anderson|Dickie -27|578–2704|TABF22|Halloween of Horror|Nick Kroll|Lem -27|578–2704|TABF22|Halloween of Horror|Renee Ridgeley|Krustyland Security Guard -27|579–2705|TABF18|Treehouse of Horror XXVI|Kelsey Grammer|Sideshow Bob -27|579–2705|TABF18|Treehouse of Horror XXVI|Chris Wedge|Scrat -27|580–2706|TABF21|Friend With Benefit|Kristen Bell|Harper Jambowski -27|580–2706|TABF21|Friend With Benefit|David Copperfield|Himself -27|584–2710|VABF03|The Girl Code|Stephen Merchant|CONRAD -27|584–2710|VABF03|The Girl Code|Kaitlin Olson|Quinn Hopper -27|585–2711|VABF04|Teenage Mutant Milk-Caused Hurdles|Sofía Vergara|Ms. Carol Berrera -27|586–2712|VABF05|Much Apu About Something|Utkarsh Ambudkar|Jamshed "Jay" Nahasapeemapetilon -27|587–2713|VABF07|Love Is in the N2-O2-Ar-CO2-Ne-He-CH4|Glenn Close|Mona Simpson -27|588–2714|VABF06|Gal of Constant Sorrow|Bob Boilen|Himself -27|588–2714|VABF06|Gal of Constant Sorrow|Kelsey Grammer|Sideshow Bob -27|588–2714|VABF06|Gal of Constant Sorrow|Kate McKinnon|Hettie Mae Boggs -27|588–2714|VABF06|Gal of Constant Sorrow|Natalie Maines|Hettie Mae Boggs' singing voice -27|589–2715|VABF08|Lisa the Veterinarian|Michael York|Dr. Lionel Budgie -27|590–2716|VABF09|The Marge-ian Chronicles|Brian J. Kaufman|Exploration Incorporated Candidate -27|590–2716|VABF09|The Marge-ian Chronicles|Tom Scharpling|Paul -27|590–2716|VABF09|The Marge-ian Chronicles|Jon Wurster|Barry -27|591–2717|VABF10|The Burns Cage|George Takei|Himself -27|592–2718|VABF11|How Lisa Got Her Marge Back|Andrew Rannells|Himself -27|594–2720|VABF14|To Courier with Love|Jay Leno|Himself -27|596–2722|VABF15|Orange Is the New Yellow|Kevin Michael Richardson|Prison Guard -28|597–2801|VABF20|Monty Burns' Fleeing Circus|Amy Schumer|Daphne Burns -28|597–2801|VABF20|Monty Burns' Fleeing Circus|Pendleton Ward|Sings "Simpsons Time" (parody of Adventure Time theme song) -28|598–2802|VABF18|Friends and Family|Allison Janney|Julia -28|599–2803|VABF17|The Town|Bill Burr|Townie; Man in Tunnel; Cart-Warning Man -28|599–2803|VABF17|The Town|Michael Chiklis|Handsome Quarterback -28|599–2803|VABF17|The Town|Rachel Dratch|Bostonian Doctor -28|599–2803|VABF17|The Town|Doris Kearns Goodwin|Herself -28|599–2803|VABF17|The Town|Dana Gould|Murphy -28|599–2803|VABF17|The Town|Mike Mitchell|Jay -28|599–2803|VABF17|The Town|Jason Nash|Southie Criminals ; Southie Philanthropists -28|600–2804|VABF16|Treehouse of Horror XXVII|Drew Carey|Himself -28|600–2804|VABF16|Treehouse of Horror XXVII|Donald Fagen|Himself -28|600–2804|VABF16|Treehouse of Horror XXVII|Kelsey Grammer|Sideshow Bob -28|600–2804|VABF16|Treehouse of Horror XXVII|Maurice LaMarche|Hedonismbot -28|600–2804|VABF16|Treehouse of Horror XXVII|Judith Owen|Sings "600" (parody of the song Goldfinger) -28|600–2804|VABF16|Treehouse of Horror XXVII|Sarah Silverman|Rachel Cohen -28|601–2805|VABF21|Trust But Clarify|Dan Rather|Himself -28|603–2807|VABF19|Havana Wild Weekend|Stacy Keach|Howard K. Duff VIII -28|603–2807|VABF19|Havana Wild Weekend|Deb Lacusta|Isabella -28|604–2808|WABF01|Dad Behavior|Matt Leinart|Himself -28|606–2810|WABF02|The Nightmare After Krustmas|Wayne Gretzky|Himself -28|606–2810|WABF02|The Nightmare After Krustmas|Theo Jansen|Himself -28|606–2810|WABF02|The Nightmare After Krustmas|Natasha Lyonne|Sophie -28|606–2810|WABF02|The Nightmare After Krustmas|Jackie Mason|Rabbi Hyman Krustofsky -28|607–2811|WABF06|Pork and Burns|Joyce Carol Oates|Herself -28|607–2811|WABF06|Pork and Burns|Michael York|Dr. Lionel Budgie -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Charles Barkley|Himself -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Jim Beanz|performing End-Titles music -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|V. Bozeman|Additional vocals -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Charlean Carmon|Additional vocals -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Common|Himself -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Snoop Dogg|Himself -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Taraji P. Henson|Praline -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Keegan-Michael Key|Jazzy James -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Phil LaMarr|Auctioneer; Informed Party Guest -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Dawnn Lewis|Miata; Female Party Guest -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|RZA|Himself -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Sally Stevens|Additional vocals -28|608–2812; 609–2813|WABF04; WABF05|The Great Phatsby|Destiny Torres|"CEO of Obsidian" Female Vocalist; Additional vocals -28|610–2814|WABF07|Fatzcarraldo|Glenn Close|Mona Simpson -28|611–2815|WABF08|The Cad and the Hat|Magnus Carlsen|Himself -28|611–2815|WABF08|The Cad and the Hat|Seth Green|Robot Chicken Nerd -28|611–2815|WABF08|The Cad and the Hat|Patton Oswalt|Bart's Guilt -28|612–2816|WABF09|Kamp Krustier|Lizzy Caplan|Virginia Johnson -28|612–2816|WABF09|Kamp Krustier|Michael Sheen|William Masters -28|613–2817|WABF10|22 for 30|Stephen Curry|Himself -28|613–2817|WABF10|22 for 30|Earl Mann|Narrator (Eddie Muntz) -28|613–2817|WABF10|22 for 30|Joe Mantegna|Fat Tony -28|614–2818|WABF11|A Father's Watch|Vanessa Bayer|Dr. Clarity Hoffman-Roth -28|614–2818|WABF11|A Father's Watch|Brian Posehn|Dumlee -28|614–2818|WABF11|A Father's Watch|Rob Riggle|Dr. Fenton Pooltoy -28|614–2818|WABF11|A Father's Watch|Adam Silver|Himself -28|615–2819|WABF12|The Caper Chase|Jason Alexander|Bourbon Verlander -28|615–2819|WABF12|The Caper Chase|Ken Jennings|Himself -28|615–2819|WABF12|The Caper Chase|Stan Lee|Himself -28|615–2819|WABF12|The Caper Chase|Robert McKee|Himself -28|615–2819|WABF12|The Caper Chase|Suze Orman|Herself -28|615–2819|WABF12|The Caper Chase|Neil deGrasse Tyson|Himself -28|616–2820|WABF13|Looking for Mr. Goodbart|Valerie Harper|Ma-Ma -28|616–2820|WABF13|Looking for Mr. Goodbart|Kipp Lennon|Sings "Small Bang Hypothesis" (parody of The Big Bang Theory theme song) -28|616–2820|WABF13|Looking for Mr. Goodbart|Jennifer Saunders|Phoebe Pratt -28|617–2821|WABF14|Moho House|Valerie Harper|Mrs. Butterworth -28|617–2821|WABF14|Moho House|Michael York|Nigel -28|618–2822|WABF15|Dogtown|Michael York|Dr. Lionel Budgie -29|619–2901|WABF17|The Serfsons|Billy Boyd|Sings "The Perfect Tale" (parody of the song The Last Goodbye) -29|619–2901|WABF17|The Serfsons|Nikolaj Coster-Waldau|Markery -29|620–2902|WABF22|Springfield Splendor|Alison Bechdel|Herself -29|620–2902|WABF22|Springfield Splendor|Rachel Bloom|Annette -29|620–2902|WABF22|Springfield Splendor|Roz Chast|Herself -29|620–2902|WABF22|Springfield Splendor|Dan Harmon|Himself -29|620–2902|WABF22|Springfield Splendor|Kipp Lennon|Sings "Collaboration" (parody of the song Infatuation) -29|620–2902|WABF22|Springfield Splendor|Marjane Satrapi|Herself -29|620–2902|WABF22|Springfield Splendor|Martin Short|Guthrie Frenel -29|621–2903|WABF16|Whistler's Father|Nick Fascitelli|Whistler -29|621–2903|WABF16|Whistler's Father|Valerie Harper|Backstage Mother #2 -29|621–2903|WABF16|Whistler's Father|Joe Mantegna|Fat Tony -29|622–2904|WABF18|Treehouse of Horror XXVIII|Mario Batali|Himself -29|622–2904|WABF18|Treehouse of Horror XXVIII|Ben Daniels|Irish Priest -29|622–2904|WABF18|Treehouse of Horror XXVIII|William Friedkin|Dr. Kenneth Humphries -29|622–2904|WABF18|Treehouse of Horror XXVIII|Neil Gaiman|Snowball II -29|624–2906|WABF20|The Old Blue Mayor She Ain't What She Used to Be|Carolyn Omine|Focus Group Woman -29|626–2908|XABF01|Mr. Lisa's Opus|Kat Dennings|Valerie -29|626–2908|XABF01|Mr. Lisa's Opus|Valerie Harper|Ms. Myles -29|626–2908|XABF01|Mr. Lisa's Opus|Norman Lear|Himself -29|626–2908|XABF01|Mr. Lisa's Opus|Kipp Lennon|Leon Kompowsky -29|626–2908|XABF01|Mr. Lisa's Opus|Jon Lovitz|Artie Ziff -29|627–2909|XABF02|Gone Boy|Kelsey Grammer|Sideshow Bob -29|627–2909|XABF02|Gone Boy|Valerie Harper|Nurse -29|627–2909|XABF02|Gone Boy|John F. Kennedy (archival)|Himself -29|627–2909|XABF02|Gone Boy|Shaquille O'Neal|Himself -29|628–2910|XABF03|Haw-Haw Land|Ed Sheeran|Brendan Beiderbecke -29|629–2911|XABF04|Frink Gets Testy|Valerie Harper|Proctor Jennifer Clarkeson -29|629–2911|XABF04|Frink Gets Testy|Maurice LaMarche|Orson Welles -29|630–2912|XABF05|Homer Is Where the Art Isn't|Bill Hader|Manacek -29|630–2912|XABF05|Homer Is Where the Art Isn't|Cecily Strong|Megan Matheson -29|631–2913|XABF06|3 Scenes Plus a Tag from a Marriage|John Baldessari|Himself -29|631–2913|XABF06|3 Scenes Plus a Tag from a Marriage|Kevin Pollak|Ross; Bagel Man; Professor Thernstrom -29|631–2913|XABF06|3 Scenes Plus a Tag from a Marriage|J. K. Simmons|J.J. Gruff -29|632–2914|XABF08|Fears of a Clown|Andy Daly|Judge Dowd -29|632–2914|XABF08|Fears of a Clown|Damian Kulash|Himself -29|632–2914|XABF08|Fears of a Clown|Dawnn Lewis|Children's Court Bailiff -29|632–2914|XABF08|Fears of a Clown|Jon Lovitz|Llewellyn Sinclair -29|632–2914|XABF08|Fears of a Clown|Jackie Mason|Rabbi Hyman Krustofsky -29|632–2914|XABF08|Fears of a Clown|Tim Nordwind|Himself -29|633–2915|XABF07|No Good Read Goes Unpunished|Daniel Radcliffe|Himself -29|633–2915|XABF07|No Good Read Goes Unpunished|Jimmy O. Yang|Sun Tzu -29|634–2916|XABF10|King Leer|Ray Liotta|Morty Szyslak -29|634–2916|XABF10|King Leer|Debi Mazar|Minnie Szyslak -29|634–2916|XABF10|King Leer|Jonathan Schmock|Johnny Bermuda Salesman -29|635–2917|XABF11|Lisa Gets the Blues|Dawnn Lewis|Co-Pilot; Pat O'Brien's Waitress -29|635–2917|XABF11|Lisa Gets the Blues|Trombone Shorty|Himself -29|636–2918|XABF09|Forgive and Regret|Glenn Close|Mona Simpson -29|636–2918|XABF09|Forgive and Regret|Caitlin Parrott|Sings "Four-Legged Angel" -29|637–2919|XABF12|Left Behind|Michael Dees|Sings "My Funny Valentine" -29|637–2919|XABF12|Left Behind|Marcia Wallace|Edna Krabappel -29|638–2920|XABF13|Throw Grampa from the Dane|Sidse Babett Knudsen|Danish Bar Woman -29|639–2921|XABF14|Flanders' Ladder|Jackie Mason|Rabbi Hyman Krustofsky -30|640–3001|XABF19|Bart's Not Dead|Dave Attell|Luke -30|640–3001|XABF19|Bart's Not Dead|Emily Deschanel|Herself; Herself playing Marge Simpson -30|640–3001|XABF19|Bart's Not Dead|Gal Gadot|Herself; Herself playing Lisa Simpson -30|640–3001|XABF19|Bart's Not Dead|Jonathan Groff|Actor playing Bart Simpson -30|640–3001|XABF19|Bart's Not Dead|Pete Holmes|Matthew -30|641–3002|XABF15|Heartbreak Hotel|Joe Clabby|Curtis -30|641–3002|XABF15|Heartbreak Hotel|Rhys Darby|Tag Tuckerbag -30|641–3002|XABF15|Heartbreak Hotel|Renee Ridgeley|Honey -30|641–3002|XABF15|Heartbreak Hotel|George Segal|Nick -30|642–3003|XABF17|My Way or the Highway to Heaven|H. Jon Benjamin|Bob Belcher -30|642–3003|XABF17|My Way or the Highway to Heaven|Jon Lovitz|Himself -30|642–3003|XABF17|My Way or the Highway to Heaven|Dan Mintz|Tina Belcher -30|642–3003|XABF17|My Way or the Highway to Heaven|Eugene Mirman|Gene Belcher -30|642–3003|XABF17|My Way or the Highway to Heaven|Ted Moock|Sings "Cheek to Cheek" -30|642–3003|XABF17|My Way or the Highway to Heaven|Tracy Morgan|Himself -30|642–3003|XABF17|My Way or the Highway to Heaven|John Roberts|Linda Belcher -30|642–3003|XABF17|My Way or the Highway to Heaven|Kristen Schaal|Louise Belcher -30|644–3005|XABF18|Baby You Can't Drive My Car|Tracy Morgan|Tow Truck Driver -30|645–3006|XABF20|From Russia Without Love|Jon Lovitz|Hacky; Snitchy the Weasel -30|645–3006|XABF20|From Russia Without Love|Ksenia Solo|Anastasia Alekova -30|646–3007|XABF21|Werking Mom|Sutan Amrull|Himself -30|646–3007|XABF21|Werking Mom|RuPaul|Queen Chante -30|646–3007|XABF21|Werking Mom|Scott Thompson|Grady -30|647–3008|XABF22|Krusty the Clown|Billy Eichner|Billy -30|647–3008|XABF22|Krusty the Clown|Peter Serafinowicz|Google-Disney CEO -30|648–3009|YABF01|Daddicus Finch|Phillip Alford (archival)|Jeremy Atticus "Jem" Finch -30|648–3009|YABF01|Daddicus Finch|Mary Badham (archival)|Jean Louise "Scout" Finch -30|648–3009|YABF01|Daddicus Finch|Jon Lovitz|Llewellyn Sinclair; Rabbi -30|648–3009|YABF01|Daddicus Finch|John Megna (archival)|Charles "Dill" Baker Harris -30|648–3009|YABF01|Daddicus Finch|Gregory Peck (archival)|Atticus Finch -30|648–3009|YABF01|Daddicus Finch|J. K. Simmons|Dr. Jessup -30|649–3010|YABF02|'Tis the 30th Season|Jane Lynch|Jeanie -30|650–3011|YABF03|Mad About the Toy|Bryan Batt|Philip Hefflin -30|650–3011|YABF03|Mad About the Toy|Bill de Blasio|Himself -30|650–3011|YABF03|Mad About the Toy|Lawrence O'Donnell|Himself -30|651–3012|YABF04|The Girl on the Bus|Terry Gross|Herself -30|651–3012|YABF04|The Girl on the Bus|Patti LuPone|Cheryl Monroe -30|652–3013|YABF06|I'm Dancing as Fat as I Can|Ted Sarandos|Himself -30|653–3014|YABF05|The Clown Stays in the Picture|Marc Maron|Himself -30|654–3015|YABF07|101 Mitigations|Guillermo del Toro|Himself -30|655–3016|YABF08|I Want You (She's So Heavy)|Wallace Shawn|Wallace the Hernia -30|656–3017|YABF09|E My Sports|Ken Jeong|Korean Monk #1; Korean Monk #2 -30|656–3017|YABF09|E My Sports|Natasha Lyonne|Sophie -30|656–3017|YABF09|E My Sports|David Turley|"Conflict of Enemies" Commentator -30|657–3018|YABF10|Bart vs. Itchy & Scratchy|Awkwafina|Carmen -30|657–3018|YABF10|Bart vs. Itchy & Scratchy|Nicole Byer|Erica -30|657–3018|YABF10|Bart vs. Itchy & Scratchy|Chelsea Peretti|Piper -30|658–3019|YABF11|Girl's in the Band|Dave Matthews|Lloyd the Bartender -30|658–3019|YABF11|Girl's in the Band|J. K. Simmons|Victor Kleskow -30|659–3020|YABF12|I'm Just a Girl Who Can't Say D'oh|Josh Groban|Professor John Frink's singing voice -30|659–3020|YABF12|I'm Just a Girl Who Can't Say D'oh|John Lithgow|Himself -30|659–3020|YABF12|I'm Just a Girl Who Can't Say D'oh|Jon Lovitz|Llewellyn Sinclair -30|659–3020|YABF12|I'm Just a Girl Who Can't Say D'oh|Okilly Dokilly|Themselves performing "White Wine Spritzer" -30|660–3021|YABF14|D'oh Canada|Awkwafina|Dr. Chang -30|660–3021|YABF14|D'oh Canada|Judy Blume|Herself -30|660–3021|YABF14|D'oh Canada|Lucas Meyer|Justin Trudeau -30|661–3022|YABF15|Woo-Hoo Dunnit?|Ken Burns|Himself -30|661–3022|YABF15|Woo-Hoo Dunnit?|Will Forte|King Toot -30|661–3022|YABF15|Woo-Hoo Dunnit?|Jackie Mason|Rabbi Hyman Krustofsky -30|661–3022|YABF15|Woo-Hoo Dunnit?|Liev Schreiber|"Dateline: Springfield" Narrator -30|662–3023|YABF16|Crystal Blue-Haired Persuasion|Illeana Douglas|New Age Clerk -30|662–3023|YABF16|Crystal Blue-Haired Persuasion|Werner Herzog|Walter Hotenhoffer -30|662–3023|YABF16|Crystal Blue-Haired Persuasion|Jenny Slate|Piper Paisley diff --git a/tests/testthat/testfiles/test.rda b/tests/testthat/testfiles/test.rda deleted file mode 100644 index 439eba8..0000000 Binary files a/tests/testthat/testfiles/test.rda and /dev/null differ diff --git a/tests/testthat/testfiles/us_avg_tuition.xlsx b/tests/testthat/testfiles/us_avg_tuition.xlsx deleted file mode 100644 index f78b3fd..0000000 Binary files a/tests/testthat/testfiles/us_avg_tuition.xlsx and /dev/null differ