├── JOCyberMLFinal.pdf ├── README.md ├── LICENSE ├── JOCyberMLFinal.R ├── JOCyberMLFinal.Rmd └── kaggleRCdataset.csv /JOCyberMLFinal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-2028/Justin-2028-CyberML-Capstone-Personal-Project/HEAD/JOCyberMLFinal.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Justin-2028 CyberML Capstone Personal Project 2 | 3 | The following dataset has been downloaded from Kaggle:
4 | https://www.kaggle.com/datasets/xwolf12/malicious-and-benign-websites 5 | 6 | ### a. Instructions 7 | The submission for the choose-your-own project will be three files: a report in the form of both a PDF document and Rmd file and the R script that performs your machine learning task. You must also provide access to your dataset, either through automatic download in your script or inclusion in a GitHub repository. 8 | 9 | 10 | ### b. Contents of the Repository 11 | As the instructions necessitate, the following three files are attached:
12 | 1. JOCyberMLFinal.R
13 | 2. JOCyberMLFinal.Rmd
14 | 3. JOCyberMLFinal.pdf
15 | 16 | ### c. Timeline of the Project 17 | 10/8/22 - Start Date
18 | 11/20/22 - Completion of Rmd and RScript
19 | 11/22/22 - End Date
20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Justin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /JOCyberMLFinal.R: -------------------------------------------------------------------------------- 1 | ######################################################### 2 | # Cyber ML Capstone Project - Justin Oh 3 | # HarvardX Data Science Professional Certificate PH125.9x 4 | # End Date: 11/22/22 5 | ######################################################### 6 | 7 | ###################################### 8 | # Preparing for the Dataset 9 | ###################################### 10 | 11 | # Required packages will install, please allow several minutes to complete. 12 | 13 | if(!require(tidyverse)) install.packages("tidyverse", repos = "http://cran.us.r-project.org") 14 | if(!require(purrr)) install.packages("purrr", repos = "http://cran.us.r-project.org") 15 | if(!require(caret)) install.packages("caret", repos = "http://cran.us.r-project.org") 16 | if(!require(Hmisc)) install.packages("Hmisc", repos = "http://cran.us.r-project.org") 17 | if(!require(forecast)) install.packages("forecast", repos = "http://cran.us.r-project.org") 18 | if(!require(randomForest)) install.packages("randomForest", repos = "http://cran.us.r-project.org") 19 | if(!require(class)) install.packages("class", repos = "http://cran.us.r-project.org") 20 | if(!require(data.table)) install.packages("data.table", repos = "http://cran.us.r-project.org") 21 | if(!require(psych)) install.packages("psych", repos = "http://cran.us.r-project.org") 22 | if(!require(readr)) install.packages("readr", repos = "http://cran.us.r-project.org") 23 | if(!require(dplyr)) install.packages("dplyr", repos = "http://cran.us.r-project.org") 24 | if(!require(NCmisc)) install.packages("NCmisc", repos = "http://cran.us.r-project.org") 25 | 26 | # Packages for graphing and modeling 27 | library(tidyverse) 28 | library(purrr) 29 | library(caret) 30 | library(Hmisc) 31 | library(forecast) 32 | library(randomForest) 33 | library(class) 34 | library(data.table) 35 | # Packages for reading the CSV file: 36 | library(psych) 37 | library(readr) 38 | library(dplyr) 39 | #Packages for testing what packages are used: 40 | library(NCmisc) 41 | 42 | 43 | # Loading packages listed: 44 | 45 | packageload <- c("tidyverse", "caret", "data.table", "psych", "readr", "dplyr") 46 | lapply(packageload, library, character.only = TRUE) 47 | 48 | 49 | # Finding the functions in which the packages listed are used. Please ignore the absolute path featured as this code is used only for my own reference. 50 | 51 | # used.functions <- NCmisc::list.functions.in.file(filename = "C:/Users/124Oh/Downloads/JOCyberMLFinal.R", alphabetic = FALSE) |> print() 52 | 53 | # Finding what packages are unused entirely. 54 | 55 | # used.packages <- used.functions |> names() |> grep(pattern = "packages:", value = TRUE) |> gsub(pattern = "package:", replacement = "") |> print() 56 | # unused.packages <- packageload[!(packageload %in% used.packages)] |> print() 57 | 58 | 59 | ###################################### 60 | # Loading the Dataset 61 | ###################################### 62 | 63 | # The necessary dataset is able through my GitHub repository if the following code fails. 64 | download.file("https://raw.githubusercontent.com/justin-2028/Justin-2028-HarvardX-Capstone-Personal-Project/main/kaggleRCdataset.csv", "kaggleRCdataset.csv") 65 | train = read.csv("kaggleRCdataset.csv", header = TRUE) 66 | 67 | 68 | ###################################### 69 | # Data Cleaning 70 | ###################################### 71 | 72 | # Analyzing the WHOIS_COUNTRY variable for potential issues. 73 | unique(train$WHOIS_COUNTRY) 74 | 75 | # We can see that WHOIS_COUNTRY has different values for one country and that has to be corrected. For example: UK is shown as United Kingdom and GB. We need to correct that before moving forward. 76 | 77 | 78 | train$WHOIS_COUNTRY <- as.character(train$WHOIS_COUNTRY) 79 | train[train$WHOIS_COUNTRY == 'United Kingdom','WHOIS_COUNTRY'] <- "UK" 80 | train[train$WHOIS_COUNTRY == "[u'GB'; u'UK']",'WHOIS_COUNTRY'] <- "UK" 81 | train[train$WHOIS_COUNTRY == "GB",'WHOIS_COUNTRY'] <- "UK" 82 | train[train$WHOIS_COUNTRY == "us",'WHOIS_COUNTRY'] <- "US" 83 | train[train$WHOIS_COUNTRY == 'ru','WHOIS_COUNTRY'] <- "RU" 84 | 85 | # Most countries don't seem to have any malicious data 86 | # This didn't seem to improve classification but might help performance by reducing dimensionality 87 | # This could be overfitting/leakage but fine for current purposes 88 | # W/ no validation or test sets that shouldn't matter much 89 | 90 | mc <- train[train$Type == 1,'WHOIS_COUNTRY'] 91 | others <- which(!(train$WHOIS_COUNTRY %in% mc)) 92 | train[others,'WHOIS_COUNTRY'] <- "Other" 93 | train$WHOIS_COUNTRY <- as.factor(train$WHOIS_COUNTRY) 94 | 95 | # Now let's look at the values in CHARSET variable: 96 | unique(train$CHARSET) 97 | 98 | # There is a similar problem in this variable as we saw in the WHOIS_COUNTRY variable: 99 | train$CHARSET <- as.character(train$CHARSET) 100 | train[train$CHARSET == 'iso-8859-1',"CHARSET"] <- "ISO-8859-1" 101 | train[train$CHARSET == 'utf-8',"CHARSET"] <- "UTF-8" 102 | train[train$CHARSET == 'windows-1251',"CHARSET"] <- "windows-12##" 103 | train[train$CHARSET == 'windows-1252',"CHARSET"] <- "windows-12##" 104 | train$CHARSET <- as.factor(train$CHARSET) 105 | 106 | # For the normalization of the SERVER variable, we will assign the values which do not have any malicious value in the data to the "Other" server value. 107 | 108 | train$SERVER <- as.character(train$SERVER) 109 | mserver <- train[train$Type == 1,"SERVER"] 110 | others <- which(!(train$SERVER %in% mserver)) 111 | train[others,'SERVER'] <- "Other" 112 | table(train$SERVER == "Other") 113 | train$SERVER <- as.factor(train$SERVER) 114 | 115 | 116 | # For the variables with NA values, we'll impute different values. 117 | colSums(is.na(train)) 118 | 119 | # Resolving two columns through imputation. 120 | train$DNS_QUERY_TIMES=impute(train$DNS_QUERY_TIMES, 0) 121 | train$CONTENT_LENGTH=impute(train$CONTENT_LENGTH, mean) 122 | 123 | # Removing variables that will not be useful in the modelling process. 124 | train$URL <- NULL 125 | train$WHOIS_REGDATE <- NULL 126 | train$CONTENT_LENGTH <- NULL 127 | 128 | train$type<- as.factor(train$Type) 129 | 130 | ###################################### 131 | # Data Exploration 132 | ###################################### 133 | 134 | # TYPE: This is a categorical variable, and its values represent the type of web page analyzed, specifically, 1 is for malicious websites and 0 is for benign websites. 135 | 136 | # Lists amount of observations and variables in training data set "train". 137 | dim(train) 138 | 139 | # Displays column headers and the first 10 rows as well as the last 10 rows. 140 | head(train, 10) 141 | tail(train, 10) 142 | 143 | # Shows the structure of the R object and other details. 144 | str(train) 145 | 146 | # Used instead of summary(train) due to its provision of extra statistical details such as mean, median and variance. 147 | describe(train) 148 | 149 | # Let's plot DNS_QUERY_TIMES with target variables. 150 | ggplot(train, aes(x=as.factor(Type), y=DNS_QUERY_TIMES, fill=as.factor(Type))) + 151 | geom_boxplot() + 152 | theme(legend.position="none")+ 153 | ggtitle("Boxplot of Type by DNS_QUERY_TIMES")+ 154 | theme(plot.title = element_text(hjust = 0.5)) 155 | 156 | 157 | # By the looks of it, DNS_QUERY_TIMES can be a good predictor. 158 | 159 | train%>%ggplot(aes(x=as.factor(Type), y=APP_PACKETS, fill=as.factor(Type))) + 160 | geom_boxplot() + 161 | theme(legend.position="none")+ 162 | ggtitle("Boxplot of Type by App Packets")+ 163 | xlab('Type')+ylab('App Packets')+ 164 | theme(plot.title = element_text(hjust = 0.5)) 165 | # There are a lot of outliers in this variable and there seems to be no difference between malicious and benign URLs for the APP_PACKETS variable. Our model will explain if this variable has potential to be a good predictor. 166 | 167 | train%>%ggplot(aes(x=as.factor(Type), y=TCP_CONVERSATION_EXCHANGE, fill=as.factor(Type))) + 168 | geom_boxplot() + 169 | theme(legend.position="none")+ 170 | ggtitle("Boxplot of Type by TCP Conversation Exchange")+ 171 | xlab('Type')+ylab('TCP Conversation Exchange')+ 172 | theme(plot.title = element_text(hjust = 0.5)) 173 | 174 | # Examining the REMOTE_IPS variable: 175 | train%>%ggplot(aes(x=as.factor(Type), y=REMOTE_IPS, fill=as.factor(Type))) + 176 | geom_boxplot() + 177 | theme(legend.position="none")+ 178 | ggtitle("Boxplot of Type by Remote IPS")+ 179 | xlab('Type')+ylab('Remote IPS')+ 180 | theme(plot.title = element_text(hjust = 0.5)) 181 | 182 | # Determining if URL_LENGTH is a good predictor for the type of URL link. 183 | train%>%ggplot(aes(x=as.factor(Type), y=URL_LENGTH, fill=as.factor(Type))) + 184 | geom_boxplot() + 185 | theme(legend.position="none")+ 186 | ggtitle("Boxplot of Type by URL Length")+ 187 | xlab('Type')+ylab('URL Length')+ 188 | theme(plot.title = element_text(hjust = 0.5)) 189 | 190 | # Plotting the distribution of all the numeric variables in the data to examine patterns. 191 | train %>% 192 | keep(is.numeric) %>% 193 | gather() %>% 194 | ggplot(aes(value)) + 195 | facet_wrap(~ key, scales = "free") + 196 | geom_histogram() 197 | 198 | ###################################### 199 | # Creating the training and test datasets 200 | ###################################### 201 | 202 | # Implementing min-max normalization on the data. 203 | minMax <- function(x) { 204 | return ((x - min(x)) / (max(x) - min(x))) } 205 | 206 | train.subset <- train[c('URL_LENGTH','NUMBER_SPECIAL_CHARACTERS','TCP_CONVERSATION_EXCHANGE','DIST_REMOTE_TCP_PORT','REMOTE_IPS','APP_BYTES','SOURCE_APP_PACKETS','REMOTE_APP_PACKETS', 'Type')] 207 | 208 | # Creating the training and test datasets, with 80-20 split. 209 | train.subset.n <- as.data.frame(lapply(train.subset, minMax)) 210 | head(train.subset.n) 211 | 212 | set.seed(123) 213 | test_index <- sample(1:nrow(train.subset.n),size=nrow(train.subset.n)*0.2,replace = FALSE) #random selection of 20% data. 214 | 215 | test.data <- train.subset[test_index,] # 20% will be test data 216 | train.data <- train.subset[-test_index,] # remaining 80% will be training data 217 | 218 | #Creating seperate dataframe for the 'Type' feature which is our target. 219 | test.data_labels <-train.subset[test_index,9] 220 | train.data_labels <- train.subset[-test_index,9] 221 | 222 | #Confirming whether the dataframe was created properly. 223 | #view(train.data_labels) 224 | #view(test.data_labels) 225 | 226 | ###################################### 227 | # Modeling 228 | ###################################### 229 | 230 | # 231 | # Logistic Regression 232 | # 233 | 234 | glm_model <- glm(Type~.,data = train.data) 235 | 236 | #Looking at the summary of the model 237 | summary(glm_model) 238 | 239 | # We can see that all of the variables in the model are significant explainers of the Type variable. 240 | 241 | predictions<- as.factor(ifelse(predict(glm_model, newdata = test.data,type = 'response')>0.5,1,0)) 242 | 243 | confusionMatrix(predictions,as.factor(test.data_labels)) 244 | 245 | # 246 | # KNN 247 | # 248 | 249 | # Running loop for KNN from 1 to 100 to test for a value of K that gives highest accuracy. 250 | 251 | i=1 # declaration to initiate for loop 252 | k.optm=1 # declaration to initiate for loop 253 | for (i in 1:100){ 254 | knn.mod <- knn(train=train.data, test=test.data, cl=train.data_labels, k=i) 255 | k.optm[i] <- 100 * sum(test.data_labels == knn.mod)/NROW(test.data_labels) 256 | k=i 257 | cat(k,'=',k.optm[i],'\n') # to print % accuracy 258 | } 259 | 260 | # Plots accuracy against value of K. 261 | plot(k.optm, type="b", xlab="K- Value",ylab="Accuracy level") 262 | 263 | # Fitting the KNN model for the value of K = 17. 264 | knn.17 <- knn(train=train.data, test=test.data, cl=train.data_labels, k=17) 265 | confusionMatrix(knn.17, as.factor(test.data_labels)) 266 | 267 | # 268 | # Random Forest 269 | # 270 | 271 | # Fitting the model and checking the variable importance. 272 | train.data$Type <- as.factor(train.data$Type) 273 | modelrf <- randomForest(Type ~ ., data=train.data,ntree=1000) 274 | (varimp.modelrf <- varImp(modelrf)) 275 | 276 | # Testing the output of above into the test dataset. 277 | test.data$rf.pred <- predict(modelrf, newdata = test.data) 278 | head(test.data[c("Type","rf.pred")], n=10) 279 | confusionMatrix(as.factor(test.data$Type),as.factor(test.data$rf.pred)) 280 | -------------------------------------------------------------------------------- /JOCyberMLFinal.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cyber ML Capstone Project - Justin Oh" 3 | author: "Justin Oh" 4 | date: "11/22/2022" 5 | output: pdf_document 6 | --- 7 | ```{r setup, include=FALSE} 8 | knitr::opts_chunk$set(echo = TRUE) 9 | ``` 10 | 11 | 12 | # Introduction 13 | 14 | Our ever-increasing global connectivity and heavy reliance on cloud services has forced humanity to become more technologically dependent than ever before. Approximately 5.25 billion people have access to and use the internet on a daily basis. In fact, from the year 2000 to 2022, the usage of the internet has increased by 1,355%. 15 | 16 | Such dependence highlights just how critical it has become for individuals, companies, and nations to boost their cyber security. Technology continues to advance at a rate nearly impossible to keep up with, but we must not trail behind in our attempts to understand these developments and apply the lessons learned. The cost of leniency is steep as cyber criminals are finding resounding success in their hacking attempts. To put in perspective, the average cost of a data breach was $4.24 million in 2021, with the average time to identify a breach being 212 days. 17 | 18 | While governments across the globe are allocating more resources to adequately combat cyber crimes, the vast majority of the world do not consider cyber security to be a significant issue, let alone a national security threat. In order to emphasize the importance for countries to increase investment in their cyber security programs, I have decided to pursue a personal project regarding the classification of benign and malicious URLs. 19 | 20 | ## Goal of the Project 21 | 22 | By utilizing Logistic Regression, K-nearest neighbors (KNN) and Random Forest algorithms, the objective of this project is to identify which model most accurately classifies the URLs as malicious or benign. Specificity is the metric we'll try to improve as we work through the models. 23 | 24 | 25 | # Preparing the Dataset 26 | 27 | First, we will load all the necessary libraries and the dataset. 28 | 29 | ```{r,message=F,warning=F} 30 | # Required packages will install, please allow several minutes to complete. 31 | 32 | if(!require(tidyverse)) install.packages("tidyverse", repos = "http://cran.us.r-project.org") 33 | if(!require(purrr)) install.packages("purrr", repos = "http://cran.us.r-project.org") 34 | if(!require(caret)) install.packages("caret", repos = "http://cran.us.r-project.org") 35 | if(!require(Hmisc)) install.packages("Hmisc", repos = "http://cran.us.r-project.org") 36 | if(!require(forecast)) install.packages("forecast", repos = "http://cran.us.r-project.org") 37 | if(!require(randomForest)) install.packages("randomForest", repos = "http://cran.us.r-project.org") 38 | if(!require(class)) install.packages("class", repos = "http://cran.us.r-project.org") 39 | if(!require(data.table)) install.packages("data.table", repos = "http://cran.us.r-project.org") 40 | if(!require(psych)) install.packages("psych", repos = "http://cran.us.r-project.org") 41 | if(!require(readr)) install.packages("readr", repos = "http://cran.us.r-project.org") 42 | if(!require(dplyr)) install.packages("dplyr", repos = "http://cran.us.r-project.org") 43 | if(!require(NCmisc)) install.packages("NCmisc", repos = "http://cran.us.r-project.org") 44 | 45 | # Packages for graphing and modeling 46 | library(tidyverse) 47 | library(purrr) 48 | library(caret) 49 | library(Hmisc) 50 | library(forecast) 51 | library(randomForest) 52 | library(class) 53 | library(data.table) 54 | # Packages for reading the CSV file: 55 | library(psych) 56 | library(readr) 57 | library(dplyr) 58 | #Packages for testing what packages are used: 59 | library(NCmisc) 60 | 61 | ``` 62 | 63 | Now, we will download the dataset from my GitHub repository and load it into RStudio: 64 | 65 | ```{r,message=F,warning=F} 66 | # The necessary data-set is able through my Github repository if the following code fails 67 | download.file("https://raw.githubusercontent.com/justin-2028/Justin-2028-HarvardX-Capstone-Personal-Project/main/kaggleRCdataset.csv", "kaggleRCdataset.csv") 68 | train = read.csv("kaggleRCdataset.csv", header = TRUE) 69 | ``` 70 | 71 | We'll move on to first stage of the analysis process, which is data cleaning. 72 | 73 | # Data Description 74 | 75 | URL: It is the anonymous identification of the URL analyzed in the study. 76 | 77 | URL_LENGTH: It is the number of characters in the URL. 78 | 79 | NUMBERSPECIALCHARACTERS: It is the number of special characters identified in the URL, such as, “/”, “%”, “#”, “&”, “. 80 | “, “=”. 81 | 82 | CHARSET: It is a categorical value and represents the character encoding standard (also called character set). 83 | 84 | SERVER: It is a categorical value and represents the operative system of the server that has been derived from the packet response. 85 | 86 | CONTENT_LENGTH: It represents the content size of the HTTP header. 87 | 88 | WHOIS_COUNTRY: It is a categorical variable, and its values are the countries we got from the server response (specifically, through the API of WHOIS). 89 | 90 | WHOIS_STATEPRO: It is a categorical variable, and its values are the states we got from the server response (specifically, through the API of WHOIS). 91 | 92 | WHOIS_REGDATE: WHOIS provides the server registration date, so, this variable has date values with the format DD/MM/YYY HH:MM. 93 | 94 | WHOISUPDATEDDATE: Through the WHOIS, the last update date from the server is represented through this variable. 95 | 96 | TCPCONVERSATIONEXCHANGE: This variable is the number of TCP packets exchanged between the server and the honeypot client. 97 | 98 | DISTREMOTETCP_PORT: It is the number of the ports detected and unique to TCP. 99 | 100 | REMOTE_IPS: This variable represents the total number of IPs connected to the honeypot. 101 | 102 | APP_BYTES: This is the number of bytes transferred. 103 | 104 | SOURCEAPPPACKETS: This is the number of packets sent from the honeypot to the server. 105 | 106 | REMOTEAPPPACKETS: This is the number of packets received from the server. 107 | 108 | APP_PACKETS: This is the total number of IP packets generated during the communication between the honeypot and the server. 109 | 110 | DNSQUERYTIMES: This is the number of DNS packets generated during the communication between the honeypot and the server. 111 | 112 | TYPE: This is a categorical variable, and its values represent the type of web page analyzed, specifically, 1 is for malicious websites and 0 is for benign websites. 113 | 114 | 115 | # Data Cleaning: 116 | 117 | Data cleaning is a vital stage of the analysis. It helps us understands the data and clean it in order to make it fit for our modelling purposes. Our data also has some issues that must be addressed beforehand. Thus, we will clean it to prepare it for modelling. 118 | There are some issues with the "WHOIS_COUNTRY" variable which we need to examine: 119 | 120 | ```{r} 121 | unique(train$WHOIS_COUNTRY) 122 | ``` 123 | 124 | We can see that WHOIS_COUNTRY has different values for one country and that has to be corrected. For example: UK is shown as United Kingdom and GB. We need to correct that before moving forward. 125 | 126 | ```{r} 127 | train$WHOIS_COUNTRY <- as.character(train$WHOIS_COUNTRY) 128 | train[train$WHOIS_COUNTRY == 'United Kingdom','WHOIS_COUNTRY'] <- "UK" 129 | train[train$WHOIS_COUNTRY == "[u'GB'; u'UK']",'WHOIS_COUNTRY'] <- "UK" 130 | train[train$WHOIS_COUNTRY == "GB",'WHOIS_COUNTRY'] <- "UK" 131 | train[train$WHOIS_COUNTRY == "us",'WHOIS_COUNTRY'] <- "US" 132 | train[train$WHOIS_COUNTRY == 'ru','WHOIS_COUNTRY'] <- "RU" 133 | ``` 134 | 135 | Most countries do not seem to have malicious data. This disparity in data can lead to over-fitting in the modelling. We'll have to deal with this issue here by creating a single category for such countries called "Other". 136 | 137 | ```{r} 138 | mc <- train[train$Type == 1,'WHOIS_COUNTRY'] 139 | others <- which(!(train$WHOIS_COUNTRY %in% mc)) 140 | train[others,'WHOIS_COUNTRY'] <- "Other" 141 | train$WHOIS_COUNTRY <- as.factor(train$WHOIS_COUNTRY) 142 | 143 | ``` 144 | 145 | 146 | Now let's look at the values in CHARSET variable: 147 | 148 | ```{r} 149 | unique(train$CHARSET) 150 | ``` 151 | 152 | 153 | There is a similar problem in this variable as we saw in the WHOIS_COUNTRY variable: 154 | 155 | ```{r} 156 | train$CHARSET <- as.character(train$CHARSET) 157 | train[train$CHARSET == 'iso-8859-1',"CHARSET"] <- "ISO-8859-1" 158 | train[train$CHARSET == 'utf-8',"CHARSET"] <- "UTF-8" 159 | train[train$CHARSET == 'windows-1251',"CHARSET"] <- "windows-12##" 160 | train[train$CHARSET == 'windows-1252',"CHARSET"] <- "windows-12##" 161 | train$CHARSET <- as.factor(train$CHARSET) 162 | ``` 163 | 164 | For the normalization of the SERVER variable, we will assign the values which do not have any malicious value in the data to the "Other" server value. 165 | 166 | ```{r} 167 | train$SERVER <- as.character(train$SERVER) 168 | mserver <- train[train$Type == 1,"SERVER"] 169 | others <- which(!(train$SERVER %in% mserver)) 170 | train[others,'SERVER'] <- "Other" 171 | table(train$SERVER == "Other") 172 | train$SERVER <- as.factor(train$SERVER) 173 | ``` 174 | 175 | 176 | Having missing values in the data is a problem. There are many ways to deal with the missing values. The first method is to remove the missing values, but if the number of rows having missing values is high, it can result in data loss. Another method to deal with missing values is using imputations. This method helps when rows for missing values is high enough to not be removed, so you change the missing values to the mean of the variable. If the number of rows with missing values is more than 60% or 70% of total number of rows, then imputing the mean or median won't be helpful and it's better to remove that column from the analysis. We'll look at the number of NAs in our data: 177 | 178 | ```{r} 179 | colSums(is.na(train)) 180 | ``` 181 | 182 | We can see that there are 812 NAs in the content length variable. This is almost half of the total number of rows. We can remove this column as imputation won't be helpful in the modelling process and information from this variable isn't significant. There is 1 NA in DNS_QUERY_TIMES which can be solved by imputation: 183 | 184 | ```{r} 185 | train$DNS_QUERY_TIMES=impute(train$DNS_QUERY_TIMES, 0) 186 | train$CONTENT_LENGTH=impute(train$CONTENT_LENGTH, mean) 187 | ``` 188 | 189 | 190 | We'll now remove the variables which will not be useful in the modelling process: 191 | 192 | ```{r} 193 | train$URL <- NULL 194 | train$WHOIS_REGDATE <- NULL 195 | 196 | train$CONTENT_LENGTH <- NULL 197 | ``` 198 | 199 | 200 | We can change our response variable to the factor variable: 201 | 202 | ```{r} 203 | train$type<- as.factor(train$Type) 204 | ``` 205 | 206 | # Data Exploration: 207 | 208 | The main purpose of exploring the data here is to get a better understanding of the dataset. First, we'll look at how many rows and columns we have in the dataset: 209 | 210 | ```{r} 211 | dim(train) 212 | ``` 213 | 214 | We have 1781 rows and 21 variables. 215 | Let's look at the first few and last few rows of the data set to see how the table looks like: 216 | 217 | ```{r} 218 | head(train, 10) 219 | tail(train, 10) 220 | ``` 221 | 222 | Looking at the structure of the dataset is very important as it enables further understanding of the variables. It's important to make sure the variables have the correct classes. 223 | 224 | ```{r} 225 | str(train) 226 | ``` 227 | 228 | Now, let's look at the overall summary of the dataset to see the mean, median and variance for the numeric variables. 229 | 230 | ```{r} 231 | describe(train) 232 | ``` 233 | 234 | It's important to look at the relationship of numeric variables to our response variable type. 235 | First, we'll look at the DNS_QUERY_TIMES variable against type variable: 236 | 237 | ```{r} 238 | ggplot(train, aes(x=as.factor(Type), y=DNS_QUERY_TIMES, fill=as.factor(Type))) + 239 | geom_boxplot() + 240 | theme(legend.position="none")+ 241 | ggtitle("Boxplot of Type by DNS_QUERY_TIMES")+ 242 | xlab('Type') 243 | theme(plot.title = element_text(hjust = 0.5)) 244 | ``` 245 | 246 | There seems to be clear difference between distribution of DNS_QUERY_TIMES for Malicious and Benign URLs. This suggests that DNS_QUERY_TIMES can be a good predictor. 247 | 248 | Now we'll look at the relationship for APP_PACKETS variable: 249 | 250 | ```{r} 251 | train%>%ggplot(aes(x=as.factor(Type), y=APP_PACKETS, fill=as.factor(Type))) + 252 | geom_boxplot() + 253 | theme(legend.position="none")+ 254 | ggtitle("Boxplot of Type by App Packets")+ 255 | xlab('Type')+ylab('App Packets')+ 256 | theme(plot.title = element_text(hjust = 0.5)) 257 | ``` 258 | 259 | There are a lot of outliers in this variable and there seems to be no difference between malicious and benign URLs for the APP_PACKETS variable. Our model will explain if this variable has potential to be a good predictor. 260 | 261 | Let's look at the TCP_CONVERSATION_EXCHANGE variable: 262 | 263 | ```{r} 264 | train%>%ggplot(aes(x=as.factor(Type), y=TCP_CONVERSATION_EXCHANGE, fill=as.factor(Type))) + 265 | geom_boxplot() + 266 | theme(legend.position="none")+ 267 | ggtitle("Boxplot of Type by TCP Conversation Exchange")+ 268 | xlab('Type')+ylab('TCP Conversation Exchange')+ 269 | theme(plot.title = element_text(hjust = 0.5)) 270 | ``` 271 | 272 | The distribution is similar to the App Packets and there are a lot of outliers in the dataset. 273 | Now let's look at the remote IPS variable: 274 | 275 | ```{r} 276 | train%>%ggplot(aes(x=as.factor(Type), y=REMOTE_IPS, fill=as.factor(Type))) + 277 | geom_boxplot() + 278 | theme(legend.position="none")+ 279 | ggtitle("Boxplot of Type by Remote IPS")+ 280 | xlab('Type')+ylab('Remote IPS')+ 281 | theme(plot.title = element_text(hjust = 0.5)) 282 | ``` 283 | 284 | Remote IPS has a similar median for Malicious and Benign URLs. However, the interquartile range of Malicious links is less than that of Benign URLs. 285 | Now, we'll look at the length of the URLs to see the distribution of it for our response variable. 286 | 287 | ```{r} 288 | train%>%ggplot(aes(x=as.factor(Type), y=URL_LENGTH, fill=as.factor(Type))) + 289 | geom_boxplot() + 290 | theme(legend.position="none")+ 291 | ggtitle("Boxplot of Type by URL Length")+ 292 | xlab('Type')+ylab('URL Length')+ 293 | theme(plot.title = element_text(hjust = 0.5)) 294 | ``` 295 | 296 | The shape of the distribution for Malicious and Benign URLs of URL length is quite different, so this can be a good identifier for the type of URL. 297 | Finally, we'll plot the distribution of all the numeric variables and see if there's a pattern: 298 | 299 | ```{r} 300 | train %>% 301 | keep(is.numeric) %>% 302 | gather() %>% 303 | ggplot(aes(value)) + 304 | facet_wrap(~ key, scales = "free") + 305 | geom_histogram() 306 | ``` 307 | 308 | It can be observed that most of the variables are skewed to the right and some variables have a spread out distribution. 309 | The variables with a spread out distribution can be helpful in prediction. 310 | 311 | # Creating the Test and Train Dataset: 312 | 313 | First of all, we'll do the min-max normalization on the data and then create the training and test dataset. Our training dataset will be 80% of the observations. 314 | 315 | ```{r,message=F,warning=F} 316 | minMax <- function(x) { 317 | return ((x - min(x)) / (max(x) - min(x))) } 318 | 319 | train.subset <- train[c('URL_LENGTH','NUMBER_SPECIAL_CHARACTERS','TCP_CONVERSATION_EXCHANGE','DIST_REMOTE_TCP_PORT','REMOTE_IPS','APP_BYTES','SOURCE_APP_PACKETS','REMOTE_APP_PACKETS', 'Type')] 320 | 321 | train.subset.n <- as.data.frame(lapply(train.subset, minMax)) 322 | head(train.subset.n) 323 | 324 | set.seed(123) 325 | test_index <- sample(1:nrow(train.subset.n),size=nrow(train.subset.n)*0.2,replace = FALSE) #random selection of 20% data. 326 | 327 | test.data <- train.subset[test_index,] # 20% will be test data 328 | train.data <- train.subset[-test_index,] # remaining 80% will be training data 329 | 330 | #Creating separate data frame for the 'Type' feature which is our target. 331 | test.data_labels <-train.subset[test_index,9] 332 | train.data_labels <- train.subset[-test_index,9] 333 | ``` 334 | 335 | # Modelling and Testing: 336 | 337 | We'll fit the Logistic Regression, KNN and Random forest models on the data and determine the performance of the models. The performance metrics that are important are Accuracy, Specificity and Sensitivity. Specificity tells us that how many Malicious URLs were correctly predicted by the model. That's why this is the most important metric for us as mentioned in the Introduction section. 338 | 339 | ## Logistic Regression: 340 | 341 | 342 | Now, we have our data ready for modelling. First, we'll use the logistic regression model. Logistic regression is quite a simple model which finds the logit function of the probability of the response variable using the equation used in linear modelling: 343 | $logit(p) = \beta_0 + \beta_i \times X_i + \epsilon_i$ 344 | We'll fit the logistic regression model on our data and predict it through our test data to check the accuracy and specificity of the results. Specificity is an important metric for us as it tells us how many of malicious URLs were correctly predicted by the algorithm. 345 | Let's fit the model and check the summary of the results: 346 | 347 | ```{r} 348 | 349 | glm_model <- glm(Type~.,data = train.data) 350 | 351 | #Looking at the summary of the model 352 | summary(glm_model) 353 | ``` 354 | 355 | We can see in the results of the model that all of the models are significant as their p-value is less than 0.05 level of significance. The AIC of the model is 592, which looks good for our purposes. Let's test the performance of the model on the test data: 356 | 357 | ```{r} 358 | predictions<- as.factor(ifelse(predict(glm_model, newdata = test.data,type = 'response')>0.5,1,0)) 359 | 360 | confusionMatrix(predictions,as.factor(test.data_labels)) 361 | ``` 362 | 363 | Our logistic regression model gives us an accuracy of 88.2%, which isn't bad. However, we can see that the model is over-fitted on the data because the specificity of the model is very low (2.4%). The no information rate of the model is also very high. The results of the logistic regression model are not what we are looking for, so we'll test other models to achieve a higher accuracy. 364 | 365 | ## KNN: 366 | 367 | The KNN model checks all the data and classifies based on the similarity in the data. It is a non-parametric, supervised learning model and similar data is classified based on the nearest neighbor approach. It categorizes data based on similarity and classifies new cases based on their similarity with available categories. 368 | One important parameter in this model is the value of K. It represents the number of neighbors for assigning categories. We'll determine the optimal number of K through iterations. 369 | Let's fit KNN onto our data. We'll run a loop for KNN from 1 to 100 to test value of K and check accuracy at each point. The value of K which gives us highest accuracy will be selected. 370 | 371 | ```{r} 372 | i=1 # declaration to initiate for loop 373 | k.optm=1 # declaration to initiate for loop 374 | for (i in 1:100){ 375 | knn.mod <- knn(train=train.data, test=test.data, cl=train.data_labels, k=i) 376 | k.optm[i] <- 100 * sum(test.data_labels == knn.mod)/NROW(test.data_labels) 377 | k=i 378 | cat(k,'=',k.optm[i],'\n') # to print % accuracy 379 | } 380 | ``` 381 | 382 | The series shows us the accuracy against value of K. 383 | 384 | ```{r} 385 | plot(k.optm, type="b", xlab="K- Value",ylab="Accuracy level") 386 | ``` 387 | 388 | As we can see from the plot and series, the optimal value of K is 17 as it yields the highest accuracy. 389 | Now we'll fit the KNN for the K value of 17: 390 | 391 | ```{r} 392 | knn.17 <- knn(train=train.data, test=test.data, cl=train.data_labels, k=17) 393 | confusionMatrix(knn.17, as.factor(test.data_labels)) 394 | 395 | ``` 396 | 397 | The accuracy of the model is 91.8 which is better than our previous model (logistic regression). The specificity of this KNN model is 39%, which is far better than logistic regression but it's still not what we are looking for. Now, we'll test our final model, Random Forest. 398 | 399 | ## Random Forest: 400 | 401 | The Random Forest model uses multiple decision trees to determine classifications. Random Forest classifies based on the general consensus provided from the decision trees involved. 402 | Let's fit the model and check the variable importance. 403 | 404 | ```{r} 405 | train.data$Type <- as.factor(train.data$Type) 406 | modelrf <- randomForest(Type ~ ., data=train.data,ntree=1000) 407 | (varimp.modelrf <- varImp(modelrf)) 408 | ``` 409 | 410 | We can see that URL_LENGTH and NUMBER_SPECIAL_CHARACTERS are the most important variables in this process. Let's test the output of the model on test data: 411 | 412 | ```{r} 413 | test.data$rf.pred <- predict(modelrf, newdata = test.data) 414 | head(test.data[c("Type","rf.pred")], n=10) 415 | confusionMatrix(as.factor(test.data$Type),as.factor(test.data$rf.pred)) 416 | ``` 417 | 418 | We can see that output of the Random Forest model is great on the test set. The overall accuracy of the model is 97% and specificity of the model is 94%. This result is great for our purposes and we'll use this model over the others. 419 | 420 | # Results 421 | 422 | Over the course of this report, Logistic Regression, K-nearest neighbors (KNN) and Random Forest algorithms were utilized to find the model that best predicted whether a URL was malicious or benign. 423 | 424 | We achieved a notable increase in accuracy from 88.2% to 97.47%, and an incredible jump in specificity from 2.4% to approximately 94%, with Logistic Regression being the former and Random Forests the latter. 425 | 426 | Having accomplished both the highest accuracy and specificity amongst the three models, it is evident that the Random Forest algorithm is the best predictor of malicious or benign URLs. 427 | 428 | # Conclusion 429 | 430 | Through this analysis, we were able to confirm that machine learning approaches regarding the prediction of Malicious and Benign URLs can be extremely helpful as they can decrease the risk of cyber crime and theft when applied successfully. In our analysis, the Random Forest model was able to secure a 94% Malicious URL prediction rate, which serves as a testament to the usefulness of such algorithms. Other advanced approaches (ex. neural network) can be more accurate in prediction. We saw that length of the URL and number of special characters in a URL are the most important when it comes to classification. 431 | 432 | One important future implication is that a model trained through more detailed observations and with more advanced machine learning techniques can be deployed in real world situation. When considering the high prediction rates demonstrated by the models as a whole, their helpfulness becomes apparent, particularly in the cybersecurity sector. 433 | 434 | While there is clear room for improvement, the algorithms used in this analysis found immense success in differentiating between Malicious and Benign URLs. Furthermore, we were able to determine that the Random Forest model produced the best results, making this venture an overall success. 435 | 436 | ## Limitations 437 | 438 | My Cyber ML Capstone Project encountered several limitations that I hope to address in the future, perhaps through the assistance of my peer reviewers and the feedback of the staff. 439 | 440 | 1) Software/Hardware Limitations: I have attempted several advanced machine learning models that could have outbested the Random Forest models, such as a potential incorporation of the cforest package, but the lackluster processing power and RAM of my laptop has currently made it difficult to do so. 441 | 2) Exploratory Limitations: A higher understanding of the Malicious and Benign URLs dataset would have allowed me to fine-tune the models further. I had much difficulty with the data wrangling portion of the project, so I hope to improve that in future endeavors. 442 | 3) Dataset Limitations: The Malicious and Benign URLs dataset contains only 1781 unique URLs. The small sample size undoubtedly limited the performance of our models. However, other datasets on Kaggle either faced the same predicament or lacked the variables I was looking for. I will continue to search for a higher-quality dataset so I can revisit and improve this project. 443 | 444 | ## Future Works 445 | 446 | As summarized above, my attempts at creating better models has been hampered by the limitations of my device and my understanding of the Malicious and Benign URLs dataset. However, I intend on trying the following in the near future. 447 | 448 | 1) Applying gradient boosting (through XGBoost) for regression purposes. As mentioned before, neural networks could be incorporated as well. 449 | 2) Redoing the project with a dataset with a much larger sample size. Could consider either broadening or narrowing the subject matter if necessary. 450 | 451 | ## Acknowledgements 452 | 453 | I would like to thank Professor Rafael Irizarry, as well as the countless educators, moderators, and supervisors that have contributed to the HarvardX Professional Data Science Certificate Program. Their collective efforts have provided one of the best remote learning experiences I have had to date, and I am extremely grateful to have studied the R programming language under such accredited curriculum. I would like to thank Christian Urcuquii for generously providing the Malicious and Benign URLs dataset on Kaggle for public use. I also want to share my gratitude and heartfelt thanks to my fellow peers, whose discussions on the interactive forums have given me invaluable insight throughout the journey. Lastly, I would like to acknowledge my parents, who have never stopped supporting my dreams. -------------------------------------------------------------------------------- /kaggleRCdataset.csv: -------------------------------------------------------------------------------- 1 | URL,URL_LENGTH,NUMBER_SPECIAL_CHARACTERS,CHARSET,SERVER,CONTENT_LENGTH,WHOIS_COUNTRY,WHOIS_STATEPRO,WHOIS_REGDATE,WHOIS_UPDATED_DATE,TCP_CONVERSATION_EXCHANGE,DIST_REMOTE_TCP_PORT,REMOTE_IPS,APP_BYTES,SOURCE_APP_PACKETS,REMOTE_APP_PACKETS,SOURCE_APP_BYTES,REMOTE_APP_BYTES,APP_PACKETS,DNS_QUERY_TIMES,Type 2 | M0_109,16,7,iso-8859-1,nginx,263,None,None,10/10/2015 18:21,None,7,0,2,700,9,10,1153,832,9,2,1 3 | B0_2314,16,6,UTF-8,Apache/2.4.10,15087,None,None,None,None,17,7,4,1230,17,19,1265,1230,17,0,0 4 | B0_911,16,6,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 5 | B0_113,17,6,ISO-8859-1,nginx,162,US,AK,7/10/1997 4:00,12/09/2013 0:45,31,22,3,3812,39,37,18784,4380,39,8,0 6 | B0_403,17,6,UTF-8,None,124140,US,TX,12/05/1996 0:00,11/04/2017 0:00,57,2,5,4278,61,62,129889,4586,61,4,0 7 | B0_2064,18,7,UTF-8,nginx,NA,SC,Mahe,3/08/2016 14:30,3/10/2016 3:45,11,6,9,894,11,13,838,894,11,0,0 8 | B0_462,18,6,iso-8859-1,Apache/2,345,US,CO,29/07/2002 0:00,1/07/2016 0:00,12,0,3,1189,14,13,8559,1327,14,2,0 9 | B0_1128,19,6,us-ascii,Microsoft-HTTPAPI/2.0,324,US,FL,18/03/1997 0:00,19/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 10 | M2_17,20,5,utf-8,nginx/1.10.1,NA,None,None,8/11/2014 7:41,None,0,0,0,0,2,3,213,146,2,2,1 11 | M3_75,20,5,utf-8,nginx/1.10.1,NA,None,None,8/11/2014 7:41,None,0,0,0,0,2,1,62,146,2,2,1 12 | B0_1013,20,6,utf-8,Apache,NA,US,Kansas,14/09/2007 0:00,9/09/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 13 | B0_1102,20,6,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CO,22/11/2016 0:00,23/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 14 | B0_22,20,7,utf-8,None,13716,GB,None,11/10/2002 0:00,6/10/2016 0:00,16,6,8,1492,20,20,2334,1784,20,4,0 15 | B0_482,20,6,ISO-8859-1,nginx,3692,None,None,14/11/2002 0:00,19/04/2015 0:00,25,19,4,3946,35,29,16408,4746,35,10,0 16 | B0_869,20,7,ISO-8859-1,Apache/2.2.15 (Red Hat),13054,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 17 | M0_71,21,7,ISO-8859-1,Apache/2.4.23 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,957,UK,None,16/07/2000 0:00,4/07/2015 0:00,7,0,1,717,11,10,1960,1011,11,4,1 18 | M0_97,21,7,iso-8859-1,nginx,686,RU,Novosibirskaya obl.,25/05/2013 0:00,23/05/2016 0:00,6,0,2,603,8,9,1580,745,8,2,1 19 | B0_2303,21,6,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,9/08/1999 0:00,10/02/2015 0:00,7,7,3,618,7,9,562,618,7,0,0 20 | B0_584,21,6,utf-8,nginx,15025,None,None,None,None,13,1,5,1099,15,17,15476,1243,15,2,0 21 | M0_69,22,7,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CO,15/09/2013 0:00,25/02/2017 0:00,9,0,4,850,11,9,1354,994,11,2,1 22 | B0_161,22,6,utf-8,openresty/1.11.2.1,NA,US,CA,3/07/1999 0:00,7/08/2015 0:00,39,29,6,3833,43,42,22495,4125,43,4,0 23 | B0_2122,22,6,iso-8859-1,nginx,318,US,Tennessee,2/11/2003 0:00,29/06/2015 0:00,8,6,6,696,8,10,636,696,8,0,0 24 | B0_2176,22,6,iso-8859-1,Apache/2.2.22,224,None,None,12/08/2008 22:10,13/07/2016 17:36,4,3,2,420,4,6,372,420,4,0,0 25 | B0_569,22,7,utf-8,Apache/2.4.7 (Ubuntu),4421,AU,Vi,21/05/2009 0:00,15/05/2016 0:00,12,0,2,2259,16,12,5165,2559,16,4,0 26 | B0_601,22,6,UTF-8,nginx/1.12.0,NA,US,FL,1/08/2002 0:00,22/03/2016 0:00,6,0,3,650,10,10,1417,950,10,4,0 27 | B0_884,22,6,ISO-8859-1,Apache,441,US,OR,13/01/2005 0:00,2/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 28 | B0_905,22,6,ISO-8859-1,nginx/1.12.0,NA,US,Texas,18/05/2005 19:41,19/05/2016 10:14,0,0,0,0,0,0,0,0,0,0,0 29 | B0_916,22,6,utf-8,nginx,6671,CA,ALBERTA,4/01/2001 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 30 | B0_102,23,6,utf-8,Apache,NA,US,FL,28/02/2008 10:58,14/02/2017 20:27,16,3,11,1696,18,20,13422,1844,18,2,0 31 | B0_1130,23,6,iso-8859-1,Apache/2.4.12 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,434,PA,PANAMA,8/12/2006 0:00,14/12/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 32 | B0_1185,23,6,us-ascii,Microsoft-HTTPAPI/2.0,324,se,None,16/06/2000 0:00,18/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 33 | B0_1369,23,6,utf-8,nginx,13001,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 34 | B0_1412,23,7,ISO-8859-1,Oracle-iPlanet-Web-Server/7.0,3257,None,None,13/10/2000 0:00,27/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 35 | B0_2217,23,6,ISO-8859-1,None,6748,US,Arizona,31/12/1999 0:00,9/04/2017 0:00,7,4,5,630,7,4,244,630,7,0,0 36 | B0_2240,23,7,UTF-8,nginx,NA,None,None,None,None,24,5,8,1740,24,11,696,1740,24,0,0 37 | B0_23,23,6,None,None,NA,US,TX,30/07/1996 0:00,4/07/2016 0:00,19,7,6,2404,23,20,6179,2684,23,4,0 38 | B0_241,23,6,UTF-8,None,NA,GB,None,9/05/2008 0:00,27/11/2015 0:00,19,14,6,1980,23,25,5737,2276,23,4,0 39 | B0_285,23,6,UTF-8,None,NA,US,WI,23/04/1999 0:00,25/07/2016 0:00,4,0,1,519,8,8,1138,823,8,4,0 40 | B0_465,23,6,UTF-8,cloudflare-nginx,NA,US,Oregon,4/02/1997 0:00,8/11/2014 0:00,10,0,5,1186,14,15,1900,1476,14,4,0 41 | B0_599,23,6,ISO-8859-1,nginx/1.12.0,NA,IN,Andhra Pradesh,13/02/2003 0:00,14/02/2017 0:00,43,4,4,5738,47,50,56926,6046,47,4,0 42 | B0_614,23,6,iso-8859-1,Apache,240,US,CA,17/05/2008 0:00,18/05/2016 0:00,8,0,2,723,10,11,1837,871,10,2,0 43 | B0_622,23,6,ISO-8859-1,Apache,3985,CA,AB,30/05/2002 0:00,31/05/2016 0:00,40,17,16,3285,46,45,12003,3729,46,6,0 44 | B0_790,23,6,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,20/10/2005 0:00,30/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 45 | M0_175,24,8,ISO-8859-1,nginx/1.6.2,6173,None,None,None,None,2,0,1,132,2,5,318,132,2,0,1 46 | M0_89,24,9,iso-8859-1,Apache,319,IN,Tamil Nadu,None,None,7,0,2,720,9,10,1269,868,9,2,1 47 | B0_108,24,6,utf-8,openresty,NA,LU,None,7/01/2006 0:00,14/12/2016 0:00,84,54,5,10490,96,106,106925,11482,96,12,0 48 | B0_126,24,6,ISO-8859-1,None,34,US,VA,5/03/1996 5:00,27/05/2016 14:46,65,3,5,6286,69,75,90508,6596,69,4,0 49 | B0_171,24,7,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,14,6,6,1907,18,18,5601,2171,18,4,0 50 | B0_2301,24,6,utf-8,Heptu web server,1778,None,None,10/01/1998 0:00,11/11/2012 0:00,7,7,3,618,7,9,562,618,7,0,0 51 | B0_2313,24,6,utf-8,Pepyaka/1.11.3,NA,None,None,27/04/2016 0:00,29/04/2017 0:00,6,3,2,528,6,4,244,528,6,0,0 52 | B0_2315,24,6,us-ascii,Microsoft-HTTPAPI/2.0,324,CA,quebec,7/04/2011 0:00,8/04/2017 0:00,6,4,4,564,6,8,508,564,6,0,0 53 | B0_282,24,8,iso-8859-1,Apache/2.2.22,224,US,MA,26/02/2009 0:00,6/01/2017 0:00,19,2,4,2131,23,23,9471,2441,23,4,0 54 | B0_321,24,6,utf-8,nginx/1.8.0,NA,CA,ON,3/07/2002 0:00,2/07/2016 0:00,12,2,7,984,16,16,1839,1292,16,4,0 55 | B0_326,24,7,iso-8859-1,Apache,318,None,None,None,None,21,1,8,1606,25,13,1276,1914,25,4,0 56 | B0_483,24,7,utf-8,nginx/1.10.1 + Phusion Passenger 5.0.30,NA,None,None,21/02/1995 0:00,19/02/2017 0:00,16,6,8,2279,22,22,2562,2729,22,6,0 57 | B0_543,24,6,iso-8859-1,Apache/2,345,US,New Mexico,4/07/2007 0:00,5/07/2016 0:00,19,5,9,1390,21,25,3890,1540,21,2,0 58 | B0_656,24,6,UTF-8,Apache,756,PA,PANAMA,2/07/1998 0:00,6/02/2017 0:00,23,3,15,2485,27,28,9332,2799,27,4,0 59 | B0_1163,25,6,utf-8,Apache/2.2.29 (Amazon),NA,CA,British Columbia,10/03/2005 0:00,4/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 60 | B0_1308,25,7,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 61 | B0_1347,25,6,UTF-8,nginx,14839,US,NY,15/12/2004 0:00,13/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 62 | B0_2127,25,6,us-ascii,Microsoft-IIS/7.5,324,US,Massachusetts,25/02/2008 0:00,26/02/2017 0:00,5,2,4,474,5,4,250,474,5,0,0 63 | B0_2224,25,6,UTF-8,LiteSpeed,NA,None,None,27/01/2005 0:00,15/11/2013 0:00,6,5,2,564,6,7,442,564,6,0,0 64 | B0_468,25,6,UTF-8,Apache,NA,US,California,14/09/2006 0:00,9/09/2016 0:00,12,0,5,1327,16,17,14050,1615,16,4,0 65 | B0_568,25,6,UTF-8,nginx,658,None,None,None,None,11,3,4,1232,15,16,9806,1530,15,4,0 66 | B0_577,25,6,UTF-8,None,NA,TH,bangkok,30/04/2010 14:12,12/03/2017 1:47,18,7,9,1586,22,17,1735,1898,22,4,0 67 | B0_704,25,6,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,36,17,9,4737,42,35,10343,5173,42,6,0 68 | B0_781,25,6,UTF-8,Apache,195,GB,WEST MIDLANDS,16/07/2016 0:00,22/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 69 | B0_786,25,6,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CO,27/11/2016 19:09,1/02/2017 0:01,0,0,0,0,0,0,0,0,0,0,0 70 | B0_886,25,6,ISO-8859-1,Apache,NA,US,California,30/10/2009 0:00,27/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 71 | M0_111,26,8,UTF-8,nginx,NA,None,None,12/03/2009 21:00,None,12,0,2,1052,14,14,11935,1204,14,2,1 72 | M0_15,26,8,utf-8,nginx,NA,None,None,9/03/2000 17:50,None,9,1,2,878,11,12,2242,1018,11,2,1 73 | M0_171,26,7,ISO-8859-1,nginx/1.12.0,4166,US,TEXAS,30/05/2008 0:00,30/05/2016 0:00,24,0,3,2508,30,30,21098,2992,30,6,1 74 | M0_68,26,7,ISO-8859-1,Apache/2.4.23 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,962,GB,WC1N,25/09/2000 0:00,18/07/2016 0:00,9,0,4,842,11,12,2101,994,11,2,1 75 | M0_70,26,7,ISO-8859-1,Apache/2.4.23 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,962,GB,WC1N,9/04/2002 0:00,10/04/2017 0:00,7,0,2,722,11,10,2000,1016,11,4,1 76 | M0_72,26,7,ISO-8859-1,Apache/2.4.23 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,962,GB,WC1N,9/04/2002 0:00,10/04/2017 0:00,7,0,2,722,11,9,1913,1036,11,4,1 77 | B0_1125,26,6,utf-8,nginx,2688,US,Kentucky,11/01/1997 0:00,30/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 78 | B0_1205,26,7,UTF-8,cloudflare-nginx,NA,US,MD,11/06/2000 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 79 | B0_1321,26,6,UTF-8,nginx,NA,CA,ON,13/02/2002 19:55,23/02/2017 17:46,0,0,0,0,0,0,0,0,0,0,0 80 | B0_1374,26,6,iso-8859-1,Apache,199,PA,PANAMA,19/12/2007 0:00,21/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 81 | B0_159,26,6,UTF-8,Apache/2.4.25 (cPanel) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,3548,None,None,6/11/1997 0:00,6/11/2016 0:00,13,0,1,1378,19,19,6226,1856,19,6,0 82 | B0_173,26,7,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,26,19,5,2727,30,19,5765,2991,30,4,0 83 | B0_179,26,6,None,tsa_c,0,US,CA,21/01/2000 0:00,8/11/2016 0:00,43,39,3,6325,53,50,32025,7063,53,10,0 84 | B0_2027,26,6,ISO-8859-1,nginx/1.12.0,5426,US,NEW YORK,27/04/2009 0:00,27/02/2017 0:00,9,7,4,702,9,10,696,702,9,0,0 85 | B0_2152,26,7,utf-8,Apache/2.2.0 (Fedora),NA,None,None,11/10/2000 0:00,12/12/2016 0:00,11,9,7,882,11,9,562,882,11,0,0 86 | B0_2293,26,6,UTF-8,None,NA,CA,British Columbia,4/08/1998 0:00,10/04/2017 0:00,4,3,2,396,4,6,482,396,4,0,0 87 | B0_256,26,6,iso-8859-1,Apache/2,345,US,FL,31/05/2000 0:00,2/04/2014 0:00,43,0,2,3252,47,47,60076,3564,47,4,0 88 | B0_258,26,7,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,46,12,11,3783,50,18,5605,4047,50,4,0 89 | B0_297,26,7,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,21,8,9,2373,25,27,6199,2637,25,4,0 90 | B0_660,26,6,utf-8,cloudflare-nginx,NA,US,Washington,23/10/1999 0:00,13/08/2016 0:00,7,0,2,984,11,12,1650,1300,11,4,0 91 | B0_793,26,6,ISO-8859-1,nginx/1.12.0,NA,US,Colorado,23/06/2010 0:00,23/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 92 | B0_859,26,6,us-ascii,None,324,US,TX,9/03/2000 0:00,13/02/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 93 | B0_883,26,6,UTF-8,cloudflare-nginx,NA,US,PA,13/04/1994 0:00,13/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 94 | B0_928,26,6,UTF-8,nginx,NA,US,LA,9/06/2010 0:00,21/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 95 | B0_982,26,6,utf-8,nginx/1.12.0,NA,US,Arizona,29/04/2009 0:00,8/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 96 | M0_67,27,7,UTF-8,Apache/2.2.22 (Debian),8756,GB,WC1N,16/06/2000 0:00,16/02/2016 0:00,38,0,3,4207,44,45,39662,4679,44,6,1 97 | M0_75,27,7,UTF-8,Apache,193,US,PA,19/01/2015 0:00,3/03/2017 0:00,9,0,1,1838,11,13,4524,1992,11,2,1 98 | B0_1209,27,8,UTF-8,nginx,NA,US,WA,11/11/2015 0:00,13/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 99 | B0_1353,27,6,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CO,22/03/2017 0:00,23/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 100 | B0_2085,27,6,utf-8,openresty/1.11.2.1,NA,US,TEXAS,3/11/2009 0:00,4/03/2017 0:00,3,3,1,366,3,5,306,366,3,0,0 101 | B0_362,27,6,UTF-8,Apache/2.2.15 (CentOS),NA,AU,Queensland,19/07/2010 20:03,20/09/2016 13:11,40,13,14,3781,46,44,34101,4253,46,6,0 102 | B0_453,27,6,UTF-8,Apache/2.4.25,7967,None,None,28/04/1997 0:00,24/04/2017 0:00,6,0,4,631,8,11,812,787,8,2,0 103 | B0_966,27,7,ISO-8859-1,Apache,11506,US,FL,4/03/1996 0:00,7/01/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 104 | M0_21,28,9,UTF-8,Apache/2.2.15 (CentOS),NA,RU,MOSCOW,24/10/2007 0:00,22/10/2016 0:00,5,0,1,592,7,9,1062,732,7,2,1 105 | M0_94,28,7,us-ascii,Microsoft-HTTPAPI/2.0,324,US,FL,21/10/2004 0:00,14/10/2014 0:00,5,0,2,556,9,9,1154,860,9,4,1 106 | B0_1020,28,8,utf-8,nginx,39036,[u'GB'; u'UK'],UK,2002-03-20T23:59:59.0Z,2017-03-07T22:02:38.0Z,0,0,0,0,0,0,0,0,0,0,0 107 | B0_1038,28,6,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 108 | B0_1357,28,7,iso-8859-1,Apache,NA,FR,None,10/06/2008 0:00,9/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 109 | B0_1413,28,7,ISO-8859-1,cloudflare-nginx,NA,NL,P,30/11/1999 0:00,6/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 110 | B0_2061,28,7,us-ascii,None,NA,US,NH,30/08/2004 0:00,18/08/2016 0:00,6,4,3,552,6,8,612,552,6,0,0 111 | B0_2182,28,7,ISO-8859-1,cloudflare-nginx,NA,NL,P,30/11/1999 0:00,6/03/2017 0:00,8,4,6,696,8,10,634,696,8,0,0 112 | B0_2228,28,6,us-ascii,Microsoft-IIS/7.5,324,US,Pennsylvania,11/11/1996 0:00,27/04/2015 0:00,5,3,3,474,5,6,364,474,5,0,0 113 | B0_229,28,7,utf-8,Apache,8578,CA,ON,2/10/1995 4:00,30/09/2016 9:12,21,7,5,2830,29,25,6137,3400,29,8,0 114 | B0_2309,28,6,UTF-8,Apache,10576,IN,UTTAR PRADESH,28/06/2011 0:00,2/03/2017 0:00,14,9,2,2094,14,12,8019,2094,14,0,0 115 | B0_310,28,7,us-ascii,Microsoft-IIS/7.5,324,None,None,16/08/2016 0:00,26/03/2017 0:00,17,1,7,1848,23,24,2167,2322,23,6,0 116 | B0_332,28,7,UTF-8,Apache/2.4.25 (Amazon) PHP/7.0.14,12846,US,NC,9/05/2000 17:31,11/10/2016 0:20,17,12,3,2314,23,27,21419,2740,23,6,0 117 | B0_438,28,7,UTF-8,GSE,6666,US,CA,31/07/2000 0:00,29/06/2016 0:00,66,5,11,6311,70,64,63634,6633,70,4,0 118 | B0_563,28,6,iso-8859-1,Apache/2.4.23 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4,445,US,FL,14/05/1999 0:00,2/04/2014 0:00,28,5,8,2324,30,33,24662,2482,30,2,0 119 | B0_638,28,8,UTF-8,Apache,NA,US,Arizona,24/04/2009 0:00,18/03/2017 0:00,6,0,3,632,8,8,593,776,8,2,0 120 | B0_695,28,7,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,None,None,33,26,4,3590,39,48,30057,4064,39,6,0 121 | B0_835,28,6,utf-8,Pepyaka/1.11.3,NA,US,NY,6/08/1998 0:00,7/11/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 122 | B0_96,28,6,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,26,19,3,2632,30,36,27404,2916,30,4,0 123 | B0_981,28,6,UTF-8,nginx,18438,US,California,15/06/2007 0:00,12/05/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 124 | M0_106,29,7,ISO-8859-1,Apache,7314,US,MD,21/09/2009 0:00,9/08/2016 0:00,34,0,2,2934,40,40,34995,3416,40,6,1 125 | M0_74,29,7,us-ascii,Microsoft-HTTPAPI/2.0,324,UG,kireka,9/04/2002 0:00,18/04/2017 0:00,5,0,2,593,7,8,1128,751,7,2,1 126 | B0_1044,29,6,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 127 | B0_1051,29,6,None,tsa_c,0,US,CA,21/01/2000 0:00,8/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 128 | B0_1095,29,8,ISO-8859-1,Apache,9136,US,CA,20/01/1995 0:00,22/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 129 | B0_1096,29,6,UTF-8,Apache,5019,US,IL,28/03/2006 0:00,24/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 130 | B0_1117,29,7,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 131 | B0_1154,29,6,iso-8859-1,Apache/2.4.25 (Amazon) OpenSSL/1.0.1k-fips,210,US,Missouri,28/09/2007 16:06,28/03/2017 18:24,0,0,0,0,0,0,0,0,0,0,0 132 | B0_1287,29,6,UTF-8,Apache/2.2.22 (Debian),8654,JP,Osaka,4/02/2017 0:00,4/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 133 | B0_1408,29,7,iso-8859-1,Apache/2.2.22 (Ubuntu),238,CA,QC,7/03/1996 0:00,9/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 134 | B0_170,29,6,ISO-8859-1,Apache,26856,None,None,4/04/2003 0:00,5/04/2017 0:00,26,6,5,2519,30,30,22379,2851,30,4,0 135 | B0_2024,29,6,us-ascii,Microsoft-HTTPAPI/2.0,324,US,Michigan,26/08/2015 0:00,26/08/2016 0:00,12,8,6,900,12,9,568,900,12,0,0 136 | B0_2089,29,7,UTF-8,Apache/2.2.22,NA,CA,AB,22/07/2004 0:00,23/06/2016 0:00,709,708,3,2362906,709,837,83056,2362906,709,0,0 137 | B0_2123,29,6,UTF-8,Apache,10210,US,CA,30/11/2004 0:00,7/03/2017 0:00,5,4,2,486,5,7,542,486,5,0,0 138 | B0_2128,29,6,ISO-8859-1,Apache,13684,US,Maryland,5/03/2008 0:00,14/04/2016 0:00,15,8,7,1134,15,9,605,1134,15,0,0 139 | B0_2166,29,6,us-ascii,None,324,CA,Ontario,8/05/2003 0:00,9/05/2016 0:00,3,3,1,366,3,5,306,366,3,0,0 140 | B0_2242,29,6,iso-8859-1,nginx/1.12.0,770,US,South Carolina,2/11/2010 21:52,20/10/2015 23:34,5,3,3,486,5,7,436,486,5,0,0 141 | B0_2266,29,8,UTF-8,Apache/2.4.25,6813,US,Texas,23/05/2006 0:00,13/07/2016 0:00,17,9,10,1249,17,15,1062,1249,17,0,0 142 | B0_259,29,6,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,2/07/1998 0:00,5/07/2016 0:00,34,9,6,2861,38,26,15260,3229,38,4,0 143 | B0_44,29,6,ISO-8859-1,None,34,US,California,2/12/1998 0:00,2/12/2016 0:00,10,2,9,612,12,14,918,772,12,2,0 144 | B0_448,29,7,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,32,21,8,4561,38,36,10429,4997,38,6,0 145 | B0_499,29,8,UTF-8,GSE,20404,US,CA,31/07/2000 0:00,29/06/2016 0:00,33,6,5,3533,37,35,46688,3859,37,4,0 146 | B0_626,29,8,UTF-8,Tengine,NA,CN,Zhejiang,15/04/1999 0:00,20/06/2012 0:00,28,0,5,3183,36,33,24455,3777,36,8,0 147 | B0_642,29,6,UTF-8,Apache/2.4.18 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4,7159,US,Arizona,30/05/2003 0:00,10/07/2015 0:00,21,6,11,1515,23,18,1334,1675,23,2,0 148 | B0_726,29,6,utf-8,Apache/2.2.15 (CentOS),NA,US,New Mexico,10/01/2002 0:57,26/02/2014 23:35,24,1,3,2195,29,30,55576,2515,29,4,0 149 | B0_887,29,6,iso-8859-1,Apache,388,US,New York,17/03/2006 0:00,14/08/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 150 | B0_894,29,6,ISO-8859-1,Apache/2,199,None,None,1/03/1999 0:00,7/03/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 151 | B0_920,29,8,us-ascii,Microsoft-HTTPAPI/2.0,324,AU,QLD,1/07/2015 0:00,4/03/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 152 | B0_942,29,6,ISO-8859-1,nginx/1.12.0,NA,CA,ON,22/01/2006 0:00,22/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 153 | B0_978,29,6,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 154 | M0_112,30,8,iso-8859-1,Apache,177,None,None,None,None,7,0,2,666,9,9,1094,826,9,2,1 155 | B0_1052,30,6,utf-8,Apache/2.4.10 (Debian),NA,SE,None,6/03/1996 5:00,28/10/2013 10:54,0,0,0,0,0,0,0,0,0,0,0 156 | B0_1388,30,6,iso-8859-1,Apache/2.4.6 (CentOS) PHP/5.6.8,199,US,MA,8/02/2013 0:00,15/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 157 | B0_160,30,7,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,14,9,3,1918,18,17,5546,2182,18,4,0 158 | B0_169,30,6,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,62,52,12,8974,76,69,30726,10006,76,14,0 159 | B0_209,30,6,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,22,17,2,3914,28,27,9833,4350,28,6,0 160 | B0_2097,30,6,ISO-8859-1,Sun-ONE-Web-Server/6.1,NA,None,None,15/04/2003 0:00,19/02/2016 0:00,18,17,5,1188,18,19,1451,1188,18,0,0 161 | B0_2206,30,6,None,Apache/2.4.18 (Unix) OpenSSL/1.0.2e Communique/4.1.10,NA,US,WI,24/10/1996 0:00,19/10/2016 0:00,6,4,4,552,6,9,564,552,6,0,0 162 | B0_2282,30,6,UTF-8,Apache,14703,US,Texas,4/08/1998 0:00,4/09/2013 0:00,2,2,1,276,2,4,250,276,2,0,0 163 | B0_330,30,6,UTF-8,nginx,8751,US,FL,30/04/2016 0:00,4/10/2016 0:00,15,2,6,1528,19,17,5586,1860,19,4,0 164 | B0_348,30,6,us-ascii,Microsoft-HTTPAPI/2.0,324,US,NJ,30/12/1999 0:00,8/01/2016 0:00,90,6,14,8646,92,100,95659,8808,92,2,0 165 | B0_369,30,7,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,31,26,2,4412,37,37,27412,4848,37,6,0 166 | B0_560,30,6,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,31,23,3,3605,39,41,34388,4183,39,8,0 167 | B0_639,30,6,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,76,47,12,9007,88,44,23985,9891,88,12,0 168 | B0_711,30,7,utf-8,AmazonS3,350,US,Arizona,13/07/2001 0:00,26/04/2015 0:00,23,1,10,1902,27,26,2764,2194,27,4,0 169 | B0_73,30,7,ISO-8859-1,Apache/1.3.37 (Unix) mod_perl/1.29 mod_ssl/2.8.28 OpenSSL/0.9.7e-p1,NA,US,GA,29/05/1996 0:00,21/03/2017 0:00,48,3,6,3418,52,48,57377,3706,52,4,0 170 | B0_824,30,8,UTF-8,cloudflare-nginx,NA,US,CA,25/02/2004 0:00,16/01/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 171 | B0_891,30,6,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 172 | B0_931,30,7,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 173 | M0_73,31,7,us-ascii,Microsoft-IIS/7.5,324,US,CA,9/04/2002 0:00,20/03/2017 0:00,7,0,2,707,11,11,1018,1031,11,4,1 174 | B0_1028,31,8,utf-8,ATS,604,US,CA,18/01/1995 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 175 | B0_1114,31,7,iso-8859-1,Apache/2.2.27 (CentOS),287,None,None,25/10/2014 0:00,26/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 176 | B0_1127,31,7,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 177 | B0_1241,31,8,utf-8,Apache,65815,US,MO,20/05/1996 0:00,24/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 178 | B0_140,31,6,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,65,53,14,8568,77,70,26049,9452,77,12,0 179 | B0_2158,31,6,UTF-8,Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4,NA,None,None,14/07/2000 0:00,22/03/2017 0:00,9,3,7,738,9,12,766,738,9,0,0 180 | B0_2278,31,7,utf-8,CherryPy/3.6.0,4075,CA,ON,1/12/1996 5:00,30/11/2016 10:30,4,3,2,432,4,6,372,432,4,0,0 181 | B0_263,31,8,iso-8859-1,Apache/2.2.15 (CentOS),287,IN,HR,11/11/2000 0:00,3/05/2012 0:00,5,0,1,593,9,9,955,929,9,4,0 182 | B0_501,31,7,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,28,13,13,2773,32,32,6566,3037,32,4,0 183 | B0_504,31,7,UTF-8,Apache/2.2.15 (Red Hat),5132,US,FL,4/09/2004 0:00,24/08/2016 0:00,27,0,3,2743,33,33,43878,3181,33,6,0 184 | B0_597,31,6,us-ascii,Microsoft-IIS/7.5,324,US,Missouri,9/09/2005 13:44,10/09/2016 13:29,23,1,4,2262,29,28,16553,2736,29,6,0 185 | B0_65,31,6,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,None,None,18,14,3,2201,22,23,7756,2543,22,4,0 186 | B0_658,31,6,ISO-8859-1,Apache,NA,None,None,22/04/1997 0:00,22/02/2017 0:00,23,17,3,3981,29,27,9867,4417,29,6,0 187 | B0_698,31,8,us-ascii,Microsoft-HTTPAPI/2.0,324,US,FL,7/08/1996 0:00,14/05/2015 0:00,103,0,3,7073,105,113,179439,7217,105,2,0 188 | B0_705,31,6,UTF-8,Apache,NA,US,MD,30/12/2005 0:00,5/11/2015 0:00,13,8,8,1355,16,16,1145,1519,16,2,0 189 | B0_761,31,7,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,57,45,12,8136,69,64,25686,9020,69,12,0 190 | B0_850,31,7,utf-8,Apache,22004,US,CA,4/04/2006 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 191 | B0_945,31,6,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 192 | B0_992,31,7,iso-8859-1,Apache/2,345,US,Texas,25/05/2000 0:00,24/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 193 | M0_136,32,11,UTF-8,nginx,643,None,None,None,None,22,1,5,2783,30,26,3824,3367,30,8,1 194 | M0_140,32,9,UTF-8,nginx,637,None,None,None,None,14,1,4,1457,20,16,3229,1881,20,6,1 195 | B0_1175,32,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 196 | B0_1181,32,6,ISO-8859-1,None,34,US,Missouri,9/07/2008 0:00,14/07/2008 0:00,0,0,0,0,0,0,0,0,0,0,0 197 | B0_1222,32,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 198 | B0_128,32,9,utf-8,KHL,420762,None,None,10/05/2006 20:00,None,17,5,8,1314,19,26,1881,1452,19,2,0 199 | B0_1341,32,8,ISO-8859-1,Apache,1399,US,CA,29/07/2006 0:00,7/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 200 | B0_1372,32,6,UTF-8,Apache,NA,CA,ab,27/09/2010 0:00,28/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 201 | B0_1381,32,7,UTF-8,nginx,NA,US,NY,31/10/2008 0:00,1/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 202 | B0_14,32,7,UTF-8,nginx,NA,US,CA,3/03/2000 0:00,12/01/2017 0:00,14,10,2,2000,20,20,9588,2498,20,6,0 203 | B0_165,32,7,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,49,42,5,7613,61,52,24774,8497,61,12,0 204 | B0_176,32,8,UTF-8,Apache,NA,None,None,2/04/2008 0:00,23/01/2017 0:00,24,0,4,2176,28,29,17335,2456,28,4,0 205 | B0_2015,32,6,utf-8,None,NA,None,None,22/02/1996 0:00,16/01/2015 0:00,4,3,2,432,4,5,310,432,4,0,0 206 | B0_2095,32,8,utf-8,Microsoft-IIS/7.5,328,UK,Greater London,6/09/2016 0:00,12/03/2017 0:00,5,3,2,474,5,7,426,474,5,0,0 207 | B0_218,32,7,UTF-8,Apache,NA,US,Illinois,11/02/1997 0:00,10/09/2012 0:00,94,0,4,11902,102,121,173484,12492,102,8,0 208 | B0_2229,32,8,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,6/08/1995 0:00,24/07/2012 0:00,11,10,6,798,11,15,1124,798,11,0,0 209 | B0_2271,32,6,iso-8859-1,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.4.16 mod_jk/1.2.40,199,US,Kansas,23/10/2008 0:00,3/03/2017 0:00,6,3,4,564,6,7,442,564,6,0,0 210 | B0_254,32,8,iso-8859-1,Apache,334,SI,--,19/02/2009 0:00,22/12/2015 0:00,8,1,4,816,10,13,1541,958,10,2,0 211 | B0_303,32,7,iso-8859-1,Apache/2.2.3 (CentOS),287,US,MO,30/08/1998 0:00,22/12/2016 0:00,71,0,3,10999,73,70,88707,11147,73,2,0 212 | B0_40,32,7,utf-8,Apache,20212,US,CA,4/04/2006 0:00,3/03/2017 0:00,43,26,14,4214,49,28,9246,4650,49,6,0 213 | B0_400,32,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,36,0,2,3185,40,40,50608,3465,40,4,0 214 | B0_437,32,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,24,2,4,1888,28,25,40314,2168,28,4,0 215 | B0_491,32,7,utf-8,None,NA,None,None,14/12/2006 0:00,13/12/2016 0:00,7,0,3,734,11,12,7145,1060,11,4,0 216 | B0_507,32,7,UTF-8,GSE,11827,US,CA,31/07/2000 0:00,29/06/2016 0:00,38,2,5,4607,42,35,58676,4945,42,4,0 217 | B0_582,32,8,ISO-8859-1,nginx/1.12.0,1108,US,California,22/03/2005 3:36,22/03/2017 3:37,13,0,2,2065,17,16,7280,2349,17,4,0 218 | B0_937,32,7,us-ascii,None,324,US,Arizona,26/06/2009 0:00,29/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 219 | M0_122,33,11,UTF-8,nginx,646,None,None,None,None,13,1,5,1497,17,14,2116,1787,17,4,1 220 | M0_125,33,9,UTF-8,nginx,637,None,None,None,None,23,1,5,2851,31,26,3814,3431,31,8,1 221 | M0_138,33,9,UTF-8,nginx,640,None,None,None,None,18,1,5,2147,24,20,2848,2577,24,6,1 222 | M0_142,33,9,UTF-8,nginx,643,None,None,None,None,4,0,4,264,4,6,388,264,4,0,1 223 | M0_59,33,9,UTF-8,nginx,NA,None,None,9/02/2000 14:17,None,14,1,8,1151,18,15,1211,1445,18,4,1 224 | M0_96,33,11,utf-8,nginx,NA,None,None,8/06/2007 0:00,18/09/2012 0:00,8,0,2,1045,12,11,1362,1333,12,4,1 225 | B0_1068,33,7,utf-8,cloudflare-nginx,NA,US,NY,1/11/1994 0:00,27/10/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 226 | B0_1101,33,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 227 | B0_1141,33,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 228 | B0_1190,33,6,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 229 | B0_1239,33,6,iso-8859-1,Apache,NA,JP,Fukuoka,8/08/2013 0:00,26/07/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 230 | B0_1288,33,6,utf-8,Apache/2.4,19890,CA,BC,20/04/2000 0:00,25/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 231 | B0_1350,33,8,utf-8,nginx/1.10.1 + Phusion Passenger 5.0.30,NA,US,California,21/02/1995 0:00,19/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 232 | B0_1390,33,9,utf-8,None,18302,US,CA,29/05/1996 0:00,26/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 233 | B0_1419,33,7,iso-8859-1,Apache,318,JP,Osaka,12/11/2016 0:00,16/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 234 | B0_163,33,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,52,7,8,3438,56,51,46498,3718,56,4,0 235 | B0_2100,33,7,iso-8859-1,Apache/1.3.27 (Unix) (Red-Hat/Linux) mod_perl/1.26 PHP/4.3.3 FrontPage/5.0.2 mod_ssl/2.8.12 OpenSSL/0.9.6b,NA,None,None,8/02/2000 0:00,31/10/2016 0:00,4,3,2,420,4,5,304,420,4,0,0 236 | B0_2126,33,6,utf-8,Apache,NA,US,Texas,25/09/2003 0:00,18/07/2014 0:00,7,5,4,606,7,6,474,606,7,0,0 237 | B0_215,33,8,UTF-8,mw2114.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,32,11,6,3694,40,32,11543,4286,40,8,0 238 | B0_2155,33,7,UTF-8,GSE,60722,US,CA,31/07/2000 0:00,29/06/2016 0:00,4,2,3,408,4,6,382,408,4,0,0 239 | B0_2205,33,6,UTF-8,Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_perl/2.0.8 Perl/v5.10.1,NA,US,Arizona,10/05/2002 0:00,27/07/2016 0:00,8,4,5,660,8,9,556,660,8,0,0 240 | B0_2219,33,6,ISO-8859-1,Apache/1.3.34 (Unix) PHP/4.4.4,NA,US,FL,7/06/2005 0:00,23/05/2016 0:00,5,4,2,486,5,7,542,486,5,0,0 241 | B0_2289,33,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,10,4,4,816,10,6,476,816,10,0,0 242 | B0_312,33,6,UTF-8,Microsoft-IIS/7.5,39,US,AL,19/08/2012 0:00,24/06/2016 0:00,24,1,4,3375,28,30,18396,3703,28,4,0 243 | B0_570,33,8,UTF-8,Apache/2.2.31 (Amazon),1371,IL,None,28/04/2003 0:00,29/04/2017 0:00,19,0,3,2042,27,27,4760,2622,27,8,0 244 | B0_652,33,7,UTF-8,Jetty(9.0.z-SNAPSHOT),NA,US,NY,12/03/1999 0:00,16/11/2016 0:00,105,98,7,8692,111,130,179133,9172,111,6,0 245 | B0_783,33,6,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 246 | M0_130,34,11,UTF-8,nginx,655,None,None,None,None,27,5,8,2721,35,27,3896,3313,35,8,1 247 | M0_159,34,11,UTF-8,nginx,649,None,None,None,None,15,1,5,1632,21,18,2661,2068,21,6,1 248 | M0_166,34,9,ISO-8859-1,cloudflare-nginx,NA,ru,Krasnoyarsk,30/03/2011 0:00,28/04/2017 0:00,26,0,3,3569,32,31,10750,4037,32,6,1 249 | M0_180,34,9,iso-8859-1,Apache,214,None,None,None,None,9,0,4,850,11,14,1382,990,11,2,1 250 | B0_1036,34,6,UTF-8,nginx/1.12.0,18298,US,MAINE,14/01/2008 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 251 | B0_1054,34,7,us-ascii,Microsoft-HTTPAPI/2.0,324,GB,None,26/03/2000 0:00,26/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 252 | B0_1087,34,7,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 253 | B0_110,34,7,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,33,27,2,5235,41,40,14571,5835,41,8,0 254 | B0_1207,34,8,utf-8,nginx/1.10.1 + Phusion Passenger 5.0.30,NA,US,California,21/02/1995 0:00,19/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 255 | B0_1337,34,6,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 256 | B0_1342,34,7,ISO-8859-1,Apache/2.2.31 (CentOS),NA,CA,ALBERTA,10/04/2010 0:00,10/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 257 | B0_1382,34,7,UTF-8,nginx,NA,US,CA,3/03/2000 0:00,12/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 258 | B0_2098,34,7,utf-8,Apache/2.4.10 (Debian),6474,US,Virginia,6/05/2010 16:44,20/09/2013 15:03,6,3,4,552,6,9,564,552,6,0,0 259 | B0_2104,34,7,utf-8,nginx,NA,CA,ON,17/08/1999 12:43,21/04/2017 16:47,8,6,5,696,8,10,636,696,8,0,0 260 | B0_2124,34,6,utf-8,None,NA,None,None,22/02/1996 0:00,16/01/2015 0:00,34,9,9,2412,34,7,442,2412,34,0,0 261 | B0_2125,34,7,UTF-8,cloudflare-nginx,NA,IN,MH,4/10/2006 0:00,4/10/2016 0:00,3,3,1,366,3,5,306,366,3,0,0 262 | B0_2142,34,9,ISO-8859-1,Apache,1486,GB,None,9/03/2007 0:00,3/03/2015 0:00,5,3,2,498,5,5,306,498,5,0,0 263 | B0_2221,34,9,UTF-8,Apache/2.4.12 (Ubuntu),10892,None,None,31/05/1996 0:00,15/04/2016 0:00,3,3,1,366,3,4,244,366,3,0,0 264 | B0_2320,34,9,ISO-8859-1,HTTPDaemon,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,4,3,2,432,4,5,310,432,4,0,0 265 | B0_322,34,8,utf-8,Apache/2.2.31 (Amazon),7255,None,None,29/07/2004 0:00,3/01/2016 0:00,17,1,2,1661,23,26,10015,2167,23,6,0 266 | B0_460,34,7,UTF-8,GSE,6608,US,CA,31/07/2000 0:00,29/06/2016 0:00,42,0,3,4895,46,45,39544,5241,46,4,0 267 | B0_493,34,6,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,34,25,9,3787,42,42,33677,4365,42,8,0 268 | B0_586,34,9,ISO-8859-1,Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4,111,US,California,17/01/2005 0:00,18/01/2017 0:00,21,0,5,2292,23,24,16147,2450,23,2,0 269 | B0_688,34,6,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,24,20,2,4372,31,33,13095,4808,31,6,0 270 | B0_746,34,8,ISO-8859-1,nginx,996,US,CA,1/06/2005 0:00,9/09/2016 0:00,7,0,2,716,11,10,1979,1030,11,4,0 271 | B0_760,34,7,ISO-8859-1,nginx,1501,US,New York,22/12/1999 0:00,24/05/2012 0:00,23,3,11,2042,29,29,7939,2520,29,6,0 272 | B0_864,34,7,utf-8,MediaFire,NA,US,Texas,11/08/2002 0:00,4/07/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 273 | B0_897,34,7,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 274 | B0_961,34,6,us-ascii,Microsoft-IIS/7.5,324,US,Arizona,17/11/2003 0:00,11/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 275 | M0_107,35,9,ISO-8859-1,Apache,7314,None,None,21/09/2009 0:00,9/08/2016 0:00,39,0,3,3240,45,45,35301,3722,45,6,1 276 | M0_108,35,9,ISO-8859-1,Apache,7314,None,None,21/09/2009 0:00,9/08/2016 0:00,39,0,2,3240,45,45,35301,3722,45,6,1 277 | M0_110,35,11,UTF-8,Apache,NA,CA,ON,14/08/2008 0:00,9/08/2016 0:00,18,0,2,2102,20,21,20976,2252,20,2,1 278 | M0_123,35,11,UTF-8,nginx,652,None,None,None,None,15,1,5,1635,21,17,2640,2073,21,6,1 279 | M0_124,35,11,UTF-8,nginx,652,None,None,None,None,21,1,5,2367,29,26,3801,2957,29,8,1 280 | M0_127,35,9,UTF-8,nginx,646,None,None,None,None,12,1,5,1340,16,12,964,1622,16,4,1 281 | M0_135,35,11,UTF-8,nginx,652,None,None,None,None,19,1,5,2223,25,20,2868,2661,25,6,1 282 | M0_137,35,11,UTF-8,nginx,652,None,None,None,None,18,1,5,2157,24,22,2996,2595,24,6,1 283 | M0_148,35,11,UTF-8,nginx,652,None,None,None,None,19,1,5,2223,25,22,2996,2661,25,6,1 284 | M0_152,35,11,UTF-8,nginx,652,None,None,None,None,23,1,5,2864,31,25,3773,3454,31,8,1 285 | M0_165,35,8,ISO-8859-1,cloudflare-nginx,NA,ru,Krasnoyarsk,22/08/2010 0:00,28/04/2017 0:00,15,1,2,1850,21,23,2970,2302,21,6,1 286 | B0_1029,35,9,ISO-8859-1,DOSarrest,NA,KY,GRAND CAYMAN,8/07/1996 0:00,7/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 287 | B0_1148,35,8,UTF-8,mw2232.codfw.wmnet,4685,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 288 | B0_1299,35,8,utf-8,nginx/1.10.1 + Phusion Passenger 5.0.30,NA,US,California,21/02/1995 0:00,19/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 289 | B0_144,35,6,us-ascii,Microsoft-IIS/7.5,324,None,None,21/03/2014 0:00,22/03/2017 0:00,22,15,8,1527,24,25,1928,1699,24,2,0 290 | B0_183,35,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,21,1,4,2435,25,25,39924,2715,25,4,0 291 | B0_194,35,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CA,22/10/1998 0:00,16/03/2017 0:00,49,10,6,2961,53,61,38255,3261,53,4,0 292 | B0_2026,35,9,utf-8,nginx,39362,[u'GB'; u'UK'],UK,2002-03-20T23:59:59.0Z,2017-03-07T22:02:38.0Z,4,3,2,420,4,4,244,420,4,0,0 293 | B0_2067,35,7,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,3,3,1,366,3,4,244,366,3,0,0 294 | B0_2087,35,9,UTF-8,Apache,NA,US,Arizona,8/07/2010 0:00,24/04/2017 0:00,4,3,2,432,4,6,372,432,4,0,0 295 | B0_2144,35,10,utf-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,10,9,4,756,10,12,861,756,10,0,0 296 | B0_2156,35,7,UTF-8,Sucuri/Cloudproxy,14462,CA,ON,17/07/2009 0:00,7/07/2016 0:00,8,6,6,696,8,5,306,696,8,0,0 297 | B0_2270,35,9,UTF-8,Apache,NA,None,None,None,None,4,4,2,432,4,6,372,432,4,0,0 298 | B0_2295,35,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,21,12,12,1446,21,24,1788,1446,21,0,0 299 | B0_2319,35,7,iso-8859-1,Apache/2.4.23 (Unix),289,GB,None,24/05/2001 20:47,27/01/2017 0:20,5,4,3,474,5,6,364,474,5,0,0 300 | B0_308,35,6,us-ascii,Microsoft-HTTPAPI/2.0,324,US,PA,27/06/2004 0:00,19/11/2012 0:00,23,8,5,3087,29,27,19078,3535,29,6,0 301 | B0_337,35,7,UTF-8,GSE,38115,US,CA,31/07/2000 0:00,29/06/2016 0:00,45,3,7,3507,49,46,42286,3857,49,4,0 302 | B0_385,35,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,37,0,3,3263,43,42,52720,3697,43,6,0 303 | B0_461,35,9,UTF-8,cloudflare-nginx,NA,None,None,4/03/2004 0:00,5/10/2015 0:00,12,2,6,1258,16,17,1862,1542,16,4,0 304 | B0_573,35,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,44,40,6,6945,56,51,26115,7849,56,12,0 305 | B0_717,35,7,UTF-8,GSE,8813,US,CA,31/07/2000 0:00,29/06/2016 0:00,41,6,4,4769,45,42,69898,5119,45,4,0 306 | B0_739,35,8,ISO-8859-1,Apache,1002,AT,Austria,1/06/2004 0:00,2/06/2016 0:00,32,5,8,2965,36,39,37146,3279,36,4,0 307 | B0_807,35,7,utf-8,Apache,16875,US,NY,13/12/1995 0:00,10/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 308 | B0_82,35,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,27,1,5,2771,31,33,36261,3051,31,4,0 309 | B0_9,35,7,iso-8859-1,Apache,330,None,None,10/11/2000 0:00,19/02/2016 0:00,16,9,8,1275,18,23,2306,1423,18,2,0 310 | B0_965,35,6,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 311 | B0_971,35,8,ISO-8859-1,Apache,1002,AT,Austria,1/06/2004 0:00,2/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 312 | M0_121,36,10,UTF-8,nginx,655,None,None,None,None,208,18,9,20074,228,216,270752,21646,228,20,1 313 | M0_129,36,11,UTF-8,nginx,655,None,None,None,None,7,1,5,466,11,10,822,760,11,4,1 314 | M0_131,36,11,UTF-8,nginx,655,None,None,None,None,17,1,7,1770,23,17,2579,2210,23,6,1 315 | M0_133,36,9,UTF-8,nginx,646,None,None,None,None,11,1,4,1266,15,12,966,1554,15,4,1 316 | M0_134,36,11,UTF-8,nginx,655,None,None,None,None,21,1,5,2359,29,23,3542,2951,29,8,1 317 | M0_157,36,11,UTF-8,nginx,655,None,None,None,None,19,1,5,2227,27,23,3612,2819,27,8,1 318 | M0_169,36,8,ISO-8859-1,cloudflare-nginx,NA,ru,Krasnoyarsk,22/08/2010 0:00,28/04/2017 0:00,6,0,4,372,8,10,703,520,8,2,1 319 | B0_1042,36,8,ISO-8859-1,nginx,10133,US,CA,1/06/2005 0:00,9/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 320 | B0_1049,36,8,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,30/10/2003 0:00,10/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 321 | B0_1277,36,7,ISO-8859-1,nginx/1.12.0,NA,US,Kansas,9/05/1998 0:00,10/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 322 | B0_1306,36,6,ISO-8859-1,nginx/1.12.0,1108,US,CA,5/10/2006 0:00,4/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 323 | B0_1359,36,7,us-ascii,Microsoft-HTTPAPI/2.0,324,US,DE,14/10/2005 0:00,21/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 324 | B0_1363,36,7,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 325 | B0_197,36,8,ISO-8859-1,nginx,NA,CN,shandong,8/09/2003 0:00,24/10/2016 0:00,18,2,8,1432,20,27,2113,1572,20,2,0 326 | B0_200,36,8,UTF-8,Apache,NA,JP,Osaka,13/07/2008 0:00,9/12/2015 0:00,14,10,6,1096,16,19,1294,1246,16,2,0 327 | B0_2101,36,7,UTF-8,nginx,NA,US,CA,3/03/2000 0:00,12/01/2017 0:00,3,3,1,366,3,4,244,366,3,0,0 328 | B0_2250,36,8,ISO-8859-1,nginx/0.7.65,NA,None,None,22/08/1996 0:00,18/08/2016 0:00,2,2,1,276,2,3,184,276,2,0,0 329 | B0_2260,36,8,UTF-8,mw2260.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,5,3,3,498,5,7,438,498,5,0,0 330 | B0_2290,36,8,ISO-8859-1,Apache/2.2.32,NA,US,PA,1/05/2002 0:00,1/09/2012 0:00,5,3,2,474,5,5,306,474,5,0,0 331 | B0_290,36,8,us-ascii,cloudflare-nginx,NA,None,None,10/06/2005 0:00,4/06/2015 0:00,18,2,6,1706,22,19,2165,1994,22,4,0 332 | B0_305,36,7,utf-8,Apache,19879,US,CA,4/04/2006 0:00,3/03/2017 0:00,61,7,6,6100,65,79,123896,6388,65,4,0 333 | B0_366,36,8,UTF-8,mw2239.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,85,73,9,7506,91,96,107416,7962,91,6,0 334 | B0_444,36,7,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,7/09/2000 0:00,8/12/2016 0:00,8,0,2,784,10,11,16959,958,10,2,0 335 | B0_445,36,8,utf-8,DPS/1.1.8,NA,None,None,31/12/2015 0:00,25/12/2016 0:00,22,8,4,2680,28,19,7746,3172,28,6,0 336 | B0_474,36,6,iso-8859-1,Apache/2.4.25 (Amazon) OpenSSL/1.0.1k-fips,210,None,None,8/12/2007 0:00,28/03/2017 0:00,3,0,1,466,5,6,668,640,5,2,0 337 | B0_487,36,7,ISO-8859-1,cloudflare-nginx,3326,US,CA,6/04/2008 0:00,18/12/2014 0:00,14,7,5,1060,16,18,5214,1234,16,2,0 338 | B0_60,36,7,iso-8859-1,Apache/2.0.52 (Red Hat),293,US,TX,16/07/1998 0:00,16/05/2016 0:00,12,0,4,1331,16,13,4860,1631,16,4,0 339 | B0_69,36,7,iso-8859-1,Apache/2.2.22,231,None,None,9/02/2001 0:00,28/12/2016 0:00,7,0,2,730,9,11,1284,870,9,2,0 340 | B0_701,36,7,UTF-8,Apache,11418,US,AZ,28/12/1999 0:00,28/12/2014 0:00,17,0,4,2319,21,21,14373,2615,21,4,0 341 | B0_809,36,8,ISO-8859-1,Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4,NA,None,None,21/01/2008 0:00,17/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 342 | B0_952,36,8,UTF-8,Apache,NA,UK,UK,27/02/1996 0:00,27/01/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 343 | B0_990,36,7,UTF-8,GSE,11692,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 344 | M0_101,37,10,UTF-8,Apache,NA,CZ,PRAHA,7/10/2006 0:00,7/03/2017 0:00,49,0,1,3505,51,53,66214,3657,51,2,1 345 | M0_115,37,9,windows-1251,Apache/1.3.31 (Unix) PHP/4.3.9 mod_perl/1.29 rus/PL30.20,296,US,LA,18/12/2004 0:00,1/12/2016 0:00,2,0,2,128,4,5,407,276,4,2,1 346 | M0_16,37,9,ISO-8859-1,nginx,162,CN,beijingshi,9/02/2009 0:00,27/04/2017 0:00,1,0,1,66,3,4,404,206,3,2,1 347 | M0_176,37,11,ISO-8859-1,Apache,NA,None,None,4/11/1998 0:00,15/11/2016 0:00,44,2,10,5009,50,50,40316,5511,50,6,1 348 | M0_179,37,10,ISO-8859-1,nginx,NA,CN,liaoningsheng,4/11/2016 0:00,8/11/2016 0:00,12,0,2,1961,16,14,2991,2245,16,4,1 349 | M0_60,37,9,iso-8859-1,Apache,188,None,None,None,None,19,0,6,1525,21,13,1363,1667,21,2,1 350 | B0_1008,37,7,utf-8,Apache/2.2.29 (Amazon),NA,CA,British Columbia,15/04/2004 0:00,22/02/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 351 | B0_1167,37,7,ISO-8859-1,Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.2.10,6062,US,California,2/07/2010 0:00,25/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 352 | B0_1196,37,7,iso-8859-1,Apache/2.4.25 (Amazon) OpenSSL/1.0.1k-fips,219,US,Missouri,12/11/2007 20:49,28/03/2017 18:16,0,0,0,0,0,0,0,0,0,0,0 353 | B0_1204,37,9,ISO-8859-1,Apache,1002,AT,Austria,1/06/2004 0:00,2/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 354 | B0_1219,37,10,utf-8,Apache,14109,US,California,22/02/2006 0:00,22/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 355 | B0_1316,37,8,us-ascii,Microsoft-HTTPAPI/2.0,324,US,North Carolina,5/06/2000 0:00,6/07/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 356 | B0_1398,37,9,utf-8,nginx/1.1.19,NA,US,CA,9/12/1996 0:00,9/10/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 357 | B0_1402,37,8,utf-8,cloudflare-nginx,NA,US,California,14/10/1999 0:00,20/11/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 358 | B0_2056,37,9,utf-8,Apache/2.2.22 (Ubuntu),8022,US,California,10/05/2006 23:10,11/05/2016 14:19,23,5,8,1674,23,11,696,1674,23,0,0 359 | B0_2093,37,9,utf-8,nginx,32441,[u'GB'; u'UK'],UK,2002-03-20T23:59:59.0Z,2017-03-07T22:02:38.0Z,11,10,7,834,11,14,882,834,11,0,0 360 | B0_2116,37,7,ISO-8859-1,ATS/5.3.0,7891,US,MA,22/02/2001 0:00,24/01/2017 0:00,6,5,2,540,6,8,535,540,6,0,0 361 | B0_2143,37,8,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,4,2,2,408,4,5,328,408,4,0,0 362 | B0_2230,37,8,UTF-8,Apache,1840,US,CA,11/09/1997 4:00,9/12/2015 14:43,8,5,5,648,8,11,739,648,8,0,0 363 | B0_2277,37,8,ISO-8859-1,Apache/2.2.3 (Red Hat),12768,None,None,16/10/2000 0:00,25/10/2016 0:00,6,4,3,540,6,6,474,540,6,0,0 364 | B0_361,37,7,UTF-8,openresty,NA,US,NY,8/06/2006 0:00,21/04/2017 0:00,4,0,3,268,6,6,557,444,6,2,0 365 | B0_386,37,9,iso-8859-1,Apache,NA,None,None,None,None,31,7,12,2531,37,35,14050,3005,37,6,0 366 | B0_450,37,7,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,27,23,1,3355,33,35,31623,3781,33,6,0 367 | B0_457,37,8,UTF-8,nginx,NA,US,Arizona,18/04/2001 0:00,19/04/2017 0:00,44,0,4,3767,48,48,129181,4079,48,4,0 368 | B0_476,37,8,ISO-8859-1,nginx,4297,US,OH,5/08/1993 0:00,1/07/2016 0:00,16,1,6,1607,22,18,1690,2055,22,6,0 369 | B0_59,37,9,UTF-8,nginx,NA,PH,Manila,17/02/2011 0:00,18/02/2017 0:00,15,6,7,1283,17,15,2201,1425,17,2,0 370 | B0_593,37,9,ISO-8859-1,None,NA,US,CA,24/10/1999 0:00,29/07/2016 0:00,21,0,4,1643,23,31,21144,1797,23,2,0 371 | B0_646,37,8,utf-8,nginx/1.4.3,135444,US,NY,2/11/1996 0:00,26/11/2014 0:00,68,6,7,5207,70,88,247488,5345,70,2,0 372 | B0_677,37,9,utf-8,ATS,616,US,CA,18/01/1995 0:00,26/08/2015 0:00,18,5,10,2248,26,28,3605,2890,26,8,0 373 | B0_777,37,8,utf-8,Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.35,6944,US,Arizona,14/02/2000 0:00,14/02/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 374 | B0_946,37,8,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 375 | B0_947,37,7,UTF-8,GSE,7783,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 376 | M0_120,38,10,iso-8859-1,Apache/2,337,CA,ON,14/09/2009 8:39,6/09/2016 8:26,14,4,6,888,14,5,316,888,14,0,1 377 | M0_151,38,11,UTF-8,nginx,661,None,None,None,None,22,1,5,2813,30,27,3916,3409,30,8,1 378 | M0_42,38,9,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,15,0,2,2342,21,15,7249,2806,21,6,1 379 | M0_43,38,9,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,19,1,3,2594,25,25,7997,3058,25,6,1 380 | M0_90,38,10,iso-8859-1,nginx/1.8.0,215,None,None,18/07/2005 0:00,18/06/2016 0:00,7,0,2,734,9,9,1097,880,9,2,1 381 | B0_1019,38,9,ISO-8859-1,Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5,4397,US,MA,28/10/1999 0:00,29/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 382 | B0_1030,38,8,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 383 | B0_109,38,8,ISO-8859-1,Apache/1.3.39 (Unix) PHP/5.2.5 mod_auth_passthrough/1.8 mod_bwlimited/1.4 mod_log_bytes/1.2 mod_gzip/1.3.26.1a FrontPage/5.0.2.2635 DAV/1.0.3 mod_ssl/2.8.30 OpenSSL/0.9.7a,NA,None,None,25/02/2006 0:00,26/02/2016 0:00,18,0,1,1458,20,20,19623,1616,20,2,0 384 | B0_1100,38,8,UTF-8,cloudflare-nginx,NA,US,New York,12/06/2007 0:00,5/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 385 | B0_1224,38,8,utf-8,nginx,39740,[u'GB'; u'UK'],UK,2002-03-20T23:59:59.0Z,2017-03-07T22:02:38.0Z,0,0,0,0,0,0,0,0,0,0,0 386 | B0_127,38,9,utf-8,Apache,68067,US,MO,20/05/1996 0:00,24/10/2016 0:00,19,0,3,1851,23,23,15551,2143,23,4,0 387 | B0_1289,38,10,UTF-8,Apache,40299,UK,None,18/04/1995 0:00,14/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 388 | B0_1329,38,9,ISO-8859-1,Apache,NA,US,CA,25/04/2000 0:00,4/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 389 | B0_1349,38,8,utf-8,None,NA,US,CA,5/12/1997 0:00,31/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 390 | B0_1365,38,9,utf-8,nginx/1.1.19,NA,US,CA,9/12/1996 0:00,9/10/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 391 | B0_1387,38,8,iso-8859-1,Apache/2,345,US,CA,24/09/1996 0:00,30/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 392 | B0_1403,38,7,us-ascii,Microsoft-HTTPAPI/2.0,324,US,NJ,10/01/1992 0:00,5/01/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 393 | B0_1404,38,9,UTF-8,GSE,3916,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 394 | B0_184,38,8,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,39,25,11,5509,47,45,25776,6115,47,8,0 395 | B0_2011,38,7,ISO-8859-1,None,34,None,None,17/07/2001 0:00,28/05/2014 0:00,7,7,3,618,7,9,562,618,7,0,0 396 | B0_2118,38,8,UTF-8,Apache,NA,US,MI,14/07/2011 0:00,30/06/2016 0:00,13,13,9,1002,13,16,1012,1002,13,0,0 397 | B0_2138,38,7,UTF-8,Apache,1172,US,NY,21/09/2001 0:00,2/03/2017 0:00,4,3,2,432,4,4,244,432,4,0,0 398 | B0_2213,38,6,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,5/06/2003 0:00,26/11/2014 0:00,6,6,3,540,6,8,539,540,6,0,0 399 | B0_2274,38,8,UTF-8,Server,NA,US,NJ,5/12/1996 0:00,30/11/2016 0:00,3,2,2,330,3,5,306,330,3,0,0 400 | B0_246,38,7,UTF-8,None,24087,AU,NSW,19/02/2002 1:02,29/11/2016 0:00,8,0,3,786,12,9,968,1106,12,4,0 401 | B0_295,38,9,utf-8,ATS,618,US,CA,18/01/1995 0:00,26/08/2015 0:00,46,17,7,5306,54,42,39325,5906,54,8,0 402 | B0_34,38,8,ISO-8859-1,None,6746,None,None,28/11/1999 0:00,9/09/2013 0:00,35,8,14,3072,41,31,9718,3506,41,6,0 403 | B0_360,38,8,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,26/05/1997 0:00,23/04/2017 0:00,23,7,7,1967,29,24,6542,2417,29,6,0 404 | B0_37,38,7,us-ascii,Microsoft-HTTPAPI/2.0,324,AU,NSW,5/07/2008 0:00,30/08/2016 0:00,13,7,7,1068,15,13,1006,1216,15,2,0 405 | B0_41,38,6,utf-8,Apache,9555,BE,None,7/04/2007 0:00,8/04/2017 0:00,23,5,9,2823,27,21,15940,3153,27,4,0 406 | B0_428,38,6,UTF-8,SSWS,NA,US,FL,9/04/2011 16:13,28/02/2017 10:46,58,40,3,8165,66,77,54909,8787,66,8,0 407 | B0_441,38,8,UTF-8,Apache,1840,US,CA,11/09/1997 4:00,9/12/2015 14:43,23,12,8,3099,27,28,7395,3439,27,4,0 408 | B0_464,38,10,utf-8,Microsoft-IIS/8.0,4929,NO,None,29/01/2004 16:01,29/12/2016 14:11,16,0,5,1927,20,20,8052,2219,20,4,0 409 | B0_496,38,8,utf-8,Apache/2.4.18 (Ubuntu),12400,US,FL,17/02/1999 5:00,19/12/2016 8:39,16,0,3,1879,22,20,8768,2307,22,6,0 410 | B0_536,38,9,UTF-8,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.16 mod_apreq2-20090110/2.8.0 mod_perl/2.0.10 Perl/v5.24.1,42952,US,FL,27/02/2000 15:05,31/05/2016 17:46,35,30,2,4047,41,53,54041,4497,41,6,0 411 | B0_624,38,7,ISO-8859-1,Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.2.10,NA,US,California,2/07/2010 0:00,25/04/2017 0:00,20,0,3,1578,24,24,20606,1890,24,4,0 412 | B0_721,38,7,UTF-8,GSE,NA,US,CA,31/07/2000 0:00,29/06/2016 0:00,42,20,4,4268,50,40,40666,4998,50,8,0 413 | B0_737,38,9,UTF-8,None,NA,None,None,None,None,288,279,10,20749,294,431,1058608,21187,294,6,0 414 | B0_813,38,8,utf-8,cloudflare-nginx,NA,US,CA,21/07/1995 0:00,26/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 415 | B0_90,38,7,UTF-8,GSE,7868,US,CA,31/07/2000 0:00,29/06/2016 0:00,44,0,4,5064,50,42,35677,5586,50,6,0 416 | B0_914,38,9,iso-8859-1,Apache/2.2.20 (Unix),220,US,CA,8/08/2002 0:00,29/07/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 417 | B0_918,38,7,UTF-8,GSE,7797,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 418 | B0_927,38,9,us-ascii,cloudflare-nginx,NA,US,Arizona,10/06/2005 0:00,4/06/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 419 | M0_141,39,13,UTF-8,nginx,637,None,None,None,None,4,0,4,264,4,6,388,264,4,0,1 420 | M0_144,39,11,UTF-8,nginx,640,None,None,None,None,11,1,4,1266,15,12,960,1548,15,4,1 421 | M0_145,39,11,UTF-8,nginx,640,None,None,None,None,26,5,8,2329,32,25,4850,2759,32,6,1 422 | M0_150,39,11,UTF-8,nginx,661,None,None,None,None,20,0,6,2328,26,26,3285,2772,26,6,1 423 | M0_44,39,9,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,20,0,2,2976,26,23,7783,3440,26,6,1 424 | M0_91,39,10,iso-8859-1,nginx/1.8.0,216,None,None,18/07/2005 0:00,18/06/2016 0:00,8,0,1,809,12,11,1321,1101,12,4,1 425 | B0_1009,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 426 | B0_1050,39,7,UTF-8,Apache/2.2.15 (CentOS),256306,AU,New South Wales,8/01/2009 10:56,9/01/2017 10:11,0,0,0,0,0,0,0,0,0,0,0 427 | B0_1061,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 428 | B0_1065,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 429 | B0_1079,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 430 | B0_1084,39,9,utf-8,nginx/1.11.3,NA,None,None,1/07/2007 5:40,8/12/2016 14:01,0,0,0,0,0,0,0,0,0,0,0 431 | B0_1099,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 432 | B0_1108,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 433 | B0_1161,39,8,iso-8859-1,Apache,404,US,WV,21/10/2006 0:00,22/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 434 | B0_1174,39,9,UTF-8,nginx,NA,US,Arizona,30/08/2000 0:00,18/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 435 | B0_1176,39,8,utf-8,nginx/1.11.2,NA,US,FL,14/09/1995 0:00,12/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 436 | B0_1178,39,8,iso-8859-1,HTTPDaemon,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 437 | B0_1198,39,7,UTF-8,GSE,7472,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 438 | B0_1210,39,8,UTF-8,Apache/2.4.18 (Ubuntu),3063,TR,None,14/09/2000 8:47,15/09/2016 21:37,0,0,0,0,0,0,0,0,0,0,0 439 | B0_1234,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 440 | B0_125,39,6,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,30,26,1,3521,36,37,33021,3947,36,6,0 441 | B0_1252,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 442 | B0_1279,39,7,utf-8,Apache,12985,US,CO,17/02/2006 0:00,19/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 443 | B0_1285,39,8,utf-8,nginx,NA,US,Oregon,30/08/2000 0:00,16/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 444 | B0_1300,39,8,UTF-8,GSE,9352,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 445 | B0_1338,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 446 | B0_1344,39,7,UTF-8,Apache,NA,US,NY,10/07/2002 0:00,18/10/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 447 | B0_138,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,61,52,4,7271,71,68,60586,8017,71,10,0 448 | B0_1380,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 449 | B0_1384,39,10,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 450 | B0_155,39,8,UTF-8,nginx,NA,FR,None,4/09/1996 4:00,26/04/2016 9:14,8,0,2,1059,12,11,1506,1361,12,4,0 451 | B0_19,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,16,7,3,2241,22,20,6701,2683,22,6,0 452 | B0_195,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,64,48,8,6413,72,68,58285,7005,72,8,0 453 | B0_2004,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,2,2,1,276,2,4,244,276,2,0,0 454 | B0_2052,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,16,6,4,1224,16,4,244,1224,16,0,0 455 | B0_2079,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,34,24,7,5528,34,22,7472,5528,34,0,0 456 | B0_2103,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,6,2,3,492,6,3,184,492,6,0,0 457 | B0_2121,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,5,3,2,498,5,7,438,498,5,0,0 458 | B0_2136,39,8,UTF-8,Apache,9050,None,None,None,None,22,9,9,1560,22,18,1334,1560,22,0,0 459 | B0_2160,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,22,9,10,1524,22,11,702,1524,22,0,0 460 | B0_2179,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,2,2,1,276,2,4,246,276,2,0,0 461 | B0_2193,39,9,utf-8,ATS,620,US,CA,18/01/1995 0:00,26/08/2015 0:00,3,3,1,366,3,5,306,366,3,0,0 462 | B0_2202,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,18,7,11,1308,18,16,1030,1308,18,0,0 463 | B0_2241,39,9,ISO-8859-1,AmazonS3,889,None,None,15/05/2005 0:00,15/04/2017 0:00,10,4,5,816,10,7,436,816,10,0,0 464 | B0_2244,39,9,ISO-8859-1,nginx,1502,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,8,4,6,684,8,12,762,684,8,0,0 465 | B0_2269,39,9,UTF-8,Apache,NA,None,None,None,None,4,3,2,420,4,5,310,420,4,0,0 466 | B0_2284,39,10,UTF-8,cloudflare-nginx,NA,None,None,None,None,3,3,1,366,3,4,244,366,3,0,0 467 | B0_2285,39,10,utf-8,cloudflare-nginx,NA,US,Arizona,10/11/2009 0:00,21/04/2015 0:00,12,5,5,912,12,4,244,912,12,0,0 468 | B0_2291,39,7,iso-8859-1,Apache,340,CA,ON,26/11/1996 0:00,2/11/2016 0:00,11,5,5,894,11,10,634,894,11,0,0 469 | B0_2297,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,9,8,6,714,9,11,788,714,9,0,0 470 | B0_233,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,25,11,4,3771,33,32,11756,4385,33,8,0 471 | B0_253,39,8,ISO-8859-1,Apache,1002,AT,Austria,1/06/2004 0:00,2/06/2016 0:00,10,2,7,927,14,20,2926,1241,14,4,0 472 | B0_273,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,23,6,10,2679,29,26,7080,3121,29,6,0 473 | B0_345,39,7,ISO-8859-1,cloudflare-nginx,NA,None,None,2/08/2010 0:00,4/05/2016 0:00,28,6,13,2721,30,29,15626,2879,30,2,0 474 | B0_356,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,63,54,5,6884,73,70,57005,7630,73,10,0 475 | B0_389,39,7,utf-8,Apache/2.2.15 (CentOS),431,KY,GRAND CAYMAN,24/08/2003 0:00,27/02/2017 0:00,9,0,1,865,11,12,19264,1045,11,2,0 476 | B0_392,39,9,ISO-8859-1,nginx,1500,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,40,11,12,6028,46,46,20061,6502,46,6,0 477 | B0_393,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,44,36,6,5129,52,68,59068,5721,52,8,0 478 | B0_471,39,9,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,38,33,1,6419,48,47,29141,7171,48,10,0 479 | B0_480,39,6,ISO-8859-1,nginx/1.10.0 (Ubuntu),NA,LV,RIX,19/07/2010 0:00,20/07/2016 0:00,71,67,7,7582,79,73,82537,8282,79,8,0 480 | B0_50,39,8,us-ascii,Microsoft-HTTPAPI/2.0,324,TR,TR,28/10/2008 0:00,3/04/2016 0:00,12,6,9,1063,14,16,1287,1213,14,2,0 481 | B0_523,39,8,ISO-8859-1,nginx/1.8.1,NA,US,nj,24/06/2003 0:00,22/08/2016 0:00,24,13,8,2750,30,32,9290,3190,30,6,0 482 | B0_606,39,9,us-ascii,cloudflare-nginx,NA,US,Arizona,10/06/2005 0:00,4/06/2015 0:00,23,17,8,1970,27,26,2183,2262,27,4,0 483 | B0_61,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,69,60,5,8450,81,80,68036,9350,81,12,0 484 | B0_631,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,64,56,5,7076,74,71,63630,7822,74,10,0 485 | B0_632,39,10,UTF-8,Apache/2.2.22 (Debian),8507,US,Arizona,28/02/2008 0:00,24/04/2017 0:00,13,3,7,1313,17,18,1612,1605,17,4,0 486 | B0_644,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,62,50,5,6269,70,65,54988,6861,70,8,0 487 | B0_666,39,10,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,57,49,5,5951,65,64,56509,6543,65,8,0 488 | B0_710,39,9,ISO-8859-1,nginx/1.11.10,121211,US,GA,22/09/1993 0:00,15/02/2017 0:00,35,0,2,3234,38,38,129083,3384,38,2,0 489 | B0_742,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,60,51,4,6503,69,66,58109,7095,69,8,0 490 | B0_795,39,9,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 491 | B0_820,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 492 | B0_830,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 493 | B0_839,39,8,ISO-8859-1,Squeegit/1.2.5 (3_sir),NA,US,MA,29/09/1994 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 494 | B0_841,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 495 | B0_85,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,66,56,7,8252,78,77,61807,9152,78,12,0 496 | B0_854,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 497 | B0_865,39,9,UTF-8,Apache,58,PA,Panama,7/11/2016 0:00,7/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 498 | B0_870,39,8,UTF-8,Apache/2,1007,PA,Panama,30/07/2009 4:01,19/04/2017 10:41,0,0,0,0,0,0,0,0,0,0,0 499 | B0_876,39,7,UTF-8,Virtuoso/07.20.3217 (Linux) i686-generic-linux-glibc212-64 VDB,NA,DE,None,10/01/2007 15:27,9/01/2017 16:53,0,0,0,0,0,0,0,0,0,0,0 500 | B0_900,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 501 | B0_902,39,8,utf-8,YouTubeFrontEnd,NA,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 502 | B0_915,39,9,ISO-8859-1,nginx/1.12.0,NA,CA,SK,19/10/2005 0:00,18/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 503 | B0_948,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 504 | B0_988,39,8,utf-8,YouTubeFrontEnd,NA,US,CA,15/02/2005 0:00,14/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 505 | M0_126,40,13,UTF-8,nginx,637,None,None,None,None,12,1,5,1340,16,12,964,1622,16,4,1 506 | M0_139,40,13,UTF-8,nginx,640,None,None,None,None,12,1,4,1325,18,14,2091,1749,18,6,1 507 | M0_143,40,13,UTF-8,nginx,643,None,None,None,None,11,1,4,1266,15,12,960,1548,15,4,1 508 | M0_158,40,11,UTF-8,nginx,667,None,None,None,None,21,1,5,2383,29,25,3786,2983,29,8,1 509 | M0_160,40,11,UTF-8,nginx,667,None,None,None,None,19,1,5,2243,25,22,3021,2691,25,6,1 510 | M0_39,40,10,utf-8,Apache,3016,None,None,None,None,11,0,2,1285,17,18,2462,1741,17,6,1 511 | M0_45,40,9,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,19,0,2,2610,25,22,7715,3074,25,6,1 512 | B0_1011,40,9,UTF-8,Apache-Coyote/1.1,NA,US,ca,14/05/1999 0:00,28/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 513 | B0_1017,40,9,UTF-8,mw2239.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 514 | B0_1033,40,7,UTF-8,GSE,7283,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 515 | B0_1075,40,10,utf-8,Yippee-Ki-Yay,12513,US,Arizona,13/09/2001 23:03,13/02/2013 1:33,0,0,0,0,0,0,0,0,0,0,0 516 | B0_1116,40,7,UTF-8,Apache,13183,US,CA,22/02/2001 0:00,7/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 517 | B0_1142,40,7,UTF-8,GSE,6222,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 518 | B0_116,40,9,UTF-8,Apache,7942,US,CA,2/10/2005 0:00,3/10/2016 0:00,8,0,2,1016,12,14,1612,1324,12,4,0 519 | B0_1195,40,7,utf-8,None,NA,CA,ON,27/08/2002 0:00,1/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 520 | B0_1228,40,9,utf-8,cloudflare-nginx,NA,US,CO,28/09/1996 0:00,26/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 521 | B0_1244,40,8,iso-8859-1,cloudflare-nginx,NA,ES,Alicante,5/06/2006 0:00,24/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 522 | B0_1311,40,9,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 523 | B0_1383,40,12,UTF-8,Apache,3013,US,CA,20/10/1998 0:00,4/12/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 524 | B0_1415,40,11,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 525 | B0_2010,40,10,UTF-8,mw2165.codfw.wmnet,4692,US,CA,13/01/2001 0:12,12/12/2015 10:16,7,4,3,630,7,5,310,630,7,0,0 526 | B0_2034,40,7,UTF-8,GSE,9433,US,CA,31/07/2000 0:00,29/06/2016 0:00,3,3,1,366,3,5,306,366,3,0,0 527 | B0_2068,40,9,UTF-8,mw2192.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,14,12,5,1092,14,4,244,1092,14,0,0 528 | B0_2148,40,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,New Jersey,23/04/2002 18:56,20/08/2015 15:58,3,3,1,366,3,5,306,366,3,0,0 529 | B0_222,40,8,UTF-8,Apache/2.2.23 (Amazon),11590,US,New York,26/09/2005 0:00,23/07/2011 0:00,156,17,12,23383,162,206,295213,23877,162,6,0 530 | B0_2275,40,9,iso-8859-1,Apache,230,US,California,4/01/1995 0:00,4/01/2017 0:00,5,3,3,486,5,4,244,486,5,0,0 531 | B0_2323,40,6,utf-8,None,NA,None,None,22/02/1996 0:00,16/01/2015 0:00,12,4,8,924,12,10,642,924,12,0,0 532 | B0_251,40,7,ISO-8859-1,LiteSpeed,618,AU,Vic,30/07/2004 0:00,30/03/2014 0:00,24,6,4,1784,26,27,23886,1950,26,2,0 533 | B0_309,40,8,ISO-8859-1,None,NA,US,ME,5/11/2008 0:00,7/10/2016 0:00,17,3,9,1394,19,20,12358,1546,19,2,0 534 | B0_349,40,9,utf-8,nginx/1.11.3,NA,None,None,1/07/2007 5:40,8/12/2016 14:01,16,11,2,2272,20,26,16035,2576,20,4,0 535 | B0_353,40,9,utf-8,ATS,622,US,CA,18/01/1995 0:00,26/08/2015 0:00,8,1,3,1088,14,13,2036,1524,14,6,0 536 | B0_376,40,9,ISO-8859-1,Apache/2.2.32,NA,US,MO,29/12/2005 0:00,30/09/2015 0:00,21,0,2,2021,23,25,26799,2165,23,2,0 537 | B0_391,40,6,us-ascii,Microsoft-HTTPAPI/2.0,324,US,PA,5/06/2003 0:00,26/11/2014 0:00,22,0,2,1724,24,26,38477,1886,24,2,0 538 | B0_409,40,7,utf-8,None,NA,CA,ON,27/08/2002 0:00,1/06/2016 0:00,76,9,7,8268,84,88,117625,8898,84,8,0 539 | B0_416,40,6,ISO-8859-1,nginx/1.12.0,1108,None,None,17/02/2009 0:00,16/02/2015 0:00,15,10,4,1166,19,19,1626,1538,19,4,0 540 | B0_442,40,9,utf-8,nginx/1.4.6 (Ubuntu),NA,US,CA,2/12/2005 0:00,2/12/2016 0:00,26,1,3,4229,30,36,32381,4517,30,4,0 541 | B0_520,40,9,UTF-8,Microsoft-IIS/7.5,63279,US,OH,8/11/1998 0:00,16/03/2015 0:00,56,4,8,4551,60,59,67881,4843,60,4,0 542 | B0_552,40,8,ISO-8859-1,Apache,15240,None,None,12/02/2002 0:00,16/10/2014 0:00,8,4,1,1325,12,12,2833,1637,12,4,0 543 | B0_562,40,9,utf-8,Apache,65993,US,MO,20/05/1996 0:00,24/10/2016 0:00,24,0,9,2112,28,29,16019,2404,28,4,0 544 | B0_590,40,7,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,48,41,9,6057,56,54,15706,6657,56,8,0 545 | B0_685,40,8,ISO-8859-1,nginx,NA,US,WA,8/04/1996 0:00,18/11/2016 0:00,16,5,5,1615,20,23,25358,1931,20,4,0 546 | B0_697,40,8,UTF-8,nginx,15363,US,NY,8/05/1996 0:00,27/01/2017 0:00,20,5,9,2948,24,27,5557,3248,24,4,0 547 | B0_703,40,6,iso-8859-1,None,411,US,TX,2/03/1999 0:00,1/02/2017 0:00,14,1,3,1981,20,19,6759,2497,20,6,0 548 | B0_765,40,7,UTF-8,GSE,38119,US,CA,31/07/2000 0:00,29/06/2016 0:00,38,1,3,2995,44,37,41717,3531,44,6,0 549 | B0_803,40,9,ISO-8859-1,cloudflare-nginx,NA,US,NJ,17/12/2007 0:00,15/12/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 550 | B0_863,40,9,utf-8,nginx + Phusion Passenger,NA,US,FL,3/06/2000 0:00,5/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 551 | B0_976,40,7,UTF-8,GSE,6498,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 552 | B0_980,40,9,utf-8,ATS,622,US,CA,18/01/1995 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 553 | M0_116,41,13,UTF-8,nginx,643,None,None,None,None,9,0,3,1142,13,12,1991,1430,13,4,1 554 | M0_156,41,11,UTF-8,nginx,670,None,None,None,None,15,1,5,1653,21,19,2798,2103,21,6,1 555 | M0_52,41,10,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,24,0,2,4034,30,26,12486,4498,30,6,1 556 | M0_57,41,11,UTF-8,Proxy Pandeiro UOL,27103,BR,None,None,None,22,0,3,2316,26,28,31378,2640,26,4,1 557 | M0_92,41,10,iso-8859-1,nginx/1.8.0,218,None,None,18/07/2005 0:00,18/06/2016 0:00,7,0,1,737,11,10,1162,1047,11,4,1 558 | B0_107,41,6,iso-8859-1,nginx,318,None,None,21/11/2016 0:00,13/01/2017 0:00,8,0,2,1089,14,13,1977,1601,14,6,0 559 | B0_1283,41,8,utf-8,nginx,NA,US,Oregon,30/08/2000 0:00,16/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 560 | B0_1296,41,8,utf-8,Apache,65473,US,MO,20/05/1996 0:00,24/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 561 | B0_1373,41,9,UTF-8,nginx/1.12.0,NA,US,Pennsylvania,8/09/2007 0:00,9/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 562 | B0_1378,41,8,us-ascii,Microsoft-HTTPAPI/2.0,324,GB,worcs,25/10/2006 0:00,18/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 563 | B0_1425,41,10,utf-8,nginx/1.8.1,NA,US,NY,18/10/1994 0:00,6/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 564 | B0_192,41,9,UTF-8,mw2231.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,2,124,0,0,0,0 565 | B0_2019,41,9,UTF-8,mw2165.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,3,3,1,366,3,4,244,366,3,0,0 566 | B0_2135,41,9,ISO-8859-1,Apache,NA,US,Maine,23/10/1996 0:00,28/02/2017 0:00,7,5,5,630,7,7,442,630,7,0,0 567 | B0_2299,41,9,UTF-8,Apache,7065,US,Arizona,4/11/2003 0:00,4/11/2016 0:00,5,3,3,576,6,8,522,576,6,0,0 568 | B0_238,41,7,ISO-8859-1,openresty/1.11.2.2,10588,US,FL,30/07/2002 0:00,26/06/2014 0:00,20,0,2,1895,22,24,13792,2055,22,2,0 569 | B0_26,41,8,UTF-8,Apache,NA,PA,PANAMA,9/12/2008 0:00,30/11/2016 0:00,8,0,1,1078,12,12,1532,1390,12,4,0 570 | B0_275,41,9,UTF-8,mw2109.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,34,27,3,4891,42,37,37001,5499,42,8,0 571 | B0_30,41,7,iso-8859-1,Apache,281,US,PA,9/03/2010 0:00,18/01/2013 0:00,18,0,3,1868,22,23,18348,2202,22,4,0 572 | B0_364,41,8,us-ascii,Microsoft-IIS/7.5,324,US,Kansas,4/07/2001 23:21,19/04/2017 17:24,10,3,5,1202,14,16,1335,1500,14,4,0 573 | B0_373,41,8,UTF-8,Apache,NA,JP,None,8/03/2016 0:00,27/02/2017 0:00,34,11,4,3699,40,38,27522,4153,40,6,0 574 | B0_390,41,8,UTF-8,Apache,NA,US,VA,23/02/2010 0:00,23/01/2017 0:00,26,0,8,2657,30,35,34427,2991,30,4,0 575 | B0_427,41,10,iso-8859-1,Apache,13,US,Arizona,6/07/2016 14:30,5/09/2016 3:47,8,3,8,552,8,5,420,552,8,0,0 576 | B0_434,41,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,40,12,6,3079,44,53,38924,3359,44,4,0 577 | B0_713,41,8,ISO-8859-1,nginx/0.8.54,NA,None,None,16/01/2016 0:00,13/03/2017 0:00,1,0,1,54,1,2,124,54,1,0,0 578 | B0_731,41,10,utf-8,nginx/1.8.1,NA,US,NY,18/10/1994 0:00,6/10/2016 0:00,10,1,4,1198,16,16,2763,1616,16,6,0 579 | B0_758,41,9,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,101,41,5,10813,110,101,142735,11423,110,8,0 580 | B0_829,41,10,UTF-8,Apache-Coyote/1.1,9817,GB,London,13/06/1997 0:00,5/11/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 581 | B0_855,41,9,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 582 | B0_910,41,9,ISO-8859-1,nginx,NA,FR,None,22/07/2005 18:52,21/07/2016 18:54,0,0,0,0,0,0,0,0,0,0,0 583 | M0_128,42,13,UTF-8,nginx,646,None,None,None,None,7,1,5,466,11,10,822,760,11,4,1 584 | M0_154,42,11,UTF-8,nginx,673,None,None,None,None,18,1,4,2185,24,21,2969,2637,24,6,1 585 | M0_155,42,11,UTF-8,nginx,673,None,None,None,None,18,1,5,2185,24,21,2969,2637,24,6,1 586 | M0_40,42,10,utf-8,nginx/1.10.1,NA,None,None,7/04/2002 20:00,None,15,0,3,2124,17,20,12884,2270,17,2,1 587 | M0_47,42,10,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,24,0,2,4035,30,25,12416,4499,30,6,1 588 | M0_48,42,10,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,25,0,2,4101,31,28,12614,4565,31,6,1 589 | M0_50,42,10,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,23,0,2,3969,29,24,12354,4433,29,6,1 590 | M0_53,42,10,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,25,0,2,4101,31,28,12614,4565,31,6,1 591 | M1_3,42,8,ISO-8859-1,Apache,895,US,Arizona,5/03/2013 20:51,5/05/2013 3:46,15,0,6,1980,19,17,5911,2334,19,4,1 592 | B0_104,42,7,utf-8,Apache/2.4.6,NA,US,FL,24/05/2004 0:00,16/03/2017 0:00,51,11,7,4601,57,55,45279,5103,57,6,0 593 | B0_1131,42,8,utf-8,Apache/2.4.25,NA,IN,Karnataka,30/01/2006 0:00,14/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 594 | B0_1139,42,7,utf-8,nginx/1.10.1,NA,CA,BC,19/12/1997 0:00,5/11/2012 0:00,0,0,0,0,0,0,0,0,0,0,0 595 | B0_1236,42,10,UTF-8,nginx,NA,US,Arizona,30/11/2006 0:00,17/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 596 | B0_1257,42,8,UTF-8,Apache,7289,CA,ON,14/04/1999 0:00,8/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 597 | B0_1260,42,8,UTF-8,Apache/2.4.25,4974,CA,Quebec,27/05/2008 0:00,27/05/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 598 | B0_1266,42,10,utf-8,cloudflare-nginx,NA,US,Arizona,10/11/2009 0:00,21/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 599 | B0_1268,42,9,UTF-8,mw2225.codfw.wmnet,4691,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 600 | B0_1303,42,8,utf-8,nginx/1.1.19,NA,US,CA,9/12/1996 0:00,9/10/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 601 | B0_1351,42,11,UTF-8,nginx,NA,US,Arizona,8/05/2004 20:53,4/04/2014 15:11,0,0,0,0,0,0,0,0,0,0,0 602 | B0_1375,42,10,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 603 | B0_1422,42,9,ISO-8859-1,nginx,1505,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 604 | B0_146,42,9,UTF-8,Apache,7509,None,None,16/08/1999 0:00,17/08/2013 0:00,7,0,2,985,13,12,1496,1433,13,6,0 605 | B0_2112,42,9,ISO-8859-1,Apache-Coyote/1.1,5127,US,CA,4/08/1995 0:00,26/01/2017 0:00,4,3,2,432,4,5,310,432,4,0,0 606 | B0_2172,42,7,ISO-8859-1,Apache,NA,US,Indiana,18/07/2002 0:00,10/07/2013 0:00,6,4,4,528,6,8,612,528,6,0,0 607 | B0_2185,42,9,UTF-8,nginx,NA,None,None,23/11/1994 0:00,19/08/2015 0:00,6,5,2,540,6,7,473,540,6,0,0 608 | B0_2218,42,8,UTF-8,nginx,NA,AU,NEW SOUTH WALES,30/08/2015 0:00,8/03/2017 0:00,5,3,3,498,5,6,376,498,5,0,0 609 | B0_2231,42,9,us-ascii,None,324,None,None,11/10/2000 0:00,2/07/2014 0:00,8,8,3,636,8,6,364,636,8,0,0 610 | B0_291,42,8,UTF-8,Apache,NA,UK,UK,27/02/1996 0:00,27/01/2016 0:00,33,0,5,2706,37,35,41737,2982,37,4,0 611 | B0_314,42,8,UTF-8,Apache/2.2.15 (CentOS),2766,None,None,30/04/2009 0:00,5/01/2017 0:00,33,4,9,3088,41,34,12104,3720,41,8,0 612 | B0_328,42,8,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,28,20,2,2780,32,36,27390,3064,32,4,0 613 | B0_33,42,9,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,15,6,10,950,17,18,1327,1110,17,2,0 614 | B0_363,42,7,utf-8,openresty/1.11.2.1,NA,US,IL,27/11/2006 0:00,2/03/2017 0:00,19,15,3,2864,23,26,10465,3168,23,4,0 615 | B0_510,42,9,UTF-8,Apache/2.2.22 (Debian),10561,JP,6110021,13/02/2017 0:00,28/02/2017 0:00,15,4,4,1540,19,21,25529,1844,19,4,0 616 | B0_518,42,9,UTF-8,Apache/2.2.22 (Debian),8769,SC,Not Applicable,29/09/2015 0:00,24/03/2017 0:00,5,0,3,334,7,6,412,474,7,2,0 617 | B0_527,42,7,UTF-8,GSE,12608,US,CA,31/07/2000 0:00,29/06/2016 0:00,71,9,13,7856,77,68,82332,8384,77,6,0 618 | B0_575,42,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CA,22/10/1998 0:00,16/03/2017 0:00,29,14,15,2767,33,27,3550,3073,33,4,0 619 | B0_603,42,8,UTF-8,Apache/2.2.15 (CentOS),94,AU,NSW,19/08/2004 0:00,5/07/2016 0:00,14,0,3,1102,16,8,1015,1248,16,2,0 620 | B0_818,42,8,ISO-8859-1,nginx/1.8.1,NA,US,nj,24/06/2003 0:00,22/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 621 | B0_840,42,8,us-ascii,Microsoft-HTTPAPI/2.0,324,US,California,18/03/2016 0:00,14/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 622 | B0_92,42,8,utf-8,None,NA,US,CA,22/02/1996 0:00,16/01/2015 0:00,22,15,2,2432,26,32,27169,2716,26,4,0 623 | B0_939,42,9,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 624 | B0_963,42,7,ISO-8859-1,Apache,497,US,PA,6/12/2010 0:00,7/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 625 | B0_985,42,7,utf-8,Apache/2.4.6,NA,US,FL,24/05/2004 0:00,16/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 626 | M0_132,43,13,UTF-8,nginx,646,None,None,None,None,11,1,4,1266,15,12,966,1554,15,4,1 627 | M0_153,43,11,UTF-8,nginx,673,None,None,None,None,18,1,5,2188,24,22,3031,2640,24,6,1 628 | M0_54,43,10,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,23,0,2,3970,29,27,12548,4434,29,6,1 629 | M0_64,43,11,iso-8859-1,Apache/1.3.27 (Unix) PHP/4.4.1,NA,None,None,3/03/2000 0:00,8/12/2015 0:00,10,0,5,925,12,12,1399,1079,12,2,1 630 | M0_9,43,10,ISO-8859-1,DOSarrest,NA,us,Washington,23/06/2003 0:00,2/01/2017 0:00,8,0,1,1045,10,9,2806,1209,10,2,1 631 | M0_95,43,10,UTF-8,Apache,7550,US,CA,3/08/2004 0:00,4/08/2016 0:00,11,0,1,883,13,13,8893,1037,13,2,1 632 | M4_75,43,10,UTF-8,nginx/1.12.0,NA,None,None,None,None,0,0,0,0,0,2,124,0,0,0,1 633 | B0_1005,43,8,us-ascii,Microsoft-HTTPAPI/2.0,324,US,WA,14/05/2002 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 634 | B0_1010,43,9,utf-8,nginx + Phusion Passenger,NA,US,FL,3/06/2000 0:00,5/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 635 | B0_1112,43,9,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 636 | B0_1177,43,9,ISO-8859-1,nginx,NA,US,WA,26/04/2001 0:00,15/12/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 637 | B0_120,43,8,iso-8859-1,Apache,236,US,ca,9/05/2004 18:06,24/04/2017 11:55,16,0,1,1151,18,19,24455,1305,18,2,0 638 | B0_1335,43,8,ISO-8859-1,Apache/2.4.12 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,NA,US,GA,5/11/1997 5:00,5/09/2016 8:00,0,0,0,0,0,0,0,0,0,0,0 639 | B0_1420,43,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 640 | B0_180,43,8,utf-8,nginx,NA,GB,Peterborough,8/12/1995 0:00,4/04/2014 0:00,15,6,5,1528,21,21,3023,1988,21,6,0 641 | B0_2008,43,7,UTF-8,Apache,NA,US,CA,27/06/2001 0:00,3/03/2017 0:00,15,3,4,1110,15,4,244,1110,15,0,0 642 | B0_2036,43,9,UTF-8,mw2236.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,29,10,11,2022,29,12,803,2022,29,0,0 643 | B0_206,43,7,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,13/11/2002 0:00,13/11/2016 0:00,39,9,5,4044,43,39,44173,4420,43,4,0 644 | B0_2070,43,8,utf-8,nginx/1.1.19,13089,None,None,9/12/1996 0:00,9/10/2015 0:00,4,3,2,408,4,7,448,408,4,0,0 645 | B0_2188,43,9,utf-8,Apache/2.2.15 (CentOS),19724,US,Arizona,30/01/1996 0:00,1/02/2017 0:00,4,3,2,420,4,6,366,420,4,0,0 646 | B0_2194,43,9,UTF-8,mw2101.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,9,5,6,750,9,8,502,750,9,0,0 647 | B0_236,43,9,UTF-8,Apache,NA,UK,UK,27/02/1996 0:00,27/01/2016 0:00,33,1,4,2756,37,37,41938,3032,37,4,0 648 | B0_242,43,9,utf-8,Varnish,389,US,CA,16/07/1999 0:00,29/03/2013 0:00,83,2,3,6008,87,107,147266,6312,87,4,0 649 | B0_271,43,8,UTF-8,Apache,NA,US,Arizona,23/06/2006 0:00,24/06/2016 0:00,84,13,6,7403,86,71,117282,7549,86,2,0 650 | B0_324,43,9,ISO-8859-1,None,6744,None,None,28/11/1999 0:00,9/09/2013 0:00,22,3,8,2267,28,31,9811,2701,28,6,0 651 | B0_331,43,12,ISO-8859,Apache,5653,None,None,25/09/2000 0:00,23/11/2015 0:00,8,0,3,803,12,12,2190,1097,12,4,0 652 | B0_354,43,8,us-ascii,Microsoft-IIS/7.5,324,None,None,26/09/2003 0:00,17/06/2016 0:00,25,2,6,2444,31,17,1984,2874,31,6,0 653 | B0_43,43,9,ISO-8859-1,cloudflare-nginx,NA,CA,Quebec,10/04/2002 0:00,9/06/2016 0:00,20,4,7,1511,22,21,14430,1663,22,2,0 654 | B0_553,43,10,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,23,15,9,2479,27,24,6085,2743,27,4,0 655 | B0_612,43,7,us-ascii,Microsoft-HTTPAPI/2.0,324,US,PA,5/06/2003 0:00,26/11/2014 0:00,17,7,3,2715,23,20,20139,3187,23,6,0 656 | B0_667,43,7,ISO-8859-1,Apache,497,GB,None,11/11/2006 0:00,26/10/2016 0:00,45,3,7,4178,51,50,44810,4646,51,6,0 657 | B0_759,43,7,UTF-8,GSE,20592,US,CA,31/07/2000 0:00,29/06/2016 0:00,64,5,13,6081,69,71,63457,6463,69,4,0 658 | B0_782,43,10,UTF-8,Resin/3.1.8,NA,US,FL,20/04/1995 4:00,7/03/2013 19:26,0,0,0,0,0,0,0,0,0,0,0 659 | B0_885,43,9,UTF-8,mw2164.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 660 | B0_989,43,10,utf-8,Microsoft-IIS/8.5,4816,US,CO,3/05/2015 0:00,4/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 661 | M0_49,44,10,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,22,0,2,3444,28,24,9819,3908,28,6,1 662 | B0_1055,44,10,utf-8,nginx/1.6.2,8219,US,CO,4/02/2005 0:00,21/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 663 | B0_1097,44,8,ISO-8859-1,nginx,NA,US,WA,8/04/1996 0:00,18/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 664 | B0_1111,44,11,iso-8859-1,Apache,334,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 665 | B0_1180,44,9,utf-8,ATS,634,US,CA,18/01/1995 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 666 | B0_1213,44,9,UTF-8,mw2242.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 667 | B0_1230,44,9,UTF-8,nginx,NA,US,NY,16/09/1996 4:00,5/04/2017 13:36,0,0,0,0,0,0,0,0,0,0,0 668 | B0_1405,44,7,us-ascii,Microsoft-HTTPAPI/2.0,324,US,PA,5/06/2003 0:00,26/11/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 669 | B0_190,44,8,ISO-8859-1,nginx,NA,US,WA,8/04/1996 0:00,18/11/2016 0:00,19,0,2,1809,23,23,26805,2125,23,4,0 670 | B0_2055,44,10,UTF-8,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.5.38,NA,AU,None,20/07/2006 0:00,5/03/2013 0:00,17,7,6,1242,17,13,962,1242,17,0,0 671 | B0_2090,44,9,ISO-8859-1,nginx,1511,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,6,4,3,640,6,8,606,640,6,0,0 672 | B0_2139,44,11,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,5,3,2,498,5,7,438,498,5,0,0 673 | B0_2140,44,10,utf-8,Apache,45958,CA,ON,9/12/2003 0:00,22/10/2016 0:00,6,6,3,540,6,8,539,540,6,0,0 674 | B0_2151,44,9,UTF-8,mw2175.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,39,19,10,2742,39,5,306,2742,39,0,0 675 | B0_2257,44,7,UTF-8,Apache,NA,US,Arizona,12/03/2008 0:00,19/05/2016 0:00,14,7,12,1092,14,15,970,1092,14,0,0 676 | B0_226,44,8,ISO-8859-1,Microsoft-IIS/7.5,11,US,WA,13/09/2000 0:00,29/08/2016 0:00,40,6,5,4203,42,42,47931,4365,42,2,0 677 | B0_235,44,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,5/02/1999 0:00,16/06/2014 0:00,26,10,6,2512,32,33,7155,2982,32,6,0 678 | B0_239,44,9,UTF-8,mw2107.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,40,35,2,5987,48,48,38230,6595,48,8,0 679 | B0_277,44,9,UTF-8,mw2190.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,37,32,2,5805,45,41,40585,6413,45,8,0 680 | B0_289,44,9,utf-8,Apache,44446,CA,ON,9/12/2003 0:00,22/10/2016 0:00,157,2,5,11053,159,176,284743,11211,159,2,0 681 | B0_311,44,9,iso-8859-1,Apache,338,None,None,None,None,9,0,2,870,11,12,5876,1020,11,2,0 682 | B0_316,44,8,iso-8859-1,Apache/2,345,US,FL,10/05/2000 0:00,11/10/2016 0:00,12,4,3,972,14,16,15901,1118,14,2,0 683 | B0_408,44,9,ISO-8859-1,None,674,US,California,28/11/1999 0:00,9/09/2013 0:00,15,0,6,1556,21,20,9023,1988,21,6,0 684 | B0_436,44,9,utf-8,nginx + Phusion Passenger,NA,US,FL,3/06/2000 0:00,5/05/2016 0:00,29,16,7,2326,33,25,3623,2626,33,4,0 685 | B0_49,44,8,UTF-8,Apache/2.4.6 (CentOS),25825,US,CA,25/01/1995 0:00,5/12/2013 0:00,71,1,6,5647,79,79,120385,6295,79,8,0 686 | B0_51,44,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,23,6,9,1942,27,25,15275,2222,27,4,0 687 | B0_550,44,9,ISO-8859-1,nginx/1.13.0,NA,FR,None,5/10/2005 0:00,21/05/2015 0:00,6,0,1,672,8,8,1381,834,8,2,0 688 | B0_557,44,9,ISO-8859-1,nginx,1501,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,53,21,8,7834,61,53,22947,8472,61,8,0 689 | B0_616,44,8,utf-8,nginx,10198,US,New York,28/06/2006 0:00,1/02/2013 0:00,17,12,4,2401,23,23,19291,2827,23,6,0 690 | B0_617,44,10,ISO-8859-1,Apache/2.4.25,360,US,CO,25/06/1997 0:00,26/03/2017 0:00,16,3,4,1480,20,23,10665,1776,20,4,0 691 | B0_633,44,9,iso-8859-1,barista/5.1.3,16525,US,CA,9/01/1998 0:00,4/01/2017 0:00,10,0,5,1197,14,15,1424,1503,14,4,0 692 | B0_641,44,8,UTF-8,Server,NA,US,WA,5/01/1996 0:00,5/05/2016 0:00,18,0,3,2274,22,21,31811,2554,22,4,0 693 | B0_733,44,9,ISO-8859-1,None,6746,US,California,28/11/1999 0:00,9/09/2013 0:00,20,4,6,2097,24,23,9280,2381,24,4,0 694 | B0_832,44,9,UTF-8,mw2103.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 695 | B0_833,44,8,us-ascii,Microsoft-HTTPAPI/2.0,324,CA,ON,17/03/2000 0:00,17/01/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 696 | B0_993,44,8,us-ascii,Microsoft-IIS/7.5,324,US,California,26/09/2003 0:00,17/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 697 | M1_2,45,10,ISO-8859-1,Apache,NA,None,None,9/10/2016 17:08,None,4,0,2,531,6,6,494,681,6,2,1 698 | B0_10,45,8,iso-8859-1,nginx,326,None,None,29/02/2008 0:00,21/02/2017 0:00,7,0,2,1088,11,10,7650,1440,11,4,0 699 | B0_1062,45,9,UTF-8,nginx/1.11.2,10273,US,MI,18/05/2001 0:00,19/03/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 700 | B0_1083,45,9,ISO-8859-1,None,6748,None,None,28/11/1999 0:00,9/09/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 701 | B0_1085,45,9,ISO-8859-1,Squeegit/1.2.5 (3_sir),NA,US,MA,29/09/1994 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 702 | B0_1140,45,8,ISO-8859-1,Microsoft-IIS/8.5,1245,US,FL,30/10/2002 0:00,6/07/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 703 | B0_1192,45,10,ISO-8859-1,Apache,6264,None,None,19/12/2000 0:00,16/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 704 | B0_1232,45,10,ISO-8859-1,Microsoft-IIS/7.5,1245,US,CT,13/05/1998 0:00,17/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 705 | B0_1238,45,9,ISO-8859-1,cloudflare-nginx,NA,US,Arizona,9/08/2009 0:00,17/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 706 | B0_1262,45,7,iso-8859-1,Apache/2.4.25 (Debian),185,US,MA,29/07/2007 0:00,9/07/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 707 | B0_1272,45,7,UTF-8,Apache,4764,US,Arizona,15/07/2009 0:00,20/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 708 | B0_1318,45,8,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,27/09/2000 0:00,10/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 709 | B0_1343,45,8,utf-8,AmazonS3,365,US,Arizona,13/07/2001 0:00,26/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 710 | B0_1411,45,11,UTF-8,mw2192.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 711 | B0_158,45,11,UTF-8,Apache,3042,US,CA,20/10/1998 0:00,4/12/2013 0:00,14,0,7,1201,18,17,4922,1495,18,4,0 712 | B0_2204,45,8,utf-8,ECD (fll/0790),41547,US,NY,10/03/2005 0:00,7/03/2017 0:00,8,4,3,660,8,6,476,660,8,0,0 713 | B0_2259,45,11,UTF-8,Pagely Gateway/1.5.1,NA,US,Minnesota,8/08/2001 0:00,9/11/2015 0:00,10,9,8,780,10,12,805,780,10,0,0 714 | B0_266,45,9,utf-8,nginx/1.10.3,39,NL,NOT APPLICABLE,27/11/2002 0:00,21/11/2016 0:00,4,0,2,541,6,7,579,689,6,2,0 715 | B0_288,45,9,utf-8,Apache,44447,CA,ON,9/12/2003 0:00,22/10/2016 0:00,185,0,2,13834,187,263,488313,13992,187,2,0 716 | B0_315,45,9,UTF-8,mw2101.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,47,41,4,6464,55,53,39038,7072,55,8,0 717 | B0_317,45,8,iso-8859-1,Apache/2.4.25 (Amazon) OpenSSL/1.0.1k-fips,226,US,Missouri,28/09/2007 16:06,28/03/2017 18:24,44,0,2,4044,46,46,82259,4204,46,2,0 718 | B0_406,45,10,iso-8859-1,Apache/2.4.25 (FreeBSD) OpenSSL/1.0.1s-freebsd PHP/5.6.30,217,None,None,None,None,28,2,5,3409,30,19,18392,3565,30,2,0 719 | B0_467,45,10,ISO-8859-1,None,12368,US,CA,9/01/1998 0:00,4/01/2017 0:00,32,5,9,2595,36,34,15941,2881,36,4,0 720 | B0_485,45,9,UTF-8,mw2097.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,55,43,7,10205,69,56,38894,11305,69,14,0 721 | B0_509,45,9,UTF-8,mw2239.codfw.wmnet,4695,US,CA,13/01/2001 0:12,12/12/2015 10:16,40,35,2,4590,46,54,84636,5046,46,6,0 722 | B0_541,45,10,utf-8,ATS,636,US,CA,18/01/1995 0:00,26/08/2015 0:00,46,22,8,5308,54,51,40052,5902,54,8,0 723 | B0_585,45,8,iso-8859-1,Apache,191,AU,VIC,12/03/2009 1:58,18/04/2017 1:29,3,0,1,198,3,3,186,198,3,0,0 724 | B0_608,45,9,UTF-8,Apache,23771,US,MA,8/11/1993 0:00,12/10/2015 0:00,19,0,2,1801,23,25,26643,2097,23,4,0 725 | B0_683,45,10,utf-8,None,14947,US,NY,25/07/1998 0:00,5/03/2017 0:00,19,0,3,1816,23,22,12138,2104,23,4,0 726 | B0_686,45,9,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,70,3,8,5631,77,65,82281,6091,77,6,0 727 | B0_691,45,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,5/02/1999 0:00,16/06/2014 0:00,28,10,9,2683,36,33,11690,3307,36,8,0 728 | B0_724,45,10,UTF-8,mw2233.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,33,29,2,5852,42,39,37285,6460,42,8,0 729 | B0_725,45,8,ISO-8859-1,Apache,NA,US,Washington,16/11/1999 0:00,5/11/2016 0:00,26,16,5,3891,34,35,37000,4567,34,8,0 730 | B0_730,45,9,iso-8859-1,nginx,NA,US,WA,20/07/1998 4:00,21/02/2017 3:57,8,0,2,805,12,11,1087,1099,12,4,0 731 | B0_74,45,9,windows-1252,fbs,NA,US,WA,7/04/2003 0:00,1/11/2013 0:00,15,0,2,2730,19,23,9605,3046,19,4,0 732 | B0_766,45,7,UTF-8,nginx/1.12.0,9194,US,NY,4/06/2009 0:00,4/05/2016 0:00,9,0,5,1197,14,11,1532,1537,14,4,0 733 | B0_798,45,10,UTF-8,ATS,6560,CA,ON,29/11/2000 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 734 | B0_847,45,10,ISO-8859-1,cloudflare-nginx,NA,NL,Noord-Holland,3/02/1999 0:00,4/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 735 | B0_871,45,9,ISO-8859-1,None,6746,US,California,28/11/1999 0:00,9/09/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 736 | B0_895,45,9,UTF-8,mw2175.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 737 | B0_919,45,8,UTF-8,None,NA,None,None,18/10/2000 0:00,29/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 738 | M0_117,46,11,UTF-8,nginx,649,None,None,None,None,11,0,3,1274,15,14,3132,1562,15,4,1 739 | M0_82,46,12,ISO-8859-1,nginx/1.12.0,221,US,CALIFORNIA,6/10/2005 0:00,6/10/2016 0:00,7,0,2,742,9,10,1263,890,9,2,1 740 | B0_112,46,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,63,59,2,8062,75,76,82775,8950,75,12,0 741 | B0_1143,46,11,UTF-8,mw2199.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 742 | B0_1201,46,9,iso-8859-1,Apache/2.4.25 (Amazon) OpenSSL/1.0.1k-fips,231,None,None,22/09/2009 0:00,23/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 743 | B0_1220,46,9,UTF-8,nginx/1.4.6 (Ubuntu),NA,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 744 | B0_1221,46,9,ISO-8859-1,Microsoft-IIS/7.5,11,US,WA,13/09/2000 0:00,29/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 745 | B0_123,46,11,UTF-8,mw2255.codfw.wmnet,4698,US,CA,13/01/2001 0:12,12/12/2015 10:16,46,42,2,6883,54,54,38056,7491,54,8,0 746 | B0_124,46,9,ISO-8859-1,Apache,2393,US,NY,18/01/1994 0:00,21/10/2016 0:00,29,14,4,3416,35,35,17574,3858,35,6,0 747 | B0_1270,46,10,UTF-8,Pagely Gateway/1.5.1,NA,US,Minnesota,8/08/2001 0:00,9/11/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 748 | B0_1314,46,8,iso-8859-1,None,21,US,VA,13/09/1996 4:00,16/07/2016 7:42,0,0,0,0,0,0,0,0,0,0,0 749 | B0_1333,46,9,ISO-8859-1,nginx,NA,US,Arizona,21/07/2008 0:00,18/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 750 | B0_1397,46,9,utf-8,nginx,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 751 | B0_2016,46,8,UTF-8,Apache/2.4.7 (Ubuntu),22479,US,WA,30/01/2007 0:00,28/12/2016 0:00,7,6,4,606,7,8,496,606,7,0,0 752 | B0_2153,46,10,iso-8859-1,Apache,344,JP,Osaka,11/03/2017 0:00,24/04/2017 0:00,5,3,3,498,5,8,504,498,5,0,0 753 | B0_2222,46,10,UTF-8,Apache/2.4,NA,US,Maryland,25/08/2004 0:00,26/08/2016 0:00,20,6,10,1392,20,12,766,1392,20,0,0 754 | B0_2253,46,11,UTF-8,None,NA,US,PA,16/05/2001 0:00,13/05/2015 0:00,7,4,3,582,7,8,596,582,7,0,0 755 | B0_2302,46,9,UTF-8,mw2228.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,6,4,4,564,6,8,504,564,6,0,0 756 | B0_234,46,9,UTF-8,ATS,17810,US,CA,22/11/2003 0:00,1/05/2014 0:00,50,40,5,5894,58,73,69918,6478,58,8,0 757 | B0_237,46,8,UTF-8,Apache,193,US,PA,14/10/2016 0:00,14/10/2016 0:00,7,0,2,680,11,10,1363,1002,11,4,0 758 | B0_270,46,11,utf-8,ATS,630,US,CA,18/01/1995 0:00,26/08/2015 0:00,38,13,10,4509,48,52,35953,5267,48,10,0 759 | B0_29,46,10,utf-8,nginx/1.10.1 + Phusion Passenger 5.0.30,NA,US,Nevada,15/12/2004 0:00,25/02/2015 0:00,24,2,10,3146,28,30,4258,3442,28,4,0 760 | B0_292,46,9,utf-8,None,7758,US,NY,26/07/1995 0:00,21/07/2016 0:00,127,0,3,8942,131,144,233106,9242,131,4,0 761 | B0_304,46,8,ISO-8859-1,nginx,2886,None,None,22/04/1999 0:00,9/09/2016 0:00,74,0,2,18084,78,96,113453,18384,78,4,0 762 | B0_306,46,10,ISO-8859-1,nginx,1510,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,20,2,6,3089,24,24,7088,3391,24,4,0 763 | B0_439,46,8,UTF-8,nginx,NA,US,CA,26/05/2006 0:00,8/09/2016 0:00,15,8,6,2218,19,18,5203,2546,19,4,0 764 | B0_477,46,12,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,70,21,7,9463,80,80,133235,10217,80,10,0 765 | B0_506,46,10,utf-8,openresty,NA,US,California,6/08/2002 0:00,15/10/2015 0:00,22,18,1,3331,28,27,62295,3739,28,6,0 766 | B0_525,46,11,ISO-8859-1,nginx,1511,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,44,11,7,6306,50,38,22528,6780,50,6,0 767 | B0_542,46,10,utf-8,Apache,66804,US,MO,20/05/1996 0:00,24/10/2016 0:00,44,2,7,3516,48,36,33488,3808,48,4,0 768 | B0_55,46,10,ISO-8859-1,nginx,1519,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,21,0,3,4103,25,30,16662,4405,25,4,0 769 | B0_555,46,12,iso-8859-1,Apache,235,None,None,None,None,12,0,3,1351,16,15,9692,1641,16,4,0 770 | B0_565,46,10,ISO-8859-1,nginx,166,None,None,7/03/2000 0:00,23/03/2017 0:00,25,0,4,2115,29,30,17150,2479,29,4,0 771 | B0_602,46,8,UTF-8,cloudflare-nginx,NA,PH,None,8/07/2000 0:00,5/03/2016 0:00,12,0,3,1716,16,17,11285,2012,16,4,0 772 | B0_64,46,10,ISO-8859-1,Microsoft-IIS/8.5,8745,None,None,None,None,28,0,3,4364,30,22,22879,4498,30,2,0 773 | B0_687,46,10,UTF-8,Apache,NA,None,None,None,None,15,5,11,1244,17,23,1616,1384,17,2,0 774 | B0_689,46,8,us-ascii,cloudflare-nginx,NA,US,Arizona,3/12/1999 0:00,6/10/2015 0:00,22,16,8,3094,26,27,7809,3414,26,4,0 775 | B0_727,46,8,iso-8859-1,Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9,333,US,MI,15/11/1998 0:00,23/12/2011 0:00,125,0,1,8528,129,145,231799,8856,129,4,0 776 | B0_736,46,7,UTF-8,GSE,6984,US,CA,31/07/2000 0:00,29/06/2016 0:00,33,1,5,3244,43,41,24696,4114,43,10,0 777 | B0_747,46,9,UTF-8,Apache/2.2.15 (CentOS),10303,AU,New South Wales,8/01/2009 10:56,9/01/2017 10:11,197,0,3,13622,200,255,486769,13794,200,2,0 778 | B0_753,46,10,UTF-8,mw2165.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,38,26,12,4376,44,47,40918,4832,44,6,0 779 | B0_822,46,10,UTF-8,nginx,NA,PA,PANAMA,11/11/2007 0:00,18/12/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 780 | B0_873,46,9,ISO-8859-1,None,784,US,California,28/11/1999 0:00,9/09/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 781 | B0_889,46,6,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 782 | M0_86,47,11,ISO-8859-1,Apache/2.2.31 (CentOS),NA,PA,PANAMA,19/07/2004 0:00,6/07/2016 0:00,26,11,7,3213,34,32,16931,3821,34,8,1 783 | B0_1037,47,9,ISO-8859-1,cloudflare-nginx,NA,US,Texas,2/09/2003 0:00,18/09/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 784 | B0_1122,47,9,UTF-8,nginx,NA,PA,PANAMA,11/11/2007 0:00,18/12/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 785 | B0_1216,47,9,ISO-8859-1,None,NA,CA,ON,31/12/1999 0:00,17/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 786 | B0_1245,47,8,utf-8,nginx/1.13.0,7790,US,Washington,28/08/1998 0:00,13/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 787 | B0_1286,47,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,5/02/1999 0:00,16/06/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 788 | B0_1294,47,8,ISO-8859-1,Apache,7362,PA,PANAMA,4/10/2003 0:00,8/12/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 789 | B0_1295,47,9,UTF-8,Server,NA,US,WA,2/10/2007 0:00,31/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 790 | B0_1305,47,10,us-ascii,Microsoft-HTTPAPI/2.0,324,US,Nebraska,24/04/2007 0:00,25/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 791 | B0_1310,47,11,UTF-8,cloudflare-nginx,NA,US,AL,15/12/2010 0:00,27/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 792 | B0_1340,47,10,iso-8859-1,Apache/2.0.52 (Red Hat),423,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 793 | B0_1410,47,9,ISO-8859-1,None,6748,US,California,28/11/1999 0:00,9/09/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 794 | B0_153,47,10,UTF-8,None,NA,US,WA,1/06/2001 0:00,17/05/2016 0:00,32,28,3,4948,40,35,19634,5516,40,8,0 795 | B0_20,47,10,UTF-8,cloudflare-nginx,NA,None,None,22/08/2007 0:00,24/07/2014 0:00,31,3,5,3590,35,39,35687,3886,35,4,0 796 | B0_2005,47,9,UTF-8,Apache,17647,None,None,26/01/2001 0:00,26/03/2017 0:00,9,7,5,750,9,10,744,750,9,0,0 797 | B0_2037,47,9,UTF-8,nginx,NA,PH,ILOCOS NORTE R3,6/06/2007 0:00,19/12/2015 0:00,8,7,4,684,8,10,624,684,8,0,0 798 | B0_2111,47,9,ISO-8859-1,LiteSpeed,1148,US,GA,19/09/2002 0:00,4/09/2016 0:00,11,3,7,810,11,12,730,810,11,0,0 799 | B0_2177,47,9,utf-8,gunicorn/19.7.1,NA,US,California,28/07/1995 0:00,26/11/2015 0:00,13,7,2,2133,13,11,17914,2133,13,0,0 800 | B0_220,47,12,UTF-8,mw2228.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,29,20,8,4167,33,33,3181,4499,33,4,0 801 | B0_2239,47,10,UTF-8,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.5.38,NA,AU,None,20/07/2006 0:00,5/03/2013 0:00,7,7,3,618,7,10,624,618,7,0,0 802 | B0_2296,47,9,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,17,7,10,1182,17,11,670,1182,17,0,0 803 | B0_231,47,11,UTF-8,nginx,NA,PA,PANAMA,11/11/2007 0:00,18/12/2015 0:00,61,46,14,6679,69,68,59369,7271,69,8,0 804 | B0_252,47,10,UTF-8,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.5.38,NA,AU,None,20/07/2006 0:00,5/03/2013 0:00,14,1,3,2133,20,18,3258,2609,20,6,0 805 | B0_268,47,10,UTF-8,nginx,NA,None,None,8/05/2001 0:00,19/04/2015 0:00,34,0,5,4084,42,37,36205,4684,42,8,0 806 | B0_280,47,11,utf-8,Apache/2.2.15 (Red Hat),NA,None,None,None,None,15,1,7,1552,21,20,2790,2000,21,6,0 807 | B0_287,47,9,UTF-8,Apache/2.4,NA,US,Pennsylvania,29/05/1996 0:00,28/04/2015 0:00,31,0,6,3312,35,38,36225,3612,35,4,0 808 | B0_298,47,8,iso-8859-1,Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4,479,CA,ON,18/10/2002 0:00,17/10/2016 0:00,31,7,8,3007,35,29,23628,3335,35,4,0 809 | B0_32,47,11,UTF-8,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.16,10804,None,None,18/10/2004 0:00,2/07/2015 0:00,4,2,4,296,6,9,778,442,6,2,0 810 | B0_381,47,9,utf-8,ATS,NA,US,CA,22/11/2003 0:00,1/05/2014 0:00,55,45,5,6240,63,64,69305,6824,63,8,0 811 | B0_39,47,9,UTF-8,Apache,14889,None,None,5/11/1997 0:00,14/04/2015 0:00,9,1,2,1180,13,15,1834,1484,13,4,0 812 | B0_446,47,10,UTF-8,Apache-Coyote/1.1,9527,GB,London,13/06/1997 0:00,5/11/2015 0:00,23,2,4,2112,29,31,13191,2530,29,6,0 813 | B0_45,47,11,UTF-8,mw2241.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,24,19,2,3538,30,33,22895,3994,30,6,0 814 | B0_498,47,8,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,55,47,6,7049,65,64,110342,7819,65,10,0 815 | B0_500,47,10,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,33,3,6,2457,35,36,68869,2617,35,2,0 816 | B0_528,47,8,iso-8859-1,Apache/1.3.33 (Unix) mod_ssl/2.8.24 OpenSSL/0.9.7e-p1 PHP/4.4.8,NA,US,NY,28/03/2000 0:00,28/03/2017 0:00,76,3,7,5283,78,100,268442,5451,78,2,0 817 | B0_581,47,8,UTF-8,nginx,NA,CA,MB,12/04/2000 0:00,4/04/2017 0:00,7,0,2,729,9,10,2045,871,9,2,0 818 | B0_650,47,9,ISO-8859-1,None,6748,US,California,28/11/1999 0:00,9/09/2013 0:00,33,2,8,3759,39,27,11243,4193,39,6,0 819 | B0_913,47,9,utf-8,Apache,44446,CA,ON,9/12/2003 0:00,22/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 820 | B0_926,47,9,ISO-8859-1,None,675,US,California,28/11/1999 0:00,9/09/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 821 | B0_949,47,9,ISO-8859-1,nginx/1.11.3,193,US,CA,28/11/2006 0:00,13/03/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 822 | B0_998,47,11,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 823 | M0_114,48,10,ISO-8859-1,lighttpd,345,FR,None,24/02/1996 0:00,27/12/2016 0:00,17,5,10,1320,19,21,1967,1474,19,2,1 824 | M0_146,48,11,UTF-8,nginx,640,None,None,None,None,23,1,4,2912,31,25,3753,3494,31,8,1 825 | M0_46,48,10,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,22,0,2,3448,28,24,9819,3912,28,6,1 826 | M0_51,48,11,ISO-8859-1,Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8y DAV/2 PHP/5.2.12 with Suhosin-Patch,2516,US,Utah,24/05/2000 0:00,25/05/2016 0:00,24,0,2,4041,30,25,12420,4505,30,6,1 827 | M0_99,48,14,UTF-8,Apache,NA,CZ,PRAHA,7/10/2006 0:00,7/03/2017 0:00,48,0,1,3450,50,51,66124,3602,50,2,1 828 | B0_1046,48,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,Arizona,21/12/2005 0:00,8/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 829 | B0_1063,48,10,utf-8,Apache,67135,US,MO,20/05/1996 0:00,24/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 830 | B0_1089,48,11,UTF-8,nginx,NA,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 831 | B0_1109,48,9,ISO-8859-1,cloudflare-nginx,NA,US,Texas,2/09/2003 0:00,18/09/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 832 | B0_1118,48,11,UTF-8,mw2230.codfw.wmnet,4699,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 833 | B0_1151,48,11,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 834 | B0_1170,48,8,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CO,1/07/1998 0:00,26/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 835 | B0_1259,48,9,UTF-8,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips,16333,US,GA,5/05/2004 0:00,20/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 836 | B0_131,48,9,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,33,27,2,6235,41,40,16697,6835,41,8,0 837 | B0_1323,48,10,UTF-8,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.5.38,NA,AU,None,20/07/2006 0:00,5/03/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 838 | B0_1392,48,11,iso-8859-1,Apache,288,None,None,11/10/2000 0:00,12/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 839 | B0_1424,48,8,us-ascii,Microsoft-HTTPAPI/2.0,324,US,Florida,2/12/2004 0:00,25/11/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 840 | B0_2020,48,8,ISO-8859-1,AkamaiGHost,299,US,CA,10/08/1998 0:00,10/07/2012 0:00,7,7,3,618,7,10,624,618,7,0,0 841 | B0_203,48,9,ISO-8859-1,Apache/2.4.7 (Ubuntu),13913,CZ,None,13/04/2005 0:00,10/11/2016 0:00,10,3,3,1224,16,15,1814,1696,16,6,0 842 | B0_2069,48,9,us-ascii,Microsoft-HTTPAPI/2.0,324,KR,None,14/08/2000 0:00,6/07/2016 0:00,7,7,3,618,7,9,562,618,7,0,0 843 | B0_2082,48,9,UTF-8,mw2240.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,5,3,2,498,5,8,508,498,5,0,0 844 | B0_223,48,9,UTF-8,Microsoft-IIS/7.5,39,US,Colorado,29/12/2005 0:00,6/02/2017 0:00,25,4,8,2313,29,29,9531,2621,29,4,0 845 | B0_2247,48,9,iso-8859-1,Apache,333,US,Arizona,25/06/2002 0:00,26/06/2016 0:00,5,3,3,498,5,8,504,498,5,0,0 846 | B0_2258,48,11,utf-8,nginx/1.8.1,NA,US,NY,18/10/1994 0:00,6/10/2016 0:00,8,7,6,684,8,11,696,684,8,0,0 847 | B0_281,48,11,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,44,31,4,6925,52,43,17604,7525,52,8,0 848 | B0_307,48,9,ISO-8859-1,None,6748,None,None,28/11/1999 0:00,9/09/2013 0:00,24,2,5,3179,30,29,11372,3613,30,6,0 849 | B0_567,48,7,UTF-8,GSE,38123,US,CA,31/07/2000 0:00,29/06/2016 0:00,47,10,6,4576,55,52,49426,5282,55,8,0 850 | B0_576,48,8,us-ascii,cloudflare-nginx,NA,US,Arizona,3/12/1999 0:00,6/10/2015 0:00,26,12,10,3878,30,33,8839,4198,30,4,0 851 | B0_67,48,11,UTF-8,Apache/2.2.31 (Amazon),1371,None,None,28/04/2003 0:00,29/04/2016 0:00,26,2,8,2873,34,37,5727,3453,34,8,0 852 | B0_694,48,10,UTF-8,Apache,58,US,CO,22/06/2014 0:00,22/06/2016 0:00,24,6,12,2634,28,26,4384,2932,28,4,0 853 | B0_71,48,9,utf-8,Apache,46579,CA,ON,9/12/2003 0:00,22/10/2016 0:00,113,0,3,7746,117,134,229040,8062,117,4,0 854 | B0_800,48,10,utf-8,nginx/1.10.2,NA,HK,Central,24/05/2015 0:00,22/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 855 | B0_836,48,8,us-ascii,Microsoft-HTTPAPI/2.0,324,IN,Maharashtra,5/08/1999 0:00,10/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 856 | B0_874,48,11,ISO-8859-1,cloudflare-nginx,NA,US,MA,21/08/1998 0:00,3/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 857 | M0_149,49,12,ISO-8859-1,PWS/8.2.0.7,528,KR,None,28/08/2003 0:00,10/05/2016 0:00,17,1,6,1661,23,19,2944,2123,23,6,1 858 | M0_164,49,12,ISO-8859-1,nginx/1.2.1,2211,UA,widestep@mail.ru,9/03/2004 0:00,4/01/2016 0:00,12,8,1,2037,16,16,6187,2355,16,4,1 859 | M0_55,49,13,utf-8,nxfps,NA,KR,None,3/01/2002 0:00,12/01/2015 0:00,18,0,3,1643,22,25,14342,1935,22,4,1 860 | M0_81,49,12,UTF-8,nginx/1.12.0,4877,US,VERMONT,22/03/2009 0:00,22/03/2017 0:00,8,0,2,811,10,11,6062,961,10,2,1 861 | M0_98,49,13,UTF-8,Apache,NA,CZ,PRAHA,7/10/2006 0:00,7/03/2017 0:00,50,0,2,3571,52,55,66449,3723,52,2,1 862 | B0_1066,49,7,us-ascii,cloudflare-nginx,NA,US,Arizona,10/06/2005 0:00,4/06/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 863 | B0_1090,49,9,ISO-8859-1,Apache,959,US,New York,3/07/2000 17:33,4/07/2016 14:14,0,0,0,0,0,0,0,0,0,0,0 864 | B0_1123,49,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,MI,2/02/1996 0:00,7/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 865 | B0_1217,49,10,UTF-8,Apache,19361,CH,ZH,19/02/1997 0:00,15/12/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 866 | B0_1243,49,11,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 867 | B0_137,49,9,iso-8859-1,Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4,475,None,None,23/08/2010 0:00,17/04/2015 0:00,14,0,1,1205,16,18,16593,1383,16,2,0 868 | B0_1416,49,9,ISO-8859-1,None,783,US,California,28/11/1999 0:00,9/09/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 869 | B0_16,49,10,ISO-8859-1,LiteSpeed,1148,US,IL,23/09/2009 0:00,8/09/2016 0:00,9,0,2,851,11,9,2135,1003,11,2,0 870 | B0_2009,49,11,UTF-8,Apache,NA,None,None,None,None,25,6,11,1662,25,12,799,1662,25,0,0 871 | B0_2029,49,9,UTF-8,nginx,NA,US,CA,7/10/2005 16:25,10/09/2016 6:58,12,3,4,864,12,6,372,864,12,0,0 872 | B0_2043,49,10,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,15,6,8,1122,15,11,702,1122,15,0,0 873 | B0_2054,49,12,iso-8859-1,Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4,506,None,None,None,None,22,19,7,1476,22,18,1344,1476,22,0,0 874 | B0_2078,49,9,UTF-8,Apache-Coyote/1.1,NA,US,ca,14/05/1999 0:00,28/06/2016 0:00,18,15,2,2736,18,13,4846,2736,18,0,0 875 | B0_2107,49,9,utf-8,Apache,5005,US,CA,20/09/1995 0:00,21/03/2017 0:00,3,3,1,366,3,5,306,366,3,0,0 876 | B0_2110,49,10,UTF-8,nginx/1.6.2,NA,CN,hunansheng,30/08/2004 0:00,8/03/2017 0:00,9,5,6,738,9,15,1064,738,9,0,0 877 | B0_2113,49,7,ISO-8859-1,Apache,2367,US,Pennsylvania,30/01/2003 0:00,31/01/2016 0:00,6,3,3,552,6,7,436,552,6,0,0 878 | B0_2262,49,9,utf-8,ATS,NA,US,CA,22/11/2003 0:00,1/05/2014 0:00,5,4,2,486,5,6,480,486,5,0,0 879 | B0_2265,49,9,UTF-8,cloudflare-nginx,NA,US,WA,22/11/2000 0:00,28/09/2016 0:00,3,3,1,366,3,4,244,366,3,0,0 880 | B0_2280,49,9,ISO-8859-1,Play,2119,US,CA,2/11/2002 0:00,2/02/2017 0:00,2,2,1,276,2,3,184,276,2,0,0 881 | B0_2317,49,9,ISO-8859-1,Apache,128,US,MA,6/11/2001 1:42,11/03/2017 15:28,5,4,3,474,5,8,490,474,5,0,0 882 | B0_333,49,11,UTF-8,mw2185.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,31,24,8,4739,37,37,18554,5195,37,6,0 883 | B0_341,49,9,ISO-8859-1,nginx,162,US,TX,11/11/1999 0:00,16/04/2016 0:00,19,6,9,1720,25,27,2880,2138,25,6,0 884 | B0_365,49,10,utf-8,Apache,66441,US,MO,20/05/1996 0:00,24/10/2016 0:00,14,1,3,1567,18,20,6818,1859,18,4,0 885 | B0_524,49,12,utf-8,ATS,640,US,CA,18/01/1995 0:00,26/08/2015 0:00,32,16,6,4464,40,39,39561,5064,40,8,0 886 | B0_609,49,9,utf-8,Apache,44393,CA,ON,9/12/2003 0:00,22/10/2016 0:00,8,0,5,516,8,2,124,516,8,0,0 887 | B0_637,49,10,utf-8,Apache/2.2.15 (Red Hat),6881,US,NY,26/07/1990 0:00,21/07/2016 0:00,26,0,7,2270,30,24,10000,2562,30,4,0 888 | B0_648,49,10,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,51,46,3,5413,57,61,64860,5841,57,6,0 889 | B0_663,49,10,ISO-8859-1,nginx,1505,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,43,11,15,5371,49,46,16215,5845,49,6,0 890 | B0_729,49,11,ISO-8859-1,Apache,1368,None,None,None,None,0,0,0,0,0,2,124,0,0,0,0 891 | B0_838,49,10,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 892 | B0_896,49,10,UTF-8,nginx,NA,US,FL,26/07/2003 0:00,22/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 893 | B0_923,49,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 894 | B0_95,49,10,iso-8859-1,Apache,236,US,UT,16/05/1995 0:00,21/10/2016 0:00,21,7,2,2681,27,26,21979,3159,27,6,0 895 | B0_974,49,9,UTF-8,Apache/2.2.15 (CentOS),101,AU,NSW,19/08/2004 0:00,5/07/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 896 | M0_105,50,13,UTF-8,Apache,NA,CZ,PRAHA,7/10/2006 0:00,7/03/2017 0:00,47,0,1,3386,51,53,66317,3696,51,4,1 897 | M0_147,50,11,UTF-8,nginx,640,None,None,None,None,20,1,4,2330,28,24,3609,2912,28,8,1 898 | M0_88,50,11,ISO-8859-1,nginx/1.12.0,1108,UA,NONE,26/04/2004 0:00,27/04/2017 0:00,7,0,2,746,9,11,2189,904,9,2,1 899 | B0_1026,50,12,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 900 | B0_1088,50,9,utf-8,Apache,43996,CA,ON,9/12/2003 0:00,22/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 901 | B0_1370,50,10,ISO-8859-1,Apache,13076,US,IL,9/03/2006 0:00,23/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 902 | B0_1423,50,10,UTF-8,Apache,6953,CA,Ontario,23/07/2011 0:00,7/12/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 903 | B0_199,50,10,utf-8,ATS,NA,US,CA,22/11/2003 0:00,1/05/2014 0:00,64,49,12,7487,74,84,75625,8219,74,10,0 904 | B0_2132,50,9,utf-8,Server,NA,US,CA,9/12/2002 0:00,2/05/2014 0:00,5,3,3,498,5,6,372,498,5,0,0 905 | B0_2180,50,9,ISO-8859-1,Microsoft-IIS/7.5,3071,US,FL,2/04/1999 0:00,6/05/2016 0:00,8,6,4,696,8,10,636,696,8,0,0 906 | B0_371,50,10,iso-8859-1,nginx,243,US,Wisconsin,21/05/2007 21:12,27/03/2014 15:06,13,8,2,2382,17,20,7775,2682,17,4,0 907 | B0_379,50,10,ISO-8859-1,Apache/2.4.10 (Unix) OpenSSL/1.0.1k,NA,None,None,None,None,94,3,8,6904,98,103,197501,7208,98,4,0 908 | B0_402,50,11,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,33,27,5,5203,41,44,13097,5803,41,8,0 909 | B0_410,50,10,utf-8,nginx,NA,US,NY,4/10/1996 0:00,17/01/2017 0:00,80,3,5,8291,88,93,135375,8889,88,8,0 910 | B0_419,50,11,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CA,1/05/1996 0:00,25/03/2017 0:00,25,1,6,2829,29,28,23089,3131,29,4,0 911 | B0_429,50,11,ISO-8859-1,Apache,2797,None,None,None,None,35,0,4,2949,39,43,43296,3263,39,4,0 912 | B0_443,50,12,ISO-8859-1,Apache/Not telling (Unix) AuthTDS/1.1,NA,US,NY,31/01/1995 5:00,4/12/2014 17:41,17,0,5,1570,21,21,6049,1842,21,4,0 913 | B0_492,50,11,UTF-8,mw2255.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,34,25,9,3787,42,42,33677,4365,42,8,0 914 | B0_521,50,9,ISO-8859-1,None,1189,None,None,22/02/2007 0:00,22/02/2016 0:00,22,4,12,1960,28,23,2807,2420,28,6,0 915 | B0_537,50,9,UTF-8,nginx,24971,US,CA,6/12/1994 0:00,3/11/2015 0:00,7,0,2,995,11,12,1507,1287,11,4,0 916 | B0_564,50,10,ISO-8859-1,None,413,None,None,None,None,10,0,4,926,14,13,1788,1266,14,4,0 917 | B0_610,50,9,utf-8,Microsoft-IIS/7.5,5316,US,FL,2/01/2003 0:00,1/01/2017 0:00,57,4,6,6820,59,61,79053,6966,59,2,0 918 | B0_682,50,11,UTF-8,Apache,435494,None,None,None,None,226,6,6,15162,228,284,383760,15314,228,2,0 919 | B0_708,50,14,iso-8859-1,None,NA,US,CA,9/01/1998 0:00,4/01/2017 0:00,20,2,5,1849,26,22,26589,2279,26,6,0 920 | B0_789,50,9,us-ascii,Microsoft-IIS/7.5,324,US,California,26/09/2003 0:00,17/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 921 | B0_797,50,11,ISO-8859-1,Microsoft-IIS/7.5,1208,US,WA,13/09/2000 0:00,29/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 922 | B0_843,50,9,ISO-8859-1,nginx/1.10.3,1149,US,UTAH,6/10/1999 0:00,13/12/2008 0:00,0,0,0,0,0,0,0,0,0,0,0 923 | B0_861,50,10,UTF-8,nginx,NA,US,CA,11/06/2003 0:00,18/10/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 924 | B0_898,50,10,UTF-8,Apache/2.2.15 (CentOS),1970,US,IL,30/12/1996 0:00,30/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 925 | B0_907,50,10,us-ascii,Microsoft-HTTPAPI/2.0,324,US,FL,14/09/1995 0:00,12/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 926 | B0_975,50,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,NJ,27/02/1998 5:00,17/12/2012 21:45,0,0,0,0,0,0,0,0,0,0,0 927 | M0_100,51,14,UTF-8,Apache,NA,CZ,PRAHA,7/10/2006 0:00,7/03/2017 0:00,46,0,1,3321,48,49,66184,3473,48,2,1 928 | M0_119,51,14,ISO-8859-1,cloudflare-nginx,NA,US,WA,11/01/1999 0:00,4/04/2017 0:00,14,4,6,888,14,6,376,888,14,0,1 929 | B0_1027,51,10,ISO-8859-1,DOSarrest,NA,KY,GRAND CAYMAN,4/01/2007 0:00,7/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 930 | B0_1160,51,10,us-ascii,Microsoft-IIS/7.5,324,None,None,26/09/2003 0:00,17/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 931 | B0_1186,51,10,UTF-8,Apache/2.2.32,NA,US,PA,4/11/2004 22:27,21/09/2016 15:14,0,0,0,0,0,0,0,0,0,0,0 932 | B0_1346,51,8,UTF-8,Apache/2.4.6 (CentOS),25866,US,CA,25/01/1995 0:00,5/12/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 933 | B0_1362,51,10,ISO-8859-1,nginx,6130,US,Utr,21/01/2007 22:31,23/12/2016 4:58,0,0,0,0,0,0,0,0,0,0,0 934 | B0_1391,51,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 935 | B0_150,51,10,iso-8859-1,Apache/2.2.11 (Unix) PHP/5.2.6,231,CN,beijingshi,7/03/2000 0:00,27/03/2017 0:00,7,1,2,769,9,10,1298,909,9,2,0 936 | B0_2046,51,9,utf-8,Scratch Web Server,10333,None,None,None,None,7,3,2,582,7,5,306,582,7,0,0 937 | B0_2147,51,10,utf-8,Apache,9890,None,None,None,None,9,6,7,762,9,10,640,762,9,0,0 938 | B0_2186,51,9,ISO-8859-1,None,6748,US,California,28/11/1999 0:00,9/09/2013 0:00,17,8,6,1278,17,10,634,1278,17,0,0 939 | B0_2212,51,12,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,28,13,12,1872,28,19,1323,1872,28,0,0 940 | B0_2227,51,8,ISO-8859-1,nginx,162,US,Washington,13/01/2005 0:00,14/01/2016 0:00,4,2,3,396,4,3,184,396,4,0,0 941 | B0_2279,51,10,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,None,None,5,3,2,498,5,4,244,498,5,0,0 942 | B0_267,51,11,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,22/02/2001 0:00,8/04/2017 0:00,22,6,8,1651,24,17,1388,1787,24,2,0 943 | B0_347,51,10,utf-8,cloudflare-nginx,NA,US,CO,28/09/1996 0:00,26/09/2016 0:00,39,3,8,3637,45,37,44294,4127,45,6,0 944 | B0_377,51,11,utf-8,nginx/1.4.6 (Ubuntu),58090,US,CA,20/11/2007 0:00,13/05/2016 0:00,2,0,1,132,2,2,124,132,2,0,0 945 | B0_435,51,10,UTF-8,nginx,NA,US,CA,12/12/2003 0:00,18/10/2016 0:00,35,22,11,4677,41,33,14310,5093,41,6,0 946 | B0_479,51,11,UTF-8,None,NA,US,WA,1/06/2001 0:00,17/05/2016 0:00,28,16,12,3227,32,31,12120,3507,32,4,0 947 | B0_780,51,9,utf-8,None,15302,US,Arizona,4/05/2001 0:00,9/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 948 | B0_787,51,11,iso-8859-1,Apache,239,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 949 | B0_814,51,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 950 | B0_837,51,8,ISO-8859-1,Apache,57,US,VA,9/09/2002 0:00,29/08/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 951 | B0_938,51,11,ISO-8859-1,Apache,557,US,Arizona,15/02/2000 0:00,10/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 952 | M0_104,52,14,UTF-8,Apache,NA,CZ,PRAHA,7/10/2006 0:00,7/03/2017 0:00,41,0,1,2992,43,44,65646,3144,43,2,1 953 | M0_161,52,12,UTF-8,marrakesh 1.12.2,13650,BR,None,None,None,16,1,5,1609,22,20,2655,2119,22,6,1 954 | M0_58,52,14,None,Apache/2.4.6 (CentOS),NA,CN,Bei Jing,1/03/2005 0:00,7/09/2016 0:00,14,1,8,1151,18,15,1211,1445,18,4,1 955 | B0_1007,52,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 956 | B0_1022,52,12,ISO-8859-1,nginx/1.10.3,NA,US,VA,21/02/1992 0:00,22/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 957 | B0_1076,52,10,utf-8,nginx/0.8.35,17302,US,CA,15/10/2005 0:00,13/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 958 | B0_1080,52,10,UTF-8,Apache/2.2.15 (Red Hat),5315,US,CA,1/06/1996 0:00,2/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 959 | B0_1115,52,10,ISO-8859-1,nginx,1516,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 960 | B0_1166,52,11,UTF-8,mw2182.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 961 | B0_1191,52,12,UTF-8,LiteSpeed,NA,PA,PANAMA,5/03/2005 0:00,14/12/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 962 | B0_1293,52,10,UTF-8,Apache,NA,US,CA,14/04/1998 0:00,14/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 963 | B0_1304,52,10,ISO-8859-1,squid/3.3.8,3529,US,CA,2/06/1994 0:00,6/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 964 | B0_1307,52,12,UTF-8,None,NA,US,CA,9/01/1998 0:00,4/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 965 | B0_181,52,11,UTF-8,Apache,8105,CH,ZH,19/02/1997 0:00,15/12/2015 0:00,13,0,3,1428,17,11,1504,1712,17,4,0 966 | B0_2014,52,10,ISO-8859-1,Apache/2.2.27 (CentOS),1235,US,NY,31/05/1995 0:00,18/11/2013 0:00,4,3,2,432,4,6,376,432,4,0,0 967 | B0_2032,52,9,ISO-8859-1,Microsoft-IIS/7.5,11,US,WA,13/09/2000 0:00,29/08/2016 0:00,6,3,3,564,6,7,442,564,6,0,0 968 | B0_2109,52,10,UTF-8,Apache-Coyote/1.1,NA,US,NJ,2/03/1995 0:00,30/06/2016 0:00,5,3,3,486,5,7,436,486,5,0,0 969 | B0_211,52,9,UTF-8,nginx/1.8.1,9662,None,None,18/01/2008 0:00,5/01/2017 0:00,22,8,7,1628,26,25,14894,1944,26,4,0 970 | B0_2198,52,9,utf-8,Apache,44313,CA,ON,9/12/2003 0:00,22/10/2016 0:00,4,4,1,420,4,5,414,420,4,0,0 971 | B0_2232,52,10,us-ascii,None,257,US,WA,22/03/1999 0:00,15/07/2016 0:00,4,3,2,420,4,7,424,420,4,0,0 972 | B0_2316,52,11,UTF-8,cloudflare-nginx,NA,None,None,None,None,3,3,1,366,3,4,244,366,3,0,0 973 | B0_261,52,11,UTF-8,Apache/2.4.7 (Ubuntu),NA,None,None,27/05/1998 0:00,25/04/2017 0:00,60,4,5,4466,62,63,95122,4602,62,2,0 974 | B0_319,52,9,UTF-8,cloudflare-nginx,NA,CA,ON,17/09/1998 0:00,10/11/2016 0:00,10,2,6,1197,14,17,1374,1503,14,4,0 975 | B0_325,52,10,utf-8,Apache,17167,None,None,7/05/1998 0:00,16/09/2016 0:00,10,1,4,1257,14,15,1919,1555,14,4,0 976 | B0_401,52,10,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,51,35,10,5314,57,62,51761,5742,57,6,0 977 | B0_420,52,8,utf-8,nginx/1.10.0,NA,None,None,5/11/2003 0:00,6/11/2016 0:00,25,4,7,1682,29,30,25579,1986,29,4,0 978 | B0_634,52,11,UTF-8,nginx/1.12.0,NA,None,None,None,None,21,0,8,2221,25,26,3809,2513,25,4,0 979 | B0_670,52,11,None,Microsoft-IIS/8.5,0,US,NJ,23/10/1994 0:00,1/11/2016 0:00,19,0,4,1538,23,8,1121,1852,23,4,0 980 | B0_696,52,11,ISO-8859-1,Nginx (OpenBSD),14863,HK,-,24/05/2010 0:00,25/07/2016 0:00,16,2,3,1364,18,23,16978,1502,18,2,0 981 | B0_741,52,10,us-ascii,None,257,US,WA,22/03/1999 0:00,15/07/2016 0:00,29,25,1,4765,37,34,17280,5381,37,8,0 982 | B0_880,52,10,ISO-8859-1,Apache,5443,CA,Quebec,14/10/2007 12:24,1/09/2016 14:20,0,0,0,0,0,0,0,0,0,0,0 983 | B0_89,52,9,utf-8,Zope/(2.13.16; python 2.6.8; linux2) ZServer/1.1,28239,None,None,None,None,51,1,10,4049,55,58,61312,4361,55,4,0 984 | B0_908,52,8,utf-8,nginx,NA,AU,QLD,25/11/2016 0:00,15/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 985 | B0_909,52,10,UTF-8,nginx,NA,CA,Manitoba,30/09/2002 0:00,24/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 986 | B0_954,52,11,utf-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 987 | B0_956,52,11,UTF-8,GSE,9801,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 988 | M0_80,53,12,ISO-8859-1,nginx/1.12.0,242,US,ALABAMA,9/02/2007 0:00,9/02/2017 0:00,8,0,1,1156,10,10,2638,1316,10,2,1 989 | B0_1012,53,11,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 990 | B0_1091,53,10,UTF-8,nginx,NA,US,CO,10/02/1999 0:00,6/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 991 | B0_1247,53,8,utf-8,None,11158,US,PA,7/08/1995 0:00,27/03/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 992 | B0_1264,53,10,UTF-8,nginx/1.11.10,NA,CA,Quebec,21/05/1997 0:00,26/07/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 993 | B0_1325,53,12,UTF-8,None,NA,US,CA,9/01/1998 0:00,4/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 994 | B0_1336,53,11,utf-8,nginx/1.10.1,NA,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 995 | B0_2048,53,10,ISO-8859-1,Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.4.26,22897,None,None,10/01/2006 0:00,11/11/2014 0:00,9,5,7,762,9,10,640,762,9,0,0 996 | B0_2119,53,11,UTF-8,Apache/2.2.31 (Amazon),8466,US,NH,31/08/2004 0:00,1/06/2016 0:00,26,8,11,1668,26,13,894,1668,26,0,0 997 | B0_2131,53,10,UTF-8,nginx/1.11.10,NA,CA,Quebec,21/05/1997 0:00,26/07/2016 0:00,7,6,2,798,7,8,492,798,7,0,0 998 | B0_2268,53,9,UTF-8,Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.10,2023,US,GA,5/12/2005 0:00,22/04/2015 0:00,12,3,3,960,12,16,1024,960,12,0,0 999 | B0_294,53,7,iso-8859-1,ATS/5.3.0,NA,CA,ON,27/05/2002 0:00,28/04/2017 0:00,12,6,7,1017,18,17,1563,1503,18,6,0 1000 | B0_472,53,12,iso-8859-1,Apache,211,None,None,5/05/2001 0:00,28/01/2015 0:00,15,2,5,1944,21,21,2698,2416,21,6,0 1001 | B0_556,53,12,ISO-8859-1,Apache,359174,CA,ON,1/12/1996 5:00,30/11/2016 10:30,15,4,3,2232,19,22,3283,2532,19,4,0 1002 | B0_827,53,9,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1003 | B0_862,53,10,us-ascii,Microsoft-HTTPAPI/2.0,324,United Kingdom,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1004 | B0_91,53,11,ISO-8859-1,cloudflare-nginx,NA,None,None,1/03/2008 0:00,17/04/2015 0:00,16,3,8,1277,20,19,2663,1559,20,4,0 1005 | B0_951,53,12,UTF-8,None,NA,US,WA,1/06/2001 0:00,17/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1006 | B0_977,53,9,UTF-8,nginx,20309,US,CA,6/12/1994 0:00,3/11/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1007 | M0_41,54,11,iso-8859-1,Apache,228,US,Arizona,16/02/2005 0:00,24/02/2016 0:00,5,0,2,582,9,9,1097,882,9,4,1 1008 | M0_87,54,11,ISO-8859-1,Apache/2,17140,US,CA,17/12/2005 0:00,18/11/2015 0:00,29,1,7,4558,31,37,26259,4724,31,2,1 1009 | B0_1002,54,11,ISO-8859-1,Microsoft-IIS/7.5,7849,US,PA,7/08/1995 0:00,27/03/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1010 | B0_1059,54,12,UTF-8,cloudflare-nginx,NA,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1011 | B0_1129,54,9,iso-8859-1,Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9,341,US,MI,15/11/1998 0:00,23/12/2011 0:00,0,0,0,0,0,0,0,0,0,0,0 1012 | B0_1149,54,12,ISO-8859-1,Apache/2.2.27 (Unix) OpenAM Web Agent/4.0.1-1 mod_ssl/2.2.27 OpenSSL/1.0.1p PHP/5.3.28,2503,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1013 | B0_1188,54,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,FL,2/10/2002 0:00,14/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1014 | B0_1200,54,12,ISO-8859-1,Apache/2.2.15 (Red Hat),NA,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1015 | B0_1301,54,8,ISO-8859-1,Microsoft-IIS/7.5,11,US,WA,13/09/2000 0:00,29/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1016 | B0_1315,54,11,utf-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1017 | B0_174,54,9,ISO-8859-1,Apache/2.2.32,3020,CA,ON,6/03/1998 0:00,30/03/2017 0:00,34,7,6,2881,38,33,39646,3219,38,4,0 1018 | B0_2007,54,12,UTF-8,nginx/1.10.3,NA,US,VA,21/02/1992 0:00,22/08/2016 0:00,5,5,2,474,5,8,535,474,5,0,0 1019 | B0_2045,54,12,UTF-8,mw2104.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,11,7,2,1166,11,7,426,1166,11,0,0 1020 | B0_2133,54,10,UTF-8,Apache-Coyote/1.1,NA,CN,Zhejiang,15/04/1999 0:00,20/06/2012 0:00,3,3,1,366,3,3,182,366,3,0,0 1021 | B0_2207,54,12,ISO-8859-1,Apache/2.2.15 (Red Hat),NA,None,None,None,None,12,9,6,900,12,10,696,900,12,0,0 1022 | B0_230,54,10,ISO-8859-1,cloudflare-nginx,18952,US,CA,29/09/2005 0:00,5/05/2016 0:00,1194,12,8,99843,1198,1284,2060012,100151,1198,4,0 1023 | B0_247,54,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,58,39,7,5998,64,48,43787,6438,64,6,0 1024 | B0_320,54,10,utf-8,Server,NA,US,CA,9/12/2002 0:00,2/05/2014 0:00,37,0,5,7178,43,41,20954,7644,43,6,0 1025 | B0_370,54,10,ISO-8859-1,Apache,5438,US,TX,17/07/2000 0:00,3/03/2017 0:00,40,9,9,4562,44,44,49870,4884,44,4,0 1026 | B0_387,54,12,ISO-8859-1,Apache/2.2.15 (Red Hat),NA,None,None,None,None,29,0,2,2903,37,37,30772,3525,37,8,0 1027 | B0_4,54,9,UTF-8,Apache,193,US,WA,27/06/2015 0:00,18/04/2016 0:00,4,1,3,280,6,7,542,422,6,2,0 1028 | B0_478,54,9,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,19/02/2005 0:00,20/02/2017 0:00,34,2,5,5325,40,44,86136,5785,40,6,0 1029 | B0_48,54,11,UTF-8,Apache,26,US,FL,7/11/1996 0:00,25/08/2015 0:00,20,11,6,3025,26,25,9200,3479,26,6,0 1030 | B0_594,54,10,UTF-8,nginx/1.4.6 (Ubuntu),NA,US,CA,14/12/1995 5:00,6/12/2016 21:52,12,7,1,2036,16,17,7035,2320,16,4,0 1031 | B0_665,54,10,UTF-8,mw2230.codfw.wmnet,20518,US,CA,13/01/2001 0:12,12/12/2015 10:16,43,38,5,5591,51,56,46553,6231,51,8,0 1032 | B0_750,54,12,utf-8,None,1682,US,FL,6/11/1998 0:00,5/09/2014 0:00,12,1,5,1404,16,17,1587,1700,16,4,0 1033 | B0_799,54,11,UTF-8,Apache/2.4.25 (cPanel) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,9208,AU,NSW,29/09/2000 0:00,18/11/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1034 | B0_858,54,12,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,18/10/2000 0:00,16/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1035 | B0_968,54,11,iso-8859-1,cloudflare-nginx,NA,US,MA,21/08/1998 0:00,3/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1036 | M0_102,55,12,UTF-8,Apache,NA,CZ,PRAHA,7/10/2006 0:00,7/03/2017 0:00,52,0,1,3721,54,57,66445,3873,54,2,1 1037 | M0_84,55,12,ISO-8859-1,Apache/2.2.31 (CentOS),NA,PA,PANAMA,19/07/2004 0:00,6/07/2016 0:00,26,12,3,3229,34,32,16895,3837,34,8,1 1038 | B0_1039,55,10,ISO-8859-1,Apache,14953,US,NY,30/12/2002 0:00,9/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1039 | B0_1047,55,9,UTF-8,Apache,2080,US,CA,11/09/1997 4:00,9/12/2015 14:43,0,0,0,0,0,0,0,0,0,0,0 1040 | B0_1126,55,12,utf-8,Apache/2.4.7 (Ubuntu),NA,US,Illinois,15/09/2003 0:00,16/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1041 | B0_1146,55,10,UTF-8,nginx,12275,US,MA,15/09/1997 0:00,15/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1042 | B0_1168,55,11,ISO-8859-1,.V01 Apache,NA,US,CA,21/05/1998 0:00,16/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1043 | B0_1187,55,10,UTF-8,Apache,NA,US,FL,4/01/1997 0:00,30/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1044 | B0_1339,55,12,utf-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1045 | B0_1354,55,9,UTF-8,cloudflare-nginx,NA,SI,Not Applicable,25/07/2003 18:21,6/12/2015 17:05,0,0,0,0,0,0,0,0,0,0,0 1046 | B0_1368,55,10,UTF-8,mw2164.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1047 | B0_1421,55,12,utf-8,Apache,66702,US,MO,20/05/1996 0:00,24/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1048 | B0_177,55,8,utf-8,nginx/1.10.0,NA,None,None,5/11/2003 0:00,6/11/2016 0:00,24,3,9,1715,26,31,22292,1867,26,2,0 1049 | B0_201,55,11,UTF-8,mw2110.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,42,36,2,6128,50,50,41385,6736,50,8,0 1050 | B0_2023,55,12,UTF-8,cloudflare-nginx,NA,BS,New Providence,25/10/2005 0:00,20/10/2016 0:00,21,3,13,1458,21,4,244,1458,21,0,0 1051 | B0_2071,55,9,UTF-8,nginx/1.10.1,NA,US,FL,29/12/1999 0:00,14/04/2017 0:00,8,3,3,696,8,5,306,696,8,0,0 1052 | B0_21,55,10,UTF-8,Apache/2.4.6 (Unix) mod_jk/1.2.37 PHP/5.5.1 OpenSSL/1.0.1g mod_fcgid/2.3.9,13898,US,DE,1/09/1995 4:00,1/03/2017 19:31,31,3,5,3590,35,40,35749,3886,35,4,0 1053 | B0_2141,55,10,utf-8,Apache,44324,CA,ON,9/12/2003 0:00,22/10/2016 0:00,4,3,2,432,4,4,244,432,4,0,0 1054 | B0_2190,55,12,UTF-8,mw2176.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,13,4,7,1074,13,5,306,1074,13,0,0 1055 | B0_2300,55,10,UTF-8,mw2187.codfw.wmnet,NA,US,CA,16/03/2003 8:22,29/03/2016 17:55,11,5,7,882,11,10,628,882,11,0,0 1056 | B0_346,55,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,36,27,7,4405,42,47,46271,4833,42,6,0 1057 | B0_415,55,10,utf-8,ATS,NA,US,CA,22/11/2003 0:00,1/05/2014 0:00,46,38,3,5666,54,67,69645,6250,54,8,0 1058 | B0_502,55,10,UTF-8,mw2239.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,27,18,4,3101,31,30,13795,3405,31,4,0 1059 | B0_664,55,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,56,52,4,7621,66,74,58567,8357,66,10,0 1060 | B0_706,55,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,42,30,9,4861,48,44,43523,5301,48,6,0 1061 | B0_716,55,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,33,29,1,5665,43,36,19433,6401,43,10,0 1062 | B0_738,55,11,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,48,39,11,5137,55,61,67877,5597,55,6,0 1063 | B0_815,55,10,UTF-8,Microsoft-IIS/8.5,20474,US,WI,2/12/1998 0:00,1/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1064 | B0_879,55,12,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1065 | B0_936,55,10,UTF-8,mw2106.codfw.wmnet,40179,US,CA,16/03/2003 8:22,29/03/2016 17:55,0,0,0,0,0,0,0,0,0,0,0 1066 | B0_959,55,11,us-ascii,Microsoft-HTTPAPI/2.0,324,AU,None,22/07/2008 0:00,22/07/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1067 | M0_93,56,11,iso-8859-1,nginx/1.10.1,NA,PK,Punjab,27/09/2013 0:00,29/09/2016 0:00,7,0,2,752,9,9,1197,916,9,2,1 1068 | B0_1,56,8,iso-8859-1,Apache,257,US,CA,5/11/1999 0:00,11/08/2016 0:00,0,0,0,0,0,2,124,0,0,0,0 1069 | B0_1110,56,12,ISO-8859-1,None,25471,None,None,b,17/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1070 | B0_1124,56,11,utf-8,Apache/2.2.15 (CentOS),7215,US,CA,13/08/2002 0:00,14/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1071 | B0_1144,56,11,None,Microsoft-IIS/7.0,0,US,New York,1/09/1998 0:00,15/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1072 | B0_1179,56,12,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1073 | B0_1214,56,9,UTF-8,Apache/2.2.15 (CentOS),965,CA,qc,8/12/1997 0:00,18/10/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1074 | B0_1227,56,10,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1075 | B0_1276,56,12,UTF-8,Apache,3042,US,CA,20/10/1998 0:00,4/12/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 1076 | B0_1317,56,10,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CO,16/12/1993 5:00,9/09/2015 20:47,0,0,0,0,0,0,0,0,0,0,0 1077 | B0_1396,56,11,UTF-8,Apache-Coyote/1.1,8741,US,GA,16/02/2001 9:00,23/09/2014 14:02,0,0,0,0,0,0,0,0,0,0,0 1078 | B0_2062,56,10,UTF-8,None,NA,US,Connecticut,13/12/1995 0:00,14/09/2015 0:00,4,3,2,432,4,5,310,432,4,0,0 1079 | B0_2215,56,10,UTF-8,nginx,14672,PA,PANAMA,25/02/1999 0:00,18/01/2016 0:00,11,3,5,870,11,5,306,870,11,0,0 1080 | B0_225,56,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,57,51,3,8171,69,59,26659,9059,69,12,0 1081 | B0_2281,56,11,iso-8859-1,Apache,229,None,None,13/10/2000 0:00,28/08/2015 0:00,5,5,3,450,5,7,479,450,5,0,0 1082 | B0_249,56,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,26,18,7,3928,32,27,10186,4368,32,6,0 1083 | B0_28,56,11,us-ascii,Microsoft-HTTPAPI/2.0,324,AU,None,22/07/2008 0:00,22/07/2016 0:00,20,2,7,1876,26,17,2205,2354,26,6,0 1084 | B0_394,56,11,iso-8859-1,Apache,189,None,None,6/08/2004 0:00,5/07/2016 0:00,25,13,7,2910,31,30,7648,3402,31,6,0 1085 | B0_421,56,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,Nevada,18/05/2003 7:22,19/05/2016 15:04,12,3,7,1080,14,14,2498,1260,14,2,0 1086 | B0_473,56,9,ISO-8859-1,Apache/1.3.42 Ben-SSL/1.60 (Unix) mod_gzip/1.3.26.1a mod_fastcgi/2.4.6 mod_throttle/3.1.2 Chili!Soft-ASP/3.6.2 FrontPage/5.0.2.2635 mod_perl/1.31 PHP/4.4.9,NA,CA,Quebec,4/02/2003 0:00,6/02/2017 0:00,15,2,5,1944,21,21,2698,2416,21,6,0 1087 | B0_514,56,12,UTF-8,nginx/1.6.2,NA,CN,hunansheng,30/08/2004 0:00,8/03/2017 0:00,10,4,4,944,14,15,3869,1252,14,4,0 1088 | B0_522,56,13,utf-8,Apache,67283,US,MO,20/05/1996 0:00,24/10/2016 0:00,37,3,5,3050,43,44,65986,3492,43,6,0 1089 | B0_56,56,12,ISO-8859-1,nginx,1523,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,35,11,3,6351,43,46,22390,6989,43,8,0 1090 | B0_615,56,10,us-ascii,Microsoft-HTTPAPI/2.0,324,US,Arizona,9/08/2002 18:13,3/04/2016 11:08,18,13,2,3354,24,18,8544,3810,24,6,0 1091 | B0_714,56,12,UTF-8,mw2228.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,8,3,3,847,16,18,1998,1435,16,8,0 1092 | B0_853,56,9,ISO-8859-1,Apache,1264,IL,il,29/12/2008 0:00,15/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1093 | B0_867,56,9,iso-8859-1,Apache,225,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1094 | B0_881,56,11,ISO-8859-1,Aeria Games & Entertainment,17072,DE,Berlin,31/07/2006 0:00,28/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1095 | B0_943,56,11,utf-8,Apache,17541,US,CA,16/11/1998 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1096 | B0_944,56,10,utf-8,nginx/1.12.0,NA,US,FL,18/04/2000 0:00,18/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1097 | B0_98,56,11,utf-8,nginx/1.6.3 + Phusion Passenger,NA,None,None,20/04/2001 0:00,22/05/2015 0:00,10,2,3,1256,14,14,1546,1576,14,4,0 1098 | B0_984,56,11,ISO-8859-1,nginx/1.12.0,NA,US,Arizona,28/09/2005 0:00,2/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1099 | B0_986,56,11,UTF-8,Apache/2.4.10 (Debian) PHP/5.6.30-0+deb8u1 mod_perl/2.0.9dev Perl/v5.20.2,3782,PA,PANAMA,31/05/2005 0:00,6/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1100 | B0_1041,57,9,iso-8859-1,Apache,355,US,FL,3/08/1998 0:00,6/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1101 | B0_1092,57,11,UTF-8,mw2173.codfw.wmnet,7340,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1102 | B0_1249,57,11,utf-8,Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.35,5796,US,Arizona,14/02/2000 0:00,14/02/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1103 | B0_1348,57,10,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1104 | B0_1414,57,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1105 | B0_2081,57,11,utf-8,Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 Communique/4.2.0,448,None,None,None,None,2,2,1,356,2,4,246,356,2,0,0 1106 | B0_2130,57,11,UTF-8,Apache-Coyote/1.1,17249,None,None,16/10/2000 0:00,25/10/2016 0:00,15,13,7,1062,15,19,1354,1062,15,0,0 1107 | B0_2150,57,11,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,5/02/1999 0:00,20/04/2015 0:00,8,5,5,696,8,10,636,696,8,0,0 1108 | B0_2167,57,10,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,5/02/1999 0:00,16/06/2014 0:00,7,3,2,630,7,5,306,630,7,0,0 1109 | B0_2173,57,12,utf-8,None,20504,US,NY,14/04/1998 0:00,15/03/2017 0:00,4,3,3,408,4,6,378,408,4,0,0 1110 | B0_2191,57,12,utf-8,Apache/2.2.31 (Amazon),6828,None,None,28/08/2007 0:00,29/04/2013 0:00,13,4,7,1074,13,5,306,1074,13,0,0 1111 | B0_250,57,10,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,63,58,6,8280,75,65,23559,9168,75,12,0 1112 | B0_299,57,10,ISO-8859-1,nginx,1510,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,37,9,11,5965,43,47,20145,6439,43,6,0 1113 | B0_375,57,10,UTF-8,nginx,NA,SE,INDAL,19/12/2006 0:00,17/12/2016 0:00,16,0,3,1345,18,19,18597,1495,18,2,0 1114 | B0_413,57,10,UTF-8,Apache,NA,None,None,16/01/2001 0:00,17/12/2016 0:00,16,0,7,1293,20,19,1754,1617,20,4,0 1115 | B0_458,57,12,ISO-8859-1,Apache/2.2.15 (CentOS) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips PHP/5.3.3,11202,US,IL,12/12/1990 0:00,8/06/2015 0:00,79,2,7,5863,83,83,127368,6173,83,4,0 1116 | B0_517,57,9,UTF-8,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/7.0.14,6588,JP,Osaka,19/07/2016 0:00,19/07/2016 0:00,19,8,10,1764,23,24,2364,2120,23,4,0 1117 | B0_535,57,10,iso-8859-1,Apache/2,345,US,CA,25/02/1999 0:00,18/01/2017 0:00,31,0,5,2335,33,37,35231,2493,33,2,0 1118 | B0_546,57,13,UTF-8,cloudflare-nginx,NA,US,NY,13/11/2003 0:00,12/01/2017 0:00,42,7,12,3944,48,40,23329,4404,48,6,0 1119 | B0_578,57,11,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,32,26,3,4195,38,45,45691,4623,38,6,0 1120 | B0_625,57,11,iso-8859-1,nginx,234,US,NY,2/12/2000 0:00,3/11/2016 0:00,21,6,13,1627,25,23,2044,1933,25,4,0 1121 | B0_636,57,10,ISO-8859-1,Apache,21046,US,NY,30/12/2002 0:00,9/04/2014 0:00,107,4,4,8986,111,148,234205,9294,111,4,0 1122 | B0_732,57,11,utf-8,Microsoft-IIS/7.0,23463,IT,RM,7/04/2006 16:53,8/04/2017 1:39,18,4,6,1965,22,21,7616,2249,22,4,0 1123 | B0_749,57,10,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,None,None,62,0,3,4725,66,65,97272,5023,66,4,0 1124 | B0_75,57,11,utf-8,Apache,NA,US,CO,8/05/2003 0:00,5/05/2015 0:00,9,0,3,871,11,12,4257,1021,11,2,0 1125 | B0_791,57,11,iso-8859-1,Apache,241,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1126 | B0_86,57,7,UTF-8,Apache/2.2.31 (Amazon),1182,None,None,29/07/2004 0:00,3/01/2016 0:00,10,3,5,949,14,15,2597,1309,14,4,0 1127 | B0_882,57,12,UTF-8,nginx,NA,US,Arizona,30/11/2006 0:00,17/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1128 | B0_932,57,13,UTF-8,mw2198.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1129 | B0_996,57,11,ISO-8859-1,Apache,10280,US,IL,9/03/2006 0:00,23/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1130 | M0_103,58,12,UTF-8,Apache,NA,CZ,PRAHA,7/10/2006 0:00,7/03/2017 0:00,50,0,1,3592,52,53,66100,3744,52,2,1 1131 | M0_83,58,13,UTF-8,nginx/1.12.0,5962,US,UTAH,6/05/2006 0:00,6/05/2016 0:00,10,0,2,1692,14,15,8467,2004,14,4,1 1132 | B0_1025,58,12,utf-8,Apache,NA,US,NY,18/01/1994 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1133 | B0_1107,58,8,UTF-8,Apache,58,US,MA,12/09/2009 21:54,23/08/2016 10:07,0,0,0,0,0,0,0,0,0,0,0 1134 | B0_1256,58,10,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,5/02/1999 0:00,16/06/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1135 | B0_1274,58,11,us-ascii,Microsoft-HTTPAPI/2.0,324,AU,None,22/07/2008 0:00,22/07/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1136 | B0_2031,58,9,ISO-8859-1,nginx/1.12.0,NA,US,Illinois,4/10/2010 0:00,21/10/2014 0:00,5,3,3,474,5,4,244,474,5,0,0 1137 | B0_2074,58,11,utf-8,nginx/1.6.3 + Phusion Passenger,NA,US,Arizona,20/04/2001 0:00,22/05/2015 0:00,4,4,1,420,4,5,414,420,4,0,0 1138 | B0_2201,58,10,UTF-8,GSE,208082,US,CA,31/07/2000 0:00,29/06/2016 0:00,5,4,2,474,5,7,442,474,5,0,0 1139 | B0_2223,58,11,us-ascii,None,NA,US,WA,22/03/1999 0:00,15/07/2016 0:00,5,4,2,486,5,9,672,486,5,0,0 1140 | B0_2254,58,11,ISO-8859-1,nginx/1.12.0,NA,CA,QC,18/04/2005 22:11,22/03/2017 18:00,4,2,2,408,4,7,438,408,4,0,0 1141 | B0_302,58,8,iso-8859-1,Apache/2,345,US,FL,1/10/2001 0:00,16/01/2017 0:00,9,0,3,1481,13,12,1327,1773,13,4,0 1142 | B0_329,58,12,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CA,18/04/2001 0:00,27/09/2016 0:00,50,42,4,6256,58,63,63202,6896,58,8,0 1143 | B0_338,58,10,ISO-8859-1,nginx,NA,CA,ON,14/07/1998 4:00,11/07/2016 9:21,5,0,3,620,7,8,626,770,7,2,0 1144 | B0_358,58,9,us-ascii,None,324,US,CO,15/08/1995 0:00,13/07/2016 0:00,14,0,1,1794,18,18,2242,2102,18,4,0 1145 | B0_368,58,9,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,8/09/2004 0:00,28/02/2017 0:00,15,10,3,2344,19,17,6649,2668,19,4,0 1146 | B0_554,58,10,UTF-8,Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.16,1688,US,Arizona,26/01/2001 12:11,7/12/2015 11:23,17,15,4,1146,17,5,416,1146,17,0,0 1147 | B0_598,58,11,UTF-8,mw2172.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,44,37,6,6317,52,53,38708,6925,52,8,0 1148 | B0_604,58,11,UTF-8,nginx,NA,None,None,17/07/2006 0:00,7/09/2016 0:00,20,9,4,3076,26,23,8668,3494,26,6,0 1149 | B0_776,58,9,ISO-8859-1,nginx/1.2.6,NA,US,Arizona,17/05/2001 0:00,15/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1150 | B0_845,58,11,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1151 | B0_857,58,11,ISO-8859-1,Server,1179,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1152 | B0_921,58,12,utf-8,nginx/1.8.0,90837,US,va,7/09/1993 0:00,5/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1153 | B0_1081,59,11,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1154 | B0_1119,59,11,utf-8,cloudflare-nginx,NA,US,Arizona,7/06/2001 0:00,27/11/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1155 | B0_1138,59,10,iso-8859-1,None,NA,None,None,13/08/2004 0:00,20/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1156 | B0_1153,59,11,iso-8859-1,Apache/2.2.15 (CentOS),NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1157 | B0_12,59,10,utf-8,Microsoft-IIS/8.5,26958,None,None,16/06/1996 0:00,28/03/2016 0:00,15,10,1,2421,21,17,7924,2861,21,6,0 1158 | B0_1206,59,12,utf-8,nginx,162,BS,New Providence,6/11/2007 0:00,1/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1159 | B0_1233,59,10,UTF-8,Apache/2.4.6 (Unix) mod_jk/1.2.37,19404,US,IL,14/06/1995 0:00,17/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1160 | B0_1269,59,11,ISO-8859-1,nginx,162,US,Virginia,23/03/1998 0:00,29/05/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1161 | B0_1331,59,10,us-ascii,None,324,US,FL,21/04/2002 0:00,23/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1162 | B0_1358,59,10,iso-8859-1,Apache/2.4.23 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,352,CN,None,7/07/2007 0:00,4/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1163 | B0_1399,59,9,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1164 | B0_1417,59,11,utf-8,None,7697,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1165 | B0_2047,59,10,us-ascii,None,324,US,FL,21/04/2002 0:00,23/03/2017 0:00,6,5,3,528,6,6,407,528,6,0,0 1166 | B0_2050,59,13,UTF-8,None,9322,US,AZ,31/12/2005 0:00,31/12/2016 0:00,8,5,6,672,8,12,768,672,8,0,0 1167 | B0_2115,59,10,UTF-8,Apache/2.2.22 (Debian),NA,FR,None,17/03/1996 5:00,1/06/2016 10:45,10,3,8,828,10,16,1036,828,10,0,0 1168 | B0_2243,59,11,UTF-8,Apache/2.4.25 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4,NA,None,None,19/02/2002 0:00,25/04/2016 0:00,10,7,5,768,10,13,890,768,10,0,0 1169 | B0_227,59,15,UTF-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,20,6,5,2638,28,25,6137,3208,28,8,0 1170 | B0_265,59,9,ISO-8859-1,nginx,12629,US,CA,28/04/2005 0:00,7/12/2015 0:00,24,0,11,1863,26,27,15088,2033,26,2,0 1171 | B0_296,59,11,us-ascii,Microsoft-HTTPAPI/2.0,324,AU,None,22/07/2008 0:00,22/07/2016 0:00,24,3,6,2752,30,24,8910,3230,30,6,0 1172 | B0_397,59,9,us-ascii,None,324,US,CO,15/08/1995 0:00,13/07/2016 0:00,14,0,1,1797,18,19,2308,2105,18,4,0 1173 | B0_426,59,13,ISO-8859-1,nginx/1.4.4,NA,US,UT,21/06/1997 0:00,21/10/2016 0:00,8,3,8,552,8,5,420,552,8,0,0 1174 | B0_486,59,13,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,16/05/1995 0:00,21/10/2016 0:00,29,12,6,3325,33,32,29835,3635,33,4,0 1175 | B0_516,59,11,ISO-8859-1,Apache,5290,US,FL,24/04/1999 0:00,23/02/2015 0:00,17,2,2,1684,21,22,14589,2012,21,4,0 1176 | B0_592,59,11,utf-8,None,12965,US,FL,24/01/2001 0:00,24/01/2017 0:00,48,9,12,3796,52,51,37621,4118,52,4,0 1177 | B0_600,59,13,us-ascii,Microsoft-IIS/7.5,324,US,Missouri,23/05/1997 0:00,15/04/2015 0:00,10,0,3,1170,16,14,1324,1584,16,6,0 1178 | B0_618,59,11,ISO-8859-1,cloudflare-nginx,NA,NL,ZH,12/09/2002 0:00,6/05/2015 0:00,9,0,2,1589,13,13,2404,1909,13,4,0 1179 | B0_620,59,10,UTF-8,Apache,NA,US,WA,20/02/2006 0:00,22/02/2017 0:00,10,1,3,1300,14,15,13818,1618,14,4,0 1180 | B0_674,59,12,utf-8,nginx,162,BS,New Providence,6/11/2007 0:00,1/10/2016 0:00,22,12,5,3142,30,24,7684,3746,30,8,0 1181 | B0_718,59,11,ISO-8859-1,Apache/2.2.22 (Ubuntu),125,US,Oregon,21/11/1997 0:00,5/03/2017 0:00,38,4,10,3936,44,46,29443,4404,44,6,0 1182 | B0_779,59,12,ISO-8859-1,nginx,1511,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1183 | B0_802,59,11,ISO-8859-1,Apache,5290,US,FL,24/04/1999 0:00,23/02/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1184 | B0_87,59,12,UTF-8,cloudflare-nginx,NA,US,FL,19/03/1999 0:00,11/03/2012 0:00,14,0,3,1438,18,16,4800,1734,18,4,0 1185 | B0_93,59,10,utf-8,Microsoft-IIS/8.5,19867,None,None,16/06/1996 0:00,28/03/2016 0:00,21,12,3,3104,29,23,8857,3696,29,8,0 1186 | B0_999,59,13,iso-8859-1,nginx/1.2.1,NA,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1187 | B0_1031,60,11,ISO-8859-1,Apache,NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1188 | B0_119,60,11,iso-8859-1,Apache,198,HK,None,1/09/2016 0:00,2/09/2016 0:00,3,1,2,238,5,7,654,394,5,2,0 1189 | B0_1211,60,11,ISO-8859-1,None,1973,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1190 | B0_1278,60,10,utf-8,cloudflare-nginx,NA,US,CA,4/11/1998 0:00,2/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1191 | B0_1297,60,11,iso-8859-1,Apache,243,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1192 | B0_1400,60,11,us-ascii,Microsoft-HTTPAPI/2.0,324,CH,None,9/08/1995 0:00,4/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1193 | B0_2035,60,10,utf-8,Cowboy,21666,US,CA,15/04/2010 0:00,11/04/2017 0:00,9,7,7,762,9,10,640,762,9,0,0 1194 | B0_2053,60,12,UTF-8,nginx,NA,US,CA,12/12/2003 0:00,18/10/2016 0:00,8,6,5,696,8,9,574,696,8,0,0 1195 | B0_2108,60,10,UTF-8,Apache/2.2.22 (Debian),8774,KR,None,4/12/2014 0:00,16/11/2016 0:00,6,6,3,540,6,9,617,540,6,0,0 1196 | B0_2168,60,13,ISO-8859-1,None,1819,US,CA,2/11/2002 0:00,2/02/2017 0:00,1,1,1,202,1,4,250,202,1,0,0 1197 | B0_2292,60,11,UTF-8,nginx/1.2.1,2544,None,None,16/07/1998 16:08,None,4,2,3,408,4,4,250,408,4,0,0 1198 | B0_2312,60,13,utf-8,Apache,NA,None,None,10/06/1999 0:00,11/04/2016 0:00,10,8,2,12231,10,11,1186,12231,10,0,0 1199 | B0_359,60,11,ISO-8859-1,cloudflare-nginx,NA,US,Illinois,28/08/2001 0:00,28/04/2015 0:00,29,22,3,4932,35,41,23578,5392,35,6,0 1200 | B0_384,60,12,iso-8859-1,nginx,NA,CA,BC,20/10/1998 0:00,7/12/2015 0:00,6,0,4,664,8,8,609,808,8,2,0 1201 | B0_447,60,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,PA,5/06/2003 0:00,26/11/2014 0:00,5,0,1,622,7,7,9159,812,7,2,0 1202 | B0_611,60,11,ISO-8859-1,Apache,NA,CA,BC,12/10/2003 0:00,7/08/2015 0:00,29,1,4,2630,35,35,35655,3102,35,6,0 1203 | B0_627,60,11,UTF-8,Apache,40582,US,ny,20/05/1996 0:00,19/04/2017 0:00,101,4,15,7002,107,79,172138,7422,107,6,0 1204 | B0_635,60,13,UTF-8,mw2113.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,38,32,3,4488,44,44,44959,4944,44,6,0 1205 | B0_662,60,11,utf-8,None,19671,US,CA,14/10/2001 0:00,18/12/2016 0:00,45,0,3,4192,53,54,62498,4834,53,8,0 1206 | B0_675,60,13,utf-8,Microsoft-IIS/7.5,NA,GB,London,29/09/1998 0:00,9/04/2017 0:00,23,12,5,3208,32,26,8206,3883,32,9,0 1207 | B0_70,60,12,UTF-8,Apache,NA,None,None,16/05/2001 0:00,17/03/2016 0:00,113,0,3,7746,117,134,229040,8062,117,4,0 1208 | B0_770,60,12,UTF-8,cloudflare-nginx,NA,US,FL,13/06/1995 0:00,5/05/2015 0:00,3,0,1,466,5,6,490,618,5,2,0 1209 | B0_8,60,11,utf-8,nginx,NA,US,California,24/09/2006 0:00,26/08/2015 0:00,14,9,2,2531,18,18,8177,2819,18,4,0 1210 | B0_953,60,9,utf-8,Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8a,824,US,OH,13/08/2003 0:00,14/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1211 | B0_972,60,13,UTF-8,Apache,NA,US,VA,12/01/1995 0:00,19/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1212 | M0_56,61,12,ISO-8859-1,Apache,526,DE,None,10/09/2003 0:00,11/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1213 | B0_1113,61,10,us-ascii,Microsoft-IIS/7.5,324,US,AZ,9/04/2008 0:00,10/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1214 | B0_1189,61,12,ISO-8859-1,Apache/2.4.7 (Ubuntu),4576,US,FL,25/10/2002 0:00,28/03/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1215 | B0_1231,61,12,UTF-8,Apache/2.2.15 (Red Hat),39198,None,None,16/10/2000 0:00,25/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1216 | B0_1290,61,11,us-ascii,cloudflare-nginx,NA,US,FL,21/05/1995 0:00,22/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1217 | B0_1366,61,10,ISO-8859-1,Apache,6473,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1218 | B0_1409,61,9,ISO-8859-1,Microsoft-IIS/7.5,11,US,WA,13/09/2000 0:00,29/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1219 | B0_157,61,11,ISO-8859-1,Apache/2.4.10 (Ubuntu),11780,US,WA,20/01/1998 0:00,6/03/2017 0:00,20,1,5,1930,28,24,8029,2610,28,8,0 1220 | B0_164,61,12,ISO-8859-1,Apache,NA,US,CA,9/08/1996 0:00,4/04/2017 0:00,22,5,10,1673,24,22,2525,1837,24,2,0 1221 | B0_2012,61,12,ISO-8859-1,nginx,1522,US,Ohio,8/01/2004 0:00,3/01/2017 0:00,4,3,2,432,4,6,376,432,4,0,0 1222 | B0_2059,61,12,ISO-8859-1,Apache,NA,None,None,27/01/1999 0:00,14/10/2012 0:00,5,3,3,498,5,7,438,498,5,0,0 1223 | B0_2086,61,9,ISO-8859-1,nginx/1.12.0,NA,None,None,15/08/2013 0:00,7/08/2015 0:00,12,7,5,960,12,10,640,960,12,0,0 1224 | B0_2091,61,10,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,5,5,3,498,5,8,508,498,5,0,0 1225 | B0_2200,61,11,us-ascii,None,257,US,WA,22/03/1999 0:00,15/07/2016 0:00,4,3,2,432,4,4,244,432,4,0,0 1226 | B0_2210,61,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,20,8,7,1344,20,10,739,1344,20,0,0 1227 | B0_2287,61,11,us-ascii,None,257,US,WA,22/03/1999 0:00,15/07/2016 0:00,10,5,7,792,10,15,971,792,10,0,0 1228 | B0_2322,61,11,ISO-8859-1,Apache,NA,US,DE,10/08/1999 0:00,3/03/2017 0:00,7,3,3,582,7,5,306,582,7,0,0 1229 | B0_240,61,11,utf-8,Apache,8864,None,None,27/05/1997 0:00,28/04/2017 0:00,26,18,4,3798,34,36,18719,4444,34,8,0 1230 | B0_272,61,13,ISO-8859-1,Apache,267,US,NY,13/03/2000 0:00,10/02/2016 0:00,7,1,3,743,11,13,1520,1033,11,4,0 1231 | B0_342,61,13,UTF-8,cloudflare-nginx,NA,US,WA,3/04/2011 0:00,11/03/2017 0:00,31,5,8,4514,39,40,26105,5168,39,8,0 1232 | B0_350,61,11,utf-8,nginx,NA,US,California,24/09/2006 0:00,26/08/2015 0:00,25,20,3,3252,29,35,36967,3540,29,4,0 1233 | B0_924,61,14,utf-8,Microsoft-IIS/7.5,25090,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1234 | B0_973,61,10,ISO-8859-1,nginx/1.12.0,4347,US,CO,16/12/2004 0:00,9/09/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 1235 | B0_106,62,13,ISO-8859-1,Apache,6567,US,FL,24/04/1999 0:00,23/02/2015 0:00,8,0,2,1089,14,13,1977,1601,14,6,0 1236 | B0_1106,62,13,UTF-8,mw2224.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1237 | B0_1133,62,12,UTF-8,nginx,NA,None,None,17/07/2006 0:00,7/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1238 | B0_1171,62,13,ISO-8859-1,Apache,6567,US,FL,24/04/1999 0:00,23/02/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1239 | B0_1212,62,12,ISO-8859-1,Apache,20986,US,NY,30/12/2002 0:00,9/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1240 | B0_1255,62,12,UTF-8,mw2171.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1241 | B0_1327,62,13,UTF-8,Apache,12440,CA,Ontario,4/06/2010 0:00,7/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1242 | B0_1330,62,10,iso-8859-1,Apache/2.4.25 (Amazon) OpenSSL/1.0.1k-fips,245,US,Missouri,11/10/2005 0:00,19/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1243 | B0_1379,62,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,PA,25/10/2003 0:00,26/11/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1244 | B0_276,62,11,iso-8859-1,Apache/2.2.15 (CentOS),NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,11,5,4,1040,15,19,2206,1374,15,4,0 1245 | B0_383,62,11,utf-8,AmazonS3,382,None,None,13/07/2001 0:00,26/04/2015 0:00,21,5,7,1810,25,21,2519,2102,25,4,0 1246 | B0_743,62,11,UTF-8,Apache/2.2.3 (CentOS),2192,IN,MAHARASHTR,22/12/2003 0:00,4/03/2017 0:00,32,8,11,2772,38,37,32655,3258,38,6,0 1247 | B0_788,62,11,us-ascii,Microsoft-IIS/7.5,324,US,California,26/09/2003 0:00,17/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1248 | B0_917,62,12,UTF-8,GSE,9285,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1249 | B0_995,62,12,ISO-8859-1,Apache,NA,AU,Queensland,22/03/2006 0:00,22/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1250 | B0_100,63,14,ISO-8859-1,cloudflare-nginx,NA,None,None,26/01/2007 0:00,21/01/2016 0:00,18,0,2,1676,22,22,21002,1968,22,4,0 1251 | B0_1000,63,12,utf-8,Apache/2.2.15 (CentOS),7221,US,CA,13/08/2002 0:00,14/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1252 | B0_1182,63,11,UTF-8,mw2257.codfw.wmnet,14506,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1253 | B0_1202,63,13,UTF-8,mw2226.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1254 | B0_1291,63,12,UTF-8,Apache,NA,US,Arizona,19/10/2006 0:00,20/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1255 | B0_204,63,11,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,None,None,67,32,17,6011,73,42,28050,6453,73,6,0 1256 | B0_2041,63,11,ISO-8859-1,cloudflare-nginx,NA,None,None,21/06/2004 6:33,17/03/2017 14:30,4,4,1,420,4,6,476,420,4,0,0 1257 | B0_2154,63,10,us-ascii,Microsoft-HTTPAPI/2.0,324,US,WA,3/12/1996 0:00,23/02/2017 0:00,3,3,1,366,3,4,244,366,3,0,0 1258 | B0_2276,63,9,iso-8859-1,Apache/2,345,None,None,9/02/2005 0:00,11/12/2015 0:00,4,2,2,408,4,7,448,408,4,0,0 1259 | B0_3,63,12,UTF-8,Apache,NA,None,None,None,None,48,0,1,3840,52,51,52729,4156,52,4,0 1260 | B0_380,63,12,us-ascii,Microsoft-HTTPAPI/2.0,1853,None,None,27/03/1998 0:00,15/10/2016 0:00,104,0,2,7535,106,124,204971,7683,106,2,0 1261 | B0_417,63,14,ISO-8859-1,Apache,NA,CA,ONTARIO,2/05/2005 0:00,3/04/2017 0:00,26,7,6,2506,30,25,2966,2814,30,4,0 1262 | B0_497,63,11,ISO-8859-1,Apache,3475,US,OH,20/03/2002 0:00,18/02/2017 0:00,31,5,6,2293,33,24,17664,2459,33,2,0 1263 | B0_52,63,11,utf-8,DMS/1.0.42,42913,FR,None,15/03/2005 0:00,28/06/2016 0:00,44,5,9,3414,48,46,47213,3722,48,4,0 1264 | B0_547,63,13,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,16/05/1995 0:00,21/10/2016 0:00,32,20,13,3967,38,44,23969,4429,38,6,0 1265 | B0_558,63,12,UTF-8,nginx,NA,US,Illinois,5/12/1996 5:00,31/05/2013 23:28,14,3,4,2108,18,22,3406,2388,18,4,0 1266 | B0_679,63,11,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,31,13,8,5105,43,28,13437,5105,43,0,0 1267 | B0_7,63,10,UTF-8,Apache,18235,US,WA,10/10/2006 0:00,7/03/2017 0:00,4,1,2,583,6,8,737,735,6,2,0 1268 | B0_722,63,10,us-ascii,Microsoft-HTTPAPI/2.0,324,US,PA,5/06/2003 0:00,26/11/2014 0:00,35,19,11,3472,41,33,24847,3944,41,6,0 1269 | B0_754,63,10,UTF-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,29,10,7,4825,40,36,37575,5567,40,10,0 1270 | B0_757,63,14,iso-8859-1,Apache/2.0.52 (Red Hat),320,None,None,None,None,188,25,9,14064,194,217,298694,14522,194,6,0 1271 | B0_771,63,11,ISO-8859-1,Apache,5858,None,None,None,None,19,10,1,3181,25,25,16286,3605,25,6,0 1272 | B0_1105,64,11,UTF-8,nginx/1.6.3,NA,US,WA,1/08/2007 0:00,4/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1273 | B0_1147,64,13,ISO-8859-1,Apache,NA,US,CA,22/04/1997 0:00,22/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1274 | B0_1267,64,11,UTF-8,nginx/1.8.1,9418,UK,None,3/06/1993 0:00,2/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1275 | B0_1320,64,13,ISO-8859-1,Apache,19111,US,NY,30/12/2002 0:00,9/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1276 | B0_1364,64,13,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1277 | B0_1376,64,10,UTF-8,Apache-Coyote/1.1,NA,US,ca,14/05/1999 0:00,28/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1278 | B0_191,64,10,UTF-8,Apache,NA,IN,Haryana,22/11/1996 0:00,6/04/2016 0:00,15,2,5,1238,17,9,760,1430,17,2,0 1279 | B0_2049,64,11,UTF-8,Apache-Coyote/1.1,NA,US,nj,24/06/2003 0:00,22/08/2016 0:00,2,2,1,276,2,4,246,276,2,0,0 1280 | B0_2114,64,12,UTF-8,None,NA,US,CA,9/01/1998 0:00,4/01/2017 0:00,5,4,2,498,5,9,570,498,5,0,0 1281 | B0_2195,64,11,utf-8,nginx/1.12.0,NA,None,None,18/04/2000 0:00,18/04/2016 0:00,7,7,3,618,7,9,562,618,7,0,0 1282 | B0_318,64,13,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,10,2,6,1197,14,17,1374,1503,14,4,0 1283 | B0_323,64,11,ISO-8859-1,Apache,9498,GB,MIDDLESEX,27/04/2007 0:00,20/04/2017 0:00,10,1,3,1256,14,16,1909,1580,14,4,0 1284 | B0_405,64,11,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,39,18,14,4631,49,42,12921,5353,49,10,0 1285 | B0_657,64,10,us-ascii,Microsoft-HTTPAPI/2.0,324,US,WA,3/12/1996 0:00,23/02/2017 0:00,26,6,5,3201,30,29,20250,3517,30,4,0 1286 | B0_78,64,13,us-ascii,Microsoft-IIS/7.5,324,NO,Rogaland,7/04/2006 10:47,19/04/2017 12:59,16,1,5,1910,24,24,3124,2552,24,8,0 1287 | B0_844,64,13,UTF-8,Application-Server,32344,US,TX,30/03/1994 0:00,27/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1288 | B0_860,64,14,UTF-8,cloudflare-nginx,NA,US,FL,12/02/1999 0:00,14/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1289 | B0_983,64,11,ISO-8859-1,None,34,US,FL,16/09/1996 0:00,15/09/2011 0:00,0,0,0,0,0,0,0,0,0,0,0 1290 | B0_1003,65,11,ISO-8859-1,Microsoft-IIS/7.0,3830,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1291 | B0_1356,65,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1292 | B0_1367,65,11,ISO-8859-1,Apache,36377,US,NY,8/05/1996 0:00,27/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1293 | B0_186,65,12,utf-8,nginx + Phusion Passenger,NA,CA,ON,27/05/2010 0:00,27/02/2017 0:00,35,9,12,2820,43,26,3034,3428,43,8,0 1294 | B0_2129,65,14,utf-8,nginx,NA,US,California,24/09/2006 0:00,26/08/2015 0:00,6,3,4,564,6,6,376,564,6,0,0 1295 | B0_2189,65,14,UTF-8,nginx,NA,US,IL,12/12/1990 0:00,8/06/2015 0:00,32,11,12,2232,32,14,954,2232,32,0,0 1296 | B0_224,65,10,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,43,35,3,5029,49,54,44203,5469,49,6,0 1297 | B0_344,65,12,utf-8,cloudflare-nginx,NA,US,CO,28/09/1996 0:00,26/09/2016 0:00,9,0,3,1194,13,12,1736,1498,13,4,0 1298 | B0_449,65,11,ISO-8859-1,Apache/2.2.15 (Red Hat),12339,None,None,11/10/2000 0:00,12/12/2016 0:00,18,8,7,1634,22,23,14294,1922,22,4,0 1299 | B0_481,65,14,utf-8,Apache,NA,US,WA,24/07/2006 17:52,21/06/2016 17:27,326,317,3,26631,330,442,947971,26931,330,4,0 1300 | B0_538,65,13,iso-8859-1,Apache/2.2.15 (Red Hat),330,None,None,None,None,30,2,9,2510,34,34,34105,2810,34,4,0 1301 | B0_76,65,12,ISO-8859-1,Apache,NA,US,DE,5/03/1998 0:00,29/02/2016 0:00,29,7,6,3999,37,37,17322,4619,37,8,0 1302 | B0_825,65,11,iso-8859-1,Apache,245,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1303 | B0_929,65,11,UTF-8,nginx/1.10.3,40035,US,NY,28/01/2006 0:00,30/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1304 | M0_85,66,14,UTF-8,Apache,58,US,MA,9/10/2014 0:00,10/10/2016 0:00,15,1,7,1863,19,18,7303,2175,19,4,1 1305 | B0_1018,66,13,UTF-8,Apache/2.2.3 (CentOS),14750,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1306 | B0_1040,66,10,UTF-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1307 | B0_1406,66,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1308 | B0_2134,66,11,UTF-8,NA,9405,US,District of Columbia,1/02/2003 16:44,2/02/2017 17:11,15,2,4,1026,15,4,246,1026,15,0,0 1309 | B0_2187,66,10,utf-8,cloudflare-nginx,NA,None,None,24/10/2000 0:00,6/01/2016 0:00,6,2,4,540,6,7,438,540,6,0,0 1310 | B0_31,66,12,iso-8859-1,Apache/2.4.25 (Amazon) OpenSSL/1.0.1k-fips,251,None,None,29/08/2001 0:00,26/04/2015 0:00,11,1,7,1012,15,15,1806,1316,15,4,0 1311 | B0_846,66,15,UTF-8,cloudflare-nginx,NA,CA,ON,26/07/2005 0:00,6/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1312 | B0_933,66,11,iso-8859-1,Apache,241,US,DC,8/02/1996 0:00,21/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1313 | B0_969,66,15,ISO-8859-1,Apache,36571,None,None,2/10/2001 13:00,15/09/2014 7:40,0,0,0,0,0,0,0,0,0,0,0 1314 | M0_177,67,14,utf-8,nginx/1.4.6 (Ubuntu),NA,US,AZ,12/10/1997 4:00,5/04/2017 5:17,12,1,5,1366,18,17,2000,1850,18,6,1 1315 | B0_1023,67,14,utf-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1316 | B0_1197,67,12,UTF-8,Apache/2.4.6 (CentOS) mod_fcgid/2.3.9 PHP/5.6.30,NA,None,None,23/02/2010 0:00,5/01/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1317 | B0_1248,67,9,ISO-8859-1,Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4,4440,US,Arizona,16/09/2004 0:00,28/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1318 | B0_1309,67,10,UTF-8,LiteSpeed,NA,US,FL,27/07/2003 0:00,21/05/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1319 | B0_198,67,9,us-ascii,Microsoft-HTTPAPI/2.0,324,US,PA,5/06/2003 0:00,26/11/2014 0:00,27,9,5,3471,33,32,23243,3967,33,6,0 1320 | B0_2057,67,9,iso-8859-1,Apache,355,None,None,15/07/1999 0:00,15/05/2016 0:00,7,5,4,606,7,7,473,606,7,0,0 1321 | B0_2120,67,10,UTF-8,nginx/1.12.0,3640,US,Kansas,7/03/2000 0:00,31/01/2017 0:00,12,3,7,960,12,11,706,960,12,0,0 1322 | B0_2298,67,13,iso-8859-1,Apache,317,US,California,28/07/2007 0:00,21/09/2015 0:00,8,6,6,696,8,9,574,696,8,0,0 1323 | B0_339,67,12,ISO-8859-1,Apache,197,US,FL,10/02/2000 0:00,28/02/2017 0:00,9,1,3,1283,13,14,1697,1631,13,4,0 1324 | B0_440,67,12,ISO-8859-1,Apache,15742,US,NY,30/12/2002 0:00,9/04/2014 0:00,16,6,6,2135,20,22,3485,2443,20,4,0 1325 | B0_513,67,14,UTF-8,mw2177.codfw.wmnet,4710,US,CA,13/01/2001 0:12,12/12/2015 10:16,59,43,15,7723,67,60,37516,8331,67,8,0 1326 | B0_643,67,11,utf-8,Apache,26117,US,CO,19/07/2004 14:56,1/02/2017 5:28,16,9,5,2381,20,24,5596,2675,20,4,0 1327 | B0_655,67,13,UTF-8,Jetty(9.0.z-SNAPSHOT),NA,US,NY,12/03/1999 0:00,16/11/2016 0:00,26,9,6,2154,28,34,29677,2310,28,2,0 1328 | B0_88,67,13,utf-8,Apache-Coyote/1.1,NA,US,OH,2/05/1996 0:00,4/04/2017 0:00,15,0,5,1766,21,18,2293,2196,21,6,0 1329 | B0_1235,68,13,UTF-8,nginx/1.8.1,13340,CA,Ontario,18/01/2008 0:00,5/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1330 | B0_1254,68,13,ISO-8859-1,Apache,NA,US,NY,18/01/1994 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1331 | B0_1386,68,12,ISO-8859-1,Oracle-iPlanet-Web-Server/7.0,3257,None,None,13/10/2000 0:00,27/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1332 | B0_148,68,11,utf-8,lighttpd/1.4.28,6795,SE,None,24/09/2009 0:00,1/03/2017 0:00,20,7,9,1620,22,23,9227,1804,22,2,0 1333 | B0_2286,68,12,utf-8,cloudflare-nginx,NA,US,MA,7/03/2001 0:00,18/08/2015 0:00,11,3,7,858,11,11,678,858,11,0,0 1334 | B0_2288,68,12,utf-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,5,4,2,474,5,7,442,474,5,0,0 1335 | B0_27,68,14,UTF-8,Apache,12606,US,NY,2/01/2001 0:00,31/05/2016 0:00,23,9,8,2317,27,28,3635,2633,27,4,0 1336 | B0_327,68,13,utf-8,nginx,NA,US,Arizona,30/11/2006 0:00,17/04/2015 0:00,20,1,4,1900,24,25,15998,2204,24,4,0 1337 | B0_651,68,15,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,47,37,6,5242,53,55,49446,5670,53,6,0 1338 | B0_684,68,12,UTF-8,mw2197.codfw.wmnet,12503,US,CA,13/01/2001 0:12,12/12/2015 10:16,40,34,3,6020,48,45,37704,6628,48,8,0 1339 | B0_734,68,14,UTF-8,nginx,NA,US,Nevada,13/11/2002 0:00,12/08/2015 0:00,52,44,3,4703,56,57,69613,5033,56,4,0 1340 | B0_79,68,11,UTF-8,nginx,NA,US,Arizona,26/01/2006 21:09,11/04/2017 23:16,48,0,3,4896,52,58,73318,5200,52,4,0 1341 | B0_866,68,11,iso-8859-1,nginx/1.12.0,NA,GB,HANTS,21/12/2006 0:00,4/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1342 | B0_957,68,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1343 | M0_178,69,13,UTF-8,Apache,194,US,PA,16/11/2016 0:00,16/11/2016 0:00,10,0,4,903,14,12,1489,1205,14,4,1 1344 | B0_1077,69,14,UTF-8,GSE,3933,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1345 | B0_1098,69,13,UTF-8,nginx/1.12.0,13920,CA,ONTARIO,13/05/2011 0:00,13/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1346 | B0_115,69,13,iso-8859-1,Apache/2.2.31 (FreeBSD) PHP/5.4.15 mod_ssl/2.2.31 OpenSSL/1.0.2d DAV/2,248,None,None,18/10/2000 0:00,30/10/2016 0:00,19,6,10,1483,23,21,2073,1775,23,4,0 1347 | B0_1194,69,12,ISO-8859-1,nginx,1500,US,Ohio,26/05/1998 0:00,4/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1348 | B0_1271,69,11,UTF-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1349 | B0_1273,69,11,UTF-8,nginx/1.8.1,12564,UK,None,3/06/1993 0:00,2/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1350 | B0_133,69,13,ISO-8859-1,nginx/1.4.6 (Ubuntu),NA,PA,PANAMA,2/04/2008 0:00,13/06/2016 0:00,8,2,2,805,10,10,1196,953,10,2,0 1351 | B0_1395,69,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1352 | B0_2006,69,12,ISO-8859-1,Apache,NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,4,3,2,432,4,4,244,432,4,0,0 1353 | B0_2246,69,11,UTF-8,Apache-Coyote/1.1,NA,US,California,8/04/2000 0:00,31/01/2013 0:00,3,3,1,366,3,4,244,366,3,0,0 1354 | B0_372,69,12,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,48,36,10,5347,54,50,43924,5787,54,6,0 1355 | B0_459,69,12,iso-8859-1,Apache,360,Cyprus,None,5/11/2007 0:00,22/02/2017 0:00,23,1,10,1783,27,26,18427,2095,27,4,0 1356 | B0_47,69,13,utf-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,14,8,3,2186,18,20,6913,2486,18,4,0 1357 | B0_530,69,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,29,21,7,3997,35,30,16884,4425,35,6,0 1358 | B0_545,69,11,utf-8,nginx,NA,US,Illinois,19/04/2006 0:00,29/07/2013 0:00,19,0,4,1878,25,23,18769,2358,25,6,0 1359 | B0_58,69,11,utf-8,Apache,NA,None,None,1/06/2006 0:00,6/03/2017 0:00,23,15,10,2708,27,30,6195,3036,27,4,0 1360 | B0_745,69,14,UTF-8,Jetty(9.0.z-SNAPSHOT),NA,US,NY,12/03/1999 0:00,16/11/2016 0:00,31,2,8,2131,35,33,30035,2437,35,4,0 1361 | B0_955,69,14,UTF-8,GSE,33493,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1362 | M1_1,70,12,UTF-8,Apache,NA,None,None,0,None,15,0,3,1150,17,17,15499,1304,17,2,1 1363 | B0_1016,70,15,utf-8,Apache,61974,US,MO,20/05/1996 0:00,24/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1364 | B0_1045,70,13,ISO-8859-1,Microsoft-IIS/8.5,65423,CA,ON,10/03/1998 0:00,24/02/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1365 | B0_1057,70,15,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,None,None,0,0,0,0,0,0,0,0,0,0,0 1366 | B0_1155,70,14,iso-8859-1,Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4,518,AU,Queensland,23/01/2004 0:00,8/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1367 | B0_1169,70,13,UTF-8,cloudflare-nginx,NA,US,California,3/03/1999 0:00,14/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1368 | B0_1246,70,14,ISO-8859-1,Apache/2.2.15 (CentOS) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips PHP/5.3.3,8742,US,IL,12/12/1990 0:00,8/06/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1369 | B0_130,70,12,ISO-8859-1,Apache/2.2.24 (Unix) DAV/2 PHP/5.3.26 mod_ssl/2.2.24 OpenSSL/0.9.8y,NA,None,None,3/06/1998 0:00,2/06/2016 0:00,9,0,4,916,13,15,2074,1216,13,4,0 1370 | B0_1407,70,12,UTF-8,mw2178.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1371 | B0_151,70,15,UTF-8,294,11397,None,None,11/01/2005 0:00,23/01/2014 0:00,44,34,6,6221,54,45,36834,6963,54,10,0 1372 | B0_2028,70,15,UTF-8,nginx,NA,US,CA,3/03/2000 0:00,12/01/2017 0:00,6,4,4,552,6,9,562,552,6,0,0 1373 | B0_2161,70,13,ISO-8859-1,Microsoft-IIS/6.0,118672,CA,Quebec,2/06/2004 0:00,21/03/2015 0:00,10,6,7,792,10,10,636,792,10,0,0 1374 | B0_2169,70,13,ISO-8859-1,Apache,8187,CH,Zug,21/11/1997 0:00,19/10/2016 0:00,5,5,3,498,5,8,504,498,5,0,0 1375 | B0_2283,70,13,UTF-8,nginx,NA,PA,PANAMA,11/11/2007 0:00,18/12/2015 0:00,16,13,2,1688,16,12,742,1688,16,0,0 1376 | B0_2308,70,10,ISO-8859-1,Microsoft-IIS/7.5,356,US,New York,11/06/2002 0:00,5/06/2014 0:00,49,7,3,3802,49,50,57628,3802,49,0,0 1377 | B0_260,70,13,ISO-8859-1,Apache,NA,None,None,None,None,33,11,8,3523,39,33,30933,4041,39,6,0 1378 | B0_264,70,13,us-ascii,Microsoft-HTTPAPI/2.0,324,US,VT,15/11/1995 0:00,15/09/2015 0:00,8,0,3,1100,12,12,1570,1380,12,4,0 1379 | B0_367,70,12,utf-8,Microsoft-IIS/7.5,41417,US,MO,None,None,7,4,3,752,9,12,892,922,9,2,0 1380 | B0_654,70,14,utf-8,Microsoft-IIS/7.5,13481,US,VA,15/12/1994 0:00,10/12/2016 0:00,48,11,11,3684,54,53,47558,4164,54,6,0 1381 | B0_681,70,12,ISO-8859-1,nginx/1.2.1,NA,US,NV,23/07/1999 0:00,4/03/2017 0:00,19,12,7,2506,23,27,7448,2810,23,4,0 1382 | B0_893,70,14,UTF-8,nginx,23103,US,California,17/08/1995 0:00,16/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1383 | B0_899,70,13,ISO-8859-1,Microsoft-IIS/7.5,11,US,WA,13/09/2000 0:00,29/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1384 | B0_941,70,13,UTF-8,nginx,NA,US,CA,7/09/1995 0:00,4/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1385 | B0_1067,71,6,us-ascii,Microsoft-HTTPAPI/2.0,324,US,Oregon,29/01/2003 23:45,7/08/2013 22:19,0,0,0,0,0,0,0,0,0,0,0 1386 | B0_1173,71,16,ISO-8859-1,cloudflare-nginx,NA,US,Washington,3/08/1999 0:00,14/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1387 | B0_1345,71,14,UTF-8,GSE,8992,CA,ON,27/01/2010 0:00,7/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1388 | B0_1371,71,13,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1389 | B0_168,71,13,UTF-8,GSE,11988,US,CA,31/07/2000 0:00,29/06/2016 0:00,73,3,5,7802,79,82,105565,8302,79,6,0 1390 | B0_175,71,12,ISO-8859-1,None,34,CA,ON,28/12/1998 0:00,17/12/2016 0:00,49,0,7,3878,53,51,55460,4174,53,4,0 1391 | B0_207,71,12,UTF-8,Apache,13522,US,CA,18/01/1996 5:00,20/01/2017 1:26,30,20,10,3317,36,35,8700,3747,36,6,0 1392 | B0_66,71,11,utf-8,nginx/1.7.4,NA,PA,PANAMA,28/11/1999 0:00,4/04/2017 0:00,28,4,5,2794,32,32,30923,3110,32,4,0 1393 | B0_669,71,12,utf-8,DMS/1.0.42,318,FR,None,15/03/2005 0:00,28/06/2016 0:00,25,3,5,3428,29,23,28007,3736,29,4,0 1394 | B0_678,71,14,utf-8,nginx,337,None,None,None,None,35,14,7,4515,43,28,12970,5105,43,8,0 1395 | B0_692,71,11,utf-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,26,21,4,4488,35,35,14140,5084,35,8,0 1396 | B0_707,71,14,UTF-8,Server,NA,None,None,b,23/10/2013 0:00,19,14,4,2877,25,23,6649,3317,25,6,0 1397 | B0_72,71,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,65,48,7,6391,71,77,83389,6819,71,6,0 1398 | B0_728,71,11,UTF-8,Apache-Coyote/1.1,13596,IN,TN,None,None,7,2,4,1131,12,11,1747,1473,12,4,0 1399 | B0_828,71,11,us-ascii,Microsoft-IIS/7.5,324,us,CA,17/11/2006 0:00,31/03/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1400 | B0_875,71,15,us-ascii,Microsoft-HTTPAPI/2.0,324,TR,None,21/05/2006 0:00,17/05/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 1401 | B0_1145,72,14,us-ascii,cloudflare-nginx,324,CA,ON,24/11/2001 0:00,8/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1402 | B0_1164,72,14,utf-8,nginx,31624,[u'GB'; u'UK'],UK,2002-03-20T23:59:59.0Z,2017-03-07T22:02:38.0Z,0,0,0,0,0,0,0,0,0,0,0 1403 | B0_1172,72,16,utf-8,Apache/2.2.22 (Debian) mod_python/3.3.1 Python/2.7.3 mod_ssl/2.2.22 OpenSSL/1.0.1t,NA,US,NY,23/03/1995 0:00,3/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1404 | B0_1275,72,12,UTF-8,None,NA,KR,None,6/09/1997 0:00,11/01/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1405 | B0_1282,72,12,us-ascii,Microsoft-HTTPAPI/2.0,1853,US,NY,31/10/1997 0:00,30/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1406 | B0_1313,72,12,ISO-8859-1,Apache,NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1407 | B0_141,72,15,UTF-8,Apache/2.4.16 (Ubuntu),NA,US,CA,22/09/2002 0:00,22/09/2016 0:00,47,13,6,6078,53,52,40968,6520,53,6,0 1408 | B0_2040,72,13,UTF-8,Apache/2.2.27 (CentOS),NA,None,None,None,None,14,14,7,972,14,16,1144,972,14,0,0 1409 | B0_2084,72,14,utf-8,Microsoft-IIS/7.5,14092,US,VA,15/12/1994 0:00,10/12/2016 0:00,12,5,4,960,12,8,498,960,12,0,0 1410 | B0_24,72,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,27,21,8,3862,33,33,11108,4290,33,6,0 1411 | B0_244,72,9,ISO-8859-1,Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.4.26,2819,BE,ANTWERP,13/10/2000 0:00,1/11/2012 0:00,39,2,13,3042,45,26,5914,3520,45,6,0 1412 | B0_335,72,15,ISO-8859-1,None,33528,None,None,None,None,18,4,4,2083,22,28,17862,2371,22,4,0 1413 | B0_343,72,12,iso-8859-1,Apache,363,Cyprus,None,4/07/2007 0:00,22/02/2017 0:00,28,2,5,2490,32,29,18969,2802,32,4,0 1414 | B0_489,72,13,utf-8,Apache,1832,None,None,1/05/2009 0:00,2/05/2016 0:00,9,0,3,1165,15,16,1673,1673,15,6,0 1415 | B0_623,72,12,us-ascii,www.lexisnexis.com 9999,324,CH,CH,8/04/2009 0:00,12/02/2016 0:00,80,0,2,6525,84,102,126205,6843,84,4,0 1416 | B0_852,72,14,UTF-8,nginx,NA,PA,PANAMA,11/11/2007 0:00,18/12/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1417 | B0_888,72,11,iso-8859-1,Apache-Coyote/1.1,NA,US,Tennessee,10/05/2007 19:20,18/04/2017 17:38,0,0,0,0,0,0,0,0,0,0,0 1418 | B0_930,72,11,ISO-8859-1,nginx,1145,US,NJ,8/04/1998 0:00,25/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1419 | B0_1001,73,14,UTF-8,cloudflare-nginx,NA,US,LA,20/10/2003 0:00,15/01/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1420 | B0_1074,73,17,ISO-8859-1,Apache/2.4.7 (Ubuntu),13240,US,PA,5/08/2008 0:00,6/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1421 | B0_1082,73,13,iso-8859-1,Apache/2.2.15 (CentOS),NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1422 | B0_1184,73,14,utf-8,None,32103,US,NY,29/03/2008 0:00,10/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1423 | B0_1229,73,15,iso-8859-1,nginx,484,US,Arizona,15/12/2007 0:00,3/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1424 | B0_1240,73,13,iso-8859-1,Apache/2.2.15 (CentOS),NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1425 | B0_132,73,13,iso-8859-1,Apache/2.2.15 (CentOS),NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,27,12,5,3149,33,34,37964,3647,33,6,0 1426 | B0_1334,73,15,iso-8859-1,Apache/2.0.52 (Red Hat),330,US,CA,3/09/1996 4:00,30/09/2009 2:59,0,0,0,0,0,0,0,0,0,0,0 1427 | B0_213,73,15,utf-8,Apache,44491,CA,ON,9/12/2003 0:00,22/10/2016 0:00,208,0,1,14530,210,278,466055,14688,210,2,0 1428 | B0_2235,73,11,UTF-8,Apache/2.4.18 (Ubuntu),12487,US,Illinois,2/08/2000 0:00,26/04/2017 0:00,22,11,12,1524,22,19,1268,1524,22,0,0 1429 | B0_2248,73,11,UTF-8,GSE,3674,US,CA,31/07/2000 0:00,29/06/2016 0:00,3,3,1,366,3,5,306,366,3,0,0 1430 | B0_2321,73,17,UTF-8,cloudflare-nginx,NA,JP,TOKYO-TO,5/11/2007 15:14,12/03/2017 9:17,11,6,8,810,11,14,913,810,11,0,0 1431 | B0_279,73,15,ISO-8859-1,squid/3.3.8,3591,US,CA,2/06/1994 0:00,6/01/2017 0:00,23,4,3,2425,29,36,33598,2881,29,6,0 1432 | B0_36,73,12,UTF-8,Apache-Coyote/1.1,17908,None,None,9/01/2007 0:00,30/04/2013 0:00,17,12,3,2396,23,25,26621,2856,23,6,0 1433 | B0_559,73,13,ISO-8859-1,nginx/0.8.38,18901,US,MA,29/03/2000 0:00,25/12/2016 0:00,51,6,5,3932,55,48,87340,4252,55,4,0 1434 | B0_699,73,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,49,43,4,5365,55,60,78671,5793,55,6,0 1435 | B0_804,73,17,UTF-8,mw2242.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1436 | M0_167,74,11,ISO-8859-1,cloudflare-nginx,NA,ru,Krasnoyarsk,22/08/2010 0:00,28/04/2017 0:00,11,0,3,1260,19,17,2399,1850,19,8,1 1437 | B0_1162,74,12,us-ascii,Microsoft-IIS/7.5,324,US,Pennsylvania,20/03/2005 0:00,22/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1438 | B0_147,74,15,UTF-8,Apache-Coyote/1.1,46884,None,None,16/09/2004 0:00,28/03/2016 0:00,8,0,1,432,8,2,124,432,8,0,0 1439 | B0_2208,74,13,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,3,3,1,366,3,5,306,366,3,0,0 1440 | B0_2251,74,12,us-ascii,Microsoft-HTTPAPI/2.0,324,CA,Saskatchewan,3/07/2000 0:00,23/06/2016 0:00,5,4,2,486,5,6,480,486,5,0,0 1441 | B0_352,74,16,UTF-8,nginx,NA,US,NJ,3/10/1997 0:00,3/08/2014 0:00,8,1,3,1088,14,13,2036,1524,14,6,0 1442 | B0_454,74,13,utf-8,None,NA,US,TX,31/01/1996 0:00,16/08/2016 0:00,21,1,5,2873,25,23,9017,3177,25,4,0 1443 | M0_62,75,13,UTF-8,Apache,193,US,PA,20/08/2014 0:00,20/10/2016 0:00,8,0,6,801,10,9,677,951,10,2,1 1444 | B0_1360,75,15,UTF-8,GSE,8417,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1445 | B0_196,75,16,ISO-8859-1,None,NA,US,NJ,23/10/1994 0:00,1/11/2016 0:00,33,3,8,3647,41,39,32399,4247,41,8,0 1446 | B0_2238,75,14,UTF-8,mw2238.codfw.wmnet,4721,US,CA,13/01/2001 0:12,12/12/2015 10:16,4,3,2,432,4,6,372,432,4,0,0 1447 | B0_248,75,13,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,8/09/2004 0:00,28/02/2017 0:00,23,14,7,2472,27,19,6776,2796,27,4,0 1448 | B0_404,75,14,utf-8,GSE,NA,US,CA,15/09/1997 0:00,20/07/2011 0:00,39,18,14,4631,49,42,12921,5353,49,10,0 1449 | B0_868,75,12,UTF-8,Pizza/pepperoni,NA,US,WA,16/11/1994 0:00,28/10/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1450 | B0_987,75,15,ISO-8859-1,cloudflare-nginx,NA,US,FL,16/05/2000 0:00,17/03/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1451 | B0_2157,76,13,ISO-8859-1,Microsoft-IIS/6.0,92183,CA,Quebec,2/06/2004 0:00,21/03/2015 0:00,10,4,5,780,10,7,442,780,10,0,0 1452 | B0_534,76,15,ISO-8859-1,None,12368,US,CA,9/01/1998 0:00,4/01/2017 0:00,47,0,5,4544,55,57,53238,5134,55,8,0 1453 | B0_80,76,12,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,2/10/2007 0:00,20/07/2014 0:00,26,19,4,3635,32,30,23404,4125,32,6,0 1454 | B0_81,76,13,us-ascii,Microsoft-IIS/7.5,324,None,None,14/12/2004 0:00,None,18,5,6,2032,24,19,2033,2464,24,6,0 1455 | B0_842,76,12,UTF-8,Apache,9672,US,Alabama,3/10/1997 0:00,31/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1456 | B0_912,76,14,UTF-8,XXXXXXXXXXXXXXXXXXXXXX,17721,None,None,2/10/2000 0:00,3/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1457 | B0_2013,77,15,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,5/02/1999 0:00,16/06/2014 0:00,5,5,3,498,5,8,508,498,5,0,0 1458 | B0_2174,77,13,ISO-8859-1,Apache,NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,17,7,9,1206,17,15,991,1206,17,0,0 1459 | B0_2272,77,14,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CO,16/06/2014 0:00,31/07/2016 0:00,6,3,4,564,6,7,442,564,6,0,0 1460 | B0_431,77,14,ISO-8859-1,Sucuri/Cloudproxy,NA,None,None,7/02/2006 0:00,8/02/2017 0:00,32,7,9,2445,34,36,41408,2601,34,2,0 1461 | B0_432,77,14,UTF-8,GSE,22409,US,CA,31/07/2000 0:00,29/06/2016 0:00,27,0,4,2403,31,30,27476,2741,31,4,0 1462 | B0_735,77,13,utf-8,nginx/1.8.0,63049,US,va,29/04/1994 0:00,30/08/2013 0:00,33,1,5,3244,43,40,24630,4114,43,10,0 1463 | B0_751,77,14,utf-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,25,20,3,3591,31,31,13757,4041,31,6,0 1464 | B0_1203,78,10,utf-8,Apache,23146,US,NY,18/01/1994 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1465 | B0_134,78,16,UTF-8,cloudflare-nginx,NA,US,LA,20/10/2003 0:00,15/01/2015 0:00,11,1,3,1335,17,17,2109,1835,17,6,0 1466 | B0_1393,78,17,UTF-8,mw2165.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,0,0,0,0,0,0,0,0,0,0,0 1467 | B0_2021,78,11,UTF-8,cloudflare-nginx,NA,US,WA,7/12/2006 0:00,2/03/2017 0:00,17,9,9,1594,17,18,1152,1594,17,0,0 1468 | B0_212,78,15,iso-8859-1,Apache,13,JP,Tottori,14/04/2017 0:00,18/04/2017 0:00,8,0,3,528,8,2,124,528,8,0,0 1469 | B0_2146,78,16,UTF-8,GSE,9313,US,CA,31/07/2000 0:00,29/06/2016 0:00,13,6,9,1026,13,14,904,1026,13,0,0 1470 | B0_2203,78,13,UTF-8,None,28508,US,NY,10/08/1995 0:00,5/08/2016 0:00,8,6,6,696,8,9,574,696,8,0,0 1471 | B0_2211,78,15,ISO-8859-1,Varnish,9,US,DC,18/10/2005 0:00,14/10/2016 0:00,8,6,6,672,8,9,562,672,8,0,0 1472 | B0_278,78,13,UTF-8,mw2224.codfw.wmnet,NA,US,CA,13/01/2001 0:12,12/12/2015 10:16,39,35,2,5949,47,47,32891,6557,47,8,0 1473 | B0_433,78,10,utf-8,Apache,23144,US,NY,18/01/1994 0:00,21/10/2016 0:00,36,3,10,2981,42,41,31493,3449,42,6,0 1474 | B0_680,78,12,UTF-8,Pizza/pepperoni,13707,US,WA,16/11/1994 0:00,28/10/2015 0:00,19,6,4,2781,24,24,18410,3085,24,4,0 1475 | B0_748,78,13,ISO-8859-1,Microsoft-IIS/7.5,11,US,WA,13/09/2000 0:00,29/08/2016 0:00,62,0,3,4725,66,65,97272,5023,66,4,0 1476 | B0_784,78,12,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1477 | B0_964,78,17,iso-8859-1,Apache,NA,US,UT,16/05/1995 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1478 | B0_99,78,16,ISO-8859-1,MI,2743,US,CA,24/02/1996 0:00,18/01/2017 0:00,23,5,11,2106,27,31,6415,2410,27,4,0 1479 | B0_1072,79,13,ISO-8859-1,Microsoft-IIS/8.5,1245,US,Arkansas,23/06/1999 0:00,12/06/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1480 | B0_1121,79,14,ISO-8859-1,None,6748,CA,QC,24/10/1996 0:00,24/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1481 | B0_1193,79,14,utf-8,cloudflare-nginx,NA,US,PA,3/05/2006 0:00,8/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1482 | B0_1223,79,9,UTF-8,None,53420,US,NJ,26/05/1994 0:00,21/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1483 | B0_1355,79,15,UTF-8,Apache-Coyote/1.1,46887,US,Washington,16/09/2004 0:00,28/03/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1484 | B0_2164,79,15,UTF-8,Apache,NA,US,Arizona,17/08/2010 0:00,17/08/2016 0:00,6,3,4,564,6,8,504,564,6,0,0 1485 | B0_269,79,16,ISO-8859-1,Roxen/5.4.98-r2,11593,US,IL,2/03/2000 0:00,3/03/2017 0:00,13,1,3,1763,19,19,2308,2233,19,6,0 1486 | B0_456,79,15,UTF-8,Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/1.0.1e-fips mod_bwlimited/1.4,NA,None,None,26/01/2002 0:00,12/01/2017 0:00,15,0,4,1301,17,7,552,1455,17,2,0 1487 | B0_1086,80,16,UTF-8,None,7240,US,California,4/02/1996 0:00,10/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1488 | B0_1094,80,12,UTF-8,Apache,471,US,CA,23/07/2004 0:00,4/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1489 | B0_129,80,12,UTF-8,GSE,38149,US,CA,31/07/2000 0:00,29/06/2016 0:00,41,0,5,3333,45,43,42229,3715,45,4,0 1490 | B0_1389,80,15,UTF-8,None,NA,US,CA,9/01/1998 0:00,4/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1491 | B0_142,80,13,utf-8,cloudflare-nginx,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,50,43,12,7282,60,57,24220,8042,60,10,0 1492 | B0_2077,80,17,ISO-8859-1,nginx/1.2.1,8619,BY,--,17/05/2004 0:00,2/03/2017 0:00,22,18,3,3156,22,15,4966,3156,22,0,0 1493 | B0_2145,80,14,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,5/06/2003 0:00,26/11/2014 0:00,5,4,2,498,5,7,438,498,5,0,0 1494 | B0_463,80,13,ISO-8859-1,nginx/1.1.19,NA,None,None,19/11/1998 0:00,29/09/2016 0:00,16,1,4,1739,20,20,12620,2059,20,4,0 1495 | B0_756,80,11,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CA,8/09/2003 0:00,3/03/2017 0:00,33,10,8,3764,41,23,7356,4412,41,8,0 1496 | B0_810,80,16,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1497 | B0_849,80,13,UTF-8,GSE,11326,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1498 | B0_878,80,12,iso-8859-1,Apache,236,US,AZ,10/03/1998 0:00,5/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1499 | M4_70,81,17,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1500 | M4_71,81,17,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1501 | B0_101,81,14,UTF-8,GSE,10527,US,CA,31/07/2000 0:00,29/06/2016 0:00,75,8,16,7388,79,76,65108,7734,79,4,0 1502 | B0_118,81,18,iso-8859-1,Apache/2.2.15 (CentOS),213,US,OK,7/07/1999 0:00,24/05/2016 0:00,11,6,1,2088,15,15,7459,2388,15,4,0 1503 | B0_2311,81,16,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,5/02/1999 0:00,16/06/2014 0:00,2,2,1,276,2,3,184,276,2,0,0 1504 | B0_469,81,15,UTF-8,Apache,NA,None,None,None,None,53,13,11,6257,61,64,30118,6891,61,8,0 1505 | B0_519,81,13,us-ascii,Microsoft-HTTPAPI/2.0,324,US,NY,25/02/2005 0:00,27/12/2015 0:00,16,1,2,2074,22,27,10646,2540,22,6,0 1506 | B0_649,81,11,UTF-8,cloudflare-nginx,NA,US,WA,7/04/2011 0:00,11/03/2017 0:00,23,2,6,2362,31,23,5472,3008,31,8,0 1507 | B0_712,81,16,UTF-8,cloudflare-nginx,NA,US,FL,12/02/1999 0:00,14/12/2016 0:00,15,0,3,1894,19,20,7062,2198,19,4,0 1508 | B0_720,81,15,ISO-8859-1,Apache,NA,US,Illinois,22/08/2003 0:00,26/12/2012 0:00,17,0,3,2281,21,22,29619,2581,21,4,0 1509 | B0_83,81,12,ISO-8859-1,Apache,4897,US,Florida,20/08/2000 0:00,25/02/2017 0:00,47,3,8,3718,51,47,44519,4064,51,4,0 1510 | M4_69,82,17,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1511 | M4_72,82,17,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1512 | M4_73,82,17,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1513 | M4_74,82,17,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1514 | B0_2051,82,13,ISO-8859-1,nginx/1.10.1,8521,PA,PANAMA,3/03/2004 0:00,31/03/2017 0:00,8,3,6,696,8,9,574,696,8,0,0 1515 | B0_2060,82,17,us-ascii,Microsoft-HTTPAPI/2.0,324,US,WA,10/11/1994 0:00,8/10/2014 0:00,5,4,2,498,5,6,376,498,5,0,0 1516 | B0_2267,82,14,UTF-8,None,NA,None,None,18/10/2000 0:00,29/01/2017 0:00,5,3,2,498,5,7,438,498,5,0,0 1517 | B0_228,82,17,ISO-8859-1,Apache/2.4.7 (Ubuntu),9101,None,None,11/10/2005 0:00,10/12/2016 0:00,20,6,5,2638,28,25,6137,3208,28,8,0 1518 | B0_284,82,17,UTF-8,cloudflare-nginx,NA,US,FL,9/07/1995 0:00,25/05/2016 0:00,3,0,1,488,5,6,482,632,5,2,0 1519 | B0_382,82,13,us-ascii,Microsoft-HTTPAPI/2.0,324,US,Florida,2/10/2007 0:00,20/07/2014 0:00,31,26,6,3286,37,45,28351,3776,37,6,0 1520 | B0_77,82,18,UTF-8,GSE,53520,US,CA,31/07/2000 0:00,29/06/2016 0:00,45,2,5,3565,49,49,58127,3903,49,4,0 1521 | B0_808,82,12,ISO-8859-1,Apache,NA,US,Florida,22/09/2000 0:00,2/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1522 | B0_97,82,14,UTF-8,cloudflare-nginx,NA,None,None,17/04/1996 0:00,18/04/2017 0:00,14,9,2,2200,20,18,6009,2682,20,6,0 1523 | M4_64,83,17,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,1,1,1,90,1,5,416,90,1,0,1 1524 | B0_1035,83,17,UTF-8,Server,NA,US,NV,1/11/1994 0:00,30/04/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1525 | B0_202,83,11,UTF-8,Apache,NA,JP,Fukuoka,15/09/2013 0:00,4/08/2016 0:00,11,4,4,1278,17,16,1874,1750,17,6,0 1526 | B0_2096,83,16,UTF-8,nginx/1.9.13,NA,US,WA,25/11/1995 0:00,9/10/2015 0:00,7,3,3,630,7,5,310,630,7,0,0 1527 | B0_210,83,21,UTF-8,nginx/1.6.2,2034,US,CO,2/04/2009 0:00,21/03/2017 0:00,22,8,7,1628,26,25,14894,1944,26,4,0 1528 | B0_232,83,14,utf-8,cloudflare-nginx,NA,None,None,14/10/1999 0:00,20/11/2013 0:00,24,10,4,3705,32,32,11756,4319,32,8,0 1529 | B0_423,83,15,UTF-8,GSE,34930,US,CA,31/07/2000 0:00,29/06/2016 0:00,29,0,3,2523,33,34,44807,2881,33,4,0 1530 | B0_488,83,19,ISO-8859-1,Apache/2.2.22 (Debian),5866,AE,Dubai,10/12/2010 0:00,11/10/2016 0:00,9,0,3,1165,15,16,1673,1673,15,6,0 1531 | B0_752,83,13,ISO-8859-1,nginx,162,US,Minnesota,5/11/1996 5:00,29/08/2016 20:58,24,3,7,2676,28,20,3594,3000,28,4,0 1532 | B0_806,83,17,UTF-8,Apache-Coyote/1.1,46886,None,None,16/09/2004 0:00,28/03/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1533 | M0_63,84,15,UTF-8,Apache/2.2.22 (Debian),11323,US,Washington,8/03/2003 0:00,9/03/2017 0:00,25,0,5,2262,29,27,33205,2588,29,4,1 1534 | B0_1071,84,17,UTF-8,Apache,12773,US,UTAH,12/08/2005 0:00,12/08/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1535 | B0_1385,84,12,ISO-8859-1,Apache/2.2.15 (CentOS),23412,US,Arizona,9/02/2005 0:00,2/02/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1536 | B0_1394,84,15,utf-8,Apache,8326,US,Texas,23/11/1998 0:00,24/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1537 | B0_219,84,14,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,67,17,5,13331,73,70,67914,13771,73,6,0 1538 | B0_2225,84,14,UTF-8,GSE,11243,US,CA,31/07/2000 0:00,29/06/2016 0:00,11,11,7,834,11,13,894,834,11,0,0 1539 | M0_61,85,13,UTF-8,Apache/2.2.22 (Debian),8364,US,Washington,14/03/2004 0:00,15/03/2017 0:00,37,0,8,3630,43,40,34113,4118,43,6,1 1540 | B0_1048,85,18,ISO-8859-1,None,NA,US,NJ,27/06/1996 0:00,1/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1541 | B0_2083,85,12,UTF-8,cloudflare-nginx,NA,US,WA,7/04/2011 0:00,11/03/2017 0:00,7,7,3,618,7,9,562,618,7,0,0 1542 | B0_2256,85,15,UTF-8,GSE,27976,US,CA,31/07/2000 0:00,29/06/2016 0:00,7,7,3,582,7,9,632,582,7,0,0 1543 | B0_1261,86,15,UTF-8,GSE,NA,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1544 | B0_1352,86,17,UTF-8,Apache,58,US,MI,19/05/2016 0:00,26/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1545 | B0_2075,86,16,utf-8,Apache/2.4.25,3500,US,Arizona,24/05/2006 0:00,6/10/2016 0:00,30,8,9,2296,30,11,688,2296,30,0,0 1546 | B0_2196,86,17,utf-8,None,959,US,WA,12/02/2000 0:00,16/08/2016 0:00,10,9,8,804,10,13,826,804,10,0,0 1547 | B0_340,86,13,ISO-8859-1,Roxen/5.4.98-r2,13747,US,IL,3/05/2004 0:00,4/05/2016 0:00,20,0,2,2487,26,18,2587,2979,26,6,0 1548 | B0_430,86,16,UTF-8,GSE,14291,US,CA,31/07/2000 0:00,29/06/2016 0:00,67,4,10,6257,71,53,51527,6619,71,4,0 1549 | B0_595,86,15,utf-8,cloudflare-nginx,NA,US,California,15/12/1998 0:00,25/04/2016 0:00,10,0,2,2202,14,15,3304,2490,14,4,0 1550 | B0_958,86,16,UTF-8,Apache/2.2.15 (CentOS),15108,US,CA,15/04/2002 0:00,13/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1551 | B0_1069,87,17,UTF-8,nginx,NA,US,California,8/05/2001 0:00,19/04/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1552 | B0_122,87,13,UTF-8,mw2180.codfw.wmnet,15187,US,CA,13/01/2001 0:12,12/12/2015 10:16,26,22,1,4523,32,34,26400,4979,32,6,0 1553 | B0_2181,87,18,UTF-8,nginx,NA,US,FL,5/02/2009 0:00,16/01/2017 0:00,8,5,5,660,8,10,661,660,8,0,0 1554 | B0_407,87,15,utf-8,Microsoft-IIS/7.5,9083,US,va,29/04/1994 0:00,30/08/2013 0:00,14,0,5,1482,20,18,8797,1914,20,6,0 1555 | B0_508,87,14,us-ascii,Microsoft-HTTPAPI/2.0,324,US,KS,7/07/1997 0:00,5/07/2016 0:00,17,6,10,1457,21,20,2112,1781,21,4,0 1556 | B0_589,87,16,UTF-8,nginx,30824,US,CA,5/03/1994 0:00,2/02/2017 0:00,17,9,2,3124,23,21,9563,3564,23,6,0 1557 | B0_892,87,16,UTF-8,GSE,48831,US,CA,31/07/2000 0:00,29/06/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1558 | B0_1006,88,14,us-ascii,Microsoft-HTTPAPI/2.0,257,US,NY,22/05/1995 0:00,21/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1559 | B0_2022,88,15,iso-8859-1,None,411,US,WV,23/04/1996 0:00,26/03/2017 0:00,12,4,9,936,12,14,904,936,12,0,0 1560 | B0_2306,88,17,utf-8,Microsoft-IIS/7.5,9084,US,va,29/04/1994 0:00,30/08/2013 0:00,8,8,1,1008,8,8,486,1008,8,0,0 1561 | B0_2318,88,17,UTF-8,cloudflare-nginx,NA,CA,ON,1/08/2007 0:00,3/03/2016 0:00,4,3,2,432,4,6,372,432,4,0,0 1562 | B0_378,88,16,UTF-8,nginx/1.11.10,NA,None,None,21/05/1997 0:00,26/07/2016 0:00,30,0,4,3207,34,50,48750,3527,34,4,0 1563 | B0_42,88,15,UTF-8,Pizza/pepperoni,13776,US,WA,16/11/1994 0:00,28/10/2015 0:00,20,2,8,2133,24,26,17337,2437,24,4,0 1564 | B0_494,88,15,UTF-8,Apache,NA,None,None,25/03/2010 0:00,25/03/2017 0:00,11,3,4,1346,15,16,1725,1670,15,4,0 1565 | B0_591,88,13,utf-8,Apache,33799,US,NY,27/01/1995 0:00,24/01/2017 0:00,84,32,4,7350,90,110,143113,7830,90,6,0 1566 | B0_785,88,16,utf-8,Microsoft-IIS/7.5,9083,US,va,29/04/1994 0:00,30/08/2013 0:00,0,0,0,0,0,0,0,0,0,0,0 1567 | M4_27,89,18,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1568 | B0_2017,89,12,utf-8,None,30193,US,GA,9/08/1994 0:00,23/06/2016 0:00,25,13,8,1818,25,7,438,1818,25,0,0 1569 | B0_2039,89,20,UTF-8,Apache/2.2.14 (Ubuntu),NA,US,CA,26/03/2002 0:00,23/02/2017 0:00,4,3,2,432,4,4,244,432,4,0,0 1570 | B0_2117,89,16,UTF-8,cloudflare-nginx,NA,US,New York,26/04/1996 0:00,20/12/2013 0:00,9,3,4,738,9,5,306,738,9,0,0 1571 | B0_2159,89,13,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CA,19/05/2003 0:00,10/10/2016 0:00,6,2,5,516,6,4,246,516,6,0,0 1572 | B0_2175,89,14,utf-8,Microsoft-IIS/8.5,246324,None,None,None,None,7,6,2,786,7,7,432,786,7,0,0 1573 | B0_2178,89,16,utf-8,cloudflare-nginx,0,US,IL,12/12/1990 0:00,8/06/2015 0:00,6,3,2,564,6,4,244,564,6,0,0 1574 | B0_336,89,17,UTF-8,GSE,37836,US,CA,31/07/2000 0:00,29/06/2016 0:00,55,6,14,4155,59,53,45079,4533,59,4,0 1575 | B0_672,89,15,utf-8,Apache,19856,US,NY,18/01/1994 0:00,21/10/2016 0:00,73,58,6,6789,79,89,110553,7245,79,6,0 1576 | B0_768,89,20,utf-8,ebay server,NA,US,CA,4/08/1995 0:00,26/01/2017 0:00,25,0,8,2200,29,30,28829,2480,29,4,0 1577 | B0_1004,90,15,utf-8,nginx/1.6.2,NA,None,None,20/10/2000 0:00,28/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1578 | B0_2255,90,16,UTF-8,nginx/1.9.13,40605,US,TX,2/07/1999 0:00,9/03/2015 0:00,7,4,4,630,7,9,568,630,7,0,0 1579 | B0_2273,90,17,iso-8859-1,Apache,392,US,New York,17/03/2009 0:00,7/04/2016 0:00,7,3,3,606,7,4,244,606,7,0,0 1580 | B0_57,90,17,UTF-8,nginx/0.8.55,NA,CA,ON,27/05/2006 0:00,8/08/2015 0:00,17,3,4,2162,23,24,14374,2634,23,6,0 1581 | B0_621,90,16,utf-8,nginx,19793,US,IL,25/07/1995 0:00,22/03/2017 0:00,38,1,9,3432,42,48,64807,3754,42,4,0 1582 | B0_767,90,17,utf-8,ebay server,NA,US,CA,4/08/1995 0:00,26/01/2017 0:00,7,0,5,804,8,2,124,804,8,0,0 1583 | B0_960,90,16,UTF-8,ebay server,NA,US,CA,4/08/1995 0:00,26/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1584 | B0_533,91,17,UTF-8,GSE,38155,US,CA,31/07/2000 0:00,29/06/2016 0:00,39,0,2,3223,43,41,42120,3597,43,4,0 1585 | B0_645,91,14,UTF-8,Apache,9406,IE,CO. DUBLIN,11/08/2009 0:00,4/03/2017 0:00,13,3,6,1591,17,15,1936,1931,17,4,0 1586 | B0_821,91,19,UTF-8,Apache/2.2.22,20,PH,Metro Manila,24/03/2005 0:00,13/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1587 | B0_1093,92,19,UTF-8,Apache/2.4.7 (Ubuntu),5610,US,MI,8/07/1996 0:00,27/09/2012 0:00,0,0,0,0,0,0,0,0,0,0,0 1588 | B0_1324,92,18,UTF-8,Apache,30285,US,NY,29/03/1994 0:00,26/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1589 | B0_475,92,17,utf-8,Microsoft-IIS/7.5,9084,US,va,29/04/1994 0:00,30/08/2013 0:00,16,1,6,1607,22,18,1690,2055,22,6,0 1590 | B0_566,92,18,utf-8,Apache,11363,None,None,None,None,47,10,6,4576,55,52,49426,5282,55,8,0 1591 | B0_629,92,15,utf-8,None,37687,US,FL,1/02/1994 0:00,28/04/2016 0:00,11,0,3,1358,17,16,9432,1798,17,6,0 1592 | B0_826,92,16,utf-8,None,38483,US,FL,1/02/1994 0:00,28/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1593 | B0_901,92,18,ISO-8859-1,None,NA,US,CA,29/03/1997 0:00,29/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1594 | M4_63,93,19,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,1,1,1,90,1,4,354,90,1,0,1 1595 | B0_139,93,19,ISO-8859-1,Microsoft-IIS/7.5,16479,US,va,29/04/1994 0:00,30/08/2013 0:00,41,28,6,5321,49,45,24126,5935,49,8,0 1596 | M0_168,94,20,UTF-8,Apache,58,US,Massachusetts,2/01/2016 0:00,13/02/2017 0:00,11,0,3,1260,19,17,2399,1850,19,8,1 1597 | M4_65,94,19,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,1,1,1,90,1,4,354,90,1,0,1 1598 | M4_68,94,19,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1599 | B0_668,94,19,UTF-8,Apache/2.4.7 (Ubuntu),8404,US,Massachusetts,24/02/2008 18:32,25/02/2017 14:18,20,8,6,2976,26,23,8187,3476,26,6,0 1600 | M4_66,95,19,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,1,1,1,90,1,4,354,90,1,0,1 1601 | M4_67,95,19,utf-8,Microsoft-IIS/6.0,NA,US,California,18/06/2003 0:00,14/06/2016 0:00,1,1,1,90,1,5,416,90,1,0,1 1602 | B0_1183,95,14,utf-8,Microsoft-IIS/8.5,6783,GB,London,2/12/1997 0:00,16/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1603 | B0_1253,95,19,UTF-8,nginx,NA,US,CA,3/03/2000 0:00,12/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1604 | B0_185,95,19,ISO-8859-1,nginx,162,None,None,17/10/2008 0:00,24/03/2017 0:00,12,2,3,1316,14,22,16475,1468,14,2,0 1605 | B0_2094,95,15,us-ascii,Microsoft-HTTPAPI/2.0,324,None,None,None,None,8,7,4,636,8,9,630,636,8,0,0 1606 | B0_2209,95,19,ISO-8859-1,Varnish,9,US,DC,16/02/2010 0:00,11/02/2017 0:00,5,3,3,486,5,5,306,486,5,0,0 1607 | B0_1263,96,18,utf-8,nginx/1.8.0,55367,US,va,10/05/1996 0:00,9/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1608 | B0_805,96,15,ISO-8859-1,Varnish,9,US,DC,27/01/2007 0:00,22/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1609 | B0_819,96,19,utf-8,nginx,NA,US,California,24/09/2006 0:00,26/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1610 | M0_172,97,15,UTF-8,Apache/2.2.22 (Debian),8755,UY,Montevideo,8/06/2009 3:48,30/05/2016 18:18,3,0,2,198,3,6,384,198,3,0,1 1611 | M0_174,97,15,UTF-8,Apache/2.2.22 (Debian),8762,UY,Montevideo,8/06/2009 3:48,30/05/2016 18:18,3,0,2,198,3,6,384,198,3,0,1 1612 | B0_255,97,17,UTF-8,cloudflare-nginx,NA,US,LA,20/10/2003 0:00,15/01/2015 0:00,43,0,2,3252,47,47,60076,3564,47,4,0 1613 | B0_300,97,19,UTF-8,Apache,7778,None,None,None,None,19,3,4,1948,23,26,12186,2280,23,4,0 1614 | B0_673,97,15,us-ascii,Microsoft-HTTPAPI/2.0,324,US,PA,19/04/2003 0:00,26/09/2013 0:00,40,32,7,5024,46,37,15154,5500,46,6,0 1615 | B0_1208,98,19,us-ascii,Microsoft-HTTPAPI/2.0,324,US,UT,5/02/1999 0:00,16/06/2014 0:00,0,0,0,0,0,0,0,0,0,0,0 1616 | B0_2063,98,16,UTF-8,Microsoft-IIS/7.5,NA,None,None,20/12/1999 0:00,21/10/2016 0:00,16,7,10,1176,16,16,1030,1176,16,0,0 1617 | B0_2216,98,18,UTF-8,nginx,NA,KG,KG,29/12/2007 0:00,14/11/2016 0:00,6,3,2,564,6,5,306,564,6,0,0 1618 | B0_243,98,18,UTF-8,nginx,NA,US,nj,4/03/1996 0:00,1/02/2017 0:00,44,17,11,5171,52,46,36825,5811,52,8,0 1619 | B0_355,98,16,utf-8,nginx,6730,US,CA,6/08/2002 0:00,5/08/2013 0:00,22,10,9,2784,28,30,14114,3312,28,6,0 1620 | B0_693,98,18,UTF-8,nginx,NA,KG,KG,29/12/2007 0:00,14/11/2016 0:00,21,3,6,2038,25,14,1507,2354,25,4,0 1621 | M4_17,99,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1622 | M4_7,99,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1623 | B0_1134,99,14,ISO-8859-1,Apache/2.4.7 (Ubuntu),2743,US,IL,10/01/2000 0:00,8/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1624 | B0_2234,99,16,UTF-8,Apache,12588,US,FLORIDA,17/05/2007 0:00,17/05/2016 0:00,4,3,2,432,4,5,310,432,4,0,0 1625 | B0_334,99,22,ISO-8859-1,Microsoft-IIS/7.5,2346,SC,Other,10/08/2016 0:00,13/08/2016 0:00,19,5,5,2137,23,29,17922,2425,23,4,0 1626 | B0_374,99,15,utf-8,Microsoft-IIS/8.5,NA,CA,ON,23/12/1995 0:00,8/02/2017 0:00,20,2,6,2010,24,24,13434,2334,24,4,0 1627 | M4_1,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,2,1,2,132,2,4,256,132,2,0,1 1628 | M4_10,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1629 | M4_11,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1630 | M4_12,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1631 | M4_13,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1632 | M4_14,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1633 | M4_15,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1634 | M4_16,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1635 | M4_18,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1636 | M4_19,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1637 | M4_2,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,1,0,1,66,1,3,190,66,1,0,1 1638 | M4_20,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1639 | M4_21,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1640 | M4_22,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1641 | M4_23,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1642 | M4_24,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1643 | M4_25,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1644 | M4_26,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1645 | M4_3,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,1,0,1,66,1,3,190,66,1,0,1 1646 | M4_4,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,1,0,1,66,1,3,190,66,1,0,1 1647 | M4_5,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,1,0,1,66,1,3,190,66,1,0,1 1648 | M4_6,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,1,0,1,66,1,3,190,66,1,0,1 1649 | M4_8,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1650 | M4_9,100,20,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1651 | B0_187,100,17,utf-8,Apache,14060,None,None,27/09/2000 0:00,26/07/2016 0:00,35,9,12,2820,43,28,3254,3428,43,8,0 1652 | B0_2042,100,15,utf-8,nginx/1.4.6 (Ubuntu),NA,CA,British Columbia,5/11/2003 0:00,6/11/2016 0:00,8,3,5,660,8,13,798,660,8,0,0 1653 | B0_490,100,19,UTF-8,nginx/1.12.0,5272,CA,QUEBEC,3/01/2009 0:00,3/01/2017 0:00,27,0,2,3458,29,27,55407,3622,29,2,0 1654 | B0_1058,101,21,ISO-8859-1,nginx,NA,UK,None,22/11/1995 0:00,22/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1655 | B0_193,101,20,utf-8,nginx,NA,US,California,24/09/2006 0:00,26/08/2015 0:00,45,40,4,4721,49,74,82395,5009,49,4,0 1656 | B0_214,101,20,utf-8,Microsoft-IIS/8.5,4678,US,DE,26/06/2007 0:00,24/04/2017 0:00,32,9,6,3327,38,32,10505,3769,38,6,0 1657 | B0_2170,101,16,utf-8,Microsoft-IIS/8.5,NA,CA,ON,23/12/1995 0:00,8/02/2017 0:00,5,2,3,474,5,3,184,474,5,0,0 1658 | B0_540,101,20,UTF-8,GSE,11833,US,CA,31/07/2000 0:00,29/06/2016 0:00,62,4,3,7415,68,72,93298,7975,68,6,0 1659 | B0_574,101,18,utf-8,nginx,27131,US,New York,1/03/1994 0:00,19/02/2017 0:00,61,51,6,6027,69,76,124751,6601,69,8,0 1660 | B0_763,101,19,UTF-8,Apache,54473,US,FL,13/12/1993 5:00,2/07/2015 17:44,47,0,2,4104,51,84,131895,4380,51,4,0 1661 | B0_772,101,15,UTF-8,Apache,7503,CA,ON,14/12/2009 0:00,13/12/2016 0:00,4,2,2,276,4,5,416,276,4,NA,0 1662 | B0_1156,102,16,UTF-8,Microsoft-IIS/7.5,NA,CA,ON,20/12/1999 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1663 | B0_1280,102,12,UTF-8,nginx/1.4.6 (Ubuntu),NA,US,CA,14/12/1995 5:00,6/12/2016 21:52,0,0,0,0,0,0,0,0,0,0,0 1664 | B0_1377,102,20,ISO-8859-1,Varnish,9,US,DC,16/02/2010 0:00,11/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1665 | B0_653,102,17,ISO-8859-1,Apache,NA,US,NY,1/04/2008 22:47,2/04/2017 1:35,48,11,11,3684,54,53,47558,4164,54,6,0 1666 | B0_922,102,18,utf-8,None,24702,US,FL,1/02/1994 0:00,28/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1667 | B0_1064,103,21,utf-8,Apache,15591,US,Washington,28/11/1994 0:00,21/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1668 | B0_1199,103,17,utf-8,Apache-Coyote/1.1,15666,US,OH,30/10/2002 0:00,15/03/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1669 | B0_1292,103,17,utf-8,Apache/2.2.10 (Linux/SUSE),NA,BE,None,16/01/2001 0:00,7/04/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1670 | B0_1328,103,16,UTF-8,cloudflare-nginx,NA,US,AZ,9/12/1998 0:00,24/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1671 | B0_1426,103,20,utf-8,Apache/2.2.15 (CentOS),10843,US,California,6/09/2005 0:00,13/08/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1672 | B0_1251,104,17,ISO-8859-1,Varnish,9,US,DC,7/11/2003 0:00,3/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1673 | B0_2058,104,16,us-ascii,Microsoft-HTTPAPI/2.0,257,US,NY,18/03/1999 0:00,15/02/2016 0:00,4,3,2,432,4,5,310,432,4,0,0 1674 | B0_2165,104,18,utf-8,nginx/1.4.6 (Ubuntu),NA,US,WA,8/02/2005 0:00,5/03/2017 0:00,3,3,1,366,3,4,244,366,3,0,0 1675 | B0_613,104,20,UTF-8,None,NA,US,IL,8/12/2016 0:00,15/02/2017 0:00,14,3,11,1260,18,17,1646,1576,18,4,0 1676 | B0_906,104,17,UTF-8,nginx/1.12.0,NA,US,UT,21/11/1996 0:00,22/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1677 | M0_113,105,20,ISO-8859-1,Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4,11230,None,None,None,None,22,0,3,2790,26,26,23294,3104,26,4,1 1678 | B0_114,105,21,UTF-8,Apache,26857,US,MO,3/09/1996 0:00,8/12/2016 0:00,39,3,4,3238,43,44,26870,3550,43,4,0 1679 | B0_2102,105,17,utf-8,Apache,14060,None,None,27/09/2000 0:00,26/07/2016 0:00,18,10,9,1212,18,11,682,1212,18,0,0 1680 | B0_935,105,22,utf-8,Apache,NA,US,NY,29/09/1993 0:00,24/09/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1681 | B0_1043,106,21,utf-8,Apache,NA,US,NY,18/01/1994 0:00,21/10/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1682 | B0_1281,106,18,utf-8,None,65670,US,IL,19/12/1995 0:00,8/06/2015 0:00,0,0,0,0,0,0,0,0,0,0,0 1683 | B0_2249,106,18,UTF-8,Apache,75176,US,MA,23/03/1999 0:00,19/03/2016 0:00,7,5,5,630,7,8,508,630,7,0,0 1684 | B0_313,106,19,us-ascii,Microsoft-HTTPAPI/2.0,324,US,CO,27/01/2011 0:00,5/01/2017 0:00,18,13,4,3381,24,22,14656,3851,24,6,0 1685 | B0_526,106,19,UTF-8,Apache/2.4.7 (Ubuntu),15058,US,NY,29/03/1994 0:00,26/03/2017 0:00,54,3,5,5078,60,61,68512,5512,60,6,0 1686 | B0_925,106,22,UTF-8,nginx/1.8.0,6298,US,CA,13/01/1996 0:00,11/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1687 | B0_2236,107,23,UTF-8,Apache,25886,US,NY,18/01/1994 0:00,21/10/2016 0:00,6,3,2,564,6,4,244,564,6,0,0 1688 | B0_1302,108,21,ISO-8859-1,nginx,162,US,CA,28/02/1994 5:00,16/01/2017 17:49,0,0,0,0,0,0,0,0,0,0,0 1689 | B0_301,108,23,utf-8,Microsoft-IIS/7.5,NA,US,NJ,26/06/1996 0:00,22/05/2015 0:00,9,0,3,1481,13,12,1327,1773,13,4,0 1690 | B0_512,108,18,utf-8,nginx,NA,US,VA,16/05/1995 4:00,14/01/2017 16:52,28,20,1,4422,36,34,44454,4982,36,8,0 1691 | B0_851,109,20,ISO-8859-1,Varnish,9,US,DC,16/07/2007 0:00,12/07/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1692 | B0_872,109,18,utf-8,nginx/1.7.12,33481,US,FL,1/02/1994 0:00,28/04/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1693 | B0_1034,110,21,UTF-8,Apache,42290,None,None,22/05/2009 0:00,7/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1694 | B0_46,110,15,ISO-8859-1,Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.3.6,22264,US,Florida,10/03/2006 0:00,14/02/2016 0:00,8,4,3,822,12,13,1527,1178,12,4,0 1695 | B0_188,111,22,UTF-8,Apache/2,12027,PA,PANAMA,18/12/2006 0:00,25/11/2016 0:00,13,1,7,1524,17,12,1603,1844,17,4,0 1696 | B0_466,112,19,UTF-8,Apache,NA,None,None,8/04/2009 0:00,9/04/2017 0:00,6,1,4,728,8,17,1180,888,8,2,0 1697 | B0_877,112,19,ISO-8859-1,nginx,162,us,California,10/09/1998 0:00,17/02/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1698 | B0_1120,113,18,UTF-8,Apache,39517,US,MA,23/03/1999 0:00,19/03/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1699 | B0_2018,113,21,ISO-8859-1,Boston.com Frontend,16230,US,MA,26/06/1995 0:00,13/11/2013 0:00,7,6,3,606,7,9,595,606,7,0,0 1700 | B0_1135,114,17,ISO-8859-1,nginx,162,None,None,28/12/2007 0:00,21/02/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1701 | B0_2092,114,23,utf-8,cloudflare-nginx,NA,US,DE,28/07/1999 0:00,10/09/2016 0:00,4,2,3,396,4,4,246,396,4,0,0 1702 | B0_2252,114,19,UTF-8,cloudflare-nginx,NA,CA,bc,28/02/2002 0:00,29/11/2014 0:00,15,4,7,1062,15,11,702,1062,15,0,0 1703 | B0_690,114,18,ISO-8859-1,None,36816,NL,Noord-Holland,8/02/1999 0:00,13/07/2014 0:00,59,47,11,6945,71,71,62932,7895,71,12,0 1704 | B0_1322,115,18,UTF-8,Jetty(9.0.z-SNAPSHOT),NA,US,NY,12/03/1999 0:00,16/11/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1705 | B0_135,115,20,UTF-8,Apache,10315,US,NY,18/01/1994 0:00,21/10/2016 0:00,13,3,3,1984,19,18,2183,2484,19,6,0 1706 | B0_411,115,19,ISO-8859-1,nginx,NA,US,NY,16/06/2000 17:03,11/08/2015 20:35,47,10,10,4284,53,41,28130,4772,53,6,0 1707 | B0_1014,116,19,ISO-8859-1,None,NA,FR,Paris,27/02/1995 0:00,28/01/2017 0:00,0,0,0,0,0,0,0,0,0,0,0 1708 | B0_257,116,18,us-ascii,Microsoft-HTTPAPI/2.0,324,CA,ON,13/02/1999 0:00,10/05/2016 0:00,24,0,4,2314,28,38,43123,2616,28,4,0 1709 | B0_605,116,18,UTF-8,Apache,NA,US,MO,12/06/2001 20:58,10/06/2016 13:57,23,17,8,1970,27,26,2183,2262,27,4,0 1710 | B0_166,117,22,UTF-8,nginx,NA,None,None,23/05/1995 0:00,21/05/2015 0:00,21,6,5,2278,27,25,2847,2758,27,6,0 1711 | B0_452,117,19,UTF-8,Apache/2.2.15 (CentOS),6804,None,None,16/01/2008 0:00,2/03/2017 0:00,20,0,1,4317,24,22,21620,4637,24,4,0 1712 | B0_35,118,28,UTF-8,nginx,NA,US,CA,3/03/2000 0:00,12/01/2017 0:00,10,2,6,970,14,11,1484,1298,14,4,0 1713 | B0_561,118,23,utf-8,ebay server,NA,US,CA,4/08/1995 0:00,26/01/2017 0:00,30,3,6,2624,34,33,30904,2904,34,4,0 1714 | B0_398,120,20,us-ascii,Microsoft-HTTPAPI/2.0,324,US,NJ,31/07/1997 0:00,12/11/2015 0:00,73,0,3,5466,77,78,97306,5774,77,4,0 1715 | B0_529,120,20,UTF-8,Apache,100163,US,MA,26/06/1995 0:00,13/11/2013 0:00,15,2,6,1692,19,18,1627,2012,19,4,0 1716 | M4_29,122,22,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1717 | M4_38,122,23,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1718 | B0_2149,122,23,UTF-8,My Arse,6121,US,Arizona,4/03/2006 0:00,14/01/2012 0:00,23,18,8,2126,23,20,1272,2126,23,0,0 1719 | B0_425,122,21,ISO-8859-1,Apache,892,None,None,1/11/2000 0:00,27/01/2017 0:00,21,2,7,3425,23,16,12391,3591,23,2,0 1720 | M4_31,123,24,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1721 | M4_42,123,25,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1722 | B0_1015,123,18,UTF-8,Apache,73927,US,MA,23/03/1999 0:00,19/03/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1723 | B0_143,123,24,UTF-8,nginx,NA,US,NJ,26/05/1994 0:00,21/05/2016 0:00,95,89,9,7556,99,157,244958,7848,99,4,0 1724 | B0_422,123,21,UTF-8,Apache,20,US,CA,18/12/2008 0:00,19/12/2016 0:00,11,0,2,1344,15,13,1927,1652,15,4,0 1725 | B0_54,123,21,utf-8,Apache/2.4.7 (Ubuntu),5268,None,None,31/08/2003 0:00,31/03/2016 0:00,20,0,4,1675,22,6,456,1823,22,2,0 1726 | M4_53,124,23,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1727 | M4_59,124,24,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1728 | B0_103,125,20,utf-8,nginx,NA,US,California,24/09/2006 0:00,26/08/2015 0:00,46,37,6,4871,50,56,81223,5159,50,4,0 1729 | M4_33,126,25,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1730 | M4_36,126,24,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1731 | M4_51,126,23,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1732 | M4_58,126,25,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1733 | B0_145,126,22,utf-8,IdeaWebServer/v0.80,NA,US,IL,3/06/1997 0:00,1/06/2016 0:00,7,0,2,985,13,12,1496,1433,13,6,0 1734 | B0_2080,126,22,utf-8,Microsoft-IIS/7.5,9032,None,None,29/04/1999 0:00,29/03/2017 0:00,2,2,1,356,2,4,246,356,2,0,0 1735 | B0_719,126,19,utf-8,Apache/2.4.17 (Unix) OpenSSL/1.0.1e-fips PHP/5.6.19,6244,CH,Zug,22/06/1998 0:00,20/05/2016 0:00,10,0,4,1368,16,15,3046,1850,16,6,0 1736 | B0_2226,128,25,UTF-8,Apache,29840,UK,None,18/04/1995 0:00,14/11/2016 0:00,4,3,2,432,4,7,432,432,4,0,0 1737 | M4_37,129,25,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1738 | B0_2072,129,18,UTF-8,Apache,52552,US,MA,23/03/1999 0:00,19/03/2016 0:00,9,3,5,702,9,4,244,702,9,0,0 1739 | M0_118,131,36,ISO-8859-1,cloudflare-nginx,NA,US,WA,11/01/1999 0:00,4/04/2017 0:00,16,5,6,1020,16,8,508,1020,16,0,1 1740 | M4_52,132,26,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1741 | M4_60,132,27,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,1,1,1,90,1,4,354,90,1,0,1 1742 | M4_55,134,24,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1743 | M4_30,135,26,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1744 | M4_44,135,27,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1745 | M4_46,135,26,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1746 | B0_834,136,43,utf-8,None,649263,None,None,14/12/1999 0:00,27/05/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1747 | B0_1215,137,25,iso-8859-1,Apache/2,345,US,Arizona,28/01/2004 0:00,8/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1748 | B0_84,139,21,utf-8,Apache/2.2.15 (Red Hat),35170,None,None,None,None,47,3,8,3718,51,47,44519,4064,51,4,0 1749 | M4_50,140,26,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1750 | M4_34,141,27,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1751 | B0_583,141,24,UTF-8,ATS,NA,US,CA,18/01/1995 0:00,26/08/2015 0:00,31,7,6,3925,39,35,21489,4535,39,8,0 1752 | B0_744,141,30,UTF-8,openresty,NA,US,Arizona,28/03/2007 0:00,2/04/2016 0:00,14,2,6,1649,16,19,14395,1789,16,2,0 1753 | B0_531,142,22,ISO-8859-1,Apache/2.2.15 (CentOS) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips PHP/5.3.3,3929,US,IL,27/07/1995 0:00,8/06/2015 0:00,70,2,6,5398,74,68,137144,5740,74,4,0 1754 | M4_32,143,26,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1755 | M4_47,143,27,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1756 | B0_2233,143,22,ISO-8859-1,AkamaiGHost,374,US,DC,15/06/2006 0:00,22/06/2016 0:00,6,5,2,564,6,7,442,564,6,0,0 1757 | B0_412,144,21,utf-8,Apache,14060,None,None,27/09/2000 0:00,26/07/2016 0:00,21,0,4,2854,25,17,3490,3146,25,4,0 1758 | M4_28,145,26,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1759 | M4_40,145,27,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1760 | M4_56,145,29,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1761 | B0_216,145,31,UTF-8,None,38361,US,NY,10/08/1995 0:00,5/08/2016 0:00,10,3,3,1354,18,19,2517,2010,18,8,0 1762 | M4_49,146,27,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1763 | M4_57,146,28,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1764 | B0_221,146,24,UTF-8,nginx,11833,US,Arizona,13/07/1998 0:00,28/03/2017 0:00,29,20,8,4167,33,33,3181,4499,33,4,0 1765 | B0_1361,149,23,ISO-8859-1,None,6748,CA,Quebec,8/01/1997 0:00,2/06/2009 0:00,0,0,0,0,0,0,0,0,0,0,0 1766 | M4_35,150,26,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1767 | M4_54,151,29,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1768 | B0_755,154,21,UTF-8,None,11104,US,UT,29/07/1998 4:00,17/03/2016 4:34,33,10,8,3764,41,23,7356,4412,41,8,0 1769 | M4_62,156,31,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,1,1,1,90,1,5,416,90,1,0,1 1770 | B0_62,160,29,UTF-8,None,36829,US,CA,14/08/1997 0:00,14/06/2016 0:00,19,3,7,2402,25,22,4491,2900,25,6,0 1771 | B0_2237,161,23,iso-8859-1,Apache/2.4.18 (Ubuntu),417,None,None,23/11/2010 0:00,20/11/2015 0:00,7,7,2,582,7,11,752,582,7,0,0 1772 | B0_2099,169,25,utf-8,cloudflare-nginx,NA,BS,New Providence,20/12/2008 0:00,11/12/2015 0:00,6,3,4,552,6,9,564,552,6,0,0 1773 | M4_43,170,17,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1774 | M4_61,173,34,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,1,1,1,90,1,5,416,90,1,0,1 1775 | M4_39,178,16,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1776 | B0_156,183,29,ISO-8859-1,Microsoft-IIS/7.5; litigation_essentials.lexisnexis.com 9999,4890,US,NY,26/06/1997 0:00,18/11/2014 0:00,22,2,7,2062,30,26,8161,2742,30,8,0 1777 | M4_45,194,17,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1778 | M4_48,194,16,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,3,186,0,0,0,1 1779 | M4_41,198,17,UTF-8,Apache,NA,ES,Barcelona,17/09/2008 0:00,2/09/2016 0:00,0,0,0,0,0,2,124,0,0,0,1 1780 | B0_162,201,34,utf-8,Apache/2.2.16 (Debian),8904,US,FL,15/02/1999 0:00,15/07/2015 0:00,83,2,6,6631,87,89,132181,6945,87,4,0 1781 | B0_1152,234,34,ISO-8859-1,cloudflare-nginx,NA,US,CA,1/04/1998 0:00,9/12/2016 0:00,0,0,0,0,0,0,0,0,0,0,0 1782 | B0_676,249,40,utf-8,Microsoft-IIS/8.5,24435,US,Wisconsin,14/11/2008 0:00,20/11/2013 0:00,19,6,11,2314,25,28,3039,2776,25,6,0 1783 | --------------------------------------------------------------------------------