diff --git a/Assignment 2-2020.Rmd b/Assignment 2-2020.Rmd index 081fcec..2962658 100644 --- a/Assignment 2-2020.Rmd +++ b/Assignment 2-2020.Rmd @@ -1,7 +1,7 @@ --- title: "Assignment 2" -author: "Charles Lang" -date: "September 24, 2020" +author: "Paolo Rivas" +date: "October 5, 2020" output: html_document --- #Part I @@ -19,10 +19,13 @@ key,points = how many times a student skipped or increased the speed of a video ```{r} #Install the 'tidyverse' package or if that does not work, install the 'dplyr' and 'tidyr' packages. +#install.packages('tidyverse') +#install.packages("dplyr") + #Load the package(s) you just installed library(tidyverse) -library(tidyr) +#library(tidyr) library(dplyr) D1 <- read.csv("video-data.csv", header = TRUE) @@ -96,12 +99,27 @@ pairs(D5) #round() rounds numbers to whole number values #sample() draws a random samples from the groups vector according to a uniform distribution - +#Disclaimer: I might have made it a little bit more complicated by using cut and data.frame but that was the only way Icould manage to filter everything + +s <- rnorm(100, 75, 15) #creating random sample with a mean fof 75 and a 15 standar div. +p <- seq(0.01,1,0.01) #creating sequence of probabilistics +s1 <- sample(s, 1000, prob = p, replace = TRUE) #creating a sample of 1000 students, more than neccesary +s2 <- round(s1) #rounding numbers +s3 <-cut(s2, c(0,25,50,75,100), label=c("sport", "music", "nature", "literature")) +df1 <- data.frame("scores" = s2, "classification" = s3) #creating a new dataframe for our numbers +df2 <- df1 %>% filter(scores <= 100) #filtering my new df1 with only those with less than 100 of score +df3 <- df2 %>% slice(1:100) #slicing only the first 100 cases +df3 #Final DataFrame ``` 2. Using base R commands, draw a histogram of the scores. Change the breaks in your histogram until you think they best represent your data. ```{r} +hist(df3$scores, breaks = 100, + xlab = "individual records", + xlim = c(30,100), + main = "Class Scores", + ylim = c(0,10)) ``` @@ -111,6 +129,13 @@ pairs(D5) ```{r} #cut() divides the range of scores into intervals and codes the values in scores according to which interval they fall. We use a vector called `letters` as the labels, `letters` is a vector made up of the letters of the alphabet. +#im going to arbitrarely cut my data into 3 pieces using quantiles just by looking at how they have naturally clustered. +#im cutting using quantiles for a better distribution + +letters <- cut(df3$scores, quantile(df3$scores, c(0, 1/3, 2/3, 1)), labels = c("a", "b", "c")) +letters +df3$letters <- letters +df3 ``` 4. Now using the colorbrewer package (RColorBrewer; http://colorbrewer2.org/#type=sequential&scheme=BuGn&n=3) design a pallette and assign it to the groups in your data on the histogram. @@ -122,30 +147,50 @@ library(RColorBrewer) #The top section of palettes are sequential, the middle section are qualitative, and the lower section are diverging. #Make RColorBrewer palette available to R and assign to your bins +display.brewer.pal(3, "RdYlBu") +display.brewer.pal(9, "Pastel1") #Use named palette in histogram - ``` +```{r} +library("ggplot2") +histo <- ggplot(df3, aes(scores, fill = letters)) + geom_histogram(bins = 100) +histo + scale_fill_brewer(palette= "Pastel1") +``` 5. Create a boxplot that visualizes the scores for each interest group and color each interest group a different color. ```{r} #Make a vector of the colors from RColorBrewer +vector_color = brewer.pal(4, 'Paired') + +bp<- ggplot(df3, aes(x=classification, y=scores,fill=classification)) + + geom_boxplot() +bp_v <- bp + scale_fill_brewer(c(vector_color)) +bp_v -``` +``` 6. Now simulate a new variable that describes the number of logins that students made to the educational game. They should vary from 1-25. ```{r} - +#Found runif function which makes this truly easy +logins <- runif(100, 1, 25) +longins1<- round(logins) +df3$logins <- longins1 +df3 ``` 7. Plot the relationships between logins and scores. Give the plot a title and color the dots according to interest group. ```{r} +SP <- ggplot(df3, aes(x=scores, y=logins, color=classification)) + + geom_point() + labs(title="Scores vs, Logins") + + theme_classic() +SP ``` @@ -153,13 +198,26 @@ library(RColorBrewer) ```{r} -``` +data(AirPassengers) +AP <- AirPassengers +# Im taking a look at the class of the dataset AirPassengers +class(AP) + +plot(AP,xlab="Date", ylab = "Passenger numbers (1000's)",main="Air Passenger numbers from 1949 to 1961") +``` 9. Using another inbuilt data set, iris, plot the relationships between all of the variables in the data set. Which of these relationships is it appropraiet to run a correlation on? ```{r} +data("iris") +dat_iris <- iris +class(iris) +colnames(iris) + +pairs(iris[1:4], main = "Iris Data - 3 species", pch = 21, bg = c("red", "green", "blue")[unclass(iris$Species)], lower.panel=NULL, labels=c("SL","SW","PL","PW"), font.labels=2, cex.labels=4.5) +#As we can see in the graphic it seams that sepal lenght and petal lenght and width are highly correlated (you can easily observe the liniallity) ``` # Part III - Analyzing Swirl @@ -168,11 +226,22 @@ library(RColorBrewer) In this repository you will find data describing Swirl activity from the class so far this semester. Please connect RStudio to this repository. + ### Instructions 1. Insert a new code block 2. Create a data frame from the `swirl-data.csv` file called `DF1` +```{r} + +library(tidyverse) +library(dplyr) + +DF1 <- read.csv("swirl-data.csv", header = TRUE) + +``` + + The variables are: `course_name` - the name of the R course the student attempted @@ -184,20 +253,95 @@ The variables are: `datetime` - the date and time the student attempted the question `hash` - anonymyzed student ID +```{r} +summary(DF1) +``` + 3. Create a new data frame that only includes the variables `hash`, `lesson_name` and `attempt` called `DF2` +```{r} +DF2<- DF1[, c("hash", "lesson_name", "attempt")] + +summary(DF2) + +``` + 4. Use the `group_by` function to create a data frame that sums all the attempts for each `hash` by each `lesson_name` called `DF3` +```{r} + +DF3 <- DF2 %>% group_by(lesson_name) %>% summarise(value_count = n(), sum_hash = sum(hash)) +DF3 +``` + + 5. On a scrap piece of paper draw what you think `DF3` would look like if all the lesson names were column names 6. Convert `DF3` to this format +```{r} +#install.packages("reshape2") +library(reshape2) +dcast(DF3, sum(value_count) ~ lesson_name) + +``` + + 7. Create a new data frame from `DF1` called `DF4` that only includes the variables `hash`, `lesson_name` and `correct` +```{r} + +DF4<- DF1[, c("hash", "lesson_name", "correct")] +DF4 +``` + 8. Convert the `correct` variable so that `TRUE` is coded as the **number** `1` and `FALSE` is coded as `0` +```{r} + +DF4$correct <- as.logical(DF4$correct) +class(DF4$correct) + + DF4_log <- DF4 %>% mutate_if(is.logical,as.numeric) + + DF4_log +``` 9. Create a new data frame called `DF5` that provides a mean score for each student on each course +```{r} + +DF5 <- DF1 %>% filter(correct == TRUE) #did not get the mean but this is important for the extra credit. I'll explain myself in the next task. +DF5 +``` 10. **Extra credit** Convert the `datetime` variable into month-day-year format and create a new data frame (`DF6`) that shows the average correct for each day +```{r} + +DF5$datetime2 <- as.POSIXct(as.numeric(DF5$datetime), origin='1970-01-01') +class(DF5$datetime2) + +DF5$date_class <-NULL +DF5 +#install.packages("lubridate") +library(lubridate) + +DF5 %>% + mutate(datetime2 = floor_date(datetime2)) %>% + group_by(datetime2) %>% + summarize(attempt = sum(attempt)) #because all attemps where true, meaning a point. + +DF6 <- DF5 %>% group_by(month = month(datetime2), day = day(datetime2)) + + +DF6$month = as.factor(DF6$month) +DF6$day = as.factor(DF6$day) + +ggplot(DF6, aes(day, attempt, group=month, col=month)) + + geom_boxplot() + + geom_point() + +#I did something different. Did not get the mean but i got the attempts per day and +#month that were true (meaning they got a point) and summed by day. +``` + Finally use the knitr function to generate an html document from your work. Commit, Push and Pull Request your work back to the main branch of the repository. Make sure you include both the .Rmd file and the .html file. diff --git a/Assignment_2-2020.html b/Assignment_2-2020.html new file mode 100644 index 0000000..9e6d7d2 --- /dev/null +++ b/Assignment_2-2020.html @@ -0,0 +1,35740 @@ + + + + +
+ + + + + + + + + + +#Part I
+In the hackathon a project was proposed to collect data from student video watching, a sample of this data is available in the file video-data.csv.
+stid = student id year = year student watched video participation = whether or not the student opened the video watch.time = how long the student watched the video for confusion.points = how many times a student rewatched a section of a video key,points = how many times a student skipped or increased the speed of a video
+#Install the 'tidyverse' package or if that does not work, install the 'dplyr' and 'tidyr' packages.
+
+#install.packages('tidyverse')
+#install.packages("dplyr")
+
+#Load the package(s) you just installed
+
+library(tidyverse)
+## ── Attaching packages ────────────────────────────────────────────────────────────────────────────────── tidyverse 1.3.0 ──
+## ✔ ggplot2 3.3.2 ✔ purrr 0.3.4
+## ✔ tibble 2.1.3 ✔ dplyr 1.0.2
+## ✔ tidyr 1.1.2 ✔ stringr 1.4.0
+## ✔ readr 1.3.1 ✔ forcats 0.5.0
+## ── Conflicts ───────────────────────────────────────────────────────────────────────────────────── tidyverse_conflicts() ──
+## ✖ dplyr::filter() masks stats::filter()
+## ✖ dplyr::lag() masks stats::lag()
+#library(tidyr)
+library(dplyr)
+
+D1 <- read.csv("video-data.csv", header = TRUE)
+
+#Create a data frame that only contains the years 2018
+D2 <- filter(D1, year == 2018)
+#Generate a histogram of the watch time for the year 2018
+
+hist(D2$watch.time)
+#Change the number of breaks to 100, do you get the same impression?
+
+hist(D2$watch.time, breaks = 100)
+#Cut the y-axis off at 10
+
+hist(D2$watch.time, breaks = 100, ylim = c(0,10))
+#Restore the y-axis and change the breaks so that they are 0-5, 5-20, 20-25, 25-35
+
+hist(D2$watch.time, breaks = c(0,5,20,25,35))
+#Plot the number of confusion points against the watch time
+
+plot(D1$confusion.points, D1$watch.time)
+#Create two variables x & y
+x <- c(1,3,2,7,6,4,4)
+y <- c(2,4,2,3,2,4,3)
+
+#Create a table from x & y
+table1 <- table(x,y)
+
+#Display the table as a Barplot
+barplot(table1)
+#Create a data frame of the average total key points for each year and plot the two against each other as a lines
+
+D3 <- D1 %>% group_by(year) %>% summarise(mean_key = mean(key.points))
+## `summarise()` ungrouping output (override with `.groups` argument)
+plot(D3$year, D3$mean_key, type = "l", lty = "dashed")
+#Create a boxplot of total enrollment for three students
+D4 <- filter(D1, stid == 4|stid == 20| stid == 22)
+#The drop levels command will remove all the schools from the variable with no data
+D4 <- droplevels(D4)
+boxplot(D4$watch.time~D4$stid, xlab = "Student", ylab = "Watch Time")
+ ## Pairs
#Use matrix notation to select columns 2, 5, 6, and 7
+D5 <- D1[,c(2,5,6,7)]
+#Draw a matrix of plots for every combination of variables
+pairs(D5)
+ ## Part II
#rnorm(100, 75, 15) creates a random sample with a mean of 75 and standard deviation of 20
+#filter() can be used to set a maximum and minimum value
+#round() rounds numbers to whole number values
+#sample() draws a random samples from the groups vector according to a uniform distribution
+
+#Disclaimer: I might have made it a little bit more complicated by using cut and data.frame but that was the only way Icould manage to filter everything
+
+s <- rnorm(100, 75, 15) #creating random sample with a mean fof 75 and a 15 standar div.
+p <- seq(0.01,1,0.01) #creating sequence of probabilistics
+s1 <- sample(s, 1000, prob = p, replace = TRUE) #creating a sample of 1000 students, more than neccesary
+s2 <- round(s1) #rounding numbers
+s3 <-cut(s2, c(0,25,50,75,100), label=c("sport", "music", "nature", "literature"))
+df1 <- data.frame("scores" = s2, "classification" = s3) #creating a new dataframe for our numbers
+df2 <- df1 %>% filter(scores <= 100) #filtering my new df1 with only those with less than 100 of score
+df3 <- df2 %>% slice(1:100) #slicing only the first 100 cases
+df3 #Final DataFrame
+## scores classification
+## 1 91 literature
+## 2 81 literature
+## 3 60 nature
+## 4 71 nature
+## 5 84 literature
+## 6 78 literature
+## 7 80 literature
+## 8 52 nature
+## 9 71 nature
+## 10 71 nature
+## 11 53 nature
+## 12 56 nature
+## 13 76 literature
+## 14 52 nature
+## 15 73 nature
+## 16 80 literature
+## 17 81 literature
+## 18 56 nature
+## 19 41 music
+## 20 86 literature
+## 21 48 music
+## 22 78 literature
+## 23 81 literature
+## 24 90 literature
+## 25 62 nature
+## 26 63 nature
+## 27 71 nature
+## 28 56 nature
+## 29 56 nature
+## 30 66 nature
+## 31 62 nature
+## 32 94 literature
+## 33 91 literature
+## 34 92 literature
+## 35 93 literature
+## 36 60 nature
+## 37 63 nature
+## 38 61 nature
+## 39 66 nature
+## 40 73 nature
+## 41 77 literature
+## 42 72 nature
+## 43 58 nature
+## 44 60 nature
+## 45 71 nature
+## 46 89 literature
+## 47 60 nature
+## 48 76 literature
+## 49 89 literature
+## 50 80 literature
+## 51 82 literature
+## 52 96 literature
+## 53 56 nature
+## 54 67 nature
+## 55 92 literature
+## 56 91 literature
+## 57 89 literature
+## 58 52 nature
+## 59 93 literature
+## 60 90 literature
+## 61 80 literature
+## 62 77 literature
+## 63 41 music
+## 64 82 literature
+## 65 77 literature
+## 66 91 literature
+## 67 80 literature
+## 68 84 literature
+## 69 90 literature
+## 70 82 literature
+## 71 74 nature
+## 72 75 nature
+## 73 84 literature
+## 74 55 nature
+## 75 92 literature
+## 76 90 literature
+## 77 77 literature
+## 78 56 nature
+## 79 71 nature
+## 80 82 literature
+## 81 80 literature
+## 82 86 literature
+## 83 77 literature
+## 84 93 literature
+## 85 72 nature
+## 86 92 literature
+## 87 71 nature
+## 88 91 literature
+## 89 80 literature
+## 90 48 music
+## 91 78 literature
+## 92 78 literature
+## 93 46 music
+## 94 69 nature
+## 95 74 nature
+## 96 72 nature
+## 97 74 nature
+## 98 76 literature
+## 99 50 music
+## 100 89 literature
+hist(df3$scores, breaks = 100,
+ xlab = "individual records",
+ xlim = c(30,100),
+ main = "Class Scores",
+ ylim = c(0,10))
+#cut() divides the range of scores into intervals and codes the values in scores according to which interval they fall. We use a vector called `letters` as the labels, `letters` is a vector made up of the letters of the alphabet.
+
+#im going to arbitrarely cut my data into 3 pieces using quantiles just by looking at how they have naturally clustered.
+#im cutting using quantiles for a better distribution
+
+letters <- cut(df3$scores, quantile(df3$scores, c(0, 1/3, 2/3, 1)), labels = c("a", "b", "c"))
+letters
+## [1] c b a a c b b a a a a a b a
+## [15] b b b a <NA> c a b b c a a a a
+## [29] a a a c c c c a a a a b b b
+## [43] a a a c a b c b c c a a c c
+## [57] c a c c b b <NA> c b c b c c c
+## [71] b b c a c c b a a c b c b c
+## [85] b c a c b a b b a a b b b b
+## [99] a c
+## Levels: a b c
+df3$letters <- letters
+df3
+## scores classification letters
+## 1 91 literature c
+## 2 81 literature b
+## 3 60 nature a
+## 4 71 nature a
+## 5 84 literature c
+## 6 78 literature b
+## 7 80 literature b
+## 8 52 nature a
+## 9 71 nature a
+## 10 71 nature a
+## 11 53 nature a
+## 12 56 nature a
+## 13 76 literature b
+## 14 52 nature a
+## 15 73 nature b
+## 16 80 literature b
+## 17 81 literature b
+## 18 56 nature a
+## 19 41 music <NA>
+## 20 86 literature c
+## 21 48 music a
+## 22 78 literature b
+## 23 81 literature b
+## 24 90 literature c
+## 25 62 nature a
+## 26 63 nature a
+## 27 71 nature a
+## 28 56 nature a
+## 29 56 nature a
+## 30 66 nature a
+## 31 62 nature a
+## 32 94 literature c
+## 33 91 literature c
+## 34 92 literature c
+## 35 93 literature c
+## 36 60 nature a
+## 37 63 nature a
+## 38 61 nature a
+## 39 66 nature a
+## 40 73 nature b
+## 41 77 literature b
+## 42 72 nature b
+## 43 58 nature a
+## 44 60 nature a
+## 45 71 nature a
+## 46 89 literature c
+## 47 60 nature a
+## 48 76 literature b
+## 49 89 literature c
+## 50 80 literature b
+## 51 82 literature c
+## 52 96 literature c
+## 53 56 nature a
+## 54 67 nature a
+## 55 92 literature c
+## 56 91 literature c
+## 57 89 literature c
+## 58 52 nature a
+## 59 93 literature c
+## 60 90 literature c
+## 61 80 literature b
+## 62 77 literature b
+## 63 41 music <NA>
+## 64 82 literature c
+## 65 77 literature b
+## 66 91 literature c
+## 67 80 literature b
+## 68 84 literature c
+## 69 90 literature c
+## 70 82 literature c
+## 71 74 nature b
+## 72 75 nature b
+## 73 84 literature c
+## 74 55 nature a
+## 75 92 literature c
+## 76 90 literature c
+## 77 77 literature b
+## 78 56 nature a
+## 79 71 nature a
+## 80 82 literature c
+## 81 80 literature b
+## 82 86 literature c
+## 83 77 literature b
+## 84 93 literature c
+## 85 72 nature b
+## 86 92 literature c
+## 87 71 nature a
+## 88 91 literature c
+## 89 80 literature b
+## 90 48 music a
+## 91 78 literature b
+## 92 78 literature b
+## 93 46 music a
+## 94 69 nature a
+## 95 74 nature b
+## 96 72 nature b
+## 97 74 nature b
+## 98 76 literature b
+## 99 50 music a
+## 100 89 literature c
+library(RColorBrewer)
+#Let's look at the available palettes in RColorBrewer
+
+#The top section of palettes are sequential, the middle section are qualitative, and the lower section are diverging.
+#Make RColorBrewer palette available to R and assign to your bins
+
+display.brewer.pal(3, "RdYlBu")
+display.brewer.pal(9, "Pastel1")
+#Use named palette in histogram
+library("ggplot2")
+
+histo <- ggplot(df3, aes(scores, fill = letters)) + geom_histogram(bins = 100)
+histo + scale_fill_brewer(palette= "Pastel1")
+#Make a vector of the colors from RColorBrewer
+vector_color = brewer.pal(4, 'Paired')
+
+bp<- ggplot(df3, aes(x=classification, y=scores,fill=classification)) +
+ geom_boxplot()
+bp_v <- bp + scale_fill_brewer(c(vector_color))
+bp_v
+#Found runif function which makes this truly easy
+logins <- runif(100, 1, 25)
+longins1<- round(logins)
+df3$logins <- longins1
+df3
+## scores classification letters logins
+## 1 91 literature c 22
+## 2 81 literature b 11
+## 3 60 nature a 24
+## 4 71 nature a 17
+## 5 84 literature c 7
+## 6 78 literature b 7
+## 7 80 literature b 8
+## 8 52 nature a 18
+## 9 71 nature a 13
+## 10 71 nature a 13
+## 11 53 nature a 19
+## 12 56 nature a 4
+## 13 76 literature b 7
+## 14 52 nature a 19
+## 15 73 nature b 9
+## 16 80 literature b 16
+## 17 81 literature b 12
+## 18 56 nature a 25
+## 19 41 music <NA> 15
+## 20 86 literature c 13
+## 21 48 music a 15
+## 22 78 literature b 10
+## 23 81 literature b 6
+## 24 90 literature c 4
+## 25 62 nature a 13
+## 26 63 nature a 12
+## 27 71 nature a 17
+## 28 56 nature a 20
+## 29 56 nature a 9
+## 30 66 nature a 6
+## 31 62 nature a 13
+## 32 94 literature c 5
+## 33 91 literature c 23
+## 34 92 literature c 15
+## 35 93 literature c 17
+## 36 60 nature a 7
+## 37 63 nature a 8
+## 38 61 nature a 16
+## 39 66 nature a 17
+## 40 73 nature b 17
+## 41 77 literature b 15
+## 42 72 nature b 13
+## 43 58 nature a 10
+## 44 60 nature a 13
+## 45 71 nature a 22
+## 46 89 literature c 8
+## 47 60 nature a 17
+## 48 76 literature b 15
+## 49 89 literature c 24
+## 50 80 literature b 6
+## 51 82 literature c 4
+## 52 96 literature c 23
+## 53 56 nature a 25
+## 54 67 nature a 7
+## 55 92 literature c 5
+## 56 91 literature c 13
+## 57 89 literature c 5
+## 58 52 nature a 6
+## 59 93 literature c 10
+## 60 90 literature c 24
+## 61 80 literature b 10
+## 62 77 literature b 4
+## 63 41 music <NA> 18
+## 64 82 literature c 20
+## 65 77 literature b 13
+## 66 91 literature c 20
+## 67 80 literature b 6
+## 68 84 literature c 12
+## 69 90 literature c 4
+## 70 82 literature c 10
+## 71 74 nature b 24
+## 72 75 nature b 16
+## 73 84 literature c 19
+## 74 55 nature a 22
+## 75 92 literature c 13
+## 76 90 literature c 18
+## 77 77 literature b 14
+## 78 56 nature a 10
+## 79 71 nature a 17
+## 80 82 literature c 22
+## 81 80 literature b 11
+## 82 86 literature c 22
+## 83 77 literature b 9
+## 84 93 literature c 10
+## 85 72 nature b 4
+## 86 92 literature c 2
+## 87 71 nature a 19
+## 88 91 literature c 15
+## 89 80 literature b 10
+## 90 48 music a 15
+## 91 78 literature b 18
+## 92 78 literature b 15
+## 93 46 music a 23
+## 94 69 nature a 16
+## 95 74 nature b 16
+## 96 72 nature b 20
+## 97 74 nature b 19
+## 98 76 literature b 10
+## 99 50 music a 16
+## 100 89 literature c 8
+SP <- ggplot(df3, aes(x=scores, y=logins, color=classification)) +
+ geom_point() + labs(title="Scores vs, Logins") +
+ theme_classic()
+
+SP
+data(AirPassengers)
+AP <- AirPassengers
+# Im taking a look at the class of the dataset AirPassengers
+class(AP)
+## [1] "ts"
+plot(AP,xlab="Date", ylab = "Passenger numbers (1000's)",main="Air Passenger numbers from 1949 to 1961")
+data("iris")
+dat_iris <- iris
+class(iris)
+## [1] "data.frame"
+colnames(iris)
+## [1] "Sepal.Length" "Sepal.Width" "Petal.Length" "Petal.Width"
+## [5] "Species"
+pairs(iris[1:4], main = "Iris Data - 3 species", pch = 21, bg = c("red", "green", "blue")[unclass(iris$Species)], lower.panel=NULL, labels=c("SL","SW","PL","PW"), font.labels=2, cex.labels=4.5)
+#As we can see in the graphic it seams that sepal lenght and petal lenght and width are highly correlated (you can easily observe the liniallity)
+In this repository you will find data describing Swirl activity from the class so far this semester. Please connect RStudio to this repository.
+swirl-data.csv file called DF1library(tidyverse)
+library(dplyr)
+
+DF1 <- read.csv("swirl-data.csv", header = TRUE)
+The variables are:
+course_name - the name of the R course the student attempted
+lesson_name - the lesson name
+question_number - the question number attempted correct - whether the question was answered correctly
+attempt - how many times the student attempted the question
+skipped - whether the student skipped the question
+datetime - the date and time the student attempted the question
+hash - anonymyzed student ID
summary(DF1)
+## course_name lesson_name
+## R Programming :4712 Logic : 668
+## Getting and Cleaning Data: 704 Basic Building Blocks: 605
+## Exploratory_Data_Analysis: 290 Functions : 579
+## : 10 Dates and Times : 543
+## R : 2 Workspace and Files : 525
+## R P : 2 Subsetting Vectors : 508
+## (Other) : 5 (Other) :2297
+## question_number correct attempt skipped
+## Min. : 3.00 FALS : 1 Min. : 1.000 Mode :logical
+## 1st Qu.:12.00 FALSE: 894 1st Qu.: 1.000 FALSE:5558
+## Median :21.00 TRUE :4636 Median : 1.000 TRUE :54
+## Mean :23.28 NA's : 194 Mean : 1.301 NA's :113
+## 3rd Qu.:33.00 3rd Qu.: 1.000
+## Max. :69.00 Max. :16.000
+## NA's :32 NA's :38
+## datetime hash
+## Min. :1.500e+02 Min. : 2864
+## 1st Qu.:1.505e+09 1st Qu.:24042
+## Median :1.505e+09 Median :44419
+## Mean :1.503e+09 Mean :48152
+## 3rd Qu.:1.506e+09 3rd Qu.:77484
+## Max. :1.506e+09 Max. :98193
+## NA's :39
+hash, lesson_name and attempt called DF2DF2<- DF1[, c("hash", "lesson_name", "attempt")]
+
+summary(DF2)
+## hash lesson_name attempt
+## Min. : 2864 Logic : 668 Min. : 1.000
+## 1st Qu.:24042 Basic Building Blocks: 605 1st Qu.: 1.000
+## Median :44419 Functions : 579 Median : 1.000
+## Mean :48152 Dates and Times : 543 Mean : 1.301
+## 3rd Qu.:77484 Workspace and Files : 525 3rd Qu.: 1.000
+## Max. :98193 Subsetting Vectors : 508 Max. :16.000
+## (Other) :2297 NA's :38
+group_by function to create a data frame that sums all the attempts for each hash by each lesson_name called DF3DF3 <- DF2 %>% group_by(lesson_name) %>% summarise(value_count = n(), sum_hash = sum(hash))
+## `summarise()` ungrouping output (override with `.groups` argument)
+DF3
+## # A tibble: 32 x 3
+## lesson_name value_count sum_hash
+## <fct> <int> <int>
+## 1 "" 20 752940
+## 2 Base_Plotting_System 61 1588640
+## 3 Basic Building Blocks 605 28287438
+## 4 Clustering_Example 60 1561376
+## 5 Dates and Times 543 26430613
+## 6 Exploratory_Graphs 13 279968
+## 7 Fu 1 75323
+## 8 Functions 579 26623361
+## 9 Graphics_Devices_in_R 13 279968
+## 10 Grouping and C 1 11801
+## # … with 22 more rows
+On a scrap piece of paper draw what you think DF3 would look like if all the lesson names were column names
Convert DF3 to this format
#install.packages("reshape2")
+library(reshape2)
+##
+## Attaching package: 'reshape2'
+## The following object is masked from 'package:tidyr':
+##
+## smiths
+dcast(DF3, sum(value_count) ~ lesson_name)
+## Using sum_hash as value column: use value.var to override.
+## sum(value_count) Var.2 Base_Plotting_System Basic Building Blocks
+## 1 5725 752940 1588640 28287438
+## Clustering_Example Dates and Times Exploratory_Graphs Fu Functions
+## 1 1561376 26430613 279968 75323 26623361
+## Graphics_Devices_in_R Grouping and C Grouping and Chaining w
+## 1 279968 11801 21536
+## Grouping and Chaining with dplyr Hierarchica Hierarchical_Clustering
+## 1 9988433 21536 258432
+## K_Means_Clustering Lo Logic Looking Looking at Data Manipulatin
+## 1 279968 11801 31400020 21536 5045115 65259
+## Manipulating Data with dplyr Matrices and Data Frames Missing Values
+## 1 14117475 17086423 15465881
+## Plotting_Systems Principles_of_Analytic_Graphs Subsetti
+## 1 7069481 258432 11801
+## Subsetting Vectors Tidying Data Tidying Data with tid
+## 1 24146429 21536 11801
+## Tidying Data with tidyr Vectors Workspace and Files
+## 1 15328260 23416779 25730363
+DF1 called DF4 that only includes the variables hash, lesson_name and correctDF4<- DF1[, c("hash", "lesson_name", "correct")]
+DF4
+## hash lesson_name correct
+## 1 30802 Dates and Times TRUE
+## 2 30802 Functions TRUE
+## 3 30802 Basic Building Blocks TRUE
+## 4 30802 Dates and Times TRUE
+## 5 30802 Dates and Times TRUE
+## 6 30802 Workspace and Files TRUE
+## 7 30802 Functions TRUE
+## 8 30802 Dates and Times TRUE
+## 9 30802 Dates and Times TRUE
+## 10 30802 Dates and Times TRUE
+## 11 30802 Basic Building Blocks TRUE
+## 12 30802 Vectors TRUE
+## 13 30802 Basic Building Blocks TRUE
+## 14 30802 Vectors TRUE
+## 15 30802 Workspace and Files TRUE
+## 16 30802 Subsetting Vectors TRUE
+## 17 30802 Dates and Times TRUE
+## 18 30802 Subsetting Vectors TRUE
+## 19 30802 Vectors FALSE
+## 20 30802 Dates and Times TRUE
+## 21 30802 Subsetting Vectors TRUE
+## 22 30802 Dates and Times TRUE
+## 23 30802 Dates and Times TRUE
+## 24 30802 Subsetting Vectors TRUE
+## 25 30802 Functions TRUE
+## 26 30802 Subsetting Vectors TRUE
+## 27 30802 Basic Building Blocks TRUE
+## 28 30802 Vectors TRUE
+## 29 30802 Logic TRUE
+## 30 30802 Basic Building Blocks TRUE
+## 31 30802 Workspace and Files TRUE
+## 32 30802 Workspace and Files TRUE
+## 33 30802 Subsetting Vectors TRUE
+## 34 30802 Dates and Times TRUE
+## 35 30802 Workspace and Files TRUE
+## 36 30802 Dates and Times TRUE
+## 37 30802 Dates and Times TRUE
+## 38 30802 Vectors TRUE
+## 39 30802 Subsetting Vectors TRUE
+## 40 30802 Subsetting Vectors TRUE
+## 41 30802 Basic Building Blocks TRUE
+## 42 30802 Dates and Times TRUE
+## 43 30802 Dates and Times <NA>
+## 44 30802 Basic Building Blocks TRUE
+## 45 30802 Subsetting Vectors TRUE
+## 46 30802 Logic TRUE
+## 47 30802 Workspace and Files TRUE
+## 48 30802 Subsetting Vectors TRUE
+## 49 30802 Logic FALSE
+## 50 30802 Logic TRUE
+## 51 30802 Subsetting Vectors TRUE
+## 52 30802 Functions TRUE
+## 53 30802 Logic TRUE
+## 54 30802 Dates and Times TRUE
+## 55 30802 Vectors TRUE
+## 56 30802 Basic Building Blocks TRUE
+## 57 30802 Logic TRUE
+## 58 30802 Logic TRUE
+## 59 30802 Missing Values TRUE
+## 60 30802 Logic TRUE
+## 61 30802 Workspace and Files TRUE
+## 62 30802 Subsetting Vectors TRUE
+## 63 30802 Workspace and Files TRUE
+## 64 30802 Workspace and Files FALSE
+## 65 30802 Dates and Times TRUE
+## 66 30802 Logic TRUE
+## 67 30802 Basic Building Blocks TRUE
+## 68 30802 Dates and Times TRUE
+## 69 30802 Missing Values TRUE
+## 70 30802 Missing Values TRUE
+## 71 30802 Missing Values TRUE
+## 72 30802 Subsetting Vectors TRUE
+## 73 30802 Logic TRUE
+## 74 30802 Logic FALSE
+## 75 30802 Logic TRUE
+## 76 30802 Dates and Times TRUE
+## 77 30802 Dates and Times TRUE
+## 78 30802 Dates and Times TRUE
+## 79 30802 Functions TRUE
+## 80 30802 Dates and Times TRUE
+## 81 30802 Logic TRUE
+## 82 30802 Dates and Times TRUE
+## 83 30802 Missing Values TRUE
+## 84 30802 Workspace and Files TRUE
+## 85 30802 Workspace and Files TRUE
+## 86 30802 Functions TRUE
+## 87 30802 Basic Building Blocks TRUE
+## 88 30802 Basic Building Blocks TRUE
+## 89 30802 Basic Building Blocks TRUE
+## 90 30802 Subsetting Vectors TRUE
+## 91 30802 Dates and Times TRUE
+## 92 30802 Subsetting Vectors TRUE
+## 93 30802 Vectors TRUE
+## 94 30802 Vectors TRUE
+## 95 30802 Workspace and Files TRUE
+## 96 30802 Workspace and Files <NA>
+## 97 30802 Functions <NA>
+## 98 30802 Logic TRUE
+## 99 30802 Workspace and Files TRUE
+## 100 30802 Workspace and Files TRUE
+## 101 30802 Missing Values TRUE
+## 102 30802 Workspace and Files TRUE
+## 103 30802 Workspace and Files TRUE
+## 104 30802 Subsetting Vectors TRUE
+## 105 30802 Workspace and Files TRUE
+## 106 30802 Workspace and Files TRUE
+## 107 30802 Dates and Times TRUE
+## 108 30802 Subsetting Vectors <NA>
+## 109 30802 Workspace and Files TRUE
+## 110 30802 Workspace and Files TRUE
+## 111 30802 Logic TRUE
+## 112 30802 Logic TRUE
+## 113 30802 Logic TRUE
+## 114 30802 Dates and Times TRUE
+## 115 30802 Subsetting Vectors TRUE
+## 116 30802 Subsetting Vectors TRUE
+## 117 30802 Subsetting Vectors TRUE
+## 118 30802 Subsetting Vectors TRUE
+## 119 30802 Vectors TRUE
+## 120 30802 Subsetting Vectors TRUE
+## 121 30802 Workspace and Files TRUE
+## 122 30802 Missing Values TRUE
+## 123 30802 Missing Values TRUE
+## 124 30802 Missing Values TRUE
+## 125 30802 Logic TRUE
+## 126 30802 Logic TRUE
+## 127 30802 Vectors TRUE
+## 128 30802 Logic TRUE
+## 129 30802 Logic TRUE
+## 130 30802 Basic Building Blocks TRUE
+## 131 30802 Basic Building Blocks TRUE
+## 132 30802 Subsetting Vectors TRUE
+## 133 30802 Logic TRUE
+## 134 30802 Basic Building Blocks TRUE
+## 135 30802 Basic Building Blocks TRUE
+## 136 30802 Basic Building Blocks TRUE
+## 137 30802 Logic TRUE
+## 138 30802 Missing Values TRUE
+## 139 30802 Missing Values <NA>
+## 140 30802 Workspace and Files TRUE
+## 141 30802 Workspace and Files TRUE
+## 142 30802 Logic TRUE
+## 143 30802 Workspace and Files TRUE
+## 144 30802 Logic TRUE
+## 145 30802 Logic TRUE
+## 146 30802 Basic Building Blocks FALSE
+## 147 30802 Missing Values TRUE
+## 148 30802 Missing Values TRUE
+## 149 30802 Logic TRUE
+## 150 30802 Logic TRUE
+## 151 30802 Functions TRUE
+## 152 30802 Functions FALSE
+## 153 30802 Subsetting Vectors TRUE
+## 154 30802 Subsetting Vectors TRUE
+## 155 30802 Dates and Times TRUE
+## 156 30802 Functions TRUE
+## 157 30802 Vectors TRUE
+## 158 30802 Vectors TRUE
+## 159 30802 Missing Values TRUE
+## 160 30802 Functions TRUE
+## 161 30802 Functions TRUE
+## 162 30802 Functions TRUE
+## 163 30802 Functions TRUE
+## 164 30802 Logic TRUE
+## 165 30802 Functions TRUE
+## 166 30802 Functions TRUE
+## 167 30802 Logic TRUE
+## 168 30802 Functions TRUE
+## 169 30802 Logic TRUE
+## 170 30802 Functions TRUE
+## 171 30802 Functions TRUE
+## 172 30802 Logic TRUE
+## 173 30802 Functions TRUE
+## 174 30802 Functions TRUE
+## 175 30802 Functions TRUE
+## 176 30802 Logic TRUE
+## 177 30802 Functions TRUE
+## 178 30802 Vectors TRUE
+## 179 30802 Functions TRUE
+## 180 30802 Dates and Times TRUE
+## 181 30802 Logic TRUE
+## 182 30802 Subsetting Vectors TRUE
+## 183 30802 Functions TRUE
+## 184 30802 Missing Values TRUE
+## 185 30802 Logic FALSE
+## 186 30802 Vectors TRUE
+## 187 30802 Vectors TRUE
+## 188 30802 Vectors FALSE
+## 189 30802 Basic Building Blocks TRUE
+## 190 30802 Functions TRUE
+## 191 30802 Functions TRUE
+## 192 30802 Vectors <NA>
+## 193 30802 Vectors TRUE
+## 194 30802 Dates and Times TRUE
+## 195 30802 Functions FALSE
+## 196 30802 Vectors TRUE
+## 197 30802 Functions TRUE
+## 198 30802 Basic Building Blocks TRUE
+## 199 30802 Basic Building Blocks <NA>
+## 200 30802 Functions TRUE
+## 201 30802 Functions FALSE
+## 202 30802 Functions TRUE
+## 203 30802 Logic TRUE
+## 204 30802 Logic <NA>
+## 205 30802 Vectors TRUE
+## 206 30802 Vectors TRUE
+## 207 30802 Functions FALSE
+## 208 30802 Subsetting Vectors TRUE
+## 209 30802 Basic Building Blocks TRUE
+## 210 30802 Basic Building Blocks TRUE
+## 211 30802 Basic Building Blocks TRUE
+## 212 30802 Vectors TRUE
+## 213 30802 Logic TRUE
+## 214 30802 Logic TRUE
+## 215 78719 Basic Building Blocks TRUE
+## 216 78719 Missing Values FALSE
+## 217 78719 Missing Values TRUE
+## 218 78719 Missing Values FALSE
+## 219 78719 Missing Values TRUE
+## 220 78719 Basic Building Blocks TRUE
+## 221 78719 Tidying Data with tidyr TRUE
+## 222 78719 Tidying Data with tidyr TRUE
+## 223 78719 Missing Values TRUE
+## 224 78719 Missing Values TRUE
+## 225 78719 Tidying Data with tidyr TRUE
+## 226 78719 Tidying Data with tidyr FALSE
+## 227 78719 Subsetting Vectors TRUE
+## 228 78719 Subsetting Vectors TRUE
+## 229 78719 Missing Values TRUE
+## 230 78719 Tidying Data with tidyr TRUE
+## 231 78719 Tidying Data with tidyr TRUE
+## 232 78719 Tidying Data with tidyr TRUE
+## 233 78719 Missing Values TRUE
+## 234 78719 Tidying Data with tidyr TRUE
+## 235 78719 Subsetting Vectors TRUE
+## 236 78719 Missing Values TRUE
+## 237 78719 Dates and Times TRUE
+## 238 78719 Missing Values <NA>
+## 239 78719 Subsetting Vectors TRUE
+## 240 78719 Tidying Data with tidyr FALSE
+## 241 78719 Dates and Times TRUE
+## 242 78719 Tidying Data with tidyr TRUE
+## 243 78719 Dates and Times TRUE
+## 244 78719 Missing Values TRUE
+## 245 78719 Missing Values TRUE
+## 246 78719 Basic Building Blocks TRUE
+## 247 78719 Functions TRUE
+## 248 78719 Subsetting Vectors TRUE
+## 249 78719 Missing Values TRUE
+## 250 78719 Looking at Data TRUE
+## 251 78719 Grouping and Chaining with dplyr TRUE
+## 252 78719 Grouping and Chaining with dplyr <NA>
+## 253 78719 Manipulating Data with dplyr FALSE
+## 254 78719 Subsetting Vectors TRUE
+## 255 78719 Logic TRUE
+## 256 78719 Basic Building Blocks TRUE
+## 257 78719 Tidying Data with tidyr TRUE
+## 258 78719 Tidying Data with tidyr TRUE
+## 259 78719 Tidying Data with tidyr FALSE
+## 260 78719 Tidying Data with tidyr TRUE
+## 261 78719 Basic Building Blocks FALSE
+## 262 78719 Looking at Data TRUE
+## 263 78719 Looking at Data TRUE
+## 264 78719 Missing Values TRUE
+## 265 78719 Missing Values TRUE
+## 266 78719 Tidying Data with tidyr FALSE
+## 267 78719 Logic TRUE
+## 268 78719 Dates and Times FALSE
+## 269 78719 Functions FALSE
+## 270 78719 Dates and Times FALSE
+## 271 78719 Dates and Times TRUE
+## 272 78719 Subsetting Vectors TRUE
+## 273 78719 Subsetting Vectors TRUE
+## 274 78719 Tidying Data with tidyr TRUE
+## 275 78719 Missing Values FALSE
+## 276 78719 Missing Values TRUE
+## 277 78719 Basic Building Blocks FALSE
+## 278 78719 Functions TRUE
+## 279 78719 Logic TRUE
+## 280 78719 Tidying Data with tidyr TRUE
+## 281 78719 Functions TRUE
+## 282 78719 Grouping and Chaining with dplyr TRUE
+## 283 78719 Functions FALSE
+## 284 78719 Tidying Data with tidyr TRUE
+## 285 78719 Dates and Times TRUE
+## 286 78719 Missing Values TRUE
+## 287 78719 Subsetting Vectors TRUE
+## 288 78719 Basic Building Blocks TRUE
+## 289 78719 Basic Building Blocks TRUE
+## 290 78719 Tidying Data with tidyr TRUE
+## 291 78719 Tidying Data with tidyr TRUE
+## 292 78719 Tidying Data with tidyr TRUE
+## 293 78719 Dates and Times TRUE
+## 294 78719 Tidying Data with tidyr FALSE
+## 295 78719 Logic TRUE
+## 296 78719 Subsetting Vectors TRUE
+## 297 78719 Logic TRUE
+## 298 78719 Tidying Data with tidyr TRUE
+## 299 78719 Tidying Data with tidyr <NA>
+## 300 78719 Tidying Data with tidyr FALSE
+## 301 78719 Tidying Data with tidyr TRUE
+## 302 78719 Dates and Times TRUE
+## 303 78719 Tidying Data with tidyr TRUE
+## 304 78719 Functions TRUE
+## 305 78719 Logic TRUE
+## 306 78719 Workspace and Files TRUE
+## 307 78719 Dates and Times TRUE
+## 308 78719 Tidying Data with tidyr TRUE
+## 309 78719 Logic TRUE
+## 310 78719 Subsetting Vectors TRUE
+## 311 78719 Workspace and Files TRUE
+## 312 78719 Workspace and Files TRUE
+## 313 78719 Workspace and Files TRUE
+## 314 78719 Basic Building Blocks TRUE
+## 315 78719 Subsetting Vectors TRUE
+## 316 78719 Workspace and Files TRUE
+## 317 78719 Workspace and Files TRUE
+## 318 78719 Workspace and Files TRUE
+## 319 78719 Grouping and Chaining with dplyr TRUE
+## 320 78719 Workspace and Files TRUE
+## 321 78719 Grouping and Chaining with dplyr TRUE
+## 322 78719 Subsetting Vectors TRUE
+## 323 78719 Logic TRUE
+## 324 78719 Basic Building Blocks TRUE
+## 325 78719 Basic Building Blocks TRUE
+## 326 78719 Basic Building Blocks TRUE
+## 327 78719 Dates and Times TRUE
+## 328 78719 Dates and Times TRUE
+## 329 78719 Logic TRUE
+## 330 78719 Vectors TRUE
+## 331 78719 Logic <NA>
+## 332 78719 Dates and Times TRUE
+## 333 78719 Looking at Data TRUE
+## 334 78719 Workspace and Files TRUE
+## 335 78719 Workspace and Files FALSE
+## 336 78719 Manipulating Data with dplyr TRUE
+## 337 78719 Manipulating Data with dplyr TRUE
+## 338 78719 Manipulating Data with dplyr TRUE
+## 339 78719 Basic Building Blocks TRUE
+## 340 78719 Basic Building Blocks TRUE
+## 341 78719 Logic TRUE
+## 342 78719 Basic Building Blocks TRUE
+## 343 78719 Logic TRUE
+## 344 78719 Basic Building Blocks TRUE
+## 345 78719 Basic Building Blocks TRUE
+## 346 78719 Basic Building Blocks FALSE
+## 347 78719 Basic Building Blocks FALSE
+## 348 78719 Workspace and Files TRUE
+## 349 78719 Tidying Data with tidyr FALSE
+## 350 78719 Basic Building Blocks TRUE
+## 351 78719 Basic Building Blocks <NA>
+## 352 78719 Subsetting Vectors TRUE
+## 353 78719 Basic Building Blocks TRUE
+## 354 78719 Basic Building Blocks TRUE
+## 355 78719 Vectors TRUE
+## 356 78719 Basic Building Blocks TRUE
+## 357 78719 Vectors TRUE
+## 358 78719 Grouping and Chaining with dplyr TRUE
+## 359 78719 Grouping and Chaining with dplyr TRUE
+## 360 78719 Grouping and Chaining with dplyr TRUE
+## 361 78719 Logic TRUE
+## 362 78719 Logic TRUE
+## 363 78719 Tidying Data with tidyr TRUE
+## 364 78719 Logic TRUE
+## 365 78719 Logic TRUE
+## 366 78719 Manipulating Data with dplyr TRUE
+## 367 78719 Logic TRUE
+## 368 78719 Subsetting Vectors TRUE
+## 369 78719 Subsetting Vectors FALSE
+## 370 78719 Functions FALSE
+## 371 78719 Functions TRUE
+## 372 78719 Looking at Data TRUE
+## 373 78719 Workspace and Files TRUE
+## 374 78719 Vectors <NA>
+## 375 78719 Manipulating Data with dplyr TRUE
+## 376 78719 Workspace and Files TRUE
+## 377 78719 Looking at Data TRUE
+## 378 78719 Looking at Data TRUE
+## 379 78719 Functions TRUE
+## 380 78719 Functions TRUE
+## 381 78719 Functions FALSE
+## 382 78719 Functions TRUE
+## 383 78719 Functions FALSE
+## 384 78719 Functions TRUE
+## 385 78719 Functions TRUE
+## 386 78719 Functions TRUE
+## 387 78719 Functions <NA>
+## 388 78719 Basic Building Blocks FALSE
+## 389 78719 Basic Building Blocks TRUE
+## 390 78719 Workspace and Files <NA>
+## 391 78719 Vectors TRUE
+## 392 78719 Vectors TRUE
+## 393 78719 Vectors TRUE
+## 394 78719 Vectors TRUE
+## 395 78719 Subsetting Vectors TRUE
+## 396 78719 Vectors TRUE
+## 397 78719 Subsetting Vectors TRUE
+## 398 78719 Subsetting Vectors TRUE
+## 399 78719 Subsetting Vectors TRUE
+## 400 78719 Logic FALSE
+## 401 78719 Subsetting Vectors TRUE
+## 402 78719 Subsetting Vectors TRUE
+## 403 78719 Matrices and Data Frames TRUE
+## 404 78719 Tidying Data with tidyr TRUE
+## 405 78719 Subsetting Vectors TRUE
+## 406 78719 Subsetting Vectors TRUE
+## 407 78719 Subsetting Vectors TRUE
+## 408 78719 Workspace and Files TRUE
+## 409 78719 Workspace and Files TRUE
+## 410 78719 Workspace and Files TRUE
+## 411 78719 Workspace and Files TRUE
+## 412 78719 Workspace and Files TRUE
+## 413 78719 Vectors TRUE
+## 414 78719 Matrices and Data Frames TRUE
+## 415 78719 Matrices and Data Frames TRUE
+## 416 78719 Matrices and Data Frames TRUE
+## 417 78719 Workspace and Files TRUE
+## 418 78719 Workspace and Files TRUE
+## 419 78719 Workspace and Files TRUE
+## 420 78719 Tidying Data with tidyr TRUE
+## 421 78719 Tidying Data with tidyr TRUE
+## 422 78719 Tidying Data with tidyr TRUE
+## 423 78719 Workspace and Files TRUE
+## 424 78719 Workspace and Files TRUE
+## 425 78719 Tidying Data with tidyr TRUE
+## 426 78719 Tidying Data with tidyr TRUE
+## 427 78719 Tidying Data with tidyr FALSE
+## 428 78719 Tidying Data with tidyr TRUE
+## 429 78719 Basic Building Blocks TRUE
+## 430 78719 Basic Building Blocks TRUE
+## 431 78719 Dates and Times TRUE
+## 432 78719 Dates and Times TRUE
+## 433 78719 Tidying Data with tidyr FALSE
+## 434 78719 Subsetting Vectors TRUE
+## 435 78719 Grouping and Chaining with dplyr TRUE
+## 436 78719 Subsetting Vectors TRUE
+## 437 78719 Grouping and Chaining with dplyr TRUE
+## 438 78719 Grouping and Chaining with dplyr TRUE
+## 439 78719 Tidying Data with tidyr TRUE
+## 440 78719 Subsetting Vectors FALSE
+## 441 78719 Vectors TRUE
+## 442 78719 Vectors TRUE
+## 443 78719 Vectors TRUE
+## 444 78719 Vectors TRUE
+## 445 78719 Vectors TRUE
+## 446 78719 Vectors FALSE
+## 447 78719 Vectors TRUE
+## 448 78719 Vectors TRUE
+## 449 78719 Vectors FALSE
+## 450 78719 Vectors TRUE
+## 451 78719 Vectors TRUE
+## 452 78719 Vectors TRUE
+## 453 78719 Tidying Data with tidyr TRUE
+## 454 78719 Grouping and Chaining with dplyr TRUE
+## 455 78719 Grouping and Chaining with dplyr TRUE
+## 456 78719 Tidying Data with tidyr TRUE
+## 457 78719 Matrices and Data Frames TRUE
+## 458 78719 Matrices and Data Frames TRUE
+## 459 78719 Matrices and Data Frames TRUE
+## 460 78719 Manipulating Data with dplyr TRUE
+## 461 78719 Manipulating Data with dplyr TRUE
+## 462 78719 Manipulating Data with dplyr FALSE
+## 463 78719 Manipulating Data with dplyr TRUE
+## 464 78719 Manipulating Data with dplyr FALSE
+## 465 78719 Manipulating Data with dplyr TRUE
+## 466 78719 Manipulating Data with dplyr TRUE
+## 467 78719 Dates and Times FALSE
+## 468 78719 Dates and Times TRUE
+## 469 78719 Tidying Data with tidyr TRUE
+## 470 78719 Workspace and Files TRUE
+## 471 78719 Grouping and Chaining with dplyr FALSE
+## 472 78719 Grouping and Chaining with dplyr TRUE
+## 473 78719 Grouping and Chaining with dplyr TRUE
+## 474 78719 Grouping and Chaining with dplyr TRUE
+## 475 78719 Dates and Times TRUE
+## 476 78719 Grouping and Chaining with dplyr TRUE
+## 477 78719 Tidying Data with tidyr FALSE
+## 478 78719 Tidying Data with tidyr FALSE
+## 479 78719 Tidying Data with tidyr TRUE
+## 480 78719 Tidying Data with tidyr TRUE
+## 481 78719 Tidying Data with tidyr TRUE
+## 482 78719 Tidying Data with tidyr FALSE
+## 483 78719 Tidying Data with tidyr TRUE
+## 484 78719 Dates and Times TRUE
+## 485 78719 Dates and Times <NA>
+## 486 78719 Functions TRUE
+## 487 78719 Functions TRUE
+## 488 78719 Functions TRUE
+## 489 78719 Functions TRUE
+## 490 78719 Functions TRUE
+## 491 78719 Functions FALSE
+## 492 78719 Functions TRUE
+## 493 78719 Matrices and Data Frames TRUE
+## 494 78719 Looking at Data TRUE
+## 495 78719 Tidying Data with tidyr TRUE
+## 496 78719 Manipulating Data with dplyr TRUE
+## 497 78719 Tidying Data with tidyr TRUE
+## 498 78719 Tidying Data with tidyr TRUE
+## 499 78719 Tidying Data with tidyr TRUE
+## 500 78719 Looking at Data TRUE
+## 501 78719 Subsetting Vectors <NA>
+## 502 78719 Looking at Data <NA>
+## 503 78719 Plotting_Systems TRUE
+## 504 78719 Plotting_Systems TRUE
+## 505 78719 Plotting_Systems FALSE
+## 506 78719 Plotting_Systems TRUE
+## 507 78719 Plotting_Systems TRUE
+## 508 78719 Plotting_Systems TRUE
+## 509 78719 Dates and Times TRUE
+## 510 78719 Dates and Times TRUE
+## 511 78719 Dates and Times TRUE
+## 512 78719 Tidying Data with tidyr FALSE
+## 513 78719 Tidying Data with tidyr TRUE
+## 514 78719 Tidying Data with tidyr TRUE
+## 515 78719 Plotting_Systems TRUE
+## 516 78719 Tidying Data with tidyr FALSE
+## 517 78719 Tidying Data with tidyr TRUE
+## 518 78719 Plotting_Systems TRUE
+## 519 78719 Plotting_Systems TRUE
+## 520 78719 Tidying Data with tidyr TRUE
+## 521 78719 Matrices and Data Frames TRUE
+## 522 78719 Matrices and Data Frames TRUE
+## 523 78719 Matrices and Data Frames TRUE
+## 524 78719 Plotting_Systems TRUE
+## 525 78719 Matrices and Data Frames TRUE
+## 526 78719 Matrices and Data Frames TRUE
+## 527 78719 Matrices and Data Frames TRUE
+## 528 78719 Matrices and Data Frames TRUE
+## 529 78719 Matrices and Data Frames TRUE
+## 530 78719 Matrices and Data Frames TRUE
+## 531 78719 Matrices and Data Frames TRUE
+## 532 78719 Matrices and Data Frames TRUE
+## 533 78719 Grouping and Chaining with dplyr TRUE
+## 534 78719 Manipulating Data with dplyr TRUE
+## 535 78719 Manipulating Data with dplyr TRUE
+## 536 78719 Grouping and Chaining with dplyr TRUE
+## 537 78719 Grouping and Chaining with dplyr TRUE
+## 538 78719 Tidying Data with tidyr TRUE
+## 539 78719 Plotting_Systems FALSE
+## 540 78719 Matrices and Data Frames FALSE
+## 541 78719 Logic TRUE
+## 542 78719 Logic TRUE
+## 543 78719 Grouping and Chaining with dplyr TRUE
+## 544 78719 Grouping and Chaining with dplyr FALSE
+## 545 78719 Grouping and Chaining with dplyr TRUE
+## 546 78719 Grouping and Chaining with dplyr TRUE
+## 547 78719 Grouping and Chaining with dplyr TRUE
+## 548 78719 Grouping and Chaining with dplyr TRUE
+## 549 78719 Matrices and Data Frames TRUE
+## 550 78719 Matrices and Data Frames TRUE
+## 551 78719 Matrices and Data Frames TRUE
+## 552 78719 Matrices and Data Frames TRUE
+## 553 78719 Plotting_Systems TRUE
+## 554 78719 Plotting_Systems TRUE
+## 555 78719 Tidying Data with tidyr TRUE
+## 556 78719 Tidying Data with tidyr TRUE
+## 557 78719 Dates and Times TRUE
+## 558 78719 Tidying Data with tidyr TRUE
+## 559 78719 Tidying Data with tidyr TRUE
+## 560 78719 Matrices and Data Frames TRUE
+## 561 78719 Matrices and Data Frames TRUE
+## 562 78719 Logic TRUE
+## 563 78719 Manipulating Data with dplyr TRUE
+## 564 78719 Manipulating Data with dplyr <NA>
+## 565 78719 Plotting_Systems TRUE
+## 566 78719 Matrices and Data Frames <NA>
+## 567 78719 Grouping and Chaining with dplyr TRUE
+## 568 78719 Grouping and Chaining with dplyr TRUE
+## 569 78719 Grouping and Chaining with dplyr TRUE
+## 570 78719 Grouping and Chaining with dplyr TRUE
+## 571 78719 Grouping and Chaining with dplyr TRUE
+## 572 78719 Grouping and Chaining with dplyr TRUE
+## 573 78719 Tidying Data with tidyr FALSE
+## 574 78719 Looking at Data TRUE
+## 575 78719 Dates and Times TRUE
+## 576 78719 Dates and Times TRUE
+## 577 78719 Dates and Times TRUE
+## 578 78719 Dates and Times TRUE
+## 579 78719 Grouping and Chaining with dplyr FALSE
+## 580 78719 Tidying Data with tidyr TRUE
+## 581 78719 Tidying Data with tidyr FALSE
+## 582 78719 Looking at Data TRUE
+## 583 78719 Matrices and Data Frames TRUE
+## 584 78719 Logic FALSE
+## 585 78719 Logic TRUE
+## 586 78719 Logic TRUE
+## 587 78719 Logic TRUE
+## 588 78719 Tidying Data with tidyr TRUE
+## 589 78719 Tidying Data with tidyr TRUE
+## 590 78719 Logic TRUE
+## 591 78719 Logic TRUE
+## 592 78719 Dates and Times TRUE
+## 593 78719 Grouping and Chaining with dplyr TRUE
+## 594 78719 Matrices and Data Frames TRUE
+## 595 78719 Plotting_Systems TRUE
+## 596 78719 Plotting_Systems TRUE
+## 597 78719 Plotting_Systems TRUE
+## 598 78719 Dates and Times TRUE
+## 599 78719 Dates and Times TRUE
+## 600 78719 Dates and Times TRUE
+## 601 78719 Matrices and Data Frames TRUE
+## 602 78719 Plotting_Systems TRUE
+## 603 78719 Matrices and Data Frames FALSE
+## 604 78719 Plotting_Systems TRUE
+## 605 78719 Logic TRUE
+## 606 78719 Functions TRUE
+## 607 78719 Functions TRUE
+## 608 78719 Tidying Data with tidyr FALSE
+## 609 78719 Tidying Data with tidyr TRUE
+## 610 78719 Tidying Data with tidyr TRUE
+## 611 78719 Tidying Data with tidyr TRUE
+## 612 78719 Tidying Data with tidyr TRUE
+## 613 78719 Manipulating Data with dplyr TRUE
+## 614 78719 Looking at Data TRUE
+## 615 78719 Matrices and Data Frames TRUE
+## 616 78719 Matrices and Data Frames TRUE
+## 617 78719 Matrices and Data Frames TRUE
+## 618 78719 Plotting_Systems TRUE
+## 619 78719 Matrices and Data Frames TRUE
+## 620 78719 Matrices and Data Frames TRUE
+## 621 78719 Matrices and Data Frames TRUE
+## 622 78719 Tidying Data with tidyr TRUE
+## 623 78719 Matrices and Data Frames TRUE
+## 624 78719 Matrices and Data Frames TRUE
+## 625 78719 Matrices and Data Frames TRUE
+## 626 78719 Matrices and Data Frames TRUE
+## 627 78719 Functions FALSE
+## 628 78719 Functions TRUE
+## 629 78719 Logic TRUE
+## 630 78719 Logic TRUE
+## 631 78719 Matrices and Data Frames TRUE
+## 632 78719 Manipulating Data with dplyr TRUE
+## 633 78719 Plotting_Systems FALSE
+## 634 78719 Plotting_Systems TRUE
+## 635 78719 Matrices and Data Frames TRUE
+## 636 78719 Plotting_Systems TRUE
+## 637 78719 Plotting_Systems <NA>
+## 638 78719 Matrices and Data Frames TRUE
+## 639 78719 Matrices and Data Frames TRUE
+## 640 78719 Looking at Data TRUE
+## 641 78719 Logic TRUE
+## 642 78719 Logic TRUE
+## 643 78719 Functions TRUE
+## 644 78719 Logic TRUE
+## 645 78719 Matrices and Data Frames TRUE
+## 646 78719 Manipulating Data with dplyr TRUE
+## 647 78719 Manipulating Data with dplyr TRUE
+## 648 78719 Plotting_Systems TRUE
+## 649 78719 Matrices and Data Frames TRUE
+## 650 78719 Logic TRUE
+## 651 78719 Manipulating Data with dplyr TRUE
+## 652 78719 Manipulating Data with dplyr TRUE
+## 653 78719 Manipulating Data with dplyr TRUE
+## 654 78719 Tidying Data with tidyr <NA>
+## 655 78719 Manipulating Data with dplyr TRUE
+## 656 78719 Manipulating Data with dplyr TRUE
+## 657 78719 Matrices and Data Frames TRUE
+## 658 78719 Manipulating Data with dplyr TRUE
+## 659 78719 Functions TRUE
+## 660 78719 Manipulating Data with dplyr TRUE
+## 661 78719 Manipulating Data with dplyr TRUE
+## 662 78719 Manipulating Data with dplyr TRUE
+## 663 78719 Manipulating Data with dplyr TRUE
+## 664 78719 Logic TRUE
+## 665 78719 Logic TRUE
+## 666 78719 Manipulating Data with dplyr TRUE
+## 667 78719 Manipulating Data with dplyr TRUE
+## 668 78719 Manipulating Data with dplyr TRUE
+## 669 78719 Manipulating Data with dplyr TRUE
+## 670 78719 Functions TRUE
+## 671 78719 Functions TRUE
+## 672 78719 Logic TRUE
+## 673 78719 Tidying Data with tidyr TRUE
+## 674 78719 Manipulating Data with dplyr TRUE
+## 675 78719 Tidying Data with tidyr TRUE
+## 676 78719 Functions TRUE
+## 677 78719 Functions TRUE
+## 678 78719 Looking at Data TRUE
+## 679 78719 Logic FALSE
+## 680 78719 Tidying Data with tidyr TRUE
+## 681 78719 Functions TRUE
+## 682 78719 Manipulating Data with dplyr TRUE
+## 683 78719 Functions TRUE
+## 684 78719 Manipulating Data with dplyr TRUE
+## 685 78719 Matrices and Data Frames TRUE
+## 686 78719 Logic TRUE
+## 687 78719 Manipulating Data with dplyr TRUE
+## 688 78719 Looking at Data TRUE
+## 689 78719 Matrices and Data Frames <NA>
+## 690 78719 Manipulating Data with dplyr TRUE
+## 691 78719 Tidying Data with tidyr TRUE
+## 692 78719 Tidying Data with tidyr TRUE
+## 693 78719 Tidying Data with tidyr TRUE
+## 694 78719 Manipulating Data with dplyr TRUE
+## 695 78719 Logic FALSE
+## 696 78719 Manipulating Data with dplyr TRUE
+## 697 78719 Manipulating Data with dplyr TRUE
+## 698 98193 <NA>
+## 699 44419 Matrices and Data Frames TRUE
+## 700 44419 Basic Building Blocks TRUE
+## 701 44419 Basic Building Blocks TRUE
+## 702 44419 Dates and Times TRUE
+## 703 44419 Basic Building Blocks TRUE
+## 704 44419 Basic Building Blocks TRUE
+## 705 44419 Basic Building Blocks TRUE
+## 706 44419 Functions TRUE
+## 707 44419 Basic Building Blocks TRUE
+## 708 44419 Basic Building Blocks TRUE
+## 709 44419 Dates and Times TRUE
+## 710 44419 Vectors TRUE
+## 711 44419 Vectors FALSE
+## 712 44419 Vectors TRUE
+## 713 44419 Vectors TRUE
+## 714 44419 Vectors TRUE
+## 715 44419 Vectors TRUE
+## 716 44419 Vectors FALSE
+## 717 44419 Basic Building Blocks TRUE
+## 718 44419 Basic Building Blocks TRUE
+## 719 44419 Basic Building Blocks TRUE
+## 720 44419 Functions TRUE
+## 721 44419 Workspace and Files TRUE
+## 722 44419 <NA>
+## 723 44419 Dates and Times TRUE
+## 724 44419 Functions TRUE
+## 725 44419 Subsetting Vectors TRUE
+## 726 44419 Vectors TRUE
+## 727 44419 Basic Building Blocks TRUE
+## 728 44419 Basic Building Blocks TRUE
+## 729 44419 Basic Building Blocks TRUE
+## 730 44419 Basic Building Blocks TRUE
+## 731 44419 Basic Building Blocks TRUE
+## 732 44419 Basic Building Blocks TRUE
+## 733 44419 Functions TRUE
+## 734 44419 Functions TRUE
+## 735 44419 Functions FALSE
+## 736 44419 Workspace and Files TRUE
+## 737 44419 Dates and Times TRUE
+## 738 44419 Dates and Times TRUE
+## 739 44419 Dates and Times TRUE
+## 740 44419 Dates and Times TRUE
+## 741 44419 Vectors TRUE
+## 742 44419 Vectors TRUE
+## 743 44419 Vectors TRUE
+## 744 44419 Vectors TRUE
+## 745 44419 Dates and Times TRUE
+## 746 44419 Dates and Times TRUE
+## 747 44419 Matrices and Data Frames TRUE
+## 748 44419 Workspace and Files TRUE
+## 749 44419 Dates and Times TRUE
+## 750 44419 Logic TRUE
+## 751 44419 Logic TRUE
+## 752 44419 Functions TRUE
+## 753 44419 Dates and Times TRUE
+## 754 44419 Dates and Times TRUE
+## 755 44419 Dates and Times TRUE
+## 756 44419 Dates and Times TRUE
+## 757 44419 Dates and Times TRUE
+## 758 44419 Logic TRUE
+## 759 44419 Vectors TRUE
+## 760 44419 Dates and Times TRUE
+## 761 44419 Dates and Times TRUE
+## 762 44419 Functions FALSE
+## 763 44419 Functions FALSE
+## 764 44419 Missing Values TRUE
+## 765 44419 Logic FALSE
+## 766 44419 Logic TRUE
+## 767 44419 Logic TRUE
+## 768 44419 Logic TRUE
+## 769 44419 Logic FALSE
+## 770 44419 Logic FALSE
+## 771 44419 Vectors TRUE
+## 772 44419 Matrices and Data Frames TRUE
+## 773 44419 Matrices and Data Frames TRUE
+## 774 44419 Workspace and Files TRUE
+## 775 44419 Vectors TRUE
+## 776 44419 Vectors TRUE
+## 777 44419 Vectors TRUE
+## 778 44419 Missing Values TRUE
+## 779 44419 Missing Values TRUE
+## 780 44419 Functions TRUE
+## 781 44419 Functions FALSE
+## 782 44419 Functions FALSE
+## 783 44419 Functions FALSE
+## 784 44419 Functions FALSE
+## 785 44419 Functions FALSE
+## 786 44419 Functions FALSE
+## 787 44419 Functions FALSE
+## 788 44419 Missing Values TRUE
+## 789 44419 Missing Values TRUE
+## 790 44419 Missing Values TRUE
+## 791 44419 Vectors TRUE
+## 792 44419 Vectors TRUE
+## 793 44419 Vectors TRUE
+## 794 44419 Functions FALSE
+## 795 44419 Basic Building Blocks TRUE
+## 796 44419 Basic Building Blocks TRUE
+## 797 44419 Basic Building Blocks TRUE
+## 798 44419 Basic Building Blocks TRUE
+## 799 44419 Basic Building Blocks TRUE
+## 800 44419 Vectors TRUE
+## 801 44419 Basic Building Blocks TRUE
+## 802 44419 Basic Building Blocks TRUE
+## 803 44419 Basic Building Blocks TRUE
+## 804 44419 Logic TRUE
+## 805 44419 Subsetting Vectors TRUE
+## 806 44419 Vectors FALSE
+## 807 44419 Vectors FALSE
+## 808 44419 Vectors FALS
+## 809 44419 Vectors TRUE
+## 810 44419 Vectors FALSE
+## 811 44419 Matrices and Data Frames TRUE
+## 812 44419 Basic Building Blocks <NA>
+## 813 44419 Workspace and Files TRUE
+## 814 44419 Basic Building Blocks TRUE
+## 815 44419 Logic TRUE
+## 816 44419 Logic TRUE
+## 817 44419 Vectors TRUE
+## 818 44419 Vectors TRUE
+## 819 44419 Subsetting Vectors TRUE
+## 820 44419 Missing Values TRUE
+## 821 44419 Subsetting Vectors TRUE
+## 822 44419 Subsetting Vectors FALSE
+## 823 44419 Subsetting Vectors FALSE
+## 824 44419 Subsetting Vectors FALSE
+## 825 44419 Subsetting Vectors TRUE
+## 826 44419 Subsetting Vectors TRUE
+## 827 44419 Logic TRUE
+## 828 44419 Workspace and Files TRUE
+## 829 44419 Workspace and Files TRUE
+## 830 44419 Logic FALSE
+## 831 44419 Subsetting Vectors TRUE
+## 832 44419 Vectors TRUE
+## 833 44419 Vectors TRUE
+## 834 44419 Missing Values TRUE
+## 835 44419 Missing Values TRUE
+## 836 44419 Missing Values TRUE
+## 837 44419 Missing Values TRUE
+## 838 44419 Missing Values TRUE
+## 839 44419 Missing Values TRUE
+## 840 44419 Workspace and Files TRUE
+## 841 44419 Workspace and Files TRUE
+## 842 44419 Workspace and Files TRUE
+## 843 44419 Workspace and Files TRUE
+## 844 44419 Vectors TRUE
+## 845 44419 Vectors TRUE
+## 846 44419 Matrices and Data Frames TRUE
+## 847 44419 Vectors TRUE
+## 848 44419 Workspace and Files TRUE
+## 849 44419 Subsetting Vectors TRUE
+## 850 44419 Vectors TRUE
+## 851 44419 Basic Building Blocks FALSE
+## 852 44419 Subsetting Vectors TRUE
+## 853 44419 Subsetting Vectors FALSE
+## 854 44419 Vectors TRUE
+## 855 44419 Matrices and Data Frames FALSE
+## 856 44419 Subsetting Vectors TRUE
+## 857 44419 Workspace and Files TRUE
+## 858 44419 Vectors TRUE
+## 859 44419 Vectors TRUE
+## 860 44419 Vectors TRUE
+## 861 44419 Missing Values TRUE
+## 862 44419 Matrices and Data Frames TRUE
+## 863 44419 Missing Values <NA>
+## 864 44419 Logic TRUE
+## 865 44419 Matrices and Data Frames TRUE
+## 866 44419 <NA>
+## 867 44419 Matrices and Data Frames TRUE
+## 868 44419 Matrices and Data Frames TRUE
+## 869 44419 Basic Building Blocks TRUE
+## 870 44419 Matrices and Data Frames TRUE
+## 871 44419 Basic Building Blocks TRUE
+## 872 44419 Basic Building Blocks TRUE
+## 873 44419 Subsetting Vectors FALSE
+## 874 44419 Subsetting Vectors TRUE
+## 875 44419 Matrices and Data Frames TRUE
+## 876 44419 Logic TRUE
+## 877 44419 Matrices and Data Frames TRUE
+## 878 44419 Basic Building Blocks FALSE
+## 879 44419 Logic TRUE
+## 880 44419 Workspace and Files FALSE
+## 881 44419 Logic TRUE
+## 882 44419 Basic Building Blocks TRUE
+## 883 44419 Workspace and Files TRUE
+## 884 44419 Workspace and Files FALSE
+## 885 44419 Matrices and Data Frames TRUE
+## 886 44419 Logic TRUE
+## 887 14748 Dates and Times TRUE
+## 888 14748 Basic Building Blocks TRUE
+## 889 14748 Dates and Times TRUE
+## 890 14748 Basic Building Blocks FALSE
+## 891 14748 Dates and Times TRUE
+## 892 14748 Subsetting Vectors TRUE
+## 893 14748 Subsetting Vectors TRUE
+## 894 14748 Subsetting Vectors TRUE
+## 895 14748 Basic Building Blocks TRUE
+## 896 14748 Subsetting Vectors TRUE
+## 897 14748 Basic Building Blocks TRUE
+## 898 14748 Dates and Times TRUE
+## 899 14748 Workspace and Files TRUE
+## 900 14748 Subsetting Vectors TRUE
+## 901 14748 Workspace and Files TRUE
+## 902 14748 Functions TRUE
+## 903 14748 Dates and Times TRUE
+## 904 14748 Subsetting Vectors TRUE
+## 905 14748 Basic Building Blocks TRUE
+## 906 14748 Missing Values TRUE
+## 907 14748 Dates and Times FALSE
+## 908 14748 Dates and Times TRUE
+## 909 14748 Vectors TRUE
+## 910 14748 Vectors FALSE
+## 911 14748 Dates and Times TRUE
+## 912 14748 Subsetting Vectors TRUE
+## 913 14748 Subsetting Vectors TRUE
+## 914 14748 Subsetting Vectors <NA>
+## 915 14748 Logic TRUE
+## 916 14748 Dates and Times TRUE
+## 917 14748 Subsetting Vectors TRUE
+## 918 14748 Functions TRUE
+## 919 14748 Dates and Times TRUE
+## 920 14748 Logic TRUE
+## 921 14748 Logic TRUE
+## 922 14748 Workspace and Files TRUE
+## 923 14748 Workspace and Files FALSE
+## 924 14748 Vectors TRUE
+## 925 14748 Workspace and Files TRUE
+## 926 14748 Subsetting Vectors FALSE
+## 927 14748 Subsetting Vectors TRUE
+## 928 14748 Dates and Times TRUE
+## 929 14748 Logic TRUE
+## 930 14748 Workspace and Files TRUE
+## 931 14748 Workspace and Files TRUE
+## 932 14748 Basic Building Blocks TRUE
+## 933 14748 Dates and Times TRUE
+## 934 14748 Workspace and Files FALSE
+## 935 14748 Subsetting Vectors TRUE
+## 936 14748 Logic TRUE
+## 937 14748 Functions TRUE
+## 938 14748 Subsetting Vectors TRUE
+## 939 14748 Subsetting Vectors TRUE
+## 940 14748 Workspace and Files TRUE
+## 941 14748 Dates and Times TRUE
+## 942 14748 Subsetting Vectors TRUE
+## 943 14748 Subsetting Vectors TRUE
+## 944 14748 Subsetting Vectors TRUE
+## 945 14748 Dates and Times TRUE
+## 946 14748 Functions TRUE
+## 947 14748 Missing Values TRUE
+## 948 14748 Functions FALSE
+## 949 14748 Functions FALSE
+## 950 14748 Missing Values TRUE
+## 951 14748 Missing Values TRUE
+## 952 14748 Vectors TRUE
+## 953 14748 Dates and Times TRUE
+## 954 14748 Dates and Times TRUE
+## 955 14748 Dates and Times TRUE
+## 956 14748 Basic Building Blocks FALSE
+## 957 14748 Workspace and Files TRUE
+## 958 14748 Subsetting Vectors TRUE
+## 959 14748 Basic Building Blocks TRUE
+## 960 14748 Logic TRUE
+## 961 14748 Logic TRUE
+## 962 14748 Logic FALSE
+## 963 14748 Logic TRUE
+## 964 14748 Logic TRUE
+## 965 14748 Logic TRUE
+## 966 14748 Logic TRUE
+## 967 14748 Logic TRUE
+## 968 14748 Subsetting Vectors FALSE
+## 969 14748 Dates and Times TRUE
+## 970 14748 Dates and Times TRUE
+## 971 14748 Basic Building Blocks TRUE
+## 972 14748 Subsetting Vectors FALSE
+## 973 14748 Subsetting Vectors FALSE
+## 974 14748 Subsetting Vectors TRUE
+## 975 14748 Subsetting Vectors FALSE
+## 976 14748 Workspace and Files TRUE
+## 977 14748 Workspace and Files TRUE
+## 978 14748 Subsetting Vectors TRUE
+## 979 14748 Workspace and Files TRUE
+## 980 14748 Basic Building Blocks TRUE
+## 981 14748 Subsetting Vectors TRUE
+## 982 14748 Vectors TRUE
+## 983 14748 Vectors TRUE
+## 984 14748 Vectors TRUE
+## 985 14748 Basic Building Blocks TRUE
+## 986 14748 Logic TRUE
+## 987 14748 Functions TRUE
+## 988 14748 Missing Values TRUE
+## 989 14748 Basic Building Blocks TRUE
+## 990 14748 Logic TRUE
+## 991 14748 Logic FALSE
+## 992 14748 Functions TRUE
+## 993 14748 Basic Building Blocks FALSE
+## 994 14748 Basic Building Blocks TRUE
+## 995 14748 Basic Building Blocks TRUE
+## 996 14748 Missing Values TRUE
+## 997 14748 Basic Building Blocks TRUE
+## 998 14748 Missing Values TRUE
+## 999 14748 Missing Values TRUE
+## 1000 14748 Basic Building Blocks TRUE
+## 1001 14748 Basic Building Blocks TRUE
+## 1002 14748 Workspace and Files TRUE
+## 1003 14748 Basic Building Blocks TRUE
+## 1004 14748 Basic Building Blocks <NA>
+## 1005 14748 Functions TRUE
+## 1006 14748 Functions TRUE
+## 1007 14748 Subsetting Vectors TRUE
+## 1008 14748 Logic FALSE
+## 1009 14748 Subsetting Vectors FALSE
+## 1010 14748 Subsetting Vectors FALSE
+## 1011 14748 Logic TRUE
+## 1012 14748 Subsetting Vectors FALSE
+## 1013 14748 Logic TRUE
+## 1014 14748 Subsetting Vectors FALSE
+## 1015 14748 Subsetting Vectors TRUE
+## 1016 14748 Dates and Times TRUE
+## 1017 14748 Dates and Times TRUE
+## 1018 14748 Workspace and Files TRUE
+## 1019 14748 Dates and Times TRUE
+## 1020 14748 Workspace and Files TRUE
+## 1021 14748 Basic Building Blocks TRUE
+## 1022 14748 Basic Building Blocks TRUE
+## 1023 14748 Basic Building Blocks TRUE
+## 1024 14748 Basic Building Blocks TRUE
+## 1025 14748 Functions TRUE
+## 1026 14748 Missing Values TRUE
+## 1027 14748 Functions TRUE
+## 1028 14748 Workspace and Files FALSE
+## 1029 14748 Subsetting Vectors TRUE
+## 1030 14748 Subsetting Vectors FALSE
+## 1031 14748 Functions FALSE
+## 1032 14748 Logic FALSE
+## 1033 14748 Functions <NA>
+## 1034 14748 Missing Values TRUE
+## 1035 14748 Missing Values TRUE
+## 1036 14748 Logic TRUE
+## 1037 14748 Missing Values TRUE
+## 1038 14748 Basic Building Blocks TRUE
+## 1039 14748 Basic Building Blocks TRUE
+## 1040 14748 Missing Values <NA>
+## 1041 14748 Functions TRUE
+## 1042 14748 Dates and Times TRUE
+## 1043 14748 Functions TRUE
+## 1044 14748 Subsetting Vectors TRUE
+## 1045 14748 Subsetting Vectors TRUE
+## 1046 14748 Subsetting Vectors TRUE
+## 1047 14748 Functions TRUE
+## 1048 14748 Functions TRUE
+## 1049 14748 Workspace and Files TRUE
+## 1050 14748 Workspace and Files TRUE
+## 1051 14748 Subsetting Vectors FALSE
+## 1052 14748 Logic TRUE
+## 1053 14748 Workspace and Files TRUE
+## 1054 14748 Functions TRUE
+## 1055 14748 Functions TRUE
+## 1056 14748 Workspace and Files TRUE
+## 1057 14748 Functions FALSE
+## 1058 14748 Logic TRUE
+## 1059 14748 Dates and Times TRUE
+## 1060 14748 Logic FALSE
+## 1061 14748 Workspace and Files TRUE
+## 1062 14748 Workspace and Files <NA>
+## 1063 14748 Vectors TRUE
+## 1064 14748 Vectors TRUE
+## 1065 14748 Logic TRUE
+## 1066 14748 Functions FALSE
+## 1067 14748 Functions TRUE
+## 1068 14748 Dates and Times TRUE
+## 1069 14748 Functions TRUE
+## 1070 14748 Workspace and Files TRUE
+## 1071 14748 Workspace and Files TRUE
+## 1072 14748 Functions FALSE
+## 1073 14748 Logic FALSE
+## 1074 14748 Logic TRUE
+## 1075 14748 Logic TRUE
+## 1076 14748 Functions FALSE
+## 1077 14748 Logic TRUE
+## 1078 14748 Functions FALSE
+## 1079 14748 Functions FALSE
+## 1080 14748 Vectors TRUE
+## 1081 14748 Functions FALSE
+## 1082 14748 Functions FALSE
+## 1083 14748 Functions TRUE
+## 1084 14748 Functions FALSE
+## 1085 14748 Functions FALSE
+## 1086 14748 Vectors <NA>
+## 1087 14748 Vectors TRUE
+## 1088 14748 Logic <NA>
+## 1089 14748 Logic FALSE
+## 1090 14748 Logic TRUE
+## 1091 14748 Workspace and Files TRUE
+## 1092 14748 Subsetting Vectors FALSE
+## 1093 14748 Workspace and Files TRUE
+## 1094 14748 Functions TRUE
+## 1095 14748 Vectors TRUE
+## 1096 14748 Functions FALSE
+## 1097 14748 Functions FALSE
+## 1098 14748 Functions TRUE
+## 1099 14748 Functions TRUE
+## 1100 14748 Missing Values TRUE
+## 1101 14748 Logic FALSE
+## 1102 14748 Functions FALSE
+## 1103 14748 Logic TRUE
+## 1104 14748 Logic FALSE
+## 1105 14748 Logic TRUE
+## 1106 14748 Dates and Times <NA>
+## 1107 14748 Logic TRUE
+## 1108 14748 Functions FALSE
+## 1109 14748 Vectors TRUE
+## 1110 14748 Missing Values TRUE
+## 1111 14748 Functions FALSE
+## 1112 14748 Vectors TRUE
+## 1113 14748 Vectors TRUE
+## 1114 14748 Vectors TRUE
+## 1115 14748 Logic TRUE
+## 1116 14748 Dates and Times TRUE
+## 1117 14748 Functions FALSE
+## 1118 14748 Logic TRUE
+## 1119 14748 Logic TRUE
+## 1120 14748 Functions TRUE
+## 1121 14748 Vectors TRUE
+## 1122 14748 Functions TRUE
+## 1123 14748 Logic TRUE
+## 1124 14748 Vectors FALSE
+## 1125 14748 Functions TRUE
+## 1126 14748 Vectors TRUE
+## 1127 14748 Subsetting Vectors FALSE
+## 1128 14748 Dates and Times TRUE
+## 1129 14748 Vectors TRUE
+## 1130 14748 Logic TRUE
+## 1131 14748 Logic TRUE
+## 1132 14748 Functions TRUE
+## 1133 14748 Functions FALSE
+## 1134 14748 Functions TRUE
+## 1135 14748 Dates and Times TRUE
+## 1136 14748 Functions FALSE
+## 1137 14748 Logic TRUE
+## 1138 14748 Logic FALSE
+## 1139 14748 Dates and Times TRUE
+## 1140 14748 Vectors TRUE
+## 1141 14748 Logic TRUE
+## 1142 14748 Functions TRUE
+## 1143 88135 Basic Building Blocks FALSE
+## 1144 88135 Basic Building Blocks <NA>
+## 1145 88135 Basic Building Blocks TRUE
+## 1146 88135 Basic Building Blocks TRUE
+## 1147 88135 Basic Building Blocks TRUE
+## 1148 88135 Basic Building Blocks TRUE
+## 1149 88135 Basic Building Blocks FALSE
+## 1150 88135 Basic Building Blocks TRUE
+## 1151 88135 Basic Building Blocks TRUE
+## 1152 88135 Basic Building Blocks TRUE
+## 1153 88135 Basic Building Blocks TRUE
+## 1154 88135 Basic Building Blocks TRUE
+## 1155 88135 Basic Building Blocks TRUE
+## 1156 88135 Basic Building Blocks FALSE
+## 1157 88135 Basic Building Blocks TRUE
+## 1158 88135 Basic Building Blocks FALSE
+## 1159 88135 Basic Building Blocks TRUE
+## 1160 88135 Basic Building Blocks FALSE
+## 1161 88135 Basic Building Blocks TRUE
+## 1162 88135 Basic Building Blocks TRUE
+## 1163 88135 Basic Building Blocks TRUE
+## 1164 88135 Basic Building Blocks TRUE
+## 1165 88135 Basic Building Blocks TRUE
+## 1166 88135 Basic Building Blocks FALSE
+## 1167 88135 Basic Building Blocks TRUE
+## 1168 88135 Basic Building Blocks TRUE
+## 1169 88135 Basic Building Blocks TRUE
+## 1170 88135 Basic Building Blocks TRUE
+## 1171 88135 Basic Building Blocks TRUE
+## 1172 55259 Workspace and Files TRUE
+## 1173 55259 Workspace and Files TRUE
+## 1174 55259 Workspace and Files TRUE
+## 1175 55259 Workspace and Files TRUE
+## 1176 55259 Workspace and Files TRUE
+## 1177 55259 Workspace and Files TRUE
+## 1178 55259 Workspace and Files TRUE
+## 1179 55259 Workspace and Files TRUE
+## 1180 55259 Workspace and Files FALSE
+## 1181 55259 Workspace and Files <NA>
+## 1182 55259 Workspace and Files TRUE
+## 1183 55259 Workspace and Files TRUE
+## 1184 55259 Workspace and Files FALSE
+## 1185 55259 Workspace and Files TRUE
+## 1186 55259 Workspace and Files TRUE
+## 1187 55259 Workspace and Files TRUE
+## 1188 55259 Workspace and Files TRUE
+## 1189 55259 Workspace and Files TRUE
+## 1190 55259 Workspace and Files TRUE
+## 1191 55259 Workspace and Files TRUE
+## 1192 55259 Workspace and Files FALSE
+## 1193 55259 Workspace and Files TRUE
+## 1194 55259 Workspace and Files TRUE
+## 1195 55259 Workspace and Files TRUE
+## 1196 55259 Workspace and Files TRUE
+## 1197 55259 Workspace and Files TRUE
+## 1198 55259 Workspace and Files FALSE
+## 1199 55259 Workspace and Files TRUE
+## 1200 75332 Workspace and Files FALSE
+## 1201 75332 Workspace and Files TRUE
+## 1202 75332 Workspace and Files FALSE
+## 1203 75332 Dates and Times TRUE
+## 1204 75332 Dates and Times TRUE
+## 1205 75332 Dates and Times TRUE
+## 1206 75332 Dates and Times TRUE
+## 1207 75332 Workspace and Files TRUE
+## 1208 75332 Workspace and Files FALSE
+## 1209 75332 Workspace and Files TRUE
+## 1210 75332 Workspace and Files FALSE
+## 1211 75332 Workspace and Files TRUE
+## 1212 75332 Workspace and Files FALSE
+## 1213 75332 Workspace and Files TRUE
+## 1214 75332 Dates and Times FALSE
+## 1215 75332 Dates and Times TRUE
+## 1216 75332 Workspace and Files TRUE
+## 1217 75332 Workspace and Files TRUE
+## 1218 75332 Vectors FALSE
+## 1219 75332 Vectors FALSE
+## 1220 75332 Missing Values TRUE
+## 1221 75332 Missing Values TRUE
+## 1222 75332 Missing Values TRUE
+## 1223 75332 Missing Values TRUE
+## 1224 75332 Missing Values TRUE
+## 1225 75332 Missing Values TRUE
+## 1226 75332 Missing Values TRUE
+## 1227 75332 Missing Values TRUE
+## 1228 75332 Missing Values TRUE
+## 1229 75332 Missing Values TRUE
+## 1230 75332 Missing Values TRUE
+## 1231 75332 Missing Values TRUE
+## 1232 75332 Missing Values TRUE
+## 1233 75332 Missing Values TRUE
+## 1234 75332 Basic Building Blocks TRUE
+## 1235 75332 Missing Values <NA>
+## 1236 75332 Subsetting Vectors TRUE
+## 1237 75332 Logic TRUE
+## 1238 75332 Logic TRUE
+## 1239 75332 Logic TRUE
+## 1240 75332 Logic TRUE
+## 1241 75332 Logic TRUE
+## 1242 75332 Logic TRUE
+## 1243 75332 Logic TRUE
+## 1244 75332 Logic TRUE
+## 1245 75332 Logic TRUE
+## 1246 75332 Logic TRUE
+## 1247 75332 Logic TRUE
+## 1248 75332 Logic TRUE
+## 1249 75332 Logic TRUE
+## 1250 75332 Logic TRUE
+## 1251 75332 Logic TRUE
+## 1252 75332 Workspace and Files TRUE
+## 1253 75332 Workspace and Files TRUE
+## 1254 75332 Workspace and Files TRUE
+## 1255 75332 Workspace and Files TRUE
+## 1256 75332 Logic TRUE
+## 1257 75332 <NA>
+## 1258 75332 Dates and Times TRUE
+## 1259 75332 Dates and Times TRUE
+## 1260 75332 Dates and Times TRUE
+## 1261 75332 Dates and Times TRUE
+## 1262 75332 Dates and Times TRUE
+## 1263 75332 Dates and Times TRUE
+## 1264 75332 Dates and Times TRUE
+## 1265 75332 Dates and Times TRUE
+## 1266 75332 Dates and Times TRUE
+## 1267 75332 Dates and Times TRUE
+## 1268 75332 Dates and Times TRUE
+## 1269 75332 Basic Building Blocks TRUE
+## 1270 75332 Basic Building Blocks TRUE
+## 1271 75332 Basic Building Blocks TRUE
+## 1272 75332 Basic Building Blocks TRUE
+## 1273 75332 Basic Building Blocks TRUE
+## 1274 75332 Vectors TRUE
+## 1275 75332 Vectors TRUE
+## 1276 75332 Vectors TRUE
+## 1277 75332 Subsetting Vectors TRUE
+## 1278 75332 Subsetting Vectors TRUE
+## 1279 75332 Subsetting Vectors TRUE
+## 1280 75332 Subsetting Vectors TRUE
+## 1281 75332 Vectors FALSE
+## 1282 75332 Vectors TRUE
+## 1283 75332 Vectors TRUE
+## 1284 75332 Vectors FALSE
+## 1285 75332 Vectors TRUE
+## 1286 75332 Vectors TRUE
+## 1287 75332 Basic Building Blocks TRUE
+## 1288 75332 Basic Building Blocks TRUE
+## 1289 75332 Basic Building Blocks TRUE
+## 1290 75332 Vectors TRUE
+## 1291 75332 <NA>
+## 1292 75332 Vectors TRUE
+## 1293 75332 Logic TRUE
+## 1294 75332 Logic TRUE
+## 1295 75332 Logic TRUE
+## 1296 75332 Vectors TRUE
+## 1297 75332 Vectors TRUE
+## 1298 75332 Vectors TRUE
+## 1299 75332 Basic Building Blocks TRUE
+## 1300 75332 Subsetting Vectors TRUE
+## 1301 75332 Subsetting Vectors TRUE
+## 1302 75332 Subsetting Vectors TRUE
+## 1303 75332 Basic Building Blocks TRUE
+## 1304 75332 Basic Building Blocks TRUE
+## 1305 75332 Basic Building Blocks TRUE
+## 1306 75332 Basic Building Blocks TRUE
+## 1307 75332 Basic Building Blocks TRUE
+## 1308 75332 Basic Building Blocks TRUE
+## 1309 75332 Subsetting Vectors TRUE
+## 1310 75332 Subsetting Vectors TRUE
+## 1311 75332 Subsetting Vectors TRUE
+## 1312 75332 Subsetting Vectors TRUE
+## 1313 75332 Subsetting Vectors TRUE
+## 1314 75332 Subsetting Vectors TRUE
+## 1315 75332 Subsetting Vectors FALSE
+## 1316 75332 Subsetting Vectors TRUE
+## 1317 75332 Vectors TRUE
+## 1318 75332 Vectors TRUE
+## 1319 75332 Vectors TRUE
+## 1320 80970 Workspace and Files TRUE
+## 1321 80970 Looking at Data TRUE
+## 1322 80970 Workspace and Files TRUE
+## 1323 80970 Grouping and Chaining with dplyr TRUE
+## 1324 80970 Grouping and Chaining with dplyr TRUE
+## 1325 80970 Looking at Data TRUE
+## 1326 80970 Workspace and Files TRUE
+## 1327 80970 Looking at Data FALSE
+## 1328 80970 Looking at Data TRUE
+## 1329 80970 Grouping and Chaining with dplyr TRUE
+## 1330 80970 Grouping and Chaining with dplyr FALSE
+## 1331 80970 Workspace and Files <NA>
+## 1332 80970 Grouping and Chaining with dplyr FALSE
+## 1333 80970 Grouping and Chaining with dplyr FALSE
+## 1334 80970 Grouping and Chaining with dplyr TRUE
+## 1335 80970 Grouping and Chaining with dplyr TRUE
+## 1336 80970 Grouping and Chaining with dplyr TRUE
+## 1337 80970 Looking at Data TRUE
+## 1338 80970 Looking at Data TRUE
+## 1339 80970 Workspace and Files FALSE
+## 1340 80970 Workspace and Files TRUE
+## 1341 80970 Grouping and Chaining with dplyr FALSE
+## 1342 80970 Workspace and Files TRUE
+## 1343 80970 Vectors TRUE
+## 1344 80970 Workspace and Files FALSE
+## 1345 80970 Workspace and Files TRUE
+## 1346 80970 Vectors TRUE
+## 1347 80970 Grouping and Chaining with dplyr FALSE
+## 1348 80970 Grouping and Chaining with dplyr TRUE
+## 1349 80970 Grouping and Chaining with dplyr TRUE
+## 1350 80970 Looking at Data TRUE
+## 1351 80970 Grouping and Chaining with dplyr TRUE
+## 1352 80970 Grouping and Chaining with dplyr TRUE
+## 1353 80970 Workspace and Files FALSE
+## 1354 80970 Dates and Times TRUE
+## 1355 80970 Workspace and Files TRUE
+## 1356 80970 Workspace and Files TRUE
+## 1357 80970 Vectors FALSE
+## 1358 80970 Vectors FALSE
+## 1359 80970 Logic TRUE
+## 1360 80970 Workspace and Files TRUE
+## 1361 80970 Workspace and Files TRUE
+## 1362 80970 Workspace and Files FALSE
+## 1363 80970 Workspace and Files TRUE
+## 1364 80970 Workspace and Files TRUE
+## 1365 80970 Workspace and Files TRUE
+## 1366 80970 Functions TRUE
+## 1367 80970 Functions TRUE
+## 1368 80970 Functions TRUE
+## 1369 80970 Functions TRUE
+## 1370 80970 Workspace and Files TRUE
+## 1371 80970 Logic TRUE
+## 1372 80970 Functions TRUE
+## 1373 80970 Functions TRUE
+## 1374 80970 Functions TRUE
+## 1375 80970 Functions TRUE
+## 1376 80970 Workspace and Files TRUE
+## 1377 80970 Workspace and Files TRUE
+## 1378 80970 Workspace and Files TRUE
+## 1379 80970 Functions TRUE
+## 1380 80970 Functions FALSE
+## 1381 80970 Functions TRUE
+## 1382 80970 Functions TRUE
+## 1383 80970 Functions TRUE
+## 1384 80970 Functions TRUE
+## 1385 80970 Grouping and Chaining with dplyr TRUE
+## 1386 80970 Grouping and Chaining with dplyr <NA>
+## 1387 80970 Looking at Data TRUE
+## 1388 80970 Looking at Data TRUE
+## 1389 80970 Looking at Data TRUE
+## 1390 80970 Looking at Data TRUE
+## 1391 80970 Workspace and Files TRUE
+## 1392 80970 Workspace and Files TRUE
+## 1393 80970 Dates and Times TRUE
+## 1394 80970 Tidying Data with tidyr FALSE
+## 1395 80970 Tidying Data with tidyr TRUE
+## 1396 80970 Tidying Data with tidyr TRUE
+## 1397 80970 Tidying Data with tidyr TRUE
+## 1398 80970 Tidying Data with tidyr TRUE
+## 1399 80970 Tidying Data with tidyr <NA>
+## 1400 80970 Grouping and Chaining with dplyr TRUE
+## 1401 80970 Grouping and Chaining with dplyr TRUE
+## 1402 80970 Grouping and Chaining with dplyr TRUE
+## 1403 80970 Grouping and Chaining with dplyr FALSE
+## 1404 80970 Grouping and Chaining with dplyr TRUE
+## 1405 80970 Grouping and Chaining with dplyr TRUE
+## 1406 80970 Grouping and Chaining with dplyr TRUE
+## 1407 80970 Grouping and Chaining with dplyr TRUE
+## 1408 80970 Grouping and Chaining with dplyr TRUE
+## 1409 80970 Grouping and Chaining with dplyr TRUE
+## 1410 80970 Grouping and Chaining with dplyr TRUE
+## 1411 80970 Plotting_Systems TRUE
+## 1412 80970 Plotting_Systems TRUE
+## 1413 80970 Plotting_Systems TRUE
+## 1414 80970 Plotting_Systems TRUE
+## 1415 80970 Plotting_Systems TRUE
+## 1416 80970 Plotting_Systems FALSE
+## 1417 80970 Plotting_Systems TRUE
+## 1418 80970 Plotting_Systems FALSE
+## 1419 80970 Grouping and Chaining with dplyr TRUE
+## 1420 80970 Grouping and Chaining with dplyr TRUE
+## 1421 80970 Grouping and Chaining with dplyr TRUE
+## 1422 80970 Grouping and Chaining with dplyr TRUE
+## 1423 80970 Workspace and Files TRUE
+## 1424 80970 Workspace and Files TRUE
+## 1425 80970 Workspace and Files FALSE
+## 1426 80970 Workspace and Files TRUE
+## 1427 80970 Workspace and Files FALSE
+## 1428 80970 Workspace and Files FALSE
+## 1429 80970 Workspace and Files FALSE
+## 1430 80970 Workspace and Files TRUE
+## 1431 80970 Grouping and Chaining with dplyr TRUE
+## 1432 80970 Tidying Data with tidyr TRUE
+## 1433 80970 Tidying Data with tidyr TRUE
+## 1434 80970 Manipulating Data with dplyr TRUE
+## 1435 80970 Manipulating Data with dplyr FALSE
+## 1436 80970 Manipulating Data with dplyr TRUE
+## 1437 80970 Manipulating Data with dplyr TRUE
+## 1438 80970 Manipulating Data with dplyr TRUE
+## 1439 80970 Manipulating Data with dplyr TRUE
+## 1440 80970 Manipulating Data with dplyr FALSE
+## 1441 80970 Logic TRUE
+## 1442 80970 Logic TRUE
+## 1443 80970 Logic TRUE
+## 1444 80970 Logic TRUE
+## 1445 80970 Logic TRUE
+## 1446 80970 Logic <NA>
+## 1447 80970 Dates and Times TRUE
+## 1448 80970 Dates and Times TRUE
+## 1449 80970 Vectors FALSE
+## 1450 80970 Vectors FALSE
+## 1451 80970 Dates and Times TRUE
+## 1452 80970 Dates and Times TRUE
+## 1453 80970 Dates and Times TRUE
+## 1454 80970 Dates and Times TRUE
+## 1455 80970 Vectors FALSE
+## 1456 80970 Vectors TRUE
+## 1457 80970 Vectors TRUE
+## 1458 80970 Vectors TRUE
+## 1459 80970 Vectors TRUE
+## 1460 80970 Vectors TRUE
+## 1461 80970 Vectors TRUE
+## 1462 80970 Vectors FALSE
+## 1463 80970 Grouping and Chaining with dplyr TRUE
+## 1464 80970 Grouping and Chaining with dplyr TRUE
+## 1465 80970 Grouping and Chaining with dplyr FALSE
+## 1466 80970 Grouping and Chaining with dplyr TRUE
+## 1467 80970 Grouping and Chaining with dplyr TRUE
+## 1468 80970 Manipulating Data with dplyr FALSE
+## 1469 80970 Manipulating Data with dplyr TRUE
+## 1470 80970 Manipulating Data with dplyr TRUE
+## 1471 80970 Manipulating Data with dplyr TRUE
+## 1472 80970 Manipulating Data with dplyr TRUE
+## 1473 80970 Manipulating Data with dplyr TRUE
+## 1474 80970 Manipulating Data with dplyr TRUE
+## 1475 80970 Manipulating Data with dplyr <NA>
+## 1476 80970 Dates and Times TRUE
+## 1477 80970 Dates and Times TRUE
+## 1478 80970 Dates and Times <NA>
+## 1479 80970 Functions TRUE
+## 1480 80970 Functions TRUE
+## 1481 80970 Functions TRUE
+## 1482 80970 Functions TRUE
+## 1483 80970 Functions TRUE
+## 1484 80970 Functions TRUE
+## 1485 80970 Functions TRUE
+## 1486 80970 Functions FALSE
+## 1487 80970 Functions TRUE
+## 1488 80970 Tidying Data with tidyr TRUE
+## 1489 80970 Tidying Data with tidyr TRUE
+## 1490 80970 Tidying Data with tidyr TRUE
+## 1491 80970 Tidying Data with tidyr FALSE
+## 1492 80970 Tidying Data with tidyr TRUE
+## 1493 80970 Tidying Data with tidyr TRUE
+## 1494 80970 Tidying Data with tidyr TRUE
+## 1495 80970 Tidying Data with tidyr FALSE
+## 1496 80970 Tidying Data with tidyr FALSE
+## 1497 80970 Functions TRUE
+## 1498 80970 Functions TRUE
+## 1499 80970 Functions TRUE
+## 1500 80970 Tidying Data with tidyr FALSE
+## 1501 80970 Tidying Data with tidyr TRUE
+## 1502 80970 Tidying Data with tidyr TRUE
+## 1503 80970 Tidying Data with tidyr TRUE
+## 1504 80970 Functions TRUE
+## 1505 80970 Functions FALSE
+## 1506 80970 Functions TRUE
+## 1507 80970 Functions TRUE
+## 1508 80970 Functions TRUE
+## 1509 80970 Functions <NA>
+## 1510 80970 Grouping and Chaining with dplyr TRUE
+## 1511 80970 Grouping and Chaining with dplyr FALSE
+## 1512 80970 Tidying Data with tidyr FALSE
+## 1513 80970 Subsetting Vectors TRUE
+## 1514 80970 Subsetting Vectors TRUE
+## 1515 80970 Subsetting Vectors TRUE
+## 1516 80970 Subsetting Vectors TRUE
+## 1517 80970 Subsetting Vectors TRUE
+## 1518 80970 Subsetting Vectors TRUE
+## 1519 80970 Subsetting Vectors TRUE
+## 1520 80970 Subsetting Vectors TRUE
+## 1521 80970 Subsetting Vectors TRUE
+## 1522 80970 Subsetting Vectors TRUE
+## 1523 80970 Subsetting Vectors TRUE
+## 1524 80970 Plotting_Systems TRUE
+## 1525 80970 Plotting_Systems TRUE
+## 1526 80970 Plotting_Systems TRUE
+## 1527 80970 Plotting_Systems FALSE
+## 1528 80970 Plotting_Systems TRUE
+## 1529 80970 Plotting_Systems TRUE
+## 1530 80970 Plotting_Systems TRUE
+## 1531 80970 Plotting_Systems FALSE
+## 1532 80970 Logic TRUE
+## 1533 80970 Logic TRUE
+## 1534 80970 Logic TRUE
+## 1535 80970 Logic FALSE
+## 1536 80970 Logic TRUE
+## 1537 80970 Logic TRUE
+## 1538 80970 Logic TRUE
+## 1539 80970 Logic TRUE
+## 1540 80970 Plotting_Systems TRUE
+## 1541 80970 Plotting_Systems TRUE
+## 1542 80970 Plotting_Systems FALSE
+## 1543 80970 Plotting_Systems FALSE
+## 1544 80970 Plotting_Systems FALSE
+## 1545 80970 Plotting_Systems FALSE
+## 1546 80970 Plotting_Systems TRUE
+## 1547 80970 Plotting_Systems TRUE
+## 1548 80970 Plotting_Systems TRUE
+## 1549 80970 Plotting_Systems TRUE
+## 1550 80970 Plotting_Systems FALSE
+## 1551 80970 Plotting_Systems TRUE
+## 1552 80970 Plotting_Systems TRUE
+## 1553 80970 Plotting_Systems TRUE
+## 1554 80970 Plotting_Systems <NA>
+## 1555 80970 Logic TRUE
+## 1556 80970 Logic FALSE
+## 1557 80970 Logic TRUE
+## 1558 80970 Logic TRUE
+## 1559 80970 Logic TRUE
+## 1560 80970 Logic TRUE
+## 1561 80970 Missing Values TRUE
+## 1562 80970 Missing Values TRUE
+## 1563 80970 Manipulating Data with dplyr TRUE
+## 1564 80970 Manipulating Data with dplyr TRUE
+## 1565 80970 Manipulating Data with dplyr FALSE
+## 1566 80970 Manipulating Data with dplyr TRUE
+## 1567 80970 Manipulating Data with dplyr TRUE
+## 1568 80970 Manipulating Data with dplyr TRUE
+## 1569 80970 Manipulating Data with dplyr TRUE
+## 1570 80970 Dates and Times TRUE
+## 1571 80970 Dates and Times TRUE
+## 1572 80970 Manipulating Data with dplyr TRUE
+## 1573 80970 Manipulating Data with dplyr TRUE
+## 1574 80970 Manipulating Data with dplyr TRUE
+## 1575 80970 Manipulating Data with dplyr FALSE
+## 1576 80970 Manipulating Data with dplyr TRUE
+## 1577 80970 Dates and Times TRUE
+## 1578 80970 Dates and Times TRUE
+## 1579 80970 Dates and Times FALSE
+## 1580 80970 Dates and Times TRUE
+## 1581 80970 Dates and Times TRUE
+## 1582 80970 Dates and Times TRUE
+## 1583 80970 Dates and Times TRUE
+## 1584 80970 Dates and Times TRUE
+## 1585 80970 Vectors TRUE
+## 1586 80970 Vectors TRUE
+## 1587 80970 Vectors FALSE
+## 1588 80970 Vectors TRUE
+## 1589 80970 Vectors FALSE
+## 1590 80970 Vectors TRUE
+## 1591 80970 Vectors TRUE
+## 1592 80970 Vectors TRUE
+## 1593 80970 Vectors TRUE
+## 1594 80970 Vectors FALSE
+## 1595 80970 Vectors FALSE
+## 1596 80970 Vectors TRUE
+## 1597 80970 Vectors TRUE
+## 1598 80970 Vectors TRUE
+## 1599 80970 Vectors TRUE
+## 1600 80970 Vectors <NA>
+## 1601 80970 Tidying Data with tidyr TRUE
+## 1602 80970 Tidying Data with tidyr TRUE
+## 1603 80970 Missing Values TRUE
+## 1604 80970 Missing Values TRUE
+## 1605 80970 Missing Values FALSE
+## 1606 80970 Missing Values TRUE
+## 1607 80970 Missing Values TRUE
+## 1608 80970 Missing Values TRUE
+## 1609 80970 Missing Values TRUE
+## 1610 80970 Missing Values FALSE
+## 1611 80970 Missing Values FALSE
+## 1612 80970 Missing Values TRUE
+## 1613 80970 Missing Values TRUE
+## 1614 80970 Missing Values TRUE
+## 1615 80970 Missing Values TRUE
+## 1616 80970 Missing Values TRUE
+## 1617 80970 Missing Values TRUE
+## 1618 80970 Tidying Data with tidyr FALSE
+## 1619 80970 Tidying Data with tidyr FALSE
+## 1620 80970 Tidying Data with tidyr FALSE
+## 1621 80970 Subsetting Vectors TRUE
+## 1622 80970 Subsetting Vectors TRUE
+## 1623 80970 Subsetting Vectors FALSE
+## 1624 80970 Subsetting Vectors TRUE
+## 1625 80970 Tidying Data with tidyr TRUE
+## 1626 80970 Tidying Data with tidyr TRUE
+## 1627 80970 Tidying Data with tidyr TRUE
+## 1628 80970 Tidying Data with tidyr TRUE
+## 1629 80970 Tidying Data with tidyr FALSE
+## 1630 80970 Tidying Data with tidyr FALSE
+## 1631 80970 Tidying Data with tidyr TRUE
+## 1632 80970 Tidying Data with tidyr TRUE
+## 1633 80970 Subsetting Vectors TRUE
+## 1634 80970 Logic TRUE
+## 1635 80970 Logic TRUE
+## 1636 80970 Dates and Times TRUE
+## 1637 80970 Tidying Data with tidyr TRUE
+## 1638 80970 Tidying Data with tidyr TRUE
+## 1639 80970 Tidying Data with tidyr TRUE
+## 1640 80970 Tidying Data with tidyr TRUE
+## 1641 80970 Manipulating Data with dplyr FALSE
+## 1642 80970 Logic FALSE
+## 1643 80970 Tidying Data with tidyr FALSE
+## 1644 80970 Tidying Data with tidyr TRUE
+## 1645 80970 Subsetting Vectors TRUE
+## 1646 80970 Subsetting Vectors TRUE
+## 1647 80970 Subsetting Vectors TRUE
+## 1648 80970 Subsetting Vectors <NA>
+## 1649 80970 Logic TRUE
+## 1650 80970 Logic TRUE
+## 1651 80970 Logic TRUE
+## 1652 80970 Logic TRUE
+## 1653 80970 Manipulating Data with dplyr TRUE
+## 1654 80970 Logic TRUE
+## 1655 80970 Dates and Times TRUE
+## 1656 80970 Logic FALSE
+## 1657 80970 Logic TRUE
+## 1658 80970 Manipulating Data with dplyr TRUE
+## 1659 80970 Manipulating Data with dplyr FALSE
+## 1660 80970 Manipulating Data with dplyr TRUE
+## 1661 80970 Logic TRUE
+## 1662 80970 Logic TRUE
+## 1663 80970 Logic TRUE
+## 1664 80970 Logic TRUE
+## 1665 80970 Logic TRUE
+## 1666 80970 Logic TRUE
+## 1667 80970 Dates and Times TRUE
+## 1668 80970 Subsetting Vectors TRUE
+## 1669 80970 Dates and Times FALSE
+## 1670 80970 Dates and Times TRUE
+## 1671 80970 Logic TRUE
+## 1672 80970 Logic TRUE
+## 1673 80970 Logic FALSE
+## 1674 80970 Dates and Times TRUE
+## 1675 80970 Dates and Times TRUE
+## 1676 80970 Manipulating Data with dplyr TRUE
+## 1677 80970 Manipulating Data with dplyr TRUE
+## 1678 80970 Looking at Data <NA>
+## 1679 80970 Manipulating Data with dplyr TRUE
+## 1680 80970 Dates and Times TRUE
+## 1681 80970 Tidying Data with tidyr TRUE
+## 1682 80970 Subsetting Vectors TRUE
+## 1683 80970 Subsetting Vectors TRUE
+## 1684 80970 Looking at Data TRUE
+## 1685 80970 Looking at Data TRUE
+## 1686 80970 Looking at Data TRUE
+## 1687 80970 Looking at Data TRUE
+## 1688 80970 Manipulating Data with dplyr TRUE
+## 1689 80970 Subsetting Vectors TRUE
+## 1690 80970 Looking at Data TRUE
+## 1691 80970 Manipulating Data with dplyr TRUE
+## 1692 80970 Manipulating Data with dplyr TRUE
+## 1693 80970 Manipulating Data with dplyr TRUE
+## 1694 80970 Dates and Times TRUE
+## 1695 80970 Missing Values <NA>
+## 1696 80970 Subsetting Vectors TRUE
+## 1697 80970 Dates and Times TRUE
+## 1698 80970 Manipulating Data with dplyr TRUE
+## 1699 80970 Manipulating Data with dplyr TRUE
+## 1700 80970 Tidying Data with tidyr TRUE
+## 1701 80970 Subsetting Vectors FALSE
+## 1702 80970 Manipulating Data with dplyr TRUE
+## 1703 80970 Subsetting Vectors FALSE
+## 1704 80970 Dates and Times FALSE
+## 1705 80970 Subsetting Vectors TRUE
+## 1706 80970 Manipulating Data with dplyr TRUE
+## 1707 80970 Manipulating Data with dplyr TRUE
+## 1708 80970 Tidying Data with tidyr FALSE
+## 1709 80970 Manipulating Data with dplyr TRUE
+## 1710 80970 Tidying Data with tidyr FALSE
+## 1711 80970 Tidying Data with tidyr TRUE
+## 1712 80970 Manipulating Data with dplyr TRUE
+## 1713 80970 Manipulating Data with dplyr TRUE
+## 1714 80970 Subsetting Vectors TRUE
+## 1715 80970 Tidying Data with tidyr TRUE
+## 1716 80970 Manipulating Data with dplyr FALSE
+## 1717 80970 Subsetting Vectors TRUE
+## 1718 80970 Manipulating Data with dplyr TRUE
+## 1719 96746 Basic Building Blocks TRUE
+## 1720 96746 Matrices and Data Frames FALSE
+## 1721 96746 Basic Building Blocks TRUE
+## 1722 96746 Matrices and Data Frames FALSE
+## 1723 96746 Matrices and Data Frames TRUE
+## 1724 96746 Basic Building Blocks TRUE
+## 1725 96746 Matrices and Data Frames TRUE
+## 1726 96746 Matrices and Data Frames TRUE
+## 1727 96746 Matrices and Data Frames TRUE
+## 1728 96746 Matrices and Data Frames FALSE
+## 1729 96746 Basic Building Blocks TRUE
+## 1730 96746 Basic Building Blocks TRUE
+## 1731 96746 Matrices and Data Frames TRUE
+## 1732 96746 Matrices and Data Frames TRUE
+## 1733 96746 Matrices and Data Frames TRUE
+## 1734 96746 Matrices and Data Frames FALSE
+## 1735 96746 Basic Building Blocks TRUE
+## 1736 96746 Basic Building Blocks TRUE
+## 1737 96746 Matrices and Data Frames TRUE
+## 1738 96746 Basic Building Blocks TRUE
+## 1739 96746 Basic Building Blocks TRUE
+## 1740 96746 Basic Building Blocks <NA>
+## 1741 96746 Basic Building Blocks TRUE
+## 1742 96746 Basic Building Blocks TRUE
+## 1743 96746 Matrices and Data Frames FALSE
+## 1744 96746 Matrices and Data Frames TRUE
+## 1745 96746 Matrices and Data Frames FALSE
+## 1746 96746 Basic Building Blocks TRUE
+## 1747 96746 Basic Building Blocks TRUE
+## 1748 96746 Matrices and Data Frames TRUE
+## 1749 96746 Matrices and Data Frames TRUE
+## 1750 96746 Matrices and Data Frames FALSE
+## 1751 96746 Matrices and Data Frames FALSE
+## 1752 96746 Matrices and Data Frames TRUE
+## 1753 96746 Basic Building Blocks TRUE
+## 1754 96746 Basic Building Blocks TRUE
+## 1755 96746 Matrices and Data Frames TRUE
+## 1756 96746 Matrices and Data Frames TRUE
+## 1757 96746 Matrices and Data Frames TRUE
+## 1758 96746 Matrices and Data Frames TRUE
+## 1759 96746 Matrices and Data Frames TRUE
+## 1760 96746 Basic Building Blocks TRUE
+## 1761 96746 Basic Building Blocks TRUE
+## 1762 96746 Basic Building Blocks TRUE
+## 1763 96746 Matrices and Data Frames FALSE
+## 1764 96746 Matrices and Data Frames TRUE
+## 1765 96746 Matrices and Data Frames TRUE
+## 1766 96746 Matrices and Data Frames TRUE
+## 1767 96746 Matrices and Data Frames TRUE
+## 1768 96746 Basic Building Blocks TRUE
+## 1769 96746 Basic Building Blocks TRUE
+## 1770 96746 Basic Building Blocks TRUE
+## 1771 96746 Matrices and Data Frames TRUE
+## 1772 96746 Matrices and Data Frames <NA>
+## 1773 96746 Basic Building Blocks TRUE
+## 1774 96746 Matrices and Data Frames FALSE
+## 1775 96746 Matrices and Data Frames FALSE
+## 1776 96746 Matrices and Data Frames TRUE
+## 1777 96746 Matrices and Data Frames FALSE
+## 1778 74372 Vectors TRUE
+## 1779 74372 Basic Building Blocks TRUE
+## 1780 74372 Vectors TRUE
+## 1781 74372 Basic Building Blocks FALSE
+## 1782 74372 Basic Building Blocks TRUE
+## 1783 74372 Basic Building Blocks TRUE
+## 1784 74372 Basic Building Blocks TRUE
+## 1785 74372 Basic Building Blocks TRUE
+## 1786 74372 Vectors FALSE
+## 1787 74372 Workspace and Files TRUE
+## 1788 74372 Basic Building Blocks TRUE
+## 1789 74372 Vectors TRUE
+## 1790 74372 Basic Building Blocks TRUE
+## 1791 74372 Basic Building Blocks TRUE
+## 1792 74372 Workspace and Files FALSE
+## 1793 74372 Workspace and Files TRUE
+## 1794 74372 Vectors TRUE
+## 1795 74372 Basic Building Blocks TRUE
+## 1796 74372 Workspace and Files <NA>
+## 1797 74372 Workspace and Files TRUE
+## 1798 74372 Workspace and Files TRUE
+## 1799 74372 Basic Building Blocks TRUE
+## 1800 74372 Workspace and Files TRUE
+## 1801 74372 Basic Building Blocks <NA>
+## 1802 74372 Basic Building Blocks TRUE
+## 1803 74372 Basic Building Blocks TRUE
+## 1804 74372 Basic Building Blocks TRUE
+## 1805 74372 Vectors TRUE
+## 1806 74372 Workspace and Files TRUE
+## 1807 74372 Workspace and Files TRUE
+## 1808 74372 Basic Building Blocks TRUE
+## 1809 74372 Workspace and Files TRUE
+## 1810 74372 Vectors FALSE
+## 1811 74372 Vectors FALSE
+## 1812 74372 Workspace and Files TRUE
+## 1813 74372 Workspace and Files TRUE
+## 1814 74372 Workspace and Files TRUE
+## 1815 74372 Workspace and Files FALSE
+## 1816 74372 Workspace and Files TRUE
+## 1817 74372 Workspace and Files TRUE
+## 1818 74372 Vectors TRUE
+## 1819 74372 Workspace and Files TRUE
+## 1820 74372 Workspace and Files TRUE
+## 1821 74372 Basic Building Blocks TRUE
+## 1822 74372 Basic Building Blocks TRUE
+## 1823 74372 Workspace and Files FALSE
+## 1824 74372 Workspace and Files TRUE
+## 1825 74372 Vectors TRUE
+## 1826 74372 Workspace and Files TRUE
+## 1827 74372 Vectors TRUE
+## 1828 74372 Workspace and Files TRUE
+## 1829 74372 Workspace and Files TRUE
+## 1830 74372 Workspace and Files TRUE
+## 1831 74372 Missing Values TRUE
+## 1832 74372 Vectors TRUE
+## 1833 74372 Vectors TRUE
+## 1834 74372 Vectors TRUE
+## 1835 74372 Workspace and Files TRUE
+## 1836 74372 Vectors FALSE
+## 1837 74372 Workspace and Files TRUE
+## 1838 74372 Basic Building Blocks TRUE
+## 1839 74372 Basic Building Blocks TRUE
+## 1840 74372 Missing Values TRUE
+## 1841 74372 Vectors FALSE
+## 1842 74372 Vectors FALSE
+## 1843 74372 Vectors TRUE
+## 1844 74372 Basic Building Blocks TRUE
+## 1845 74372 Missing Values TRUE
+## 1846 74372 Vectors TRUE
+## 1847 74372 Vectors TRUE
+## 1848 74372 Missing Values <NA>
+## 1849 74372 Vectors TRUE
+## 1850 74372 Vectors TRUE
+## 1851 74372 Missing Values TRUE
+## 1852 74372 Vectors FALSE
+## 1853 74372 Workspace and Files TRUE
+## 1854 74372 Missing Values TRUE
+## 1855 74372 Missing Values FALSE
+## 1856 74372 Vectors TRUE
+## 1857 74372 Missing Values TRUE
+## 1858 74372 Missing Values TRUE
+## 1859 74372 Missing Values TRUE
+## 1860 74372 Workspace and Files FALSE
+## 1861 74372 Basic Building Blocks TRUE
+## 1862 74372 Missing Values TRUE
+## 1863 74372 Basic Building Blocks TRUE
+## 1864 74372 Missing Values TRUE
+## 1865 74372 Missing Values TRUE
+## 1866 74372 Missing Values TRUE
+## 1867 74372 Vectors <NA>
+## 1868 74372 Basic Building Blocks TRUE
+## 1869 74372 Vectors TRUE
+## 1870 74372 Vectors FALSE
+## 1871 74372 Vectors TRUE
+## 1872 74372 Missing Values TRUE
+## 1873 74372 Vectors FALSE
+## 1874 74372 Missing Values TRUE
+## 1875 45253 <NA>
+## 1876 16365 Subsetting Vectors TRUE
+## 1877 16365 Matrices and Data Frames FALSE
+## 1878 16365 Functions TRUE
+## 1879 16365 Functions TRUE
+## 1880 16365 Functions FALSE
+## 1881 16365 Functions TRUE
+## 1882 16365 Subsetting Vectors TRUE
+## 1883 16365 Subsetting Vectors TRUE
+## 1884 16365 Basic Building Blocks <NA>
+## 1885 16365 Functions TRUE
+## 1886 16365 Basic Building Blocks TRUE
+## 1887 16365 Matrices and Data Frames TRUE
+## 1888 16365 <NA>
+## 1889 16365 Basic Building Blocks TRUE
+## 1890 16365 Matrices and Data Frames TRUE
+## 1891 16365 Basic Building Blocks TRUE
+## 1892 16365 Workspace and Files TRUE
+## 1893 16365 Matrices and Data Frames TRUE
+## 1894 16365 Matrices and Data Frames TRUE
+## 1895 16365 Matrices and Data Frames TRUE
+## 1896 16365 Matrices and Data Frames TRUE
+## 1897 16365 Matrices and Data Frames TRUE
+## 1898 16365 Basic Building Blocks TRUE
+## 1899 16365 Workspace and Files TRUE
+## 1900 16365 Matrices and Data Frames FALSE
+## 1901 16365 Basic Building Blocks TRUE
+## 1902 16365 Dates and Times TRUE
+## 1903 16365 Matrices and Data Frames TRUE
+## 1904 16365 Subsetting Vectors TRUE
+## 1905 16365 Subsetting Vectors TRUE
+## 1906 16365 Functions TRUE
+## 1907 16365 Logic TRUE
+## 1908 16365 Matrices and Data Frames TRUE
+## 1909 16365 Subsetting Vectors TRUE
+## 1910 16365 <NA>
+## 1911 16365 Basic Building Blocks FALSE
+## 1912 16365 Matrices and Data Frames TRUE
+## 1913 16365 Workspace and Files TRUE
+## 1914 16365 Dates and Times TRUE
+## 1915 16365 Logic TRUE
+## 1916 16365 Logic TRUE
+## 1917 16365 Dates and Times FALSE
+## 1918 16365 Dates and Times TRUE
+## 1919 16365 Basic Building Blocks TRUE
+## 1920 16365 Subsetting Vectors TRUE
+## 1921 16365 Logic TRUE
+## 1922 16365 Logic TRUE
+## 1923 16365 Matrices and Data Frames TRUE
+## 1924 16365 Workspace and Files TRUE
+## 1925 16365 Matrices and Data Frames TRUE
+## 1926 16365 Subsetting Vectors TRUE
+## 1927 16365 Logic TRUE
+## 1928 16365 Functions TRUE
+## 1929 16365 Dates and Times TRUE
+## 1930 16365 Dates and Times TRUE
+## 1931 16365 Workspace and Files TRUE
+## 1932 16365 Vectors TRUE
+## 1933 16365 Basic Building Blocks TRUE
+## 1934 16365 <NA>
+## 1935 16365 Functions TRUE
+## 1936 16365 Functions TRUE
+## 1937 16365 Matrices and Data Frames TRUE
+## 1938 16365 Matrices and Data Frames TRUE
+## 1939 16365 Logic TRUE
+## 1940 16365 Workspace and Files FALSE
+## 1941 16365 Logic TRUE
+## 1942 16365 Vectors TRUE
+## 1943 16365 Workspace and Files TRUE
+## 1944 16365 Dates and Times TRUE
+## 1945 16365 Basic Building Blocks TRUE
+## 1946 16365 Dates and Times TRUE
+## 1947 16365 Vectors FALSE
+## 1948 16365 Matrices and Data Frames TRUE
+## 1949 16365 Vectors TRUE
+## 1950 16365 Matrices and Data Frames TRUE
+## 1951 16365 Basic Building Blocks TRUE
+## 1952 16365 Basic Building Blocks TRUE
+## 1953 16365 Logic TRUE
+## 1954 16365 Dates and Times TRUE
+## 1955 16365 Missing Values TRUE
+## 1956 16365 Vectors TRUE
+## 1957 16365 Vectors TRUE
+## 1958 16365 Vectors TRUE
+## 1959 16365 Basic Building Blocks TRUE
+## 1960 16365 Matrices and Data Frames TRUE
+## 1961 16365 Basic Building Blocks TRUE
+## 1962 16365 <NA>
+## 1963 16365 Vectors FALSE
+## 1964 16365 Vectors TRUE
+## 1965 16365 Logic TRUE
+## 1966 16365 Workspace and Files TRUE
+## 1967 16365 Functions TRUE
+## 1968 16365 Vectors FALSE
+## 1969 16365 Missing Values TRUE
+## 1970 16365 Dates and Times TRUE
+## 1971 16365 Dates and Times TRUE
+## 1972 16365 Functions TRUE
+## 1973 16365 Vectors TRUE
+## 1974 16365 Vectors TRUE
+## 1975 16365 Matrices and Data Frames TRUE
+## 1976 16365 Basic Building Blocks FALSE
+## 1977 16365 Basic Building Blocks TRUE
+## 1978 16365 Matrices and Data Frames TRUE
+## 1979 16365 Matrices and Data Frames TRUE
+## 1980 16365 Functions TRUE
+## 1981 16365 Workspace and Files TRUE
+## 1982 16365 Functions FALSE
+## 1983 16365 Functions FALSE
+## 1984 16365 Functions TRUE
+## 1985 16365 Workspace and Files FALSE
+## 1986 16365 Matrices and Data Frames TRUE
+## 1987 16365 Subsetting Vectors TRUE
+## 1988 16365 Vectors FALSE
+## 1989 16365 Vectors TRUE
+## 1990 16365 Vectors FALSE
+## 1991 16365 Vectors TRUE
+## 1992 16365 Vectors TRUE
+## 1993 16365 Vectors TRUE
+## 1994 16365 Workspace and Files TRUE
+## 1995 16365 Logic TRUE
+## 1996 16365 Logic TRUE
+## 1997 16365 Dates and Times FALSE
+## 1998 16365 Functions TRUE
+## 1999 16365 Matrices and Data Frames TRUE
+## 2000 16365 Matrices and Data Frames TRUE
+## 2001 16365 Matrices and Data Frames TRUE
+## 2002 16365 Subsetting Vectors FALSE
+## 2003 16365 Matrices and Data Frames TRUE
+## 2004 16365 Matrices and Data Frames TRUE
+## 2005 16365 Subsetting Vectors TRUE
+## 2006 16365 Subsetting Vectors TRUE
+## 2007 16365 Logic TRUE
+## 2008 16365 Logic TRUE
+## 2009 16365 Vectors TRUE
+## 2010 16365 Dates and Times TRUE
+## 2011 16365 <NA>
+## 2012 16365 Matrices and Data Frames FALSE
+## 2013 16365 Missing Values TRUE
+## 2014 16365 Functions TRUE
+## 2015 16365 Logic TRUE
+## 2016 16365 Logic TRUE
+## 2017 16365 Dates and Times TRUE
+## 2018 16365 Workspace and Files TRUE
+## 2019 16365 Workspace and Files TRUE
+## 2020 16365 Subsetting Vectors TRUE
+## 2021 16365 Functions TRUE
+## 2022 16365 Dates and Times TRUE
+## 2023 16365 Functions TRUE
+## 2024 16365 Functions TRUE
+## 2025 16365 Missing Values FALSE
+## 2026 16365 Missing Values TRUE
+## 2027 16365 Matrices and Data Frames TRUE
+## 2028 16365 Functions TRUE
+## 2029 16365 Logic FALSE
+## 2030 16365 Workspace and Files FALSE
+## 2031 16365 Workspace and Files TRUE
+## 2032 16365 Workspace and Files TRUE
+## 2033 16365 Functions TRUE
+## 2034 16365 Dates and Times TRUE
+## 2035 16365 Dates and Times TRUE
+## 2036 16365 Functions TRUE
+## 2037 16365 Functions TRUE
+## 2038 16365 Missing Values TRUE
+## 2039 16365 Missing Values TRUE
+## 2040 16365 Missing Values <NA>
+## 2041 16365 Subsetting Vectors TRUE
+## 2042 16365 Functions TRUE
+## 2043 16365 Functions TRUE
+## 2044 16365 Logic TRUE
+## 2045 16365 Logic TRUE
+## 2046 16365 Functions TRUE
+## 2047 16365 Functions TRUE
+## 2048 16365 Functions TRUE
+## 2049 16365 Missing Values FALSE
+## 2050 16365 Functions TRUE
+## 2051 16365 Functions FALSE
+## 2052 16365 Functions TRUE
+## 2053 16365 Functions TRUE
+## 2054 16365 Functions TRUE
+## 2055 16365 Missing Values TRUE
+## 2056 16365 Missing Values TRUE
+## 2057 16365 Subsetting Vectors TRUE
+## 2058 16365 Subsetting Vectors TRUE
+## 2059 16365 Missing Values TRUE
+## 2060 16365 Missing Values TRUE
+## 2061 16365 Missing Values TRUE
+## 2062 16365 Missing Values TRUE
+## 2063 16365 Functions TRUE
+## 2064 16365 Functions TRUE
+## 2065 16365 Missing Values TRUE
+## 2066 16365 Missing Values TRUE
+## 2067 68515 Missing Values TRUE
+## 2068 68515 Vectors <NA>
+## 2069 68515 Dates and Times TRUE
+## 2070 68515 Functions FALSE
+## 2071 68515 Dates and Times TRUE
+## 2072 68515 Functions FALSE
+## 2073 68515 Functions FALSE
+## 2074 68515 Dates and Times FALSE
+## 2075 68515 Functions TRUE
+## 2076 68515 Functions FALSE
+## 2077 68515 Functions FALSE
+## 2078 68515 Dates and Times TRUE
+## 2079 68515 Dates and Times TRUE
+## 2080 68515 Functions TRUE
+## 2081 68515 Functions FALSE
+## 2082 68515 Vectors TRUE
+## 2083 68515 Dates and Times TRUE
+## 2084 68515 Dates and Times TRUE
+## 2085 68515 Functions FALSE
+## 2086 68515 Logic FALSE
+## 2087 68515 Dates and Times TRUE
+## 2088 68515 Dates and Times TRUE
+## 2089 68515 Dates and Times TRUE
+## 2090 68515 Functions TRUE
+## 2091 68515 Vectors TRUE
+## 2092 68515 Vectors TRUE
+## 2093 68515 Functions FALSE
+## 2094 68515 Functions TRUE
+## 2095 68515 Functions TRUE
+## 2096 68515 Functions FALSE
+## 2097 68515 Functions TRUE
+## 2098 68515 Workspace and Files TRUE
+## 2099 68515 Workspace and Files FALSE
+## 2100 68515 Functions TRUE
+## 2101 68515 Logic TRUE
+## 2102 68515 Functions FALSE
+## 2103 68515 Vectors TRUE
+## 2104 68515 Functions FALSE
+## 2105 68515 Dates and Times TRUE
+## 2106 68515 Dates and Times TRUE
+## 2107 68515 Functions TRUE
+## 2108 68515 Functions TRUE
+## 2109 68515 Functions TRUE
+## 2110 68515 Functions FALSE
+## 2111 68515 Functions FALSE
+## 2112 68515 Functions FALSE
+## 2113 68515 Vectors TRUE
+## 2114 68515 Functions TRUE
+## 2115 68515 Vectors TRUE
+## 2116 68515 Functions FALSE
+## 2117 68515 Functions FALSE
+## 2118 68515 Functions TRUE
+## 2119 68515 Dates and Times <NA>
+## 2120 68515 Functions TRUE
+## 2121 68515 Functions FALSE
+## 2122 68515 Workspace and Files TRUE
+## 2123 68515 Workspace and Files TRUE
+## 2124 68515 Workspace and Files TRUE
+## 2125 68515 Functions FALSE
+## 2126 68515 Functions FALSE
+## 2127 68515 Dates and Times TRUE
+## 2128 68515 Vectors FALSE
+## 2129 68515 Vectors TRUE
+## 2130 68515 Functions TRUE
+## 2131 68515 Vectors FALSE
+## 2132 68515 Vectors TRUE
+## 2133 68515 Functions TRUE
+## 2134 68515 Functions TRUE
+## 2135 68515 Workspace and Files TRUE
+## 2136 68515 Functions FALSE
+## 2137 68515 Dates and Times TRUE
+## 2138 68515 Dates and Times FALSE
+## 2139 68515 Vectors TRUE
+## 2140 68515 Workspace and Files FALSE
+## 2141 68515 Logic TRUE
+## 2142 68515 Functions FALSE
+## 2143 68515 Functions FALSE
+## 2144 68515 Functions TRUE
+## 2145 68515 Functions FALSE
+## 2146 68515 Functions FALSE
+## 2147 68515 Functions FALSE
+## 2148 68515 Functions FALSE
+## 2149 68515 Logic TRUE
+## 2150 68515 Subsetting Vectors TRUE
+## 2151 68515 Subsetting Vectors TRUE
+## 2152 68515 Workspace and Files TRUE
+## 2153 68515 Functions TRUE
+## 2154 68515 Functions FALSE
+## 2155 68515 Logic TRUE
+## 2156 68515 Functions TRUE
+## 2157 68515 Functions <NA>
+## 2158 68515 Functions TRUE
+## 2159 68515 Functions TRUE
+## 2160 68515 Dates and Times TRUE
+## 2161 68515 Functions FALSE
+## 2162 68515 Functions TRUE
+## 2163 68515 Functions TRUE
+## 2164 68515 Vectors TRUE
+## 2165 68515 Vectors TRUE
+## 2166 68515 Dates and Times TRUE
+## 2167 68515 Vectors TRUE
+## 2168 68515 Dates and Times TRUE
+## 2169 68515 Vectors TRUE
+## 2170 68515 Vectors TRUE
+## 2171 68515 Dates and Times TRUE
+## 2172 68515 Dates and Times TRUE
+## 2173 68515 Functions TRUE
+## 2174 68515 Workspace and Files TRUE
+## 2175 68515 Logic TRUE
+## 2176 68515 Subsetting Vectors FALSE
+## 2177 68515 Basic Building Blocks TRUE
+## 2178 68515 Basic Building Blocks TRUE
+## 2179 68515 Logic TRUE
+## 2180 68515 Logic TRUE
+## 2181 68515 Basic Building Blocks TRUE
+## 2182 68515 Basic Building Blocks TRUE
+## 2183 68515 Logic FALSE
+## 2184 68515 Logic FALSE
+## 2185 68515 Missing Values TRUE
+## 2186 68515 Functions FALSE
+## 2187 68515 Workspace and Files TRUE
+## 2188 68515 Workspace and Files TRUE
+## 2189 68515 Functions FALSE
+## 2190 68515 Functions FALSE
+## 2191 68515 Functions FALSE
+## 2192 68515 Functions TRUE
+## 2193 68515 Functions FALSE
+## 2194 68515 Workspace and Files TRUE
+## 2195 68515 Workspace and Files FALSE
+## 2196 68515 Workspace and Files TRUE
+## 2197 68515 Missing Values TRUE
+## 2198 68515 Logic TRUE
+## 2199 68515 Dates and Times TRUE
+## 2200 68515 Basic Building Blocks TRUE
+## 2201 68515 Vectors TRUE
+## 2202 68515 Vectors TRUE
+## 2203 68515 Vectors TRUE
+## 2204 68515 Dates and Times TRUE
+## 2205 68515 Dates and Times TRUE
+## 2206 68515 Vectors TRUE
+## 2207 68515 Basic Building Blocks TRUE
+## 2208 68515 Functions FALSE
+## 2209 68515 Dates and Times TRUE
+## 2210 68515 Dates and Times TRUE
+## 2211 68515 Functions TRUE
+## 2212 68515 Functions TRUE
+## 2213 68515 Basic Building Blocks TRUE
+## 2214 68515 Logic TRUE
+## 2215 68515 Logic TRUE
+## 2216 68515 Logic TRUE
+## 2217 68515 Subsetting Vectors TRUE
+## 2218 68515 Subsetting Vectors FALSE
+## 2219 68515 Basic Building Blocks TRUE
+## 2220 68515 Basic Building Blocks TRUE
+## 2221 68515 Logic FALSE
+## 2222 68515 Subsetting Vectors TRUE
+## 2223 68515 Basic Building Blocks TRUE
+## 2224 68515 Workspace and Files TRUE
+## 2225 68515 Logic FALSE
+## 2226 68515 Logic FALSE
+## 2227 68515 Logic TRUE
+## 2228 68515 Logic TRUE
+## 2229 68515 Workspace and Files FALSE
+## 2230 68515 Functions FALSE
+## 2231 68515 Functions FALSE
+## 2232 68515 Functions TRUE
+## 2233 68515 Workspace and Files TRUE
+## 2234 68515 Subsetting Vectors TRUE
+## 2235 68515 Logic TRUE
+## 2236 68515 Logic TRUE
+## 2237 68515 Logic TRUE
+## 2238 68515 Missing Values <NA>
+## 2239 68515 Logic TRUE
+## 2240 68515 Logic <NA>
+## 2241 68515 Basic Building Blocks TRUE
+## 2242 68515 Vectors TRUE
+## 2243 68515 Dates and Times TRUE
+## 2244 68515 Basic Building Blocks TRUE
+## 2245 68515 Basic Building Blocks TRUE
+## 2246 68515 Dates and Times TRUE
+## 2247 68515 Logic TRUE
+## 2248 68515 Basic Building Blocks FALSE
+## 2249 68515 Workspace and Files TRUE
+## 2250 68515 Workspace and Files TRUE
+## 2251 68515 Basic Building Blocks TRUE
+## 2252 68515 Basic Building Blocks TRUE
+## 2253 68515 Logic TRUE
+## 2254 68515 Basic Building Blocks TRUE
+## 2255 68515 Basic Building Blocks TRUE
+## 2256 68515 Basic Building Blocks FALSE
+## 2257 68515 Logic TRUE
+## 2258 68515 Logic TRUE
+## 2259 68515 Subsetting Vectors TRUE
+## 2260 68515 Subsetting Vectors TRUE
+## 2261 68515 Missing Values TRUE
+## 2262 68515 Missing Values TRUE
+## 2263 68515 Subsetting Vectors TRUE
+## 2264 68515 Basic Building Blocks TRUE
+## 2265 68515 Workspace and Files FALSE
+## 2266 68515 Workspace and Files TRUE
+## 2267 68515 Workspace and Files FALSE
+## 2268 68515 Workspace and Files TRUE
+## 2269 68515 Logic TRUE
+## 2270 68515 Dates and Times TRUE
+## 2271 68515 Subsetting Vectors FALSE
+## 2272 68515 Logic FALSE
+## 2273 68515 Workspace and Files TRUE
+## 2274 68515 Logic TRUE
+## 2275 68515 Logic FALSE
+## 2276 68515 Missing Values TRUE
+## 2277 68515 Logic TRUE
+## 2278 68515 Logic TRUE
+## 2279 68515 Workspace and Files TRUE
+## 2280 68515 Workspace and Files TRUE
+## 2281 68515 Dates and Times TRUE
+## 2282 68515 Dates and Times TRUE
+## 2283 68515 Logic TRUE
+## 2284 68515 Missing Values TRUE
+## 2285 68515 Subsetting Vectors FALSE
+## 2286 68515 Logic FALSE
+## 2287 68515 Workspace and Files FALSE
+## 2288 68515 Missing Values TRUE
+## 2289 68515 Vectors FALSE
+## 2290 68515 Subsetting Vectors FALSE
+## 2291 68515 Logic FALSE
+## 2292 68515 Subsetting Vectors TRUE
+## 2293 68515 Subsetting Vectors TRUE
+## 2294 68515 Logic TRUE
+## 2295 68515 Logic TRUE
+## 2296 68515 Workspace and Files TRUE
+## 2297 68515 Basic Building Blocks TRUE
+## 2298 68515 Workspace and Files TRUE
+## 2299 68515 Subsetting Vectors TRUE
+## 2300 68515 Logic FALSE
+## 2301 68515 Missing Values TRUE
+## 2302 68515 Missing Values TRUE
+## 2303 68515 Subsetting Vectors <NA>
+## 2304 68515 Subsetting Vectors TRUE
+## 2305 68515 Subsetting Vectors TRUE
+## 2306 68515 Missing Values TRUE
+## 2307 68515 Missing Values TRUE
+## 2308 68515 Basic Building Blocks <NA>
+## 2309 68515 Workspace and Files <NA>
+## 2310 68515 Subsetting Vectors FALSE
+## 2311 68515 Logic TRUE
+## 2312 68515 Logic TRUE
+## 2313 68515 Subsetting Vectors TRUE
+## 2314 68515 Logic TRUE
+## 2315 68515 Subsetting Vectors TRUE
+## 2316 68515 Basic Building Blocks TRUE
+## 2317 68515 Subsetting Vectors TRUE
+## 2318 68515 Subsetting Vectors TRUE
+## 2319 68515 Logic FALSE
+## 2320 68515 Subsetting Vectors TRUE
+## 2321 68515 Workspace and Files TRUE
+## 2322 68515 Logic TRUE
+## 2323 68515 Missing Values TRUE
+## 2324 68515 Missing Values TRUE
+## 2325 68515 Subsetting Vectors TRUE
+## 2326 68515 Subsetting Vectors TRUE
+## 2327 68515 Logic TRUE
+## 2328 68515 Subsetting Vectors TRUE
+## 2329 68515 Subsetting Vectors TRUE
+## 2330 68515 Subsetting Vectors TRUE
+## 2331 68515 Subsetting Vectors FALSE
+## 2332 68515 Subsetting Vectors FALSE
+## 2333 68515 Logic TRUE
+## 2334 68515 Subsetting Vectors TRUE
+## 2335 68515 Basic Building Blocks TRUE
+## 2336 68515 Subsetting Vectors TRUE
+## 2337 68515 Subsetting Vectors FALSE
+## 2338 68515 Basic Building Blocks TRUE
+## 2339 68515 Logic TRUE
+## 2340 68515 Subsetting Vectors TRUE
+## 2341 67994 Matrices and Data Frames FALSE
+## 2342 67994 Matrices and Data Frames FALSE
+## 2343 67994 Matrices and Data Frames TRUE
+## 2344 67994 Matrices and Data Frames TRUE
+## 2345 67994 Matrices and Data Frames FALSE
+## 2346 67994 Matrices and Data Frames FALSE
+## 2347 67994 Matrices and Data Frames <NA>
+## 2348 67994 Matrices and Data Frames TRUE
+## 2349 67994 Matrices and Data Frames TRUE
+## 2350 67994 Matrices and Data Frames TRUE
+## 2351 67994 Matrices and Data Frames TRUE
+## 2352 67994 Matrices and Data Frames TRUE
+## 2353 67994 Matrices and Data Frames TRUE
+## 2354 67994 Matrices and Data Frames TRUE
+## 2355 67994 Matrices and Data Frames TRUE
+## 2356 67994 Matrices and Data Frames TRUE
+## 2357 67994 Matrices and Data Frames TRUE
+## 2358 67994 Matrices and Data Frames TRUE
+## 2359 67994 Matrices and Data Frames TRUE
+## 2360 67994 Matrices and Data Frames TRUE
+## 2361 67994 Matrices and Data Frames TRUE
+## 2362 67994 Matrices and Data Frames TRUE
+## 2363 67994 Matrices and Data Frames TRUE
+## 2364 67994 Matrices and Data Frames TRUE
+## 2365 67994 Matrices and Data Frames TRUE
+## 2366 67994 Matrices and Data Frames TRUE
+## 2367 67994 Matrices and Data Frames TRUE
+## 2368 67994 Matrices and Data Frames TRUE
+## 2369 67994 Matrices and Data Frames FALSE
+## 2370 20682 <NA>
+## 2371 32870 Basic Building Blocks TRUE
+## 2372 32870 Basic Building Blocks TRUE
+## 2373 32870 Basic Building Blocks TRUE
+## 2374 32870 Basic Building Blocks TRUE
+## 2375 32870 Basic Building Blocks TRUE
+## 2376 32870 Basic Building Blocks TRUE
+## 2377 32870 Basic Building Blocks TRUE
+## 2378 32870 Basic Building Blocks FALSE
+## 2379 32870 Basic Building Blocks TRUE
+## 2380 32870 Basic Building Blocks TRUE
+## 2381 32870 Basic Building Blocks TRUE
+## 2382 32870 Basic Building Blocks TRUE
+## 2383 32870 Basic Building Blocks TRUE
+## 2384 32870 Basic Building Blocks TRUE
+## 2385 32870 Basic Building Blocks TRUE
+## 2386 27487 Basic Building Blocks FALSE
+## 2387 27487 Basic Building Blocks TRUE
+## 2388 27487 Missing Values TRUE
+## 2389 27487 Vectors FALSE
+## 2390 27487 Vectors TRUE
+## 2391 27487 Dates and Times <NA>
+## 2392 27487 Basic Building Blocks TRUE
+## 2393 27487 Logic FALSE
+## 2394 27487 Basic Building Blocks TRUE
+## 2395 27487 Basic Building Blocks FALSE
+## 2396 27487 Basic Building Blocks TRUE
+## 2397 27487 Logic TRUE
+## 2398 27487 Logic FALSE
+## 2399 27487 Vectors TRUE
+## 2400 27487 Logic TRUE
+## 2401 27487 Basic Building Blocks TRUE
+## 2402 27487 Basic Building Blocks TRUE
+## 2403 27487 Dates and Times TRUE
+## 2404 27487 Vectors TRUE
+## 2405 27487 Basic Building Blocks TRUE
+## 2406 27487 Logic TRUE
+## 2407 27487 Basic Building Blocks TRUE
+## 2408 27487 Logic TRUE
+## 2409 27487 Logic TRUE
+## 2410 27487 Logic TRUE
+## 2411 27487 Logic TRUE
+## 2412 27487 Matrices and Data Frames FALSE
+## 2413 27487 Dates and Times TRUE
+## 2414 27487 Logic TRUE
+## 2415 27487 Dates and Times TRUE
+## 2416 27487 Missing Values TRUE
+## 2417 27487 Missing Values TRUE
+## 2418 27487 Dates and Times FALSE
+## 2419 27487 Vectors TRUE
+## 2420 27487 Basic Building Blocks TRUE
+## 2421 27487 Basic Building Blocks TRUE
+## 2422 27487 Vectors TRUE
+## 2423 27487 Dates and Times TRUE
+## 2424 27487 Vectors TRUE
+## 2425 27487 Dates and Times TRUE
+## 2426 27487 Dates and Times TRUE
+## 2427 27487 Vectors TRUE
+## 2428 27487 Vectors TRUE
+## 2429 27487 Vectors FALSE
+## 2430 27487 Vectors TRUE
+## 2431 27487 Vectors TRUE
+## 2432 27487 Vectors TRUE
+## 2433 27487 Logic TRUE
+## 2434 27487 Logic <NA>
+## 2435 27487 Logic TRUE
+## 2436 27487 Vectors TRUE
+## 2437 27487 Vectors TRUE
+## 2438 27487 Subsetting Vectors TRUE
+## 2439 27487 Dates and Times TRUE
+## 2440 27487 Dates and Times TRUE
+## 2441 27487 Dates and Times TRUE
+## 2442 27487 Subsetting Vectors TRUE
+## 2443 27487 Subsetting Vectors TRUE
+## 2444 27487 Dates and Times TRUE
+## 2445 27487 Logic TRUE
+## 2446 27487 Logic TRUE
+## 2447 27487 Vectors TRUE
+## 2448 27487 Vectors FALSE
+## 2449 27487 Logic TRUE
+## 2450 27487 Subsetting Vectors TRUE
+## 2451 27487 Missing Values TRUE
+## 2452 27487 Subsetting Vectors TRUE
+## 2453 27487 Matrices and Data Frames TRUE
+## 2454 27487 Logic TRUE
+## 2455 27487 Missing Values TRUE
+## 2456 27487 Dates and Times TRUE
+## 2457 27487 Logic TRUE
+## 2458 27487 Basic Building Blocks <NA>
+## 2459 27487 Logic TRUE
+## 2460 27487 Logic TRUE
+## 2461 27487 Logic FALSE
+## 2462 27487 Logic TRUE
+## 2463 27487 Vectors <NA>
+## 2464 27487 Dates and Times TRUE
+## 2465 27487 Logic TRUE
+## 2466 27487 Logic TRUE
+## 2467 27487 Logic TRUE
+## 2468 27487 Vectors TRUE
+## 2469 27487 Logic TRUE
+## 2470 27487 Logic TRUE
+## 2471 27487 Logic TRUE
+## 2472 27487 Logic TRUE
+## 2473 27487 Logic TRUE
+## 2474 27487 Logic TRUE
+## 2475 27487 Logic TRUE
+## 2476 27487 Logic TRUE
+## 2477 27487 Matrices and Data Frames TRUE
+## 2478 27487 Matrices and Data Frames TRUE
+## 2479 27487 Matrices and Data Frames TRUE
+## 2480 27487 Subsetting Vectors TRUE
+## 2481 27487 Subsetting Vectors TRUE
+## 2482 27487 Missing Values TRUE
+## 2483 27487 Basic Building Blocks TRUE
+## 2484 27487 Subsetting Vectors TRUE
+## 2485 27487 Subsetting Vectors TRUE
+## 2486 27487 Vectors TRUE
+## 2487 27487 Logic TRUE
+## 2488 27487 Logic TRUE
+## 2489 27487 Logic FALSE
+## 2490 27487 Logic FALSE
+## 2491 27487 Logic FALSE
+## 2492 27487 Logic FALSE
+## 2493 27487 Logic TRUE
+## 2494 27487 Missing Values TRUE
+## 2495 27487 Logic TRUE
+## 2496 27487 Logic TRUE
+## 2497 27487 Basic Building Blocks TRUE
+## 2498 27487 Subsetting Vectors <NA>
+## 2499 27487 Matrices and Data Frames FALSE
+## 2500 27487 Missing Values FALSE
+## 2501 27487 Missing Values FALSE
+## 2502 27487 Missing Values TRUE
+## 2503 27487 Dates and Times TRUE
+## 2504 27487 Logic TRUE
+## 2505 27487 Missing Values TRUE
+## 2506 27487 Missing Values TRUE
+## 2507 27487 Missing Values TRUE
+## 2508 27487 Matrices and Data Frames TRUE
+## 2509 27487 Dates and Times TRUE
+## 2510 27487 Basic Building Blocks TRUE
+## 2511 27487 Basic Building Blocks TRUE
+## 2512 27487 Basic Building Blocks TRUE
+## 2513 27487 Subsetting Vectors FALSE
+## 2514 27487 Subsetting Vectors TRUE
+## 2515 27487 Subsetting Vectors TRUE
+## 2516 27487 Subsetting Vectors TRUE
+## 2517 27487 Vectors TRUE
+## 2518 27487 Basic Building Blocks TRUE
+## 2519 27487 Basic Building Blocks FALSE
+## 2520 27487 Matrices and Data Frames TRUE
+## 2521 27487 Dates and Times TRUE
+## 2522 27487 Dates and Times TRUE
+## 2523 27487 Dates and Times TRUE
+## 2524 27487 Matrices and Data Frames TRUE
+## 2525 27487 Matrices and Data Frames TRUE
+## 2526 27487 Dates and Times TRUE
+## 2527 27487 Vectors TRUE
+## 2528 27487 Basic Building Blocks TRUE
+## 2529 27487 Vectors TRUE
+## 2530 27487 Missing Values TRUE
+## 2531 27487 Missing Values TRUE
+## 2532 27487 Dates and Times FALSE
+## 2533 27487 Missing Values TRUE
+## 2534 27487 Dates and Times TRUE
+## 2535 27487 Subsetting Vectors TRUE
+## 2536 27487 Matrices and Data Frames TRUE
+## 2537 27487 Basic Building Blocks TRUE
+## 2538 27487 Subsetting Vectors TRUE
+## 2539 27487 Matrices and Data Frames TRUE
+## 2540 27487 Dates and Times TRUE
+## 2541 27487 Dates and Times TRUE
+## 2542 27487 Dates and Times FALSE
+## 2543 27487 Matrices and Data Frames TRUE
+## 2544 27487 Dates and Times TRUE
+## 2545 27487 Dates and Times FALSE
+## 2546 27487 Dates and Times TRUE
+## 2547 27487 Dates and Times TRUE
+## 2548 27487 Matrices and Data Frames TRUE
+## 2549 27487 Subsetting Vectors TRUE
+## 2550 27487 Subsetting Vectors TRUE
+## 2551 27487 Subsetting Vectors TRUE
+## 2552 27487 Matrices and Data Frames TRUE
+## 2553 27487 Subsetting Vectors TRUE
+## 2554 27487 Matrices and Data Frames TRUE
+## 2555 27487 Matrices and Data Frames FALSE
+## 2556 27487 Dates and Times TRUE
+## 2557 27487 Dates and Times FALSE
+## 2558 27487 Matrices and Data Frames TRUE
+## 2559 27487 Dates and Times TRUE
+## 2560 27487 Matrices and Data Frames TRUE
+## 2561 27487 Subsetting Vectors TRUE
+## 2562 27487 Matrices and Data Frames TRUE
+## 2563 27487 Basic Building Blocks TRUE
+## 2564 27487 Subsetting Vectors TRUE
+## 2565 27487 Matrices and Data Frames TRUE
+## 2566 27487 Matrices and Data Frames TRUE
+## 2567 27487 Dates and Times TRUE
+## 2568 27487 Dates and Times TRUE
+## 2569 27487 Subsetting Vectors TRUE
+## 2570 27487 Basic Building Blocks TRUE
+## 2571 27487 Subsetting Vectors TRUE
+## 2572 27487 Matrices and Data Frames TRUE
+## 2573 27487 Missing Values <NA>
+## 2574 27487 Basic Building Blocks TRUE
+## 2575 27487 Subsetting Vectors FALSE
+## 2576 27487 Matrices and Data Frames TRUE
+## 2577 27487 Matrices and Data Frames TRUE
+## 2578 27487 Subsetting Vectors TRUE
+## 2579 27487 Subsetting Vectors TRUE
+## 2580 27487 Matrices and Data Frames TRUE
+## 2581 27487 Basic Building Blocks TRUE
+## 2582 27487 Subsetting Vectors TRUE
+## 2583 27487 Subsetting Vectors TRUE
+## 2584 27487 Matrices and Data Frames <NA>
+## 2585 86730 <NA>
+## 2586 21536 Graphics_Devices_in_R TRUE
+## 2587 21536 Graphics_Devices_in_R TRUE
+## 2588 21536 Graphics_Devices_in_R TRUE
+## 2589 21536 Graphics_Devices_in_R TRUE
+## 2590 21536 Graphics_Devices_in_R TRUE
+## 2591 21536 Graphics_Devices_in_R TRUE
+## 2592 21536 Graphics_Devices_in_R FALSE
+## 2593 21536 Graphics_Devices_in_R TRUE
+## 2594 21536 Grouping and Chaining with dplyr FALSE
+## 2595 21536 Grouping and Chaining w <NA>
+## 2596 21536 Graphics_Devices_in_R TRUE
+## 2597 21536 Graphics_Devices_in_R TRUE
+## 2598 21536 Base_Plotting_System FALSE
+## 2599 21536 Base_Plotting_System TRUE
+## 2600 21536 Base_Plotting_System TRUE
+## 2601 21536 Clustering_Example TRUE
+## 2602 21536 Clustering_Example TRUE
+## 2603 21536 Graphics_Devices_in_R TRUE
+## 2604 21536 K_Means_Clustering TRUE
+## 2605 21536 Tidying Data with tidyr TRUE
+## 2606 21536 Tidying Data with tidyr FALSE
+## 2607 21536 Manipulating Data with dplyr FALSE
+## 2608 21536 Graphics_Devices_in_R TRUE
+## 2609 21536 Graphics_Devices_in_R TRUE
+## 2610 21536 Base_Plotting_System FALSE
+## 2611 21536 Manipulating Data with dplyr TRUE
+## 2612 21536 Manipulating Data with dplyr TRUE
+## 2613 21536 Manipulating Data with dplyr TRUE
+## 2614 21536 Manipulating Data with dplyr TRUE
+## 2615 21536 Manipulating Data with dplyr TRUE
+## 2616 21536 Manipulating Data with dplyr TRUE
+## 2617 21536 Manipulating Data with dplyr FALSE
+## 2618 21536 K_Means_Clustering TRUE
+## 2619 21536 K_Means_Clustering TRUE
+## 2620 21536 <NA>
+## 2621 21536 Base_Plotting_System TRUE
+## 2622 21536 Base_Plotting_System TRUE
+## 2623 21536 Manipulating Data with dplyr FALSE
+## 2624 21536 Looking at Data TRUE
+## 2625 21536 Looking at Data TRUE
+## 2626 21536 Looking at Data TRUE
+## 2627 21536 Looking at Data TRUE
+## 2628 21536 Base_Plotting_System TRUE
+## 2629 21536 Base_Plotting_System FALSE
+## 2630 21536 Base_Plotting_System TRUE
+## 2631 21536 Looking at Data TRUE
+## 2632 21536 Looking at Data TRUE
+## 2633 21536 Looking at Data TRUE
+## 2634 21536 Principles_of_Analytic_Graphs TRUE
+## 2635 21536 Manipulating Data with dplyr FALSE
+## 2636 21536 Looking at Data TRUE
+## 2637 21536 Clustering_Example TRUE
+## 2638 21536 Clustering_Example TRUE
+## 2639 21536 Clustering_Example TRUE
+## 2640 21536 Clustering_Example TRUE
+## 2641 21536 Clustering_Example TRUE
+## 2642 21536 Clustering_Example TRUE
+## 2643 21536 <NA>
+## 2644 21536 Grouping and Chaining with dplyr TRUE
+## 2645 21536 Tidying Data with tidyr FALSE
+## 2646 21536 Tidying Data with tidyr TRUE
+## 2647 21536 Tidying Data with tidyr TRUE
+## 2648 21536 Looking at Data TRUE
+## 2649 21536 Principles_of_Analytic_Graphs TRUE
+## 2650 21536 Principles_of_Analytic_Graphs TRUE
+## 2651 21536 Principles_of_Analytic_Graphs TRUE
+## 2652 21536 Manipulating Data with dplyr TRUE
+## 2653 21536 Manipulating Data with dplyr FALSE
+## 2654 21536 Looking at Data TRUE
+## 2655 21536 Looking at Data TRUE
+## 2656 21536 Looking at Data TRUE
+## 2657 21536 Looking at Data TRUE
+## 2658 21536 Principles_of_Analytic_Graphs TRUE
+## 2659 21536 Principles_of_Analytic_Graphs FALSE
+## 2660 21536 Principles_of_Analytic_Graphs TRUE
+## 2661 21536 Looking at Data TRUE
+## 2662 21536 Base_Plotting_System FALSE
+## 2663 21536 Clustering_Example TRUE
+## 2664 21536 Exploratory_Graphs TRUE
+## 2665 21536 Exploratory_Graphs TRUE
+## 2666 21536 Exploratory_Graphs TRUE
+## 2667 21536 Exploratory_Graphs TRUE
+## 2668 21536 Looking <NA>
+## 2669 21536 Exploratory_Graphs TRUE
+## 2670 21536 Exploratory_Graphs TRUE
+## 2671 21536 Base_Plotting_System FALSE
+## 2672 21536 Clustering_Example FALSE
+## 2673 21536 Clustering_Example TRUE
+## 2674 21536 Tidying Data with tidyr FALSE
+## 2675 21536 Clustering_Example TRUE
+## 2676 21536 Tidying Data with tidyr TRUE
+## 2677 21536 Tidying Data <NA>
+## 2678 21536 Exploratory_Graphs FALSE
+## 2679 21536 K_Means_Clustering FALSE
+## 2680 21536 Looking at Data TRUE
+## 2681 21536 <NA>
+## 2682 21536 K_Means_Clustering TRUE
+## 2683 21536 K_Means_Clustering TRUE
+## 2684 21536 Hierarchica <NA>
+## 2685 21536 Tidying Data with tidyr TRUE
+## 2686 21536 Grouping and Chaining with dplyr FALSE
+## 2687 21536 Base_Plotting_System TRUE
+## 2688 21536 Clustering_Example TRUE
+## 2689 21536 Exploratory_Graphs TRUE
+## 2690 21536 Exploratory_Graphs TRUE
+## 2691 21536 Hierarchical_Clustering FALSE
+## 2692 21536 Hierarchical_Clustering FALSE
+## 2693 21536 K_Means_Clustering TRUE
+## 2694 21536 Principles_of_Analytic_Graphs TRUE
+## 2695 21536 Principles_of_Analytic_Graphs TRUE
+## 2696 21536 Principles_of_Analytic_Graphs TRUE
+## 2697 21536 Principles_of_Analytic_Graphs FALSE
+## 2698 21536 Exploratory_Graphs TRUE
+## 2699 21536 Base_Plotting_System TRUE
+## 2700 21536 Grouping and Chaining with dplyr TRUE
+## 2701 21536 Hierarchical_Clustering TRUE
+## 2702 21536 Hierarchical_Clustering FALSE
+## 2703 21536 Hierarchical_Clustering FALSE
+## 2704 21536 Exploratory_Graphs TRUE
+## 2705 21536 K_Means_Clustering FALSE
+## 2706 21536 Hierarchical_Clustering TRUE
+## 2707 21536 K_Means_Clustering FALSE
+## 2708 21536 K_Means_Clustering TRUE
+## 2709 21536 K_Means_Clustering TRUE
+## 2710 21536 Hierarchical_Clustering TRUE
+## 2711 21536 Grouping and Chaining with dplyr FALSE
+## 2712 21536 Grouping and Chaining with dplyr TRUE
+## 2713 21536 Hierarchical_Clustering TRUE
+## 2714 21536 Tidying Data with tidyr TRUE
+## 2715 21536 Exploratory_Graphs TRUE
+## 2716 21536 Exploratory_Graphs TRUE
+## 2717 21536 Hierarchical_Clustering TRUE
+## 2718 21536 Hierarchical_Clustering TRUE
+## 2719 21536 K_Means_Clustering FALSE
+## 2720 21536 Principles_of_Analytic_Graphs TRUE
+## 2721 21536 Tidying Data with tidyr TRUE
+## 2722 21536 Tidying Data with tidyr TRUE
+## 2723 21536 Hierarchical_Clustering TRUE
+## 2724 21536 Grouping and Chaining with dplyr TRUE
+## 2725 21536 Hierarchical_Clustering TRUE
+## 2726 21536 Grouping and Chaining with dplyr TRUE
+## 2727 21536 Grouping and Chaining with dplyr TRUE
+## 2728 21536 Grouping and Chaining with dplyr TRUE
+## 2729 21536 Grouping and Chaining with dplyr TRUE
+## 2730 21536 Tidying Data with tidyr TRUE
+## 2731 21536 K_Means_Clustering FALSE
+## 2732 65259 Manipulating Data with dplyr TRUE
+## 2733 65259 Manipulating Data with dplyr FALSE
+## 2734 65259 Manipulating Data with dplyr TRUE
+## 2735 65259 Manipulating Data with dplyr TRUE
+## 2736 65259 Manipulating Data with dplyr TRUE
+## 2737 65259 Manipulatin <NA>
+## 2738 65259 Dates and Times TRUE
+## 2739 65259 Dates and Times TRUE
+## 2740 65259 Dates and Times FALSE
+## 2741 65259 Dates and Times TRUE
+## 2742 65259 Manipulating Data with dplyr TRUE
+## 2743 65259 Manipulating Data with dplyr TRUE
+## 2744 65259 Manipulating Data with dplyr TRUE
+## 2745 65259 Manipulating Data with dplyr TRUE
+## 2746 65259 Manipulating Data with dplyr TRUE
+## 2747 65259 Manipulating Data with dplyr TRUE
+## 2748 65259 Manipulating Data with dplyr TRUE
+## 2749 65259 Dates and Times TRUE
+## 2750 65259 Dates and Times TRUE
+## 2751 65259 Dates and Times TRUE
+## 2752 65259 Dates and Times TRUE
+## 2753 65259 Dates and Times FALSE
+## 2754 65259 Dates and Times TRUE
+## 2755 65259 Dates and Times TRUE
+## 2756 65259 Dates and Times TRUE
+## 2757 65259 Dates and Times FALSE
+## 2758 65259 Dates and Times TRUE
+## 2759 65259 Dates and Times TRUE
+## 2760 65259 <NA>
+## 2761 65259 Dates and Times TRUE
+## 2762 2864 Basic Building Blocks TRUE
+## 2763 2864 Basic Building Blocks TRUE
+## 2764 2864 Basic Building Blocks FALSE
+## 2765 2864 Basic Building Blocks TRUE
+## 2766 2864 Basic Building Blocks TRUE
+## 2767 2864 Basic Building Blocks TRUE
+## 2768 2864 Basic Building Blocks TRUE
+## 2769 2864 Basic Building Blocks TRUE
+## 2770 2864 Basic Building Blocks FALSE
+## 2771 2864 Basic Building Blocks TRUE
+## 2772 2864 Basic Building Blocks TRUE
+## 2773 2864 Basic Building Blocks TRUE
+## 2774 2864 Basic Building Blocks TRUE
+## 2775 2864 Basic Building Blocks TRUE
+## 2776 2864 Basic Building Blocks TRUE
+## 2777 2864 Basic Building Blocks TRUE
+## 2778 2864 Basic Building Blocks <NA>
+## 2779 2864 Basic Building Blocks TRUE
+## 2780 2864 Basic Building Blocks TRUE
+## 2781 2864 Basic Building Blocks TRUE
+## 2782 2864 Basic Building Blocks TRUE
+## 2783 2864 Basic Building Blocks TRUE
+## 2784 2864 Basic Building Blocks TRUE
+## 2785 2864 Basic Building Blocks FALSE
+## 2786 2864 Basic Building Blocks TRUE
+## 2787 2864 Basic Building Blocks TRUE
+## 2788 34068 Basic Building Blocks TRUE
+## 2789 34068 Basic Building Blocks TRUE
+## 2790 34068 Basic Building Blocks TRUE
+## 2791 34068 Basic Building Blocks TRUE
+## 2792 34068 Basic Building Blocks TRUE
+## 2793 34068 Basic Building Blocks TRUE
+## 2794 34068 Basic Building Blocks TRUE
+## 2795 34068 Basic Building Blocks <NA>
+## 2796 34068 Basic Building Blocks TRUE
+## 2797 34068 Basic Building Blocks TRUE
+## 2798 34068 Basic Building Blocks TRUE
+## 2799 34068 Basic Building Blocks TRUE
+## 2800 34068 Basic Building Blocks TRUE
+## 2801 34068 Basic Building Blocks TRUE
+## 2802 34068 Basic Building Blocks TRUE
+## 2803 34068 Basic Building Blocks TRUE
+## 2804 34068 Basic Building Blocks TRUE
+## 2805 34068 Basic Building Blocks TRUE
+## 2806 34068 Basic Building Blocks TRUE
+## 2807 34068 Basic Building Blocks TRUE
+## 2808 34068 Basic Building Blocks TRUE
+## 2809 34068 Basic Building Blocks TRUE
+## 2810 34068 Basic Building Blocks TRUE
+## 2811 76966 Matrices and Data Frames TRUE
+## 2812 76966 Matrices and Data Frames TRUE
+## 2813 76966 Matrices and Data Frames TRUE
+## 2814 76966 Matrices and Data Frames TRUE
+## 2815 76966 Matrices and Data Frames FALSE
+## 2816 76966 Matrices and Data Frames FALSE
+## 2817 76966 Matrices and Data Frames FALSE
+## 2818 76966 Matrices and Data Frames TRUE
+## 2819 76966 Matrices and Data Frames FALSE
+## 2820 76966 Matrices and Data Frames TRUE
+## 2821 76966 Matrices and Data Frames TRUE
+## 2822 76966 Matrices and Data Frames TRUE
+## 2823 76966 Matrices and Data Frames TRUE
+## 2824 76966 Matrices and Data Frames <NA>
+## 2825 76966 Matrices and Data Frames FALSE
+## 2826 76966 Matrices and Data Frames TRUE
+## 2827 76966 Matrices and Data Frames TRUE
+## 2828 76966 Matrices and Data Frames TRUE
+## 2829 76966 Matrices and Data Frames TRUE
+## 2830 76966 Matrices and Data Frames TRUE
+## 2831 76966 Matrices and Data Frames TRUE
+## 2832 76966 Matrices and Data Frames TRUE
+## 2833 76966 Matrices and Data Frames FALSE
+## 2834 76966 Matrices and Data Frames TRUE
+## 2835 76966 Matrices and Data Frames TRUE
+## 2836 76966 Matrices and Data Frames TRUE
+## 2837 76966 Matrices and Data Frames TRUE
+## 2838 76966 Matrices and Data Frames TRUE
+## 2839 76966 Matrices and Data Frames TRUE
+## 2840 76966 Matrices and Data Frames TRUE
+## 2841 4807 Basic Building Blocks TRUE
+## 2842 4807 Basic Building Blocks TRUE
+## 2843 4807 Basic Building Blocks TRUE
+## 2844 4807 Basic Building Blocks FALSE
+## 2845 4807 Basic Building Blocks TRUE
+## 2846 4807 Basic Building Blocks TRUE
+## 2847 4807 Basic Building Blocks FALSE
+## 2848 4807 Basic Building Blocks FALSE
+## 2849 4807 Basic Building Blocks FALSE
+## 2850 4807 Basic Building Blocks TRUE
+## 2851 4807 Basic Building Blocks FALSE
+## 2852 4807 Basic Building Blocks TRUE
+## 2853 4807 Basic Building Blocks TRUE
+## 2854 4807 Basic Building Blocks FALSE
+## 2855 4807 Basic Building Blocks TRUE
+## 2856 4807 Basic Building Blocks TRUE
+## 2857 4807 Basic Building Blocks FALSE
+## 2858 4807 Basic Building Blocks FALSE
+## 2859 4807 Basic Building Blocks TRUE
+## 2860 4807 Basic Building Blocks FALSE
+## 2861 4807 Basic Building Blocks TRUE
+## 2862 4807 Basic Building Blocks FALSE
+## 2863 4807 Basic Building Blocks TRUE
+## 2864 4807 Basic Building Blocks FALSE
+## 2865 4807 Basic Building Blocks TRUE
+## 2866 4807 Basic Building Blocks TRUE
+## 2867 4807 Basic Building Blocks TRUE
+## 2868 4807 Basic Building Blocks TRUE
+## 2869 4807 Basic Building Blocks TRUE
+## 2870 4807 Basic Building Blocks TRUE
+## 2871 4807 Basic Building Blocks TRUE
+## 2872 4807 Basic Building Blocks TRUE
+## 2873 4807 Basic Building Blocks TRUE
+## 2874 4807 Basic Building Blocks <NA>
+## 2875 4807 Workspace and Files TRUE
+## 2876 4807 Workspace and Files TRUE
+## 2877 4807 Workspace and Files TRUE
+## 2878 4807 Workspace and Files TRUE
+## 2879 4807 Workspace and Files TRUE
+## 2880 4807 Workspace and Files TRUE
+## 2881 4807 Workspace and Files TRUE
+## 2882 4807 Workspace and Files FALSE
+## 2883 4807 Workspace and Files TRUE
+## 2884 4807 Workspace and Files TRUE
+## 2885 4807 Workspace and Files TRUE
+## 2886 4807 Workspace and Files TRUE
+## 2887 4807 Workspace and Files FALSE
+## 2888 4807 Workspace and Files TRUE
+## 2889 4807 Workspace and Files FALSE
+## 2890 4807 Workspace and Files FALSE
+## 2891 4807 Workspace and Files TRUE
+## 2892 4807 Workspace and Files TRUE
+## 2893 4807 Workspace and Files FALSE
+## 2894 4807 Workspace and Files TRUE
+## 2895 4807 Workspace and Files TRUE
+## 2896 4807 Workspace and Files FALSE
+## 2897 4807 Workspace and Files TRUE
+## 2898 4807 Workspace and Files TRUE
+## 2899 4807 Workspace and Files TRUE
+## 2900 4807 Workspace and Files FALSE
+## 2901 4807 Workspace and Files TRUE
+## 2902 4807 Workspace and Files TRUE
+## 2903 4807 Workspace and Files TRUE
+## 2904 4807 Workspace and Files TRUE
+## 2905 4807 Workspace and Files <NA>
+## 2906 4807 Vectors TRUE
+## 2907 4807 Vectors FALSE
+## 2908 4807 Vectors TRUE
+## 2909 4807 Vectors TRUE
+## 2910 4807 Vectors TRUE
+## 2911 4807 Vectors TRUE
+## 2912 4807 Vectors FALSE
+## 2913 4807 Vectors FALSE
+## 2914 4807 Vectors TRUE
+## 2915 4807 Vectors FALSE
+## 2916 4807 Vectors TRUE
+## 2917 4807 Vectors TRUE
+## 2918 4807 Vectors TRUE
+## 2919 4807 Vectors TRUE
+## 2920 4807 Vectors FALSE
+## 2921 4807 Vectors TRUE
+## 2922 4807 Vectors TRUE
+## 2923 4807 Vectors TRUE
+## 2924 4807 Vectors TRUE
+## 2925 4807 Vectors FALSE
+## 2926 4807 Vectors TRUE
+## 2927 4807 Vectors FALSE
+## 2928 4807 Vectors TRUE
+## 2929 4807 Vectors TRUE
+## 2930 4807 Vectors TRUE
+## 2931 4807 Vectors TRUE
+## 2932 4807 Vectors <NA>
+## 2933 4807 Matrices and Data Frames TRUE
+## 2934 4807 Matrices and Data Frames TRUE
+## 2935 4807 Matrices and Data Frames FALSE
+## 2936 4807 Matrices and Data Frames TRUE
+## 2937 4807 Matrices and Data Frames TRUE
+## 2938 4807 Matrices and Data Frames TRUE
+## 2939 4807 Matrices and Data Frames TRUE
+## 2940 4807 Matrices and Data Frames <NA>
+## 2941 4807 Dates and Times TRUE
+## 2942 4807 Dates and Times TRUE
+## 2943 4807 Dates and Times FALSE
+## 2944 4807 Dates and Times TRUE
+## 2945 4807 Dates and Times TRUE
+## 2946 4807 Dates and Times FALSE
+## 2947 4807 Dates and Times TRUE
+## 2948 4807 Dates and Times TRUE
+## 2949 4807 Dates and Times TRUE
+## 2950 4807 Dates and Times TRUE
+## 2951 4807 Dates and Times TRUE
+## 2952 4807 Dates and Times TRUE
+## 2953 4807 Dates and Times TRUE
+## 2954 4807 Dates and Times TRUE
+## 2955 4807 Dates and Times TRUE
+## 2956 4807 Missing Values FALSE
+## 2957 4807 Missing Values TRUE
+## 2958 4807 Missing Values TRUE
+## 2959 4807 Missing Values TRUE
+## 2960 4807 Missing Values TRUE
+## 2961 4807 Missing Values TRUE
+## 2962 4807 Missing Values TRUE
+## 2963 4807 Missing Values TRUE
+## 2964 4807 Missing Values TRUE
+## 2965 4807 Missing Values FALSE
+## 2966 4807 Missing Values TRUE
+## 2967 4807 Missing Values TRUE
+## 2968 4807 Missing Values TRUE
+## 2969 4807 Missing Values TRUE
+## 2970 4807 Missing Values TRUE
+## 2971 4807 Missing Values TRUE
+## 2972 4807 Missing Values <NA>
+## 2973 4807 Subsetting Vectors TRUE
+## 2974 4807 Subsetting Vectors TRUE
+## 2975 4807 Subsetting Vectors TRUE
+## 2976 4807 Subsetting Vectors TRUE
+## 2977 4807 Subsetting Vectors TRUE
+## 2978 4807 Subsetting Vectors TRUE
+## 2979 4807 Subsetting Vectors FALSE
+## 2980 4807 Subsetting Vectors TRUE
+## 2981 4807 Subsetting Vectors TRUE
+## 2982 4807 Subsetting Vectors TRUE
+## 2983 4807 Subsetting Vectors TRUE
+## 2984 4807 Subsetting Vectors FALSE
+## 2985 4807 Subsetting Vectors TRUE
+## 2986 4807 Subsetting Vectors TRUE
+## 2987 4807 Subsetting Vectors TRUE
+## 2988 4807 Subsetting Vectors TRUE
+## 2989 4807 Subsetting Vectors TRUE
+## 2990 4807 Subsetting Vectors TRUE
+## 2991 4807 Subsetting Vectors TRUE
+## 2992 4807 Subsetting Vectors TRUE
+## 2993 4807 Subsetting Vectors FALSE
+## 2994 4807 Subsetting Vectors TRUE
+## 2995 4807 Subsetting Vectors TRUE
+## 2996 4807 Subsetting Vectors TRUE
+## 2997 4807 Subsetting Vectors FALSE
+## 2998 4807 Subsetting Vectors TRUE
+## 2999 4807 Subsetting Vectors TRUE
+## 3000 4807 Subsetting Vectors TRUE
+## 3001 4807 Subsetting Vectors TRUE
+## 3002 4807 Subsetting Vectors TRUE
+## 3003 4807 Subsetting Vectors <NA>
+## 3004 4807 Logic TRUE
+## 3005 4807 Logic TRUE
+## 3006 4807 Logic TRUE
+## 3007 4807 Logic TRUE
+## 3008 4807 Logic TRUE
+## 3009 4807 Logic TRUE
+## 3010 4807 Logic TRUE
+## 3011 4807 Logic TRUE
+## 3012 4807 Logic FALSE
+## 3013 4807 Logic FALSE
+## 3014 4807 Logic FALSE
+## 3015 4807 Logic TRUE
+## 3016 4807 Logic FALSE
+## 3017 4807 Logic FALSE
+## 3018 4807 Logic TRUE
+## 3019 4807 Logic FALSE
+## 3020 4807 Logic TRUE
+## 3021 4807 Logic TRUE
+## 3022 4807 Logic TRUE
+## 3023 4807 Logic TRUE
+## 3024 4807 Logic TRUE
+## 3025 4807 Logic TRUE
+## 3026 4807 Logic TRUE
+## 3027 4807 Logic FALSE
+## 3028 4807 Logic TRUE
+## 3029 4807 Logic FALSE
+## 3030 4807 Logic TRUE
+## 3031 4807 Logic TRUE
+## 3032 4807 Logic FALSE
+## 3033 4807 Logic FALSE
+## 3034 4807 Logic TRUE
+## 3035 4807 Logic TRUE
+## 3036 4807 Logic TRUE
+## 3037 4807 Logic TRUE
+## 3038 4807 Logic FALSE
+## 3039 4807 Logic FALSE
+## 3040 4807 Logic FALSE
+## 3041 4807 Logic TRUE
+## 3042 4807 Logic TRUE
+## 3043 4807 Logic TRUE
+## 3044 4807 Logic TRUE
+## 3045 4807 Logic TRUE
+## 3046 4807 Logic TRUE
+## 3047 4807 Logic FALSE
+## 3048 4807 Logic TRUE
+## 3049 4807 Logic FALSE
+## 3050 4807 Logic FALSE
+## 3051 4807 Logic FALSE
+## 3052 4807 Logic FALSE
+## 3053 4807 Logic FALSE
+## 3054 4807 Logic FALSE
+## 3055 4807 Logic FALSE
+## 3056 4807 Logic FALSE
+## 3057 4807 Logic TRUE
+## 3058 4807 Logic TRUE
+## 3059 4807 Logic TRUE
+## 3060 4807 Logic TRUE
+## 3061 4807 Logic <NA>
+## 3062 4807 Matrices and Data Frames TRUE
+## 3063 4807 Matrices and Data Frames TRUE
+## 3064 4807 Dates and Times TRUE
+## 3065 4807 Dates and Times TRUE
+## 3066 4807 Dates and Times TRUE
+## 3067 4807 Dates and Times TRUE
+## 3068 4807 Dates and Times FALSE
+## 3069 4807 Dates and Times TRUE
+## 3070 4807 Dates and Times TRUE
+## 3071 4807 Dates and Times FALSE
+## 3072 4807 Matrices and Data Frames FALSE
+## 3073 4807 Matrices and Data Frames FALSE
+## 3074 4807 Matrices and Data Frames FALSE
+## 3075 4807 Dates and Times TRUE
+## 3076 4807 Dates and Times FALSE
+## 3077 4807 Dates and Times TRUE
+## 3078 4807 Dates and Times TRUE
+## 3079 4807 Dates and Times TRUE
+## 3080 4807 Dates and Times TRUE
+## 3081 4807 Dates and Times TRUE
+## 3082 4807 Dates and Times TRUE
+## 3083 4807 Dates and Times TRUE
+## 3084 4807 Dates and Times TRUE
+## 3085 4807 Dates and Times FALSE
+## 3086 4807 Dates and Times FALSE
+## 3087 4807 Dates and Times FALSE
+## 3088 4807 Matrices and Data Frames TRUE
+## 3089 4807 Matrices and Data Frames FALSE
+## 3090 4807 Matrices and Data Frames TRUE
+## 3091 4807 Matrices and Data Frames TRUE
+## 3092 4807 Matrices and Data Frames TRUE
+## 3093 4807 Matrices and Data Frames TRUE
+## 3094 4807 Matrices and Data Frames TRUE
+## 3095 4807 Matrices and Data Frames TRUE
+## 3096 4807 Matrices and Data Frames TRUE
+## 3097 4807 Matrices and Data Frames TRUE
+## 3098 4807 Dates and Times <NA>
+## 3099 4807 Matrices and Data Frames TRUE
+## 3100 4807 Matrices and Data Frames FALSE
+## 3101 4807 Matrices and Data Frames TRUE
+## 3102 4807 Matrices and Data Frames TRUE
+## 3103 4807 Matrices and Data Frames TRUE
+## 3104 4807 Matrices and Data Frames TRUE
+## 3105 4807 Matrices and Data Frames FALSE
+## 3106 4807 Matrices and Data Frames FALSE
+## 3107 4807 Matrices and Data Frames TRUE
+## 3108 6487 Basic Building Blocks TRUE
+## 3109 6487 Basic Building Blocks TRUE
+## 3110 6487 Basic Building Blocks TRUE
+## 3111 6487 Basic Building Blocks TRUE
+## 3112 6487 Basic Building Blocks TRUE
+## 3113 6487 Basic Building Blocks TRUE
+## 3114 6487 Basic Building Blocks TRUE
+## 3115 6487 Basic Building Blocks TRUE
+## 3116 6487 Basic Building Blocks TRUE
+## 3117 6487 Basic Building Blocks TRUE
+## 3118 6487 Basic Building Blocks TRUE
+## 3119 6487 Basic Building Blocks TRUE
+## 3120 6487 Basic Building Blocks TRUE
+## 3121 6487 Basic Building Blocks TRUE
+## 3122 6487 Basic Building Blocks TRUE
+## 3123 6487 Basic Building Blocks FALSE
+## 3124 6487 Basic Building Blocks TRUE
+## 3125 6487 Basic Building Blocks TRUE
+## 3126 6487 Basic Building Blocks TRUE
+## 3127 6487 Basic Building Blocks TRUE
+## 3128 6487 Basic Building Blocks <NA>
+## 3129 6487 Basic Building Blocks TRUE
+## 3130 6487 Basic Building Blocks TRUE
+## 3131 6487 Basic Building Blocks TRUE
+## 3132 8766 Workspace and Files TRUE
+## 3133 8766 Workspace and Files TRUE
+## 3134 8766 Workspace and Files TRUE
+## 3135 8766 Workspace and Files TRUE
+## 3136 8766 Workspace and Files TRUE
+## 3137 8766 Workspace and Files TRUE
+## 3138 8766 Workspace and Files FALSE
+## 3139 8766 Workspace and Files TRUE
+## 3140 8766 Workspace and Files TRUE
+## 3141 8766 Workspace and Files TRUE
+## 3142 8766 Workspace and Files FALSE
+## 3143 8766 Workspace and Files TRUE
+## 3144 8766 Workspace and Files TRUE
+## 3145 8766 Workspace and Files TRUE
+## 3146 8766 Workspace and Files TRUE
+## 3147 8766 Workspace and Files TRUE
+## 3148 8766 Workspace and Files TRUE
+## 3149 8766 Workspace and Files FALSE
+## 3150 8766 Workspace and Files TRUE
+## 3151 8766 Workspace and Files TRUE
+## 3152 8766 Workspace and Files TRUE
+## 3153 8766 Workspace and Files FALSE
+## 3154 8766 Workspace and Files FALSE
+## 3155 8766 Workspace and Files TRUE
+## 3156 8766 Workspace and Files TRUE
+## 3157 8766 Workspace and Files TRUE
+## 3158 8766 Workspace and Files TRUE
+## 3159 8766 Workspace and Files <NA>
+## 3160 8766 Vectors FALSE
+## 3161 8766 Workspace and Files FALSE
+## 3162 8766 Workspace and Files TRUE
+## 3163 8766 Workspace and Files FALSE
+## 3164 8766 Vectors TRUE
+## 3165 8766 Vectors TRUE
+## 3166 8766 Vectors TRUE
+## 3167 8766 Vectors TRUE
+## 3168 8766 Vectors TRUE
+## 3169 8766 Vectors TRUE
+## 3170 8766 Vectors TRUE
+## 3171 8766 Vectors FALSE
+## 3172 8766 Vectors TRUE
+## 3173 8766 Vectors FALSE
+## 3174 8766 Vectors TRUE
+## 3175 8766 Vectors TRUE
+## 3176 8766 Vectors FALSE
+## 3177 8766 Vectors TRUE
+## 3178 8766 Vectors TRUE
+## 3179 8766 Vectors TRUE
+## 3180 8766 Vectors TRUE
+## 3181 8766 Vectors TRUE
+## 3182 8766 Vectors TRUE
+## 3183 8766 Vectors <NA>
+## 3184 8766 Missing Values TRUE
+## 3185 8766 Missing Values TRUE
+## 3186 8766 Missing Values TRUE
+## 3187 8766 Missing Values TRUE
+## 3188 8766 Missing Values TRUE
+## 3189 8766 Missing Values TRUE
+## 3190 8766 Missing Values TRUE
+## 3191 8766 Missing Values TRUE
+## 3192 8766 Missing Values TRUE
+## 3193 8766 Missing Values TRUE
+## 3194 8766 Missing Values TRUE
+## 3195 8766 Missing Values FALSE
+## 3196 8766 Missing Values FALSE
+## 3197 8766 Missing Values TRUE
+## 3198 8766 Missing Values TRUE
+## 3199 8766 Missing Values TRUE
+## 3200 8766 Missing Values <NA>
+## 3201 8766 Vectors TRUE
+## 3202 8766 Vectors TRUE
+## 3203 8766 Vectors TRUE
+## 3204 27286 <NA>
+## 3205 70464 Basic Building Blocks TRUE
+## 3206 70464 Basic Building Blocks TRUE
+## 3207 70464 Basic Building Blocks TRUE
+## 3208 70464 Basic Building Blocks TRUE
+## 3209 70464 Basic Building Blocks TRUE
+## 3210 70464 Basic Building Blocks TRUE
+## 3211 70464 Basic Building Blocks TRUE
+## 3212 70464 Basic Building Blocks TRUE
+## 3213 70464 Logic FALSE
+## 3214 70464 Logic TRUE
+## 3215 70464 Logic TRUE
+## 3216 70464 Logic TRUE
+## 3217 70464 Logic TRUE
+## 3218 70464 Logic TRUE
+## 3219 70464 Logic TRUE
+## 3220 70464 Logic TRUE
+## 3221 70464 Logic TRUE
+## 3222 70464 Logic TRUE
+## 3223 70464 Logic TRUE
+## 3224 70464 Basic Building Blocks TRUE
+## 3225 70464 Logic FALSE
+## 3226 70464 Dates and Times TRUE
+## 3227 70464 Dates and Times TRUE
+## 3228 70464 Dates and Times TRUE
+## 3229 70464 Dates and Times TRUE
+## 3230 70464 Dates and Times TRUE
+## 3231 70464 Dates and Times TRUE
+## 3232 70464 Dates and Times TRUE
+## 3233 70464 Dates and Times TRUE
+## 3234 70464 Basic Building Blocks TRUE
+## 3235 70464 Basic Building Blocks FALSE
+## 3236 70464 Basic Building Blocks TRUE
+## 3237 70464 Logic TRUE
+## 3238 70464 Logic <NA>
+## 3239 70464 Dates and Times FALSE
+## 3240 70464 Dates and Times FALSE
+## 3241 70464 Dates and Times FALSE
+## 3242 70464 Dates and Times TRUE
+## 3243 70464 Dates and Times TRUE
+## 3244 70464 Dates and Times TRUE
+## 3245 70464 Dates and Times TRUE
+## 3246 70464 Dates and Times TRUE
+## 3247 70464 Dates and Times TRUE
+## 3248 70464 Dates and Times TRUE
+## 3249 70464 Dates and Times TRUE
+## 3250 70464 Basic Building Blocks TRUE
+## 3251 70464 Basic Building Blocks TRUE
+## 3252 70464 Functions TRUE
+## 3253 70464 Functions TRUE
+## 3254 70464 Functions TRUE
+## 3255 70464 Functions TRUE
+## 3256 70464 Functions TRUE
+## 3257 70464 Functions TRUE
+## 3258 70464 Functions TRUE
+## 3259 70464 Functions TRUE
+## 3260 70464 Functions TRUE
+## 3261 70464 Functions TRUE
+## 3262 70464 Functions TRUE
+## 3263 70464 Dates and Times TRUE
+## 3264 70464 Dates and Times <NA>
+## 3265 70464 Functions FALSE
+## 3266 70464 Basic Building Blocks TRUE
+## 3267 70464 Basic Building Blocks TRUE
+## 3268 70464 Basic Building Blocks TRUE
+## 3269 70464 Basic Building Blocks TRUE
+## 3270 70464 Basic Building Blocks TRUE
+## 3271 70464 Basic Building Blocks TRUE
+## 3272 70464 Basic Building Blocks TRUE
+## 3273 70464 Basic Building Blocks TRUE
+## 3274 70464 Basic Building Blocks TRUE
+## 3275 70464 Basic Building Blocks <NA>
+## 3276 70464 Functions TRUE
+## 3277 70464 Functions TRUE
+## 3278 70464 Dates and Times FALSE
+## 3279 70464 Subsetting Vectors TRUE
+## 3280 70464 Subsetting Vectors TRUE
+## 3281 70464 Subsetting Vectors TRUE
+## 3282 70464 Subsetting Vectors TRUE
+## 3283 70464 Subsetting Vectors FALSE
+## 3284 70464 Subsetting Vectors FALSE
+## 3285 70464 Subsetting Vectors TRUE
+## 3286 70464 Subsetting Vectors TRUE
+## 3287 70464 Subsetting Vectors TRUE
+## 3288 70464 Subsetting Vectors TRUE
+## 3289 70464 Subsetting Vectors TRUE
+## 3290 70464 Subsetting Vectors <NA>
+## 3291 70464 Logic TRUE
+## 3292 70464 Logic TRUE
+## 3293 70464 Logic TRUE
+## 3294 70464 Logic TRUE
+## 3295 70464 Logic TRUE
+## 3296 70464 Logic TRUE
+## 3297 70464 Logic TRUE
+## 3298 70464 Logic TRUE
+## 3299 70464 Logic FALSE
+## 3300 70464 Logic TRUE
+## 3301 70464 Logic TRUE
+## 3302 70464 Logic TRUE
+## 3303 70464 Logic TRUE
+## 3304 70464 Logic TRUE
+## 3305 70464 Logic TRUE
+## 3306 70464 Logic FALSE
+## 3307 70464 Logic TRUE
+## 3308 70464 Logic TRUE
+## 3309 70464 Logic TRUE
+## 3310 70464 Logic TRUE
+## 3311 70464 Logic TRUE
+## 3312 70464 Logic TRUE
+## 3313 70464 Logic TRUE
+## 3314 70464 Logic TRUE
+## 3315 70464 Logic FALSE
+## 3316 70464 Logic FALSE
+## 3317 70464 Logic TRUE
+## 3318 70464 Logic TRUE
+## 3319 70464 Logic FALSE
+## 3320 70464 Vectors TRUE
+## 3321 70464 Vectors FALSE
+## 3322 70464 Vectors TRUE
+## 3323 70464 Vectors TRUE
+## 3324 70464 Vectors TRUE
+## 3325 70464 Vectors TRUE
+## 3326 70464 Vectors TRUE
+## 3327 70464 Vectors TRUE
+## 3328 70464 Vectors TRUE
+## 3329 70464 Vectors TRUE
+## 3330 70464 Vectors TRUE
+## 3331 70464 Vectors TRUE
+## 3332 70464 Vectors TRUE
+## 3333 70464 Vectors TRUE
+## 3334 70464 Vectors TRUE
+## 3335 70464 Vectors FALSE
+## 3336 70464 Vectors TRUE
+## 3337 70464 Vectors TRUE
+## 3338 70464 Vectors TRUE
+## 3339 70464 Vectors TRUE
+## 3340 70464 Vectors TRUE
+## 3341 70464 Vectors <NA>
+## 3342 70464 Dates and Times TRUE
+## 3343 70464 Dates and Times TRUE
+## 3344 70464 Dates and Times TRUE
+## 3345 70464 Dates and Times FALSE
+## 3346 70464 Dates and Times TRUE
+## 3347 70464 Dates and Times TRUE
+## 3348 70464 Dates and Times TRUE
+## 3349 70464 Dates and Times TRUE
+## 3350 70464 Dates and Times TRUE
+## 3351 70464 Dates and Times TRUE
+## 3352 70464 Dates and Times TRUE
+## 3353 70464 Dates and Times TRUE
+## 3354 70464 Dates and Times FALSE
+## 3355 70464 Dates and Times FALSE
+## 3356 70464 Dates and Times FALSE
+## 3357 70464 Dates and Times FALSE
+## 3358 70464 Dates and Times FALSE
+## 3359 70464 Workspace and Files FALSE
+## 3360 70464 Workspace and Files TRUE
+## 3361 70464 Workspace and Files TRUE
+## 3362 70464 Workspace and Files TRUE
+## 3363 70464 Workspace and Files TRUE
+## 3364 70464 Workspace and Files TRUE
+## 3365 70464 Workspace and Files FALSE
+## 3366 70464 Workspace and Files TRUE
+## 3367 70464 Workspace and Files TRUE
+## 3368 70464 Workspace and Files TRUE
+## 3369 70464 Workspace and Files TRUE
+## 3370 70464 Workspace and Files TRUE
+## 3371 70464 Workspace and Files TRUE
+## 3372 70464 Workspace and Files TRUE
+## 3373 70464 Workspace and Files TRUE
+## 3374 70464 Workspace and Files FALSE
+## 3375 70464 Workspace and Files FALSE
+## 3376 70464 Workspace and Files TRUE
+## 3377 70464 Workspace and Files FALSE
+## 3378 70464 Workspace and Files TRUE
+## 3379 70464 Workspace and Files TRUE
+## 3380 70464 Workspace and Files TRUE
+## 3381 70464 Workspace and Files TRUE
+## 3382 70464 Workspace and Files TRUE
+## 3383 70464 Workspace and Files TRUE
+## 3384 70464 Workspace and Files TRUE
+## 3385 70464 Workspace and Files TRUE
+## 3386 70464 Workspace and Files <NA>
+## 3387 70464 Functions FALSE
+## 3388 70464 Functions TRUE
+## 3389 70464 Functions TRUE
+## 3390 70464 Functions TRUE
+## 3391 70464 Functions TRUE
+## 3392 70464 Functions FALSE
+## 3393 70464 Functions TRUE
+## 3394 70464 Functions TRUE
+## 3395 70464 Functions TRUE
+## 3396 70464 Functions TRUE
+## 3397 70464 Functions TRUE
+## 3398 70464 Functions TRUE
+## 3399 70464 Functions TRUE
+## 3400 70464 Functions TRUE
+## 3401 70464 Functions FALSE
+## 3402 70464 Functions FALSE
+## 3403 70464 Functions TRUE
+## 3404 70464 Functions TRUE
+## 3405 70464 Functions TRUE
+## 3406 70464 Functions <NA>
+## 3407 70464 Missing Values FALSE
+## 3408 70464 Missing Values TRUE
+## 3409 70464 Missing Values TRUE
+## 3410 70464 Missing Values TRUE
+## 3411 70464 Missing Values TRUE
+## 3412 70464 Missing Values TRUE
+## 3413 70464 Missing Values TRUE
+## 3414 70464 Missing Values FALSE
+## 3415 70464 Missing Values FALSE
+## 3416 70464 Missing Values TRUE
+## 3417 70464 Missing Values TRUE
+## 3418 70464 Missing Values TRUE
+## 3419 70464 Missing Values <NA>
+## 3420 70464 Subsetting Vectors TRUE
+## 3421 70464 Subsetting Vectors TRUE
+## 3422 70464 Subsetting Vectors FALSE
+## 3423 70464 Subsetting Vectors FALSE
+## 3424 70464 Subsetting Vectors FALSE
+## 3425 70464 Subsetting Vectors TRUE
+## 3426 70464 Subsetting Vectors TRUE
+## 3427 70464 Subsetting Vectors FALSE
+## 3428 70464 Subsetting Vectors TRUE
+## 3429 70464 Subsetting Vectors TRUE
+## 3430 70464 Subsetting Vectors TRUE
+## 3431 70464 Subsetting Vectors TRUE
+## 3432 70464 Subsetting Vectors TRUE
+## 3433 70464 Subsetting Vectors TRUE
+## 3434 70464 Subsetting Vectors FALSE
+## 3435 70464 Subsetting Vectors TRUE
+## 3436 70464 Subsetting Vectors TRUE
+## 3437 70464 Subsetting Vectors TRUE
+## 3438 70464 Subsetting Vectors TRUE
+## 3439 70464 Workspace and Files TRUE
+## 3440 70464 Missing Values FALSE
+## 3441 70464 Missing Values TRUE
+## 3442 70464 Missing Values FALSE
+## 3443 70464 Missing Values TRUE
+## 3444 70464 Missing Values TRUE
+## 3445 70464 Missing Values TRUE
+## 3446 70464 Missing Values TRUE
+## 3447 70464 Subsetting Vectors TRUE
+## 3448 70464 Subsetting Vectors TRUE
+## 3449 70464 Subsetting Vectors TRUE
+## 3450 11801 Dates and Times TRUE
+## 3451 11801 Tidying Data with tidyr TRUE
+## 3452 11801 Dates and Times TRUE
+## 3453 11801 Dates and Times TRUE
+## 3454 11801 Dates and Times TRUE
+## 3455 11801 Dates and Times TRUE
+## 3456 11801 Dates and Times FALSE
+## 3457 11801 Tidying Data with tidyr TRUE
+## 3458 11801 Grouping and Chaining with dplyr TRUE
+## 3459 11801 Tidying Data with tidyr TRUE
+## 3460 11801 Tidying Data with tidyr TRUE
+## 3461 11801 Tidying Data with tidyr TRUE
+## 3462 11801 Dates and Times TRUE
+## 3463 11801 Tidying Data with tid <NA>
+## 3464 11801 Basic Building Blocks TRUE
+## 3465 11801 Dates and Times TRUE
+## 3466 11801 Logic TRUE
+## 3467 11801 Missing Values TRUE
+## 3468 11801 <NA>
+## 3469 11801 Missing Values FALSE
+## 3470 11801 Grouping and C <NA>
+## 3471 11801 Basic Building Blocks TRUE
+## 3472 11801 Grouping and Chaining with dplyr TRUE
+## 3473 11801 Dates and Times TRUE
+## 3474 11801 Tidying Data with tidyr TRUE
+## 3475 11801 Subsetting Vectors TRUE
+## 3476 11801 Dates and Times TRUE
+## 3477 11801 Workspace and Files TRUE
+## 3478 11801 Dates and Times TRUE
+## 3479 11801 Dates and Times TRUE
+## 3480 11801 Tidying Data with tidyr FALSE
+## 3481 11801 Grouping and Chaining with dplyr TRUE
+## 3482 11801 Dates and Times TRUE
+## 3483 11801 Dates and Times TRUE
+## 3484 11801 Vectors TRUE
+## 3485 11801 Subsetting Vectors TRUE
+## 3486 11801 Tidying Data with tidyr TRUE
+## 3487 11801 Grouping and Chaining with dplyr TRUE
+## 3488 11801 Logic TRUE
+## 3489 11801 Grouping and Chaining with dplyr TRUE
+## 3490 11801 Tidying Data with tidyr TRUE
+## 3491 11801 Missing Values TRUE
+## 3492 11801 Matrices and Data Frames FALSE
+## 3493 11801 Grouping and Chaining with dplyr TRUE
+## 3494 11801 Tidying Data with tidyr FALSE
+## 3495 11801 Dates and Times TRUE
+## 3496 11801 Grouping and Chaining with dplyr TRUE
+## 3497 11801 Dates and Times TRUE
+## 3498 11801 Tidying Data with tidyr FALSE
+## 3499 11801 Grouping and Chaining with dplyr TRUE
+## 3500 11801 Subsetting Vectors TRUE
+## 3501 11801 Manipulating Data with dplyr TRUE
+## 3502 11801 Lo <NA>
+## 3503 11801 Workspace and Files TRUE
+## 3504 11801 Grouping and Chaining with dplyr TRUE
+## 3505 11801 Grouping and Chaining with dplyr TRUE
+## 3506 11801 Logic TRUE
+## 3507 11801 Logic TRUE
+## 3508 11801 Logic FALSE
+## 3509 11801 Logic TRUE
+## 3510 11801 Vectors TRUE
+## 3511 11801 Vectors TRUE
+## 3512 11801 Subsetting Vectors TRUE
+## 3513 11801 Manipulating Data with dplyr TRUE
+## 3514 11801 Logic TRUE
+## 3515 11801 Vectors TRUE
+## 3516 11801 Vectors FALSE
+## 3517 11801 Workspace and Files TRUE
+## 3518 11801 Looking at Data TRUE
+## 3519 11801 Basic Building Blocks TRUE
+## 3520 11801 Matrices and Data Frames TRUE
+## 3521 11801 Tidying Data with tidyr TRUE
+## 3522 11801 Missing Values TRUE
+## 3523 11801 Missing Values TRUE
+## 3524 11801 Tidying Data with tidyr FALSE
+## 3525 11801 Basic Building Blocks TRUE
+## 3526 11801 Logic TRUE
+## 3527 11801 Subsetting Vectors TRUE
+## 3528 11801 Workspace and Files TRUE
+## 3529 11801 Workspace and Files TRUE
+## 3530 11801 Looking at Data TRUE
+## 3531 11801 Vectors TRUE
+## 3532 11801 Vectors TRUE
+## 3533 11801 Vectors TRUE
+## 3534 11801 Vectors TRUE
+## 3535 11801 Dates and Times TRUE
+## 3536 11801 Vectors TRUE
+## 3537 11801 Subsetting Vectors TRUE
+## 3538 11801 Grouping and Chaining with dplyr TRUE
+## 3539 11801 Subsetting Vectors TRUE
+## 3540 11801 Vectors TRUE
+## 3541 11801 Manipulating Data with dplyr TRUE
+## 3542 11801 Manipulating Data with dplyr TRUE
+## 3543 11801 Vectors TRUE
+## 3544 11801 Vectors TRUE
+## 3545 11801 Vectors TRUE
+## 3546 11801 Vectors TRUE
+## 3547 11801 Vectors TRUE
+## 3548 11801 Logic TRUE
+## 3549 11801 Workspace and Files TRUE
+## 3550 11801 Logic TRUE
+## 3551 11801 Subsetting Vectors TRUE
+## 3552 11801 Vectors TRUE
+## 3553 11801 Logic TRUE
+## 3554 11801 Workspace and Files TRUE
+## 3555 11801 Workspace and Files TRUE
+## 3556 11801 Missing Values TRUE
+## 3557 11801 Missing Values TRUE
+## 3558 11801 Missing Values TRUE
+## 3559 11801 Looking at Data TRUE
+## 3560 11801 Basic Building Blocks TRUE
+## 3561 11801 Missing Values TRUE
+## 3562 11801 Matrices and Data Frames TRUE
+## 3563 11801 Matrices and Data Frames TRUE
+## 3564 11801 Missing Values <NA>
+## 3565 11801 Subsetting Vectors TRUE
+## 3566 11801 Basic Building Blocks TRUE
+## 3567 11801 Basic Building Blocks TRUE
+## 3568 11801 Basic Building Blocks TRUE
+## 3569 11801 Looking at Data <NA>
+## 3570 11801 Looking at Data TRUE
+## 3571 11801 Logic TRUE
+## 3572 11801 Logic TRUE
+## 3573 11801 Subsetting Vectors TRUE
+## 3574 11801 Subsetting Vectors TRUE
+## 3575 11801 Grouping and Chaining with dplyr TRUE
+## 3576 11801 Subsetting Vectors TRUE
+## 3577 11801 Workspace and Files TRUE
+## 3578 11801 Workspace and Files TRUE
+## 3579 11801 Subsetting Vectors TRUE
+## 3580 11801 Subsetting Vectors TRUE
+## 3581 11801 Vectors TRUE
+## 3582 11801 Vectors TRUE
+## 3583 11801 Logic TRUE
+## 3584 11801 Missing Values TRUE
+## 3585 11801 Looking at Data TRUE
+## 3586 11801 Logic TRUE
+## 3587 11801 Logic TRUE
+## 3588 11801 Workspace and Files TRUE
+## 3589 11801 Missing Values TRUE
+## 3590 11801 Basic Building Blocks TRUE
+## 3591 11801 <NA>
+## 3592 11801 Logic TRUE
+## 3593 11801 Logic TRUE
+## 3594 11801 Logic TRUE
+## 3595 11801 Workspace and Files TRUE
+## 3596 11801 Looking at Data TRUE
+## 3597 11801 Looking at Data TRUE
+## 3598 11801 Looking at Data TRUE
+## 3599 11801 Matrices and Data Frames TRUE
+## 3600 11801 Matrices and Data Frames TRUE
+## 3601 11801 Basic Building Blocks TRUE
+## 3602 11801 Looking at Data TRUE
+## 3603 11801 Workspace and Files TRUE
+## 3604 11801 Matrices and Data Frames TRUE
+## 3605 11801 Basic Building Blocks TRUE
+## 3606 11801 Basic Building Blocks TRUE
+## 3607 11801 Manipulating Data with dplyr TRUE
+## 3608 11801 Manipulating Data with dplyr TRUE
+## 3609 11801 Manipulating Data with dplyr TRUE
+## 3610 11801 Looking at Data TRUE
+## 3611 11801 Matrices and Data Frames FALSE
+## 3612 11801 Matrices and Data Frames TRUE
+## 3613 11801 Matrices and Data Frames TRUE
+## 3614 11801 Matrices and Data Frames TRUE
+## 3615 11801 Subsetting Vectors TRUE
+## 3616 11801 Basic Building Blocks TRUE
+## 3617 11801 Subsetting Vectors TRUE
+## 3618 11801 Missing Values TRUE
+## 3619 11801 Workspace and Files TRUE
+## 3620 11801 Workspace and Files TRUE
+## 3621 11801 Looking at Data TRUE
+## 3622 11801 Subsetti <NA>
+## 3623 11801 Missing Values TRUE
+## 3624 11801 Looking at Data TRUE
+## 3625 11801 Matrices and Data Frames TRUE
+## 3626 11801 Matrices and Data Frames TRUE
+## 3627 11801 Basic Building Blocks TRUE
+## 3628 11801 Matrices and Data Frames TRUE
+## 3629 11801 Manipulating Data with dplyr TRUE
+## 3630 11801 Workspace and Files TRUE
+## 3631 11801 Missing Values TRUE
+## 3632 11801 Basic Building Blocks TRUE
+## 3633 11801 Looking at Data TRUE
+## 3634 11801 Manipulating Data with dplyr TRUE
+## 3635 11801 Manipulating Data with dplyr TRUE
+## 3636 11801 Looking at Data TRUE
+## 3637 11801 Matrices and Data Frames TRUE
+## 3638 11801 Looking at Data TRUE
+## 3639 11801 Basic Building Blocks TRUE
+## 3640 11801 Manipulating Data with dplyr TRUE
+## 3641 11801 Missing Values TRUE
+## 3642 11801 Manipulating Data with dplyr TRUE
+## 3643 11801 Looking at Data FALSE
+## 3644 11801 Manipulating Data with dplyr TRUE
+## 3645 75323 Functions TRUE
+## 3646 75323 Functions TRUE
+## 3647 75323 Fu <NA>
+## 3648 75323 Functions TRUE
+## 3649 75323 Functions TRUE
+## 3650 75323 Functions TRUE
+## 3651 75323 Functions TRUE
+## 3652 75323 Functions FALSE
+## 3653 75323 Functions TRUE
+## 3654 75323 Functions TRUE
+## 3655 75323 Functions TRUE
+## 3656 75323 Functions TRUE
+## 3657 75323 Functions TRUE
+## 3658 75323 Functions TRUE
+## 3659 75323 Functions TRUE
+## 3660 75323 Functions TRUE
+## 3661 75323 Functions TRUE
+## 3662 75323 Functions TRUE
+## 3663 75323 Functions TRUE
+## 3664 27264 Vectors TRUE
+## 3665 27264 Vectors TRUE
+## 3666 27264 Vectors TRUE
+## 3667 27264 Vectors TRUE
+## 3668 27264 Missing Values TRUE
+## 3669 27264 Missing Values TRUE
+## 3670 27264 Missing Values TRUE
+## 3671 27264 Missing Values TRUE
+## 3672 27264 Missing Values TRUE
+## 3673 27264 Vectors TRUE
+## 3674 27264 Vectors TRUE
+## 3675 27264 Vectors TRUE
+## 3676 27264 Vectors TRUE
+## 3677 27264 Vectors TRUE
+## 3678 27264 Vectors FALSE
+## 3679 27264 Missing Values TRUE
+## 3680 27264 Missing Values TRUE
+## 3681 27264 Vectors TRUE
+## 3682 27264 Vectors TRUE
+## 3683 27264 Vectors TRUE
+## 3684 27264 Vectors TRUE
+## 3685 27264 Vectors <NA>
+## 3686 27264 Missing Values TRUE
+## 3687 27264 Missing Values TRUE
+## 3688 27264 Missing Values TRUE
+## 3689 27264 Missing Values TRUE
+## 3690 27264 Missing Values TRUE
+## 3691 27264 Missing Values TRUE
+## 3692 27264 Subsetting Vectors TRUE
+## 3693 27264 Subsetting Vectors TRUE
+## 3694 27264 Subsetting Vectors TRUE
+## 3695 27264 Subsetting Vectors TRUE
+## 3696 27264 Subsetting Vectors TRUE
+## 3697 27264 Subsetting Vectors TRUE
+## 3698 27264 Subsetting Vectors <NA>
+## 3699 27264 Logic TRUE
+## 3700 27264 Logic TRUE
+## 3701 27264 Logic TRUE
+## 3702 27264 Logic TRUE
+## 3703 27264 Logic TRUE
+## 3704 27264 Logic TRUE
+## 3705 27264 Logic TRUE
+## 3706 27264 Logic TRUE
+## 3707 27264 Logic TRUE
+## 3708 27264 Missing Values TRUE
+## 3709 27264 Missing Values <NA>
+## 3710 27264 Subsetting Vectors TRUE
+## 3711 27264 Subsetting Vectors TRUE
+## 3712 27264 Subsetting Vectors FALSE
+## 3713 27264 Subsetting Vectors TRUE
+## 3714 27264 Subsetting Vectors TRUE
+## 3715 27264 Subsetting Vectors TRUE
+## 3716 27264 Subsetting Vectors TRUE
+## 3717 27264 Subsetting Vectors FALSE
+## 3718 27264 Subsetting Vectors TRUE
+## 3719 27264 Subsetting Vectors TRUE
+## 3720 27264 Subsetting Vectors TRUE
+## 3721 27264 Subsetting Vectors TRUE
+## 3722 27264 Subsetting Vectors TRUE
+## 3723 27264 Subsetting Vectors TRUE
+## 3724 27264 Subsetting Vectors TRUE
+## 3725 27264 Subsetting Vectors TRUE
+## 3726 27264 Subsetting Vectors TRUE
+## 3727 27264 Subsetting Vectors TRUE
+## 3728 27264 Subsetting Vectors TRUE
+## 3729 27264 Subsetting Vectors TRUE
+## 3730 27264 Subsetting Vectors TRUE
+## 3731 27264 Subsetting Vectors TRUE
+## 3732 27264 Logic TRUE
+## 3733 27264 Logic TRUE
+## 3734 27264 Logic <NA>
+## 3735 27264 Dates and Times TRUE
+## 3736 27264 Dates and Times TRUE
+## 3737 27264 Dates and Times TRUE
+## 3738 27264 Dates and Times TRUE
+## 3739 27264 Dates and Times TRUE
+## 3740 27264 Dates and Times TRUE
+## 3741 27264 Dates and Times TRUE
+## 3742 27264 Dates and Times TRUE
+## 3743 27264 Dates and Times TRUE
+## 3744 27264 Dates and Times TRUE
+## 3745 27264 Dates and Times TRUE
+## 3746 27264 Dates and Times TRUE
+## 3747 27264 Dates and Times TRUE
+## 3748 27264 Dates and Times TRUE
+## 3749 27264 Dates and Times TRUE
+## 3750 27264 Dates and Times TRUE
+## 3751 27264 Dates and Times TRUE
+## 3752 27264 Dates and Times TRUE
+## 3753 27264 Dates and Times TRUE
+## 3754 27264 Dates and Times TRUE
+## 3755 27264 Dates and Times TRUE
+## 3756 27264 Dates and Times TRUE
+## 3757 27264 Dates and Times TRUE
+## 3758 27264 Dates and Times TRUE
+## 3759 27264 Dates and Times TRUE
+## 3760 27264 Dates and Times TRUE
+## 3761 27264 Dates and Times TRUE
+## 3762 27264 Dates and Times TRUE
+## 3763 27264 Dates and Times <NA>
+## 3764 27264 Functions TRUE
+## 3765 27264 Functions FALSE
+## 3766 27264 Functions TRUE
+## 3767 27264 Functions TRUE
+## 3768 27264 Functions TRUE
+## 3769 27264 Functions TRUE
+## 3770 27264 Functions TRUE
+## 3771 27264 Functions TRUE
+## 3772 27264 Functions FALSE
+## 3773 27264 Functions FALSE
+## 3774 27264 Functions TRUE
+## 3775 27264 Functions TRUE
+## 3776 27264 Functions TRUE
+## 3777 27264 Functions TRUE
+## 3778 27264 Functions TRUE
+## 3779 27264 Functions TRUE
+## 3780 27264 Functions TRUE
+## 3781 27264 Functions TRUE
+## 3782 27264 Functions TRUE
+## 3783 27264 Functions FALSE
+## 3784 27264 Functions TRUE
+## 3785 27264 Functions FALSE
+## 3786 27264 Functions TRUE
+## 3787 27264 Functions TRUE
+## 3788 27264 Functions TRUE
+## 3789 27264 Functions TRUE
+## 3790 27264 Functions TRUE
+## 3791 27264 Functions FALSE
+## 3792 27264 Functions FALSE
+## 3793 27264 Functions FALSE
+## 3794 27264 Functions TRUE
+## 3795 27264 Functions TRUE
+## 3796 27264 Functions FALSE
+## 3797 27264 Functions FALSE
+## 3798 27264 Functions TRUE
+## 3799 27264 Functions TRUE
+## 3800 27264 Functions TRUE
+## 3801 27264 Functions TRUE
+## 3802 27264 Functions <NA>
+## 3803 27264 Matrices and Data Frames FALSE
+## 3804 27264 Matrices and Data Frames TRUE
+## 3805 27264 Matrices and Data Frames TRUE
+## 3806 27264 Matrices and Data Frames TRUE
+## 3807 27264 Matrices and Data Frames TRUE
+## 3808 27264 Matrices and Data Frames TRUE
+## 3809 27264 Matrices and Data Frames TRUE
+## 3810 27264 Matrices and Data Frames TRUE
+## 3811 27264 Matrices and Data Frames TRUE
+## 3812 27264 Matrices and Data Frames TRUE
+## 3813 27264 Matrices and Data Frames TRUE
+## 3814 27264 Matrices and Data Frames TRUE
+## 3815 27264 Matrices and Data Frames TRUE
+## 3816 27264 Matrices and Data Frames TRUE
+## 3817 27264 Matrices and Data Frames TRUE
+## 3818 27264 Matrices and Data Frames TRUE
+## 3819 27264 Matrices and Data Frames TRUE
+## 3820 27264 Matrices and Data Frames TRUE
+## 3821 27264 Matrices and Data Frames TRUE
+## 3822 27264 Matrices and Data Frames TRUE
+## 3823 27264 Matrices and Data Frames FALSE
+## 3824 27264 Matrices and Data Frames TRUE
+## 3825 27264 Matrices and Data Frames TRUE
+## 3826 27264 Matrices and Data Frames TRUE
+## 3827 27264 Matrices and Data Frames TRUE
+## 3828 27264 Matrices and Data Frames <NA>
+## 3829 27264 Logic TRUE
+## 3830 27264 Logic TRUE
+## 3831 27264 Logic TRUE
+## 3832 27264 Logic TRUE
+## 3833 27264 Logic TRUE
+## 3834 27264 Logic TRUE
+## 3835 27264 Logic TRUE
+## 3836 27264 Logic TRUE
+## 3837 27264 Logic TRUE
+## 3838 27264 Logic TRUE
+## 3839 27264 Logic TRUE
+## 3840 27264 Logic TRUE
+## 3841 27264 Logic TRUE
+## 3842 27264 Logic TRUE
+## 3843 27264 Logic TRUE
+## 3844 27264 Logic TRUE
+## 3845 27264 Logic TRUE
+## 3846 27264 Logic TRUE
+## 3847 27264 Logic TRUE
+## 3848 27264 Logic TRUE
+## 3849 27264 Logic TRUE
+## 3850 27264 Logic TRUE
+## 3851 27264 Logic TRUE
+## 3852 27264 Logic TRUE
+## 3853 27264 Vectors FALSE
+## 3854 27264 Vectors TRUE
+## 3855 27264 Vectors TRUE
+## 3856 27264 Vectors FALSE
+## 3857 27264 Vectors TRUE
+## 3858 27264 Vectors TRUE
+## 3859 27264 Vectors TRUE
+## 3860 27264 Vectors TRUE
+## 3861 27264 Plotting_Systems TRUE
+## 3862 27264 Plotting_Systems FALSE
+## 3863 27264 Plotting_Systems TRUE
+## 3864 27264 Plotting_Systems TRUE
+## 3865 27264 Plotting_Systems TRUE
+## 3866 27264 Plotting_Systems TRUE
+## 3867 27264 Plotting_Systems TRUE
+## 3868 27264 Plotting_Systems FALSE
+## 3869 27264 Plotting_Systems TRUE
+## 3870 27264 Plotting_Systems TRUE
+## 3871 27264 Plotting_Systems TRUE
+## 3872 27264 Plotting_Systems TRUE
+## 3873 27264 Plotting_Systems TRUE
+## 3874 27264 Plotting_Systems TRUE
+## 3875 27264 Plotting_Systems TRUE
+## 3876 27264 Plotting_Systems TRUE
+## 3877 27264 Plotting_Systems TRUE
+## 3878 27264 Plotting_Systems TRUE
+## 3879 27264 Plotting_Systems TRUE
+## 3880 27264 Plotting_Systems TRUE
+## 3881 27264 Plotting_Systems TRUE
+## 3882 27264 Plotting_Systems TRUE
+## 3883 27264 Plotting_Systems TRUE
+## 3884 27264 Plotting_Systems <NA>
+## 3885 27264 Manipulating Data with dplyr TRUE
+## 3886 27264 Manipulating Data with dplyr TRUE
+## 3887 27264 Manipulating Data with dplyr TRUE
+## 3888 27264 Manipulating Data with dplyr TRUE
+## 3889 27264 Manipulating Data with dplyr TRUE
+## 3890 27264 Manipulating Data with dplyr FALSE
+## 3891 27264 Manipulating Data with dplyr FALSE
+## 3892 27264 Manipulating Data with dplyr TRUE
+## 3893 27264 Manipulating Data with dplyr TRUE
+## 3894 27264 Manipulating Data with dplyr TRUE
+## 3895 27264 Manipulating Data with dplyr TRUE
+## 3896 27264 Manipulating Data with dplyr TRUE
+## 3897 27264 Manipulating Data with dplyr TRUE
+## 3898 27264 Manipulating Data with dplyr TRUE
+## 3899 27264 Manipulating Data with dplyr TRUE
+## 3900 27264 Manipulating Data with dplyr TRUE
+## 3901 27264 Manipulating Data with dplyr TRUE
+## 3902 27264 Manipulating Data with dplyr TRUE
+## 3903 27264 Manipulating Data with dplyr TRUE
+## 3904 27264 Manipulating Data with dplyr TRUE
+## 3905 27264 Manipulating Data with dplyr TRUE
+## 3906 27264 Manipulating Data with dplyr TRUE
+## 3907 27264 Manipulating Data with dplyr TRUE
+## 3908 27264 Manipulating Data with dplyr TRUE
+## 3909 27264 Manipulating Data with dplyr TRUE
+## 3910 27264 Manipulating Data with dplyr FALSE
+## 3911 27264 Manipulating Data with dplyr TRUE
+## 3912 27264 Manipulating Data with dplyr TRUE
+## 3913 27264 Manipulating Data with dplyr TRUE
+## 3914 27264 Manipulating Data with dplyr TRUE
+## 3915 27264 Manipulating Data with dplyr TRUE
+## 3916 27264 Manipulating Data with dplyr TRUE
+## 3917 27264 Manipulating Data with dplyr TRUE
+## 3918 27264 Manipulating Data with dplyr TRUE
+## 3919 27264 Manipulating Data with dplyr TRUE
+## 3920 27264 Manipulating Data with dplyr TRUE
+## 3921 27264 Manipulating Data with dplyr TRUE
+## 3922 27264 Manipulating Data with dplyr TRUE
+## 3923 27264 Manipulating Data with dplyr TRUE
+## 3924 27264 Manipulating Data with dplyr TRUE
+## 3925 27264 Manipulating Data with dplyr TRUE
+## 3926 27264 Manipulating Data with dplyr TRUE
+## 3927 27264 Manipulating Data with dplyr TRUE
+## 3928 27264 Manipulating Data with dplyr <NA>
+## 3929 27264 Base_Plotting_System TRUE
+## 3930 27264 Base_Plotting_System TRUE
+## 3931 27264 Base_Plotting_System TRUE
+## 3932 27264 Base_Plotting_System FALSE
+## 3933 27264 Base_Plotting_System FALSE
+## 3934 27264 Base_Plotting_System TRUE
+## 3935 27264 Base_Plotting_System TRUE
+## 3936 27264 Base_Plotting_System TRUE
+## 3937 27264 Base_Plotting_System TRUE
+## 3938 27264 Base_Plotting_System TRUE
+## 3939 27264 Base_Plotting_System <NA>
+## 3940 27264 Grouping and Chaining with dplyr TRUE
+## 3941 27264 Grouping and Chaining with dplyr TRUE
+## 3942 27264 Grouping and Chaining with dplyr TRUE
+## 3943 27264 Grouping and Chaining with dplyr TRUE
+## 3944 27264 Grouping and Chaining with dplyr TRUE
+## 3945 27264 Grouping and Chaining with dplyr TRUE
+## 3946 27264 Grouping and Chaining with dplyr TRUE
+## 3947 27264 Grouping and Chaining with dplyr FALSE
+## 3948 27264 Grouping and Chaining with dplyr FALSE
+## 3949 27264 Grouping and Chaining with dplyr TRUE
+## 3950 27264 Grouping and Chaining with dplyr TRUE
+## 3951 27264 Grouping and Chaining with dplyr TRUE
+## 3952 27264 Grouping and Chaining with dplyr TRUE
+## 3953 27264 Grouping and Chaining with dplyr TRUE
+## 3954 27264 Grouping and Chaining with dplyr <NA>
+## 3955 27264 Looking at Data FALSE
+## 3956 27264 Looking at Data TRUE
+## 3957 27264 Looking at Data TRUE
+## 3958 27264 Looking at Data TRUE
+## 3959 27264 Grouping and Chaining with dplyr TRUE
+## 3960 27264 Grouping and Chaining with dplyr TRUE
+## 3961 27264 Grouping and Chaining with dplyr TRUE
+## 3962 27264 Grouping and Chaining with dplyr TRUE
+## 3963 27264 Grouping and Chaining with dplyr TRUE
+## 3964 27264 Grouping and Chaining with dplyr TRUE
+## 3965 27264 Grouping and Chaining with dplyr TRUE
+## 3966 27264 Grouping and Chaining with dplyr TRUE
+## 3967 27264 Grouping and Chaining with dplyr TRUE
+## 3968 27264 Grouping and Chaining with dplyr TRUE
+## 3969 27264 Grouping and Chaining with dplyr TRUE
+## 3970 27264 Grouping and Chaining with dplyr TRUE
+## 3971 27264 Grouping and Chaining with dplyr TRUE
+## 3972 27264 Grouping and Chaining with dplyr TRUE
+## 3973 27264 Grouping and Chaining with dplyr FALSE
+## 3974 27264 Grouping and Chaining with dplyr TRUE
+## 3975 27264 Grouping and Chaining with dplyr TRUE
+## 3976 27264 Grouping and Chaining with dplyr TRUE
+## 3977 27264 Grouping and Chaining with dplyr TRUE
+## 3978 27264 Grouping and Chaining with dplyr TRUE
+## 3979 27264 Grouping and Chaining with dplyr FALSE
+## 3980 27264 Base_Plotting_System TRUE
+## 3981 27264 Base_Plotting_System TRUE
+## 3982 27264 Base_Plotting_System FALSE
+## 3983 27264 Base_Plotting_System TRUE
+## 3984 27264 Base_Plotting_System TRUE
+## 3985 27264 Base_Plotting_System FALSE
+## 3986 27264 Base_Plotting_System TRUE
+## 3987 27264 Base_Plotting_System TRUE
+## 3988 27264 Base_Plotting_System TRUE
+## 3989 27264 Base_Plotting_System TRUE
+## 3990 27264 Base_Plotting_System TRUE
+## 3991 27264 Base_Plotting_System TRUE
+## 3992 27264 Base_Plotting_System TRUE
+## 3993 27264 Base_Plotting_System TRUE
+## 3994 27264 Base_Plotting_System TRUE
+## 3995 27264 Base_Plotting_System TRUE
+## 3996 27264 Base_Plotting_System TRUE
+## 3997 27264 Base_Plotting_System TRUE
+## 3998 27264 Base_Plotting_System FALSE
+## 3999 27264 Looking at Data TRUE
+## 4000 27264 Looking at Data TRUE
+## 4001 27264 Looking at Data TRUE
+## 4002 27264 Looking at Data TRUE
+## 4003 27264 Looking at Data TRUE
+## 4004 27264 Looking at Data TRUE
+## 4005 27264 Looking at Data TRUE
+## 4006 27264 Looking at Data TRUE
+## 4007 27264 Looking at Data FALSE
+## 4008 27264 Looking at Data TRUE
+## 4009 27264 Looking at Data TRUE
+## 4010 27264 Looking at Data TRUE
+## 4011 27264 Looking at Data TRUE
+## 4012 27264 Looking at Data <NA>
+## 4013 27264 Base_Plotting_System TRUE
+## 4014 27264 Base_Plotting_System TRUE
+## 4015 27264 Base_Plotting_System TRUE
+## 4016 27264 Base_Plotting_System TRUE
+## 4017 27264 Base_Plotting_System TRUE
+## 4018 27264 Base_Plotting_System TRUE
+## 4019 27264 Base_Plotting_System TRUE
+## 4020 27264 Clustering_Example TRUE
+## 4021 27264 Clustering_Example TRUE
+## 4022 27264 Clustering_Example TRUE
+## 4023 27264 Clustering_Example TRUE
+## 4024 27264 Clustering_Example TRUE
+## 4025 27264 Clustering_Example TRUE
+## 4026 27264 Clustering_Example TRUE
+## 4027 27264 Clustering_Example TRUE
+## 4028 27264 Clustering_Example TRUE
+## 4029 27264 Clustering_Example TRUE
+## 4030 27264 Clustering_Example TRUE
+## 4031 27264 Clustering_Example TRUE
+## 4032 27264 Clustering_Example TRUE
+## 4033 27264 Clustering_Example TRUE
+## 4034 27264 Clustering_Example TRUE
+## 4035 27264 Clustering_Example TRUE
+## 4036 27264 Clustering_Example FALSE
+## 4037 27264 Clustering_Example TRUE
+## 4038 27264 Clustering_Example TRUE
+## 4039 27264 Base_Plotting_System TRUE
+## 4040 27264 Base_Plotting_System TRUE
+## 4041 27264 Base_Plotting_System FALSE
+## 4042 27264 Base_Plotting_System TRUE
+## 4043 27264 Base_Plotting_System TRUE
+## 4044 27264 Base_Plotting_System TRUE
+## 4045 27264 Base_Plotting_System TRUE
+## 4046 27264 Base_Plotting_System TRUE
+## 4047 27264 Base_Plotting_System TRUE
+## 4048 27264 Base_Plotting_System TRUE
+## 4049 27264 Base_Plotting_System TRUE
+## 4050 27264 Clustering_Example TRUE
+## 4051 27264 Clustering_Example TRUE
+## 4052 27264 Clustering_Example FALSE
+## 4053 27264 Clustering_Example TRUE
+## 4054 27264 Clustering_Example TRUE
+## 4055 27264 Clustering_Example FALSE
+## 4056 27264 Clustering_Example FALSE
+## 4057 27264 Clustering_Example TRUE
+## 4058 27264 Clustering_Example FALSE
+## 4059 27264 Clustering_Example TRUE
+## 4060 27264 Clustering_Example TRUE
+## 4061 27264 Clustering_Example TRUE
+## 4062 27264 Clustering_Example TRUE
+## 4063 27264 Clustering_Example TRUE
+## 4064 27264 Clustering_Example TRUE
+## 4065 27264 Clustering_Example TRUE
+## 4066 27264 Clustering_Example FALSE
+## 4067 27264 Clustering_Example TRUE
+## 4068 27264 Clustering_Example TRUE
+## 4069 27264 Clustering_Example TRUE
+## 4070 27264 Clustering_Example TRUE
+## 4071 27264 Clustering_Example TRUE
+## 4072 27264 Clustering_Example TRUE
+## 4073 27264 Clustering_Example TRUE
+## 4074 27264 Clustering_Example TRUE
+## 4075 27264 Clustering_Example TRUE
+## 4076 27264 Clustering_Example <NA>
+## 4077 27264 Clustering_Example TRUE
+## 4078 94880 Basic Building Blocks TRUE
+## 4079 94880 Basic Building Blocks TRUE
+## 4080 94880 Logic TRUE
+## 4081 94880 Functions TRUE
+## 4082 94880 Dates and Times TRUE
+## 4083 94880 Basic Building Blocks TRUE
+## 4084 94880 Functions TRUE
+## 4085 94880 Logic TRUE
+## 4086 94880 Basic Building Blocks TRUE
+## 4087 94880 Dates and Times FALSE
+## 4088 94880 Dates and Times FALSE
+## 4089 94880 Dates and Times FALSE
+## 4090 94880 Functions TRUE
+## 4091 94880 Basic Building Blocks TRUE
+## 4092 94880 Basic Building Blocks TRUE
+## 4093 94880 Workspace and Files FALSE
+## 4094 94880 Logic TRUE
+## 4095 94880 Subsetting Vectors TRUE
+## 4096 94880 Basic Building Blocks TRUE
+## 4097 94880 Dates and Times TRUE
+## 4098 94880 Subsetting Vectors TRUE
+## 4099 94880 Workspace and Files TRUE
+## 4100 94880 Workspace and Files TRUE
+## 4101 94880 Functions FALSE
+## 4102 94880 Dates and Times <NA>
+## 4103 94880 Subsetting Vectors TRUE
+## 4104 94880 Dates and Times TRUE
+## 4105 94880 Workspace and Files TRUE
+## 4106 94880 Functions FALSE
+## 4107 94880 Subsetting Vectors TRUE
+## 4108 94880 Workspace and Files FALSE
+## 4109 94880 Functions TRUE
+## 4110 94880 Functions FALSE
+## 4111 94880 Workspace and Files TRUE
+## 4112 94880 Workspace and Files FALSE
+## 4113 94880 Workspace and Files TRUE
+## 4114 94880 Vectors TRUE
+## 4115 94880 Functions TRUE
+## 4116 94880 Subsetting Vectors TRUE
+## 4117 94880 Dates and Times TRUE
+## 4118 94880 Dates and Times TRUE
+## 4119 94880 Vectors TRUE
+## 4120 94880 Dates and Times TRUE
+## 4121 94880 Workspace and Files FALSE
+## 4122 94880 Dates and Times TRUE
+## 4123 94880 Basic Building Blocks TRUE
+## 4124 94880 Subsetting Vectors TRUE
+## 4125 94880 Subsetting Vectors TRUE
+## 4126 94880 Workspace and Files TRUE
+## 4127 94880 Functions FALSE
+## 4128 94880 Logic TRUE
+## 4129 94880 Logic TRUE
+## 4130 94880 Logic TRUE
+## 4131 94880 Logic <NA>
+## 4132 94880 Workspace and Files TRUE
+## 4133 94880 Workspace and Files TRUE
+## 4134 94880 Dates and Times TRUE
+## 4135 94880 Functions FALSE
+## 4136 94880 Subsetting Vectors TRUE
+## 4137 94880 Subsetting Vectors TRUE
+## 4138 94880 Subsetting Vectors TRUE
+## 4139 94880 Functions TRUE
+## 4140 94880 Vectors TRUE
+## 4141 94880 Logic TRUE
+## 4142 94880 Logic TRUE
+## 4143 94880 Logic TRUE
+## 4144 94880 Functions TRUE
+## 4145 94880 Dates and Times TRUE
+## 4146 94880 Dates and Times TRUE
+## 4147 94880 Dates and Times TRUE
+## 4148 94880 Functions FALSE
+## 4149 94880 Basic Building Blocks TRUE
+## 4150 94880 Basic Building Blocks <NA>
+## 4151 94880 Subsetting Vectors <NA>
+## 4152 94880 Functions TRUE
+## 4153 94880 Functions TRUE
+## 4154 94880 Functions FALSE
+## 4155 94880 Vectors TRUE
+## 4156 94880 Vectors TRUE
+## 4157 94880 Vectors TRUE
+## 4158 94880 Subsetting Vectors TRUE
+## 4159 94880 Subsetting Vectors FALSE
+## 4160 94880 Subsetting Vectors TRUE
+## 4161 94880 Subsetting Vectors TRUE
+## 4162 94880 Workspace and Files TRUE
+## 4163 94880 Workspace and Files TRUE
+## 4164 94880 Workspace and Files TRUE
+## 4165 94880 Workspace and Files TRUE
+## 4166 94880 Dates and Times FALSE
+## 4167 94880 Logic TRUE
+## 4168 94880 Dates and Times TRUE
+## 4169 94880 Logic TRUE
+## 4170 94880 Workspace and Files TRUE
+## 4171 94880 Functions TRUE
+## 4172 94880 Dates and Times TRUE
+## 4173 94880 Dates and Times TRUE
+## 4174 94880 Dates and Times TRUE
+## 4175 94880 Logic TRUE
+## 4176 94880 Logic TRUE
+## 4177 94880 Logic TRUE
+## 4178 94880 Logic TRUE
+## 4179 94880 Logic TRUE
+## 4180 94880 Logic TRUE
+## 4181 94880 Logic TRUE
+## 4182 94880 Functions TRUE
+## 4183 94880 Functions TRUE
+## 4184 94880 Vectors TRUE
+## 4185 94880 Vectors TRUE
+## 4186 94880 Vectors TRUE
+## 4187 94880 Logic FALSE
+## 4188 94880 Workspace and Files FALSE
+## 4189 94880 Workspace and Files TRUE
+## 4190 94880 Workspace and Files TRUE
+## 4191 94880 Workspace and Files TRUE
+## 4192 94880 Workspace and Files TRUE
+## 4193 94880 Workspace and Files <NA>
+## 4194 94880 Logic TRUE
+## 4195 94880 Dates and Times TRUE
+## 4196 94880 Vectors TRUE
+## 4197 94880 Workspace and Files TRUE
+## 4198 94880 Workspace and Files TRUE
+## 4199 94880 Workspace and Files TRUE
+## 4200 94880 Workspace and Files TRUE
+## 4201 94880 Logic TRUE
+## 4202 94880 Functions TRUE
+## 4203 94880 Functions FALSE
+## 4204 94880 Functions TRUE
+## 4205 94880 Logic TRUE
+## 4206 94880 Logic TRUE
+## 4207 94880 Vectors TRUE
+## 4208 94880 Vectors TRUE
+## 4209 94880 Functions TRUE
+## 4210 94880 Basic Building Blocks TRUE
+## 4211 94880 Basic Building Blocks TRUE
+## 4212 94880 Basic Building Blocks TRUE
+## 4213 94880 Basic Building Blocks TRUE
+## 4214 94880 Vectors TRUE
+## 4215 94880 Vectors TRUE
+## 4216 94880 Vectors TRUE
+## 4217 94880 Vectors TRUE
+## 4218 94880 Vectors TRUE
+## 4219 94880 Vectors TRUE
+## 4220 94880 Vectors TRUE
+## 4221 94880 Functions FALSE
+## 4222 94880 Basic Building Blocks TRUE
+## 4223 94880 Missing Values TRUE
+## 4224 94880 Missing Values TRUE
+## 4225 94880 Functions TRUE
+## 4226 94880 Logic TRUE
+## 4227 94880 Functions TRUE
+## 4228 94880 Functions TRUE
+## 4229 94880 Functions FALSE
+## 4230 94880 Missing Values TRUE
+## 4231 94880 Missing Values FALSE
+## 4232 94880 Missing Values TRUE
+## 4233 94880 Missing Values TRUE
+## 4234 94880 Dates and Times TRUE
+## 4235 94880 Logic TRUE
+## 4236 94880 Basic Building Blocks TRUE
+## 4237 94880 Workspace and Files TRUE
+## 4238 94880 Subsetting Vectors TRUE
+## 4239 94880 Subsetting Vectors TRUE
+## 4240 94880 Logic TRUE
+## 4241 94880 Functions TRUE
+## 4242 94880 Logic TRUE
+## 4243 94880 Logic TRUE
+## 4244 94880 Logic TRUE
+## 4245 94880 Subsetting Vectors FALSE
+## 4246 94880 Dates and Times TRUE
+## 4247 94880 Basic Building Blocks TRUE
+## 4248 94880 Functions TRUE
+## 4249 94880 Logic TRUE
+## 4250 94880 Dates and Times TRUE
+## 4251 94880 Logic TRUE
+## 4252 94880 Logic TRUE
+## 4253 94880 Subsetting Vectors TRUE
+## 4254 94880 Functions TRUE
+## 4255 94880 Functions TRUE
+## 4256 94880 Basic Building Blocks FALSE
+## 4257 94880 Basic Building Blocks TRUE
+## 4258 94880 Basic Building Blocks TRUE
+## 4259 94880 Basic Building Blocks TRUE
+## 4260 94880 Logic TRUE
+## 4261 94880 Dates and Times TRUE
+## 4262 94880 Functions <NA>
+## 4263 94880 Workspace and Files TRUE
+## 4264 94880 Subsetting Vectors TRUE
+## 4265 94880 Basic Building Blocks TRUE
+## 4266 94880 Functions TRUE
+## 4267 94880 Basic Building Blocks TRUE
+## 4268 94880 Basic Building Blocks TRUE
+## 4269 94880 Functions TRUE
+## 4270 94880 Subsetting Vectors TRUE
+## 4271 94880 Subsetting Vectors TRUE
+## 4272 94880 Missing Values TRUE
+## 4273 94880 Subsetting Vectors TRUE
+## 4274 94880 Functions TRUE
+## 4275 94880 Dates and Times TRUE
+## 4276 94880 Dates and Times TRUE
+## 4277 94880 Logic TRUE
+## 4278 94880 Dates and Times TRUE
+## 4279 94880 Dates and Times TRUE
+## 4280 94880 Functions TRUE
+## 4281 94880 Dates and Times TRUE
+## 4282 94880 Subsetting Vectors TRUE
+## 4283 94880 Subsetting Vectors TRUE
+## 4284 94880 Subsetting Vectors TRUE
+## 4285 94880 Logic TRUE
+## 4286 94880 Functions TRUE
+## 4287 94880 Vectors <NA>
+## 4288 94880 Missing Values TRUE
+## 4289 94880 Functions TRUE
+## 4290 94880 Missing Values TRUE
+## 4291 94880 Logic TRUE
+## 4292 94880 Missing Values TRUE
+## 4293 94880 Missing Values TRUE
+## 4294 94880 Subsetting Vectors TRUE
+## 4295 94880 Missing Values TRUE
+## 4296 94880 Dates and Times TRUE
+## 4297 94880 Missing Values FALSE
+## 4298 94880 Dates and Times TRUE
+## 4299 94880 Missing Values TRUE
+## 4300 94880 Missing Values TRUE
+## 4301 94880 Subsetting Vectors TRUE
+## 4302 94880 Missing Values TRUE
+## 4303 94880 Missing Values <NA>
+## 4304 94880 Dates and Times FALSE
+## 4305 94880 Subsetting Vectors TRUE
+## 4306 94880 Dates and Times TRUE
+## 4307 46250 Workspace and Files TRUE
+## 4308 46250 Workspace and Files TRUE
+## 4309 46250 Logic TRUE
+## 4310 46250 Missing Values TRUE
+## 4311 46250 Logic TRUE
+## 4312 46250 Subsetting Vectors TRUE
+## 4313 46250 Workspace and Files TRUE
+## 4314 46250 Workspace and Files FALSE
+## 4315 46250 Missing Values TRUE
+## 4316 46250 Workspace and Files FALSE
+## 4317 46250 Workspace and Files TRUE
+## 4318 46250 Logic TRUE
+## 4319 46250 Dates and Times TRUE
+## 4320 46250 Logic TRUE
+## 4321 46250 Missing Values TRUE
+## 4322 46250 Logic TRUE
+## 4323 46250 Functions TRUE
+## 4324 46250 Subsetting Vectors <NA>
+## 4325 46250 Vectors TRUE
+## 4326 46250 Subsetting Vectors TRUE
+## 4327 46250 Basic Building Blocks TRUE
+## 4328 46250 Subsetting Vectors TRUE
+## 4329 46250 Subsetting Vectors TRUE
+## 4330 46250 Workspace and Files TRUE
+## 4331 46250 Workspace and Files TRUE
+## 4332 46250 Logic TRUE
+## 4333 46250 Workspace and Files TRUE
+## 4334 46250 Subsetting Vectors TRUE
+## 4335 46250 Workspace and Files TRUE
+## 4336 46250 Subsetting Vectors TRUE
+## 4337 46250 Basic Building Blocks TRUE
+## 4338 46250 Basic Building Blocks TRUE
+## 4339 46250 Workspace and Files TRUE
+## 4340 46250 Subsetting Vectors TRUE
+## 4341 46250 Logic TRUE
+## 4342 46250 Basic Building Blocks FALSE
+## 4343 46250 Subsetting Vectors TRUE
+## 4344 46250 Subsetting Vectors TRUE
+## 4345 46250 Basic Building Blocks FALSE
+## 4346 46250 Basic Building Blocks TRUE
+## 4347 46250 Subsetting Vectors TRUE
+## 4348 46250 Subsetting Vectors TRUE
+## 4349 46250 Dates and Times TRUE
+## 4350 46250 Vectors TRUE
+## 4351 46250 Vectors TRUE
+## 4352 46250 Basic Building Blocks TRUE
+## 4353 46250 Logic TRUE
+## 4354 46250 Workspace and Files TRUE
+## 4355 46250 Workspace and Files TRUE
+## 4356 46250 Basic Building Blocks TRUE
+## 4357 46250 Basic Building Blocks TRUE
+## 4358 46250 Functions TRUE
+## 4359 46250 Functions TRUE
+## 4360 46250 Subsetting Vectors TRUE
+## 4361 46250 Dates and Times TRUE
+## 4362 46250 Basic Building Blocks TRUE
+## 4363 46250 Subsetting Vectors TRUE
+## 4364 46250 Functions TRUE
+## 4365 46250 Functions TRUE
+## 4366 46250 Vectors TRUE
+## 4367 46250 Vectors <NA>
+## 4368 46250 Functions TRUE
+## 4369 46250 Workspace and Files TRUE
+## 4370 46250 Workspace and Files TRUE
+## 4371 46250 Workspace and Files FALSE
+## 4372 46250 Workspace and Files FALSE
+## 4373 46250 Functions FALSE
+## 4374 46250 Basic Building Blocks TRUE
+## 4375 46250 Vectors FALSE
+## 4376 46250 Functions TRUE
+## 4377 46250 Dates and Times TRUE
+## 4378 46250 Dates and Times TRUE
+## 4379 46250 Vectors TRUE
+## 4380 46250 Basic Building Blocks <NA>
+## 4381 46250 Logic TRUE
+## 4382 46250 Logic TRUE
+## 4383 46250 Workspace and Files TRUE
+## 4384 46250 Workspace and Files <NA>
+## 4385 46250 Vectors FALSE
+## 4386 46250 Workspace and Files TRUE
+## 4387 46250 Workspace and Files TRUE
+## 4388 46250 Subsetting Vectors TRUE
+## 4389 46250 Vectors TRUE
+## 4390 46250 Logic FALSE
+## 4391 46250 Logic FALSE
+## 4392 46250 Vectors TRUE
+## 4393 46250 Logic TRUE
+## 4394 46250 Vectors TRUE
+## 4395 46250 Vectors TRUE
+## 4396 46250 Logic TRUE
+## 4397 46250 Vectors TRUE
+## 4398 46250 Vectors TRUE
+## 4399 46250 Vectors TRUE
+## 4400 46250 Workspace and Files FALSE
+## 4401 46250 Logic FALSE
+## 4402 46250 Functions TRUE
+## 4403 46250 Functions TRUE
+## 4404 46250 Vectors TRUE
+## 4405 46250 Dates and Times TRUE
+## 4406 46250 Basic Building Blocks TRUE
+## 4407 46250 Basic Building Blocks TRUE
+## 4408 46250 Basic Building Blocks TRUE
+## 4409 46250 Basic Building Blocks TRUE
+## 4410 46250 Logic TRUE
+## 4411 46250 Logic TRUE
+## 4412 46250 Logic TRUE
+## 4413 46250 Vectors TRUE
+## 4414 46250 Functions FALSE
+## 4415 46250 Functions TRUE
+## 4416 46250 Missing Values TRUE
+## 4417 46250 Missing Values TRUE
+## 4418 46250 Logic TRUE
+## 4419 46250 Logic TRUE
+## 4420 46250 Functions TRUE
+## 4421 46250 Subsetting Vectors TRUE
+## 4422 46250 Missing Values TRUE
+## 4423 46250 Logic FALSE
+## 4424 46250 Logic TRUE
+## 4425 46250 Logic TRUE
+## 4426 46250 Logic TRUE
+## 4427 46250 Logic FALSE
+## 4428 46250 Vectors FALSE
+## 4429 46250 Logic TRUE
+## 4430 46250 Logic TRUE
+## 4431 46250 Workspace and Files TRUE
+## 4432 46250 Workspace and Files TRUE
+## 4433 46250 Subsetting Vectors FALSE
+## 4434 46250 Subsetting Vectors FALSE
+## 4435 46250 Subsetting Vectors FALSE
+## 4436 46250 Vectors TRUE
+## 4437 46250 Subsetting Vectors TRUE
+## 4438 46250 Subsetting Vectors FALSE
+## 4439 46250 Subsetting Vectors TRUE
+## 4440 46250 Workspace and Files TRUE
+## 4441 46250 Subsetting Vectors TRUE
+## 4442 46250 Subsetting Vectors TRUE
+## 4443 46250 Vectors TRUE
+## 4444 46250 Dates and Times FALSE
+## 4445 46250 Subsetting Vectors FALSE
+## 4446 46250 Logic TRUE
+## 4447 46250 Logic TRUE
+## 4448 46250 Logic TRUE
+## 4449 46250 Workspace and Files TRUE
+## 4450 46250 Functions TRUE
+## 4451 46250 Functions TRUE
+## 4452 46250 Functions TRUE
+## 4453 46250 Functions TRUE
+## 4454 46250 Functions TRUE
+## 4455 46250 Missing Values TRUE
+## 4456 46250 Dates and Times TRUE
+## 4457 46250 Subsetting Vectors FALSE
+## 4458 46250 Vectors TRUE
+## 4459 46250 Logic FALSE
+## 4460 46250 Subsetting Vectors TRUE
+## 4461 46250 Subsetting Vectors FALSE
+## 4462 46250 Vectors TRUE
+## 4463 46250 Functions FALSE
+## 4464 46250 Missing Values FALSE
+## 4465 46250 Missing Values TRUE
+## 4466 46250 Logic TRUE
+## 4467 46250 Vectors TRUE
+## 4468 46250 Logic TRUE
+## 4469 46250 Subsetting Vectors TRUE
+## 4470 46250 Vectors TRUE
+## 4471 46250 Vectors TRUE
+## 4472 46250 Vectors TRUE
+## 4473 46250 Vectors TRUE
+## 4474 46250 Functions TRUE
+## 4475 46250 Functions FALSE
+## 4476 46250 Subsetting Vectors TRUE
+## 4477 46250 Basic Building Blocks TRUE
+## 4478 46250 Logic TRUE
+## 4479 46250 Logic TRUE
+## 4480 46250 Vectors TRUE
+## 4481 46250 Vectors TRUE
+## 4482 46250 Vectors TRUE
+## 4483 46250 Subsetting Vectors TRUE
+## 4484 46250 Logic TRUE
+## 4485 46250 Vectors FALSE
+## 4486 46250 Vectors TRUE
+## 4487 46250 Vectors FALSE
+## 4488 46250 Vectors TRUE
+## 4489 46250 Vectors TRUE
+## 4490 46250 Vectors TRUE
+## 4491 46250 Workspace and Files TRUE
+## 4492 46250 Vectors <NA>
+## 4493 46250 Missing Values TRUE
+## 4494 46250 Missing Values TRUE
+## 4495 46250 Dates and Times TRUE
+## 4496 46250 Basic Building Blocks TRUE
+## 4497 46250 Vectors FALSE
+## 4498 46250 Vectors TRUE
+## 4499 46250 Vectors TRUE
+## 4500 46250 Basic Building Blocks TRUE
+## 4501 46250 Workspace and Files TRUE
+## 4502 46250 Functions TRUE
+## 4503 46250 Workspace and Files FALSE
+## 4504 46250 Dates and Times TRUE
+## 4505 46250 Missing Values TRUE
+## 4506 46250 Missing Values TRUE
+## 4507 46250 Missing Values TRUE
+## 4508 46250 Subsetting Vectors TRUE
+## 4509 46250 Missing Values <NA>
+## 4510 46250 Logic TRUE
+## 4511 46250 Functions TRUE
+## 4512 46250 Functions TRUE
+## 4513 46250 Functions TRUE
+## 4514 46250 Functions TRUE
+## 4515 46250 Workspace and Files TRUE
+## 4516 46250 Dates and Times TRUE
+## 4517 46250 Vectors TRUE
+## 4518 46250 Vectors TRUE
+## 4519 46250 Vectors TRUE
+## 4520 46250 Basic Building Blocks TRUE
+## 4521 46250 Basic Building Blocks TRUE
+## 4522 46250 Subsetting Vectors FALSE
+## 4523 46250 Subsetting Vectors TRUE
+## 4524 46250 Dates and Times TRUE
+## 4525 46250 Logic TRUE
+## 4526 46250 Logic TRUE
+## 4527 46250 Logic TRUE
+## 4528 46250 Functions TRUE
+## 4529 46250 Vectors TRUE
+## 4530 46250 Functions TRUE
+## 4531 46250 Vectors TRUE
+## 4532 46250 Basic Building Blocks TRUE
+## 4533 46250 Dates and Times TRUE
+## 4534 46250 Dates and Times TRUE
+## 4535 46250 Functions TRUE
+## 4536 46250 Logic TRUE
+## 4537 46250 Functions TRUE
+## 4538 46250 Dates and Times TRUE
+## 4539 46250 Dates and Times TRUE
+## 4540 46250 Dates and Times TRUE
+## 4541 46250 Logic <NA>
+## 4542 46250 Dates and Times TRUE
+## 4543 46250 Vectors TRUE
+## 4544 46250 Functions TRUE
+## 4545 46250 Dates and Times TRUE
+## 4546 46250 Missing Values TRUE
+## 4547 46250 Subsetting Vectors TRUE
+## 4548 46250 Dates and Times TRUE
+## 4549 46250 Dates and Times FALSE
+## 4550 46250 Dates and Times TRUE
+## 4551 46250 Dates and Times TRUE
+## 4552 46250 Basic Building Blocks TRUE
+## 4553 46250 Basic Building Blocks TRUE
+## 4554 46250 Dates and Times FALSE
+## 4555 46250 Dates and Times TRUE
+## 4556 46250 Basic Building Blocks TRUE
+## 4557 46250 Dates and Times FALSE
+## 4558 46250 Dates and Times TRUE
+## 4559 46250 Functions TRUE
+## 4560 46250 Dates and Times TRUE
+## 4561 46250 Dates and Times TRUE
+## 4562 46250 Basic Building Blocks FALSE
+## 4563 46250 Functions <NA>
+## 4564 46250 Dates and Times TRUE
+## 4565 46250 Dates and Times TRUE
+## 4566 46250 Dates and Times TRUE
+## 4567 46250 Dates and Times <NA>
+## 4568 92108 Logic TRUE
+## 4569 92108 Basic Building Blocks TRUE
+## 4570 92108 Logic TRUE
+## 4571 92108 Logic TRUE
+## 4572 92108 Basic Building Blocks TRUE
+## 4573 92108 Logic TRUE
+## 4574 92108 Logic TRUE
+## 4575 92108 Logic TRUE
+## 4576 92108 Workspace and Files TRUE
+## 4577 92108 Logic <NA>
+## 4578 92108 Workspace and Files TRUE
+## 4579 92108 Workspace and Files FALSE
+## 4580 92108 Workspace and Files TRUE
+## 4581 92108 Workspace and Files TRUE
+## 4582 92108 Vectors TRUE
+## 4583 92108 Basic Building Blocks TRUE
+## 4584 92108 Logic TRUE
+## 4585 92108 Logic TRUE
+## 4586 92108 Workspace and Files TRUE
+## 4587 92108 Vectors <NA>
+## 4588 92108 Logic TRUE
+## 4589 92108 Logic TRUE
+## 4590 92108 Basic Building Blocks TRUE
+## 4591 92108 Dates and Times TRUE
+## 4592 92108 Dates and Times <NA>
+## 4593 92108 Workspace and Files TRUE
+## 4594 92108 Vectors TRUE
+## 4595 92108 Vectors TRUE
+## 4596 92108 Workspace and Files TRUE
+## 4597 92108 Basic Building Blocks TRUE
+## 4598 92108 Basic Building Blocks TRUE
+## 4599 92108 Vectors TRUE
+## 4600 92108 Subsetting Vectors TRUE
+## 4601 92108 Missing Values TRUE
+## 4602 92108 Basic Building Blocks TRUE
+## 4603 92108 Basic Building Blocks TRUE
+## 4604 92108 Basic Building Blocks TRUE
+## 4605 92108 Dates and Times TRUE
+## 4606 92108 Dates and Times FALSE
+## 4607 92108 Dates and Times TRUE
+## 4608 92108 Vectors FALSE
+## 4609 92108 Basic Building Blocks TRUE
+## 4610 92108 Dates and Times TRUE
+## 4611 92108 Dates and Times TRUE
+## 4612 92108 Logic TRUE
+## 4613 92108 Dates and Times TRUE
+## 4614 92108 Subsetting Vectors TRUE
+## 4615 92108 Subsetting Vectors TRUE
+## 4616 92108 Missing Values TRUE
+## 4617 92108 Workspace and Files FALSE
+## 4618 92108 Basic Building Blocks TRUE
+## 4619 92108 Dates and Times TRUE
+## 4620 92108 Basic Building Blocks TRUE
+## 4621 92108 Dates and Times TRUE
+## 4622 92108 Workspace and Files TRUE
+## 4623 92108 Basic Building Blocks TRUE
+## 4624 92108 Workspace and Files TRUE
+## 4625 92108 Dates and Times TRUE
+## 4626 92108 Logic TRUE
+## 4627 92108 Dates and Times TRUE
+## 4628 92108 Dates and Times FALSE
+## 4629 92108 Dates and Times TRUE
+## 4630 92108 Basic Building Blocks TRUE
+## 4631 92108 Missing Values FALSE
+## 4632 92108 Workspace and Files TRUE
+## 4633 92108 Dates and Times TRUE
+## 4634 92108 Vectors TRUE
+## 4635 92108 Basic Building Blocks TRUE
+## 4636 92108 Basic Building Blocks <NA>
+## 4637 92108 Logic TRUE
+## 4638 92108 Logic TRUE
+## 4639 92108 Logic TRUE
+## 4640 92108 Logic TRUE
+## 4641 92108 Dates and Times TRUE
+## 4642 92108 Basic Building Blocks TRUE
+## 4643 92108 Subsetting Vectors FALSE
+## 4644 92108 Subsetting Vectors FALSE
+## 4645 92108 Subsetting Vectors TRUE
+## 4646 92108 Subsetting Vectors TRUE
+## 4647 92108 Subsetting Vectors TRUE
+## 4648 92108 Basic Building Blocks TRUE
+## 4649 92108 Dates and Times TRUE
+## 4650 92108 Dates and Times TRUE
+## 4651 92108 Logic TRUE
+## 4652 92108 Dates and Times TRUE
+## 4653 92108 Subsetting Vectors TRUE
+## 4654 92108 Workspace and Files TRUE
+## 4655 92108 Workspace and Files TRUE
+## 4656 92108 Basic Building Blocks TRUE
+## 4657 92108 Dates and Times TRUE
+## 4658 92108 Logic FALSE
+## 4659 92108 Basic Building Blocks TRUE
+## 4660 92108 Basic Building Blocks TRUE
+## 4661 92108 Basic Building Blocks TRUE
+## 4662 92108 Vectors TRUE
+## 4663 92108 Workspace and Files TRUE
+## 4664 92108 Logic TRUE
+## 4665 92108 Subsetting Vectors TRUE
+## 4666 92108 Workspace and Files TRUE
+## 4667 92108 Vectors TRUE
+## 4668 92108 Dates and Times TRUE
+## 4669 92108 Logic TRUE
+## 4670 92108 Logic TRUE
+## 4671 92108 Dates and Times TRUE
+## 4672 92108 Subsetting Vectors FALSE
+## 4673 92108 Subsetting Vectors TRUE
+## 4674 92108 Missing Values TRUE
+## 4675 92108 Missing Values TRUE
+## 4676 92108 Workspace and Files TRUE
+## 4677 92108 Workspace and Files TRUE
+## 4678 92108 Workspace and Files FALSE
+## 4679 92108 Vectors TRUE
+## 4680 92108 Missing Values TRUE
+## 4681 92108 Missing Values TRUE
+## 4682 92108 Vectors FALSE
+## 4683 92108 Vectors TRUE
+## 4684 92108 Logic FALSE
+## 4685 92108 Logic TRUE
+## 4686 92108 Dates and Times TRUE
+## 4687 92108 Dates and Times FALSE
+## 4688 92108 Dates and Times TRUE
+## 4689 92108 Dates and Times TRUE
+## 4690 92108 Vectors TRUE
+## 4691 92108 Dates and Times TRUE
+## 4692 92108 Subsetting Vectors <NA>
+## 4693 92108 Subsetting Vectors TRUE
+## 4694 92108 Subsetting Vectors TRUE
+## 4695 92108 Missing Values TRUE
+## 4696 92108 Missing Values TRUE
+## 4697 92108 Workspace and Files TRUE
+## 4698 92108 Dates and Times TRUE
+## 4699 92108 Dates and Times TRUE
+## 4700 92108 Dates and Times TRUE
+## 4701 92108 Dates and Times TRUE
+## 4702 92108 Logic TRUE
+## 4703 92108 Logic TRUE
+## 4704 92108 Subsetting Vectors TRUE
+## 4705 92108 Vectors TRUE
+## 4706 92108 Missing Values FALSE
+## 4707 92108 Subsetting Vectors TRUE
+## 4708 92108 Dates and Times TRUE
+## 4709 92108 Basic Building Blocks TRUE
+## 4710 92108 Logic TRUE
+## 4711 92108 Logic TRUE
+## 4712 92108 Logic TRUE
+## 4713 92108 Logic FALSE
+## 4714 92108 Logic TRUE
+## 4715 92108 Logic TRUE
+## 4716 92108 Logic TRUE
+## 4717 92108 Subsetting Vectors TRUE
+## 4718 92108 Missing Values TRUE
+## 4719 92108 Logic TRUE
+## 4720 92108 Vectors TRUE
+## 4721 92108 Subsetting Vectors TRUE
+## 4722 92108 Vectors TRUE
+## 4723 92108 Logic TRUE
+## 4724 92108 Subsetting Vectors TRUE
+## 4725 92108 Logic TRUE
+## 4726 92108 Logic TRUE
+## 4727 92108 Logic FALSE
+## 4728 92108 Logic TRUE
+## 4729 92108 Vectors FALSE
+## 4730 92108 Missing Values <NA>
+## 4731 92108 Vectors TRUE
+## 4732 92108 Workspace and Files <NA>
+## 4733 92108 Missing Values TRUE
+## 4734 92108 Workspace and Files TRUE
+## 4735 92108 Workspace and Files FALSE
+## 4736 92108 Workspace and Files TRUE
+## 4737 92108 Vectors TRUE
+## 4738 92108 Workspace and Files TRUE
+## 4739 92108 Workspace and Files TRUE
+## 4740 92108 Subsetting Vectors TRUE
+## 4741 92108 Workspace and Files TRUE
+## 4742 92108 Subsetting Vectors TRUE
+## 4743 92108 Subsetting Vectors TRUE
+## 4744 92108 Vectors TRUE
+## 4745 92108 Subsetting Vectors TRUE
+## 4746 92108 Vectors TRUE
+## 4747 92108 Vectors TRUE
+## 4748 92108 Vectors TRUE
+## 4749 92108 Missing Values TRUE
+## 4750 92108 Missing Values TRUE
+## 4751 92108 Missing Values TRUE
+## 4752 92108 Logic TRUE
+## 4753 92108 Workspace and Files TRUE
+## 4754 92108 Subsetting Vectors TRUE
+## 4755 92108 Subsetting Vectors TRUE
+## 4756 92108 Missing Values FALSE
+## 4757 92108 Subsetting Vectors TRUE
+## 4758 92108 Subsetting Vectors TRUE
+## 4759 92108 Subsetting Vectors TRUE
+## 4760 92108 Missing Values TRUE
+## 4761 92108 Subsetting Vectors TRUE
+## 4762 12264 Manipulating Data with dplyr FALSE
+## 4763 12264 Matrices and Data Frames FALSE
+## 4764 12264 Manipulating Data with dplyr TRUE
+## 4765 12264 Manipulating Data with dplyr TRUE
+## 4766 12264 Functions TRUE
+## 4767 12264 Tidying Data with tidyr TRUE
+## 4768 12264 Manipulating Data with dplyr FALSE
+## 4769 12264 Manipulating Data with dplyr TRUE
+## 4770 12264 Manipulating Data with dplyr TRUE
+## 4771 12264 Matrices and Data Frames TRUE
+## 4772 12264 Manipulating Data with dplyr TRUE
+## 4773 12264 Manipulating Data with dplyr TRUE
+## 4774 12264 Manipulating Data with dplyr FALSE
+## 4775 12264 Functions FALSE
+## 4776 12264 Tidying Data with tidyr FALSE
+## 4777 12264 Tidying Data with tidyr FALSE
+## 4778 12264 Tidying Data with tidyr TRUE
+## 4779 12264 Tidying Data with tidyr TRUE
+## 4780 12264 Manipulating Data with dplyr TRUE
+## 4781 12264 Tidying Data with tidyr FALSE
+## 4782 12264 Manipulating Data with dplyr TRUE
+## 4783 12264 Functions FALSE
+## 4784 12264 Manipulating Data with dplyr TRUE
+## 4785 12264 Manipulating Data with dplyr TRUE
+## 4786 12264 Manipulating Data with dplyr FALSE
+## 4787 12264 Tidying Data with tidyr FALSE
+## 4788 12264 Manipulating Data with dplyr TRUE
+## 4789 12264 Functions TRUE
+## 4790 12264 Functions FALSE
+## 4791 12264 Matrices and Data Frames TRUE
+## 4792 12264 Matrices and Data Frames TRUE
+## 4793 12264 Tidying Data with tidyr TRUE
+## 4794 12264 Manipulating Data with dplyr TRUE
+## 4795 12264 Manipulating Data with dplyr TRUE
+## 4796 12264 Matrices and Data Frames FALSE
+## 4797 12264 Tidying Data with tidyr FALSE
+## 4798 12264 Manipulating Data with dplyr TRUE
+## 4799 12264 Functions TRUE
+## 4800 12264 Functions TRUE
+## 4801 12264 Tidying Data with tidyr TRUE
+## 4802 12264 Manipulating Data with dplyr TRUE
+## 4803 12264 Tidying Data with tidyr TRUE
+## 4804 12264 Manipulating Data with dplyr FALSE
+## 4805 12264 Matrices and Data Frames <NA>
+## 4806 12264 Manipulating Data with dplyr TRUE
+## 4807 12264 Manipulating Data with dplyr TRUE
+## 4808 12264 Manipulating Data with dplyr TRUE
+## 4809 12264 Manipulating Data with dplyr TRUE
+## 4810 12264 Tidying Data with tidyr FALSE
+## 4811 12264 Manipulating Data with dplyr TRUE
+## 4812 12264 Manipulating Data with dplyr TRUE
+## 4813 12264 Functions TRUE
+## 4814 12264 Manipulating Data with dplyr TRUE
+## 4815 12264 Manipulating Data with dplyr TRUE
+## 4816 12264 Matrices and Data Frames TRUE
+## 4817 12264 Matrices and Data Frames TRUE
+## 4818 12264 Functions TRUE
+## 4819 12264 Manipulating Data with dplyr FALSE
+## 4820 12264 Tidying Data with tidyr FALSE
+## 4821 12264 Tidying Data with tidyr FALSE
+## 4822 12264 Tidying Data with tidyr TRUE
+## 4823 12264 Functions TRUE
+## 4824 12264 Manipulating Data with dplyr TRUE
+## 4825 12264 Tidying Data with tidyr TRUE
+## 4826 12264 Manipulating Data with dplyr FALSE
+## 4827 12264 Functions TRUE
+## 4828 12264 Manipulating Data with dplyr TRUE
+## 4829 12264 Manipulating Data with dplyr TRUE
+## 4830 12264 Manipulating Data with dplyr TRUE
+## 4831 12264 Manipulating Data with dplyr FALSE
+## 4832 12264 Functions TRUE
+## 4833 12264 Manipulating Data with dplyr TRUE
+## 4834 12264 Tidying Data with tidyr FALSE
+## 4835 12264 Manipulating Data with dplyr TRUE
+## 4836 12264 Manipulating Data with dplyr TRUE
+## 4837 12264 Tidying Data with tidyr TRUE
+## 4838 12264 Tidying Data with tidyr TRUE
+## 4839 12264 Tidying Data with tidyr TRUE
+## 4840 12264 Manipulating Data with dplyr TRUE
+## 4841 12264 Tidying Data with tidyr TRUE
+## 4842 12264 Matrices and Data Frames TRUE
+## 4843 12264 Tidying Data with tidyr TRUE
+## 4844 12264 Matrices and Data Frames TRUE
+## 4845 12264 Functions TRUE
+## 4846 12264 Functions FALSE
+## 4847 12264 Matrices and Data Frames TRUE
+## 4848 12264 Functions TRUE
+## 4849 12264 Tidying Data with tidyr FALSE
+## 4850 12264 Tidying Data with tidyr FALSE
+## 4851 12264 Matrices and Data Frames TRUE
+## 4852 12264 Matrices and Data Frames TRUE
+## 4853 12264 Matrices and Data Frames TRUE
+## 4854 12264 Tidying Data with tidyr TRUE
+## 4855 12264 Matrices and Data Frames TRUE
+## 4856 12264 Matrices and Data Frames TRUE
+## 4857 12264 Tidying Data with tidyr TRUE
+## 4858 12264 Tidying Data with tidyr TRUE
+## 4859 12264 Manipulating Data with dplyr <NA>
+## 4860 12264 Tidying Data with tidyr TRUE
+## 4861 12264 Manipulating Data with dplyr TRUE
+## 4862 12264 Tidying Data with tidyr FALSE
+## 4863 12264 Manipulating Data with dplyr TRUE
+## 4864 12264 Functions TRUE
+## 4865 12264 Functions TRUE
+## 4866 12264 Functions TRUE
+## 4867 12264 Functions TRUE
+## 4868 12264 Matrices and Data Frames FALSE
+## 4869 12264 Matrices and Data Frames TRUE
+## 4870 12264 Matrices and Data Frames TRUE
+## 4871 12264 Functions TRUE
+## 4872 12264 Tidying Data with tidyr TRUE
+## 4873 12264 Tidying Data with tidyr FALSE
+## 4874 12264 Manipulating Data with dplyr FALSE
+## 4875 12264 Matrices and Data Frames TRUE
+## 4876 12264 Tidying Data with tidyr FALSE
+## 4877 12264 Functions TRUE
+## 4878 12264 Functions TRUE
+## 4879 12264 Functions TRUE
+## 4880 12264 Manipulating Data with dplyr FALSE
+## 4881 12264 Manipulating Data with dplyr TRUE
+## 4882 12264 Tidying Data with tidyr <NA>
+## 4883 12264 Matrices and Data Frames FALSE
+## 4884 12264 Matrices and Data Frames TRUE
+## 4885 12264 Functions <NA>
+## 4886 12264 Tidying Data with tidyr TRUE
+## 4887 12264 Functions TRUE
+## 4888 12264 Manipulating Data with dplyr FALSE
+## 4889 12264 Functions TRUE
+## 4890 12264 Functions FALSE
+## 4891 12264 Tidying Data with tidyr TRUE
+## 4892 12264 Tidying Data with tidyr TRUE
+## 4893 12264 Matrices and Data Frames TRUE
+## 4894 12264 Manipulating Data with dplyr TRUE
+## 4895 12264 Tidying Data with tidyr TRUE
+## 4896 12264 Functions TRUE
+## 4897 12264 Functions TRUE
+## 4898 12264 Tidying Data with tidyr FALSE
+## 4899 12264 Tidying Data with tidyr TRUE
+## 4900 12264 Manipulating Data with dplyr TRUE
+## 4901 12264 Matrices and Data Frames TRUE
+## 4902 12264 Matrices and Data Frames TRUE
+## 4903 12264 Matrices and Data Frames TRUE
+## 4904 12264 Manipulating Data with dplyr TRUE
+## 4905 12264 Manipulating Data with dplyr FALSE
+## 4906 12264 Tidying Data with tidyr TRUE
+## 4907 12264 Functions FALSE
+## 4908 12264 Matrices and Data Frames FALSE
+## 4909 12264 Tidying Data with tidyr FALSE
+## 4910 12264 Matrices and Data Frames TRUE
+## 4911 12264 Tidying Data with tidyr FALSE
+## 4912 12264 Functions FALSE
+## 4913 12264 Tidying Data with tidyr TRUE
+## 4914 12264 Manipulating Data with dplyr TRUE
+## 4915 12264 Functions TRUE
+## 4916 12264 Manipulating Data with dplyr TRUE
+## 4917 12264 Manipulating Data with dplyr TRUE
+## 4918 12264 Functions FALSE
+## 4919 12264 Functions TRUE
+## 4920 12264 Tidying Data with tidyr TRUE
+## 4921 12264 Matrices and Data Frames TRUE
+## 4922 12264 Functions FALSE
+## 4923 12264 Tidying Data with tidyr FALSE
+## 4924 12264 Functions FALSE
+## 4925 12264 Functions TRUE
+## 4926 12264 Tidying Data with tidyr TRUE
+## 4927 12264 Tidying Data with tidyr TRUE
+## 4928 12264 Functions FALSE
+## 4929 12264 Functions TRUE
+## 4930 12264 Functions FALSE
+## 4931 12264 Functions TRUE
+## 4932 12264 Functions FALSE
+## 4933 12264 Functions FALSE
+## 4934 12264 Tidying Data with tidyr TRUE
+## 4935 12264 Tidying Data with tidyr TRUE
+## 4936 12264 Tidying Data with tidyr TRUE
+## 4937 12264 Tidying Data with tidyr TRUE
+## 4938 77484 Matrices and Data Frames TRUE
+## 4939 77484 Manipulating Data with dplyr FALSE
+## 4940 77484 Tidying Data with tidyr TRUE
+## 4941 77484 Manipulating Data with dplyr TRUE
+## 4942 77484 Tidying Data with tidyr TRUE
+## 4943 77484 Manipulating Data with dplyr TRUE
+## 4944 77484 Tidying Data with tidyr FALSE
+## 4945 77484 Tidying Data with tidyr FALSE
+## 4946 77484 Matrices and Data Frames TRUE
+## 4947 77484 Matrices and Data Frames TRUE
+## 4948 77484 Manipulating Data with dplyr TRUE
+## 4949 77484 Manipulating Data with dplyr <NA>
+## 4950 77484 Manipulating Data with dplyr TRUE
+## 4951 77484 Manipulating Data with dplyr TRUE
+## 4952 77484 Matrices and Data Frames TRUE
+## 4953 77484 Manipulating Data with dplyr TRUE
+## 4954 77484 Grouping and Chaining with dplyr TRUE
+## 4955 77484 Tidying Data with tidyr FALSE
+## 4956 77484 Manipulating Data with dplyr TRUE
+## 4957 77484 Manipulating Data with dplyr TRUE
+## 4958 77484 Matrices and Data Frames TRUE
+## 4959 77484 Grouping and Chaining with dplyr TRUE
+## 4960 77484 Matrices and Data Frames TRUE
+## 4961 77484 Matrices and Data Frames TRUE
+## 4962 77484 Grouping and Chaining with dplyr TRUE
+## 4963 77484 Matrices and Data Frames TRUE
+## 4964 77484 Tidying Data with tidyr TRUE
+## 4965 77484 Grouping and Chaining with dplyr TRUE
+## 4966 77484 Grouping and Chaining with dplyr TRUE
+## 4967 77484 Grouping and Chaining with dplyr TRUE
+## 4968 77484 Grouping and Chaining with dplyr <NA>
+## 4969 77484 Grouping and Chaining with dplyr TRUE
+## 4970 77484 Matrices and Data Frames TRUE
+## 4971 77484 Tidying Data with tidyr TRUE
+## 4972 77484 Tidying Data with tidyr TRUE
+## 4973 77484 Matrices and Data Frames TRUE
+## 4974 77484 Manipulating Data with dplyr TRUE
+## 4975 77484 Manipulating Data with dplyr TRUE
+## 4976 77484 Manipulating Data with dplyr TRUE
+## 4977 77484 Tidying Data with tidyr TRUE
+## 4978 77484 Tidying Data with tidyr TRUE
+## 4979 77484 Tidying Data with tidyr TRUE
+## 4980 77484 Grouping and Chaining with dplyr TRUE
+## 4981 77484 Grouping and Chaining with dplyr TRUE
+## 4982 77484 Grouping and Chaining with dplyr TRUE
+## 4983 77484 Grouping and Chaining with dplyr TRUE
+## 4984 77484 Tidying Data with tidyr TRUE
+## 4985 77484 Tidying Data with tidyr TRUE
+## 4986 77484 Manipulating Data with dplyr TRUE
+## 4987 77484 Tidying Data with tidyr TRUE
+## 4988 77484 Tidying Data with tidyr TRUE
+## 4989 77484 Tidying Data with tidyr TRUE
+## 4990 77484 Tidying Data with tidyr FALSE
+## 4991 77484 Tidying Data with tidyr FALSE
+## 4992 77484 Tidying Data with tidyr FALSE
+## 4993 77484 Tidying Data with tidyr FALSE
+## 4994 77484 Tidying Data with tidyr FALSE
+## 4995 77484 Tidying Data with tidyr FALSE
+## 4996 77484 Tidying Data with tidyr TRUE
+## 4997 77484 Tidying Data with tidyr TRUE
+## 4998 77484 Tidying Data with tidyr TRUE
+## 4999 77484 Tidying Data with tidyr FALSE
+## 5000 77484 Manipulating Data with dplyr FALSE
+## 5001 77484 Manipulating Data with dplyr TRUE
+## 5002 77484 Tidying Data with tidyr TRUE
+## 5003 77484 Tidying Data with tidyr TRUE
+## 5004 77484 Tidying Data with tidyr TRUE
+## 5005 77484 Tidying Data with tidyr TRUE
+## 5006 77484 Tidying Data with tidyr FALSE
+## 5007 77484 Manipulating Data with dplyr TRUE
+## 5008 77484 Manipulating Data with dplyr TRUE
+## 5009 77484 Manipulating Data with dplyr TRUE
+## 5010 77484 Manipulating Data with dplyr TRUE
+## 5011 77484 Manipulating Data with dplyr TRUE
+## 5012 77484 Manipulating Data with dplyr FALSE
+## 5013 77484 Manipulating Data with dplyr TRUE
+## 5014 77484 Tidying Data with tidyr TRUE
+## 5015 77484 Tidying Data with tidyr TRUE
+## 5016 77484 Tidying Data with tidyr TRUE
+## 5017 77484 Tidying Data with tidyr FALSE
+## 5018 77484 Tidying Data with tidyr FALSE
+## 5019 77484 Tidying Data with tidyr FALSE
+## 5020 77484 Tidying Data with tidyr TRUE
+## 5021 77484 Tidying Data with tidyr TRUE
+## 5022 77484 Grouping and Chaining with dplyr TRUE
+## 5023 77484 Grouping and Chaining with dplyr TRUE
+## 5024 77484 Grouping and Chaining with dplyr FALSE
+## 5025 77484 Tidying Data with tidyr <NA>
+## 5026 77484 Matrices and Data Frames TRUE
+## 5027 77484 Matrices and Data Frames TRUE
+## 5028 77484 Matrices and Data Frames TRUE
+## 5029 77484 Matrices and Data Frames TRUE
+## 5030 77484 Matrices and Data Frames FALSE
+## 5031 77484 Matrices and Data Frames FALSE
+## 5032 77484 Matrices and Data Frames TRUE
+## 5033 77484 Matrices and Data Frames TRUE
+## 5034 77484 Matrices and Data Frames TRUE
+## 5035 77484 Looking at Data FALSE
+## 5036 77484 Looking at Data FALSE
+## 5037 77484 Looking at Data TRUE
+## 5038 77484 Matrices and Data Frames TRUE
+## 5039 77484 Matrices and Data Frames TRUE
+## 5040 77484 Matrices and Data Frames FALSE
+## 5041 77484 Matrices and Data Frames TRUE
+## 5042 77484 Matrices and Data Frames TRUE
+## 5043 77484 Matrices and Data Frames TRUE
+## 5044 77484 Matrices and Data Frames TRUE
+## 5045 77484 Matrices and Data Frames <NA>
+## 5046 77484 Tidying Data with tidyr FALSE
+## 5047 77484 Tidying Data with tidyr FALSE
+## 5048 77484 Tidying Data with tidyr TRUE
+## 5049 77484 Tidying Data with tidyr TRUE
+## 5050 77484 Tidying Data with tidyr TRUE
+## 5051 77484 Tidying Data with tidyr FALSE
+## 5052 77484 Tidying Data with tidyr TRUE
+## 5053 77484 Tidying Data with tidyr TRUE
+## 5054 77484 Tidying Data with tidyr TRUE
+## 5055 77484 Tidying Data with tidyr TRUE
+## 5056 77484 Tidying Data with tidyr FALSE
+## 5057 77484 Grouping and Chaining with dplyr TRUE
+## 5058 77484 Grouping and Chaining with dplyr TRUE
+## 5059 77484 Grouping and Chaining with dplyr TRUE
+## 5060 77484 Grouping and Chaining with dplyr TRUE
+## 5061 77484 Grouping and Chaining with dplyr TRUE
+## 5062 77484 Plotting_Systems TRUE
+## 5063 77484 Plotting_Systems TRUE
+## 5064 77484 Plotting_Systems TRUE
+## 5065 77484 Grouping and Chaining with dplyr TRUE
+## 5066 77484 Grouping and Chaining with dplyr TRUE
+## 5067 77484 Grouping and Chaining with dplyr TRUE
+## 5068 77484 Grouping and Chaining with dplyr TRUE
+## 5069 77484 Grouping and Chaining with dplyr TRUE
+## 5070 77484 Grouping and Chaining with dplyr TRUE
+## 5071 77484 Manipulating Data with dplyr TRUE
+## 5072 77484 Manipulating Data with dplyr TRUE
+## 5073 77484 Manipulating Data with dplyr TRUE
+## 5074 77484 Manipulating Data with dplyr TRUE
+## 5075 77484 Plotting_Systems TRUE
+## 5076 77484 Plotting_Systems TRUE
+## 5077 77484 Plotting_Systems FALSE
+## 5078 77484 Plotting_Systems TRUE
+## 5079 77484 Looking at Data TRUE
+## 5080 77484 Grouping and Chaining with dplyr TRUE
+## 5081 77484 Grouping and Chaining with dplyr TRUE
+## 5082 77484 Grouping and Chaining with dplyr TRUE
+## 5083 77484 Plotting_Systems FALSE
+## 5084 77484 Plotting_Systems TRUE
+## 5085 77484 Plotting_Systems TRUE
+## 5086 77484 Plotting_Systems TRUE
+## 5087 77484 Plotting_Systems TRUE
+## 5088 77484 Plotting_Systems TRUE
+## 5089 77484 Manipulating Data with dplyr TRUE
+## 5090 77484 Manipulating Data with dplyr TRUE
+## 5091 77484 Manipulating Data with dplyr TRUE
+## 5092 77484 Plotting_Systems TRUE
+## 5093 77484 Plotting_Systems TRUE
+## 5094 77484 Plotting_Systems TRUE
+## 5095 77484 Manipulating Data with dplyr TRUE
+## 5096 77484 Plotting_Systems TRUE
+## 5097 77484 Plotting_Systems TRUE
+## 5098 77484 Plotting_Systems TRUE
+## 5099 77484 Plotting_Systems TRUE
+## 5100 77484 Plotting_Systems FALSE
+## 5101 77484 Manipulating Data with dplyr TRUE
+## 5102 77484 Looking at Data TRUE
+## 5103 77484 Looking at Data TRUE
+## 5104 77484 Looking at Data TRUE
+## 5105 77484 Plotting_Systems TRUE
+## 5106 77484 Plotting_Systems <NA>
+## 5107 77484 Manipulating Data with dplyr FALSE
+## 5108 77484 Manipulating Data with dplyr FALSE
+## 5109 77484 Manipulating Data with dplyr TRUE
+## 5110 77484 Manipulating Data with dplyr TRUE
+## 5111 77484 Manipulating Data with dplyr TRUE
+## 5112 77484 Manipulating Data with dplyr TRUE
+## 5113 77484 Manipulating Data with dplyr TRUE
+## 5114 77484 Looking at Data TRUE
+## 5115 77484 Manipulating Data with dplyr TRUE
+## 5116 77484 Looking at Data TRUE
+## 5117 77484 Looking at Data TRUE
+## 5118 77484 Manipulating Data with dplyr TRUE
+## 5119 77484 Manipulating Data with dplyr TRUE
+## 5120 77484 Manipulating Data with dplyr TRUE
+## 5121 77484 Grouping and Chaining with dplyr FALSE
+## 5122 77484 Looking at Data TRUE
+## 5123 77484 Looking at Data TRUE
+## 5124 77484 Looking at Data TRUE
+## 5125 77484 Manipulating Data with dplyr TRUE
+## 5126 77484 Looking at Data TRUE
+## 5127 77484 Manipulating Data with dplyr FALSE
+## 5128 77484 Manipulating Data with dplyr TRUE
+## 5129 77484 Looking at Data TRUE
+## 5130 77484 Manipulating Data with dplyr TRUE
+## 5131 77484 Plotting_Systems TRUE
+## 5132 77484 Grouping and Chaining with dplyr TRUE
+## 5133 77484 Grouping and Chaining with dplyr TRUE
+## 5134 77484 Looking at Data TRUE
+## 5135 77484 Looking at Data <NA>
+## 5136 77484 Plotting_Systems TRUE
+## 5137 77484 Looking at Data TRUE
+## 5138 77484 Grouping and Chaining with dplyr TRUE
+## 5139 77484 Grouping and Chaining with dplyr TRUE
+## 5140 24042 Functions TRUE
+## 5141 24042 Functions TRUE
+## 5142 24042 Logic TRUE
+## 5143 24042 Logic TRUE
+## 5144 24042 Functions TRUE
+## 5145 24042 Functions TRUE
+## 5146 24042 Functions TRUE
+## 5147 24042 Subsetting Vectors FALSE
+## 5148 24042 Logic TRUE
+## 5149 24042 Functions TRUE
+## 5150 24042 Subsetting Vectors TRUE
+## 5151 24042 Subsetting Vectors TRUE
+## 5152 24042 Functions FALSE
+## 5153 24042 Subsetting Vectors TRUE
+## 5154 24042 Functions TRUE
+## 5155 24042 Subsetting Vectors TRUE
+## 5156 24042 Functions FALSE
+## 5157 24042 Subsetting Vectors TRUE
+## 5158 24042 Workspace and Files TRUE
+## 5159 24042 Subsetting Vectors TRUE
+## 5160 24042 Vectors TRUE
+## 5161 24042 Subsetting Vectors TRUE
+## 5162 24042 Vectors TRUE
+## 5163 24042 Functions TRUE
+## 5164 24042 Functions TRUE
+## 5165 24042 Functions FALSE
+## 5166 24042 Basic Building Blocks FALSE
+## 5167 24042 Basic Building Blocks <NA>
+## 5168 24042 Vectors TRUE
+## 5169 24042 Functions FALSE
+## 5170 24042 Missing Values TRUE
+## 5171 24042 Subsetting Vectors TRUE
+## 5172 24042 Subsetting Vectors TRUE
+## 5173 24042 Functions TRUE
+## 5174 24042 Subsetting Vectors FALSE
+## 5175 24042 Missing Values <NA>
+## 5176 24042 Vectors TRUE
+## 5177 24042 Subsetting Vectors TRUE
+## 5178 24042 Subsetting Vectors TRUE
+## 5179 24042 Basic Building Blocks TRUE
+## 5180 24042 Functions TRUE
+## 5181 24042 Functions FALSE
+## 5182 24042 Workspace and Files TRUE
+## 5183 24042 Functions FALSE
+## 5184 24042 Subsetting Vectors FALSE
+## 5185 24042 Workspace and Files TRUE
+## 5186 24042 Vectors FALSE
+## 5187 24042 Vectors TRUE
+## 5188 24042 Vectors TRUE
+## 5189 24042 Vectors TRUE
+## 5190 24042 Workspace and Files TRUE
+## 5191 24042 Vectors FALSE
+## 5192 24042 Workspace and Files FALSE
+## 5193 24042 Workspace and Files TRUE
+## 5194 24042 Subsetting Vectors TRUE
+## 5195 24042 Functions FALSE
+## 5196 24042 Subsetting Vectors TRUE
+## 5197 24042 Workspace and Files TRUE
+## 5198 24042 Functions FALSE
+## 5199 24042 Basic Building Blocks TRUE
+## 5200 24042 Basic Building Blocks TRUE
+## 5201 24042 Basic Building Blocks TRUE
+## 5202 24042 Logic TRUE
+## 5203 24042 Logic <NA>
+## 5204 24042 Workspace and Files TRUE
+## 5205 24042 Workspace and Files TRUE
+## 5206 24042 Workspace and Files TRUE
+## 5207 24042 Functions TRUE
+## 5208 24042 Missing Values TRUE
+## 5209 24042 Workspace and Files TRUE
+## 5210 24042 Workspace and Files TRUE
+## 5211 24042 Functions TRUE
+## 5212 24042 Functions <NA>
+## 5213 24042 Workspace and Files TRUE
+## 5214 24042 Vectors FALSE
+## 5215 24042 Vectors TRUE
+## 5216 24042 Vectors TRUE
+## 5217 24042 Vectors TRUE
+## 5218 24042 Vectors TRUE
+## 5219 24042 Dates and Times TRUE
+## 5220 24042 Workspace and Files TRUE
+## 5221 24042 Workspace and Files TRUE
+## 5222 24042 Workspace and Files TRUE
+## 5223 24042 Workspace and Files FALSE
+## 5224 24042 Basic Building Blocks TRUE
+## 5225 24042 Basic Building Blocks TRUE
+## 5226 24042 Missing Values TRUE
+## 5227 24042 Missing Values TRUE
+## 5228 24042 Missing Values TRUE
+## 5229 24042 Missing Values TRUE
+## 5230 24042 Functions TRUE
+## 5231 24042 Missing Values TRUE
+## 5232 24042 Missing Values TRUE
+## 5233 24042 Dates and Times TRUE
+## 5234 24042 Workspace and Files TRUE
+## 5235 24042 Missing Values FALSE
+## 5236 24042 Missing Values TRUE
+## 5237 24042 Missing Values TRUE
+## 5238 24042 Vectors <NA>
+## 5239 24042 Logic TRUE
+## 5240 24042 Logic TRUE
+## 5241 24042 Logic TRUE
+## 5242 24042 Workspace and Files FALSE
+## 5243 24042 Workspace and Files TRUE
+## 5244 24042 Dates and Times TRUE
+## 5245 24042 Dates and Times TRUE
+## 5246 24042 Dates and Times TRUE
+## 5247 24042 Dates and Times TRUE
+## 5248 24042 Workspace and Files TRUE
+## 5249 24042 Dates and Times TRUE
+## 5250 24042 Logic TRUE
+## 5251 24042 Functions FALSE
+## 5252 24042 Functions FALSE
+## 5253 24042 Functions FALSE
+## 5254 24042 Workspace and Files TRUE
+## 5255 24042 Workspace and Files TRUE
+## 5256 24042 Workspace and Files <NA>
+## 5257 24042 Workspace and Files TRUE
+## 5258 24042 Workspace and Files TRUE
+## 5259 24042 Basic Building Blocks TRUE
+## 5260 24042 Basic Building Blocks TRUE
+## 5261 24042 Dates and Times FALSE
+## 5262 24042 Dates and Times FALSE
+## 5263 24042 Dates and Times FALSE
+## 5264 24042 Dates and Times TRUE
+## 5265 24042 Dates and Times TRUE
+## 5266 24042 Dates and Times TRUE
+## 5267 24042 Dates and Times TRUE
+## 5268 24042 Functions FALSE
+## 5269 24042 Functions FALSE
+## 5270 24042 Dates and Times TRUE
+## 5271 24042 Dates and Times TRUE
+## 5272 24042 Dates and Times <NA>
+## 5273 24042 Missing Values TRUE
+## 5274 24042 Missing Values TRUE
+## 5275 24042 Vectors TRUE
+## 5276 24042 Functions TRUE
+## 5277 24042 Functions TRUE
+## 5278 24042 Basic Building Blocks TRUE
+## 5279 24042 Logic TRUE
+## 5280 24042 Workspace and Files TRUE
+## 5281 24042 Logic TRUE
+## 5282 24042 Logic TRUE
+## 5283 24042 Basic Building Blocks TRUE
+## 5284 24042 Basic Building Blocks TRUE
+## 5285 24042 Basic Building Blocks TRUE
+## 5286 24042 Subsetting Vectors TRUE
+## 5287 24042 Subsetting Vectors TRUE
+## 5288 24042 Dates and Times TRUE
+## 5289 24042 Dates and Times TRUE
+## 5290 24042 Dates and Times TRUE
+## 5291 24042 Dates and Times TRUE
+## 5292 24042 Workspace and Files FALSE
+## 5293 24042 Vectors FALSE
+## 5294 24042 Logic TRUE
+## 5295 24042 Dates and Times FALSE
+## 5296 24042 Basic Building Blocks FALSE
+## 5297 24042 Basic Building Blocks FALSE
+## 5298 24042 Vectors TRUE
+## 5299 24042 Basic Building Blocks TRUE
+## 5300 24042 Basic Building Blocks TRUE
+## 5301 24042 Basic Building Blocks TRUE
+## 5302 24042 Basic Building Blocks TRUE
+## 5303 24042 Vectors TRUE
+## 5304 24042 Vectors TRUE
+## 5305 24042 Vectors TRUE
+## 5306 24042 Logic TRUE
+## 5307 24042 Logic TRUE
+## 5308 24042 Subsetting Vectors TRUE
+## 5309 24042 Dates and Times TRUE
+## 5310 24042 Dates and Times TRUE
+## 5311 24042 Dates and Times TRUE
+## 5312 24042 Subsetting Vectors TRUE
+## 5313 24042 Functions FALSE
+## 5314 24042 Vectors TRUE
+## 5315 24042 Basic Building Blocks TRUE
+## 5316 24042 Vectors TRUE
+## 5317 24042 Vectors TRUE
+## 5318 24042 Functions TRUE
+## 5319 24042 Basic Building Blocks TRUE
+## 5320 24042 Subsetting Vectors TRUE
+## 5321 24042 Dates and Times TRUE
+## 5322 24042 Subsetting Vectors TRUE
+## 5323 24042 Dates and Times TRUE
+## 5324 24042 Dates and Times TRUE
+## 5325 24042 Basic Building Blocks FALSE
+## 5326 24042 Subsetting Vectors <NA>
+## 5327 24042 Functions FALSE
+## 5328 24042 Subsetting Vectors TRUE
+## 5329 24042 Subsetting Vectors TRUE
+## 5330 24042 Basic Building Blocks TRUE
+## 5331 24042 Basic Building Blocks FALSE
+## 5332 24042 Logic TRUE
+## 5333 24042 Functions TRUE
+## 5334 24042 Subsetting Vectors TRUE
+## 5335 24042 Logic TRUE
+## 5336 24042 Logic TRUE
+## 5337 24042 Logic TRUE
+## 5338 24042 Logic TRUE
+## 5339 24042 Logic TRUE
+## 5340 24042 Functions TRUE
+## 5341 24042 Basic Building Blocks TRUE
+## 5342 24042 Functions TRUE
+## 5343 24042 Basic Building Blocks TRUE
+## 5344 24042 Basic Building Blocks TRUE
+## 5345 24042 Subsetting Vectors TRUE
+## 5346 24042 Logic TRUE
+## 5347 24042 Functions TRUE
+## 5348 24042 Missing Values TRUE
+## 5349 24042 Missing Values TRUE
+## 5350 24042 Functions TRUE
+## 5351 24042 Functions TRUE
+## 5352 24042 Dates and Times TRUE
+## 5353 24042 Dates and Times TRUE
+## 5354 24042 Dates and Times TRUE
+## 5355 24042 Functions FALSE
+## 5356 24042 Functions FALSE
+## 5357 24042 Subsetting Vectors FALSE
+## 5358 24042 Functions FALSE
+## 5359 24042 Logic TRUE
+## 5360 24042 Logic TRUE
+## 5361 24042 Functions FALSE
+## 5362 24042 Dates and Times TRUE
+## 5363 24042 Functions TRUE
+## 5364 24042 Functions TRUE
+## 5365 24042 Subsetting Vectors TRUE
+## 5366 24042 Functions TRUE
+## 5367 24042 Logic TRUE
+## 5368 24042 Logic TRUE
+## 5369 24042 Dates and Times TRUE
+## 5370 24042 Functions TRUE
+## 5371 24042 Functions FALSE
+## 5372 24042 Subsetting Vectors TRUE
+## 5373 24042 Logic TRUE
+## 5374 24042 Logic TRUE
+## 5375 24042 Logic TRUE
+## 5376 24042 Logic TRUE
+## 5377 24042 Subsetting Vectors TRUE
+## 5378 24042 Logic TRUE
+## 5379 24042 Functions TRUE
+## 5380 24042 Logic TRUE
+## 5381 24042 Logic TRUE
+## 5382 24042 Logic TRUE
+## 5383 24042 Dates and Times FALSE
+## 5384 24042 Logic TRUE
+## 5385 24042 Logic TRUE
+## 5386 64610 Basic Building Blocks TRUE
+## 5387 64610 Basic Building Blocks TRUE
+## 5388 64610 Basic Building Blocks <NA>
+## 5389 64610 Basic Building Blocks TRUE
+## 5390 64610 Basic Building Blocks TRUE
+## 5391 64610 Basic Building Blocks TRUE
+## 5392 64610 Basic Building Blocks TRUE
+## 5393 64610 Basic Building Blocks TRUE
+## 5394 64610 Basic Building Blocks TRUE
+## 5395 64610 Basic Building Blocks TRUE
+## 5396 64610 Basic Building Blocks TRUE
+## 5397 64610 Basic Building Blocks TRUE
+## 5398 64610 Basic Building Blocks TRUE
+## 5399 64610 Basic Building Blocks TRUE
+## 5400 64610 Basic Building Blocks TRUE
+## 5401 64610 Basic Building Blocks FALSE
+## 5402 64610 Basic Building Blocks TRUE
+## 5403 64610 Basic Building Blocks TRUE
+## 5404 64610 Basic Building Blocks TRUE
+## 5405 64610 Basic Building Blocks TRUE
+## 5406 64610 Basic Building Blocks TRUE
+## 5407 64610 Basic Building Blocks TRUE
+## 5408 64610 Basic Building Blocks TRUE
+## 5409 64610 Basic Building Blocks TRUE
+## 5410 34362 Workspace and Files TRUE
+## 5411 34362 Logic TRUE
+## 5412 34362 Workspace and Files TRUE
+## 5413 34362 Workspace and Files FALSE
+## 5414 34362 Workspace and Files TRUE
+## 5415 34362 Workspace and Files TRUE
+## 5416 34362 Workspace and Files TRUE
+## 5417 34362 Logic FALSE
+## 5418 34362 Logic FALSE
+## 5419 34362 Logic TRUE
+## 5420 34362 Workspace and Files FALSE
+## 5421 34362 Logic FALSE
+## 5422 34362 Functions TRUE
+## 5423 34362 Logic TRUE
+## 5424 34362 Logic TRUE
+## 5425 34362 Workspace and Files TRUE
+## 5426 34362 Workspace and Files TRUE
+## 5427 34362 Workspace and Files TRUE
+## 5428 34362 Workspace and Files FALSE
+## 5429 34362 Workspace and Files TRUE
+## 5430 34362 Workspace and Files TRUE
+## 5431 34362 Workspace and Files TRUE
+## 5432 34362 Workspace and Files TRUE
+## 5433 34362 Workspace and Files FALSE
+## 5434 34362 Workspace and Files TRUE
+## 5435 34362 Workspace and Files TRUE
+## 5436 34362 Workspace and Files TRUE
+## 5437 34362 Workspace and Files TRUE
+## 5438 34362 Workspace and Files TRUE
+## 5439 34362 Functions FALSE
+## 5440 34362 Functions TRUE
+## 5441 34362 Functions FALSE
+## 5442 34362 Functions TRUE
+## 5443 34362 Functions TRUE
+## 5444 34362 Functions FALSE
+## 5445 34362 Functions FALSE
+## 5446 34362 Functions FALSE
+## 5447 34362 Functions TRUE
+## 5448 34362 Workspace and Files TRUE
+## 5449 34362 Workspace and Files <NA>
+## 5450 34362 Dates and Times TRUE
+## 5451 34362 Dates and Times TRUE
+## 5452 34362 Dates and Times TRUE
+## 5453 34362 Dates and Times TRUE
+## 5454 34362 Dates and Times FALSE
+## 5455 34362 Dates and Times TRUE
+## 5456 34362 Dates and Times TRUE
+## 5457 34362 Dates and Times TRUE
+## 5458 34362 Dates and Times TRUE
+## 5459 34362 Dates and Times TRUE
+## 5460 34362 Dates and Times TRUE
+## 5461 34362 Dates and Times TRUE
+## 5462 34362 Dates and Times TRUE
+## 5463 34362 Functions TRUE
+## 5464 34362 Functions FALSE
+## 5465 34362 Functions TRUE
+## 5466 34362 Functions TRUE
+## 5467 34362 Functions TRUE
+## 5468 34362 Functions TRUE
+## 5469 34362 Functions TRUE
+## 5470 34362 Functions TRUE
+## 5471 34362 Functions TRUE
+## 5472 34362 Functions TRUE
+## 5473 34362 Functions FALSE
+## 5474 34362 Functions FALSE
+## 5475 34362 Functions FALSE
+## 5476 34362 Functions FALSE
+## 5477 34362 Functions FALSE
+## 5478 34362 Functions FALSE
+## 5479 34362 Logic TRUE
+## 5480 34362 Logic TRUE
+## 5481 34362 Logic TRUE
+## 5482 34362 Logic TRUE
+## 5483 34362 Logic TRUE
+## 5484 34362 Logic TRUE
+## 5485 34362 Subsetting Vectors TRUE
+## 5486 34362 Subsetting Vectors TRUE
+## 5487 34362 Subsetting Vectors FALSE
+## 5488 34362 Subsetting Vectors TRUE
+## 5489 34362 Subsetting Vectors TRUE
+## 5490 34362 Subsetting Vectors TRUE
+## 5491 34362 Subsetting Vectors TRUE
+## 5492 34362 Logic TRUE
+## 5493 34362 Logic TRUE
+## 5494 34362 Logic TRUE
+## 5495 34362 Logic TRUE
+## 5496 34362 Logic FALSE
+## 5497 34362 Logic TRUE
+## 5498 34362 Logic TRUE
+## 5499 34362 Logic TRUE
+## 5500 34362 Logic TRUE
+## 5501 34362 Logic TRUE
+## 5502 34362 Missing Values TRUE
+## 5503 34362 Missing Values TRUE
+## 5504 34362 Missing Values TRUE
+## 5505 34362 Missing Values TRUE
+## 5506 34362 Missing Values <NA>
+## 5507 34362 Subsetting Vectors TRUE
+## 5508 34362 Subsetting Vectors TRUE
+## 5509 34362 Subsetting Vectors TRUE
+## 5510 34362 Subsetting Vectors TRUE
+## 5511 34362 Subsetting Vectors TRUE
+## 5512 34362 Subsetting Vectors TRUE
+## 5513 34362 Subsetting Vectors TRUE
+## 5514 34362 Subsetting Vectors TRUE
+## 5515 34362 Subsetting Vectors TRUE
+## 5516 34362 Subsetting Vectors TRUE
+## 5517 34362 Subsetting Vectors FALSE
+## 5518 34362 Subsetting Vectors FALSE
+## 5519 34362 Subsetting Vectors FALSE
+## 5520 34362 Subsetting Vectors TRUE
+## 5521 34362 Subsetting Vectors TRUE
+## 5522 34362 Subsetting Vectors FALSE
+## 5523 34362 Subsetting Vectors TRUE
+## 5524 34362 Subsetting Vectors TRUE
+## 5525 34362 Vectors FALSE
+## 5526 34362 Vectors FALSE
+## 5527 34362 Vectors FALSE
+## 5528 34362 Vectors TRUE
+## 5529 34362 Vectors TRUE
+## 5530 34362 Vectors TRUE
+## 5531 34362 Vectors TRUE
+## 5532 34362 Subsetting Vectors FALSE
+## 5533 34362 Subsetting Vectors TRUE
+## 5534 34362 Subsetting Vectors TRUE
+## 5535 34362 Subsetting Vectors FALSE
+## 5536 34362 Subsetting Vectors TRUE
+## 5537 34362 Subsetting Vectors TRUE
+## 5538 34362 Subsetting Vectors TRUE
+## 5539 34362 Subsetting Vectors TRUE
+## 5540 34362 Subsetting Vectors <NA>
+## 5541 34362 Logic TRUE
+## 5542 34362 Logic FALSE
+## 5543 34362 Logic TRUE
+## 5544 34362 Logic TRUE
+## 5545 34362 Logic TRUE
+## 5546 34362 Logic TRUE
+## 5547 34362 Logic TRUE
+## 5548 34362 Logic TRUE
+## 5549 34362 Logic TRUE
+## 5550 34362 Logic FALSE
+## 5551 34362 Logic FALSE
+## 5552 34362 Logic TRUE
+## 5553 34362 Logic TRUE
+## 5554 34362 Logic TRUE
+## 5555 34362 Logic TRUE
+## 5556 34362 Logic TRUE
+## 5557 34362 Logic TRUE
+## 5558 34362 Logic TRUE
+## 5559 34362 Logic TRUE
+## 5560 34362 Vectors FALSE
+## 5561 34362 Vectors FALSE
+## 5562 34362 Vectors TRUE
+## 5563 34362 Vectors FALSE
+## 5564 34362 Vectors TRUE
+## 5565 34362 Dates and Times TRUE
+## 5566 34362 Dates and Times TRUE
+## 5567 34362 Dates and Times TRUE
+## 5568 34362 Dates and Times TRUE
+## 5569 34362 Dates and Times TRUE
+## 5570 34362 Dates and Times FALSE
+## 5571 34362 Dates and Times TRUE
+## 5572 34362 Vectors <NA>
+## 5573 34362 Missing Values TRUE
+## 5574 34362 Missing Values TRUE
+## 5575 34362 Missing Values TRUE
+## 5576 34362 Missing Values TRUE
+## 5577 34362 Missing Values TRUE
+## 5578 34362 Missing Values TRUE
+## 5579 34362 Missing Values TRUE
+## 5580 34362 Missing Values TRUE
+## 5581 34362 Missing Values TRUE
+## 5582 34362 Missing Values TRUE
+## 5583 34362 Workspace and Files TRUE
+## 5584 34362 Vectors TRUE
+## 5585 34362 Vectors TRUE
+## 5586 34362 Vectors TRUE
+## 5587 34362 Vectors TRUE
+## 5588 34362 Vectors TRUE
+## 5589 34362 Vectors TRUE
+## 5590 34362 Vectors TRUE
+## 5591 34362 Vectors TRUE
+## 5592 34362 Vectors FALSE
+## 5593 34362 Vectors TRUE
+## 5594 34362 Vectors TRUE
+## 5595 34362 Vectors TRUE
+## 5596 34362 Vectors FALSE
+## 5597 34362 Vectors TRUE
+## 5598 34362 Vectors TRUE
+## 5599 34362 Vectors FALSE
+## 5600 34362 Workspace and Files TRUE
+## 5601 34362 Workspace and Files TRUE
+## 5602 34362 Workspace and Files TRUE
+## 5603 34362 Workspace and Files FALSE
+## 5604 34362 Workspace and Files TRUE
+## 5605 34362 Basic Building Blocks TRUE
+## 5606 34362 Basic Building Blocks TRUE
+## 5607 34362 Basic Building Blocks TRUE
+## 5608 34362 Basic Building Blocks TRUE
+## 5609 34362 Basic Building Blocks TRUE
+## 5610 34362 Basic Building Blocks TRUE
+## 5611 34362 Basic Building Blocks TRUE
+## 5612 34362 Dates and Times FALSE
+## 5613 34362 Dates and Times TRUE
+## 5614 34362 Functions FALSE
+## 5615 34362 Functions TRUE
+## 5616 34362 Functions FALSE
+## 5617 34362 Functions TRUE
+## 5618 34362 Functions TRUE
+## 5619 34362 Functions FALSE
+## 5620 34362 Functions TRUE
+## 5621 34362 Functions TRUE
+## 5622 34362 Functions FALSE
+## 5623 34362 Functions FALSE
+## 5624 34362 Workspace and Files TRUE
+## 5625 34362 Workspace and Files TRUE
+## 5626 34362 Workspace and Files TRUE
+## 5627 34362 Workspace and Files TRUE
+## 5628 34362 Workspace and Files FALSE
+## 5629 34362 Workspace and Files FALSE
+## 5630 34362 Workspace and Files FALSE
+## 5631 34362 Workspace and Files TRUE
+## 5632 34362 Workspace and Files TRUE
+## 5633 34362 Workspace and Files TRUE
+## 5634 34362 Workspace and Files TRUE
+## 5635 34362 Workspace and Files TRUE
+## 5636 34362 Workspace and Files TRUE
+## 5637 34362 Workspace and Files TRUE
+## 5638 34362 Workspace and Files FALSE
+## 5639 34362 Workspace and Files TRUE
+## 5640 34362 Basic Building Blocks TRUE
+## 5641 34362 Basic Building Blocks TRUE
+## 5642 34362 Basic Building Blocks TRUE
+## 5643 34362 Basic Building Blocks TRUE
+## 5644 34362 Basic Building Blocks TRUE
+## 5645 34362 Basic Building Blocks TRUE
+## 5646 34362 Workspace and Files TRUE
+## 5647 34362 Workspace and Files TRUE
+## 5648 34362 Workspace and Files FALSE
+## 5649 34362 Workspace and Files TRUE
+## 5650 34362 Workspace and Files FALSE
+## 5651 34362 Workspace and Files TRUE
+## 5652 34362 Basic Building Blocks TRUE
+## 5653 34362 Functions TRUE
+## 5654 34362 Dates and Times TRUE
+## 5655 34362 Dates and Times FALSE
+## 5656 34362 Basic Building Blocks TRUE
+## 5657 34362 Basic Building Blocks TRUE
+## 5658 34362 Dates and Times TRUE
+## 5659 34362 Basic Building Blocks TRUE
+## 5660 34362 Basic Building Blocks TRUE
+## 5661 34362 Basic Building Blocks TRUE
+## 5662 34362 Basic Building Blocks TRUE
+## 5663 34362 Basic Building Blocks TRUE
+## 5664 34362 Functions FALSE
+## 5665 34362 Functions TRUE
+## 5666 34362 Workspace and Files TRUE
+## 5667 34362 Workspace and Files TRUE
+## 5668 34362 Workspace and Files <NA>
+## 5669 34362 Dates and Times TRUE
+## 5670 34362 Dates and Times TRUE
+## 5671 34362 Workspace and Files TRUE
+## 5672 34362 Dates and Times TRUE
+## 5673 34362 Dates and Times TRUE
+## 5674 34362 Dates and Times TRUE
+## 5675 34362 Dates and Times TRUE
+## 5676 34362 Dates and Times TRUE
+## 5677 34362 Dates and Times <NA>
+## 5678 34362 Basic Building Blocks TRUE
+## 5679 34362 Logic <NA>
+## 5680 34362 Workspace and Files TRUE
+## 5681 34362 Workspace and Files TRUE
+## 5682 34362 Functions FALSE
+## 5683 34362 Workspace and Files TRUE
+## 5684 34362 Functions TRUE
+## 5685 34362 Functions FALSE
+## 5686 34362 Functions FALSE
+## 5687 34362 Functions FALSE
+## 5688 34362 Functions TRUE
+## 5689 34362 Functions TRUE
+## 5690 34362 Functions TRUE
+## 5691 34362 Functions <NA>
+## 5692 34362 Functions FALSE
+## 5693 34362 Basic Building Blocks <NA>
+## 5694 34362 Functions TRUE
+## 5695 34362 Workspace and Files TRUE
+## 5696 34362 Functions TRUE
+## 5697 34362 Functions TRUE
+## 5698 34362 Functions FALSE
+## 5699 34362 Functions FALSE
+## 5700 35235 Basic Building Blocks <NA>
+## 5701 35235 Basic Building Blocks TRUE
+## 5702 35235 Basic Building Blocks TRUE
+## 5703 35235 Basic Building Blocks TRUE
+## 5704 35235 Basic Building Blocks TRUE
+## 5705 35235 Basic Building Blocks TRUE
+## 5706 35235 Basic Building Blocks TRUE
+## 5707 35235 Basic Building Blocks TRUE
+## 5708 35235 Basic Building Blocks TRUE
+## 5709 35235 Basic Building Blocks FALSE
+## 5710 35235 Basic Building Blocks TRUE
+## 5711 35235 Basic Building Blocks TRUE
+## 5712 35235 Basic Building Blocks TRUE
+## 5713 35235 Basic Building Blocks TRUE
+## 5714 35235 Basic Building Blocks TRUE
+## 5715 35235 Basic Building Blocks TRUE
+## 5716 35235 Basic Building Blocks TRUE
+## 5717 35235 Basic Building Blocks TRUE
+## 5718 35235 Basic Building Blocks TRUE
+## 5719 35235 Basic Building Blocks TRUE
+## 5720 35235 Basic Building Blocks FALSE
+## 5721 35235 Basic Building Blocks TRUE
+## 5722 35235 Basic Building Blocks TRUE
+## 5723 35235 Basic Building Blocks TRUE
+## 5724 35235 Basic Building Blocks FALSE
+## 5725 35235 Basic Building Blocks TRUE
+correct variable so that TRUE is coded as the number 1 and FALSE is coded as 0DF4$correct <- as.logical(DF4$correct)
+class(DF4$correct)
+## [1] "logical"
+ DF4_log <- DF4 %>% mutate_if(is.logical,as.numeric)
+
+ DF4_log
+## hash lesson_name correct
+## 1 30802 Dates and Times 1
+## 2 30802 Functions 1
+## 3 30802 Basic Building Blocks 1
+## 4 30802 Dates and Times 1
+## 5 30802 Dates and Times 1
+## 6 30802 Workspace and Files 1
+## 7 30802 Functions 1
+## 8 30802 Dates and Times 1
+## 9 30802 Dates and Times 1
+## 10 30802 Dates and Times 1
+## 11 30802 Basic Building Blocks 1
+## 12 30802 Vectors 1
+## 13 30802 Basic Building Blocks 1
+## 14 30802 Vectors 1
+## 15 30802 Workspace and Files 1
+## 16 30802 Subsetting Vectors 1
+## 17 30802 Dates and Times 1
+## 18 30802 Subsetting Vectors 1
+## 19 30802 Vectors 0
+## 20 30802 Dates and Times 1
+## 21 30802 Subsetting Vectors 1
+## 22 30802 Dates and Times 1
+## 23 30802 Dates and Times 1
+## 24 30802 Subsetting Vectors 1
+## 25 30802 Functions 1
+## 26 30802 Subsetting Vectors 1
+## 27 30802 Basic Building Blocks 1
+## 28 30802 Vectors 1
+## 29 30802 Logic 1
+## 30 30802 Basic Building Blocks 1
+## 31 30802 Workspace and Files 1
+## 32 30802 Workspace and Files 1
+## 33 30802 Subsetting Vectors 1
+## 34 30802 Dates and Times 1
+## 35 30802 Workspace and Files 1
+## 36 30802 Dates and Times 1
+## 37 30802 Dates and Times 1
+## 38 30802 Vectors 1
+## 39 30802 Subsetting Vectors 1
+## 40 30802 Subsetting Vectors 1
+## 41 30802 Basic Building Blocks 1
+## 42 30802 Dates and Times 1
+## 43 30802 Dates and Times NA
+## 44 30802 Basic Building Blocks 1
+## 45 30802 Subsetting Vectors 1
+## 46 30802 Logic 1
+## 47 30802 Workspace and Files 1
+## 48 30802 Subsetting Vectors 1
+## 49 30802 Logic 0
+## 50 30802 Logic 1
+## 51 30802 Subsetting Vectors 1
+## 52 30802 Functions 1
+## 53 30802 Logic 1
+## 54 30802 Dates and Times 1
+## 55 30802 Vectors 1
+## 56 30802 Basic Building Blocks 1
+## 57 30802 Logic 1
+## 58 30802 Logic 1
+## 59 30802 Missing Values 1
+## 60 30802 Logic 1
+## 61 30802 Workspace and Files 1
+## 62 30802 Subsetting Vectors 1
+## 63 30802 Workspace and Files 1
+## 64 30802 Workspace and Files 0
+## 65 30802 Dates and Times 1
+## 66 30802 Logic 1
+## 67 30802 Basic Building Blocks 1
+## 68 30802 Dates and Times 1
+## 69 30802 Missing Values 1
+## 70 30802 Missing Values 1
+## 71 30802 Missing Values 1
+## 72 30802 Subsetting Vectors 1
+## 73 30802 Logic 1
+## 74 30802 Logic 0
+## 75 30802 Logic 1
+## 76 30802 Dates and Times 1
+## 77 30802 Dates and Times 1
+## 78 30802 Dates and Times 1
+## 79 30802 Functions 1
+## 80 30802 Dates and Times 1
+## 81 30802 Logic 1
+## 82 30802 Dates and Times 1
+## 83 30802 Missing Values 1
+## 84 30802 Workspace and Files 1
+## 85 30802 Workspace and Files 1
+## 86 30802 Functions 1
+## 87 30802 Basic Building Blocks 1
+## 88 30802 Basic Building Blocks 1
+## 89 30802 Basic Building Blocks 1
+## 90 30802 Subsetting Vectors 1
+## 91 30802 Dates and Times 1
+## 92 30802 Subsetting Vectors 1
+## 93 30802 Vectors 1
+## 94 30802 Vectors 1
+## 95 30802 Workspace and Files 1
+## 96 30802 Workspace and Files NA
+## 97 30802 Functions NA
+## 98 30802 Logic 1
+## 99 30802 Workspace and Files 1
+## 100 30802 Workspace and Files 1
+## 101 30802 Missing Values 1
+## 102 30802 Workspace and Files 1
+## 103 30802 Workspace and Files 1
+## 104 30802 Subsetting Vectors 1
+## 105 30802 Workspace and Files 1
+## 106 30802 Workspace and Files 1
+## 107 30802 Dates and Times 1
+## 108 30802 Subsetting Vectors NA
+## 109 30802 Workspace and Files 1
+## 110 30802 Workspace and Files 1
+## 111 30802 Logic 1
+## 112 30802 Logic 1
+## 113 30802 Logic 1
+## 114 30802 Dates and Times 1
+## 115 30802 Subsetting Vectors 1
+## 116 30802 Subsetting Vectors 1
+## 117 30802 Subsetting Vectors 1
+## 118 30802 Subsetting Vectors 1
+## 119 30802 Vectors 1
+## 120 30802 Subsetting Vectors 1
+## 121 30802 Workspace and Files 1
+## 122 30802 Missing Values 1
+## 123 30802 Missing Values 1
+## 124 30802 Missing Values 1
+## 125 30802 Logic 1
+## 126 30802 Logic 1
+## 127 30802 Vectors 1
+## 128 30802 Logic 1
+## 129 30802 Logic 1
+## 130 30802 Basic Building Blocks 1
+## 131 30802 Basic Building Blocks 1
+## 132 30802 Subsetting Vectors 1
+## 133 30802 Logic 1
+## 134 30802 Basic Building Blocks 1
+## 135 30802 Basic Building Blocks 1
+## 136 30802 Basic Building Blocks 1
+## 137 30802 Logic 1
+## 138 30802 Missing Values 1
+## 139 30802 Missing Values NA
+## 140 30802 Workspace and Files 1
+## 141 30802 Workspace and Files 1
+## 142 30802 Logic 1
+## 143 30802 Workspace and Files 1
+## 144 30802 Logic 1
+## 145 30802 Logic 1
+## 146 30802 Basic Building Blocks 0
+## 147 30802 Missing Values 1
+## 148 30802 Missing Values 1
+## 149 30802 Logic 1
+## 150 30802 Logic 1
+## 151 30802 Functions 1
+## 152 30802 Functions 0
+## 153 30802 Subsetting Vectors 1
+## 154 30802 Subsetting Vectors 1
+## 155 30802 Dates and Times 1
+## 156 30802 Functions 1
+## 157 30802 Vectors 1
+## 158 30802 Vectors 1
+## 159 30802 Missing Values 1
+## 160 30802 Functions 1
+## 161 30802 Functions 1
+## 162 30802 Functions 1
+## 163 30802 Functions 1
+## 164 30802 Logic 1
+## 165 30802 Functions 1
+## 166 30802 Functions 1
+## 167 30802 Logic 1
+## 168 30802 Functions 1
+## 169 30802 Logic 1
+## 170 30802 Functions 1
+## 171 30802 Functions 1
+## 172 30802 Logic 1
+## 173 30802 Functions 1
+## 174 30802 Functions 1
+## 175 30802 Functions 1
+## 176 30802 Logic 1
+## 177 30802 Functions 1
+## 178 30802 Vectors 1
+## 179 30802 Functions 1
+## 180 30802 Dates and Times 1
+## 181 30802 Logic 1
+## 182 30802 Subsetting Vectors 1
+## 183 30802 Functions 1
+## 184 30802 Missing Values 1
+## 185 30802 Logic 0
+## 186 30802 Vectors 1
+## 187 30802 Vectors 1
+## 188 30802 Vectors 0
+## 189 30802 Basic Building Blocks 1
+## 190 30802 Functions 1
+## 191 30802 Functions 1
+## 192 30802 Vectors NA
+## 193 30802 Vectors 1
+## 194 30802 Dates and Times 1
+## 195 30802 Functions 0
+## 196 30802 Vectors 1
+## 197 30802 Functions 1
+## 198 30802 Basic Building Blocks 1
+## 199 30802 Basic Building Blocks NA
+## 200 30802 Functions 1
+## 201 30802 Functions 0
+## 202 30802 Functions 1
+## 203 30802 Logic 1
+## 204 30802 Logic NA
+## 205 30802 Vectors 1
+## 206 30802 Vectors 1
+## 207 30802 Functions 0
+## 208 30802 Subsetting Vectors 1
+## 209 30802 Basic Building Blocks 1
+## 210 30802 Basic Building Blocks 1
+## 211 30802 Basic Building Blocks 1
+## 212 30802 Vectors 1
+## 213 30802 Logic 1
+## 214 30802 Logic 1
+## 215 78719 Basic Building Blocks 1
+## 216 78719 Missing Values 0
+## 217 78719 Missing Values 1
+## 218 78719 Missing Values 0
+## 219 78719 Missing Values 1
+## 220 78719 Basic Building Blocks 1
+## 221 78719 Tidying Data with tidyr 1
+## 222 78719 Tidying Data with tidyr 1
+## 223 78719 Missing Values 1
+## 224 78719 Missing Values 1
+## 225 78719 Tidying Data with tidyr 1
+## 226 78719 Tidying Data with tidyr 0
+## 227 78719 Subsetting Vectors 1
+## 228 78719 Subsetting Vectors 1
+## 229 78719 Missing Values 1
+## 230 78719 Tidying Data with tidyr 1
+## 231 78719 Tidying Data with tidyr 1
+## 232 78719 Tidying Data with tidyr 1
+## 233 78719 Missing Values 1
+## 234 78719 Tidying Data with tidyr 1
+## 235 78719 Subsetting Vectors 1
+## 236 78719 Missing Values 1
+## 237 78719 Dates and Times 1
+## 238 78719 Missing Values NA
+## 239 78719 Subsetting Vectors 1
+## 240 78719 Tidying Data with tidyr 0
+## 241 78719 Dates and Times 1
+## 242 78719 Tidying Data with tidyr 1
+## 243 78719 Dates and Times 1
+## 244 78719 Missing Values 1
+## 245 78719 Missing Values 1
+## 246 78719 Basic Building Blocks 1
+## 247 78719 Functions 1
+## 248 78719 Subsetting Vectors 1
+## 249 78719 Missing Values 1
+## 250 78719 Looking at Data 1
+## 251 78719 Grouping and Chaining with dplyr 1
+## 252 78719 Grouping and Chaining with dplyr NA
+## 253 78719 Manipulating Data with dplyr 0
+## 254 78719 Subsetting Vectors 1
+## 255 78719 Logic 1
+## 256 78719 Basic Building Blocks 1
+## 257 78719 Tidying Data with tidyr 1
+## 258 78719 Tidying Data with tidyr 1
+## 259 78719 Tidying Data with tidyr 0
+## 260 78719 Tidying Data with tidyr 1
+## 261 78719 Basic Building Blocks 0
+## 262 78719 Looking at Data 1
+## 263 78719 Looking at Data 1
+## 264 78719 Missing Values 1
+## 265 78719 Missing Values 1
+## 266 78719 Tidying Data with tidyr 0
+## 267 78719 Logic 1
+## 268 78719 Dates and Times 0
+## 269 78719 Functions 0
+## 270 78719 Dates and Times 0
+## 271 78719 Dates and Times 1
+## 272 78719 Subsetting Vectors 1
+## 273 78719 Subsetting Vectors 1
+## 274 78719 Tidying Data with tidyr 1
+## 275 78719 Missing Values 0
+## 276 78719 Missing Values 1
+## 277 78719 Basic Building Blocks 0
+## 278 78719 Functions 1
+## 279 78719 Logic 1
+## 280 78719 Tidying Data with tidyr 1
+## 281 78719 Functions 1
+## 282 78719 Grouping and Chaining with dplyr 1
+## 283 78719 Functions 0
+## 284 78719 Tidying Data with tidyr 1
+## 285 78719 Dates and Times 1
+## 286 78719 Missing Values 1
+## 287 78719 Subsetting Vectors 1
+## 288 78719 Basic Building Blocks 1
+## 289 78719 Basic Building Blocks 1
+## 290 78719 Tidying Data with tidyr 1
+## 291 78719 Tidying Data with tidyr 1
+## 292 78719 Tidying Data with tidyr 1
+## 293 78719 Dates and Times 1
+## 294 78719 Tidying Data with tidyr 0
+## 295 78719 Logic 1
+## 296 78719 Subsetting Vectors 1
+## 297 78719 Logic 1
+## 298 78719 Tidying Data with tidyr 1
+## 299 78719 Tidying Data with tidyr NA
+## 300 78719 Tidying Data with tidyr 0
+## 301 78719 Tidying Data with tidyr 1
+## 302 78719 Dates and Times 1
+## 303 78719 Tidying Data with tidyr 1
+## 304 78719 Functions 1
+## 305 78719 Logic 1
+## 306 78719 Workspace and Files 1
+## 307 78719 Dates and Times 1
+## 308 78719 Tidying Data with tidyr 1
+## 309 78719 Logic 1
+## 310 78719 Subsetting Vectors 1
+## 311 78719 Workspace and Files 1
+## 312 78719 Workspace and Files 1
+## 313 78719 Workspace and Files 1
+## 314 78719 Basic Building Blocks 1
+## 315 78719 Subsetting Vectors 1
+## 316 78719 Workspace and Files 1
+## 317 78719 Workspace and Files 1
+## 318 78719 Workspace and Files 1
+## 319 78719 Grouping and Chaining with dplyr 1
+## 320 78719 Workspace and Files 1
+## 321 78719 Grouping and Chaining with dplyr 1
+## 322 78719 Subsetting Vectors 1
+## 323 78719 Logic 1
+## 324 78719 Basic Building Blocks 1
+## 325 78719 Basic Building Blocks 1
+## 326 78719 Basic Building Blocks 1
+## 327 78719 Dates and Times 1
+## 328 78719 Dates and Times 1
+## 329 78719 Logic 1
+## 330 78719 Vectors 1
+## 331 78719 Logic NA
+## 332 78719 Dates and Times 1
+## 333 78719 Looking at Data 1
+## 334 78719 Workspace and Files 1
+## 335 78719 Workspace and Files 0
+## 336 78719 Manipulating Data with dplyr 1
+## 337 78719 Manipulating Data with dplyr 1
+## 338 78719 Manipulating Data with dplyr 1
+## 339 78719 Basic Building Blocks 1
+## 340 78719 Basic Building Blocks 1
+## 341 78719 Logic 1
+## 342 78719 Basic Building Blocks 1
+## 343 78719 Logic 1
+## 344 78719 Basic Building Blocks 1
+## 345 78719 Basic Building Blocks 1
+## 346 78719 Basic Building Blocks 0
+## 347 78719 Basic Building Blocks 0
+## 348 78719 Workspace and Files 1
+## 349 78719 Tidying Data with tidyr 0
+## 350 78719 Basic Building Blocks 1
+## 351 78719 Basic Building Blocks NA
+## 352 78719 Subsetting Vectors 1
+## 353 78719 Basic Building Blocks 1
+## 354 78719 Basic Building Blocks 1
+## 355 78719 Vectors 1
+## 356 78719 Basic Building Blocks 1
+## 357 78719 Vectors 1
+## 358 78719 Grouping and Chaining with dplyr 1
+## 359 78719 Grouping and Chaining with dplyr 1
+## 360 78719 Grouping and Chaining with dplyr 1
+## 361 78719 Logic 1
+## 362 78719 Logic 1
+## 363 78719 Tidying Data with tidyr 1
+## 364 78719 Logic 1
+## 365 78719 Logic 1
+## 366 78719 Manipulating Data with dplyr 1
+## 367 78719 Logic 1
+## 368 78719 Subsetting Vectors 1
+## 369 78719 Subsetting Vectors 0
+## 370 78719 Functions 0
+## 371 78719 Functions 1
+## 372 78719 Looking at Data 1
+## 373 78719 Workspace and Files 1
+## 374 78719 Vectors NA
+## 375 78719 Manipulating Data with dplyr 1
+## 376 78719 Workspace and Files 1
+## 377 78719 Looking at Data 1
+## 378 78719 Looking at Data 1
+## 379 78719 Functions 1
+## 380 78719 Functions 1
+## 381 78719 Functions 0
+## 382 78719 Functions 1
+## 383 78719 Functions 0
+## 384 78719 Functions 1
+## 385 78719 Functions 1
+## 386 78719 Functions 1
+## 387 78719 Functions NA
+## 388 78719 Basic Building Blocks 0
+## 389 78719 Basic Building Blocks 1
+## 390 78719 Workspace and Files NA
+## 391 78719 Vectors 1
+## 392 78719 Vectors 1
+## 393 78719 Vectors 1
+## 394 78719 Vectors 1
+## 395 78719 Subsetting Vectors 1
+## 396 78719 Vectors 1
+## 397 78719 Subsetting Vectors 1
+## 398 78719 Subsetting Vectors 1
+## 399 78719 Subsetting Vectors 1
+## 400 78719 Logic 0
+## 401 78719 Subsetting Vectors 1
+## 402 78719 Subsetting Vectors 1
+## 403 78719 Matrices and Data Frames 1
+## 404 78719 Tidying Data with tidyr 1
+## 405 78719 Subsetting Vectors 1
+## 406 78719 Subsetting Vectors 1
+## 407 78719 Subsetting Vectors 1
+## 408 78719 Workspace and Files 1
+## 409 78719 Workspace and Files 1
+## 410 78719 Workspace and Files 1
+## 411 78719 Workspace and Files 1
+## 412 78719 Workspace and Files 1
+## 413 78719 Vectors 1
+## 414 78719 Matrices and Data Frames 1
+## 415 78719 Matrices and Data Frames 1
+## 416 78719 Matrices and Data Frames 1
+## 417 78719 Workspace and Files 1
+## 418 78719 Workspace and Files 1
+## 419 78719 Workspace and Files 1
+## 420 78719 Tidying Data with tidyr 1
+## 421 78719 Tidying Data with tidyr 1
+## 422 78719 Tidying Data with tidyr 1
+## 423 78719 Workspace and Files 1
+## 424 78719 Workspace and Files 1
+## 425 78719 Tidying Data with tidyr 1
+## 426 78719 Tidying Data with tidyr 1
+## 427 78719 Tidying Data with tidyr 0
+## 428 78719 Tidying Data with tidyr 1
+## 429 78719 Basic Building Blocks 1
+## 430 78719 Basic Building Blocks 1
+## 431 78719 Dates and Times 1
+## 432 78719 Dates and Times 1
+## 433 78719 Tidying Data with tidyr 0
+## 434 78719 Subsetting Vectors 1
+## 435 78719 Grouping and Chaining with dplyr 1
+## 436 78719 Subsetting Vectors 1
+## 437 78719 Grouping and Chaining with dplyr 1
+## 438 78719 Grouping and Chaining with dplyr 1
+## 439 78719 Tidying Data with tidyr 1
+## 440 78719 Subsetting Vectors 0
+## 441 78719 Vectors 1
+## 442 78719 Vectors 1
+## 443 78719 Vectors 1
+## 444 78719 Vectors 1
+## 445 78719 Vectors 1
+## 446 78719 Vectors 0
+## 447 78719 Vectors 1
+## 448 78719 Vectors 1
+## 449 78719 Vectors 0
+## 450 78719 Vectors 1
+## 451 78719 Vectors 1
+## 452 78719 Vectors 1
+## 453 78719 Tidying Data with tidyr 1
+## 454 78719 Grouping and Chaining with dplyr 1
+## 455 78719 Grouping and Chaining with dplyr 1
+## 456 78719 Tidying Data with tidyr 1
+## 457 78719 Matrices and Data Frames 1
+## 458 78719 Matrices and Data Frames 1
+## 459 78719 Matrices and Data Frames 1
+## 460 78719 Manipulating Data with dplyr 1
+## 461 78719 Manipulating Data with dplyr 1
+## 462 78719 Manipulating Data with dplyr 0
+## 463 78719 Manipulating Data with dplyr 1
+## 464 78719 Manipulating Data with dplyr 0
+## 465 78719 Manipulating Data with dplyr 1
+## 466 78719 Manipulating Data with dplyr 1
+## 467 78719 Dates and Times 0
+## 468 78719 Dates and Times 1
+## 469 78719 Tidying Data with tidyr 1
+## 470 78719 Workspace and Files 1
+## 471 78719 Grouping and Chaining with dplyr 0
+## 472 78719 Grouping and Chaining with dplyr 1
+## 473 78719 Grouping and Chaining with dplyr 1
+## 474 78719 Grouping and Chaining with dplyr 1
+## 475 78719 Dates and Times 1
+## 476 78719 Grouping and Chaining with dplyr 1
+## 477 78719 Tidying Data with tidyr 0
+## 478 78719 Tidying Data with tidyr 0
+## 479 78719 Tidying Data with tidyr 1
+## 480 78719 Tidying Data with tidyr 1
+## 481 78719 Tidying Data with tidyr 1
+## 482 78719 Tidying Data with tidyr 0
+## 483 78719 Tidying Data with tidyr 1
+## 484 78719 Dates and Times 1
+## 485 78719 Dates and Times NA
+## 486 78719 Functions 1
+## 487 78719 Functions 1
+## 488 78719 Functions 1
+## 489 78719 Functions 1
+## 490 78719 Functions 1
+## 491 78719 Functions 0
+## 492 78719 Functions 1
+## 493 78719 Matrices and Data Frames 1
+## 494 78719 Looking at Data 1
+## 495 78719 Tidying Data with tidyr 1
+## 496 78719 Manipulating Data with dplyr 1
+## 497 78719 Tidying Data with tidyr 1
+## 498 78719 Tidying Data with tidyr 1
+## 499 78719 Tidying Data with tidyr 1
+## 500 78719 Looking at Data 1
+## 501 78719 Subsetting Vectors NA
+## 502 78719 Looking at Data NA
+## 503 78719 Plotting_Systems 1
+## 504 78719 Plotting_Systems 1
+## 505 78719 Plotting_Systems 0
+## 506 78719 Plotting_Systems 1
+## 507 78719 Plotting_Systems 1
+## 508 78719 Plotting_Systems 1
+## 509 78719 Dates and Times 1
+## 510 78719 Dates and Times 1
+## 511 78719 Dates and Times 1
+## 512 78719 Tidying Data with tidyr 0
+## 513 78719 Tidying Data with tidyr 1
+## 514 78719 Tidying Data with tidyr 1
+## 515 78719 Plotting_Systems 1
+## 516 78719 Tidying Data with tidyr 0
+## 517 78719 Tidying Data with tidyr 1
+## 518 78719 Plotting_Systems 1
+## 519 78719 Plotting_Systems 1
+## 520 78719 Tidying Data with tidyr 1
+## 521 78719 Matrices and Data Frames 1
+## 522 78719 Matrices and Data Frames 1
+## 523 78719 Matrices and Data Frames 1
+## 524 78719 Plotting_Systems 1
+## 525 78719 Matrices and Data Frames 1
+## 526 78719 Matrices and Data Frames 1
+## 527 78719 Matrices and Data Frames 1
+## 528 78719 Matrices and Data Frames 1
+## 529 78719 Matrices and Data Frames 1
+## 530 78719 Matrices and Data Frames 1
+## 531 78719 Matrices and Data Frames 1
+## 532 78719 Matrices and Data Frames 1
+## 533 78719 Grouping and Chaining with dplyr 1
+## 534 78719 Manipulating Data with dplyr 1
+## 535 78719 Manipulating Data with dplyr 1
+## 536 78719 Grouping and Chaining with dplyr 1
+## 537 78719 Grouping and Chaining with dplyr 1
+## 538 78719 Tidying Data with tidyr 1
+## 539 78719 Plotting_Systems 0
+## 540 78719 Matrices and Data Frames 0
+## 541 78719 Logic 1
+## 542 78719 Logic 1
+## 543 78719 Grouping and Chaining with dplyr 1
+## 544 78719 Grouping and Chaining with dplyr 0
+## 545 78719 Grouping and Chaining with dplyr 1
+## 546 78719 Grouping and Chaining with dplyr 1
+## 547 78719 Grouping and Chaining with dplyr 1
+## 548 78719 Grouping and Chaining with dplyr 1
+## 549 78719 Matrices and Data Frames 1
+## 550 78719 Matrices and Data Frames 1
+## 551 78719 Matrices and Data Frames 1
+## 552 78719 Matrices and Data Frames 1
+## 553 78719 Plotting_Systems 1
+## 554 78719 Plotting_Systems 1
+## 555 78719 Tidying Data with tidyr 1
+## 556 78719 Tidying Data with tidyr 1
+## 557 78719 Dates and Times 1
+## 558 78719 Tidying Data with tidyr 1
+## 559 78719 Tidying Data with tidyr 1
+## 560 78719 Matrices and Data Frames 1
+## 561 78719 Matrices and Data Frames 1
+## 562 78719 Logic 1
+## 563 78719 Manipulating Data with dplyr 1
+## 564 78719 Manipulating Data with dplyr NA
+## 565 78719 Plotting_Systems 1
+## 566 78719 Matrices and Data Frames NA
+## 567 78719 Grouping and Chaining with dplyr 1
+## 568 78719 Grouping and Chaining with dplyr 1
+## 569 78719 Grouping and Chaining with dplyr 1
+## 570 78719 Grouping and Chaining with dplyr 1
+## 571 78719 Grouping and Chaining with dplyr 1
+## 572 78719 Grouping and Chaining with dplyr 1
+## 573 78719 Tidying Data with tidyr 0
+## 574 78719 Looking at Data 1
+## 575 78719 Dates and Times 1
+## 576 78719 Dates and Times 1
+## 577 78719 Dates and Times 1
+## 578 78719 Dates and Times 1
+## 579 78719 Grouping and Chaining with dplyr 0
+## 580 78719 Tidying Data with tidyr 1
+## 581 78719 Tidying Data with tidyr 0
+## 582 78719 Looking at Data 1
+## 583 78719 Matrices and Data Frames 1
+## 584 78719 Logic 0
+## 585 78719 Logic 1
+## 586 78719 Logic 1
+## 587 78719 Logic 1
+## 588 78719 Tidying Data with tidyr 1
+## 589 78719 Tidying Data with tidyr 1
+## 590 78719 Logic 1
+## 591 78719 Logic 1
+## 592 78719 Dates and Times 1
+## 593 78719 Grouping and Chaining with dplyr 1
+## 594 78719 Matrices and Data Frames 1
+## 595 78719 Plotting_Systems 1
+## 596 78719 Plotting_Systems 1
+## 597 78719 Plotting_Systems 1
+## 598 78719 Dates and Times 1
+## 599 78719 Dates and Times 1
+## 600 78719 Dates and Times 1
+## 601 78719 Matrices and Data Frames 1
+## 602 78719 Plotting_Systems 1
+## 603 78719 Matrices and Data Frames 0
+## 604 78719 Plotting_Systems 1
+## 605 78719 Logic 1
+## 606 78719 Functions 1
+## 607 78719 Functions 1
+## 608 78719 Tidying Data with tidyr 0
+## 609 78719 Tidying Data with tidyr 1
+## 610 78719 Tidying Data with tidyr 1
+## 611 78719 Tidying Data with tidyr 1
+## 612 78719 Tidying Data with tidyr 1
+## 613 78719 Manipulating Data with dplyr 1
+## 614 78719 Looking at Data 1
+## 615 78719 Matrices and Data Frames 1
+## 616 78719 Matrices and Data Frames 1
+## 617 78719 Matrices and Data Frames 1
+## 618 78719 Plotting_Systems 1
+## 619 78719 Matrices and Data Frames 1
+## 620 78719 Matrices and Data Frames 1
+## 621 78719 Matrices and Data Frames 1
+## 622 78719 Tidying Data with tidyr 1
+## 623 78719 Matrices and Data Frames 1
+## 624 78719 Matrices and Data Frames 1
+## 625 78719 Matrices and Data Frames 1
+## 626 78719 Matrices and Data Frames 1
+## 627 78719 Functions 0
+## 628 78719 Functions 1
+## 629 78719 Logic 1
+## 630 78719 Logic 1
+## 631 78719 Matrices and Data Frames 1
+## 632 78719 Manipulating Data with dplyr 1
+## 633 78719 Plotting_Systems 0
+## 634 78719 Plotting_Systems 1
+## 635 78719 Matrices and Data Frames 1
+## 636 78719 Plotting_Systems 1
+## 637 78719 Plotting_Systems NA
+## 638 78719 Matrices and Data Frames 1
+## 639 78719 Matrices and Data Frames 1
+## 640 78719 Looking at Data 1
+## 641 78719 Logic 1
+## 642 78719 Logic 1
+## 643 78719 Functions 1
+## 644 78719 Logic 1
+## 645 78719 Matrices and Data Frames 1
+## 646 78719 Manipulating Data with dplyr 1
+## 647 78719 Manipulating Data with dplyr 1
+## 648 78719 Plotting_Systems 1
+## 649 78719 Matrices and Data Frames 1
+## 650 78719 Logic 1
+## 651 78719 Manipulating Data with dplyr 1
+## 652 78719 Manipulating Data with dplyr 1
+## 653 78719 Manipulating Data with dplyr 1
+## 654 78719 Tidying Data with tidyr NA
+## 655 78719 Manipulating Data with dplyr 1
+## 656 78719 Manipulating Data with dplyr 1
+## 657 78719 Matrices and Data Frames 1
+## 658 78719 Manipulating Data with dplyr 1
+## 659 78719 Functions 1
+## 660 78719 Manipulating Data with dplyr 1
+## 661 78719 Manipulating Data with dplyr 1
+## 662 78719 Manipulating Data with dplyr 1
+## 663 78719 Manipulating Data with dplyr 1
+## 664 78719 Logic 1
+## 665 78719 Logic 1
+## 666 78719 Manipulating Data with dplyr 1
+## 667 78719 Manipulating Data with dplyr 1
+## 668 78719 Manipulating Data with dplyr 1
+## 669 78719 Manipulating Data with dplyr 1
+## 670 78719 Functions 1
+## 671 78719 Functions 1
+## 672 78719 Logic 1
+## 673 78719 Tidying Data with tidyr 1
+## 674 78719 Manipulating Data with dplyr 1
+## 675 78719 Tidying Data with tidyr 1
+## 676 78719 Functions 1
+## 677 78719 Functions 1
+## 678 78719 Looking at Data 1
+## 679 78719 Logic 0
+## 680 78719 Tidying Data with tidyr 1
+## 681 78719 Functions 1
+## 682 78719 Manipulating Data with dplyr 1
+## 683 78719 Functions 1
+## 684 78719 Manipulating Data with dplyr 1
+## 685 78719 Matrices and Data Frames 1
+## 686 78719 Logic 1
+## 687 78719 Manipulating Data with dplyr 1
+## 688 78719 Looking at Data 1
+## 689 78719 Matrices and Data Frames NA
+## 690 78719 Manipulating Data with dplyr 1
+## 691 78719 Tidying Data with tidyr 1
+## 692 78719 Tidying Data with tidyr 1
+## 693 78719 Tidying Data with tidyr 1
+## 694 78719 Manipulating Data with dplyr 1
+## 695 78719 Logic 0
+## 696 78719 Manipulating Data with dplyr 1
+## 697 78719 Manipulating Data with dplyr 1
+## 698 98193 NA
+## 699 44419 Matrices and Data Frames 1
+## 700 44419 Basic Building Blocks 1
+## 701 44419 Basic Building Blocks 1
+## 702 44419 Dates and Times 1
+## 703 44419 Basic Building Blocks 1
+## 704 44419 Basic Building Blocks 1
+## 705 44419 Basic Building Blocks 1
+## 706 44419 Functions 1
+## 707 44419 Basic Building Blocks 1
+## 708 44419 Basic Building Blocks 1
+## 709 44419 Dates and Times 1
+## 710 44419 Vectors 1
+## 711 44419 Vectors 0
+## 712 44419 Vectors 1
+## 713 44419 Vectors 1
+## 714 44419 Vectors 1
+## 715 44419 Vectors 1
+## 716 44419 Vectors 0
+## 717 44419 Basic Building Blocks 1
+## 718 44419 Basic Building Blocks 1
+## 719 44419 Basic Building Blocks 1
+## 720 44419 Functions 1
+## 721 44419 Workspace and Files 1
+## 722 44419 NA
+## 723 44419 Dates and Times 1
+## 724 44419 Functions 1
+## 725 44419 Subsetting Vectors 1
+## 726 44419 Vectors 1
+## 727 44419 Basic Building Blocks 1
+## 728 44419 Basic Building Blocks 1
+## 729 44419 Basic Building Blocks 1
+## 730 44419 Basic Building Blocks 1
+## 731 44419 Basic Building Blocks 1
+## 732 44419 Basic Building Blocks 1
+## 733 44419 Functions 1
+## 734 44419 Functions 1
+## 735 44419 Functions 0
+## 736 44419 Workspace and Files 1
+## 737 44419 Dates and Times 1
+## 738 44419 Dates and Times 1
+## 739 44419 Dates and Times 1
+## 740 44419 Dates and Times 1
+## 741 44419 Vectors 1
+## 742 44419 Vectors 1
+## 743 44419 Vectors 1
+## 744 44419 Vectors 1
+## 745 44419 Dates and Times 1
+## 746 44419 Dates and Times 1
+## 747 44419 Matrices and Data Frames 1
+## 748 44419 Workspace and Files 1
+## 749 44419 Dates and Times 1
+## 750 44419 Logic 1
+## 751 44419 Logic 1
+## 752 44419 Functions 1
+## 753 44419 Dates and Times 1
+## 754 44419 Dates and Times 1
+## 755 44419 Dates and Times 1
+## 756 44419 Dates and Times 1
+## 757 44419 Dates and Times 1
+## 758 44419 Logic 1
+## 759 44419 Vectors 1
+## 760 44419 Dates and Times 1
+## 761 44419 Dates and Times 1
+## 762 44419 Functions 0
+## 763 44419 Functions 0
+## 764 44419 Missing Values 1
+## 765 44419 Logic 0
+## 766 44419 Logic 1
+## 767 44419 Logic 1
+## 768 44419 Logic 1
+## 769 44419 Logic 0
+## 770 44419 Logic 0
+## 771 44419 Vectors 1
+## 772 44419 Matrices and Data Frames 1
+## 773 44419 Matrices and Data Frames 1
+## 774 44419 Workspace and Files 1
+## 775 44419 Vectors 1
+## 776 44419 Vectors 1
+## 777 44419 Vectors 1
+## 778 44419 Missing Values 1
+## 779 44419 Missing Values 1
+## 780 44419 Functions 1
+## 781 44419 Functions 0
+## 782 44419 Functions 0
+## 783 44419 Functions 0
+## 784 44419 Functions 0
+## 785 44419 Functions 0
+## 786 44419 Functions 0
+## 787 44419 Functions 0
+## 788 44419 Missing Values 1
+## 789 44419 Missing Values 1
+## 790 44419 Missing Values 1
+## 791 44419 Vectors 1
+## 792 44419 Vectors 1
+## 793 44419 Vectors 1
+## 794 44419 Functions 0
+## 795 44419 Basic Building Blocks 1
+## 796 44419 Basic Building Blocks 1
+## 797 44419 Basic Building Blocks 1
+## 798 44419 Basic Building Blocks 1
+## 799 44419 Basic Building Blocks 1
+## 800 44419 Vectors 1
+## 801 44419 Basic Building Blocks 1
+## 802 44419 Basic Building Blocks 1
+## 803 44419 Basic Building Blocks 1
+## 804 44419 Logic 1
+## 805 44419 Subsetting Vectors 1
+## 806 44419 Vectors 0
+## 807 44419 Vectors 0
+## 808 44419 Vectors NA
+## 809 44419 Vectors 1
+## 810 44419 Vectors 0
+## 811 44419 Matrices and Data Frames 1
+## 812 44419 Basic Building Blocks NA
+## 813 44419 Workspace and Files 1
+## 814 44419 Basic Building Blocks 1
+## 815 44419 Logic 1
+## 816 44419 Logic 1
+## 817 44419 Vectors 1
+## 818 44419 Vectors 1
+## 819 44419 Subsetting Vectors 1
+## 820 44419 Missing Values 1
+## 821 44419 Subsetting Vectors 1
+## 822 44419 Subsetting Vectors 0
+## 823 44419 Subsetting Vectors 0
+## 824 44419 Subsetting Vectors 0
+## 825 44419 Subsetting Vectors 1
+## 826 44419 Subsetting Vectors 1
+## 827 44419 Logic 1
+## 828 44419 Workspace and Files 1
+## 829 44419 Workspace and Files 1
+## 830 44419 Logic 0
+## 831 44419 Subsetting Vectors 1
+## 832 44419 Vectors 1
+## 833 44419 Vectors 1
+## 834 44419 Missing Values 1
+## 835 44419 Missing Values 1
+## 836 44419 Missing Values 1
+## 837 44419 Missing Values 1
+## 838 44419 Missing Values 1
+## 839 44419 Missing Values 1
+## 840 44419 Workspace and Files 1
+## 841 44419 Workspace and Files 1
+## 842 44419 Workspace and Files 1
+## 843 44419 Workspace and Files 1
+## 844 44419 Vectors 1
+## 845 44419 Vectors 1
+## 846 44419 Matrices and Data Frames 1
+## 847 44419 Vectors 1
+## 848 44419 Workspace and Files 1
+## 849 44419 Subsetting Vectors 1
+## 850 44419 Vectors 1
+## 851 44419 Basic Building Blocks 0
+## 852 44419 Subsetting Vectors 1
+## 853 44419 Subsetting Vectors 0
+## 854 44419 Vectors 1
+## 855 44419 Matrices and Data Frames 0
+## 856 44419 Subsetting Vectors 1
+## 857 44419 Workspace and Files 1
+## 858 44419 Vectors 1
+## 859 44419 Vectors 1
+## 860 44419 Vectors 1
+## 861 44419 Missing Values 1
+## 862 44419 Matrices and Data Frames 1
+## 863 44419 Missing Values NA
+## 864 44419 Logic 1
+## 865 44419 Matrices and Data Frames 1
+## 866 44419 NA
+## 867 44419 Matrices and Data Frames 1
+## 868 44419 Matrices and Data Frames 1
+## 869 44419 Basic Building Blocks 1
+## 870 44419 Matrices and Data Frames 1
+## 871 44419 Basic Building Blocks 1
+## 872 44419 Basic Building Blocks 1
+## 873 44419 Subsetting Vectors 0
+## 874 44419 Subsetting Vectors 1
+## 875 44419 Matrices and Data Frames 1
+## 876 44419 Logic 1
+## 877 44419 Matrices and Data Frames 1
+## 878 44419 Basic Building Blocks 0
+## 879 44419 Logic 1
+## 880 44419 Workspace and Files 0
+## 881 44419 Logic 1
+## 882 44419 Basic Building Blocks 1
+## 883 44419 Workspace and Files 1
+## 884 44419 Workspace and Files 0
+## 885 44419 Matrices and Data Frames 1
+## 886 44419 Logic 1
+## 887 14748 Dates and Times 1
+## 888 14748 Basic Building Blocks 1
+## 889 14748 Dates and Times 1
+## 890 14748 Basic Building Blocks 0
+## 891 14748 Dates and Times 1
+## 892 14748 Subsetting Vectors 1
+## 893 14748 Subsetting Vectors 1
+## 894 14748 Subsetting Vectors 1
+## 895 14748 Basic Building Blocks 1
+## 896 14748 Subsetting Vectors 1
+## 897 14748 Basic Building Blocks 1
+## 898 14748 Dates and Times 1
+## 899 14748 Workspace and Files 1
+## 900 14748 Subsetting Vectors 1
+## 901 14748 Workspace and Files 1
+## 902 14748 Functions 1
+## 903 14748 Dates and Times 1
+## 904 14748 Subsetting Vectors 1
+## 905 14748 Basic Building Blocks 1
+## 906 14748 Missing Values 1
+## 907 14748 Dates and Times 0
+## 908 14748 Dates and Times 1
+## 909 14748 Vectors 1
+## 910 14748 Vectors 0
+## 911 14748 Dates and Times 1
+## 912 14748 Subsetting Vectors 1
+## 913 14748 Subsetting Vectors 1
+## 914 14748 Subsetting Vectors NA
+## 915 14748 Logic 1
+## 916 14748 Dates and Times 1
+## 917 14748 Subsetting Vectors 1
+## 918 14748 Functions 1
+## 919 14748 Dates and Times 1
+## 920 14748 Logic 1
+## 921 14748 Logic 1
+## 922 14748 Workspace and Files 1
+## 923 14748 Workspace and Files 0
+## 924 14748 Vectors 1
+## 925 14748 Workspace and Files 1
+## 926 14748 Subsetting Vectors 0
+## 927 14748 Subsetting Vectors 1
+## 928 14748 Dates and Times 1
+## 929 14748 Logic 1
+## 930 14748 Workspace and Files 1
+## 931 14748 Workspace and Files 1
+## 932 14748 Basic Building Blocks 1
+## 933 14748 Dates and Times 1
+## 934 14748 Workspace and Files 0
+## 935 14748 Subsetting Vectors 1
+## 936 14748 Logic 1
+## 937 14748 Functions 1
+## 938 14748 Subsetting Vectors 1
+## 939 14748 Subsetting Vectors 1
+## 940 14748 Workspace and Files 1
+## 941 14748 Dates and Times 1
+## 942 14748 Subsetting Vectors 1
+## 943 14748 Subsetting Vectors 1
+## 944 14748 Subsetting Vectors 1
+## 945 14748 Dates and Times 1
+## 946 14748 Functions 1
+## 947 14748 Missing Values 1
+## 948 14748 Functions 0
+## 949 14748 Functions 0
+## 950 14748 Missing Values 1
+## 951 14748 Missing Values 1
+## 952 14748 Vectors 1
+## 953 14748 Dates and Times 1
+## 954 14748 Dates and Times 1
+## 955 14748 Dates and Times 1
+## 956 14748 Basic Building Blocks 0
+## 957 14748 Workspace and Files 1
+## 958 14748 Subsetting Vectors 1
+## 959 14748 Basic Building Blocks 1
+## 960 14748 Logic 1
+## 961 14748 Logic 1
+## 962 14748 Logic 0
+## 963 14748 Logic 1
+## 964 14748 Logic 1
+## 965 14748 Logic 1
+## 966 14748 Logic 1
+## 967 14748 Logic 1
+## 968 14748 Subsetting Vectors 0
+## 969 14748 Dates and Times 1
+## 970 14748 Dates and Times 1
+## 971 14748 Basic Building Blocks 1
+## 972 14748 Subsetting Vectors 0
+## 973 14748 Subsetting Vectors 0
+## 974 14748 Subsetting Vectors 1
+## 975 14748 Subsetting Vectors 0
+## 976 14748 Workspace and Files 1
+## 977 14748 Workspace and Files 1
+## 978 14748 Subsetting Vectors 1
+## 979 14748 Workspace and Files 1
+## 980 14748 Basic Building Blocks 1
+## 981 14748 Subsetting Vectors 1
+## 982 14748 Vectors 1
+## 983 14748 Vectors 1
+## 984 14748 Vectors 1
+## 985 14748 Basic Building Blocks 1
+## 986 14748 Logic 1
+## 987 14748 Functions 1
+## 988 14748 Missing Values 1
+## 989 14748 Basic Building Blocks 1
+## 990 14748 Logic 1
+## 991 14748 Logic 0
+## 992 14748 Functions 1
+## 993 14748 Basic Building Blocks 0
+## 994 14748 Basic Building Blocks 1
+## 995 14748 Basic Building Blocks 1
+## 996 14748 Missing Values 1
+## 997 14748 Basic Building Blocks 1
+## 998 14748 Missing Values 1
+## 999 14748 Missing Values 1
+## 1000 14748 Basic Building Blocks 1
+## 1001 14748 Basic Building Blocks 1
+## 1002 14748 Workspace and Files 1
+## 1003 14748 Basic Building Blocks 1
+## 1004 14748 Basic Building Blocks NA
+## 1005 14748 Functions 1
+## 1006 14748 Functions 1
+## 1007 14748 Subsetting Vectors 1
+## 1008 14748 Logic 0
+## 1009 14748 Subsetting Vectors 0
+## 1010 14748 Subsetting Vectors 0
+## 1011 14748 Logic 1
+## 1012 14748 Subsetting Vectors 0
+## 1013 14748 Logic 1
+## 1014 14748 Subsetting Vectors 0
+## 1015 14748 Subsetting Vectors 1
+## 1016 14748 Dates and Times 1
+## 1017 14748 Dates and Times 1
+## 1018 14748 Workspace and Files 1
+## 1019 14748 Dates and Times 1
+## 1020 14748 Workspace and Files 1
+## 1021 14748 Basic Building Blocks 1
+## 1022 14748 Basic Building Blocks 1
+## 1023 14748 Basic Building Blocks 1
+## 1024 14748 Basic Building Blocks 1
+## 1025 14748 Functions 1
+## 1026 14748 Missing Values 1
+## 1027 14748 Functions 1
+## 1028 14748 Workspace and Files 0
+## 1029 14748 Subsetting Vectors 1
+## 1030 14748 Subsetting Vectors 0
+## 1031 14748 Functions 0
+## 1032 14748 Logic 0
+## 1033 14748 Functions NA
+## 1034 14748 Missing Values 1
+## 1035 14748 Missing Values 1
+## 1036 14748 Logic 1
+## 1037 14748 Missing Values 1
+## 1038 14748 Basic Building Blocks 1
+## 1039 14748 Basic Building Blocks 1
+## 1040 14748 Missing Values NA
+## 1041 14748 Functions 1
+## 1042 14748 Dates and Times 1
+## 1043 14748 Functions 1
+## 1044 14748 Subsetting Vectors 1
+## 1045 14748 Subsetting Vectors 1
+## 1046 14748 Subsetting Vectors 1
+## 1047 14748 Functions 1
+## 1048 14748 Functions 1
+## 1049 14748 Workspace and Files 1
+## 1050 14748 Workspace and Files 1
+## 1051 14748 Subsetting Vectors 0
+## 1052 14748 Logic 1
+## 1053 14748 Workspace and Files 1
+## 1054 14748 Functions 1
+## 1055 14748 Functions 1
+## 1056 14748 Workspace and Files 1
+## 1057 14748 Functions 0
+## 1058 14748 Logic 1
+## 1059 14748 Dates and Times 1
+## 1060 14748 Logic 0
+## 1061 14748 Workspace and Files 1
+## 1062 14748 Workspace and Files NA
+## 1063 14748 Vectors 1
+## 1064 14748 Vectors 1
+## 1065 14748 Logic 1
+## 1066 14748 Functions 0
+## 1067 14748 Functions 1
+## 1068 14748 Dates and Times 1
+## 1069 14748 Functions 1
+## 1070 14748 Workspace and Files 1
+## 1071 14748 Workspace and Files 1
+## 1072 14748 Functions 0
+## 1073 14748 Logic 0
+## 1074 14748 Logic 1
+## 1075 14748 Logic 1
+## 1076 14748 Functions 0
+## 1077 14748 Logic 1
+## 1078 14748 Functions 0
+## 1079 14748 Functions 0
+## 1080 14748 Vectors 1
+## 1081 14748 Functions 0
+## 1082 14748 Functions 0
+## 1083 14748 Functions 1
+## 1084 14748 Functions 0
+## 1085 14748 Functions 0
+## 1086 14748 Vectors NA
+## 1087 14748 Vectors 1
+## 1088 14748 Logic NA
+## 1089 14748 Logic 0
+## 1090 14748 Logic 1
+## 1091 14748 Workspace and Files 1
+## 1092 14748 Subsetting Vectors 0
+## 1093 14748 Workspace and Files 1
+## 1094 14748 Functions 1
+## 1095 14748 Vectors 1
+## 1096 14748 Functions 0
+## 1097 14748 Functions 0
+## 1098 14748 Functions 1
+## 1099 14748 Functions 1
+## 1100 14748 Missing Values 1
+## 1101 14748 Logic 0
+## 1102 14748 Functions 0
+## 1103 14748 Logic 1
+## 1104 14748 Logic 0
+## 1105 14748 Logic 1
+## 1106 14748 Dates and Times NA
+## 1107 14748 Logic 1
+## 1108 14748 Functions 0
+## 1109 14748 Vectors 1
+## 1110 14748 Missing Values 1
+## 1111 14748 Functions 0
+## 1112 14748 Vectors 1
+## 1113 14748 Vectors 1
+## 1114 14748 Vectors 1
+## 1115 14748 Logic 1
+## 1116 14748 Dates and Times 1
+## 1117 14748 Functions 0
+## 1118 14748 Logic 1
+## 1119 14748 Logic 1
+## 1120 14748 Functions 1
+## 1121 14748 Vectors 1
+## 1122 14748 Functions 1
+## 1123 14748 Logic 1
+## 1124 14748 Vectors 0
+## 1125 14748 Functions 1
+## 1126 14748 Vectors 1
+## 1127 14748 Subsetting Vectors 0
+## 1128 14748 Dates and Times 1
+## 1129 14748 Vectors 1
+## 1130 14748 Logic 1
+## 1131 14748 Logic 1
+## 1132 14748 Functions 1
+## 1133 14748 Functions 0
+## 1134 14748 Functions 1
+## 1135 14748 Dates and Times 1
+## 1136 14748 Functions 0
+## 1137 14748 Logic 1
+## 1138 14748 Logic 0
+## 1139 14748 Dates and Times 1
+## 1140 14748 Vectors 1
+## 1141 14748 Logic 1
+## 1142 14748 Functions 1
+## 1143 88135 Basic Building Blocks 0
+## 1144 88135 Basic Building Blocks NA
+## 1145 88135 Basic Building Blocks 1
+## 1146 88135 Basic Building Blocks 1
+## 1147 88135 Basic Building Blocks 1
+## 1148 88135 Basic Building Blocks 1
+## 1149 88135 Basic Building Blocks 0
+## 1150 88135 Basic Building Blocks 1
+## 1151 88135 Basic Building Blocks 1
+## 1152 88135 Basic Building Blocks 1
+## 1153 88135 Basic Building Blocks 1
+## 1154 88135 Basic Building Blocks 1
+## 1155 88135 Basic Building Blocks 1
+## 1156 88135 Basic Building Blocks 0
+## 1157 88135 Basic Building Blocks 1
+## 1158 88135 Basic Building Blocks 0
+## 1159 88135 Basic Building Blocks 1
+## 1160 88135 Basic Building Blocks 0
+## 1161 88135 Basic Building Blocks 1
+## 1162 88135 Basic Building Blocks 1
+## 1163 88135 Basic Building Blocks 1
+## 1164 88135 Basic Building Blocks 1
+## 1165 88135 Basic Building Blocks 1
+## 1166 88135 Basic Building Blocks 0
+## 1167 88135 Basic Building Blocks 1
+## 1168 88135 Basic Building Blocks 1
+## 1169 88135 Basic Building Blocks 1
+## 1170 88135 Basic Building Blocks 1
+## 1171 88135 Basic Building Blocks 1
+## 1172 55259 Workspace and Files 1
+## 1173 55259 Workspace and Files 1
+## 1174 55259 Workspace and Files 1
+## 1175 55259 Workspace and Files 1
+## 1176 55259 Workspace and Files 1
+## 1177 55259 Workspace and Files 1
+## 1178 55259 Workspace and Files 1
+## 1179 55259 Workspace and Files 1
+## 1180 55259 Workspace and Files 0
+## 1181 55259 Workspace and Files NA
+## 1182 55259 Workspace and Files 1
+## 1183 55259 Workspace and Files 1
+## 1184 55259 Workspace and Files 0
+## 1185 55259 Workspace and Files 1
+## 1186 55259 Workspace and Files 1
+## 1187 55259 Workspace and Files 1
+## 1188 55259 Workspace and Files 1
+## 1189 55259 Workspace and Files 1
+## 1190 55259 Workspace and Files 1
+## 1191 55259 Workspace and Files 1
+## 1192 55259 Workspace and Files 0
+## 1193 55259 Workspace and Files 1
+## 1194 55259 Workspace and Files 1
+## 1195 55259 Workspace and Files 1
+## 1196 55259 Workspace and Files 1
+## 1197 55259 Workspace and Files 1
+## 1198 55259 Workspace and Files 0
+## 1199 55259 Workspace and Files 1
+## 1200 75332 Workspace and Files 0
+## 1201 75332 Workspace and Files 1
+## 1202 75332 Workspace and Files 0
+## 1203 75332 Dates and Times 1
+## 1204 75332 Dates and Times 1
+## 1205 75332 Dates and Times 1
+## 1206 75332 Dates and Times 1
+## 1207 75332 Workspace and Files 1
+## 1208 75332 Workspace and Files 0
+## 1209 75332 Workspace and Files 1
+## 1210 75332 Workspace and Files 0
+## 1211 75332 Workspace and Files 1
+## 1212 75332 Workspace and Files 0
+## 1213 75332 Workspace and Files 1
+## 1214 75332 Dates and Times 0
+## 1215 75332 Dates and Times 1
+## 1216 75332 Workspace and Files 1
+## 1217 75332 Workspace and Files 1
+## 1218 75332 Vectors 0
+## 1219 75332 Vectors 0
+## 1220 75332 Missing Values 1
+## 1221 75332 Missing Values 1
+## 1222 75332 Missing Values 1
+## 1223 75332 Missing Values 1
+## 1224 75332 Missing Values 1
+## 1225 75332 Missing Values 1
+## 1226 75332 Missing Values 1
+## 1227 75332 Missing Values 1
+## 1228 75332 Missing Values 1
+## 1229 75332 Missing Values 1
+## 1230 75332 Missing Values 1
+## 1231 75332 Missing Values 1
+## 1232 75332 Missing Values 1
+## 1233 75332 Missing Values 1
+## 1234 75332 Basic Building Blocks 1
+## 1235 75332 Missing Values NA
+## 1236 75332 Subsetting Vectors 1
+## 1237 75332 Logic 1
+## 1238 75332 Logic 1
+## 1239 75332 Logic 1
+## 1240 75332 Logic 1
+## 1241 75332 Logic 1
+## 1242 75332 Logic 1
+## 1243 75332 Logic 1
+## 1244 75332 Logic 1
+## 1245 75332 Logic 1
+## 1246 75332 Logic 1
+## 1247 75332 Logic 1
+## 1248 75332 Logic 1
+## 1249 75332 Logic 1
+## 1250 75332 Logic 1
+## 1251 75332 Logic 1
+## 1252 75332 Workspace and Files 1
+## 1253 75332 Workspace and Files 1
+## 1254 75332 Workspace and Files 1
+## 1255 75332 Workspace and Files 1
+## 1256 75332 Logic 1
+## 1257 75332 NA
+## 1258 75332 Dates and Times 1
+## 1259 75332 Dates and Times 1
+## 1260 75332 Dates and Times 1
+## 1261 75332 Dates and Times 1
+## 1262 75332 Dates and Times 1
+## 1263 75332 Dates and Times 1
+## 1264 75332 Dates and Times 1
+## 1265 75332 Dates and Times 1
+## 1266 75332 Dates and Times 1
+## 1267 75332 Dates and Times 1
+## 1268 75332 Dates and Times 1
+## 1269 75332 Basic Building Blocks 1
+## 1270 75332 Basic Building Blocks 1
+## 1271 75332 Basic Building Blocks 1
+## 1272 75332 Basic Building Blocks 1
+## 1273 75332 Basic Building Blocks 1
+## 1274 75332 Vectors 1
+## 1275 75332 Vectors 1
+## 1276 75332 Vectors 1
+## 1277 75332 Subsetting Vectors 1
+## 1278 75332 Subsetting Vectors 1
+## 1279 75332 Subsetting Vectors 1
+## 1280 75332 Subsetting Vectors 1
+## 1281 75332 Vectors 0
+## 1282 75332 Vectors 1
+## 1283 75332 Vectors 1
+## 1284 75332 Vectors 0
+## 1285 75332 Vectors 1
+## 1286 75332 Vectors 1
+## 1287 75332 Basic Building Blocks 1
+## 1288 75332 Basic Building Blocks 1
+## 1289 75332 Basic Building Blocks 1
+## 1290 75332 Vectors 1
+## 1291 75332 NA
+## 1292 75332 Vectors 1
+## 1293 75332 Logic 1
+## 1294 75332 Logic 1
+## 1295 75332 Logic 1
+## 1296 75332 Vectors 1
+## 1297 75332 Vectors 1
+## 1298 75332 Vectors 1
+## 1299 75332 Basic Building Blocks 1
+## 1300 75332 Subsetting Vectors 1
+## 1301 75332 Subsetting Vectors 1
+## 1302 75332 Subsetting Vectors 1
+## 1303 75332 Basic Building Blocks 1
+## 1304 75332 Basic Building Blocks 1
+## 1305 75332 Basic Building Blocks 1
+## 1306 75332 Basic Building Blocks 1
+## 1307 75332 Basic Building Blocks 1
+## 1308 75332 Basic Building Blocks 1
+## 1309 75332 Subsetting Vectors 1
+## 1310 75332 Subsetting Vectors 1
+## 1311 75332 Subsetting Vectors 1
+## 1312 75332 Subsetting Vectors 1
+## 1313 75332 Subsetting Vectors 1
+## 1314 75332 Subsetting Vectors 1
+## 1315 75332 Subsetting Vectors 0
+## 1316 75332 Subsetting Vectors 1
+## 1317 75332 Vectors 1
+## 1318 75332 Vectors 1
+## 1319 75332 Vectors 1
+## 1320 80970 Workspace and Files 1
+## 1321 80970 Looking at Data 1
+## 1322 80970 Workspace and Files 1
+## 1323 80970 Grouping and Chaining with dplyr 1
+## 1324 80970 Grouping and Chaining with dplyr 1
+## 1325 80970 Looking at Data 1
+## 1326 80970 Workspace and Files 1
+## 1327 80970 Looking at Data 0
+## 1328 80970 Looking at Data 1
+## 1329 80970 Grouping and Chaining with dplyr 1
+## 1330 80970 Grouping and Chaining with dplyr 0
+## 1331 80970 Workspace and Files NA
+## 1332 80970 Grouping and Chaining with dplyr 0
+## 1333 80970 Grouping and Chaining with dplyr 0
+## 1334 80970 Grouping and Chaining with dplyr 1
+## 1335 80970 Grouping and Chaining with dplyr 1
+## 1336 80970 Grouping and Chaining with dplyr 1
+## 1337 80970 Looking at Data 1
+## 1338 80970 Looking at Data 1
+## 1339 80970 Workspace and Files 0
+## 1340 80970 Workspace and Files 1
+## 1341 80970 Grouping and Chaining with dplyr 0
+## 1342 80970 Workspace and Files 1
+## 1343 80970 Vectors 1
+## 1344 80970 Workspace and Files 0
+## 1345 80970 Workspace and Files 1
+## 1346 80970 Vectors 1
+## 1347 80970 Grouping and Chaining with dplyr 0
+## 1348 80970 Grouping and Chaining with dplyr 1
+## 1349 80970 Grouping and Chaining with dplyr 1
+## 1350 80970 Looking at Data 1
+## 1351 80970 Grouping and Chaining with dplyr 1
+## 1352 80970 Grouping and Chaining with dplyr 1
+## 1353 80970 Workspace and Files 0
+## 1354 80970 Dates and Times 1
+## 1355 80970 Workspace and Files 1
+## 1356 80970 Workspace and Files 1
+## 1357 80970 Vectors 0
+## 1358 80970 Vectors 0
+## 1359 80970 Logic 1
+## 1360 80970 Workspace and Files 1
+## 1361 80970 Workspace and Files 1
+## 1362 80970 Workspace and Files 0
+## 1363 80970 Workspace and Files 1
+## 1364 80970 Workspace and Files 1
+## 1365 80970 Workspace and Files 1
+## 1366 80970 Functions 1
+## 1367 80970 Functions 1
+## 1368 80970 Functions 1
+## 1369 80970 Functions 1
+## 1370 80970 Workspace and Files 1
+## 1371 80970 Logic 1
+## 1372 80970 Functions 1
+## 1373 80970 Functions 1
+## 1374 80970 Functions 1
+## 1375 80970 Functions 1
+## 1376 80970 Workspace and Files 1
+## 1377 80970 Workspace and Files 1
+## 1378 80970 Workspace and Files 1
+## 1379 80970 Functions 1
+## 1380 80970 Functions 0
+## 1381 80970 Functions 1
+## 1382 80970 Functions 1
+## 1383 80970 Functions 1
+## 1384 80970 Functions 1
+## 1385 80970 Grouping and Chaining with dplyr 1
+## 1386 80970 Grouping and Chaining with dplyr NA
+## 1387 80970 Looking at Data 1
+## 1388 80970 Looking at Data 1
+## 1389 80970 Looking at Data 1
+## 1390 80970 Looking at Data 1
+## 1391 80970 Workspace and Files 1
+## 1392 80970 Workspace and Files 1
+## 1393 80970 Dates and Times 1
+## 1394 80970 Tidying Data with tidyr 0
+## 1395 80970 Tidying Data with tidyr 1
+## 1396 80970 Tidying Data with tidyr 1
+## 1397 80970 Tidying Data with tidyr 1
+## 1398 80970 Tidying Data with tidyr 1
+## 1399 80970 Tidying Data with tidyr NA
+## 1400 80970 Grouping and Chaining with dplyr 1
+## 1401 80970 Grouping and Chaining with dplyr 1
+## 1402 80970 Grouping and Chaining with dplyr 1
+## 1403 80970 Grouping and Chaining with dplyr 0
+## 1404 80970 Grouping and Chaining with dplyr 1
+## 1405 80970 Grouping and Chaining with dplyr 1
+## 1406 80970 Grouping and Chaining with dplyr 1
+## 1407 80970 Grouping and Chaining with dplyr 1
+## 1408 80970 Grouping and Chaining with dplyr 1
+## 1409 80970 Grouping and Chaining with dplyr 1
+## 1410 80970 Grouping and Chaining with dplyr 1
+## 1411 80970 Plotting_Systems 1
+## 1412 80970 Plotting_Systems 1
+## 1413 80970 Plotting_Systems 1
+## 1414 80970 Plotting_Systems 1
+## 1415 80970 Plotting_Systems 1
+## 1416 80970 Plotting_Systems 0
+## 1417 80970 Plotting_Systems 1
+## 1418 80970 Plotting_Systems 0
+## 1419 80970 Grouping and Chaining with dplyr 1
+## 1420 80970 Grouping and Chaining with dplyr 1
+## 1421 80970 Grouping and Chaining with dplyr 1
+## 1422 80970 Grouping and Chaining with dplyr 1
+## 1423 80970 Workspace and Files 1
+## 1424 80970 Workspace and Files 1
+## 1425 80970 Workspace and Files 0
+## 1426 80970 Workspace and Files 1
+## 1427 80970 Workspace and Files 0
+## 1428 80970 Workspace and Files 0
+## 1429 80970 Workspace and Files 0
+## 1430 80970 Workspace and Files 1
+## 1431 80970 Grouping and Chaining with dplyr 1
+## 1432 80970 Tidying Data with tidyr 1
+## 1433 80970 Tidying Data with tidyr 1
+## 1434 80970 Manipulating Data with dplyr 1
+## 1435 80970 Manipulating Data with dplyr 0
+## 1436 80970 Manipulating Data with dplyr 1
+## 1437 80970 Manipulating Data with dplyr 1
+## 1438 80970 Manipulating Data with dplyr 1
+## 1439 80970 Manipulating Data with dplyr 1
+## 1440 80970 Manipulating Data with dplyr 0
+## 1441 80970 Logic 1
+## 1442 80970 Logic 1
+## 1443 80970 Logic 1
+## 1444 80970 Logic 1
+## 1445 80970 Logic 1
+## 1446 80970 Logic NA
+## 1447 80970 Dates and Times 1
+## 1448 80970 Dates and Times 1
+## 1449 80970 Vectors 0
+## 1450 80970 Vectors 0
+## 1451 80970 Dates and Times 1
+## 1452 80970 Dates and Times 1
+## 1453 80970 Dates and Times 1
+## 1454 80970 Dates and Times 1
+## 1455 80970 Vectors 0
+## 1456 80970 Vectors 1
+## 1457 80970 Vectors 1
+## 1458 80970 Vectors 1
+## 1459 80970 Vectors 1
+## 1460 80970 Vectors 1
+## 1461 80970 Vectors 1
+## 1462 80970 Vectors 0
+## 1463 80970 Grouping and Chaining with dplyr 1
+## 1464 80970 Grouping and Chaining with dplyr 1
+## 1465 80970 Grouping and Chaining with dplyr 0
+## 1466 80970 Grouping and Chaining with dplyr 1
+## 1467 80970 Grouping and Chaining with dplyr 1
+## 1468 80970 Manipulating Data with dplyr 0
+## 1469 80970 Manipulating Data with dplyr 1
+## 1470 80970 Manipulating Data with dplyr 1
+## 1471 80970 Manipulating Data with dplyr 1
+## 1472 80970 Manipulating Data with dplyr 1
+## 1473 80970 Manipulating Data with dplyr 1
+## 1474 80970 Manipulating Data with dplyr 1
+## 1475 80970 Manipulating Data with dplyr NA
+## 1476 80970 Dates and Times 1
+## 1477 80970 Dates and Times 1
+## 1478 80970 Dates and Times NA
+## 1479 80970 Functions 1
+## 1480 80970 Functions 1
+## 1481 80970 Functions 1
+## 1482 80970 Functions 1
+## 1483 80970 Functions 1
+## 1484 80970 Functions 1
+## 1485 80970 Functions 1
+## 1486 80970 Functions 0
+## 1487 80970 Functions 1
+## 1488 80970 Tidying Data with tidyr 1
+## 1489 80970 Tidying Data with tidyr 1
+## 1490 80970 Tidying Data with tidyr 1
+## 1491 80970 Tidying Data with tidyr 0
+## 1492 80970 Tidying Data with tidyr 1
+## 1493 80970 Tidying Data with tidyr 1
+## 1494 80970 Tidying Data with tidyr 1
+## 1495 80970 Tidying Data with tidyr 0
+## 1496 80970 Tidying Data with tidyr 0
+## 1497 80970 Functions 1
+## 1498 80970 Functions 1
+## 1499 80970 Functions 1
+## 1500 80970 Tidying Data with tidyr 0
+## 1501 80970 Tidying Data with tidyr 1
+## 1502 80970 Tidying Data with tidyr 1
+## 1503 80970 Tidying Data with tidyr 1
+## 1504 80970 Functions 1
+## 1505 80970 Functions 0
+## 1506 80970 Functions 1
+## 1507 80970 Functions 1
+## 1508 80970 Functions 1
+## 1509 80970 Functions NA
+## 1510 80970 Grouping and Chaining with dplyr 1
+## 1511 80970 Grouping and Chaining with dplyr 0
+## 1512 80970 Tidying Data with tidyr 0
+## 1513 80970 Subsetting Vectors 1
+## 1514 80970 Subsetting Vectors 1
+## 1515 80970 Subsetting Vectors 1
+## 1516 80970 Subsetting Vectors 1
+## 1517 80970 Subsetting Vectors 1
+## 1518 80970 Subsetting Vectors 1
+## 1519 80970 Subsetting Vectors 1
+## 1520 80970 Subsetting Vectors 1
+## 1521 80970 Subsetting Vectors 1
+## 1522 80970 Subsetting Vectors 1
+## 1523 80970 Subsetting Vectors 1
+## 1524 80970 Plotting_Systems 1
+## 1525 80970 Plotting_Systems 1
+## 1526 80970 Plotting_Systems 1
+## 1527 80970 Plotting_Systems 0
+## 1528 80970 Plotting_Systems 1
+## 1529 80970 Plotting_Systems 1
+## 1530 80970 Plotting_Systems 1
+## 1531 80970 Plotting_Systems 0
+## 1532 80970 Logic 1
+## 1533 80970 Logic 1
+## 1534 80970 Logic 1
+## 1535 80970 Logic 0
+## 1536 80970 Logic 1
+## 1537 80970 Logic 1
+## 1538 80970 Logic 1
+## 1539 80970 Logic 1
+## 1540 80970 Plotting_Systems 1
+## 1541 80970 Plotting_Systems 1
+## 1542 80970 Plotting_Systems 0
+## 1543 80970 Plotting_Systems 0
+## 1544 80970 Plotting_Systems 0
+## 1545 80970 Plotting_Systems 0
+## 1546 80970 Plotting_Systems 1
+## 1547 80970 Plotting_Systems 1
+## 1548 80970 Plotting_Systems 1
+## 1549 80970 Plotting_Systems 1
+## 1550 80970 Plotting_Systems 0
+## 1551 80970 Plotting_Systems 1
+## 1552 80970 Plotting_Systems 1
+## 1553 80970 Plotting_Systems 1
+## 1554 80970 Plotting_Systems NA
+## 1555 80970 Logic 1
+## 1556 80970 Logic 0
+## 1557 80970 Logic 1
+## 1558 80970 Logic 1
+## 1559 80970 Logic 1
+## 1560 80970 Logic 1
+## 1561 80970 Missing Values 1
+## 1562 80970 Missing Values 1
+## 1563 80970 Manipulating Data with dplyr 1
+## 1564 80970 Manipulating Data with dplyr 1
+## 1565 80970 Manipulating Data with dplyr 0
+## 1566 80970 Manipulating Data with dplyr 1
+## 1567 80970 Manipulating Data with dplyr 1
+## 1568 80970 Manipulating Data with dplyr 1
+## 1569 80970 Manipulating Data with dplyr 1
+## 1570 80970 Dates and Times 1
+## 1571 80970 Dates and Times 1
+## 1572 80970 Manipulating Data with dplyr 1
+## 1573 80970 Manipulating Data with dplyr 1
+## 1574 80970 Manipulating Data with dplyr 1
+## 1575 80970 Manipulating Data with dplyr 0
+## 1576 80970 Manipulating Data with dplyr 1
+## 1577 80970 Dates and Times 1
+## 1578 80970 Dates and Times 1
+## 1579 80970 Dates and Times 0
+## 1580 80970 Dates and Times 1
+## 1581 80970 Dates and Times 1
+## 1582 80970 Dates and Times 1
+## 1583 80970 Dates and Times 1
+## 1584 80970 Dates and Times 1
+## 1585 80970 Vectors 1
+## 1586 80970 Vectors 1
+## 1587 80970 Vectors 0
+## 1588 80970 Vectors 1
+## 1589 80970 Vectors 0
+## 1590 80970 Vectors 1
+## 1591 80970 Vectors 1
+## 1592 80970 Vectors 1
+## 1593 80970 Vectors 1
+## 1594 80970 Vectors 0
+## 1595 80970 Vectors 0
+## 1596 80970 Vectors 1
+## 1597 80970 Vectors 1
+## 1598 80970 Vectors 1
+## 1599 80970 Vectors 1
+## 1600 80970 Vectors NA
+## 1601 80970 Tidying Data with tidyr 1
+## 1602 80970 Tidying Data with tidyr 1
+## 1603 80970 Missing Values 1
+## 1604 80970 Missing Values 1
+## 1605 80970 Missing Values 0
+## 1606 80970 Missing Values 1
+## 1607 80970 Missing Values 1
+## 1608 80970 Missing Values 1
+## 1609 80970 Missing Values 1
+## 1610 80970 Missing Values 0
+## 1611 80970 Missing Values 0
+## 1612 80970 Missing Values 1
+## 1613 80970 Missing Values 1
+## 1614 80970 Missing Values 1
+## 1615 80970 Missing Values 1
+## 1616 80970 Missing Values 1
+## 1617 80970 Missing Values 1
+## 1618 80970 Tidying Data with tidyr 0
+## 1619 80970 Tidying Data with tidyr 0
+## 1620 80970 Tidying Data with tidyr 0
+## 1621 80970 Subsetting Vectors 1
+## 1622 80970 Subsetting Vectors 1
+## 1623 80970 Subsetting Vectors 0
+## 1624 80970 Subsetting Vectors 1
+## 1625 80970 Tidying Data with tidyr 1
+## 1626 80970 Tidying Data with tidyr 1
+## 1627 80970 Tidying Data with tidyr 1
+## 1628 80970 Tidying Data with tidyr 1
+## 1629 80970 Tidying Data with tidyr 0
+## 1630 80970 Tidying Data with tidyr 0
+## 1631 80970 Tidying Data with tidyr 1
+## 1632 80970 Tidying Data with tidyr 1
+## 1633 80970 Subsetting Vectors 1
+## 1634 80970 Logic 1
+## 1635 80970 Logic 1
+## 1636 80970 Dates and Times 1
+## 1637 80970 Tidying Data with tidyr 1
+## 1638 80970 Tidying Data with tidyr 1
+## 1639 80970 Tidying Data with tidyr 1
+## 1640 80970 Tidying Data with tidyr 1
+## 1641 80970 Manipulating Data with dplyr 0
+## 1642 80970 Logic 0
+## 1643 80970 Tidying Data with tidyr 0
+## 1644 80970 Tidying Data with tidyr 1
+## 1645 80970 Subsetting Vectors 1
+## 1646 80970 Subsetting Vectors 1
+## 1647 80970 Subsetting Vectors 1
+## 1648 80970 Subsetting Vectors NA
+## 1649 80970 Logic 1
+## 1650 80970 Logic 1
+## 1651 80970 Logic 1
+## 1652 80970 Logic 1
+## 1653 80970 Manipulating Data with dplyr 1
+## 1654 80970 Logic 1
+## 1655 80970 Dates and Times 1
+## 1656 80970 Logic 0
+## 1657 80970 Logic 1
+## 1658 80970 Manipulating Data with dplyr 1
+## 1659 80970 Manipulating Data with dplyr 0
+## 1660 80970 Manipulating Data with dplyr 1
+## 1661 80970 Logic 1
+## 1662 80970 Logic 1
+## 1663 80970 Logic 1
+## 1664 80970 Logic 1
+## 1665 80970 Logic 1
+## 1666 80970 Logic 1
+## 1667 80970 Dates and Times 1
+## 1668 80970 Subsetting Vectors 1
+## 1669 80970 Dates and Times 0
+## 1670 80970 Dates and Times 1
+## 1671 80970 Logic 1
+## 1672 80970 Logic 1
+## 1673 80970 Logic 0
+## 1674 80970 Dates and Times 1
+## 1675 80970 Dates and Times 1
+## 1676 80970 Manipulating Data with dplyr 1
+## 1677 80970 Manipulating Data with dplyr 1
+## 1678 80970 Looking at Data NA
+## 1679 80970 Manipulating Data with dplyr 1
+## 1680 80970 Dates and Times 1
+## 1681 80970 Tidying Data with tidyr 1
+## 1682 80970 Subsetting Vectors 1
+## 1683 80970 Subsetting Vectors 1
+## 1684 80970 Looking at Data 1
+## 1685 80970 Looking at Data 1
+## 1686 80970 Looking at Data 1
+## 1687 80970 Looking at Data 1
+## 1688 80970 Manipulating Data with dplyr 1
+## 1689 80970 Subsetting Vectors 1
+## 1690 80970 Looking at Data 1
+## 1691 80970 Manipulating Data with dplyr 1
+## 1692 80970 Manipulating Data with dplyr 1
+## 1693 80970 Manipulating Data with dplyr 1
+## 1694 80970 Dates and Times 1
+## 1695 80970 Missing Values NA
+## 1696 80970 Subsetting Vectors 1
+## 1697 80970 Dates and Times 1
+## 1698 80970 Manipulating Data with dplyr 1
+## 1699 80970 Manipulating Data with dplyr 1
+## 1700 80970 Tidying Data with tidyr 1
+## 1701 80970 Subsetting Vectors 0
+## 1702 80970 Manipulating Data with dplyr 1
+## 1703 80970 Subsetting Vectors 0
+## 1704 80970 Dates and Times 0
+## 1705 80970 Subsetting Vectors 1
+## 1706 80970 Manipulating Data with dplyr 1
+## 1707 80970 Manipulating Data with dplyr 1
+## 1708 80970 Tidying Data with tidyr 0
+## 1709 80970 Manipulating Data with dplyr 1
+## 1710 80970 Tidying Data with tidyr 0
+## 1711 80970 Tidying Data with tidyr 1
+## 1712 80970 Manipulating Data with dplyr 1
+## 1713 80970 Manipulating Data with dplyr 1
+## 1714 80970 Subsetting Vectors 1
+## 1715 80970 Tidying Data with tidyr 1
+## 1716 80970 Manipulating Data with dplyr 0
+## 1717 80970 Subsetting Vectors 1
+## 1718 80970 Manipulating Data with dplyr 1
+## 1719 96746 Basic Building Blocks 1
+## 1720 96746 Matrices and Data Frames 0
+## 1721 96746 Basic Building Blocks 1
+## 1722 96746 Matrices and Data Frames 0
+## 1723 96746 Matrices and Data Frames 1
+## 1724 96746 Basic Building Blocks 1
+## 1725 96746 Matrices and Data Frames 1
+## 1726 96746 Matrices and Data Frames 1
+## 1727 96746 Matrices and Data Frames 1
+## 1728 96746 Matrices and Data Frames 0
+## 1729 96746 Basic Building Blocks 1
+## 1730 96746 Basic Building Blocks 1
+## 1731 96746 Matrices and Data Frames 1
+## 1732 96746 Matrices and Data Frames 1
+## 1733 96746 Matrices and Data Frames 1
+## 1734 96746 Matrices and Data Frames 0
+## 1735 96746 Basic Building Blocks 1
+## 1736 96746 Basic Building Blocks 1
+## 1737 96746 Matrices and Data Frames 1
+## 1738 96746 Basic Building Blocks 1
+## 1739 96746 Basic Building Blocks 1
+## 1740 96746 Basic Building Blocks NA
+## 1741 96746 Basic Building Blocks 1
+## 1742 96746 Basic Building Blocks 1
+## 1743 96746 Matrices and Data Frames 0
+## 1744 96746 Matrices and Data Frames 1
+## 1745 96746 Matrices and Data Frames 0
+## 1746 96746 Basic Building Blocks 1
+## 1747 96746 Basic Building Blocks 1
+## 1748 96746 Matrices and Data Frames 1
+## 1749 96746 Matrices and Data Frames 1
+## 1750 96746 Matrices and Data Frames 0
+## 1751 96746 Matrices and Data Frames 0
+## 1752 96746 Matrices and Data Frames 1
+## 1753 96746 Basic Building Blocks 1
+## 1754 96746 Basic Building Blocks 1
+## 1755 96746 Matrices and Data Frames 1
+## 1756 96746 Matrices and Data Frames 1
+## 1757 96746 Matrices and Data Frames 1
+## 1758 96746 Matrices and Data Frames 1
+## 1759 96746 Matrices and Data Frames 1
+## 1760 96746 Basic Building Blocks 1
+## 1761 96746 Basic Building Blocks 1
+## 1762 96746 Basic Building Blocks 1
+## 1763 96746 Matrices and Data Frames 0
+## 1764 96746 Matrices and Data Frames 1
+## 1765 96746 Matrices and Data Frames 1
+## 1766 96746 Matrices and Data Frames 1
+## 1767 96746 Matrices and Data Frames 1
+## 1768 96746 Basic Building Blocks 1
+## 1769 96746 Basic Building Blocks 1
+## 1770 96746 Basic Building Blocks 1
+## 1771 96746 Matrices and Data Frames 1
+## 1772 96746 Matrices and Data Frames NA
+## 1773 96746 Basic Building Blocks 1
+## 1774 96746 Matrices and Data Frames 0
+## 1775 96746 Matrices and Data Frames 0
+## 1776 96746 Matrices and Data Frames 1
+## 1777 96746 Matrices and Data Frames 0
+## 1778 74372 Vectors 1
+## 1779 74372 Basic Building Blocks 1
+## 1780 74372 Vectors 1
+## 1781 74372 Basic Building Blocks 0
+## 1782 74372 Basic Building Blocks 1
+## 1783 74372 Basic Building Blocks 1
+## 1784 74372 Basic Building Blocks 1
+## 1785 74372 Basic Building Blocks 1
+## 1786 74372 Vectors 0
+## 1787 74372 Workspace and Files 1
+## 1788 74372 Basic Building Blocks 1
+## 1789 74372 Vectors 1
+## 1790 74372 Basic Building Blocks 1
+## 1791 74372 Basic Building Blocks 1
+## 1792 74372 Workspace and Files 0
+## 1793 74372 Workspace and Files 1
+## 1794 74372 Vectors 1
+## 1795 74372 Basic Building Blocks 1
+## 1796 74372 Workspace and Files NA
+## 1797 74372 Workspace and Files 1
+## 1798 74372 Workspace and Files 1
+## 1799 74372 Basic Building Blocks 1
+## 1800 74372 Workspace and Files 1
+## 1801 74372 Basic Building Blocks NA
+## 1802 74372 Basic Building Blocks 1
+## 1803 74372 Basic Building Blocks 1
+## 1804 74372 Basic Building Blocks 1
+## 1805 74372 Vectors 1
+## 1806 74372 Workspace and Files 1
+## 1807 74372 Workspace and Files 1
+## 1808 74372 Basic Building Blocks 1
+## 1809 74372 Workspace and Files 1
+## 1810 74372 Vectors 0
+## 1811 74372 Vectors 0
+## 1812 74372 Workspace and Files 1
+## 1813 74372 Workspace and Files 1
+## 1814 74372 Workspace and Files 1
+## 1815 74372 Workspace and Files 0
+## 1816 74372 Workspace and Files 1
+## 1817 74372 Workspace and Files 1
+## 1818 74372 Vectors 1
+## 1819 74372 Workspace and Files 1
+## 1820 74372 Workspace and Files 1
+## 1821 74372 Basic Building Blocks 1
+## 1822 74372 Basic Building Blocks 1
+## 1823 74372 Workspace and Files 0
+## 1824 74372 Workspace and Files 1
+## 1825 74372 Vectors 1
+## 1826 74372 Workspace and Files 1
+## 1827 74372 Vectors 1
+## 1828 74372 Workspace and Files 1
+## 1829 74372 Workspace and Files 1
+## 1830 74372 Workspace and Files 1
+## 1831 74372 Missing Values 1
+## 1832 74372 Vectors 1
+## 1833 74372 Vectors 1
+## 1834 74372 Vectors 1
+## 1835 74372 Workspace and Files 1
+## 1836 74372 Vectors 0
+## 1837 74372 Workspace and Files 1
+## 1838 74372 Basic Building Blocks 1
+## 1839 74372 Basic Building Blocks 1
+## 1840 74372 Missing Values 1
+## 1841 74372 Vectors 0
+## 1842 74372 Vectors 0
+## 1843 74372 Vectors 1
+## 1844 74372 Basic Building Blocks 1
+## 1845 74372 Missing Values 1
+## 1846 74372 Vectors 1
+## 1847 74372 Vectors 1
+## 1848 74372 Missing Values NA
+## 1849 74372 Vectors 1
+## 1850 74372 Vectors 1
+## 1851 74372 Missing Values 1
+## 1852 74372 Vectors 0
+## 1853 74372 Workspace and Files 1
+## 1854 74372 Missing Values 1
+## 1855 74372 Missing Values 0
+## 1856 74372 Vectors 1
+## 1857 74372 Missing Values 1
+## 1858 74372 Missing Values 1
+## 1859 74372 Missing Values 1
+## 1860 74372 Workspace and Files 0
+## 1861 74372 Basic Building Blocks 1
+## 1862 74372 Missing Values 1
+## 1863 74372 Basic Building Blocks 1
+## 1864 74372 Missing Values 1
+## 1865 74372 Missing Values 1
+## 1866 74372 Missing Values 1
+## 1867 74372 Vectors NA
+## 1868 74372 Basic Building Blocks 1
+## 1869 74372 Vectors 1
+## 1870 74372 Vectors 0
+## 1871 74372 Vectors 1
+## 1872 74372 Missing Values 1
+## 1873 74372 Vectors 0
+## 1874 74372 Missing Values 1
+## 1875 45253 NA
+## 1876 16365 Subsetting Vectors 1
+## 1877 16365 Matrices and Data Frames 0
+## 1878 16365 Functions 1
+## 1879 16365 Functions 1
+## 1880 16365 Functions 0
+## 1881 16365 Functions 1
+## 1882 16365 Subsetting Vectors 1
+## 1883 16365 Subsetting Vectors 1
+## 1884 16365 Basic Building Blocks NA
+## 1885 16365 Functions 1
+## 1886 16365 Basic Building Blocks 1
+## 1887 16365 Matrices and Data Frames 1
+## 1888 16365 NA
+## 1889 16365 Basic Building Blocks 1
+## 1890 16365 Matrices and Data Frames 1
+## 1891 16365 Basic Building Blocks 1
+## 1892 16365 Workspace and Files 1
+## 1893 16365 Matrices and Data Frames 1
+## 1894 16365 Matrices and Data Frames 1
+## 1895 16365 Matrices and Data Frames 1
+## 1896 16365 Matrices and Data Frames 1
+## 1897 16365 Matrices and Data Frames 1
+## 1898 16365 Basic Building Blocks 1
+## 1899 16365 Workspace and Files 1
+## 1900 16365 Matrices and Data Frames 0
+## 1901 16365 Basic Building Blocks 1
+## 1902 16365 Dates and Times 1
+## 1903 16365 Matrices and Data Frames 1
+## 1904 16365 Subsetting Vectors 1
+## 1905 16365 Subsetting Vectors 1
+## 1906 16365 Functions 1
+## 1907 16365 Logic 1
+## 1908 16365 Matrices and Data Frames 1
+## 1909 16365 Subsetting Vectors 1
+## 1910 16365 NA
+## 1911 16365 Basic Building Blocks 0
+## 1912 16365 Matrices and Data Frames 1
+## 1913 16365 Workspace and Files 1
+## 1914 16365 Dates and Times 1
+## 1915 16365 Logic 1
+## 1916 16365 Logic 1
+## 1917 16365 Dates and Times 0
+## 1918 16365 Dates and Times 1
+## 1919 16365 Basic Building Blocks 1
+## 1920 16365 Subsetting Vectors 1
+## 1921 16365 Logic 1
+## 1922 16365 Logic 1
+## 1923 16365 Matrices and Data Frames 1
+## 1924 16365 Workspace and Files 1
+## 1925 16365 Matrices and Data Frames 1
+## 1926 16365 Subsetting Vectors 1
+## 1927 16365 Logic 1
+## 1928 16365 Functions 1
+## 1929 16365 Dates and Times 1
+## 1930 16365 Dates and Times 1
+## 1931 16365 Workspace and Files 1
+## 1932 16365 Vectors 1
+## 1933 16365 Basic Building Blocks 1
+## 1934 16365 NA
+## 1935 16365 Functions 1
+## 1936 16365 Functions 1
+## 1937 16365 Matrices and Data Frames 1
+## 1938 16365 Matrices and Data Frames 1
+## 1939 16365 Logic 1
+## 1940 16365 Workspace and Files 0
+## 1941 16365 Logic 1
+## 1942 16365 Vectors 1
+## 1943 16365 Workspace and Files 1
+## 1944 16365 Dates and Times 1
+## 1945 16365 Basic Building Blocks 1
+## 1946 16365 Dates and Times 1
+## 1947 16365 Vectors 0
+## 1948 16365 Matrices and Data Frames 1
+## 1949 16365 Vectors 1
+## 1950 16365 Matrices and Data Frames 1
+## 1951 16365 Basic Building Blocks 1
+## 1952 16365 Basic Building Blocks 1
+## 1953 16365 Logic 1
+## 1954 16365 Dates and Times 1
+## 1955 16365 Missing Values 1
+## 1956 16365 Vectors 1
+## 1957 16365 Vectors 1
+## 1958 16365 Vectors 1
+## 1959 16365 Basic Building Blocks 1
+## 1960 16365 Matrices and Data Frames 1
+## 1961 16365 Basic Building Blocks 1
+## 1962 16365 NA
+## 1963 16365 Vectors 0
+## 1964 16365 Vectors 1
+## 1965 16365 Logic 1
+## 1966 16365 Workspace and Files 1
+## 1967 16365 Functions 1
+## 1968 16365 Vectors 0
+## 1969 16365 Missing Values 1
+## 1970 16365 Dates and Times 1
+## 1971 16365 Dates and Times 1
+## 1972 16365 Functions 1
+## 1973 16365 Vectors 1
+## 1974 16365 Vectors 1
+## 1975 16365 Matrices and Data Frames 1
+## 1976 16365 Basic Building Blocks 0
+## 1977 16365 Basic Building Blocks 1
+## 1978 16365 Matrices and Data Frames 1
+## 1979 16365 Matrices and Data Frames 1
+## 1980 16365 Functions 1
+## 1981 16365 Workspace and Files 1
+## 1982 16365 Functions 0
+## 1983 16365 Functions 0
+## 1984 16365 Functions 1
+## 1985 16365 Workspace and Files 0
+## 1986 16365 Matrices and Data Frames 1
+## 1987 16365 Subsetting Vectors 1
+## 1988 16365 Vectors 0
+## 1989 16365 Vectors 1
+## 1990 16365 Vectors 0
+## 1991 16365 Vectors 1
+## 1992 16365 Vectors 1
+## 1993 16365 Vectors 1
+## 1994 16365 Workspace and Files 1
+## 1995 16365 Logic 1
+## 1996 16365 Logic 1
+## 1997 16365 Dates and Times 0
+## 1998 16365 Functions 1
+## 1999 16365 Matrices and Data Frames 1
+## 2000 16365 Matrices and Data Frames 1
+## 2001 16365 Matrices and Data Frames 1
+## 2002 16365 Subsetting Vectors 0
+## 2003 16365 Matrices and Data Frames 1
+## 2004 16365 Matrices and Data Frames 1
+## 2005 16365 Subsetting Vectors 1
+## 2006 16365 Subsetting Vectors 1
+## 2007 16365 Logic 1
+## 2008 16365 Logic 1
+## 2009 16365 Vectors 1
+## 2010 16365 Dates and Times 1
+## 2011 16365 NA
+## 2012 16365 Matrices and Data Frames 0
+## 2013 16365 Missing Values 1
+## 2014 16365 Functions 1
+## 2015 16365 Logic 1
+## 2016 16365 Logic 1
+## 2017 16365 Dates and Times 1
+## 2018 16365 Workspace and Files 1
+## 2019 16365 Workspace and Files 1
+## 2020 16365 Subsetting Vectors 1
+## 2021 16365 Functions 1
+## 2022 16365 Dates and Times 1
+## 2023 16365 Functions 1
+## 2024 16365 Functions 1
+## 2025 16365 Missing Values 0
+## 2026 16365 Missing Values 1
+## 2027 16365 Matrices and Data Frames 1
+## 2028 16365 Functions 1
+## 2029 16365 Logic 0
+## 2030 16365 Workspace and Files 0
+## 2031 16365 Workspace and Files 1
+## 2032 16365 Workspace and Files 1
+## 2033 16365 Functions 1
+## 2034 16365 Dates and Times 1
+## 2035 16365 Dates and Times 1
+## 2036 16365 Functions 1
+## 2037 16365 Functions 1
+## 2038 16365 Missing Values 1
+## 2039 16365 Missing Values 1
+## 2040 16365 Missing Values NA
+## 2041 16365 Subsetting Vectors 1
+## 2042 16365 Functions 1
+## 2043 16365 Functions 1
+## 2044 16365 Logic 1
+## 2045 16365 Logic 1
+## 2046 16365 Functions 1
+## 2047 16365 Functions 1
+## 2048 16365 Functions 1
+## 2049 16365 Missing Values 0
+## 2050 16365 Functions 1
+## 2051 16365 Functions 0
+## 2052 16365 Functions 1
+## 2053 16365 Functions 1
+## 2054 16365 Functions 1
+## 2055 16365 Missing Values 1
+## 2056 16365 Missing Values 1
+## 2057 16365 Subsetting Vectors 1
+## 2058 16365 Subsetting Vectors 1
+## 2059 16365 Missing Values 1
+## 2060 16365 Missing Values 1
+## 2061 16365 Missing Values 1
+## 2062 16365 Missing Values 1
+## 2063 16365 Functions 1
+## 2064 16365 Functions 1
+## 2065 16365 Missing Values 1
+## 2066 16365 Missing Values 1
+## 2067 68515 Missing Values 1
+## 2068 68515 Vectors NA
+## 2069 68515 Dates and Times 1
+## 2070 68515 Functions 0
+## 2071 68515 Dates and Times 1
+## 2072 68515 Functions 0
+## 2073 68515 Functions 0
+## 2074 68515 Dates and Times 0
+## 2075 68515 Functions 1
+## 2076 68515 Functions 0
+## 2077 68515 Functions 0
+## 2078 68515 Dates and Times 1
+## 2079 68515 Dates and Times 1
+## 2080 68515 Functions 1
+## 2081 68515 Functions 0
+## 2082 68515 Vectors 1
+## 2083 68515 Dates and Times 1
+## 2084 68515 Dates and Times 1
+## 2085 68515 Functions 0
+## 2086 68515 Logic 0
+## 2087 68515 Dates and Times 1
+## 2088 68515 Dates and Times 1
+## 2089 68515 Dates and Times 1
+## 2090 68515 Functions 1
+## 2091 68515 Vectors 1
+## 2092 68515 Vectors 1
+## 2093 68515 Functions 0
+## 2094 68515 Functions 1
+## 2095 68515 Functions 1
+## 2096 68515 Functions 0
+## 2097 68515 Functions 1
+## 2098 68515 Workspace and Files 1
+## 2099 68515 Workspace and Files 0
+## 2100 68515 Functions 1
+## 2101 68515 Logic 1
+## 2102 68515 Functions 0
+## 2103 68515 Vectors 1
+## 2104 68515 Functions 0
+## 2105 68515 Dates and Times 1
+## 2106 68515 Dates and Times 1
+## 2107 68515 Functions 1
+## 2108 68515 Functions 1
+## 2109 68515 Functions 1
+## 2110 68515 Functions 0
+## 2111 68515 Functions 0
+## 2112 68515 Functions 0
+## 2113 68515 Vectors 1
+## 2114 68515 Functions 1
+## 2115 68515 Vectors 1
+## 2116 68515 Functions 0
+## 2117 68515 Functions 0
+## 2118 68515 Functions 1
+## 2119 68515 Dates and Times NA
+## 2120 68515 Functions 1
+## 2121 68515 Functions 0
+## 2122 68515 Workspace and Files 1
+## 2123 68515 Workspace and Files 1
+## 2124 68515 Workspace and Files 1
+## 2125 68515 Functions 0
+## 2126 68515 Functions 0
+## 2127 68515 Dates and Times 1
+## 2128 68515 Vectors 0
+## 2129 68515 Vectors 1
+## 2130 68515 Functions 1
+## 2131 68515 Vectors 0
+## 2132 68515 Vectors 1
+## 2133 68515 Functions 1
+## 2134 68515 Functions 1
+## 2135 68515 Workspace and Files 1
+## 2136 68515 Functions 0
+## 2137 68515 Dates and Times 1
+## 2138 68515 Dates and Times 0
+## 2139 68515 Vectors 1
+## 2140 68515 Workspace and Files 0
+## 2141 68515 Logic 1
+## 2142 68515 Functions 0
+## 2143 68515 Functions 0
+## 2144 68515 Functions 1
+## 2145 68515 Functions 0
+## 2146 68515 Functions 0
+## 2147 68515 Functions 0
+## 2148 68515 Functions 0
+## 2149 68515 Logic 1
+## 2150 68515 Subsetting Vectors 1
+## 2151 68515 Subsetting Vectors 1
+## 2152 68515 Workspace and Files 1
+## 2153 68515 Functions 1
+## 2154 68515 Functions 0
+## 2155 68515 Logic 1
+## 2156 68515 Functions 1
+## 2157 68515 Functions NA
+## 2158 68515 Functions 1
+## 2159 68515 Functions 1
+## 2160 68515 Dates and Times 1
+## 2161 68515 Functions 0
+## 2162 68515 Functions 1
+## 2163 68515 Functions 1
+## 2164 68515 Vectors 1
+## 2165 68515 Vectors 1
+## 2166 68515 Dates and Times 1
+## 2167 68515 Vectors 1
+## 2168 68515 Dates and Times 1
+## 2169 68515 Vectors 1
+## 2170 68515 Vectors 1
+## 2171 68515 Dates and Times 1
+## 2172 68515 Dates and Times 1
+## 2173 68515 Functions 1
+## 2174 68515 Workspace and Files 1
+## 2175 68515 Logic 1
+## 2176 68515 Subsetting Vectors 0
+## 2177 68515 Basic Building Blocks 1
+## 2178 68515 Basic Building Blocks 1
+## 2179 68515 Logic 1
+## 2180 68515 Logic 1
+## 2181 68515 Basic Building Blocks 1
+## 2182 68515 Basic Building Blocks 1
+## 2183 68515 Logic 0
+## 2184 68515 Logic 0
+## 2185 68515 Missing Values 1
+## 2186 68515 Functions 0
+## 2187 68515 Workspace and Files 1
+## 2188 68515 Workspace and Files 1
+## 2189 68515 Functions 0
+## 2190 68515 Functions 0
+## 2191 68515 Functions 0
+## 2192 68515 Functions 1
+## 2193 68515 Functions 0
+## 2194 68515 Workspace and Files 1
+## 2195 68515 Workspace and Files 0
+## 2196 68515 Workspace and Files 1
+## 2197 68515 Missing Values 1
+## 2198 68515 Logic 1
+## 2199 68515 Dates and Times 1
+## 2200 68515 Basic Building Blocks 1
+## 2201 68515 Vectors 1
+## 2202 68515 Vectors 1
+## 2203 68515 Vectors 1
+## 2204 68515 Dates and Times 1
+## 2205 68515 Dates and Times 1
+## 2206 68515 Vectors 1
+## 2207 68515 Basic Building Blocks 1
+## 2208 68515 Functions 0
+## 2209 68515 Dates and Times 1
+## 2210 68515 Dates and Times 1
+## 2211 68515 Functions 1
+## 2212 68515 Functions 1
+## 2213 68515 Basic Building Blocks 1
+## 2214 68515 Logic 1
+## 2215 68515 Logic 1
+## 2216 68515 Logic 1
+## 2217 68515 Subsetting Vectors 1
+## 2218 68515 Subsetting Vectors 0
+## 2219 68515 Basic Building Blocks 1
+## 2220 68515 Basic Building Blocks 1
+## 2221 68515 Logic 0
+## 2222 68515 Subsetting Vectors 1
+## 2223 68515 Basic Building Blocks 1
+## 2224 68515 Workspace and Files 1
+## 2225 68515 Logic 0
+## 2226 68515 Logic 0
+## 2227 68515 Logic 1
+## 2228 68515 Logic 1
+## 2229 68515 Workspace and Files 0
+## 2230 68515 Functions 0
+## 2231 68515 Functions 0
+## 2232 68515 Functions 1
+## 2233 68515 Workspace and Files 1
+## 2234 68515 Subsetting Vectors 1
+## 2235 68515 Logic 1
+## 2236 68515 Logic 1
+## 2237 68515 Logic 1
+## 2238 68515 Missing Values NA
+## 2239 68515 Logic 1
+## 2240 68515 Logic NA
+## 2241 68515 Basic Building Blocks 1
+## 2242 68515 Vectors 1
+## 2243 68515 Dates and Times 1
+## 2244 68515 Basic Building Blocks 1
+## 2245 68515 Basic Building Blocks 1
+## 2246 68515 Dates and Times 1
+## 2247 68515 Logic 1
+## 2248 68515 Basic Building Blocks 0
+## 2249 68515 Workspace and Files 1
+## 2250 68515 Workspace and Files 1
+## 2251 68515 Basic Building Blocks 1
+## 2252 68515 Basic Building Blocks 1
+## 2253 68515 Logic 1
+## 2254 68515 Basic Building Blocks 1
+## 2255 68515 Basic Building Blocks 1
+## 2256 68515 Basic Building Blocks 0
+## 2257 68515 Logic 1
+## 2258 68515 Logic 1
+## 2259 68515 Subsetting Vectors 1
+## 2260 68515 Subsetting Vectors 1
+## 2261 68515 Missing Values 1
+## 2262 68515 Missing Values 1
+## 2263 68515 Subsetting Vectors 1
+## 2264 68515 Basic Building Blocks 1
+## 2265 68515 Workspace and Files 0
+## 2266 68515 Workspace and Files 1
+## 2267 68515 Workspace and Files 0
+## 2268 68515 Workspace and Files 1
+## 2269 68515 Logic 1
+## 2270 68515 Dates and Times 1
+## 2271 68515 Subsetting Vectors 0
+## 2272 68515 Logic 0
+## 2273 68515 Workspace and Files 1
+## 2274 68515 Logic 1
+## 2275 68515 Logic 0
+## 2276 68515 Missing Values 1
+## 2277 68515 Logic 1
+## 2278 68515 Logic 1
+## 2279 68515 Workspace and Files 1
+## 2280 68515 Workspace and Files 1
+## 2281 68515 Dates and Times 1
+## 2282 68515 Dates and Times 1
+## 2283 68515 Logic 1
+## 2284 68515 Missing Values 1
+## 2285 68515 Subsetting Vectors 0
+## 2286 68515 Logic 0
+## 2287 68515 Workspace and Files 0
+## 2288 68515 Missing Values 1
+## 2289 68515 Vectors 0
+## 2290 68515 Subsetting Vectors 0
+## 2291 68515 Logic 0
+## 2292 68515 Subsetting Vectors 1
+## 2293 68515 Subsetting Vectors 1
+## 2294 68515 Logic 1
+## 2295 68515 Logic 1
+## 2296 68515 Workspace and Files 1
+## 2297 68515 Basic Building Blocks 1
+## 2298 68515 Workspace and Files 1
+## 2299 68515 Subsetting Vectors 1
+## 2300 68515 Logic 0
+## 2301 68515 Missing Values 1
+## 2302 68515 Missing Values 1
+## 2303 68515 Subsetting Vectors NA
+## 2304 68515 Subsetting Vectors 1
+## 2305 68515 Subsetting Vectors 1
+## 2306 68515 Missing Values 1
+## 2307 68515 Missing Values 1
+## 2308 68515 Basic Building Blocks NA
+## 2309 68515 Workspace and Files NA
+## 2310 68515 Subsetting Vectors 0
+## 2311 68515 Logic 1
+## 2312 68515 Logic 1
+## 2313 68515 Subsetting Vectors 1
+## 2314 68515 Logic 1
+## 2315 68515 Subsetting Vectors 1
+## 2316 68515 Basic Building Blocks 1
+## 2317 68515 Subsetting Vectors 1
+## 2318 68515 Subsetting Vectors 1
+## 2319 68515 Logic 0
+## 2320 68515 Subsetting Vectors 1
+## 2321 68515 Workspace and Files 1
+## 2322 68515 Logic 1
+## 2323 68515 Missing Values 1
+## 2324 68515 Missing Values 1
+## 2325 68515 Subsetting Vectors 1
+## 2326 68515 Subsetting Vectors 1
+## 2327 68515 Logic 1
+## 2328 68515 Subsetting Vectors 1
+## 2329 68515 Subsetting Vectors 1
+## 2330 68515 Subsetting Vectors 1
+## 2331 68515 Subsetting Vectors 0
+## 2332 68515 Subsetting Vectors 0
+## 2333 68515 Logic 1
+## 2334 68515 Subsetting Vectors 1
+## 2335 68515 Basic Building Blocks 1
+## 2336 68515 Subsetting Vectors 1
+## 2337 68515 Subsetting Vectors 0
+## 2338 68515 Basic Building Blocks 1
+## 2339 68515 Logic 1
+## 2340 68515 Subsetting Vectors 1
+## 2341 67994 Matrices and Data Frames 0
+## 2342 67994 Matrices and Data Frames 0
+## 2343 67994 Matrices and Data Frames 1
+## 2344 67994 Matrices and Data Frames 1
+## 2345 67994 Matrices and Data Frames 0
+## 2346 67994 Matrices and Data Frames 0
+## 2347 67994 Matrices and Data Frames NA
+## 2348 67994 Matrices and Data Frames 1
+## 2349 67994 Matrices and Data Frames 1
+## 2350 67994 Matrices and Data Frames 1
+## 2351 67994 Matrices and Data Frames 1
+## 2352 67994 Matrices and Data Frames 1
+## 2353 67994 Matrices and Data Frames 1
+## 2354 67994 Matrices and Data Frames 1
+## 2355 67994 Matrices and Data Frames 1
+## 2356 67994 Matrices and Data Frames 1
+## 2357 67994 Matrices and Data Frames 1
+## 2358 67994 Matrices and Data Frames 1
+## 2359 67994 Matrices and Data Frames 1
+## 2360 67994 Matrices and Data Frames 1
+## 2361 67994 Matrices and Data Frames 1
+## 2362 67994 Matrices and Data Frames 1
+## 2363 67994 Matrices and Data Frames 1
+## 2364 67994 Matrices and Data Frames 1
+## 2365 67994 Matrices and Data Frames 1
+## 2366 67994 Matrices and Data Frames 1
+## 2367 67994 Matrices and Data Frames 1
+## 2368 67994 Matrices and Data Frames 1
+## 2369 67994 Matrices and Data Frames 0
+## 2370 20682 NA
+## 2371 32870 Basic Building Blocks 1
+## 2372 32870 Basic Building Blocks 1
+## 2373 32870 Basic Building Blocks 1
+## 2374 32870 Basic Building Blocks 1
+## 2375 32870 Basic Building Blocks 1
+## 2376 32870 Basic Building Blocks 1
+## 2377 32870 Basic Building Blocks 1
+## 2378 32870 Basic Building Blocks 0
+## 2379 32870 Basic Building Blocks 1
+## 2380 32870 Basic Building Blocks 1
+## 2381 32870 Basic Building Blocks 1
+## 2382 32870 Basic Building Blocks 1
+## 2383 32870 Basic Building Blocks 1
+## 2384 32870 Basic Building Blocks 1
+## 2385 32870 Basic Building Blocks 1
+## 2386 27487 Basic Building Blocks 0
+## 2387 27487 Basic Building Blocks 1
+## 2388 27487 Missing Values 1
+## 2389 27487 Vectors 0
+## 2390 27487 Vectors 1
+## 2391 27487 Dates and Times NA
+## 2392 27487 Basic Building Blocks 1
+## 2393 27487 Logic 0
+## 2394 27487 Basic Building Blocks 1
+## 2395 27487 Basic Building Blocks 0
+## 2396 27487 Basic Building Blocks 1
+## 2397 27487 Logic 1
+## 2398 27487 Logic 0
+## 2399 27487 Vectors 1
+## 2400 27487 Logic 1
+## 2401 27487 Basic Building Blocks 1
+## 2402 27487 Basic Building Blocks 1
+## 2403 27487 Dates and Times 1
+## 2404 27487 Vectors 1
+## 2405 27487 Basic Building Blocks 1
+## 2406 27487 Logic 1
+## 2407 27487 Basic Building Blocks 1
+## 2408 27487 Logic 1
+## 2409 27487 Logic 1
+## 2410 27487 Logic 1
+## 2411 27487 Logic 1
+## 2412 27487 Matrices and Data Frames 0
+## 2413 27487 Dates and Times 1
+## 2414 27487 Logic 1
+## 2415 27487 Dates and Times 1
+## 2416 27487 Missing Values 1
+## 2417 27487 Missing Values 1
+## 2418 27487 Dates and Times 0
+## 2419 27487 Vectors 1
+## 2420 27487 Basic Building Blocks 1
+## 2421 27487 Basic Building Blocks 1
+## 2422 27487 Vectors 1
+## 2423 27487 Dates and Times 1
+## 2424 27487 Vectors 1
+## 2425 27487 Dates and Times 1
+## 2426 27487 Dates and Times 1
+## 2427 27487 Vectors 1
+## 2428 27487 Vectors 1
+## 2429 27487 Vectors 0
+## 2430 27487 Vectors 1
+## 2431 27487 Vectors 1
+## 2432 27487 Vectors 1
+## 2433 27487 Logic 1
+## 2434 27487 Logic NA
+## 2435 27487 Logic 1
+## 2436 27487 Vectors 1
+## 2437 27487 Vectors 1
+## 2438 27487 Subsetting Vectors 1
+## 2439 27487 Dates and Times 1
+## 2440 27487 Dates and Times 1
+## 2441 27487 Dates and Times 1
+## 2442 27487 Subsetting Vectors 1
+## 2443 27487 Subsetting Vectors 1
+## 2444 27487 Dates and Times 1
+## 2445 27487 Logic 1
+## 2446 27487 Logic 1
+## 2447 27487 Vectors 1
+## 2448 27487 Vectors 0
+## 2449 27487 Logic 1
+## 2450 27487 Subsetting Vectors 1
+## 2451 27487 Missing Values 1
+## 2452 27487 Subsetting Vectors 1
+## 2453 27487 Matrices and Data Frames 1
+## 2454 27487 Logic 1
+## 2455 27487 Missing Values 1
+## 2456 27487 Dates and Times 1
+## 2457 27487 Logic 1
+## 2458 27487 Basic Building Blocks NA
+## 2459 27487 Logic 1
+## 2460 27487 Logic 1
+## 2461 27487 Logic 0
+## 2462 27487 Logic 1
+## 2463 27487 Vectors NA
+## 2464 27487 Dates and Times 1
+## 2465 27487 Logic 1
+## 2466 27487 Logic 1
+## 2467 27487 Logic 1
+## 2468 27487 Vectors 1
+## 2469 27487 Logic 1
+## 2470 27487 Logic 1
+## 2471 27487 Logic 1
+## 2472 27487 Logic 1
+## 2473 27487 Logic 1
+## 2474 27487 Logic 1
+## 2475 27487 Logic 1
+## 2476 27487 Logic 1
+## 2477 27487 Matrices and Data Frames 1
+## 2478 27487 Matrices and Data Frames 1
+## 2479 27487 Matrices and Data Frames 1
+## 2480 27487 Subsetting Vectors 1
+## 2481 27487 Subsetting Vectors 1
+## 2482 27487 Missing Values 1
+## 2483 27487 Basic Building Blocks 1
+## 2484 27487 Subsetting Vectors 1
+## 2485 27487 Subsetting Vectors 1
+## 2486 27487 Vectors 1
+## 2487 27487 Logic 1
+## 2488 27487 Logic 1
+## 2489 27487 Logic 0
+## 2490 27487 Logic 0
+## 2491 27487 Logic 0
+## 2492 27487 Logic 0
+## 2493 27487 Logic 1
+## 2494 27487 Missing Values 1
+## 2495 27487 Logic 1
+## 2496 27487 Logic 1
+## 2497 27487 Basic Building Blocks 1
+## 2498 27487 Subsetting Vectors NA
+## 2499 27487 Matrices and Data Frames 0
+## 2500 27487 Missing Values 0
+## 2501 27487 Missing Values 0
+## 2502 27487 Missing Values 1
+## 2503 27487 Dates and Times 1
+## 2504 27487 Logic 1
+## 2505 27487 Missing Values 1
+## 2506 27487 Missing Values 1
+## 2507 27487 Missing Values 1
+## 2508 27487 Matrices and Data Frames 1
+## 2509 27487 Dates and Times 1
+## 2510 27487 Basic Building Blocks 1
+## 2511 27487 Basic Building Blocks 1
+## 2512 27487 Basic Building Blocks 1
+## 2513 27487 Subsetting Vectors 0
+## 2514 27487 Subsetting Vectors 1
+## 2515 27487 Subsetting Vectors 1
+## 2516 27487 Subsetting Vectors 1
+## 2517 27487 Vectors 1
+## 2518 27487 Basic Building Blocks 1
+## 2519 27487 Basic Building Blocks 0
+## 2520 27487 Matrices and Data Frames 1
+## 2521 27487 Dates and Times 1
+## 2522 27487 Dates and Times 1
+## 2523 27487 Dates and Times 1
+## 2524 27487 Matrices and Data Frames 1
+## 2525 27487 Matrices and Data Frames 1
+## 2526 27487 Dates and Times 1
+## 2527 27487 Vectors 1
+## 2528 27487 Basic Building Blocks 1
+## 2529 27487 Vectors 1
+## 2530 27487 Missing Values 1
+## 2531 27487 Missing Values 1
+## 2532 27487 Dates and Times 0
+## 2533 27487 Missing Values 1
+## 2534 27487 Dates and Times 1
+## 2535 27487 Subsetting Vectors 1
+## 2536 27487 Matrices and Data Frames 1
+## 2537 27487 Basic Building Blocks 1
+## 2538 27487 Subsetting Vectors 1
+## 2539 27487 Matrices and Data Frames 1
+## 2540 27487 Dates and Times 1
+## 2541 27487 Dates and Times 1
+## 2542 27487 Dates and Times 0
+## 2543 27487 Matrices and Data Frames 1
+## 2544 27487 Dates and Times 1
+## 2545 27487 Dates and Times 0
+## 2546 27487 Dates and Times 1
+## 2547 27487 Dates and Times 1
+## 2548 27487 Matrices and Data Frames 1
+## 2549 27487 Subsetting Vectors 1
+## 2550 27487 Subsetting Vectors 1
+## 2551 27487 Subsetting Vectors 1
+## 2552 27487 Matrices and Data Frames 1
+## 2553 27487 Subsetting Vectors 1
+## 2554 27487 Matrices and Data Frames 1
+## 2555 27487 Matrices and Data Frames 0
+## 2556 27487 Dates and Times 1
+## 2557 27487 Dates and Times 0
+## 2558 27487 Matrices and Data Frames 1
+## 2559 27487 Dates and Times 1
+## 2560 27487 Matrices and Data Frames 1
+## 2561 27487 Subsetting Vectors 1
+## 2562 27487 Matrices and Data Frames 1
+## 2563 27487 Basic Building Blocks 1
+## 2564 27487 Subsetting Vectors 1
+## 2565 27487 Matrices and Data Frames 1
+## 2566 27487 Matrices and Data Frames 1
+## 2567 27487 Dates and Times 1
+## 2568 27487 Dates and Times 1
+## 2569 27487 Subsetting Vectors 1
+## 2570 27487 Basic Building Blocks 1
+## 2571 27487 Subsetting Vectors 1
+## 2572 27487 Matrices and Data Frames 1
+## 2573 27487 Missing Values NA
+## 2574 27487 Basic Building Blocks 1
+## 2575 27487 Subsetting Vectors 0
+## 2576 27487 Matrices and Data Frames 1
+## 2577 27487 Matrices and Data Frames 1
+## 2578 27487 Subsetting Vectors 1
+## 2579 27487 Subsetting Vectors 1
+## 2580 27487 Matrices and Data Frames 1
+## 2581 27487 Basic Building Blocks 1
+## 2582 27487 Subsetting Vectors 1
+## 2583 27487 Subsetting Vectors 1
+## 2584 27487 Matrices and Data Frames NA
+## 2585 86730 NA
+## 2586 21536 Graphics_Devices_in_R 1
+## 2587 21536 Graphics_Devices_in_R 1
+## 2588 21536 Graphics_Devices_in_R 1
+## 2589 21536 Graphics_Devices_in_R 1
+## 2590 21536 Graphics_Devices_in_R 1
+## 2591 21536 Graphics_Devices_in_R 1
+## 2592 21536 Graphics_Devices_in_R 0
+## 2593 21536 Graphics_Devices_in_R 1
+## 2594 21536 Grouping and Chaining with dplyr 0
+## 2595 21536 Grouping and Chaining w NA
+## 2596 21536 Graphics_Devices_in_R 1
+## 2597 21536 Graphics_Devices_in_R 1
+## 2598 21536 Base_Plotting_System 0
+## 2599 21536 Base_Plotting_System 1
+## 2600 21536 Base_Plotting_System 1
+## 2601 21536 Clustering_Example 1
+## 2602 21536 Clustering_Example 1
+## 2603 21536 Graphics_Devices_in_R 1
+## 2604 21536 K_Means_Clustering 1
+## 2605 21536 Tidying Data with tidyr 1
+## 2606 21536 Tidying Data with tidyr 0
+## 2607 21536 Manipulating Data with dplyr 0
+## 2608 21536 Graphics_Devices_in_R 1
+## 2609 21536 Graphics_Devices_in_R 1
+## 2610 21536 Base_Plotting_System 0
+## 2611 21536 Manipulating Data with dplyr 1
+## 2612 21536 Manipulating Data with dplyr 1
+## 2613 21536 Manipulating Data with dplyr 1
+## 2614 21536 Manipulating Data with dplyr 1
+## 2615 21536 Manipulating Data with dplyr 1
+## 2616 21536 Manipulating Data with dplyr 1
+## 2617 21536 Manipulating Data with dplyr 0
+## 2618 21536 K_Means_Clustering 1
+## 2619 21536 K_Means_Clustering 1
+## 2620 21536 NA
+## 2621 21536 Base_Plotting_System 1
+## 2622 21536 Base_Plotting_System 1
+## 2623 21536 Manipulating Data with dplyr 0
+## 2624 21536 Looking at Data 1
+## 2625 21536 Looking at Data 1
+## 2626 21536 Looking at Data 1
+## 2627 21536 Looking at Data 1
+## 2628 21536 Base_Plotting_System 1
+## 2629 21536 Base_Plotting_System 0
+## 2630 21536 Base_Plotting_System 1
+## 2631 21536 Looking at Data 1
+## 2632 21536 Looking at Data 1
+## 2633 21536 Looking at Data 1
+## 2634 21536 Principles_of_Analytic_Graphs 1
+## 2635 21536 Manipulating Data with dplyr 0
+## 2636 21536 Looking at Data 1
+## 2637 21536 Clustering_Example 1
+## 2638 21536 Clustering_Example 1
+## 2639 21536 Clustering_Example 1
+## 2640 21536 Clustering_Example 1
+## 2641 21536 Clustering_Example 1
+## 2642 21536 Clustering_Example 1
+## 2643 21536 NA
+## 2644 21536 Grouping and Chaining with dplyr 1
+## 2645 21536 Tidying Data with tidyr 0
+## 2646 21536 Tidying Data with tidyr 1
+## 2647 21536 Tidying Data with tidyr 1
+## 2648 21536 Looking at Data 1
+## 2649 21536 Principles_of_Analytic_Graphs 1
+## 2650 21536 Principles_of_Analytic_Graphs 1
+## 2651 21536 Principles_of_Analytic_Graphs 1
+## 2652 21536 Manipulating Data with dplyr 1
+## 2653 21536 Manipulating Data with dplyr 0
+## 2654 21536 Looking at Data 1
+## 2655 21536 Looking at Data 1
+## 2656 21536 Looking at Data 1
+## 2657 21536 Looking at Data 1
+## 2658 21536 Principles_of_Analytic_Graphs 1
+## 2659 21536 Principles_of_Analytic_Graphs 0
+## 2660 21536 Principles_of_Analytic_Graphs 1
+## 2661 21536 Looking at Data 1
+## 2662 21536 Base_Plotting_System 0
+## 2663 21536 Clustering_Example 1
+## 2664 21536 Exploratory_Graphs 1
+## 2665 21536 Exploratory_Graphs 1
+## 2666 21536 Exploratory_Graphs 1
+## 2667 21536 Exploratory_Graphs 1
+## 2668 21536 Looking NA
+## 2669 21536 Exploratory_Graphs 1
+## 2670 21536 Exploratory_Graphs 1
+## 2671 21536 Base_Plotting_System 0
+## 2672 21536 Clustering_Example 0
+## 2673 21536 Clustering_Example 1
+## 2674 21536 Tidying Data with tidyr 0
+## 2675 21536 Clustering_Example 1
+## 2676 21536 Tidying Data with tidyr 1
+## 2677 21536 Tidying Data NA
+## 2678 21536 Exploratory_Graphs 0
+## 2679 21536 K_Means_Clustering 0
+## 2680 21536 Looking at Data 1
+## 2681 21536 NA
+## 2682 21536 K_Means_Clustering 1
+## 2683 21536 K_Means_Clustering 1
+## 2684 21536 Hierarchica NA
+## 2685 21536 Tidying Data with tidyr 1
+## 2686 21536 Grouping and Chaining with dplyr 0
+## 2687 21536 Base_Plotting_System 1
+## 2688 21536 Clustering_Example 1
+## 2689 21536 Exploratory_Graphs 1
+## 2690 21536 Exploratory_Graphs 1
+## 2691 21536 Hierarchical_Clustering 0
+## 2692 21536 Hierarchical_Clustering 0
+## 2693 21536 K_Means_Clustering 1
+## 2694 21536 Principles_of_Analytic_Graphs 1
+## 2695 21536 Principles_of_Analytic_Graphs 1
+## 2696 21536 Principles_of_Analytic_Graphs 1
+## 2697 21536 Principles_of_Analytic_Graphs 0
+## 2698 21536 Exploratory_Graphs 1
+## 2699 21536 Base_Plotting_System 1
+## 2700 21536 Grouping and Chaining with dplyr 1
+## 2701 21536 Hierarchical_Clustering 1
+## 2702 21536 Hierarchical_Clustering 0
+## 2703 21536 Hierarchical_Clustering 0
+## 2704 21536 Exploratory_Graphs 1
+## 2705 21536 K_Means_Clustering 0
+## 2706 21536 Hierarchical_Clustering 1
+## 2707 21536 K_Means_Clustering 0
+## 2708 21536 K_Means_Clustering 1
+## 2709 21536 K_Means_Clustering 1
+## 2710 21536 Hierarchical_Clustering 1
+## 2711 21536 Grouping and Chaining with dplyr 0
+## 2712 21536 Grouping and Chaining with dplyr 1
+## 2713 21536 Hierarchical_Clustering 1
+## 2714 21536 Tidying Data with tidyr 1
+## 2715 21536 Exploratory_Graphs 1
+## 2716 21536 Exploratory_Graphs 1
+## 2717 21536 Hierarchical_Clustering 1
+## 2718 21536 Hierarchical_Clustering 1
+## 2719 21536 K_Means_Clustering 0
+## 2720 21536 Principles_of_Analytic_Graphs 1
+## 2721 21536 Tidying Data with tidyr 1
+## 2722 21536 Tidying Data with tidyr 1
+## 2723 21536 Hierarchical_Clustering 1
+## 2724 21536 Grouping and Chaining with dplyr 1
+## 2725 21536 Hierarchical_Clustering 1
+## 2726 21536 Grouping and Chaining with dplyr 1
+## 2727 21536 Grouping and Chaining with dplyr 1
+## 2728 21536 Grouping and Chaining with dplyr 1
+## 2729 21536 Grouping and Chaining with dplyr 1
+## 2730 21536 Tidying Data with tidyr 1
+## 2731 21536 K_Means_Clustering 0
+## 2732 65259 Manipulating Data with dplyr 1
+## 2733 65259 Manipulating Data with dplyr 0
+## 2734 65259 Manipulating Data with dplyr 1
+## 2735 65259 Manipulating Data with dplyr 1
+## 2736 65259 Manipulating Data with dplyr 1
+## 2737 65259 Manipulatin NA
+## 2738 65259 Dates and Times 1
+## 2739 65259 Dates and Times 1
+## 2740 65259 Dates and Times 0
+## 2741 65259 Dates and Times 1
+## 2742 65259 Manipulating Data with dplyr 1
+## 2743 65259 Manipulating Data with dplyr 1
+## 2744 65259 Manipulating Data with dplyr 1
+## 2745 65259 Manipulating Data with dplyr 1
+## 2746 65259 Manipulating Data with dplyr 1
+## 2747 65259 Manipulating Data with dplyr 1
+## 2748 65259 Manipulating Data with dplyr 1
+## 2749 65259 Dates and Times 1
+## 2750 65259 Dates and Times 1
+## 2751 65259 Dates and Times 1
+## 2752 65259 Dates and Times 1
+## 2753 65259 Dates and Times 0
+## 2754 65259 Dates and Times 1
+## 2755 65259 Dates and Times 1
+## 2756 65259 Dates and Times 1
+## 2757 65259 Dates and Times 0
+## 2758 65259 Dates and Times 1
+## 2759 65259 Dates and Times 1
+## 2760 65259 NA
+## 2761 65259 Dates and Times 1
+## 2762 2864 Basic Building Blocks 1
+## 2763 2864 Basic Building Blocks 1
+## 2764 2864 Basic Building Blocks 0
+## 2765 2864 Basic Building Blocks 1
+## 2766 2864 Basic Building Blocks 1
+## 2767 2864 Basic Building Blocks 1
+## 2768 2864 Basic Building Blocks 1
+## 2769 2864 Basic Building Blocks 1
+## 2770 2864 Basic Building Blocks 0
+## 2771 2864 Basic Building Blocks 1
+## 2772 2864 Basic Building Blocks 1
+## 2773 2864 Basic Building Blocks 1
+## 2774 2864 Basic Building Blocks 1
+## 2775 2864 Basic Building Blocks 1
+## 2776 2864 Basic Building Blocks 1
+## 2777 2864 Basic Building Blocks 1
+## 2778 2864 Basic Building Blocks NA
+## 2779 2864 Basic Building Blocks 1
+## 2780 2864 Basic Building Blocks 1
+## 2781 2864 Basic Building Blocks 1
+## 2782 2864 Basic Building Blocks 1
+## 2783 2864 Basic Building Blocks 1
+## 2784 2864 Basic Building Blocks 1
+## 2785 2864 Basic Building Blocks 0
+## 2786 2864 Basic Building Blocks 1
+## 2787 2864 Basic Building Blocks 1
+## 2788 34068 Basic Building Blocks 1
+## 2789 34068 Basic Building Blocks 1
+## 2790 34068 Basic Building Blocks 1
+## 2791 34068 Basic Building Blocks 1
+## 2792 34068 Basic Building Blocks 1
+## 2793 34068 Basic Building Blocks 1
+## 2794 34068 Basic Building Blocks 1
+## 2795 34068 Basic Building Blocks NA
+## 2796 34068 Basic Building Blocks 1
+## 2797 34068 Basic Building Blocks 1
+## 2798 34068 Basic Building Blocks 1
+## 2799 34068 Basic Building Blocks 1
+## 2800 34068 Basic Building Blocks 1
+## 2801 34068 Basic Building Blocks 1
+## 2802 34068 Basic Building Blocks 1
+## 2803 34068 Basic Building Blocks 1
+## 2804 34068 Basic Building Blocks 1
+## 2805 34068 Basic Building Blocks 1
+## 2806 34068 Basic Building Blocks 1
+## 2807 34068 Basic Building Blocks 1
+## 2808 34068 Basic Building Blocks 1
+## 2809 34068 Basic Building Blocks 1
+## 2810 34068 Basic Building Blocks 1
+## 2811 76966 Matrices and Data Frames 1
+## 2812 76966 Matrices and Data Frames 1
+## 2813 76966 Matrices and Data Frames 1
+## 2814 76966 Matrices and Data Frames 1
+## 2815 76966 Matrices and Data Frames 0
+## 2816 76966 Matrices and Data Frames 0
+## 2817 76966 Matrices and Data Frames 0
+## 2818 76966 Matrices and Data Frames 1
+## 2819 76966 Matrices and Data Frames 0
+## 2820 76966 Matrices and Data Frames 1
+## 2821 76966 Matrices and Data Frames 1
+## 2822 76966 Matrices and Data Frames 1
+## 2823 76966 Matrices and Data Frames 1
+## 2824 76966 Matrices and Data Frames NA
+## 2825 76966 Matrices and Data Frames 0
+## 2826 76966 Matrices and Data Frames 1
+## 2827 76966 Matrices and Data Frames 1
+## 2828 76966 Matrices and Data Frames 1
+## 2829 76966 Matrices and Data Frames 1
+## 2830 76966 Matrices and Data Frames 1
+## 2831 76966 Matrices and Data Frames 1
+## 2832 76966 Matrices and Data Frames 1
+## 2833 76966 Matrices and Data Frames 0
+## 2834 76966 Matrices and Data Frames 1
+## 2835 76966 Matrices and Data Frames 1
+## 2836 76966 Matrices and Data Frames 1
+## 2837 76966 Matrices and Data Frames 1
+## 2838 76966 Matrices and Data Frames 1
+## 2839 76966 Matrices and Data Frames 1
+## 2840 76966 Matrices and Data Frames 1
+## 2841 4807 Basic Building Blocks 1
+## 2842 4807 Basic Building Blocks 1
+## 2843 4807 Basic Building Blocks 1
+## 2844 4807 Basic Building Blocks 0
+## 2845 4807 Basic Building Blocks 1
+## 2846 4807 Basic Building Blocks 1
+## 2847 4807 Basic Building Blocks 0
+## 2848 4807 Basic Building Blocks 0
+## 2849 4807 Basic Building Blocks 0
+## 2850 4807 Basic Building Blocks 1
+## 2851 4807 Basic Building Blocks 0
+## 2852 4807 Basic Building Blocks 1
+## 2853 4807 Basic Building Blocks 1
+## 2854 4807 Basic Building Blocks 0
+## 2855 4807 Basic Building Blocks 1
+## 2856 4807 Basic Building Blocks 1
+## 2857 4807 Basic Building Blocks 0
+## 2858 4807 Basic Building Blocks 0
+## 2859 4807 Basic Building Blocks 1
+## 2860 4807 Basic Building Blocks 0
+## 2861 4807 Basic Building Blocks 1
+## 2862 4807 Basic Building Blocks 0
+## 2863 4807 Basic Building Blocks 1
+## 2864 4807 Basic Building Blocks 0
+## 2865 4807 Basic Building Blocks 1
+## 2866 4807 Basic Building Blocks 1
+## 2867 4807 Basic Building Blocks 1
+## 2868 4807 Basic Building Blocks 1
+## 2869 4807 Basic Building Blocks 1
+## 2870 4807 Basic Building Blocks 1
+## 2871 4807 Basic Building Blocks 1
+## 2872 4807 Basic Building Blocks 1
+## 2873 4807 Basic Building Blocks 1
+## 2874 4807 Basic Building Blocks NA
+## 2875 4807 Workspace and Files 1
+## 2876 4807 Workspace and Files 1
+## 2877 4807 Workspace and Files 1
+## 2878 4807 Workspace and Files 1
+## 2879 4807 Workspace and Files 1
+## 2880 4807 Workspace and Files 1
+## 2881 4807 Workspace and Files 1
+## 2882 4807 Workspace and Files 0
+## 2883 4807 Workspace and Files 1
+## 2884 4807 Workspace and Files 1
+## 2885 4807 Workspace and Files 1
+## 2886 4807 Workspace and Files 1
+## 2887 4807 Workspace and Files 0
+## 2888 4807 Workspace and Files 1
+## 2889 4807 Workspace and Files 0
+## 2890 4807 Workspace and Files 0
+## 2891 4807 Workspace and Files 1
+## 2892 4807 Workspace and Files 1
+## 2893 4807 Workspace and Files 0
+## 2894 4807 Workspace and Files 1
+## 2895 4807 Workspace and Files 1
+## 2896 4807 Workspace and Files 0
+## 2897 4807 Workspace and Files 1
+## 2898 4807 Workspace and Files 1
+## 2899 4807 Workspace and Files 1
+## 2900 4807 Workspace and Files 0
+## 2901 4807 Workspace and Files 1
+## 2902 4807 Workspace and Files 1
+## 2903 4807 Workspace and Files 1
+## 2904 4807 Workspace and Files 1
+## 2905 4807 Workspace and Files NA
+## 2906 4807 Vectors 1
+## 2907 4807 Vectors 0
+## 2908 4807 Vectors 1
+## 2909 4807 Vectors 1
+## 2910 4807 Vectors 1
+## 2911 4807 Vectors 1
+## 2912 4807 Vectors 0
+## 2913 4807 Vectors 0
+## 2914 4807 Vectors 1
+## 2915 4807 Vectors 0
+## 2916 4807 Vectors 1
+## 2917 4807 Vectors 1
+## 2918 4807 Vectors 1
+## 2919 4807 Vectors 1
+## 2920 4807 Vectors 0
+## 2921 4807 Vectors 1
+## 2922 4807 Vectors 1
+## 2923 4807 Vectors 1
+## 2924 4807 Vectors 1
+## 2925 4807 Vectors 0
+## 2926 4807 Vectors 1
+## 2927 4807 Vectors 0
+## 2928 4807 Vectors 1
+## 2929 4807 Vectors 1
+## 2930 4807 Vectors 1
+## 2931 4807 Vectors 1
+## 2932 4807 Vectors NA
+## 2933 4807 Matrices and Data Frames 1
+## 2934 4807 Matrices and Data Frames 1
+## 2935 4807 Matrices and Data Frames 0
+## 2936 4807 Matrices and Data Frames 1
+## 2937 4807 Matrices and Data Frames 1
+## 2938 4807 Matrices and Data Frames 1
+## 2939 4807 Matrices and Data Frames 1
+## 2940 4807 Matrices and Data Frames NA
+## 2941 4807 Dates and Times 1
+## 2942 4807 Dates and Times 1
+## 2943 4807 Dates and Times 0
+## 2944 4807 Dates and Times 1
+## 2945 4807 Dates and Times 1
+## 2946 4807 Dates and Times 0
+## 2947 4807 Dates and Times 1
+## 2948 4807 Dates and Times 1
+## 2949 4807 Dates and Times 1
+## 2950 4807 Dates and Times 1
+## 2951 4807 Dates and Times 1
+## 2952 4807 Dates and Times 1
+## 2953 4807 Dates and Times 1
+## 2954 4807 Dates and Times 1
+## 2955 4807 Dates and Times 1
+## 2956 4807 Missing Values 0
+## 2957 4807 Missing Values 1
+## 2958 4807 Missing Values 1
+## 2959 4807 Missing Values 1
+## 2960 4807 Missing Values 1
+## 2961 4807 Missing Values 1
+## 2962 4807 Missing Values 1
+## 2963 4807 Missing Values 1
+## 2964 4807 Missing Values 1
+## 2965 4807 Missing Values 0
+## 2966 4807 Missing Values 1
+## 2967 4807 Missing Values 1
+## 2968 4807 Missing Values 1
+## 2969 4807 Missing Values 1
+## 2970 4807 Missing Values 1
+## 2971 4807 Missing Values 1
+## 2972 4807 Missing Values NA
+## 2973 4807 Subsetting Vectors 1
+## 2974 4807 Subsetting Vectors 1
+## 2975 4807 Subsetting Vectors 1
+## 2976 4807 Subsetting Vectors 1
+## 2977 4807 Subsetting Vectors 1
+## 2978 4807 Subsetting Vectors 1
+## 2979 4807 Subsetting Vectors 0
+## 2980 4807 Subsetting Vectors 1
+## 2981 4807 Subsetting Vectors 1
+## 2982 4807 Subsetting Vectors 1
+## 2983 4807 Subsetting Vectors 1
+## 2984 4807 Subsetting Vectors 0
+## 2985 4807 Subsetting Vectors 1
+## 2986 4807 Subsetting Vectors 1
+## 2987 4807 Subsetting Vectors 1
+## 2988 4807 Subsetting Vectors 1
+## 2989 4807 Subsetting Vectors 1
+## 2990 4807 Subsetting Vectors 1
+## 2991 4807 Subsetting Vectors 1
+## 2992 4807 Subsetting Vectors 1
+## 2993 4807 Subsetting Vectors 0
+## 2994 4807 Subsetting Vectors 1
+## 2995 4807 Subsetting Vectors 1
+## 2996 4807 Subsetting Vectors 1
+## 2997 4807 Subsetting Vectors 0
+## 2998 4807 Subsetting Vectors 1
+## 2999 4807 Subsetting Vectors 1
+## 3000 4807 Subsetting Vectors 1
+## 3001 4807 Subsetting Vectors 1
+## 3002 4807 Subsetting Vectors 1
+## 3003 4807 Subsetting Vectors NA
+## 3004 4807 Logic 1
+## 3005 4807 Logic 1
+## 3006 4807 Logic 1
+## 3007 4807 Logic 1
+## 3008 4807 Logic 1
+## 3009 4807 Logic 1
+## 3010 4807 Logic 1
+## 3011 4807 Logic 1
+## 3012 4807 Logic 0
+## 3013 4807 Logic 0
+## 3014 4807 Logic 0
+## 3015 4807 Logic 1
+## 3016 4807 Logic 0
+## 3017 4807 Logic 0
+## 3018 4807 Logic 1
+## 3019 4807 Logic 0
+## 3020 4807 Logic 1
+## 3021 4807 Logic 1
+## 3022 4807 Logic 1
+## 3023 4807 Logic 1
+## 3024 4807 Logic 1
+## 3025 4807 Logic 1
+## 3026 4807 Logic 1
+## 3027 4807 Logic 0
+## 3028 4807 Logic 1
+## 3029 4807 Logic 0
+## 3030 4807 Logic 1
+## 3031 4807 Logic 1
+## 3032 4807 Logic 0
+## 3033 4807 Logic 0
+## 3034 4807 Logic 1
+## 3035 4807 Logic 1
+## 3036 4807 Logic 1
+## 3037 4807 Logic 1
+## 3038 4807 Logic 0
+## 3039 4807 Logic 0
+## 3040 4807 Logic 0
+## 3041 4807 Logic 1
+## 3042 4807 Logic 1
+## 3043 4807 Logic 1
+## 3044 4807 Logic 1
+## 3045 4807 Logic 1
+## 3046 4807 Logic 1
+## 3047 4807 Logic 0
+## 3048 4807 Logic 1
+## 3049 4807 Logic 0
+## 3050 4807 Logic 0
+## 3051 4807 Logic 0
+## 3052 4807 Logic 0
+## 3053 4807 Logic 0
+## 3054 4807 Logic 0
+## 3055 4807 Logic 0
+## 3056 4807 Logic 0
+## 3057 4807 Logic 1
+## 3058 4807 Logic 1
+## 3059 4807 Logic 1
+## 3060 4807 Logic 1
+## 3061 4807 Logic NA
+## 3062 4807 Matrices and Data Frames 1
+## 3063 4807 Matrices and Data Frames 1
+## 3064 4807 Dates and Times 1
+## 3065 4807 Dates and Times 1
+## 3066 4807 Dates and Times 1
+## 3067 4807 Dates and Times 1
+## 3068 4807 Dates and Times 0
+## 3069 4807 Dates and Times 1
+## 3070 4807 Dates and Times 1
+## 3071 4807 Dates and Times 0
+## 3072 4807 Matrices and Data Frames 0
+## 3073 4807 Matrices and Data Frames 0
+## 3074 4807 Matrices and Data Frames 0
+## 3075 4807 Dates and Times 1
+## 3076 4807 Dates and Times 0
+## 3077 4807 Dates and Times 1
+## 3078 4807 Dates and Times 1
+## 3079 4807 Dates and Times 1
+## 3080 4807 Dates and Times 1
+## 3081 4807 Dates and Times 1
+## 3082 4807 Dates and Times 1
+## 3083 4807 Dates and Times 1
+## 3084 4807 Dates and Times 1
+## 3085 4807 Dates and Times 0
+## 3086 4807 Dates and Times 0
+## 3087 4807 Dates and Times 0
+## 3088 4807 Matrices and Data Frames 1
+## 3089 4807 Matrices and Data Frames 0
+## 3090 4807 Matrices and Data Frames 1
+## 3091 4807 Matrices and Data Frames 1
+## 3092 4807 Matrices and Data Frames 1
+## 3093 4807 Matrices and Data Frames 1
+## 3094 4807 Matrices and Data Frames 1
+## 3095 4807 Matrices and Data Frames 1
+## 3096 4807 Matrices and Data Frames 1
+## 3097 4807 Matrices and Data Frames 1
+## 3098 4807 Dates and Times NA
+## 3099 4807 Matrices and Data Frames 1
+## 3100 4807 Matrices and Data Frames 0
+## 3101 4807 Matrices and Data Frames 1
+## 3102 4807 Matrices and Data Frames 1
+## 3103 4807 Matrices and Data Frames 1
+## 3104 4807 Matrices and Data Frames 1
+## 3105 4807 Matrices and Data Frames 0
+## 3106 4807 Matrices and Data Frames 0
+## 3107 4807 Matrices and Data Frames 1
+## 3108 6487 Basic Building Blocks 1
+## 3109 6487 Basic Building Blocks 1
+## 3110 6487 Basic Building Blocks 1
+## 3111 6487 Basic Building Blocks 1
+## 3112 6487 Basic Building Blocks 1
+## 3113 6487 Basic Building Blocks 1
+## 3114 6487 Basic Building Blocks 1
+## 3115 6487 Basic Building Blocks 1
+## 3116 6487 Basic Building Blocks 1
+## 3117 6487 Basic Building Blocks 1
+## 3118 6487 Basic Building Blocks 1
+## 3119 6487 Basic Building Blocks 1
+## 3120 6487 Basic Building Blocks 1
+## 3121 6487 Basic Building Blocks 1
+## 3122 6487 Basic Building Blocks 1
+## 3123 6487 Basic Building Blocks 0
+## 3124 6487 Basic Building Blocks 1
+## 3125 6487 Basic Building Blocks 1
+## 3126 6487 Basic Building Blocks 1
+## 3127 6487 Basic Building Blocks 1
+## 3128 6487 Basic Building Blocks NA
+## 3129 6487 Basic Building Blocks 1
+## 3130 6487 Basic Building Blocks 1
+## 3131 6487 Basic Building Blocks 1
+## 3132 8766 Workspace and Files 1
+## 3133 8766 Workspace and Files 1
+## 3134 8766 Workspace and Files 1
+## 3135 8766 Workspace and Files 1
+## 3136 8766 Workspace and Files 1
+## 3137 8766 Workspace and Files 1
+## 3138 8766 Workspace and Files 0
+## 3139 8766 Workspace and Files 1
+## 3140 8766 Workspace and Files 1
+## 3141 8766 Workspace and Files 1
+## 3142 8766 Workspace and Files 0
+## 3143 8766 Workspace and Files 1
+## 3144 8766 Workspace and Files 1
+## 3145 8766 Workspace and Files 1
+## 3146 8766 Workspace and Files 1
+## 3147 8766 Workspace and Files 1
+## 3148 8766 Workspace and Files 1
+## 3149 8766 Workspace and Files 0
+## 3150 8766 Workspace and Files 1
+## 3151 8766 Workspace and Files 1
+## 3152 8766 Workspace and Files 1
+## 3153 8766 Workspace and Files 0
+## 3154 8766 Workspace and Files 0
+## 3155 8766 Workspace and Files 1
+## 3156 8766 Workspace and Files 1
+## 3157 8766 Workspace and Files 1
+## 3158 8766 Workspace and Files 1
+## 3159 8766 Workspace and Files NA
+## 3160 8766 Vectors 0
+## 3161 8766 Workspace and Files 0
+## 3162 8766 Workspace and Files 1
+## 3163 8766 Workspace and Files 0
+## 3164 8766 Vectors 1
+## 3165 8766 Vectors 1
+## 3166 8766 Vectors 1
+## 3167 8766 Vectors 1
+## 3168 8766 Vectors 1
+## 3169 8766 Vectors 1
+## 3170 8766 Vectors 1
+## 3171 8766 Vectors 0
+## 3172 8766 Vectors 1
+## 3173 8766 Vectors 0
+## 3174 8766 Vectors 1
+## 3175 8766 Vectors 1
+## 3176 8766 Vectors 0
+## 3177 8766 Vectors 1
+## 3178 8766 Vectors 1
+## 3179 8766 Vectors 1
+## 3180 8766 Vectors 1
+## 3181 8766 Vectors 1
+## 3182 8766 Vectors 1
+## 3183 8766 Vectors NA
+## 3184 8766 Missing Values 1
+## 3185 8766 Missing Values 1
+## 3186 8766 Missing Values 1
+## 3187 8766 Missing Values 1
+## 3188 8766 Missing Values 1
+## 3189 8766 Missing Values 1
+## 3190 8766 Missing Values 1
+## 3191 8766 Missing Values 1
+## 3192 8766 Missing Values 1
+## 3193 8766 Missing Values 1
+## 3194 8766 Missing Values 1
+## 3195 8766 Missing Values 0
+## 3196 8766 Missing Values 0
+## 3197 8766 Missing Values 1
+## 3198 8766 Missing Values 1
+## 3199 8766 Missing Values 1
+## 3200 8766 Missing Values NA
+## 3201 8766 Vectors 1
+## 3202 8766 Vectors 1
+## 3203 8766 Vectors 1
+## 3204 27286 NA
+## 3205 70464 Basic Building Blocks 1
+## 3206 70464 Basic Building Blocks 1
+## 3207 70464 Basic Building Blocks 1
+## 3208 70464 Basic Building Blocks 1
+## 3209 70464 Basic Building Blocks 1
+## 3210 70464 Basic Building Blocks 1
+## 3211 70464 Basic Building Blocks 1
+## 3212 70464 Basic Building Blocks 1
+## 3213 70464 Logic 0
+## 3214 70464 Logic 1
+## 3215 70464 Logic 1
+## 3216 70464 Logic 1
+## 3217 70464 Logic 1
+## 3218 70464 Logic 1
+## 3219 70464 Logic 1
+## 3220 70464 Logic 1
+## 3221 70464 Logic 1
+## 3222 70464 Logic 1
+## 3223 70464 Logic 1
+## 3224 70464 Basic Building Blocks 1
+## 3225 70464 Logic 0
+## 3226 70464 Dates and Times 1
+## 3227 70464 Dates and Times 1
+## 3228 70464 Dates and Times 1
+## 3229 70464 Dates and Times 1
+## 3230 70464 Dates and Times 1
+## 3231 70464 Dates and Times 1
+## 3232 70464 Dates and Times 1
+## 3233 70464 Dates and Times 1
+## 3234 70464 Basic Building Blocks 1
+## 3235 70464 Basic Building Blocks 0
+## 3236 70464 Basic Building Blocks 1
+## 3237 70464 Logic 1
+## 3238 70464 Logic NA
+## 3239 70464 Dates and Times 0
+## 3240 70464 Dates and Times 0
+## 3241 70464 Dates and Times 0
+## 3242 70464 Dates and Times 1
+## 3243 70464 Dates and Times 1
+## 3244 70464 Dates and Times 1
+## 3245 70464 Dates and Times 1
+## 3246 70464 Dates and Times 1
+## 3247 70464 Dates and Times 1
+## 3248 70464 Dates and Times 1
+## 3249 70464 Dates and Times 1
+## 3250 70464 Basic Building Blocks 1
+## 3251 70464 Basic Building Blocks 1
+## 3252 70464 Functions 1
+## 3253 70464 Functions 1
+## 3254 70464 Functions 1
+## 3255 70464 Functions 1
+## 3256 70464 Functions 1
+## 3257 70464 Functions 1
+## 3258 70464 Functions 1
+## 3259 70464 Functions 1
+## 3260 70464 Functions 1
+## 3261 70464 Functions 1
+## 3262 70464 Functions 1
+## 3263 70464 Dates and Times 1
+## 3264 70464 Dates and Times NA
+## 3265 70464 Functions 0
+## 3266 70464 Basic Building Blocks 1
+## 3267 70464 Basic Building Blocks 1
+## 3268 70464 Basic Building Blocks 1
+## 3269 70464 Basic Building Blocks 1
+## 3270 70464 Basic Building Blocks 1
+## 3271 70464 Basic Building Blocks 1
+## 3272 70464 Basic Building Blocks 1
+## 3273 70464 Basic Building Blocks 1
+## 3274 70464 Basic Building Blocks 1
+## 3275 70464 Basic Building Blocks NA
+## 3276 70464 Functions 1
+## 3277 70464 Functions 1
+## 3278 70464 Dates and Times 0
+## 3279 70464 Subsetting Vectors 1
+## 3280 70464 Subsetting Vectors 1
+## 3281 70464 Subsetting Vectors 1
+## 3282 70464 Subsetting Vectors 1
+## 3283 70464 Subsetting Vectors 0
+## 3284 70464 Subsetting Vectors 0
+## 3285 70464 Subsetting Vectors 1
+## 3286 70464 Subsetting Vectors 1
+## 3287 70464 Subsetting Vectors 1
+## 3288 70464 Subsetting Vectors 1
+## 3289 70464 Subsetting Vectors 1
+## 3290 70464 Subsetting Vectors NA
+## 3291 70464 Logic 1
+## 3292 70464 Logic 1
+## 3293 70464 Logic 1
+## 3294 70464 Logic 1
+## 3295 70464 Logic 1
+## 3296 70464 Logic 1
+## 3297 70464 Logic 1
+## 3298 70464 Logic 1
+## 3299 70464 Logic 0
+## 3300 70464 Logic 1
+## 3301 70464 Logic 1
+## 3302 70464 Logic 1
+## 3303 70464 Logic 1
+## 3304 70464 Logic 1
+## 3305 70464 Logic 1
+## 3306 70464 Logic 0
+## 3307 70464 Logic 1
+## 3308 70464 Logic 1
+## 3309 70464 Logic 1
+## 3310 70464 Logic 1
+## 3311 70464 Logic 1
+## 3312 70464 Logic 1
+## 3313 70464 Logic 1
+## 3314 70464 Logic 1
+## 3315 70464 Logic 0
+## 3316 70464 Logic 0
+## 3317 70464 Logic 1
+## 3318 70464 Logic 1
+## 3319 70464 Logic 0
+## 3320 70464 Vectors 1
+## 3321 70464 Vectors 0
+## 3322 70464 Vectors 1
+## 3323 70464 Vectors 1
+## 3324 70464 Vectors 1
+## 3325 70464 Vectors 1
+## 3326 70464 Vectors 1
+## 3327 70464 Vectors 1
+## 3328 70464 Vectors 1
+## 3329 70464 Vectors 1
+## 3330 70464 Vectors 1
+## 3331 70464 Vectors 1
+## 3332 70464 Vectors 1
+## 3333 70464 Vectors 1
+## 3334 70464 Vectors 1
+## 3335 70464 Vectors 0
+## 3336 70464 Vectors 1
+## 3337 70464 Vectors 1
+## 3338 70464 Vectors 1
+## 3339 70464 Vectors 1
+## 3340 70464 Vectors 1
+## 3341 70464 Vectors NA
+## 3342 70464 Dates and Times 1
+## 3343 70464 Dates and Times 1
+## 3344 70464 Dates and Times 1
+## 3345 70464 Dates and Times 0
+## 3346 70464 Dates and Times 1
+## 3347 70464 Dates and Times 1
+## 3348 70464 Dates and Times 1
+## 3349 70464 Dates and Times 1
+## 3350 70464 Dates and Times 1
+## 3351 70464 Dates and Times 1
+## 3352 70464 Dates and Times 1
+## 3353 70464 Dates and Times 1
+## 3354 70464 Dates and Times 0
+## 3355 70464 Dates and Times 0
+## 3356 70464 Dates and Times 0
+## 3357 70464 Dates and Times 0
+## 3358 70464 Dates and Times 0
+## 3359 70464 Workspace and Files 0
+## 3360 70464 Workspace and Files 1
+## 3361 70464 Workspace and Files 1
+## 3362 70464 Workspace and Files 1
+## 3363 70464 Workspace and Files 1
+## 3364 70464 Workspace and Files 1
+## 3365 70464 Workspace and Files 0
+## 3366 70464 Workspace and Files 1
+## 3367 70464 Workspace and Files 1
+## 3368 70464 Workspace and Files 1
+## 3369 70464 Workspace and Files 1
+## 3370 70464 Workspace and Files 1
+## 3371 70464 Workspace and Files 1
+## 3372 70464 Workspace and Files 1
+## 3373 70464 Workspace and Files 1
+## 3374 70464 Workspace and Files 0
+## 3375 70464 Workspace and Files 0
+## 3376 70464 Workspace and Files 1
+## 3377 70464 Workspace and Files 0
+## 3378 70464 Workspace and Files 1
+## 3379 70464 Workspace and Files 1
+## 3380 70464 Workspace and Files 1
+## 3381 70464 Workspace and Files 1
+## 3382 70464 Workspace and Files 1
+## 3383 70464 Workspace and Files 1
+## 3384 70464 Workspace and Files 1
+## 3385 70464 Workspace and Files 1
+## 3386 70464 Workspace and Files NA
+## 3387 70464 Functions 0
+## 3388 70464 Functions 1
+## 3389 70464 Functions 1
+## 3390 70464 Functions 1
+## 3391 70464 Functions 1
+## 3392 70464 Functions 0
+## 3393 70464 Functions 1
+## 3394 70464 Functions 1
+## 3395 70464 Functions 1
+## 3396 70464 Functions 1
+## 3397 70464 Functions 1
+## 3398 70464 Functions 1
+## 3399 70464 Functions 1
+## 3400 70464 Functions 1
+## 3401 70464 Functions 0
+## 3402 70464 Functions 0
+## 3403 70464 Functions 1
+## 3404 70464 Functions 1
+## 3405 70464 Functions 1
+## 3406 70464 Functions NA
+## 3407 70464 Missing Values 0
+## 3408 70464 Missing Values 1
+## 3409 70464 Missing Values 1
+## 3410 70464 Missing Values 1
+## 3411 70464 Missing Values 1
+## 3412 70464 Missing Values 1
+## 3413 70464 Missing Values 1
+## 3414 70464 Missing Values 0
+## 3415 70464 Missing Values 0
+## 3416 70464 Missing Values 1
+## 3417 70464 Missing Values 1
+## 3418 70464 Missing Values 1
+## 3419 70464 Missing Values NA
+## 3420 70464 Subsetting Vectors 1
+## 3421 70464 Subsetting Vectors 1
+## 3422 70464 Subsetting Vectors 0
+## 3423 70464 Subsetting Vectors 0
+## 3424 70464 Subsetting Vectors 0
+## 3425 70464 Subsetting Vectors 1
+## 3426 70464 Subsetting Vectors 1
+## 3427 70464 Subsetting Vectors 0
+## 3428 70464 Subsetting Vectors 1
+## 3429 70464 Subsetting Vectors 1
+## 3430 70464 Subsetting Vectors 1
+## 3431 70464 Subsetting Vectors 1
+## 3432 70464 Subsetting Vectors 1
+## 3433 70464 Subsetting Vectors 1
+## 3434 70464 Subsetting Vectors 0
+## 3435 70464 Subsetting Vectors 1
+## 3436 70464 Subsetting Vectors 1
+## 3437 70464 Subsetting Vectors 1
+## 3438 70464 Subsetting Vectors 1
+## 3439 70464 Workspace and Files 1
+## 3440 70464 Missing Values 0
+## 3441 70464 Missing Values 1
+## 3442 70464 Missing Values 0
+## 3443 70464 Missing Values 1
+## 3444 70464 Missing Values 1
+## 3445 70464 Missing Values 1
+## 3446 70464 Missing Values 1
+## 3447 70464 Subsetting Vectors 1
+## 3448 70464 Subsetting Vectors 1
+## 3449 70464 Subsetting Vectors 1
+## 3450 11801 Dates and Times 1
+## 3451 11801 Tidying Data with tidyr 1
+## 3452 11801 Dates and Times 1
+## 3453 11801 Dates and Times 1
+## 3454 11801 Dates and Times 1
+## 3455 11801 Dates and Times 1
+## 3456 11801 Dates and Times 0
+## 3457 11801 Tidying Data with tidyr 1
+## 3458 11801 Grouping and Chaining with dplyr 1
+## 3459 11801 Tidying Data with tidyr 1
+## 3460 11801 Tidying Data with tidyr 1
+## 3461 11801 Tidying Data with tidyr 1
+## 3462 11801 Dates and Times 1
+## 3463 11801 Tidying Data with tid NA
+## 3464 11801 Basic Building Blocks 1
+## 3465 11801 Dates and Times 1
+## 3466 11801 Logic 1
+## 3467 11801 Missing Values 1
+## 3468 11801 NA
+## 3469 11801 Missing Values 0
+## 3470 11801 Grouping and C NA
+## 3471 11801 Basic Building Blocks 1
+## 3472 11801 Grouping and Chaining with dplyr 1
+## 3473 11801 Dates and Times 1
+## 3474 11801 Tidying Data with tidyr 1
+## 3475 11801 Subsetting Vectors 1
+## 3476 11801 Dates and Times 1
+## 3477 11801 Workspace and Files 1
+## 3478 11801 Dates and Times 1
+## 3479 11801 Dates and Times 1
+## 3480 11801 Tidying Data with tidyr 0
+## 3481 11801 Grouping and Chaining with dplyr 1
+## 3482 11801 Dates and Times 1
+## 3483 11801 Dates and Times 1
+## 3484 11801 Vectors 1
+## 3485 11801 Subsetting Vectors 1
+## 3486 11801 Tidying Data with tidyr 1
+## 3487 11801 Grouping and Chaining with dplyr 1
+## 3488 11801 Logic 1
+## 3489 11801 Grouping and Chaining with dplyr 1
+## 3490 11801 Tidying Data with tidyr 1
+## 3491 11801 Missing Values 1
+## 3492 11801 Matrices and Data Frames 0
+## 3493 11801 Grouping and Chaining with dplyr 1
+## 3494 11801 Tidying Data with tidyr 0
+## 3495 11801 Dates and Times 1
+## 3496 11801 Grouping and Chaining with dplyr 1
+## 3497 11801 Dates and Times 1
+## 3498 11801 Tidying Data with tidyr 0
+## 3499 11801 Grouping and Chaining with dplyr 1
+## 3500 11801 Subsetting Vectors 1
+## 3501 11801 Manipulating Data with dplyr 1
+## 3502 11801 Lo NA
+## 3503 11801 Workspace and Files 1
+## 3504 11801 Grouping and Chaining with dplyr 1
+## 3505 11801 Grouping and Chaining with dplyr 1
+## 3506 11801 Logic 1
+## 3507 11801 Logic 1
+## 3508 11801 Logic 0
+## 3509 11801 Logic 1
+## 3510 11801 Vectors 1
+## 3511 11801 Vectors 1
+## 3512 11801 Subsetting Vectors 1
+## 3513 11801 Manipulating Data with dplyr 1
+## 3514 11801 Logic 1
+## 3515 11801 Vectors 1
+## 3516 11801 Vectors 0
+## 3517 11801 Workspace and Files 1
+## 3518 11801 Looking at Data 1
+## 3519 11801 Basic Building Blocks 1
+## 3520 11801 Matrices and Data Frames 1
+## 3521 11801 Tidying Data with tidyr 1
+## 3522 11801 Missing Values 1
+## 3523 11801 Missing Values 1
+## 3524 11801 Tidying Data with tidyr 0
+## 3525 11801 Basic Building Blocks 1
+## 3526 11801 Logic 1
+## 3527 11801 Subsetting Vectors 1
+## 3528 11801 Workspace and Files 1
+## 3529 11801 Workspace and Files 1
+## 3530 11801 Looking at Data 1
+## 3531 11801 Vectors 1
+## 3532 11801 Vectors 1
+## 3533 11801 Vectors 1
+## 3534 11801 Vectors 1
+## 3535 11801 Dates and Times 1
+## 3536 11801 Vectors 1
+## 3537 11801 Subsetting Vectors 1
+## 3538 11801 Grouping and Chaining with dplyr 1
+## 3539 11801 Subsetting Vectors 1
+## 3540 11801 Vectors 1
+## 3541 11801 Manipulating Data with dplyr 1
+## 3542 11801 Manipulating Data with dplyr 1
+## 3543 11801 Vectors 1
+## 3544 11801 Vectors 1
+## 3545 11801 Vectors 1
+## 3546 11801 Vectors 1
+## 3547 11801 Vectors 1
+## 3548 11801 Logic 1
+## 3549 11801 Workspace and Files 1
+## 3550 11801 Logic 1
+## 3551 11801 Subsetting Vectors 1
+## 3552 11801 Vectors 1
+## 3553 11801 Logic 1
+## 3554 11801 Workspace and Files 1
+## 3555 11801 Workspace and Files 1
+## 3556 11801 Missing Values 1
+## 3557 11801 Missing Values 1
+## 3558 11801 Missing Values 1
+## 3559 11801 Looking at Data 1
+## 3560 11801 Basic Building Blocks 1
+## 3561 11801 Missing Values 1
+## 3562 11801 Matrices and Data Frames 1
+## 3563 11801 Matrices and Data Frames 1
+## 3564 11801 Missing Values NA
+## 3565 11801 Subsetting Vectors 1
+## 3566 11801 Basic Building Blocks 1
+## 3567 11801 Basic Building Blocks 1
+## 3568 11801 Basic Building Blocks 1
+## 3569 11801 Looking at Data NA
+## 3570 11801 Looking at Data 1
+## 3571 11801 Logic 1
+## 3572 11801 Logic 1
+## 3573 11801 Subsetting Vectors 1
+## 3574 11801 Subsetting Vectors 1
+## 3575 11801 Grouping and Chaining with dplyr 1
+## 3576 11801 Subsetting Vectors 1
+## 3577 11801 Workspace and Files 1
+## 3578 11801 Workspace and Files 1
+## 3579 11801 Subsetting Vectors 1
+## 3580 11801 Subsetting Vectors 1
+## 3581 11801 Vectors 1
+## 3582 11801 Vectors 1
+## 3583 11801 Logic 1
+## 3584 11801 Missing Values 1
+## 3585 11801 Looking at Data 1
+## 3586 11801 Logic 1
+## 3587 11801 Logic 1
+## 3588 11801 Workspace and Files 1
+## 3589 11801 Missing Values 1
+## 3590 11801 Basic Building Blocks 1
+## 3591 11801 NA
+## 3592 11801 Logic 1
+## 3593 11801 Logic 1
+## 3594 11801 Logic 1
+## 3595 11801 Workspace and Files 1
+## 3596 11801 Looking at Data 1
+## 3597 11801 Looking at Data 1
+## 3598 11801 Looking at Data 1
+## 3599 11801 Matrices and Data Frames 1
+## 3600 11801 Matrices and Data Frames 1
+## 3601 11801 Basic Building Blocks 1
+## 3602 11801 Looking at Data 1
+## 3603 11801 Workspace and Files 1
+## 3604 11801 Matrices and Data Frames 1
+## 3605 11801 Basic Building Blocks 1
+## 3606 11801 Basic Building Blocks 1
+## 3607 11801 Manipulating Data with dplyr 1
+## 3608 11801 Manipulating Data with dplyr 1
+## 3609 11801 Manipulating Data with dplyr 1
+## 3610 11801 Looking at Data 1
+## 3611 11801 Matrices and Data Frames 0
+## 3612 11801 Matrices and Data Frames 1
+## 3613 11801 Matrices and Data Frames 1
+## 3614 11801 Matrices and Data Frames 1
+## 3615 11801 Subsetting Vectors 1
+## 3616 11801 Basic Building Blocks 1
+## 3617 11801 Subsetting Vectors 1
+## 3618 11801 Missing Values 1
+## 3619 11801 Workspace and Files 1
+## 3620 11801 Workspace and Files 1
+## 3621 11801 Looking at Data 1
+## 3622 11801 Subsetti NA
+## 3623 11801 Missing Values 1
+## 3624 11801 Looking at Data 1
+## 3625 11801 Matrices and Data Frames 1
+## 3626 11801 Matrices and Data Frames 1
+## 3627 11801 Basic Building Blocks 1
+## 3628 11801 Matrices and Data Frames 1
+## 3629 11801 Manipulating Data with dplyr 1
+## 3630 11801 Workspace and Files 1
+## 3631 11801 Missing Values 1
+## 3632 11801 Basic Building Blocks 1
+## 3633 11801 Looking at Data 1
+## 3634 11801 Manipulating Data with dplyr 1
+## 3635 11801 Manipulating Data with dplyr 1
+## 3636 11801 Looking at Data 1
+## 3637 11801 Matrices and Data Frames 1
+## 3638 11801 Looking at Data 1
+## 3639 11801 Basic Building Blocks 1
+## 3640 11801 Manipulating Data with dplyr 1
+## 3641 11801 Missing Values 1
+## 3642 11801 Manipulating Data with dplyr 1
+## 3643 11801 Looking at Data 0
+## 3644 11801 Manipulating Data with dplyr 1
+## 3645 75323 Functions 1
+## 3646 75323 Functions 1
+## 3647 75323 Fu NA
+## 3648 75323 Functions 1
+## 3649 75323 Functions 1
+## 3650 75323 Functions 1
+## 3651 75323 Functions 1
+## 3652 75323 Functions 0
+## 3653 75323 Functions 1
+## 3654 75323 Functions 1
+## 3655 75323 Functions 1
+## 3656 75323 Functions 1
+## 3657 75323 Functions 1
+## 3658 75323 Functions 1
+## 3659 75323 Functions 1
+## 3660 75323 Functions 1
+## 3661 75323 Functions 1
+## 3662 75323 Functions 1
+## 3663 75323 Functions 1
+## 3664 27264 Vectors 1
+## 3665 27264 Vectors 1
+## 3666 27264 Vectors 1
+## 3667 27264 Vectors 1
+## 3668 27264 Missing Values 1
+## 3669 27264 Missing Values 1
+## 3670 27264 Missing Values 1
+## 3671 27264 Missing Values 1
+## 3672 27264 Missing Values 1
+## 3673 27264 Vectors 1
+## 3674 27264 Vectors 1
+## 3675 27264 Vectors 1
+## 3676 27264 Vectors 1
+## 3677 27264 Vectors 1
+## 3678 27264 Vectors 0
+## 3679 27264 Missing Values 1
+## 3680 27264 Missing Values 1
+## 3681 27264 Vectors 1
+## 3682 27264 Vectors 1
+## 3683 27264 Vectors 1
+## 3684 27264 Vectors 1
+## 3685 27264 Vectors NA
+## 3686 27264 Missing Values 1
+## 3687 27264 Missing Values 1
+## 3688 27264 Missing Values 1
+## 3689 27264 Missing Values 1
+## 3690 27264 Missing Values 1
+## 3691 27264 Missing Values 1
+## 3692 27264 Subsetting Vectors 1
+## 3693 27264 Subsetting Vectors 1
+## 3694 27264 Subsetting Vectors 1
+## 3695 27264 Subsetting Vectors 1
+## 3696 27264 Subsetting Vectors 1
+## 3697 27264 Subsetting Vectors 1
+## 3698 27264 Subsetting Vectors NA
+## 3699 27264 Logic 1
+## 3700 27264 Logic 1
+## 3701 27264 Logic 1
+## 3702 27264 Logic 1
+## 3703 27264 Logic 1
+## 3704 27264 Logic 1
+## 3705 27264 Logic 1
+## 3706 27264 Logic 1
+## 3707 27264 Logic 1
+## 3708 27264 Missing Values 1
+## 3709 27264 Missing Values NA
+## 3710 27264 Subsetting Vectors 1
+## 3711 27264 Subsetting Vectors 1
+## 3712 27264 Subsetting Vectors 0
+## 3713 27264 Subsetting Vectors 1
+## 3714 27264 Subsetting Vectors 1
+## 3715 27264 Subsetting Vectors 1
+## 3716 27264 Subsetting Vectors 1
+## 3717 27264 Subsetting Vectors 0
+## 3718 27264 Subsetting Vectors 1
+## 3719 27264 Subsetting Vectors 1
+## 3720 27264 Subsetting Vectors 1
+## 3721 27264 Subsetting Vectors 1
+## 3722 27264 Subsetting Vectors 1
+## 3723 27264 Subsetting Vectors 1
+## 3724 27264 Subsetting Vectors 1
+## 3725 27264 Subsetting Vectors 1
+## 3726 27264 Subsetting Vectors 1
+## 3727 27264 Subsetting Vectors 1
+## 3728 27264 Subsetting Vectors 1
+## 3729 27264 Subsetting Vectors 1
+## 3730 27264 Subsetting Vectors 1
+## 3731 27264 Subsetting Vectors 1
+## 3732 27264 Logic 1
+## 3733 27264 Logic 1
+## 3734 27264 Logic NA
+## 3735 27264 Dates and Times 1
+## 3736 27264 Dates and Times 1
+## 3737 27264 Dates and Times 1
+## 3738 27264 Dates and Times 1
+## 3739 27264 Dates and Times 1
+## 3740 27264 Dates and Times 1
+## 3741 27264 Dates and Times 1
+## 3742 27264 Dates and Times 1
+## 3743 27264 Dates and Times 1
+## 3744 27264 Dates and Times 1
+## 3745 27264 Dates and Times 1
+## 3746 27264 Dates and Times 1
+## 3747 27264 Dates and Times 1
+## 3748 27264 Dates and Times 1
+## 3749 27264 Dates and Times 1
+## 3750 27264 Dates and Times 1
+## 3751 27264 Dates and Times 1
+## 3752 27264 Dates and Times 1
+## 3753 27264 Dates and Times 1
+## 3754 27264 Dates and Times 1
+## 3755 27264 Dates and Times 1
+## 3756 27264 Dates and Times 1
+## 3757 27264 Dates and Times 1
+## 3758 27264 Dates and Times 1
+## 3759 27264 Dates and Times 1
+## 3760 27264 Dates and Times 1
+## 3761 27264 Dates and Times 1
+## 3762 27264 Dates and Times 1
+## 3763 27264 Dates and Times NA
+## 3764 27264 Functions 1
+## 3765 27264 Functions 0
+## 3766 27264 Functions 1
+## 3767 27264 Functions 1
+## 3768 27264 Functions 1
+## 3769 27264 Functions 1
+## 3770 27264 Functions 1
+## 3771 27264 Functions 1
+## 3772 27264 Functions 0
+## 3773 27264 Functions 0
+## 3774 27264 Functions 1
+## 3775 27264 Functions 1
+## 3776 27264 Functions 1
+## 3777 27264 Functions 1
+## 3778 27264 Functions 1
+## 3779 27264 Functions 1
+## 3780 27264 Functions 1
+## 3781 27264 Functions 1
+## 3782 27264 Functions 1
+## 3783 27264 Functions 0
+## 3784 27264 Functions 1
+## 3785 27264 Functions 0
+## 3786 27264 Functions 1
+## 3787 27264 Functions 1
+## 3788 27264 Functions 1
+## 3789 27264 Functions 1
+## 3790 27264 Functions 1
+## 3791 27264 Functions 0
+## 3792 27264 Functions 0
+## 3793 27264 Functions 0
+## 3794 27264 Functions 1
+## 3795 27264 Functions 1
+## 3796 27264 Functions 0
+## 3797 27264 Functions 0
+## 3798 27264 Functions 1
+## 3799 27264 Functions 1
+## 3800 27264 Functions 1
+## 3801 27264 Functions 1
+## 3802 27264 Functions NA
+## 3803 27264 Matrices and Data Frames 0
+## 3804 27264 Matrices and Data Frames 1
+## 3805 27264 Matrices and Data Frames 1
+## 3806 27264 Matrices and Data Frames 1
+## 3807 27264 Matrices and Data Frames 1
+## 3808 27264 Matrices and Data Frames 1
+## 3809 27264 Matrices and Data Frames 1
+## 3810 27264 Matrices and Data Frames 1
+## 3811 27264 Matrices and Data Frames 1
+## 3812 27264 Matrices and Data Frames 1
+## 3813 27264 Matrices and Data Frames 1
+## 3814 27264 Matrices and Data Frames 1
+## 3815 27264 Matrices and Data Frames 1
+## 3816 27264 Matrices and Data Frames 1
+## 3817 27264 Matrices and Data Frames 1
+## 3818 27264 Matrices and Data Frames 1
+## 3819 27264 Matrices and Data Frames 1
+## 3820 27264 Matrices and Data Frames 1
+## 3821 27264 Matrices and Data Frames 1
+## 3822 27264 Matrices and Data Frames 1
+## 3823 27264 Matrices and Data Frames 0
+## 3824 27264 Matrices and Data Frames 1
+## 3825 27264 Matrices and Data Frames 1
+## 3826 27264 Matrices and Data Frames 1
+## 3827 27264 Matrices and Data Frames 1
+## 3828 27264 Matrices and Data Frames NA
+## 3829 27264 Logic 1
+## 3830 27264 Logic 1
+## 3831 27264 Logic 1
+## 3832 27264 Logic 1
+## 3833 27264 Logic 1
+## 3834 27264 Logic 1
+## 3835 27264 Logic 1
+## 3836 27264 Logic 1
+## 3837 27264 Logic 1
+## 3838 27264 Logic 1
+## 3839 27264 Logic 1
+## 3840 27264 Logic 1
+## 3841 27264 Logic 1
+## 3842 27264 Logic 1
+## 3843 27264 Logic 1
+## 3844 27264 Logic 1
+## 3845 27264 Logic 1
+## 3846 27264 Logic 1
+## 3847 27264 Logic 1
+## 3848 27264 Logic 1
+## 3849 27264 Logic 1
+## 3850 27264 Logic 1
+## 3851 27264 Logic 1
+## 3852 27264 Logic 1
+## 3853 27264 Vectors 0
+## 3854 27264 Vectors 1
+## 3855 27264 Vectors 1
+## 3856 27264 Vectors 0
+## 3857 27264 Vectors 1
+## 3858 27264 Vectors 1
+## 3859 27264 Vectors 1
+## 3860 27264 Vectors 1
+## 3861 27264 Plotting_Systems 1
+## 3862 27264 Plotting_Systems 0
+## 3863 27264 Plotting_Systems 1
+## 3864 27264 Plotting_Systems 1
+## 3865 27264 Plotting_Systems 1
+## 3866 27264 Plotting_Systems 1
+## 3867 27264 Plotting_Systems 1
+## 3868 27264 Plotting_Systems 0
+## 3869 27264 Plotting_Systems 1
+## 3870 27264 Plotting_Systems 1
+## 3871 27264 Plotting_Systems 1
+## 3872 27264 Plotting_Systems 1
+## 3873 27264 Plotting_Systems 1
+## 3874 27264 Plotting_Systems 1
+## 3875 27264 Plotting_Systems 1
+## 3876 27264 Plotting_Systems 1
+## 3877 27264 Plotting_Systems 1
+## 3878 27264 Plotting_Systems 1
+## 3879 27264 Plotting_Systems 1
+## 3880 27264 Plotting_Systems 1
+## 3881 27264 Plotting_Systems 1
+## 3882 27264 Plotting_Systems 1
+## 3883 27264 Plotting_Systems 1
+## 3884 27264 Plotting_Systems NA
+## 3885 27264 Manipulating Data with dplyr 1
+## 3886 27264 Manipulating Data with dplyr 1
+## 3887 27264 Manipulating Data with dplyr 1
+## 3888 27264 Manipulating Data with dplyr 1
+## 3889 27264 Manipulating Data with dplyr 1
+## 3890 27264 Manipulating Data with dplyr 0
+## 3891 27264 Manipulating Data with dplyr 0
+## 3892 27264 Manipulating Data with dplyr 1
+## 3893 27264 Manipulating Data with dplyr 1
+## 3894 27264 Manipulating Data with dplyr 1
+## 3895 27264 Manipulating Data with dplyr 1
+## 3896 27264 Manipulating Data with dplyr 1
+## 3897 27264 Manipulating Data with dplyr 1
+## 3898 27264 Manipulating Data with dplyr 1
+## 3899 27264 Manipulating Data with dplyr 1
+## 3900 27264 Manipulating Data with dplyr 1
+## 3901 27264 Manipulating Data with dplyr 1
+## 3902 27264 Manipulating Data with dplyr 1
+## 3903 27264 Manipulating Data with dplyr 1
+## 3904 27264 Manipulating Data with dplyr 1
+## 3905 27264 Manipulating Data with dplyr 1
+## 3906 27264 Manipulating Data with dplyr 1
+## 3907 27264 Manipulating Data with dplyr 1
+## 3908 27264 Manipulating Data with dplyr 1
+## 3909 27264 Manipulating Data with dplyr 1
+## 3910 27264 Manipulating Data with dplyr 0
+## 3911 27264 Manipulating Data with dplyr 1
+## 3912 27264 Manipulating Data with dplyr 1
+## 3913 27264 Manipulating Data with dplyr 1
+## 3914 27264 Manipulating Data with dplyr 1
+## 3915 27264 Manipulating Data with dplyr 1
+## 3916 27264 Manipulating Data with dplyr 1
+## 3917 27264 Manipulating Data with dplyr 1
+## 3918 27264 Manipulating Data with dplyr 1
+## 3919 27264 Manipulating Data with dplyr 1
+## 3920 27264 Manipulating Data with dplyr 1
+## 3921 27264 Manipulating Data with dplyr 1
+## 3922 27264 Manipulating Data with dplyr 1
+## 3923 27264 Manipulating Data with dplyr 1
+## 3924 27264 Manipulating Data with dplyr 1
+## 3925 27264 Manipulating Data with dplyr 1
+## 3926 27264 Manipulating Data with dplyr 1
+## 3927 27264 Manipulating Data with dplyr 1
+## 3928 27264 Manipulating Data with dplyr NA
+## 3929 27264 Base_Plotting_System 1
+## 3930 27264 Base_Plotting_System 1
+## 3931 27264 Base_Plotting_System 1
+## 3932 27264 Base_Plotting_System 0
+## 3933 27264 Base_Plotting_System 0
+## 3934 27264 Base_Plotting_System 1
+## 3935 27264 Base_Plotting_System 1
+## 3936 27264 Base_Plotting_System 1
+## 3937 27264 Base_Plotting_System 1
+## 3938 27264 Base_Plotting_System 1
+## 3939 27264 Base_Plotting_System NA
+## 3940 27264 Grouping and Chaining with dplyr 1
+## 3941 27264 Grouping and Chaining with dplyr 1
+## 3942 27264 Grouping and Chaining with dplyr 1
+## 3943 27264 Grouping and Chaining with dplyr 1
+## 3944 27264 Grouping and Chaining with dplyr 1
+## 3945 27264 Grouping and Chaining with dplyr 1
+## 3946 27264 Grouping and Chaining with dplyr 1
+## 3947 27264 Grouping and Chaining with dplyr 0
+## 3948 27264 Grouping and Chaining with dplyr 0
+## 3949 27264 Grouping and Chaining with dplyr 1
+## 3950 27264 Grouping and Chaining with dplyr 1
+## 3951 27264 Grouping and Chaining with dplyr 1
+## 3952 27264 Grouping and Chaining with dplyr 1
+## 3953 27264 Grouping and Chaining with dplyr 1
+## 3954 27264 Grouping and Chaining with dplyr NA
+## 3955 27264 Looking at Data 0
+## 3956 27264 Looking at Data 1
+## 3957 27264 Looking at Data 1
+## 3958 27264 Looking at Data 1
+## 3959 27264 Grouping and Chaining with dplyr 1
+## 3960 27264 Grouping and Chaining with dplyr 1
+## 3961 27264 Grouping and Chaining with dplyr 1
+## 3962 27264 Grouping and Chaining with dplyr 1
+## 3963 27264 Grouping and Chaining with dplyr 1
+## 3964 27264 Grouping and Chaining with dplyr 1
+## 3965 27264 Grouping and Chaining with dplyr 1
+## 3966 27264 Grouping and Chaining with dplyr 1
+## 3967 27264 Grouping and Chaining with dplyr 1
+## 3968 27264 Grouping and Chaining with dplyr 1
+## 3969 27264 Grouping and Chaining with dplyr 1
+## 3970 27264 Grouping and Chaining with dplyr 1
+## 3971 27264 Grouping and Chaining with dplyr 1
+## 3972 27264 Grouping and Chaining with dplyr 1
+## 3973 27264 Grouping and Chaining with dplyr 0
+## 3974 27264 Grouping and Chaining with dplyr 1
+## 3975 27264 Grouping and Chaining with dplyr 1
+## 3976 27264 Grouping and Chaining with dplyr 1
+## 3977 27264 Grouping and Chaining with dplyr 1
+## 3978 27264 Grouping and Chaining with dplyr 1
+## 3979 27264 Grouping and Chaining with dplyr 0
+## 3980 27264 Base_Plotting_System 1
+## 3981 27264 Base_Plotting_System 1
+## 3982 27264 Base_Plotting_System 0
+## 3983 27264 Base_Plotting_System 1
+## 3984 27264 Base_Plotting_System 1
+## 3985 27264 Base_Plotting_System 0
+## 3986 27264 Base_Plotting_System 1
+## 3987 27264 Base_Plotting_System 1
+## 3988 27264 Base_Plotting_System 1
+## 3989 27264 Base_Plotting_System 1
+## 3990 27264 Base_Plotting_System 1
+## 3991 27264 Base_Plotting_System 1
+## 3992 27264 Base_Plotting_System 1
+## 3993 27264 Base_Plotting_System 1
+## 3994 27264 Base_Plotting_System 1
+## 3995 27264 Base_Plotting_System 1
+## 3996 27264 Base_Plotting_System 1
+## 3997 27264 Base_Plotting_System 1
+## 3998 27264 Base_Plotting_System 0
+## 3999 27264 Looking at Data 1
+## 4000 27264 Looking at Data 1
+## 4001 27264 Looking at Data 1
+## 4002 27264 Looking at Data 1
+## 4003 27264 Looking at Data 1
+## 4004 27264 Looking at Data 1
+## 4005 27264 Looking at Data 1
+## 4006 27264 Looking at Data 1
+## 4007 27264 Looking at Data 0
+## 4008 27264 Looking at Data 1
+## 4009 27264 Looking at Data 1
+## 4010 27264 Looking at Data 1
+## 4011 27264 Looking at Data 1
+## 4012 27264 Looking at Data NA
+## 4013 27264 Base_Plotting_System 1
+## 4014 27264 Base_Plotting_System 1
+## 4015 27264 Base_Plotting_System 1
+## 4016 27264 Base_Plotting_System 1
+## 4017 27264 Base_Plotting_System 1
+## 4018 27264 Base_Plotting_System 1
+## 4019 27264 Base_Plotting_System 1
+## 4020 27264 Clustering_Example 1
+## 4021 27264 Clustering_Example 1
+## 4022 27264 Clustering_Example 1
+## 4023 27264 Clustering_Example 1
+## 4024 27264 Clustering_Example 1
+## 4025 27264 Clustering_Example 1
+## 4026 27264 Clustering_Example 1
+## 4027 27264 Clustering_Example 1
+## 4028 27264 Clustering_Example 1
+## 4029 27264 Clustering_Example 1
+## 4030 27264 Clustering_Example 1
+## 4031 27264 Clustering_Example 1
+## 4032 27264 Clustering_Example 1
+## 4033 27264 Clustering_Example 1
+## 4034 27264 Clustering_Example 1
+## 4035 27264 Clustering_Example 1
+## 4036 27264 Clustering_Example 0
+## 4037 27264 Clustering_Example 1
+## 4038 27264 Clustering_Example 1
+## 4039 27264 Base_Plotting_System 1
+## 4040 27264 Base_Plotting_System 1
+## 4041 27264 Base_Plotting_System 0
+## 4042 27264 Base_Plotting_System 1
+## 4043 27264 Base_Plotting_System 1
+## 4044 27264 Base_Plotting_System 1
+## 4045 27264 Base_Plotting_System 1
+## 4046 27264 Base_Plotting_System 1
+## 4047 27264 Base_Plotting_System 1
+## 4048 27264 Base_Plotting_System 1
+## 4049 27264 Base_Plotting_System 1
+## 4050 27264 Clustering_Example 1
+## 4051 27264 Clustering_Example 1
+## 4052 27264 Clustering_Example 0
+## 4053 27264 Clustering_Example 1
+## 4054 27264 Clustering_Example 1
+## 4055 27264 Clustering_Example 0
+## 4056 27264 Clustering_Example 0
+## 4057 27264 Clustering_Example 1
+## 4058 27264 Clustering_Example 0
+## 4059 27264 Clustering_Example 1
+## 4060 27264 Clustering_Example 1
+## 4061 27264 Clustering_Example 1
+## 4062 27264 Clustering_Example 1
+## 4063 27264 Clustering_Example 1
+## 4064 27264 Clustering_Example 1
+## 4065 27264 Clustering_Example 1
+## 4066 27264 Clustering_Example 0
+## 4067 27264 Clustering_Example 1
+## 4068 27264 Clustering_Example 1
+## 4069 27264 Clustering_Example 1
+## 4070 27264 Clustering_Example 1
+## 4071 27264 Clustering_Example 1
+## 4072 27264 Clustering_Example 1
+## 4073 27264 Clustering_Example 1
+## 4074 27264 Clustering_Example 1
+## 4075 27264 Clustering_Example 1
+## 4076 27264 Clustering_Example NA
+## 4077 27264 Clustering_Example 1
+## 4078 94880 Basic Building Blocks 1
+## 4079 94880 Basic Building Blocks 1
+## 4080 94880 Logic 1
+## 4081 94880 Functions 1
+## 4082 94880 Dates and Times 1
+## 4083 94880 Basic Building Blocks 1
+## 4084 94880 Functions 1
+## 4085 94880 Logic 1
+## 4086 94880 Basic Building Blocks 1
+## 4087 94880 Dates and Times 0
+## 4088 94880 Dates and Times 0
+## 4089 94880 Dates and Times 0
+## 4090 94880 Functions 1
+## 4091 94880 Basic Building Blocks 1
+## 4092 94880 Basic Building Blocks 1
+## 4093 94880 Workspace and Files 0
+## 4094 94880 Logic 1
+## 4095 94880 Subsetting Vectors 1
+## 4096 94880 Basic Building Blocks 1
+## 4097 94880 Dates and Times 1
+## 4098 94880 Subsetting Vectors 1
+## 4099 94880 Workspace and Files 1
+## 4100 94880 Workspace and Files 1
+## 4101 94880 Functions 0
+## 4102 94880 Dates and Times NA
+## 4103 94880 Subsetting Vectors 1
+## 4104 94880 Dates and Times 1
+## 4105 94880 Workspace and Files 1
+## 4106 94880 Functions 0
+## 4107 94880 Subsetting Vectors 1
+## 4108 94880 Workspace and Files 0
+## 4109 94880 Functions 1
+## 4110 94880 Functions 0
+## 4111 94880 Workspace and Files 1
+## 4112 94880 Workspace and Files 0
+## 4113 94880 Workspace and Files 1
+## 4114 94880 Vectors 1
+## 4115 94880 Functions 1
+## 4116 94880 Subsetting Vectors 1
+## 4117 94880 Dates and Times 1
+## 4118 94880 Dates and Times 1
+## 4119 94880 Vectors 1
+## 4120 94880 Dates and Times 1
+## 4121 94880 Workspace and Files 0
+## 4122 94880 Dates and Times 1
+## 4123 94880 Basic Building Blocks 1
+## 4124 94880 Subsetting Vectors 1
+## 4125 94880 Subsetting Vectors 1
+## 4126 94880 Workspace and Files 1
+## 4127 94880 Functions 0
+## 4128 94880 Logic 1
+## 4129 94880 Logic 1
+## 4130 94880 Logic 1
+## 4131 94880 Logic NA
+## 4132 94880 Workspace and Files 1
+## 4133 94880 Workspace and Files 1
+## 4134 94880 Dates and Times 1
+## 4135 94880 Functions 0
+## 4136 94880 Subsetting Vectors 1
+## 4137 94880 Subsetting Vectors 1
+## 4138 94880 Subsetting Vectors 1
+## 4139 94880 Functions 1
+## 4140 94880 Vectors 1
+## 4141 94880 Logic 1
+## 4142 94880 Logic 1
+## 4143 94880 Logic 1
+## 4144 94880 Functions 1
+## 4145 94880 Dates and Times 1
+## 4146 94880 Dates and Times 1
+## 4147 94880 Dates and Times 1
+## 4148 94880 Functions 0
+## 4149 94880 Basic Building Blocks 1
+## 4150 94880 Basic Building Blocks NA
+## 4151 94880 Subsetting Vectors NA
+## 4152 94880 Functions 1
+## 4153 94880 Functions 1
+## 4154 94880 Functions 0
+## 4155 94880 Vectors 1
+## 4156 94880 Vectors 1
+## 4157 94880 Vectors 1
+## 4158 94880 Subsetting Vectors 1
+## 4159 94880 Subsetting Vectors 0
+## 4160 94880 Subsetting Vectors 1
+## 4161 94880 Subsetting Vectors 1
+## 4162 94880 Workspace and Files 1
+## 4163 94880 Workspace and Files 1
+## 4164 94880 Workspace and Files 1
+## 4165 94880 Workspace and Files 1
+## 4166 94880 Dates and Times 0
+## 4167 94880 Logic 1
+## 4168 94880 Dates and Times 1
+## 4169 94880 Logic 1
+## 4170 94880 Workspace and Files 1
+## 4171 94880 Functions 1
+## 4172 94880 Dates and Times 1
+## 4173 94880 Dates and Times 1
+## 4174 94880 Dates and Times 1
+## 4175 94880 Logic 1
+## 4176 94880 Logic 1
+## 4177 94880 Logic 1
+## 4178 94880 Logic 1
+## 4179 94880 Logic 1
+## 4180 94880 Logic 1
+## 4181 94880 Logic 1
+## 4182 94880 Functions 1
+## 4183 94880 Functions 1
+## 4184 94880 Vectors 1
+## 4185 94880 Vectors 1
+## 4186 94880 Vectors 1
+## 4187 94880 Logic 0
+## 4188 94880 Workspace and Files 0
+## 4189 94880 Workspace and Files 1
+## 4190 94880 Workspace and Files 1
+## 4191 94880 Workspace and Files 1
+## 4192 94880 Workspace and Files 1
+## 4193 94880 Workspace and Files NA
+## 4194 94880 Logic 1
+## 4195 94880 Dates and Times 1
+## 4196 94880 Vectors 1
+## 4197 94880 Workspace and Files 1
+## 4198 94880 Workspace and Files 1
+## 4199 94880 Workspace and Files 1
+## 4200 94880 Workspace and Files 1
+## 4201 94880 Logic 1
+## 4202 94880 Functions 1
+## 4203 94880 Functions 0
+## 4204 94880 Functions 1
+## 4205 94880 Logic 1
+## 4206 94880 Logic 1
+## 4207 94880 Vectors 1
+## 4208 94880 Vectors 1
+## 4209 94880 Functions 1
+## 4210 94880 Basic Building Blocks 1
+## 4211 94880 Basic Building Blocks 1
+## 4212 94880 Basic Building Blocks 1
+## 4213 94880 Basic Building Blocks 1
+## 4214 94880 Vectors 1
+## 4215 94880 Vectors 1
+## 4216 94880 Vectors 1
+## 4217 94880 Vectors 1
+## 4218 94880 Vectors 1
+## 4219 94880 Vectors 1
+## 4220 94880 Vectors 1
+## 4221 94880 Functions 0
+## 4222 94880 Basic Building Blocks 1
+## 4223 94880 Missing Values 1
+## 4224 94880 Missing Values 1
+## 4225 94880 Functions 1
+## 4226 94880 Logic 1
+## 4227 94880 Functions 1
+## 4228 94880 Functions 1
+## 4229 94880 Functions 0
+## 4230 94880 Missing Values 1
+## 4231 94880 Missing Values 0
+## 4232 94880 Missing Values 1
+## 4233 94880 Missing Values 1
+## 4234 94880 Dates and Times 1
+## 4235 94880 Logic 1
+## 4236 94880 Basic Building Blocks 1
+## 4237 94880 Workspace and Files 1
+## 4238 94880 Subsetting Vectors 1
+## 4239 94880 Subsetting Vectors 1
+## 4240 94880 Logic 1
+## 4241 94880 Functions 1
+## 4242 94880 Logic 1
+## 4243 94880 Logic 1
+## 4244 94880 Logic 1
+## 4245 94880 Subsetting Vectors 0
+## 4246 94880 Dates and Times 1
+## 4247 94880 Basic Building Blocks 1
+## 4248 94880 Functions 1
+## 4249 94880 Logic 1
+## 4250 94880 Dates and Times 1
+## 4251 94880 Logic 1
+## 4252 94880 Logic 1
+## 4253 94880 Subsetting Vectors 1
+## 4254 94880 Functions 1
+## 4255 94880 Functions 1
+## 4256 94880 Basic Building Blocks 0
+## 4257 94880 Basic Building Blocks 1
+## 4258 94880 Basic Building Blocks 1
+## 4259 94880 Basic Building Blocks 1
+## 4260 94880 Logic 1
+## 4261 94880 Dates and Times 1
+## 4262 94880 Functions NA
+## 4263 94880 Workspace and Files 1
+## 4264 94880 Subsetting Vectors 1
+## 4265 94880 Basic Building Blocks 1
+## 4266 94880 Functions 1
+## 4267 94880 Basic Building Blocks 1
+## 4268 94880 Basic Building Blocks 1
+## 4269 94880 Functions 1
+## 4270 94880 Subsetting Vectors 1
+## 4271 94880 Subsetting Vectors 1
+## 4272 94880 Missing Values 1
+## 4273 94880 Subsetting Vectors 1
+## 4274 94880 Functions 1
+## 4275 94880 Dates and Times 1
+## 4276 94880 Dates and Times 1
+## 4277 94880 Logic 1
+## 4278 94880 Dates and Times 1
+## 4279 94880 Dates and Times 1
+## 4280 94880 Functions 1
+## 4281 94880 Dates and Times 1
+## 4282 94880 Subsetting Vectors 1
+## 4283 94880 Subsetting Vectors 1
+## 4284 94880 Subsetting Vectors 1
+## 4285 94880 Logic 1
+## 4286 94880 Functions 1
+## 4287 94880 Vectors NA
+## 4288 94880 Missing Values 1
+## 4289 94880 Functions 1
+## 4290 94880 Missing Values 1
+## 4291 94880 Logic 1
+## 4292 94880 Missing Values 1
+## 4293 94880 Missing Values 1
+## 4294 94880 Subsetting Vectors 1
+## 4295 94880 Missing Values 1
+## 4296 94880 Dates and Times 1
+## 4297 94880 Missing Values 0
+## 4298 94880 Dates and Times 1
+## 4299 94880 Missing Values 1
+## 4300 94880 Missing Values 1
+## 4301 94880 Subsetting Vectors 1
+## 4302 94880 Missing Values 1
+## 4303 94880 Missing Values NA
+## 4304 94880 Dates and Times 0
+## 4305 94880 Subsetting Vectors 1
+## 4306 94880 Dates and Times 1
+## 4307 46250 Workspace and Files 1
+## 4308 46250 Workspace and Files 1
+## 4309 46250 Logic 1
+## 4310 46250 Missing Values 1
+## 4311 46250 Logic 1
+## 4312 46250 Subsetting Vectors 1
+## 4313 46250 Workspace and Files 1
+## 4314 46250 Workspace and Files 0
+## 4315 46250 Missing Values 1
+## 4316 46250 Workspace and Files 0
+## 4317 46250 Workspace and Files 1
+## 4318 46250 Logic 1
+## 4319 46250 Dates and Times 1
+## 4320 46250 Logic 1
+## 4321 46250 Missing Values 1
+## 4322 46250 Logic 1
+## 4323 46250 Functions 1
+## 4324 46250 Subsetting Vectors NA
+## 4325 46250 Vectors 1
+## 4326 46250 Subsetting Vectors 1
+## 4327 46250 Basic Building Blocks 1
+## 4328 46250 Subsetting Vectors 1
+## 4329 46250 Subsetting Vectors 1
+## 4330 46250 Workspace and Files 1
+## 4331 46250 Workspace and Files 1
+## 4332 46250 Logic 1
+## 4333 46250 Workspace and Files 1
+## 4334 46250 Subsetting Vectors 1
+## 4335 46250 Workspace and Files 1
+## 4336 46250 Subsetting Vectors 1
+## 4337 46250 Basic Building Blocks 1
+## 4338 46250 Basic Building Blocks 1
+## 4339 46250 Workspace and Files 1
+## 4340 46250 Subsetting Vectors 1
+## 4341 46250 Logic 1
+## 4342 46250 Basic Building Blocks 0
+## 4343 46250 Subsetting Vectors 1
+## 4344 46250 Subsetting Vectors 1
+## 4345 46250 Basic Building Blocks 0
+## 4346 46250 Basic Building Blocks 1
+## 4347 46250 Subsetting Vectors 1
+## 4348 46250 Subsetting Vectors 1
+## 4349 46250 Dates and Times 1
+## 4350 46250 Vectors 1
+## 4351 46250 Vectors 1
+## 4352 46250 Basic Building Blocks 1
+## 4353 46250 Logic 1
+## 4354 46250 Workspace and Files 1
+## 4355 46250 Workspace and Files 1
+## 4356 46250 Basic Building Blocks 1
+## 4357 46250 Basic Building Blocks 1
+## 4358 46250 Functions 1
+## 4359 46250 Functions 1
+## 4360 46250 Subsetting Vectors 1
+## 4361 46250 Dates and Times 1
+## 4362 46250 Basic Building Blocks 1
+## 4363 46250 Subsetting Vectors 1
+## 4364 46250 Functions 1
+## 4365 46250 Functions 1
+## 4366 46250 Vectors 1
+## 4367 46250 Vectors NA
+## 4368 46250 Functions 1
+## 4369 46250 Workspace and Files 1
+## 4370 46250 Workspace and Files 1
+## 4371 46250 Workspace and Files 0
+## 4372 46250 Workspace and Files 0
+## 4373 46250 Functions 0
+## 4374 46250 Basic Building Blocks 1
+## 4375 46250 Vectors 0
+## 4376 46250 Functions 1
+## 4377 46250 Dates and Times 1
+## 4378 46250 Dates and Times 1
+## 4379 46250 Vectors 1
+## 4380 46250 Basic Building Blocks NA
+## 4381 46250 Logic 1
+## 4382 46250 Logic 1
+## 4383 46250 Workspace and Files 1
+## 4384 46250 Workspace and Files NA
+## 4385 46250 Vectors 0
+## 4386 46250 Workspace and Files 1
+## 4387 46250 Workspace and Files 1
+## 4388 46250 Subsetting Vectors 1
+## 4389 46250 Vectors 1
+## 4390 46250 Logic 0
+## 4391 46250 Logic 0
+## 4392 46250 Vectors 1
+## 4393 46250 Logic 1
+## 4394 46250 Vectors 1
+## 4395 46250 Vectors 1
+## 4396 46250 Logic 1
+## 4397 46250 Vectors 1
+## 4398 46250 Vectors 1
+## 4399 46250 Vectors 1
+## 4400 46250 Workspace and Files 0
+## 4401 46250 Logic 0
+## 4402 46250 Functions 1
+## 4403 46250 Functions 1
+## 4404 46250 Vectors 1
+## 4405 46250 Dates and Times 1
+## 4406 46250 Basic Building Blocks 1
+## 4407 46250 Basic Building Blocks 1
+## 4408 46250 Basic Building Blocks 1
+## 4409 46250 Basic Building Blocks 1
+## 4410 46250 Logic 1
+## 4411 46250 Logic 1
+## 4412 46250 Logic 1
+## 4413 46250 Vectors 1
+## 4414 46250 Functions 0
+## 4415 46250 Functions 1
+## 4416 46250 Missing Values 1
+## 4417 46250 Missing Values 1
+## 4418 46250 Logic 1
+## 4419 46250 Logic 1
+## 4420 46250 Functions 1
+## 4421 46250 Subsetting Vectors 1
+## 4422 46250 Missing Values 1
+## 4423 46250 Logic 0
+## 4424 46250 Logic 1
+## 4425 46250 Logic 1
+## 4426 46250 Logic 1
+## 4427 46250 Logic 0
+## 4428 46250 Vectors 0
+## 4429 46250 Logic 1
+## 4430 46250 Logic 1
+## 4431 46250 Workspace and Files 1
+## 4432 46250 Workspace and Files 1
+## 4433 46250 Subsetting Vectors 0
+## 4434 46250 Subsetting Vectors 0
+## 4435 46250 Subsetting Vectors 0
+## 4436 46250 Vectors 1
+## 4437 46250 Subsetting Vectors 1
+## 4438 46250 Subsetting Vectors 0
+## 4439 46250 Subsetting Vectors 1
+## 4440 46250 Workspace and Files 1
+## 4441 46250 Subsetting Vectors 1
+## 4442 46250 Subsetting Vectors 1
+## 4443 46250 Vectors 1
+## 4444 46250 Dates and Times 0
+## 4445 46250 Subsetting Vectors 0
+## 4446 46250 Logic 1
+## 4447 46250 Logic 1
+## 4448 46250 Logic 1
+## 4449 46250 Workspace and Files 1
+## 4450 46250 Functions 1
+## 4451 46250 Functions 1
+## 4452 46250 Functions 1
+## 4453 46250 Functions 1
+## 4454 46250 Functions 1
+## 4455 46250 Missing Values 1
+## 4456 46250 Dates and Times 1
+## 4457 46250 Subsetting Vectors 0
+## 4458 46250 Vectors 1
+## 4459 46250 Logic 0
+## 4460 46250 Subsetting Vectors 1
+## 4461 46250 Subsetting Vectors 0
+## 4462 46250 Vectors 1
+## 4463 46250 Functions 0
+## 4464 46250 Missing Values 0
+## 4465 46250 Missing Values 1
+## 4466 46250 Logic 1
+## 4467 46250 Vectors 1
+## 4468 46250 Logic 1
+## 4469 46250 Subsetting Vectors 1
+## 4470 46250 Vectors 1
+## 4471 46250 Vectors 1
+## 4472 46250 Vectors 1
+## 4473 46250 Vectors 1
+## 4474 46250 Functions 1
+## 4475 46250 Functions 0
+## 4476 46250 Subsetting Vectors 1
+## 4477 46250 Basic Building Blocks 1
+## 4478 46250 Logic 1
+## 4479 46250 Logic 1
+## 4480 46250 Vectors 1
+## 4481 46250 Vectors 1
+## 4482 46250 Vectors 1
+## 4483 46250 Subsetting Vectors 1
+## 4484 46250 Logic 1
+## 4485 46250 Vectors 0
+## 4486 46250 Vectors 1
+## 4487 46250 Vectors 0
+## 4488 46250 Vectors 1
+## 4489 46250 Vectors 1
+## 4490 46250 Vectors 1
+## 4491 46250 Workspace and Files 1
+## 4492 46250 Vectors NA
+## 4493 46250 Missing Values 1
+## 4494 46250 Missing Values 1
+## 4495 46250 Dates and Times 1
+## 4496 46250 Basic Building Blocks 1
+## 4497 46250 Vectors 0
+## 4498 46250 Vectors 1
+## 4499 46250 Vectors 1
+## 4500 46250 Basic Building Blocks 1
+## 4501 46250 Workspace and Files 1
+## 4502 46250 Functions 1
+## 4503 46250 Workspace and Files 0
+## 4504 46250 Dates and Times 1
+## 4505 46250 Missing Values 1
+## 4506 46250 Missing Values 1
+## 4507 46250 Missing Values 1
+## 4508 46250 Subsetting Vectors 1
+## 4509 46250 Missing Values NA
+## 4510 46250 Logic 1
+## 4511 46250 Functions 1
+## 4512 46250 Functions 1
+## 4513 46250 Functions 1
+## 4514 46250 Functions 1
+## 4515 46250 Workspace and Files 1
+## 4516 46250 Dates and Times 1
+## 4517 46250 Vectors 1
+## 4518 46250 Vectors 1
+## 4519 46250 Vectors 1
+## 4520 46250 Basic Building Blocks 1
+## 4521 46250 Basic Building Blocks 1
+## 4522 46250 Subsetting Vectors 0
+## 4523 46250 Subsetting Vectors 1
+## 4524 46250 Dates and Times 1
+## 4525 46250 Logic 1
+## 4526 46250 Logic 1
+## 4527 46250 Logic 1
+## 4528 46250 Functions 1
+## 4529 46250 Vectors 1
+## 4530 46250 Functions 1
+## 4531 46250 Vectors 1
+## 4532 46250 Basic Building Blocks 1
+## 4533 46250 Dates and Times 1
+## 4534 46250 Dates and Times 1
+## 4535 46250 Functions 1
+## 4536 46250 Logic 1
+## 4537 46250 Functions 1
+## 4538 46250 Dates and Times 1
+## 4539 46250 Dates and Times 1
+## 4540 46250 Dates and Times 1
+## 4541 46250 Logic NA
+## 4542 46250 Dates and Times 1
+## 4543 46250 Vectors 1
+## 4544 46250 Functions 1
+## 4545 46250 Dates and Times 1
+## 4546 46250 Missing Values 1
+## 4547 46250 Subsetting Vectors 1
+## 4548 46250 Dates and Times 1
+## 4549 46250 Dates and Times 0
+## 4550 46250 Dates and Times 1
+## 4551 46250 Dates and Times 1
+## 4552 46250 Basic Building Blocks 1
+## 4553 46250 Basic Building Blocks 1
+## 4554 46250 Dates and Times 0
+## 4555 46250 Dates and Times 1
+## 4556 46250 Basic Building Blocks 1
+## 4557 46250 Dates and Times 0
+## 4558 46250 Dates and Times 1
+## 4559 46250 Functions 1
+## 4560 46250 Dates and Times 1
+## 4561 46250 Dates and Times 1
+## 4562 46250 Basic Building Blocks 0
+## 4563 46250 Functions NA
+## 4564 46250 Dates and Times 1
+## 4565 46250 Dates and Times 1
+## 4566 46250 Dates and Times 1
+## 4567 46250 Dates and Times NA
+## 4568 92108 Logic 1
+## 4569 92108 Basic Building Blocks 1
+## 4570 92108 Logic 1
+## 4571 92108 Logic 1
+## 4572 92108 Basic Building Blocks 1
+## 4573 92108 Logic 1
+## 4574 92108 Logic 1
+## 4575 92108 Logic 1
+## 4576 92108 Workspace and Files 1
+## 4577 92108 Logic NA
+## 4578 92108 Workspace and Files 1
+## 4579 92108 Workspace and Files 0
+## 4580 92108 Workspace and Files 1
+## 4581 92108 Workspace and Files 1
+## 4582 92108 Vectors 1
+## 4583 92108 Basic Building Blocks 1
+## 4584 92108 Logic 1
+## 4585 92108 Logic 1
+## 4586 92108 Workspace and Files 1
+## 4587 92108 Vectors NA
+## 4588 92108 Logic 1
+## 4589 92108 Logic 1
+## 4590 92108 Basic Building Blocks 1
+## 4591 92108 Dates and Times 1
+## 4592 92108 Dates and Times NA
+## 4593 92108 Workspace and Files 1
+## 4594 92108 Vectors 1
+## 4595 92108 Vectors 1
+## 4596 92108 Workspace and Files 1
+## 4597 92108 Basic Building Blocks 1
+## 4598 92108 Basic Building Blocks 1
+## 4599 92108 Vectors 1
+## 4600 92108 Subsetting Vectors 1
+## 4601 92108 Missing Values 1
+## 4602 92108 Basic Building Blocks 1
+## 4603 92108 Basic Building Blocks 1
+## 4604 92108 Basic Building Blocks 1
+## 4605 92108 Dates and Times 1
+## 4606 92108 Dates and Times 0
+## 4607 92108 Dates and Times 1
+## 4608 92108 Vectors 0
+## 4609 92108 Basic Building Blocks 1
+## 4610 92108 Dates and Times 1
+## 4611 92108 Dates and Times 1
+## 4612 92108 Logic 1
+## 4613 92108 Dates and Times 1
+## 4614 92108 Subsetting Vectors 1
+## 4615 92108 Subsetting Vectors 1
+## 4616 92108 Missing Values 1
+## 4617 92108 Workspace and Files 0
+## 4618 92108 Basic Building Blocks 1
+## 4619 92108 Dates and Times 1
+## 4620 92108 Basic Building Blocks 1
+## 4621 92108 Dates and Times 1
+## 4622 92108 Workspace and Files 1
+## 4623 92108 Basic Building Blocks 1
+## 4624 92108 Workspace and Files 1
+## 4625 92108 Dates and Times 1
+## 4626 92108 Logic 1
+## 4627 92108 Dates and Times 1
+## 4628 92108 Dates and Times 0
+## 4629 92108 Dates and Times 1
+## 4630 92108 Basic Building Blocks 1
+## 4631 92108 Missing Values 0
+## 4632 92108 Workspace and Files 1
+## 4633 92108 Dates and Times 1
+## 4634 92108 Vectors 1
+## 4635 92108 Basic Building Blocks 1
+## 4636 92108 Basic Building Blocks NA
+## 4637 92108 Logic 1
+## 4638 92108 Logic 1
+## 4639 92108 Logic 1
+## 4640 92108 Logic 1
+## 4641 92108 Dates and Times 1
+## 4642 92108 Basic Building Blocks 1
+## 4643 92108 Subsetting Vectors 0
+## 4644 92108 Subsetting Vectors 0
+## 4645 92108 Subsetting Vectors 1
+## 4646 92108 Subsetting Vectors 1
+## 4647 92108 Subsetting Vectors 1
+## 4648 92108 Basic Building Blocks 1
+## 4649 92108 Dates and Times 1
+## 4650 92108 Dates and Times 1
+## 4651 92108 Logic 1
+## 4652 92108 Dates and Times 1
+## 4653 92108 Subsetting Vectors 1
+## 4654 92108 Workspace and Files 1
+## 4655 92108 Workspace and Files 1
+## 4656 92108 Basic Building Blocks 1
+## 4657 92108 Dates and Times 1
+## 4658 92108 Logic 0
+## 4659 92108 Basic Building Blocks 1
+## 4660 92108 Basic Building Blocks 1
+## 4661 92108 Basic Building Blocks 1
+## 4662 92108 Vectors 1
+## 4663 92108 Workspace and Files 1
+## 4664 92108 Logic 1
+## 4665 92108 Subsetting Vectors 1
+## 4666 92108 Workspace and Files 1
+## 4667 92108 Vectors 1
+## 4668 92108 Dates and Times 1
+## 4669 92108 Logic 1
+## 4670 92108 Logic 1
+## 4671 92108 Dates and Times 1
+## 4672 92108 Subsetting Vectors 0
+## 4673 92108 Subsetting Vectors 1
+## 4674 92108 Missing Values 1
+## 4675 92108 Missing Values 1
+## 4676 92108 Workspace and Files 1
+## 4677 92108 Workspace and Files 1
+## 4678 92108 Workspace and Files 0
+## 4679 92108 Vectors 1
+## 4680 92108 Missing Values 1
+## 4681 92108 Missing Values 1
+## 4682 92108 Vectors 0
+## 4683 92108 Vectors 1
+## 4684 92108 Logic 0
+## 4685 92108 Logic 1
+## 4686 92108 Dates and Times 1
+## 4687 92108 Dates and Times 0
+## 4688 92108 Dates and Times 1
+## 4689 92108 Dates and Times 1
+## 4690 92108 Vectors 1
+## 4691 92108 Dates and Times 1
+## 4692 92108 Subsetting Vectors NA
+## 4693 92108 Subsetting Vectors 1
+## 4694 92108 Subsetting Vectors 1
+## 4695 92108 Missing Values 1
+## 4696 92108 Missing Values 1
+## 4697 92108 Workspace and Files 1
+## 4698 92108 Dates and Times 1
+## 4699 92108 Dates and Times 1
+## 4700 92108 Dates and Times 1
+## 4701 92108 Dates and Times 1
+## 4702 92108 Logic 1
+## 4703 92108 Logic 1
+## 4704 92108 Subsetting Vectors 1
+## 4705 92108 Vectors 1
+## 4706 92108 Missing Values 0
+## 4707 92108 Subsetting Vectors 1
+## 4708 92108 Dates and Times 1
+## 4709 92108 Basic Building Blocks 1
+## 4710 92108 Logic 1
+## 4711 92108 Logic 1
+## 4712 92108 Logic 1
+## 4713 92108 Logic 0
+## 4714 92108 Logic 1
+## 4715 92108 Logic 1
+## 4716 92108 Logic 1
+## 4717 92108 Subsetting Vectors 1
+## 4718 92108 Missing Values 1
+## 4719 92108 Logic 1
+## 4720 92108 Vectors 1
+## 4721 92108 Subsetting Vectors 1
+## 4722 92108 Vectors 1
+## 4723 92108 Logic 1
+## 4724 92108 Subsetting Vectors 1
+## 4725 92108 Logic 1
+## 4726 92108 Logic 1
+## 4727 92108 Logic 0
+## 4728 92108 Logic 1
+## 4729 92108 Vectors 0
+## 4730 92108 Missing Values NA
+## 4731 92108 Vectors 1
+## 4732 92108 Workspace and Files NA
+## 4733 92108 Missing Values 1
+## 4734 92108 Workspace and Files 1
+## 4735 92108 Workspace and Files 0
+## 4736 92108 Workspace and Files 1
+## 4737 92108 Vectors 1
+## 4738 92108 Workspace and Files 1
+## 4739 92108 Workspace and Files 1
+## 4740 92108 Subsetting Vectors 1
+## 4741 92108 Workspace and Files 1
+## 4742 92108 Subsetting Vectors 1
+## 4743 92108 Subsetting Vectors 1
+## 4744 92108 Vectors 1
+## 4745 92108 Subsetting Vectors 1
+## 4746 92108 Vectors 1
+## 4747 92108 Vectors 1
+## 4748 92108 Vectors 1
+## 4749 92108 Missing Values 1
+## 4750 92108 Missing Values 1
+## 4751 92108 Missing Values 1
+## 4752 92108 Logic 1
+## 4753 92108 Workspace and Files 1
+## 4754 92108 Subsetting Vectors 1
+## 4755 92108 Subsetting Vectors 1
+## 4756 92108 Missing Values 0
+## 4757 92108 Subsetting Vectors 1
+## 4758 92108 Subsetting Vectors 1
+## 4759 92108 Subsetting Vectors 1
+## 4760 92108 Missing Values 1
+## 4761 92108 Subsetting Vectors 1
+## 4762 12264 Manipulating Data with dplyr 0
+## 4763 12264 Matrices and Data Frames 0
+## 4764 12264 Manipulating Data with dplyr 1
+## 4765 12264 Manipulating Data with dplyr 1
+## 4766 12264 Functions 1
+## 4767 12264 Tidying Data with tidyr 1
+## 4768 12264 Manipulating Data with dplyr 0
+## 4769 12264 Manipulating Data with dplyr 1
+## 4770 12264 Manipulating Data with dplyr 1
+## 4771 12264 Matrices and Data Frames 1
+## 4772 12264 Manipulating Data with dplyr 1
+## 4773 12264 Manipulating Data with dplyr 1
+## 4774 12264 Manipulating Data with dplyr 0
+## 4775 12264 Functions 0
+## 4776 12264 Tidying Data with tidyr 0
+## 4777 12264 Tidying Data with tidyr 0
+## 4778 12264 Tidying Data with tidyr 1
+## 4779 12264 Tidying Data with tidyr 1
+## 4780 12264 Manipulating Data with dplyr 1
+## 4781 12264 Tidying Data with tidyr 0
+## 4782 12264 Manipulating Data with dplyr 1
+## 4783 12264 Functions 0
+## 4784 12264 Manipulating Data with dplyr 1
+## 4785 12264 Manipulating Data with dplyr 1
+## 4786 12264 Manipulating Data with dplyr 0
+## 4787 12264 Tidying Data with tidyr 0
+## 4788 12264 Manipulating Data with dplyr 1
+## 4789 12264 Functions 1
+## 4790 12264 Functions 0
+## 4791 12264 Matrices and Data Frames 1
+## 4792 12264 Matrices and Data Frames 1
+## 4793 12264 Tidying Data with tidyr 1
+## 4794 12264 Manipulating Data with dplyr 1
+## 4795 12264 Manipulating Data with dplyr 1
+## 4796 12264 Matrices and Data Frames 0
+## 4797 12264 Tidying Data with tidyr 0
+## 4798 12264 Manipulating Data with dplyr 1
+## 4799 12264 Functions 1
+## 4800 12264 Functions 1
+## 4801 12264 Tidying Data with tidyr 1
+## 4802 12264 Manipulating Data with dplyr 1
+## 4803 12264 Tidying Data with tidyr 1
+## 4804 12264 Manipulating Data with dplyr 0
+## 4805 12264 Matrices and Data Frames NA
+## 4806 12264 Manipulating Data with dplyr 1
+## 4807 12264 Manipulating Data with dplyr 1
+## 4808 12264 Manipulating Data with dplyr 1
+## 4809 12264 Manipulating Data with dplyr 1
+## 4810 12264 Tidying Data with tidyr 0
+## 4811 12264 Manipulating Data with dplyr 1
+## 4812 12264 Manipulating Data with dplyr 1
+## 4813 12264 Functions 1
+## 4814 12264 Manipulating Data with dplyr 1
+## 4815 12264 Manipulating Data with dplyr 1
+## 4816 12264 Matrices and Data Frames 1
+## 4817 12264 Matrices and Data Frames 1
+## 4818 12264 Functions 1
+## 4819 12264 Manipulating Data with dplyr 0
+## 4820 12264 Tidying Data with tidyr 0
+## 4821 12264 Tidying Data with tidyr 0
+## 4822 12264 Tidying Data with tidyr 1
+## 4823 12264 Functions 1
+## 4824 12264 Manipulating Data with dplyr 1
+## 4825 12264 Tidying Data with tidyr 1
+## 4826 12264 Manipulating Data with dplyr 0
+## 4827 12264 Functions 1
+## 4828 12264 Manipulating Data with dplyr 1
+## 4829 12264 Manipulating Data with dplyr 1
+## 4830 12264 Manipulating Data with dplyr 1
+## 4831 12264 Manipulating Data with dplyr 0
+## 4832 12264 Functions 1
+## 4833 12264 Manipulating Data with dplyr 1
+## 4834 12264 Tidying Data with tidyr 0
+## 4835 12264 Manipulating Data with dplyr 1
+## 4836 12264 Manipulating Data with dplyr 1
+## 4837 12264 Tidying Data with tidyr 1
+## 4838 12264 Tidying Data with tidyr 1
+## 4839 12264 Tidying Data with tidyr 1
+## 4840 12264 Manipulating Data with dplyr 1
+## 4841 12264 Tidying Data with tidyr 1
+## 4842 12264 Matrices and Data Frames 1
+## 4843 12264 Tidying Data with tidyr 1
+## 4844 12264 Matrices and Data Frames 1
+## 4845 12264 Functions 1
+## 4846 12264 Functions 0
+## 4847 12264 Matrices and Data Frames 1
+## 4848 12264 Functions 1
+## 4849 12264 Tidying Data with tidyr 0
+## 4850 12264 Tidying Data with tidyr 0
+## 4851 12264 Matrices and Data Frames 1
+## 4852 12264 Matrices and Data Frames 1
+## 4853 12264 Matrices and Data Frames 1
+## 4854 12264 Tidying Data with tidyr 1
+## 4855 12264 Matrices and Data Frames 1
+## 4856 12264 Matrices and Data Frames 1
+## 4857 12264 Tidying Data with tidyr 1
+## 4858 12264 Tidying Data with tidyr 1
+## 4859 12264 Manipulating Data with dplyr NA
+## 4860 12264 Tidying Data with tidyr 1
+## 4861 12264 Manipulating Data with dplyr 1
+## 4862 12264 Tidying Data with tidyr 0
+## 4863 12264 Manipulating Data with dplyr 1
+## 4864 12264 Functions 1
+## 4865 12264 Functions 1
+## 4866 12264 Functions 1
+## 4867 12264 Functions 1
+## 4868 12264 Matrices and Data Frames 0
+## 4869 12264 Matrices and Data Frames 1
+## 4870 12264 Matrices and Data Frames 1
+## 4871 12264 Functions 1
+## 4872 12264 Tidying Data with tidyr 1
+## 4873 12264 Tidying Data with tidyr 0
+## 4874 12264 Manipulating Data with dplyr 0
+## 4875 12264 Matrices and Data Frames 1
+## 4876 12264 Tidying Data with tidyr 0
+## 4877 12264 Functions 1
+## 4878 12264 Functions 1
+## 4879 12264 Functions 1
+## 4880 12264 Manipulating Data with dplyr 0
+## 4881 12264 Manipulating Data with dplyr 1
+## 4882 12264 Tidying Data with tidyr NA
+## 4883 12264 Matrices and Data Frames 0
+## 4884 12264 Matrices and Data Frames 1
+## 4885 12264 Functions NA
+## 4886 12264 Tidying Data with tidyr 1
+## 4887 12264 Functions 1
+## 4888 12264 Manipulating Data with dplyr 0
+## 4889 12264 Functions 1
+## 4890 12264 Functions 0
+## 4891 12264 Tidying Data with tidyr 1
+## 4892 12264 Tidying Data with tidyr 1
+## 4893 12264 Matrices and Data Frames 1
+## 4894 12264 Manipulating Data with dplyr 1
+## 4895 12264 Tidying Data with tidyr 1
+## 4896 12264 Functions 1
+## 4897 12264 Functions 1
+## 4898 12264 Tidying Data with tidyr 0
+## 4899 12264 Tidying Data with tidyr 1
+## 4900 12264 Manipulating Data with dplyr 1
+## 4901 12264 Matrices and Data Frames 1
+## 4902 12264 Matrices and Data Frames 1
+## 4903 12264 Matrices and Data Frames 1
+## 4904 12264 Manipulating Data with dplyr 1
+## 4905 12264 Manipulating Data with dplyr 0
+## 4906 12264 Tidying Data with tidyr 1
+## 4907 12264 Functions 0
+## 4908 12264 Matrices and Data Frames 0
+## 4909 12264 Tidying Data with tidyr 0
+## 4910 12264 Matrices and Data Frames 1
+## 4911 12264 Tidying Data with tidyr 0
+## 4912 12264 Functions 0
+## 4913 12264 Tidying Data with tidyr 1
+## 4914 12264 Manipulating Data with dplyr 1
+## 4915 12264 Functions 1
+## 4916 12264 Manipulating Data with dplyr 1
+## 4917 12264 Manipulating Data with dplyr 1
+## 4918 12264 Functions 0
+## 4919 12264 Functions 1
+## 4920 12264 Tidying Data with tidyr 1
+## 4921 12264 Matrices and Data Frames 1
+## 4922 12264 Functions 0
+## 4923 12264 Tidying Data with tidyr 0
+## 4924 12264 Functions 0
+## 4925 12264 Functions 1
+## 4926 12264 Tidying Data with tidyr 1
+## 4927 12264 Tidying Data with tidyr 1
+## 4928 12264 Functions 0
+## 4929 12264 Functions 1
+## 4930 12264 Functions 0
+## 4931 12264 Functions 1
+## 4932 12264 Functions 0
+## 4933 12264 Functions 0
+## 4934 12264 Tidying Data with tidyr 1
+## 4935 12264 Tidying Data with tidyr 1
+## 4936 12264 Tidying Data with tidyr 1
+## 4937 12264 Tidying Data with tidyr 1
+## 4938 77484 Matrices and Data Frames 1
+## 4939 77484 Manipulating Data with dplyr 0
+## 4940 77484 Tidying Data with tidyr 1
+## 4941 77484 Manipulating Data with dplyr 1
+## 4942 77484 Tidying Data with tidyr 1
+## 4943 77484 Manipulating Data with dplyr 1
+## 4944 77484 Tidying Data with tidyr 0
+## 4945 77484 Tidying Data with tidyr 0
+## 4946 77484 Matrices and Data Frames 1
+## 4947 77484 Matrices and Data Frames 1
+## 4948 77484 Manipulating Data with dplyr 1
+## 4949 77484 Manipulating Data with dplyr NA
+## 4950 77484 Manipulating Data with dplyr 1
+## 4951 77484 Manipulating Data with dplyr 1
+## 4952 77484 Matrices and Data Frames 1
+## 4953 77484 Manipulating Data with dplyr 1
+## 4954 77484 Grouping and Chaining with dplyr 1
+## 4955 77484 Tidying Data with tidyr 0
+## 4956 77484 Manipulating Data with dplyr 1
+## 4957 77484 Manipulating Data with dplyr 1
+## 4958 77484 Matrices and Data Frames 1
+## 4959 77484 Grouping and Chaining with dplyr 1
+## 4960 77484 Matrices and Data Frames 1
+## 4961 77484 Matrices and Data Frames 1
+## 4962 77484 Grouping and Chaining with dplyr 1
+## 4963 77484 Matrices and Data Frames 1
+## 4964 77484 Tidying Data with tidyr 1
+## 4965 77484 Grouping and Chaining with dplyr 1
+## 4966 77484 Grouping and Chaining with dplyr 1
+## 4967 77484 Grouping and Chaining with dplyr 1
+## 4968 77484 Grouping and Chaining with dplyr NA
+## 4969 77484 Grouping and Chaining with dplyr 1
+## 4970 77484 Matrices and Data Frames 1
+## 4971 77484 Tidying Data with tidyr 1
+## 4972 77484 Tidying Data with tidyr 1
+## 4973 77484 Matrices and Data Frames 1
+## 4974 77484 Manipulating Data with dplyr 1
+## 4975 77484 Manipulating Data with dplyr 1
+## 4976 77484 Manipulating Data with dplyr 1
+## 4977 77484 Tidying Data with tidyr 1
+## 4978 77484 Tidying Data with tidyr 1
+## 4979 77484 Tidying Data with tidyr 1
+## 4980 77484 Grouping and Chaining with dplyr 1
+## 4981 77484 Grouping and Chaining with dplyr 1
+## 4982 77484 Grouping and Chaining with dplyr 1
+## 4983 77484 Grouping and Chaining with dplyr 1
+## 4984 77484 Tidying Data with tidyr 1
+## 4985 77484 Tidying Data with tidyr 1
+## 4986 77484 Manipulating Data with dplyr 1
+## 4987 77484 Tidying Data with tidyr 1
+## 4988 77484 Tidying Data with tidyr 1
+## 4989 77484 Tidying Data with tidyr 1
+## 4990 77484 Tidying Data with tidyr 0
+## 4991 77484 Tidying Data with tidyr 0
+## 4992 77484 Tidying Data with tidyr 0
+## 4993 77484 Tidying Data with tidyr 0
+## 4994 77484 Tidying Data with tidyr 0
+## 4995 77484 Tidying Data with tidyr 0
+## 4996 77484 Tidying Data with tidyr 1
+## 4997 77484 Tidying Data with tidyr 1
+## 4998 77484 Tidying Data with tidyr 1
+## 4999 77484 Tidying Data with tidyr 0
+## 5000 77484 Manipulating Data with dplyr 0
+## 5001 77484 Manipulating Data with dplyr 1
+## 5002 77484 Tidying Data with tidyr 1
+## 5003 77484 Tidying Data with tidyr 1
+## 5004 77484 Tidying Data with tidyr 1
+## 5005 77484 Tidying Data with tidyr 1
+## 5006 77484 Tidying Data with tidyr 0
+## 5007 77484 Manipulating Data with dplyr 1
+## 5008 77484 Manipulating Data with dplyr 1
+## 5009 77484 Manipulating Data with dplyr 1
+## 5010 77484 Manipulating Data with dplyr 1
+## 5011 77484 Manipulating Data with dplyr 1
+## 5012 77484 Manipulating Data with dplyr 0
+## 5013 77484 Manipulating Data with dplyr 1
+## 5014 77484 Tidying Data with tidyr 1
+## 5015 77484 Tidying Data with tidyr 1
+## 5016 77484 Tidying Data with tidyr 1
+## 5017 77484 Tidying Data with tidyr 0
+## 5018 77484 Tidying Data with tidyr 0
+## 5019 77484 Tidying Data with tidyr 0
+## 5020 77484 Tidying Data with tidyr 1
+## 5021 77484 Tidying Data with tidyr 1
+## 5022 77484 Grouping and Chaining with dplyr 1
+## 5023 77484 Grouping and Chaining with dplyr 1
+## 5024 77484 Grouping and Chaining with dplyr 0
+## 5025 77484 Tidying Data with tidyr NA
+## 5026 77484 Matrices and Data Frames 1
+## 5027 77484 Matrices and Data Frames 1
+## 5028 77484 Matrices and Data Frames 1
+## 5029 77484 Matrices and Data Frames 1
+## 5030 77484 Matrices and Data Frames 0
+## 5031 77484 Matrices and Data Frames 0
+## 5032 77484 Matrices and Data Frames 1
+## 5033 77484 Matrices and Data Frames 1
+## 5034 77484 Matrices and Data Frames 1
+## 5035 77484 Looking at Data 0
+## 5036 77484 Looking at Data 0
+## 5037 77484 Looking at Data 1
+## 5038 77484 Matrices and Data Frames 1
+## 5039 77484 Matrices and Data Frames 1
+## 5040 77484 Matrices and Data Frames 0
+## 5041 77484 Matrices and Data Frames 1
+## 5042 77484 Matrices and Data Frames 1
+## 5043 77484 Matrices and Data Frames 1
+## 5044 77484 Matrices and Data Frames 1
+## 5045 77484 Matrices and Data Frames NA
+## 5046 77484 Tidying Data with tidyr 0
+## 5047 77484 Tidying Data with tidyr 0
+## 5048 77484 Tidying Data with tidyr 1
+## 5049 77484 Tidying Data with tidyr 1
+## 5050 77484 Tidying Data with tidyr 1
+## 5051 77484 Tidying Data with tidyr 0
+## 5052 77484 Tidying Data with tidyr 1
+## 5053 77484 Tidying Data with tidyr 1
+## 5054 77484 Tidying Data with tidyr 1
+## 5055 77484 Tidying Data with tidyr 1
+## 5056 77484 Tidying Data with tidyr 0
+## 5057 77484 Grouping and Chaining with dplyr 1
+## 5058 77484 Grouping and Chaining with dplyr 1
+## 5059 77484 Grouping and Chaining with dplyr 1
+## 5060 77484 Grouping and Chaining with dplyr 1
+## 5061 77484 Grouping and Chaining with dplyr 1
+## 5062 77484 Plotting_Systems 1
+## 5063 77484 Plotting_Systems 1
+## 5064 77484 Plotting_Systems 1
+## 5065 77484 Grouping and Chaining with dplyr 1
+## 5066 77484 Grouping and Chaining with dplyr 1
+## 5067 77484 Grouping and Chaining with dplyr 1
+## 5068 77484 Grouping and Chaining with dplyr 1
+## 5069 77484 Grouping and Chaining with dplyr 1
+## 5070 77484 Grouping and Chaining with dplyr 1
+## 5071 77484 Manipulating Data with dplyr 1
+## 5072 77484 Manipulating Data with dplyr 1
+## 5073 77484 Manipulating Data with dplyr 1
+## 5074 77484 Manipulating Data with dplyr 1
+## 5075 77484 Plotting_Systems 1
+## 5076 77484 Plotting_Systems 1
+## 5077 77484 Plotting_Systems 0
+## 5078 77484 Plotting_Systems 1
+## 5079 77484 Looking at Data 1
+## 5080 77484 Grouping and Chaining with dplyr 1
+## 5081 77484 Grouping and Chaining with dplyr 1
+## 5082 77484 Grouping and Chaining with dplyr 1
+## 5083 77484 Plotting_Systems 0
+## 5084 77484 Plotting_Systems 1
+## 5085 77484 Plotting_Systems 1
+## 5086 77484 Plotting_Systems 1
+## 5087 77484 Plotting_Systems 1
+## 5088 77484 Plotting_Systems 1
+## 5089 77484 Manipulating Data with dplyr 1
+## 5090 77484 Manipulating Data with dplyr 1
+## 5091 77484 Manipulating Data with dplyr 1
+## 5092 77484 Plotting_Systems 1
+## 5093 77484 Plotting_Systems 1
+## 5094 77484 Plotting_Systems 1
+## 5095 77484 Manipulating Data with dplyr 1
+## 5096 77484 Plotting_Systems 1
+## 5097 77484 Plotting_Systems 1
+## 5098 77484 Plotting_Systems 1
+## 5099 77484 Plotting_Systems 1
+## 5100 77484 Plotting_Systems 0
+## 5101 77484 Manipulating Data with dplyr 1
+## 5102 77484 Looking at Data 1
+## 5103 77484 Looking at Data 1
+## 5104 77484 Looking at Data 1
+## 5105 77484 Plotting_Systems 1
+## 5106 77484 Plotting_Systems NA
+## 5107 77484 Manipulating Data with dplyr 0
+## 5108 77484 Manipulating Data with dplyr 0
+## 5109 77484 Manipulating Data with dplyr 1
+## 5110 77484 Manipulating Data with dplyr 1
+## 5111 77484 Manipulating Data with dplyr 1
+## 5112 77484 Manipulating Data with dplyr 1
+## 5113 77484 Manipulating Data with dplyr 1
+## 5114 77484 Looking at Data 1
+## 5115 77484 Manipulating Data with dplyr 1
+## 5116 77484 Looking at Data 1
+## 5117 77484 Looking at Data 1
+## 5118 77484 Manipulating Data with dplyr 1
+## 5119 77484 Manipulating Data with dplyr 1
+## 5120 77484 Manipulating Data with dplyr 1
+## 5121 77484 Grouping and Chaining with dplyr 0
+## 5122 77484 Looking at Data 1
+## 5123 77484 Looking at Data 1
+## 5124 77484 Looking at Data 1
+## 5125 77484 Manipulating Data with dplyr 1
+## 5126 77484 Looking at Data 1
+## 5127 77484 Manipulating Data with dplyr 0
+## 5128 77484 Manipulating Data with dplyr 1
+## 5129 77484 Looking at Data 1
+## 5130 77484 Manipulating Data with dplyr 1
+## 5131 77484 Plotting_Systems 1
+## 5132 77484 Grouping and Chaining with dplyr 1
+## 5133 77484 Grouping and Chaining with dplyr 1
+## 5134 77484 Looking at Data 1
+## 5135 77484 Looking at Data NA
+## 5136 77484 Plotting_Systems 1
+## 5137 77484 Looking at Data 1
+## 5138 77484 Grouping and Chaining with dplyr 1
+## 5139 77484 Grouping and Chaining with dplyr 1
+## 5140 24042 Functions 1
+## 5141 24042 Functions 1
+## 5142 24042 Logic 1
+## 5143 24042 Logic 1
+## 5144 24042 Functions 1
+## 5145 24042 Functions 1
+## 5146 24042 Functions 1
+## 5147 24042 Subsetting Vectors 0
+## 5148 24042 Logic 1
+## 5149 24042 Functions 1
+## 5150 24042 Subsetting Vectors 1
+## 5151 24042 Subsetting Vectors 1
+## 5152 24042 Functions 0
+## 5153 24042 Subsetting Vectors 1
+## 5154 24042 Functions 1
+## 5155 24042 Subsetting Vectors 1
+## 5156 24042 Functions 0
+## 5157 24042 Subsetting Vectors 1
+## 5158 24042 Workspace and Files 1
+## 5159 24042 Subsetting Vectors 1
+## 5160 24042 Vectors 1
+## 5161 24042 Subsetting Vectors 1
+## 5162 24042 Vectors 1
+## 5163 24042 Functions 1
+## 5164 24042 Functions 1
+## 5165 24042 Functions 0
+## 5166 24042 Basic Building Blocks 0
+## 5167 24042 Basic Building Blocks NA
+## 5168 24042 Vectors 1
+## 5169 24042 Functions 0
+## 5170 24042 Missing Values 1
+## 5171 24042 Subsetting Vectors 1
+## 5172 24042 Subsetting Vectors 1
+## 5173 24042 Functions 1
+## 5174 24042 Subsetting Vectors 0
+## 5175 24042 Missing Values NA
+## 5176 24042 Vectors 1
+## 5177 24042 Subsetting Vectors 1
+## 5178 24042 Subsetting Vectors 1
+## 5179 24042 Basic Building Blocks 1
+## 5180 24042 Functions 1
+## 5181 24042 Functions 0
+## 5182 24042 Workspace and Files 1
+## 5183 24042 Functions 0
+## 5184 24042 Subsetting Vectors 0
+## 5185 24042 Workspace and Files 1
+## 5186 24042 Vectors 0
+## 5187 24042 Vectors 1
+## 5188 24042 Vectors 1
+## 5189 24042 Vectors 1
+## 5190 24042 Workspace and Files 1
+## 5191 24042 Vectors 0
+## 5192 24042 Workspace and Files 0
+## 5193 24042 Workspace and Files 1
+## 5194 24042 Subsetting Vectors 1
+## 5195 24042 Functions 0
+## 5196 24042 Subsetting Vectors 1
+## 5197 24042 Workspace and Files 1
+## 5198 24042 Functions 0
+## 5199 24042 Basic Building Blocks 1
+## 5200 24042 Basic Building Blocks 1
+## 5201 24042 Basic Building Blocks 1
+## 5202 24042 Logic 1
+## 5203 24042 Logic NA
+## 5204 24042 Workspace and Files 1
+## 5205 24042 Workspace and Files 1
+## 5206 24042 Workspace and Files 1
+## 5207 24042 Functions 1
+## 5208 24042 Missing Values 1
+## 5209 24042 Workspace and Files 1
+## 5210 24042 Workspace and Files 1
+## 5211 24042 Functions 1
+## 5212 24042 Functions NA
+## 5213 24042 Workspace and Files 1
+## 5214 24042 Vectors 0
+## 5215 24042 Vectors 1
+## 5216 24042 Vectors 1
+## 5217 24042 Vectors 1
+## 5218 24042 Vectors 1
+## 5219 24042 Dates and Times 1
+## 5220 24042 Workspace and Files 1
+## 5221 24042 Workspace and Files 1
+## 5222 24042 Workspace and Files 1
+## 5223 24042 Workspace and Files 0
+## 5224 24042 Basic Building Blocks 1
+## 5225 24042 Basic Building Blocks 1
+## 5226 24042 Missing Values 1
+## 5227 24042 Missing Values 1
+## 5228 24042 Missing Values 1
+## 5229 24042 Missing Values 1
+## 5230 24042 Functions 1
+## 5231 24042 Missing Values 1
+## 5232 24042 Missing Values 1
+## 5233 24042 Dates and Times 1
+## 5234 24042 Workspace and Files 1
+## 5235 24042 Missing Values 0
+## 5236 24042 Missing Values 1
+## 5237 24042 Missing Values 1
+## 5238 24042 Vectors NA
+## 5239 24042 Logic 1
+## 5240 24042 Logic 1
+## 5241 24042 Logic 1
+## 5242 24042 Workspace and Files 0
+## 5243 24042 Workspace and Files 1
+## 5244 24042 Dates and Times 1
+## 5245 24042 Dates and Times 1
+## 5246 24042 Dates and Times 1
+## 5247 24042 Dates and Times 1
+## 5248 24042 Workspace and Files 1
+## 5249 24042 Dates and Times 1
+## 5250 24042 Logic 1
+## 5251 24042 Functions 0
+## 5252 24042 Functions 0
+## 5253 24042 Functions 0
+## 5254 24042 Workspace and Files 1
+## 5255 24042 Workspace and Files 1
+## 5256 24042 Workspace and Files NA
+## 5257 24042 Workspace and Files 1
+## 5258 24042 Workspace and Files 1
+## 5259 24042 Basic Building Blocks 1
+## 5260 24042 Basic Building Blocks 1
+## 5261 24042 Dates and Times 0
+## 5262 24042 Dates and Times 0
+## 5263 24042 Dates and Times 0
+## 5264 24042 Dates and Times 1
+## 5265 24042 Dates and Times 1
+## 5266 24042 Dates and Times 1
+## 5267 24042 Dates and Times 1
+## 5268 24042 Functions 0
+## 5269 24042 Functions 0
+## 5270 24042 Dates and Times 1
+## 5271 24042 Dates and Times 1
+## 5272 24042 Dates and Times NA
+## 5273 24042 Missing Values 1
+## 5274 24042 Missing Values 1
+## 5275 24042 Vectors 1
+## 5276 24042 Functions 1
+## 5277 24042 Functions 1
+## 5278 24042 Basic Building Blocks 1
+## 5279 24042 Logic 1
+## 5280 24042 Workspace and Files 1
+## 5281 24042 Logic 1
+## 5282 24042 Logic 1
+## 5283 24042 Basic Building Blocks 1
+## 5284 24042 Basic Building Blocks 1
+## 5285 24042 Basic Building Blocks 1
+## 5286 24042 Subsetting Vectors 1
+## 5287 24042 Subsetting Vectors 1
+## 5288 24042 Dates and Times 1
+## 5289 24042 Dates and Times 1
+## 5290 24042 Dates and Times 1
+## 5291 24042 Dates and Times 1
+## 5292 24042 Workspace and Files 0
+## 5293 24042 Vectors 0
+## 5294 24042 Logic 1
+## 5295 24042 Dates and Times 0
+## 5296 24042 Basic Building Blocks 0
+## 5297 24042 Basic Building Blocks 0
+## 5298 24042 Vectors 1
+## 5299 24042 Basic Building Blocks 1
+## 5300 24042 Basic Building Blocks 1
+## 5301 24042 Basic Building Blocks 1
+## 5302 24042 Basic Building Blocks 1
+## 5303 24042 Vectors 1
+## 5304 24042 Vectors 1
+## 5305 24042 Vectors 1
+## 5306 24042 Logic 1
+## 5307 24042 Logic 1
+## 5308 24042 Subsetting Vectors 1
+## 5309 24042 Dates and Times 1
+## 5310 24042 Dates and Times 1
+## 5311 24042 Dates and Times 1
+## 5312 24042 Subsetting Vectors 1
+## 5313 24042 Functions 0
+## 5314 24042 Vectors 1
+## 5315 24042 Basic Building Blocks 1
+## 5316 24042 Vectors 1
+## 5317 24042 Vectors 1
+## 5318 24042 Functions 1
+## 5319 24042 Basic Building Blocks 1
+## 5320 24042 Subsetting Vectors 1
+## 5321 24042 Dates and Times 1
+## 5322 24042 Subsetting Vectors 1
+## 5323 24042 Dates and Times 1
+## 5324 24042 Dates and Times 1
+## 5325 24042 Basic Building Blocks 0
+## 5326 24042 Subsetting Vectors NA
+## 5327 24042 Functions 0
+## 5328 24042 Subsetting Vectors 1
+## 5329 24042 Subsetting Vectors 1
+## 5330 24042 Basic Building Blocks 1
+## 5331 24042 Basic Building Blocks 0
+## 5332 24042 Logic 1
+## 5333 24042 Functions 1
+## 5334 24042 Subsetting Vectors 1
+## 5335 24042 Logic 1
+## 5336 24042 Logic 1
+## 5337 24042 Logic 1
+## 5338 24042 Logic 1
+## 5339 24042 Logic 1
+## 5340 24042 Functions 1
+## 5341 24042 Basic Building Blocks 1
+## 5342 24042 Functions 1
+## 5343 24042 Basic Building Blocks 1
+## 5344 24042 Basic Building Blocks 1
+## 5345 24042 Subsetting Vectors 1
+## 5346 24042 Logic 1
+## 5347 24042 Functions 1
+## 5348 24042 Missing Values 1
+## 5349 24042 Missing Values 1
+## 5350 24042 Functions 1
+## 5351 24042 Functions 1
+## 5352 24042 Dates and Times 1
+## 5353 24042 Dates and Times 1
+## 5354 24042 Dates and Times 1
+## 5355 24042 Functions 0
+## 5356 24042 Functions 0
+## 5357 24042 Subsetting Vectors 0
+## 5358 24042 Functions 0
+## 5359 24042 Logic 1
+## 5360 24042 Logic 1
+## 5361 24042 Functions 0
+## 5362 24042 Dates and Times 1
+## 5363 24042 Functions 1
+## 5364 24042 Functions 1
+## 5365 24042 Subsetting Vectors 1
+## 5366 24042 Functions 1
+## 5367 24042 Logic 1
+## 5368 24042 Logic 1
+## 5369 24042 Dates and Times 1
+## 5370 24042 Functions 1
+## 5371 24042 Functions 0
+## 5372 24042 Subsetting Vectors 1
+## 5373 24042 Logic 1
+## 5374 24042 Logic 1
+## 5375 24042 Logic 1
+## 5376 24042 Logic 1
+## 5377 24042 Subsetting Vectors 1
+## 5378 24042 Logic 1
+## 5379 24042 Functions 1
+## 5380 24042 Logic 1
+## 5381 24042 Logic 1
+## 5382 24042 Logic 1
+## 5383 24042 Dates and Times 0
+## 5384 24042 Logic 1
+## 5385 24042 Logic 1
+## 5386 64610 Basic Building Blocks 1
+## 5387 64610 Basic Building Blocks 1
+## 5388 64610 Basic Building Blocks NA
+## 5389 64610 Basic Building Blocks 1
+## 5390 64610 Basic Building Blocks 1
+## 5391 64610 Basic Building Blocks 1
+## 5392 64610 Basic Building Blocks 1
+## 5393 64610 Basic Building Blocks 1
+## 5394 64610 Basic Building Blocks 1
+## 5395 64610 Basic Building Blocks 1
+## 5396 64610 Basic Building Blocks 1
+## 5397 64610 Basic Building Blocks 1
+## 5398 64610 Basic Building Blocks 1
+## 5399 64610 Basic Building Blocks 1
+## 5400 64610 Basic Building Blocks 1
+## 5401 64610 Basic Building Blocks 0
+## 5402 64610 Basic Building Blocks 1
+## 5403 64610 Basic Building Blocks 1
+## 5404 64610 Basic Building Blocks 1
+## 5405 64610 Basic Building Blocks 1
+## 5406 64610 Basic Building Blocks 1
+## 5407 64610 Basic Building Blocks 1
+## 5408 64610 Basic Building Blocks 1
+## 5409 64610 Basic Building Blocks 1
+## 5410 34362 Workspace and Files 1
+## 5411 34362 Logic 1
+## 5412 34362 Workspace and Files 1
+## 5413 34362 Workspace and Files 0
+## 5414 34362 Workspace and Files 1
+## 5415 34362 Workspace and Files 1
+## 5416 34362 Workspace and Files 1
+## 5417 34362 Logic 0
+## 5418 34362 Logic 0
+## 5419 34362 Logic 1
+## 5420 34362 Workspace and Files 0
+## 5421 34362 Logic 0
+## 5422 34362 Functions 1
+## 5423 34362 Logic 1
+## 5424 34362 Logic 1
+## 5425 34362 Workspace and Files 1
+## 5426 34362 Workspace and Files 1
+## 5427 34362 Workspace and Files 1
+## 5428 34362 Workspace and Files 0
+## 5429 34362 Workspace and Files 1
+## 5430 34362 Workspace and Files 1
+## 5431 34362 Workspace and Files 1
+## 5432 34362 Workspace and Files 1
+## 5433 34362 Workspace and Files 0
+## 5434 34362 Workspace and Files 1
+## 5435 34362 Workspace and Files 1
+## 5436 34362 Workspace and Files 1
+## 5437 34362 Workspace and Files 1
+## 5438 34362 Workspace and Files 1
+## 5439 34362 Functions 0
+## 5440 34362 Functions 1
+## 5441 34362 Functions 0
+## 5442 34362 Functions 1
+## 5443 34362 Functions 1
+## 5444 34362 Functions 0
+## 5445 34362 Functions 0
+## 5446 34362 Functions 0
+## 5447 34362 Functions 1
+## 5448 34362 Workspace and Files 1
+## 5449 34362 Workspace and Files NA
+## 5450 34362 Dates and Times 1
+## 5451 34362 Dates and Times 1
+## 5452 34362 Dates and Times 1
+## 5453 34362 Dates and Times 1
+## 5454 34362 Dates and Times 0
+## 5455 34362 Dates and Times 1
+## 5456 34362 Dates and Times 1
+## 5457 34362 Dates and Times 1
+## 5458 34362 Dates and Times 1
+## 5459 34362 Dates and Times 1
+## 5460 34362 Dates and Times 1
+## 5461 34362 Dates and Times 1
+## 5462 34362 Dates and Times 1
+## 5463 34362 Functions 1
+## 5464 34362 Functions 0
+## 5465 34362 Functions 1
+## 5466 34362 Functions 1
+## 5467 34362 Functions 1
+## 5468 34362 Functions 1
+## 5469 34362 Functions 1
+## 5470 34362 Functions 1
+## 5471 34362 Functions 1
+## 5472 34362 Functions 1
+## 5473 34362 Functions 0
+## 5474 34362 Functions 0
+## 5475 34362 Functions 0
+## 5476 34362 Functions 0
+## 5477 34362 Functions 0
+## 5478 34362 Functions 0
+## 5479 34362 Logic 1
+## 5480 34362 Logic 1
+## 5481 34362 Logic 1
+## 5482 34362 Logic 1
+## 5483 34362 Logic 1
+## 5484 34362 Logic 1
+## 5485 34362 Subsetting Vectors 1
+## 5486 34362 Subsetting Vectors 1
+## 5487 34362 Subsetting Vectors 0
+## 5488 34362 Subsetting Vectors 1
+## 5489 34362 Subsetting Vectors 1
+## 5490 34362 Subsetting Vectors 1
+## 5491 34362 Subsetting Vectors 1
+## 5492 34362 Logic 1
+## 5493 34362 Logic 1
+## 5494 34362 Logic 1
+## 5495 34362 Logic 1
+## 5496 34362 Logic 0
+## 5497 34362 Logic 1
+## 5498 34362 Logic 1
+## 5499 34362 Logic 1
+## 5500 34362 Logic 1
+## 5501 34362 Logic 1
+## 5502 34362 Missing Values 1
+## 5503 34362 Missing Values 1
+## 5504 34362 Missing Values 1
+## 5505 34362 Missing Values 1
+## 5506 34362 Missing Values NA
+## 5507 34362 Subsetting Vectors 1
+## 5508 34362 Subsetting Vectors 1
+## 5509 34362 Subsetting Vectors 1
+## 5510 34362 Subsetting Vectors 1
+## 5511 34362 Subsetting Vectors 1
+## 5512 34362 Subsetting Vectors 1
+## 5513 34362 Subsetting Vectors 1
+## 5514 34362 Subsetting Vectors 1
+## 5515 34362 Subsetting Vectors 1
+## 5516 34362 Subsetting Vectors 1
+## 5517 34362 Subsetting Vectors 0
+## 5518 34362 Subsetting Vectors 0
+## 5519 34362 Subsetting Vectors 0
+## 5520 34362 Subsetting Vectors 1
+## 5521 34362 Subsetting Vectors 1
+## 5522 34362 Subsetting Vectors 0
+## 5523 34362 Subsetting Vectors 1
+## 5524 34362 Subsetting Vectors 1
+## 5525 34362 Vectors 0
+## 5526 34362 Vectors 0
+## 5527 34362 Vectors 0
+## 5528 34362 Vectors 1
+## 5529 34362 Vectors 1
+## 5530 34362 Vectors 1
+## 5531 34362 Vectors 1
+## 5532 34362 Subsetting Vectors 0
+## 5533 34362 Subsetting Vectors 1
+## 5534 34362 Subsetting Vectors 1
+## 5535 34362 Subsetting Vectors 0
+## 5536 34362 Subsetting Vectors 1
+## 5537 34362 Subsetting Vectors 1
+## 5538 34362 Subsetting Vectors 1
+## 5539 34362 Subsetting Vectors 1
+## 5540 34362 Subsetting Vectors NA
+## 5541 34362 Logic 1
+## 5542 34362 Logic 0
+## 5543 34362 Logic 1
+## 5544 34362 Logic 1
+## 5545 34362 Logic 1
+## 5546 34362 Logic 1
+## 5547 34362 Logic 1
+## 5548 34362 Logic 1
+## 5549 34362 Logic 1
+## 5550 34362 Logic 0
+## 5551 34362 Logic 0
+## 5552 34362 Logic 1
+## 5553 34362 Logic 1
+## 5554 34362 Logic 1
+## 5555 34362 Logic 1
+## 5556 34362 Logic 1
+## 5557 34362 Logic 1
+## 5558 34362 Logic 1
+## 5559 34362 Logic 1
+## 5560 34362 Vectors 0
+## 5561 34362 Vectors 0
+## 5562 34362 Vectors 1
+## 5563 34362 Vectors 0
+## 5564 34362 Vectors 1
+## 5565 34362 Dates and Times 1
+## 5566 34362 Dates and Times 1
+## 5567 34362 Dates and Times 1
+## 5568 34362 Dates and Times 1
+## 5569 34362 Dates and Times 1
+## 5570 34362 Dates and Times 0
+## 5571 34362 Dates and Times 1
+## 5572 34362 Vectors NA
+## 5573 34362 Missing Values 1
+## 5574 34362 Missing Values 1
+## 5575 34362 Missing Values 1
+## 5576 34362 Missing Values 1
+## 5577 34362 Missing Values 1
+## 5578 34362 Missing Values 1
+## 5579 34362 Missing Values 1
+## 5580 34362 Missing Values 1
+## 5581 34362 Missing Values 1
+## 5582 34362 Missing Values 1
+## 5583 34362 Workspace and Files 1
+## 5584 34362 Vectors 1
+## 5585 34362 Vectors 1
+## 5586 34362 Vectors 1
+## 5587 34362 Vectors 1
+## 5588 34362 Vectors 1
+## 5589 34362 Vectors 1
+## 5590 34362 Vectors 1
+## 5591 34362 Vectors 1
+## 5592 34362 Vectors 0
+## 5593 34362 Vectors 1
+## 5594 34362 Vectors 1
+## 5595 34362 Vectors 1
+## 5596 34362 Vectors 0
+## 5597 34362 Vectors 1
+## 5598 34362 Vectors 1
+## 5599 34362 Vectors 0
+## 5600 34362 Workspace and Files 1
+## 5601 34362 Workspace and Files 1
+## 5602 34362 Workspace and Files 1
+## 5603 34362 Workspace and Files 0
+## 5604 34362 Workspace and Files 1
+## 5605 34362 Basic Building Blocks 1
+## 5606 34362 Basic Building Blocks 1
+## 5607 34362 Basic Building Blocks 1
+## 5608 34362 Basic Building Blocks 1
+## 5609 34362 Basic Building Blocks 1
+## 5610 34362 Basic Building Blocks 1
+## 5611 34362 Basic Building Blocks 1
+## 5612 34362 Dates and Times 0
+## 5613 34362 Dates and Times 1
+## 5614 34362 Functions 0
+## 5615 34362 Functions 1
+## 5616 34362 Functions 0
+## 5617 34362 Functions 1
+## 5618 34362 Functions 1
+## 5619 34362 Functions 0
+## 5620 34362 Functions 1
+## 5621 34362 Functions 1
+## 5622 34362 Functions 0
+## 5623 34362 Functions 0
+## 5624 34362 Workspace and Files 1
+## 5625 34362 Workspace and Files 1
+## 5626 34362 Workspace and Files 1
+## 5627 34362 Workspace and Files 1
+## 5628 34362 Workspace and Files 0
+## 5629 34362 Workspace and Files 0
+## 5630 34362 Workspace and Files 0
+## 5631 34362 Workspace and Files 1
+## 5632 34362 Workspace and Files 1
+## 5633 34362 Workspace and Files 1
+## 5634 34362 Workspace and Files 1
+## 5635 34362 Workspace and Files 1
+## 5636 34362 Workspace and Files 1
+## 5637 34362 Workspace and Files 1
+## 5638 34362 Workspace and Files 0
+## 5639 34362 Workspace and Files 1
+## 5640 34362 Basic Building Blocks 1
+## 5641 34362 Basic Building Blocks 1
+## 5642 34362 Basic Building Blocks 1
+## 5643 34362 Basic Building Blocks 1
+## 5644 34362 Basic Building Blocks 1
+## 5645 34362 Basic Building Blocks 1
+## 5646 34362 Workspace and Files 1
+## 5647 34362 Workspace and Files 1
+## 5648 34362 Workspace and Files 0
+## 5649 34362 Workspace and Files 1
+## 5650 34362 Workspace and Files 0
+## 5651 34362 Workspace and Files 1
+## 5652 34362 Basic Building Blocks 1
+## 5653 34362 Functions 1
+## 5654 34362 Dates and Times 1
+## 5655 34362 Dates and Times 0
+## 5656 34362 Basic Building Blocks 1
+## 5657 34362 Basic Building Blocks 1
+## 5658 34362 Dates and Times 1
+## 5659 34362 Basic Building Blocks 1
+## 5660 34362 Basic Building Blocks 1
+## 5661 34362 Basic Building Blocks 1
+## 5662 34362 Basic Building Blocks 1
+## 5663 34362 Basic Building Blocks 1
+## 5664 34362 Functions 0
+## 5665 34362 Functions 1
+## 5666 34362 Workspace and Files 1
+## 5667 34362 Workspace and Files 1
+## 5668 34362 Workspace and Files NA
+## 5669 34362 Dates and Times 1
+## 5670 34362 Dates and Times 1
+## 5671 34362 Workspace and Files 1
+## 5672 34362 Dates and Times 1
+## 5673 34362 Dates and Times 1
+## 5674 34362 Dates and Times 1
+## 5675 34362 Dates and Times 1
+## 5676 34362 Dates and Times 1
+## 5677 34362 Dates and Times NA
+## 5678 34362 Basic Building Blocks 1
+## 5679 34362 Logic NA
+## 5680 34362 Workspace and Files 1
+## 5681 34362 Workspace and Files 1
+## 5682 34362 Functions 0
+## 5683 34362 Workspace and Files 1
+## 5684 34362 Functions 1
+## 5685 34362 Functions 0
+## 5686 34362 Functions 0
+## 5687 34362 Functions 0
+## 5688 34362 Functions 1
+## 5689 34362 Functions 1
+## 5690 34362 Functions 1
+## 5691 34362 Functions NA
+## 5692 34362 Functions 0
+## 5693 34362 Basic Building Blocks NA
+## 5694 34362 Functions 1
+## 5695 34362 Workspace and Files 1
+## 5696 34362 Functions 1
+## 5697 34362 Functions 1
+## 5698 34362 Functions 0
+## 5699 34362 Functions 0
+## 5700 35235 Basic Building Blocks NA
+## 5701 35235 Basic Building Blocks 1
+## 5702 35235 Basic Building Blocks 1
+## 5703 35235 Basic Building Blocks 1
+## 5704 35235 Basic Building Blocks 1
+## 5705 35235 Basic Building Blocks 1
+## 5706 35235 Basic Building Blocks 1
+## 5707 35235 Basic Building Blocks 1
+## 5708 35235 Basic Building Blocks 1
+## 5709 35235 Basic Building Blocks 0
+## 5710 35235 Basic Building Blocks 1
+## 5711 35235 Basic Building Blocks 1
+## 5712 35235 Basic Building Blocks 1
+## 5713 35235 Basic Building Blocks 1
+## 5714 35235 Basic Building Blocks 1
+## 5715 35235 Basic Building Blocks 1
+## 5716 35235 Basic Building Blocks 1
+## 5717 35235 Basic Building Blocks 1
+## 5718 35235 Basic Building Blocks 1
+## 5719 35235 Basic Building Blocks 1
+## 5720 35235 Basic Building Blocks 0
+## 5721 35235 Basic Building Blocks 1
+## 5722 35235 Basic Building Blocks 1
+## 5723 35235 Basic Building Blocks 1
+## 5724 35235 Basic Building Blocks 0
+## 5725 35235 Basic Building Blocks 1
+DF5 that provides a mean score for each student on each courseDF5 <- DF1 %>% filter(correct == TRUE) #did not get the mean but this is important for the extra credit. I'll explain myself in the next task.
+DF5
+## course_name lesson_name
+## 1 R Programming Dates and Times
+## 2 R Programming Functions
+## 3 R Programming Basic Building Blocks
+## 4 R Programming Dates and Times
+## 5 R Programming Dates and Times
+## 6 R Programming Workspace and Files
+## 7 R Programming Functions
+## 8 R Programming Dates and Times
+## 9 R Programming Dates and Times
+## 10 R Programming Dates and Times
+## 11 R Programming Basic Building Blocks
+## 12 R Programming Vectors
+## 13 R Programming Basic Building Blocks
+## 14 R Programming Vectors
+## 15 R Programming Workspace and Files
+## 16 R Programming Subsetting Vectors
+## 17 R Programming Dates and Times
+## 18 R Programming Subsetting Vectors
+## 19 R Programming Dates and Times
+## 20 R Programming Subsetting Vectors
+## 21 R Programming Dates and Times
+## 22 R Programming Dates and Times
+## 23 R Programming Subsetting Vectors
+## 24 R Programming Functions
+## 25 R Programming Subsetting Vectors
+## 26 R Programming Basic Building Blocks
+## 27 R Programming Vectors
+## 28 R Programming Logic
+## 29 R Programming Basic Building Blocks
+## 30 R Programming Workspace and Files
+## 31 R Programming Workspace and Files
+## 32 R Programming Subsetting Vectors
+## 33 R Programming Dates and Times
+## 34 R Programming Workspace and Files
+## 35 R Programming Dates and Times
+## 36 R Programming Dates and Times
+## 37 R Programming Vectors
+## 38 R Programming Subsetting Vectors
+## 39 R Programming Subsetting Vectors
+## 40 R Programming Basic Building Blocks
+## 41 R Programming Dates and Times
+## 42 R Programming Basic Building Blocks
+## 43 R Programming Subsetting Vectors
+## 44 R Programming Logic
+## 45 R Programming Workspace and Files
+## 46 R Programming Subsetting Vectors
+## 47 R Programming Logic
+## 48 R Programming Subsetting Vectors
+## 49 R Programming Functions
+## 50 R Programming Logic
+## 51 R Programming Dates and Times
+## 52 R Programming Vectors
+## 53 R Programming Basic Building Blocks
+## 54 R Programming Logic
+## 55 R Programming Logic
+## 56 R Programming Missing Values
+## 57 R Programming Logic
+## 58 R Programming Workspace and Files
+## 59 R Programming Subsetting Vectors
+## 60 R Programming Workspace and Files
+## 61 R Programming Dates and Times
+## 62 R Programming Logic
+## 63 R Programming Basic Building Blocks
+## 64 R Programming Dates and Times
+## 65 R Programming Missing Values
+## 66 R Programming Missing Values
+## 67 R Programming Missing Values
+## 68 R Programming Subsetting Vectors
+## 69 R Programming Logic
+## 70 R Programming Logic
+## 71 R Programming Dates and Times
+## 72 R Programming Dates and Times
+## 73 R Programming Dates and Times
+## 74 R Programming Functions
+## 75 R Programming Dates and Times
+## 76 R Programming Logic
+## 77 R Programming Dates and Times
+## 78 R Programming Missing Values
+## 79 R Programming Workspace and Files
+## 80 R Programming Workspace and Files
+## 81 R Programming Functions
+## 82 R Programming Basic Building Blocks
+## 83 R Programming Basic Building Blocks
+## 84 R Programming Basic Building Blocks
+## 85 R Programming Subsetting Vectors
+## 86 R Programming Dates and Times
+## 87 R Programming Subsetting Vectors
+## 88 R Programming Vectors
+## 89 R Programming Vectors
+## 90 R Programming Workspace and Files
+## 91 R Programming Logic
+## 92 R Programming Workspace and Files
+## 93 R Programming Workspace and Files
+## 94 R Programming Missing Values
+## 95 R Programming Workspace and Files
+## 96 R Programming Workspace and Files
+## 97 R Programming Subsetting Vectors
+## 98 R Programming Workspace and Files
+## 99 R Programming Workspace and Files
+## 100 R Programming Dates and Times
+## 101 R Programming Workspace and Files
+## 102 R Programming Workspace and Files
+## 103 R Programming Logic
+## 104 R Programming Logic
+## 105 R Programming Logic
+## 106 R Programming Dates and Times
+## 107 R Programming Subsetting Vectors
+## 108 R Programming Subsetting Vectors
+## 109 R Programming Subsetting Vectors
+## 110 R Programming Subsetting Vectors
+## 111 R Programming Vectors
+## 112 R Programming Subsetting Vectors
+## 113 R Programming Workspace and Files
+## 114 R Programming Missing Values
+## 115 R Programming Missing Values
+## 116 R Programming Missing Values
+## 117 R Programming Logic
+## 118 R Programming Logic
+## 119 R Programming Vectors
+## 120 R Programming Logic
+## 121 R Programming Logic
+## 122 R Programming Basic Building Blocks
+## 123 R Programming Basic Building Blocks
+## 124 R Programming Subsetting Vectors
+## 125 R Programming Logic
+## 126 R Programming Basic Building Blocks
+## 127 R Programming Basic Building Blocks
+## 128 R Programming Basic Building Blocks
+## 129 R Programming Logic
+## 130 R Programming Missing Values
+## 131 R Programming Workspace and Files
+## 132 R Programming Workspace and Files
+## 133 R Programming Logic
+## 134 R Programming Workspace and Files
+## 135 R Programming Logic
+## 136 R Programming Logic
+## 137 R Programming Missing Values
+## 138 R Programming Missing Values
+## 139 R Programming Logic
+## 140 R Programming Logic
+## 141 R Programming Functions
+## 142 R Programming Subsetting Vectors
+## 143 R Programming Subsetting Vectors
+## 144 R Programming Dates and Times
+## 145 R Programming Functions
+## 146 R Programming Vectors
+## 147 R Programming Vectors
+## 148 R Programming Missing Values
+## 149 R Programming Functions
+## 150 R Programming Functions
+## 151 R Programming Functions
+## 152 R Programming Functions
+## 153 R Programming Logic
+## 154 R Programming Functions
+## 155 R Programming Functions
+## 156 R Programming Logic
+## 157 R Programming Functions
+## 158 R Programming Logic
+## 159 R Programming Functions
+## 160 R Programming Functions
+## 161 R Programming Logic
+## 162 R Programming Functions
+## 163 R Programming Functions
+## 164 R Programming Functions
+## 165 R Programming Logic
+## 166 R Programming Functions
+## 167 R Programming Vectors
+## 168 R Programming Functions
+## 169 R Programming Dates and Times
+## 170 R Programming Logic
+## 171 R Programming Subsetting Vectors
+## 172 R Programming Functions
+## 173 R Programming Missing Values
+## 174 R Programming Vectors
+## 175 R Programming Vectors
+## 176 R Programming Basic Building Blocks
+## 177 R Programming Functions
+## 178 R Programming Functions
+## 179 R Programming Vectors
+## 180 R Programming Dates and Times
+## 181 R Programming Vectors
+## 182 R Programming Functions
+## 183 R Programming Basic Building Blocks
+## 184 R Programming Functions
+## 185 R Programming Functions
+## 186 R Programming Logic
+## 187 R Programming Vectors
+## 188 R Programming Vectors
+## 189 R Programming Subsetting Vectors
+## 190 R Programming Basic Building Blocks
+## 191 R Programming Basic Building Blocks
+## 192 R Programming Basic Building Blocks
+## 193 R Programming Vectors
+## 194 R Programming Logic
+## 195 R Programming Logic
+## 196 R Programming Basic Building Blocks
+## 197 R Programming Missing Values
+## 198 R Programming Missing Values
+## 199 R Programming Basic Building Blocks
+## 200 Getting and Cleaning Data Tidying Data with tidyr
+## 201 Getting and Cleaning Data Tidying Data with tidyr
+## 202 R Programming Missing Values
+## 203 R Programming Missing Values
+## 204 Getting and Cleaning Data Tidying Data with tidyr
+## 205 R Programming Subsetting Vectors
+## 206 R Programming Subsetting Vectors
+## 207 R Programming Missing Values
+## 208 Getting and Cleaning Data Tidying Data with tidyr
+## 209 Getting and Cleaning Data Tidying Data with tidyr
+## 210 Getting and Cleaning Data Tidying Data with tidyr
+## 211 R Programming Missing Values
+## 212 Getting and Cleaning Data Tidying Data with tidyr
+## 213 R Programming Subsetting Vectors
+## 214 R Programming Missing Values
+## 215 R Programming Dates and Times
+## 216 R Programming Subsetting Vectors
+## 217 R Programming Dates and Times
+## 218 Getting and Cleaning Data Tidying Data with tidyr
+## 219 R Programming Dates and Times
+## 220 R Programming Missing Values
+## 221 R Programming Missing Values
+## 222 R Programming Basic Building Blocks
+## 223 R Programming Functions
+## 224 R Programming Subsetting Vectors
+## 225 R Programming Missing Values
+## 226 R Programming Looking at Data
+## 227 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 228 R Programming Subsetting Vectors
+## 229 R Programming Logic
+## 230 R Programming Basic Building Blocks
+## 231 Getting and Cleaning Data Tidying Data with tidyr
+## 232 Getting and Cleaning Data Tidying Data with tidyr
+## 233 Getting and Cleaning Data Tidying Data with tidyr
+## 234 R Programming Looking at Data
+## 235 R Programming Looking at Data
+## 236 R Programming Missing Values
+## 237 R Programming Missing Values
+## 238 R Programming Logic
+## 239 R Programming Dates and Times
+## 240 R Programming Subsetting Vectors
+## 241 R Programming Subsetting Vectors
+## 242 Getting and Cleaning Data Tidying Data with tidyr
+## 243 R Programming Missing Values
+## 244 R Programming Functions
+## 245 R Programming Logic
+## 246 Getting and Cleaning Data Tidying Data with tidyr
+## 247 R Programming Functions
+## 248 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 249 Getting and Cleaning Data Tidying Data with tidyr
+## 250 R Programming Dates and Times
+## 251 R Programming Missing Values
+## 252 R Programming Subsetting Vectors
+## 253 R Programming Basic Building Blocks
+## 254 R Programming Basic Building Blocks
+## 255 Getting and Cleaning Data Tidying Data with tidyr
+## 256 Getting and Cleaning Data Tidying Data with tidyr
+## 257 Getting and Cleaning Data Tidying Data with tidyr
+## 258 R Programming Dates and Times
+## 259 R Programming Logic
+## 260 R Programming Subsetting Vectors
+## 261 R Programming Logic
+## 262 Getting and Cleaning Data Tidying Data with tidyr
+## 263 Getting and Cleaning Data Tidying Data with tidyr
+## 264 R Programming Dates and Times
+## 265 Getting and Cleaning Data Tidying Data with tidyr
+## 266 R Programming Functions
+## 267 R Programming Logic
+## 268 R Programming Workspace and Files
+## 269 R Programming Dates and Times
+## 270 Getting and Cleaning Data Tidying Data with tidyr
+## 271 R Programming Logic
+## 272 R Programming Subsetting Vectors
+## 273 R Programming Workspace and Files
+## 274 R Programming Workspace and Files
+## 275 R Programming Workspace and Files
+## 276 R Programming Basic Building Blocks
+## 277 R Programming Subsetting Vectors
+## 278 R Programming Workspace and Files
+## 279 R Programming Workspace and Files
+## 280 R Programming Workspace and Files
+## 281 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 282 R Programming Workspace and Files
+## 283 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 284 R Programming Subsetting Vectors
+## 285 R Programming Logic
+## 286 R Programming Basic Building Blocks
+## 287 R Programming Basic Building Blocks
+## 288 R Programming Basic Building Blocks
+## 289 R Programming Dates and Times
+## 290 R Programming Dates and Times
+## 291 R Programming Logic
+## 292 R Programming Vectors
+## 293 R Programming Dates and Times
+## 294 R Programming Looking at Data
+## 295 R Programming Workspace and Files
+## 296 Getting and Cleaning Data Manipulating Data with dplyr
+## 297 Getting and Cleaning Data Manipulating Data with dplyr
+## 298 Getting and Cleaning Data Manipulating Data with dplyr
+## 299 R Programming Basic Building Blocks
+## 300 R Programming Basic Building Blocks
+## 301 R Programming Logic
+## 302 R Programming Basic Building Blocks
+## 303 R Programming Logic
+## 304 R Programming Basic Building Blocks
+## 305 R Programming Basic Building Blocks
+## 306 R Programming Workspace and Files
+## 307 R Programming Basic Building Blocks
+## 308 R Programming Subsetting Vectors
+## 309 R Programming Basic Building Blocks
+## 310 R Programming Basic Building Blocks
+## 311 R Programming Vectors
+## 312 R Programming Basic Building Blocks
+## 313 R Programming Vectors
+## 314 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 315 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 316 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 317 R Programming Logic
+## 318 R Programming Logic
+## 319 Getting and Cleaning Data Tidying Data with tidyr
+## 320 R Programming Logic
+## 321 R Programming Logic
+## 322 Getting and Cleaning Data Manipulating Data with dplyr
+## 323 R Programming Logic
+## 324 R Programming Subsetting Vectors
+## 325 R Programming Functions
+## 326 R Programming Looking at Data
+## 327 R Programming Workspace and Files
+## 328 Getting and Cleaning Data Manipulating Data with dplyr
+## 329 R Programming Workspace and Files
+## 330 R Programming Looking at Data
+## 331 R Programming Looking at Data
+## 332 R Programming Functions
+## 333 R Programming Functions
+## 334 R Programming Functions
+## 335 R Programming Functions
+## 336 R Programming Functions
+## 337 R Programming Functions
+## 338 R Programming Basic Building Blocks
+## 339 R Programming Vectors
+## 340 R Programming Vectors
+## 341 R Programming Vectors
+## 342 R Programming Vectors
+## 343 R Programming Subsetting Vectors
+## 344 R Programming Vectors
+## 345 R Programming Subsetting Vectors
+## 346 R Programming Subsetting Vectors
+## 347 R Programming Subsetting Vectors
+## 348 R Programming Subsetting Vectors
+## 349 R Programming Subsetting Vectors
+## 350 R Programming Matrices and Data Frames
+## 351 Getting and Cleaning Data Tidying Data with tidyr
+## 352 R Programming Subsetting Vectors
+## 353 R Programming Subsetting Vectors
+## 354 R Programming Subsetting Vectors
+## 355 R Programming Workspace and Files
+## 356 R Programming Workspace and Files
+## 357 R Programming Workspace and Files
+## 358 R Programming Workspace and Files
+## 359 R Programming Workspace and Files
+## 360 R Programming Vectors
+## 361 R Programming Matrices and Data Frames
+## 362 R Programming Matrices and Data Frames
+## 363 R Programming Matrices and Data Frames
+## 364 R Programming Workspace and Files
+## 365 R Programming Workspace and Files
+## 366 R Programming Workspace and Files
+## 367 Getting and Cleaning Data Tidying Data with tidyr
+## 368 Getting and Cleaning Data Tidying Data with tidyr
+## 369 Getting and Cleaning Data Tidying Data with tidyr
+## 370 R Programming Workspace and Files
+## 371 R Programming Workspace and Files
+## 372 Getting and Cleaning Data Tidying Data with tidyr
+## 373 Getting and Cleaning Data Tidying Data with tidyr
+## 374 Getting and Cleaning Data Tidying Data with tidyr
+## 375 R Programming Basic Building Blocks
+## 376 R Programming Basic Building Blocks
+## 377 R Programming Dates and Times
+## 378 R Programming Dates and Times
+## 379 R Programming Subsetting Vectors
+## 380 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 381 R Programming Subsetting Vectors
+## 382 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 383 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 384 Getting and Cleaning Data Tidying Data with tidyr
+## 385 R Programming Vectors
+## 386 R Programming Vectors
+## 387 R Programming Vectors
+## 388 R Programming Vectors
+## 389 R Programming Vectors
+## 390 R Programming Vectors
+## 391 R Programming Vectors
+## 392 R Programming Vectors
+## 393 R Programming Vectors
+## 394 R Programming Vectors
+## 395 Getting and Cleaning Data Tidying Data with tidyr
+## 396 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 397 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 398 Getting and Cleaning Data Tidying Data with tidyr
+## 399 R Programming Matrices and Data Frames
+## 400 R Programming Matrices and Data Frames
+## 401 R Programming Matrices and Data Frames
+## 402 Getting and Cleaning Data Manipulating Data with dplyr
+## 403 Getting and Cleaning Data Manipulating Data with dplyr
+## 404 Getting and Cleaning Data Manipulating Data with dplyr
+## 405 Getting and Cleaning Data Manipulating Data with dplyr
+## 406 Getting and Cleaning Data Manipulating Data with dplyr
+## 407 R Programming Dates and Times
+## 408 Getting and Cleaning Data Tidying Data with tidyr
+## 409 R Programming Workspace and Files
+## 410 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 411 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 412 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 413 R Programming Dates and Times
+## 414 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 415 Getting and Cleaning Data Tidying Data with tidyr
+## 416 Getting and Cleaning Data Tidying Data with tidyr
+## 417 Getting and Cleaning Data Tidying Data with tidyr
+## 418 Getting and Cleaning Data Tidying Data with tidyr
+## 419 R Programming Dates and Times
+## 420 R Programming Functions
+## 421 R Programming Functions
+## 422 R Programming Functions
+## 423 R Programming Functions
+## 424 R Programming Functions
+## 425 R Programming Functions
+## 426 R Programming Matrices and Data Frames
+## 427 R Programming Looking at Data
+## 428 Getting and Cleaning Data Tidying Data with tidyr
+## 429 Getting and Cleaning Data Manipulating Data with dplyr
+## 430 Getting and Cleaning Data Tidying Data with tidyr
+## 431 Getting and Cleaning Data Tidying Data with tidyr
+## 432 Getting and Cleaning Data Tidying Data with tidyr
+## 433 R Programming Looking at Data
+## 434 Exploratory_Data_Analysis Plotting_Systems
+## 435 Exploratory_Data_Analysis Plotting_Systems
+## 436 Exploratory_Data_Analysis Plotting_Systems
+## 437 Exploratory_Data_Analysis Plotting_Systems
+## 438 Exploratory_Data_Analysis Plotting_Systems
+## 439 R Programming Dates and Times
+## 440 R Programming Dates and Times
+## 441 R Programming Dates and Times
+## 442 Getting and Cleaning Data Tidying Data with tidyr
+## 443 Getting and Cleaning Data Tidying Data with tidyr
+## 444 Exploratory_Data_Analysis Plotting_Systems
+## 445 Getting and Cleaning Data Tidying Data with tidyr
+## 446 Exploratory_Data_Analysis Plotting_Systems
+## 447 Exploratory_Data_Analysis Plotting_Systems
+## 448 Getting and Cleaning Data Tidying Data with tidyr
+## 449 R Programming Matrices and Data Frames
+## 450 R Programming Matrices and Data Frames
+## 451 R Programming Matrices and Data Frames
+## 452 Exploratory_Data_Analysis Plotting_Systems
+## 453 R Programming Matrices and Data Frames
+## 454 R Programming Matrices and Data Frames
+## 455 R Programming Matrices and Data Frames
+## 456 R Programming Matrices and Data Frames
+## 457 R Programming Matrices and Data Frames
+## 458 R Programming Matrices and Data Frames
+## 459 R Programming Matrices and Data Frames
+## 460 R Programming Matrices and Data Frames
+## 461 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 462 Getting and Cleaning Data Manipulating Data with dplyr
+## 463 Getting and Cleaning Data Manipulating Data with dplyr
+## 464 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 465 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 466 Getting and Cleaning Data Tidying Data with tidyr
+## 467 R Programming Logic
+## 468 R Programming Logic
+## 469 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 470 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 471 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 472 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 473 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 474 R Programming Matrices and Data Frames
+## 475 R Programming Matrices and Data Frames
+## 476 R Programming Matrices and Data Frames
+## 477 R Programming Matrices and Data Frames
+## 478 Exploratory_Data_Analysis Plotting_Systems
+## 479 Exploratory_Data_Analysis Plotting_Systems
+## 480 Getting and Cleaning Data Tidying Data with tidyr
+## 481 Getting and Cleaning Data Tidying Data with tidyr
+## 482 R Programming Dates and Times
+## 483 Getting and Cleaning Data Tidying Data with tidyr
+## 484 Getting and Cleaning Data Tidying Data with tidyr
+## 485 R Programming Matrices and Data Frames
+## 486 R Programming Matrices and Data Frames
+## 487 R Programming Logic
+## 488 Getting and Cleaning Data Manipulating Data with dplyr
+## 489 Exploratory_Data_Analysis Plotting_Systems
+## 490 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 491 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 492 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 493 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 494 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 495 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 496 R Programming Looking at Data
+## 497 R Programming Dates and Times
+## 498 R Programming Dates and Times
+## 499 R Programming Dates and Times
+## 500 R Programming Dates and Times
+## 501 Getting and Cleaning Data Tidying Data with tidyr
+## 502 R Programming Looking at Data
+## 503 R Programming Matrices and Data Frames
+## 504 R Programming Logic
+## 505 R Programming Logic
+## 506 R Programming Logic
+## 507 Getting and Cleaning Data Tidying Data with tidyr
+## 508 Getting and Cleaning Data Tidying Data with tidyr
+## 509 R Programming Logic
+## 510 R Programming Logic
+## 511 R Programming Dates and Times
+## 512 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 513 R Programming Matrices and Data Frames
+## 514 Exploratory_Data_Analysis Plotting_Systems
+## 515 Exploratory_Data_Analysis Plotting_Systems
+## 516 Exploratory_Data_Analysis Plotting_Systems
+## 517 R Programming Dates and Times
+## 518 R Programming Dates and Times
+## 519 R Programming Dates and Times
+## 520 R Programming Matrices and Data Frames
+## 521 Exploratory_Data_Analysis Plotting_Systems
+## 522 Exploratory_Data_Analysis Plotting_Systems
+## 523 R Programming Logic
+## 524 R Programming Functions
+## 525 R Programming Functions
+## 526 Getting and Cleaning Data Tidying Data with tidyr
+## 527 Getting and Cleaning Data Tidying Data with tidyr
+## 528 Getting and Cleaning Data Tidying Data with tidyr
+## 529 Getting and Cleaning Data Tidying Data with tidyr
+## 530 Getting and Cleaning Data Manipulating Data with dplyr
+## 531 R Programming Looking at Data
+## 532 R Programming Matrices and Data Frames
+## 533 R Programming Matrices and Data Frames
+## 534 R Programming Matrices and Data Frames
+## 535 Exploratory_Data_Analysis Plotting_Systems
+## 536 R Programming Matrices and Data Frames
+## 537 R Programming Matrices and Data Frames
+## 538 R Programming Matrices and Data Frames
+## 539 Getting and Cleaning Data Tidying Data with tidyr
+## 540 R Programming Matrices and Data Frames
+## 541 R Programming Matrices and Data Frames
+## 542 R Programming Matrices and Data Frames
+## 543 R Programming Matrices and Data Frames
+## 544 R Programming Functions
+## 545 R Programming Logic
+## 546 R Programming Logic
+## 547 R Programming Matrices and Data Frames
+## 548 Getting and Cleaning Data Manipulating Data with dplyr
+## 549 Exploratory_Data_Analysis Plotting_Systems
+## 550 R Programming Matrices and Data Frames
+## 551 Exploratory_Data_Analysis Plotting_Systems
+## 552 R Programming Matrices and Data Frames
+## 553 R Programming Matrices and Data Frames
+## 554 R Programming Looking at Data
+## 555 R Programming Logic
+## 556 R Programming Logic
+## 557 R Programming Functions
+## 558 R Programming Logic
+## 559 R Programming Matrices and Data Frames
+## 560 Getting and Cleaning Data Manipulating Data with dplyr
+## 561 Getting and Cleaning Data Manipulating Data with dplyr
+## 562 Exploratory_Data_Analysis Plotting_Systems
+## 563 R Programming Matrices and Data Frames
+## 564 R Programming Logic
+## 565 Getting and Cleaning Data Manipulating Data with dplyr
+## 566 Getting and Cleaning Data Manipulating Data with dplyr
+## 567 Getting and Cleaning Data Manipulating Data with dplyr
+## 568 Getting and Cleaning Data Manipulating Data with dplyr
+## 569 Getting and Cleaning Data Manipulating Data with dplyr
+## 570 R Programming Matrices and Data Frames
+## 571 Getting and Cleaning Data Manipulating Data with dplyr
+## 572 R Programming Functions
+## 573 Getting and Cleaning Data Manipulating Data with dplyr
+## 574 Getting and Cleaning Data Manipulating Data with dplyr
+## 575 Getting and Cleaning Data Manipulating Data with dplyr
+## 576 Getting and Cleaning Data Manipulating Data with dplyr
+## 577 R Programming Logic
+## 578 R Programming Logic
+## 579 Getting and Cleaning Data Manipulating Data with dplyr
+## 580 Getting and Cleaning Data Manipulating Data with dplyr
+## 581 Getting and Cleaning Data Manipulating Data with dplyr
+## 582 Getting and Cleaning Data Manipulating Data with dplyr
+## 583 R Programming Functions
+## 584 R Programming Functions
+## 585 R Programming Logic
+## 586 Getting and Cleaning Data Tidying Data with tidyr
+## 587 Getting and Cleaning Data Manipulating Data with dplyr
+## 588 Getting and Cleaning Data Tidying Data with tidyr
+## 589 R Programming Functions
+## 590 R Programming Functions
+## 591 R Programming Looking at Data
+## 592 Getting and Cleaning Data Tidying Data with tidyr
+## 593 R Programming Functions
+## 594 Getting and Cleaning Data Manipulating Data with dplyr
+## 595 R Programming Functions
+## 596 Getting and Cleaning Data Manipulating Data with dplyr
+## 597 R Programming Matrices and Data Frames
+## 598 R Programming Logic
+## 599 Getting and Cleaning Data Manipulating Data with dplyr
+## 600 R Programming Looking at Data
+## 601 Getting and Cleaning Data Manipulating Data with dplyr
+## 602 Getting and Cleaning Data Tidying Data with tidyr
+## 603 Getting and Cleaning Data Tidying Data with tidyr
+## 604 Getting and Cleaning Data Tidying Data with tidyr
+## 605 Getting and Cleaning Data Manipulating Data with dplyr
+## 606 Getting and Cleaning Data Manipulating Data with dplyr
+## 607 Getting and Cleaning Data Manipulating Data with dplyr
+## 608 R Programming Matrices and Data Frames
+## 609 R Programming Basic Building Blocks
+## 610 R Programming Basic Building Blocks
+## 611 R Programming Dates and Times
+## 612 R Programming Basic Building Blocks
+## 613 R Programming Basic Building Blocks
+## 614 R Programming Basic Building Blocks
+## 615 R Programming Functions
+## 616 R Programming Basic Building Blocks
+## 617 R Programming Basic Building Blocks
+## 618 R Programming Dates and Times
+## 619 R Programming Vectors
+## 620 R Programming Vectors
+## 621 R Programming Vectors
+## 622 R Programming Vectors
+## 623 R Programming Vectors
+## 624 R Programming Basic Building Blocks
+## 625 R Programming Basic Building Blocks
+## 626 R Programming Basic Building Blocks
+## 627 R Programming Functions
+## 628 R Programming Workspace and Files
+## 629 R Programming Dates and Times
+## 630 R Programming Functions
+## 631 R Programming Subsetting Vectors
+## 632 R Programming Vectors
+## 633 R Programming Basic Building Blocks
+## 634 R Programming Basic Building Blocks
+## 635 R Programming Basic Building Blocks
+## 636 R Programming Basic Building Blocks
+## 637 R Programming Basic Building Blocks
+## 638 R Programming Basic Building Blocks
+## 639 R Programming Functions
+## 640 R Programming Functions
+## 641 R Programming Workspace and Files
+## 642 R Programming Dates and Times
+## 643 R Programming Dates and Times
+## 644 R Programming Dates and Times
+## 645 R Programming Dates and Times
+## 646 R Programming Vectors
+## 647 R Programming Vectors
+## 648 R Programming Vectors
+## 649 R Programming Vectors
+## 650 R Programming Dates and Times
+## 651 R Programming Dates and Times
+## 652 R Programming Matrices and Data Frames
+## 653 R Programming Workspace and Files
+## 654 R Programming Dates and Times
+## 655 R Programming Logic
+## 656 R Programming Logic
+## 657 R Programming Functions
+## 658 R Programming Dates and Times
+## 659 R Programming Dates and Times
+## 660 R Programming Dates and Times
+## 661 R Programming Dates and Times
+## 662 R Programming Dates and Times
+## 663 R Programming Logic
+## 664 R Programming Vectors
+## 665 R Programming Dates and Times
+## 666 R Programming Dates and Times
+## 667 R Programming Missing Values
+## 668 R Programming Logic
+## 669 R Programming Logic
+## 670 R Programming Logic
+## 671 R Programming Vectors
+## 672 R Programming Matrices and Data Frames
+## 673 R Programming Matrices and Data Frames
+## 674 R Programming Workspace and Files
+## 675 R Programming Vectors
+## 676 R Programming Vectors
+## 677 R Programming Vectors
+## 678 R Programming Missing Values
+## 679 R Programming Missing Values
+## 680 R Programming Functions
+## 681 R Programming Missing Values
+## 682 R Programming Missing Values
+## 683 R Programming Missing Values
+## 684 R Programming Vectors
+## 685 R Programming Vectors
+## 686 R Programming Vectors
+## 687 R Programming Basic Building Blocks
+## 688 R Programming Basic Building Blocks
+## 689 R Programming Basic Building Blocks
+## 690 R Programming Basic Building Blocks
+## 691 R Programming Basic Building Blocks
+## 692 R Programming Vectors
+## 693 R Programming Basic Building Blocks
+## 694 R Programming Basic Building Blocks
+## 695 R Programming Basic Building Blocks
+## 696 R Programming Logic
+## 697 R Programming Subsetting Vectors
+## 698 R Programming Vectors
+## 699 R Programming Matrices and Data Frames
+## 700 R Programming Workspace and Files
+## 701 R Programming Basic Building Blocks
+## 702 R Programming Logic
+## 703 R Programming Logic
+## 704 R Programming Vectors
+## 705 R Programming Vectors
+## 706 R Programming Subsetting Vectors
+## 707 R Programming Missing Values
+## 708 R Programming Subsetting Vectors
+## 709 R Programming Subsetting Vectors
+## 710 R Programming Subsetting Vectors
+## 711 R Programming Logic
+## 712 R Programming Workspace and Files
+## 713 R Programming Workspace and Files
+## 714 R Programming Subsetting Vectors
+## 715 R Programming Vectors
+## 716 R Programming Vectors
+## 717 R Programming Missing Values
+## 718 R Programming Missing Values
+## 719 R Programming Missing Values
+## 720 R Programming Missing Values
+## 721 R Programming Missing Values
+## 722 R Programming Missing Values
+## 723 R Programming Workspace and Files
+## 724 R Programming Workspace and Files
+## 725 R Programming Workspace and Files
+## 726 R Programming Workspace and Files
+## 727 R Programming Vectors
+## 728 R Programming Vectors
+## 729 R Programming Matrices and Data Frames
+## 730 R Programming Vectors
+## 731 R Programming Workspace and Files
+## 732 R Programming Subsetting Vectors
+## 733 R Programming Vectors
+## 734 R Programming Subsetting Vectors
+## 735 R Programming Vectors
+## 736 R Programming Subsetting Vectors
+## 737 R Programming Workspace and Files
+## 738 R Programming Vectors
+## 739 R Programming Vectors
+## 740 R Programming Vectors
+## 741 R Programming Missing Values
+## 742 R Programming Matrices and Data Frames
+## 743 R Programming Logic
+## 744 R Programming Matrices and Data Frames
+## 745 R Programming Matrices and Data Frames
+## 746 R Programming Matrices and Data Frames
+## 747 R Programming Basic Building Blocks
+## 748 R Programming Matrices and Data Frames
+## 749 R Programming Basic Building Blocks
+## 750 R Programming Basic Building Blocks
+## 751 R Programming Subsetting Vectors
+## 752 R Programming Matrices and Data Frames
+## 753 R Programming Logic
+## 754 R Programming Matrices and Data Frames
+## 755 R Programming Logic
+## 756 R Programming Logic
+## 757 R Programming Basic Building Blocks
+## 758 R Programming Workspace and Files
+## 759 R Programming Matrices and Data Frames
+## 760 R Programming Logic
+## 761 R Programming Dates and Times
+## 762 R Programming Basic Building Blocks
+## 763 R Programming Dates and Times
+## 764 R Programming Dates and Times
+## 765 R Programming Subsetting Vectors
+## 766 R Programming Subsetting Vectors
+## 767 R Programming Subsetting Vectors
+## 768 R Programming Basic Building Blocks
+## 769 R Programming Subsetting Vectors
+## 770 R Programming Basic Building Blocks
+## 771 R Programming Dates and Times
+## 772 R Programming Workspace and Files
+## 773 R Programming Subsetting Vectors
+## 774 R Programming Workspace and Files
+## 775 R Programming Functions
+## 776 R Programming Dates and Times
+## 777 R Programming Subsetting Vectors
+## 778 R Programming Basic Building Blocks
+## 779 R Programming Missing Values
+## 780 R Programming Dates and Times
+## 781 R Programming Vectors
+## 782 R Programming Dates and Times
+## 783 R Programming Subsetting Vectors
+## 784 R Programming Subsetting Vectors
+## 785 R Programming Logic
+## 786 R Programming Dates and Times
+## 787 R Programming Subsetting Vectors
+## 788 R Programming Functions
+## 789 R Programming Dates and Times
+## 790 R Programming Logic
+## 791 R Programming Logic
+## 792 R Programming Workspace and Files
+## 793 R Programming Vectors
+## 794 R Programming Workspace and Files
+## 795 R Programming Subsetting Vectors
+## 796 R Programming Dates and Times
+## 797 R Programming Logic
+## 798 R Programming Workspace and Files
+## 799 R Programming Workspace and Files
+## 800 R Programming Basic Building Blocks
+## 801 R Programming Dates and Times
+## 802 R Programming Subsetting Vectors
+## 803 R Programming Logic
+## 804 R Programming Functions
+## 805 R Programming Subsetting Vectors
+## 806 R Programming Subsetting Vectors
+## 807 R Programming Workspace and Files
+## 808 R Programming Dates and Times
+## 809 R Programming Subsetting Vectors
+## 810 R Programming Subsetting Vectors
+## 811 R Programming Subsetting Vectors
+## 812 R Programming Dates and Times
+## 813 R Programming Functions
+## 814 R Programming Missing Values
+## 815 R Programming Missing Values
+## 816 R Programming Missing Values
+## 817 R Programming Vectors
+## 818 R Programming Dates and Times
+## 819 R Programming Dates and Times
+## 820 R Programming Dates and Times
+## 821 R Programming Workspace and Files
+## 822 R Programming Subsetting Vectors
+## 823 R Programming Basic Building Blocks
+## 824 R Programming Logic
+## 825 R Programming Logic
+## 826 R Programming Logic
+## 827 R Programming Logic
+## 828 R Programming Logic
+## 829 R Programming Logic
+## 830 R Programming Logic
+## 831 R Programming Dates and Times
+## 832 R Programming Dates and Times
+## 833 R Programming Basic Building Blocks
+## 834 R Programming Subsetting Vectors
+## 835 R Programming Workspace and Files
+## 836 R Programming Workspace and Files
+## 837 R Programming Subsetting Vectors
+## 838 R Programming Workspace and Files
+## 839 R Programming Basic Building Blocks
+## 840 R Programming Subsetting Vectors
+## 841 R Programming Vectors
+## 842 R Programming Vectors
+## 843 R Programming Vectors
+## 844 R Programming Basic Building Blocks
+## 845 R Programming Logic
+## 846 R Programming Functions
+## 847 R Programming Missing Values
+## 848 R Programming Basic Building Blocks
+## 849 R Programming Logic
+## 850 R Programming Functions
+## 851 R Programming Basic Building Blocks
+## 852 R Programming Basic Building Blocks
+## 853 R Programming Missing Values
+## 854 R Programming Basic Building Blocks
+## 855 R Programming Missing Values
+## 856 R Programming Missing Values
+## 857 R Programming Basic Building Blocks
+## 858 R Programming Basic Building Blocks
+## 859 R Programming Workspace and Files
+## 860 R Programming Basic Building Blocks
+## 861 R Programming Functions
+## 862 R Programming Functions
+## 863 R Programming Subsetting Vectors
+## 864 R Programming Logic
+## 865 R Programming Logic
+## 866 R Programming Subsetting Vectors
+## 867 R Programming Dates and Times
+## 868 R Programming Dates and Times
+## 869 R Programming Workspace and Files
+## 870 R Programming Dates and Times
+## 871 R Programming Workspace and Files
+## 872 R Programming Basic Building Blocks
+## 873 R Programming Basic Building Blocks
+## 874 R Programming Basic Building Blocks
+## 875 R Programming Basic Building Blocks
+## 876 R Programming Functions
+## 877 R Programming Missing Values
+## 878 R Programming Functions
+## 879 R Programming Subsetting Vectors
+## 880 R Programming Missing Values
+## 881 R Programming Missing Values
+## 882 R Programming Logic
+## 883 R Programming Missing Values
+## 884 R Programming Basic Building Blocks
+## 885 R Programming Basic Building Blocks
+## 886 R Programming Functions
+## 887 R Programming Dates and Times
+## 888 R Programming Functions
+## 889 R Programming Subsetting Vectors
+## 890 R Programming Subsetting Vectors
+## 891 R Programming Subsetting Vectors
+## 892 R Programming Functions
+## 893 R Programming Functions
+## 894 R Programming Workspace and Files
+## 895 R Programming Workspace and Files
+## 896 R Programming Logic
+## 897 R Programming Workspace and Files
+## 898 R Programming Functions
+## 899 R Programming Functions
+## 900 R Programming Workspace and Files
+## 901 R Programming Logic
+## 902 R Programming Dates and Times
+## 903 R Programming Workspace and Files
+## 904 R Programming Vectors
+## 905 R Programming Vectors
+## 906 R Programming Logic
+## 907 R Programming Functions
+## 908 R Programming Dates and Times
+## 909 R Programming Functions
+## 910 R Programming Workspace and Files
+## 911 R Programming Workspace and Files
+## 912 R Programming Logic
+## 913 R Programming Logic
+## 914 R Programming Logic
+## 915 R Programming Vectors
+## 916 R Programming Functions
+## 917 R Programming Vectors
+## 918 R Programming Logic
+## 919 R Programming Workspace and Files
+## 920 R Programming Workspace and Files
+## 921 R Programming Functions
+## 922 R Programming Vectors
+## 923 R Programming Functions
+## 924 R Programming Functions
+## 925 R Programming Missing Values
+## 926 R Programming Logic
+## 927 R Programming Logic
+## 928 R Programming Logic
+## 929 R Programming Vectors
+## 930 R Programming Missing Values
+## 931 R Programming Vectors
+## 932 R Programming Vectors
+## 933 R Programming Vectors
+## 934 R Programming Logic
+## 935 R Programming Dates and Times
+## 936 R Programming Logic
+## 937 R Programming Logic
+## 938 R Programming Functions
+## 939 R Programming Vectors
+## 940 R Programming Functions
+## 941 R Programming Logic
+## 942 R Programming Functions
+## 943 R Programming Vectors
+## 944 R Programming Dates and Times
+## 945 R Programming Vectors
+## 946 R Programming Logic
+## 947 R Programming Logic
+## 948 R Programming Functions
+## 949 R Programming Functions
+## 950 R Programming Dates and Times
+## 951 R Programming Logic
+## 952 R Programming Dates and Times
+## 953 R Programming Vectors
+## 954 R Programming Logic
+## 955 R Programming Functions
+## 956 R Programming Basic Building Blocks
+## 957 R Programming Basic Building Blocks
+## 958 R Programming Basic Building Blocks
+## 959 R Programming Basic Building Blocks
+## 960 R Programming Basic Building Blocks
+## 961 R Programming Basic Building Blocks
+## 962 R Programming Basic Building Blocks
+## 963 R Programming Basic Building Blocks
+## 964 R Programming Basic Building Blocks
+## 965 R Programming Basic Building Blocks
+## 966 R Programming Basic Building Blocks
+## 967 R Programming Basic Building Blocks
+## 968 R Programming Basic Building Blocks
+## 969 R Programming Basic Building Blocks
+## 970 R Programming Basic Building Blocks
+## 971 R Programming Basic Building Blocks
+## 972 R Programming Basic Building Blocks
+## 973 R Programming Basic Building Blocks
+## 974 R Programming Basic Building Blocks
+## 975 R Programming Basic Building Blocks
+## 976 R Programming Basic Building Blocks
+## 977 R Programming Basic Building Blocks
+## 978 R Programming Workspace and Files
+## 979 R Programming Workspace and Files
+## 980 R Programming Workspace and Files
+## 981 R Programming Workspace and Files
+## 982 R Programming Workspace and Files
+## 983 R Programming Workspace and Files
+## 984 R Programming Workspace and Files
+## 985 R Programming Workspace and Files
+## 986 R Programming Workspace and Files
+## 987 R Programming Workspace and Files
+## 988 R Programming Workspace and Files
+## 989 R Programming Workspace and Files
+## 990 R Programming Workspace and Files
+## 991 R Programming Workspace and Files
+## 992 R Programming Workspace and Files
+## 993 R Programming Workspace and Files
+## 994 R Programming Workspace and Files
+## 995 R Programming Workspace and Files
+## 996 R Programming Workspace and Files
+## 997 R Programming Workspace and Files
+## 998 R Programming Workspace and Files
+## 999 R Programming Workspace and Files
+## 1000 R Programming Workspace and Files
+## 1001 R Programming Workspace and Files
+## 1002 R Programming Dates and Times
+## 1003 R Programming Dates and Times
+## 1004 R Programming Dates and Times
+## 1005 R Programming Dates and Times
+## 1006 R Programming Workspace and Files
+## 1007 R Programming Workspace and Files
+## 1008 R Programming Workspace and Files
+## 1009 R Programming Workspace and Files
+## 1010 R Programming Dates and Times
+## 1011 R Programming Workspace and Files
+## 1012 R Programming Workspace and Files
+## 1013 R Programming Missing Values
+## 1014 R Programming Missing Values
+## 1015 R Programming Missing Values
+## 1016 R Programming Missing Values
+## 1017 R Programming Missing Values
+## 1018 R Programming Missing Values
+## 1019 R Programming Missing Values
+## 1020 R Programming Missing Values
+## 1021 R Programming Missing Values
+## 1022 R Programming Missing Values
+## 1023 R Programming Missing Values
+## 1024 R Programming Missing Values
+## 1025 R Programming Missing Values
+## 1026 R Programming Missing Values
+## 1027 R Programming Basic Building Blocks
+## 1028 R Programming Subsetting Vectors
+## 1029 R Programming Logic
+## 1030 R Programming Logic
+## 1031 R Programming Logic
+## 1032 R Programming Logic
+## 1033 R Programming Logic
+## 1034 R Programming Logic
+## 1035 R Programming Logic
+## 1036 R Programming Logic
+## 1037 R Programming Logic
+## 1038 R Programming Logic
+## 1039 R Programming Logic
+## 1040 R Programming Logic
+## 1041 R Programming Logic
+## 1042 R Programming Logic
+## 1043 R Programming Logic
+## 1044 R Programming Workspace and Files
+## 1045 R Programming Workspace and Files
+## 1046 R Programming Workspace and Files
+## 1047 R Programming Workspace and Files
+## 1048 R Programming Logic
+## 1049 R Programming Dates and Times
+## 1050 R Programming Dates and Times
+## 1051 R Programming Dates and Times
+## 1052 R Programming Dates and Times
+## 1053 R Programming Dates and Times
+## 1054 R Programming Dates and Times
+## 1055 R Programming Dates and Times
+## 1056 R Programming Dates and Times
+## 1057 R Programming Dates and Times
+## 1058 R Programming Dates and Times
+## 1059 R Programming Dates and Times
+## 1060 R Programming Basic Building Blocks
+## 1061 R Programming Basic Building Blocks
+## 1062 R Programming Basic Building Blocks
+## 1063 R Programming Basic Building Blocks
+## 1064 R Programming Basic Building Blocks
+## 1065 R Programming Vectors
+## 1066 R Programming Vectors
+## 1067 R Programming Vectors
+## 1068 R Programming Subsetting Vectors
+## 1069 R Programming Subsetting Vectors
+## 1070 R Programming Subsetting Vectors
+## 1071 R Programming Subsetting Vectors
+## 1072 R Programming Vectors
+## 1073 R Programming Vectors
+## 1074 R Programming Vectors
+## 1075 R Programming Vectors
+## 1076 R Programming Basic Building Blocks
+## 1077 R Programming Basic Building Blocks
+## 1078 R Programming Basic Building Blocks
+## 1079 R Programming Vectors
+## 1080 R Programming Vectors
+## 1081 R Programming Logic
+## 1082 R Programming Logic
+## 1083 R Programming Logic
+## 1084 R Programming Vectors
+## 1085 R Programming Vectors
+## 1086 R Programming Vectors
+## 1087 R Programming Basic Building Blocks
+## 1088 R Programming Subsetting Vectors
+## 1089 R Programming Subsetting Vectors
+## 1090 R Programming Subsetting Vectors
+## 1091 R Programming Basic Building Blocks
+## 1092 R Programming Basic Building Blocks
+## 1093 R Programming Basic Building Blocks
+## 1094 R Programming Basic Building Blocks
+## 1095 R Programming Basic Building Blocks
+## 1096 R Programming Basic Building Blocks
+## 1097 R Programming Subsetting Vectors
+## 1098 R Programming Subsetting Vectors
+## 1099 R Programming Subsetting Vectors
+## 1100 R Programming Subsetting Vectors
+## 1101 R Programming Subsetting Vectors
+## 1102 R Programming Subsetting Vectors
+## 1103 R Programming Subsetting Vectors
+## 1104 R Programming Vectors
+## 1105 R Programming Vectors
+## 1106 R Programming Vectors
+## 1107 R Programming Workspace and Files
+## 1108 R Programming Looking at Data
+## 1109 R Programming Workspace and Files
+## 1110 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1111 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1112 R Programming Looking at Data
+## 1113 R Programming Workspace and Files
+## 1114 R Programming Looking at Data
+## 1115 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1116 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1117 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1118 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1119 R Programming Looking at Data
+## 1120 R Programming Looking at Data
+## 1121 R Programming Workspace and Files
+## 1122 R Programming Workspace and Files
+## 1123 R Programming Vectors
+## 1124 R Programming Workspace and Files
+## 1125 R Programming Vectors
+## 1126 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1127 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1128 R Programming Looking at Data
+## 1129 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1130 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1131 R Programming Dates and Times
+## 1132 R Programming Workspace and Files
+## 1133 R Programming Workspace and Files
+## 1134 R Programming Logic
+## 1135 R Programming Workspace and Files
+## 1136 R Programming Workspace and Files
+## 1137 R Programming Workspace and Files
+## 1138 R Programming Workspace and Files
+## 1139 R Programming Workspace and Files
+## 1140 R Programming Functions
+## 1141 R Programming Functions
+## 1142 R Programming Functions
+## 1143 R Programming Functions
+## 1144 R Programming Workspace and Files
+## 1145 R Programming Logic
+## 1146 R Programming Functions
+## 1147 R Programming Functions
+## 1148 R Programming Functions
+## 1149 R Programming Functions
+## 1150 R Programming Workspace and Files
+## 1151 R Programming Workspace and Files
+## 1152 R Programming Workspace and Files
+## 1153 R Programming Functions
+## 1154 R Programming Functions
+## 1155 R Programming Functions
+## 1156 R Programming Functions
+## 1157 R Programming Functions
+## 1158 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1159 R Programming Looking at Data
+## 1160 R Programming Looking at Data
+## 1161 R Programming Looking at Data
+## 1162 R Programming Looking at Data
+## 1163 R Programming Workspace and Files
+## 1164 R Programming Workspace and Files
+## 1165 R Programming Dates and Times
+## 1166 Getting and Cleaning Data Tidying Data with tidyr
+## 1167 Getting and Cleaning Data Tidying Data with tidyr
+## 1168 Getting and Cleaning Data Tidying Data with tidyr
+## 1169 Getting and Cleaning Data Tidying Data with tidyr
+## 1170 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1171 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1172 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1173 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1174 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1175 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1176 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1177 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1178 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1179 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1180 Exploratory_Data_Analysis Plotting_Systems
+## 1181 Exploratory_Data_Analysis Plotting_Systems
+## 1182 Exploratory_Data_Analysis Plotting_Systems
+## 1183 Exploratory_Data_Analysis Plotting_Systems
+## 1184 Exploratory_Data_Analysis Plotting_Systems
+## 1185 Exploratory_Data_Analysis Plotting_Systems
+## 1186 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1187 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1188 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1189 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1190 R Programming Workspace and Files
+## 1191 R Programming Workspace and Files
+## 1192 R Programming Workspace and Files
+## 1193 R Programming Workspace and Files
+## 1194 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1195 Getting and Cleaning Data Tidying Data with tidyr
+## 1196 Getting and Cleaning Data Tidying Data with tidyr
+## 1197 Getting and Cleaning Data Manipulating Data with dplyr
+## 1198 Getting and Cleaning Data Manipulating Data with dplyr
+## 1199 Getting and Cleaning Data Manipulating Data with dplyr
+## 1200 Getting and Cleaning Data Manipulating Data with dplyr
+## 1201 Getting and Cleaning Data Manipulating Data with dplyr
+## 1202 R Programming Logic
+## 1203 R Programming Logic
+## 1204 R Programming Logic
+## 1205 R Programming Logic
+## 1206 R Programming Logic
+## 1207 R Programming Dates and Times
+## 1208 R Programming Dates and Times
+## 1209 R Programming Dates and Times
+## 1210 R Programming Dates and Times
+## 1211 R Programming Dates and Times
+## 1212 R Programming Dates and Times
+## 1213 R Programming Vectors
+## 1214 R Programming Vectors
+## 1215 R Programming Vectors
+## 1216 R Programming Vectors
+## 1217 R Programming Vectors
+## 1218 R Programming Vectors
+## 1219 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1220 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1221 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1222 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1223 Getting and Cleaning Data Manipulating Data with dplyr
+## 1224 Getting and Cleaning Data Manipulating Data with dplyr
+## 1225 Getting and Cleaning Data Manipulating Data with dplyr
+## 1226 Getting and Cleaning Data Manipulating Data with dplyr
+## 1227 Getting and Cleaning Data Manipulating Data with dplyr
+## 1228 Getting and Cleaning Data Manipulating Data with dplyr
+## 1229 R Programming Dates and Times
+## 1230 R Programming Dates and Times
+## 1231 R Programming Functions
+## 1232 R Programming Functions
+## 1233 R Programming Functions
+## 1234 R Programming Functions
+## 1235 R Programming Functions
+## 1236 R Programming Functions
+## 1237 R Programming Functions
+## 1238 R Programming Functions
+## 1239 Getting and Cleaning Data Tidying Data with tidyr
+## 1240 Getting and Cleaning Data Tidying Data with tidyr
+## 1241 Getting and Cleaning Data Tidying Data with tidyr
+## 1242 Getting and Cleaning Data Tidying Data with tidyr
+## 1243 Getting and Cleaning Data Tidying Data with tidyr
+## 1244 Getting and Cleaning Data Tidying Data with tidyr
+## 1245 R Programming Functions
+## 1246 R Programming Functions
+## 1247 R Programming Functions
+## 1248 Getting and Cleaning Data Tidying Data with tidyr
+## 1249 Getting and Cleaning Data Tidying Data with tidyr
+## 1250 Getting and Cleaning Data Tidying Data with tidyr
+## 1251 R Programming Functions
+## 1252 R Programming Functions
+## 1253 R Programming Functions
+## 1254 R Programming Functions
+## 1255 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1256 R Programming Subsetting Vectors
+## 1257 R Programming Subsetting Vectors
+## 1258 R Programming Subsetting Vectors
+## 1259 R Programming Subsetting Vectors
+## 1260 R Programming Subsetting Vectors
+## 1261 R Programming Subsetting Vectors
+## 1262 R Programming Subsetting Vectors
+## 1263 R Programming Subsetting Vectors
+## 1264 R Programming Subsetting Vectors
+## 1265 R Programming Subsetting Vectors
+## 1266 R Programming Subsetting Vectors
+## 1267 Exploratory_Data_Analysis Plotting_Systems
+## 1268 Exploratory_Data_Analysis Plotting_Systems
+## 1269 Exploratory_Data_Analysis Plotting_Systems
+## 1270 Exploratory_Data_Analysis Plotting_Systems
+## 1271 Exploratory_Data_Analysis Plotting_Systems
+## 1272 Exploratory_Data_Analysis Plotting_Systems
+## 1273 R Programming Logic
+## 1274 R Programming Logic
+## 1275 R Programming Logic
+## 1276 R Programming Logic
+## 1277 R Programming Logic
+## 1278 R Programming Logic
+## 1279 R Programming Logic
+## 1280 Exploratory_Data_Analysis Plotting_Systems
+## 1281 Exploratory_Data_Analysis Plotting_Systems
+## 1282 Exploratory_Data_Analysis Plotting_Systems
+## 1283 Exploratory_Data_Analysis Plotting_Systems
+## 1284 Exploratory_Data_Analysis Plotting_Systems
+## 1285 Exploratory_Data_Analysis Plotting_Systems
+## 1286 Exploratory_Data_Analysis Plotting_Systems
+## 1287 Exploratory_Data_Analysis Plotting_Systems
+## 1288 Exploratory_Data_Analysis Plotting_Systems
+## 1289 R Programming Logic
+## 1290 R Programming Logic
+## 1291 R Programming Logic
+## 1292 R Programming Logic
+## 1293 R Programming Logic
+## 1294 R Programming Missing Values
+## 1295 R Programming Missing Values
+## 1296 Getting and Cleaning Data Manipulating Data with dplyr
+## 1297 Getting and Cleaning Data Manipulating Data with dplyr
+## 1298 Getting and Cleaning Data Manipulating Data with dplyr
+## 1299 Getting and Cleaning Data Manipulating Data with dplyr
+## 1300 Getting and Cleaning Data Manipulating Data with dplyr
+## 1301 Getting and Cleaning Data Manipulating Data with dplyr
+## 1302 R Programming Dates and Times
+## 1303 R Programming Dates and Times
+## 1304 Getting and Cleaning Data Manipulating Data with dplyr
+## 1305 Getting and Cleaning Data Manipulating Data with dplyr
+## 1306 Getting and Cleaning Data Manipulating Data with dplyr
+## 1307 Getting and Cleaning Data Manipulating Data with dplyr
+## 1308 R Programming Dates and Times
+## 1309 R Programming Dates and Times
+## 1310 R Programming Dates and Times
+## 1311 R Programming Dates and Times
+## 1312 R Programming Dates and Times
+## 1313 R Programming Dates and Times
+## 1314 R Programming Dates and Times
+## 1315 R Programming Vectors
+## 1316 R Programming Vectors
+## 1317 R Programming Vectors
+## 1318 R Programming Vectors
+## 1319 R Programming Vectors
+## 1320 R Programming Vectors
+## 1321 R Programming Vectors
+## 1322 R Programming Vectors
+## 1323 R Programming Vectors
+## 1324 R Programming Vectors
+## 1325 R Programming Vectors
+## 1326 Getting and Cleaning Data Tidying Data with tidyr
+## 1327 Getting and Cleaning Data Tidying Data with tidyr
+## 1328 R Programming Missing Values
+## 1329 R Programming Missing Values
+## 1330 R Programming Missing Values
+## 1331 R Programming Missing Values
+## 1332 R Programming Missing Values
+## 1333 R Programming Missing Values
+## 1334 R Programming Missing Values
+## 1335 R Programming Missing Values
+## 1336 R Programming Missing Values
+## 1337 R Programming Missing Values
+## 1338 R Programming Missing Values
+## 1339 R Programming Missing Values
+## 1340 R Programming Subsetting Vectors
+## 1341 R Programming Subsetting Vectors
+## 1342 R Programming Subsetting Vectors
+## 1343 Getting and Cleaning Data Tidying Data with tidyr
+## 1344 Getting and Cleaning Data Tidying Data with tidyr
+## 1345 Getting and Cleaning Data Tidying Data with tidyr
+## 1346 Getting and Cleaning Data Tidying Data with tidyr
+## 1347 Getting and Cleaning Data Tidying Data with tidyr
+## 1348 Getting and Cleaning Data Tidying Data with tidyr
+## 1349 R Programming Subsetting Vectors
+## 1350 R Programming Logic
+## 1351 R Programming Logic
+## 1352 R Programming Dates and Times
+## 1353 Getting and Cleaning Data Tidying Data with tidyr
+## 1354 Getting and Cleaning Data Tidying Data with tidyr
+## 1355 Getting and Cleaning Data Tidying Data with tidyr
+## 1356 Getting and Cleaning Data Tidying Data with tidyr
+## 1357 Getting and Cleaning Data Tidying Data with tidyr
+## 1358 R Programming Subsetting Vectors
+## 1359 R Programming Subsetting Vectors
+## 1360 R Programming Subsetting Vectors
+## 1361 R Programming Logic
+## 1362 R Programming Logic
+## 1363 R Programming Logic
+## 1364 R Programming Logic
+## 1365 Getting and Cleaning Data Manipulating Data with dplyr
+## 1366 R Programming Logic
+## 1367 R Programming Dates and Times
+## 1368 R Programming Logic
+## 1369 Getting and Cleaning Data Manipulating Data with dplyr
+## 1370 Getting and Cleaning Data Manipulating Data with dplyr
+## 1371 R Programming Logic
+## 1372 R Programming Logic
+## 1373 R Programming Logic
+## 1374 R Programming Logic
+## 1375 R Programming Logic
+## 1376 R Programming Logic
+## 1377 R Programming Dates and Times
+## 1378 R Programming Subsetting Vectors
+## 1379 R Programming Dates and Times
+## 1380 R Programming Logic
+## 1381 R Programming Logic
+## 1382 R Programming Dates and Times
+## 1383 R Programming Dates and Times
+## 1384 Getting and Cleaning Data Manipulating Data with dplyr
+## 1385 Getting and Cleaning Data Manipulating Data with dplyr
+## 1386 Getting and Cleaning Data Manipulating Data with dplyr
+## 1387 R Programming Dates and Times
+## 1388 Getting and Cleaning Data Tidying Data with tidyr
+## 1389 R Programming Subsetting Vectors
+## 1390 R Programming Subsetting Vectors
+## 1391 R Programming Looking at Data
+## 1392 R Programming Looking at Data
+## 1393 R Programming Looking at Data
+## 1394 R Programming Looking at Data
+## 1395 Getting and Cleaning Data Manipulating Data with dplyr
+## 1396 R Programming Subsetting Vectors
+## 1397 R Programming Looking at Data
+## 1398 Getting and Cleaning Data Manipulating Data with dplyr
+## 1399 Getting and Cleaning Data Manipulating Data with dplyr
+## 1400 Getting and Cleaning Data Manipulating Data with dplyr
+## 1401 R Programming Dates and Times
+## 1402 R Programming Subsetting Vectors
+## 1403 R Programming Dates and Times
+## 1404 Getting and Cleaning Data Manipulating Data with dplyr
+## 1405 Getting and Cleaning Data Manipulating Data with dplyr
+## 1406 Getting and Cleaning Data Tidying Data with tidyr
+## 1407 Getting and Cleaning Data Manipulating Data with dplyr
+## 1408 R Programming Subsetting Vectors
+## 1409 Getting and Cleaning Data Manipulating Data with dplyr
+## 1410 Getting and Cleaning Data Manipulating Data with dplyr
+## 1411 Getting and Cleaning Data Manipulating Data with dplyr
+## 1412 Getting and Cleaning Data Tidying Data with tidyr
+## 1413 Getting and Cleaning Data Manipulating Data with dplyr
+## 1414 Getting and Cleaning Data Manipulating Data with dplyr
+## 1415 R Programming Subsetting Vectors
+## 1416 Getting and Cleaning Data Tidying Data with tidyr
+## 1417 R Programming Subsetting Vectors
+## 1418 Getting and Cleaning Data Manipulating Data with dplyr
+## 1419 R Programming Basic Building Blocks
+## 1420 R Programming Basic Building Blocks
+## 1421 R Programming Matrices and Data Frames
+## 1422 R Programming Basic Building Blocks
+## 1423 R Programming Matrices and Data Frames
+## 1424 R Programming Matrices and Data Frames
+## 1425 R Programming Matrices and Data Frames
+## 1426 R Programming Basic Building Blocks
+## 1427 R Programming Basic Building Blocks
+## 1428 R Programming Matrices and Data Frames
+## 1429 R Programming Matrices and Data Frames
+## 1430 R Programming Matrices and Data Frames
+## 1431 R Programming Basic Building Blocks
+## 1432 R Programming Basic Building Blocks
+## 1433 R Programming Matrices and Data Frames
+## 1434 R Programming Basic Building Blocks
+## 1435 R Programming Basic Building Blocks
+## 1436 R Programming Basic Building Blocks
+## 1437 R Programming Basic Building Blocks
+## 1438 R Programming Matrices and Data Frames
+## 1439 R Programming Basic Building Blocks
+## 1440 R Programming Basic Building Blocks
+## 1441 R Programming Matrices and Data Frames
+## 1442 R Programming Matrices and Data Frames
+## 1443 R Programming Matrices and Data Frames
+## 1444 R Programming Basic Building Blocks
+## 1445 R Programming Basic Building Blocks
+## 1446 R Programming Matrices and Data Frames
+## 1447 R Programming Matrices and Data Frames
+## 1448 R Programming Matrices and Data Frames
+## 1449 R Programming Matrices and Data Frames
+## 1450 R Programming Matrices and Data Frames
+## 1451 R Programming Basic Building Blocks
+## 1452 R Programming Basic Building Blocks
+## 1453 R Programming Basic Building Blocks
+## 1454 R Programming Matrices and Data Frames
+## 1455 R Programming Matrices and Data Frames
+## 1456 R Programming Matrices and Data Frames
+## 1457 R Programming Matrices and Data Frames
+## 1458 R Programming Basic Building Blocks
+## 1459 R Programming Basic Building Blocks
+## 1460 R Programming Basic Building Blocks
+## 1461 R Programming Matrices and Data Frames
+## 1462 R Programming Basic Building Blocks
+## 1463 R Programming Matrices and Data Frames
+## 1464 R Programming Vectors
+## 1465 R Programming Basic Building Blocks
+## 1466 R Programming Vectors
+## 1467 R Programming Basic Building Blocks
+## 1468 R Programming Basic Building Blocks
+## 1469 R Programming Basic Building Blocks
+## 1470 R Programming Basic Building Blocks
+## 1471 R Programming Workspace and Files
+## 1472 R Programming Basic Building Blocks
+## 1473 R Programming Vectors
+## 1474 R Programming Basic Building Blocks
+## 1475 R Programming Basic Building Blocks
+## 1476 R Programming Workspace and Files
+## 1477 R Programming Vectors
+## 1478 R Programming Basic Building Blocks
+## 1479 R Programming Workspace and Files
+## 1480 R Programming Workspace and Files
+## 1481 R Programming Basic Building Blocks
+## 1482 R Programming Workspace and Files
+## 1483 R Programming Basic Building Blocks
+## 1484 R Programming Basic Building Blocks
+## 1485 R Programming Basic Building Blocks
+## 1486 R Programming Vectors
+## 1487 R Programming Workspace and Files
+## 1488 R Programming Workspace and Files
+## 1489 R Programming Basic Building Blocks
+## 1490 R Programming Workspace and Files
+## 1491 R Programming Workspace and Files
+## 1492 R Programming Workspace and Files
+## 1493 R Programming Workspace and Files
+## 1494 R Programming Workspace and Files
+## 1495 R Programming Workspace and Files
+## 1496 R Programming Vectors
+## 1497 R Programming Workspace and Files
+## 1498 R Programming Workspace and Files
+## 1499 R Programming Basic Building Blocks
+## 1500 R Programming Basic Building Blocks
+## 1501 R Programming Workspace and Files
+## 1502 R Programming Vectors
+## 1503 R Programming Workspace and Files
+## 1504 R Programming Vectors
+## 1505 R Programming Workspace and Files
+## 1506 R Programming Workspace and Files
+## 1507 R Programming Workspace and Files
+## 1508 R Programming Missing Values
+## 1509 R Programming Vectors
+## 1510 R Programming Vectors
+## 1511 R Programming Vectors
+## 1512 R Programming Workspace and Files
+## 1513 R Programming Workspace and Files
+## 1514 R Programming Basic Building Blocks
+## 1515 R Programming Basic Building Blocks
+## 1516 R Programming Missing Values
+## 1517 R Programming Vectors
+## 1518 R Programming Basic Building Blocks
+## 1519 R Programming Missing Values
+## 1520 R Programming Vectors
+## 1521 R Programming Vectors
+## 1522 R Programming Vectors
+## 1523 R Programming Vectors
+## 1524 R Programming Missing Values
+## 1525 R Programming Workspace and Files
+## 1526 R Programming Missing Values
+## 1527 R Programming Vectors
+## 1528 R Programming Missing Values
+## 1529 R Programming Missing Values
+## 1530 R Programming Missing Values
+## 1531 R Programming Basic Building Blocks
+## 1532 R Programming Missing Values
+## 1533 R Programming Basic Building Blocks
+## 1534 R Programming Missing Values
+## 1535 R Programming Missing Values
+## 1536 R Programming Missing Values
+## 1537 R Programming Basic Building Blocks
+## 1538 R Programming Vectors
+## 1539 R Programming Vectors
+## 1540 R Programming Missing Values
+## 1541 R Programming Missing Values
+## 1542 R Programming Subsetting Vectors
+## 1543 R Programming Functions
+## 1544 R Programming Functions
+## 1545 R Programming Functions
+## 1546 R Programming Subsetting Vectors
+## 1547 R Programming Subsetting Vectors
+## 1548 R Programming Functions
+## 1549 R Programming Basic Building Blocks
+## 1550 R Programming Matrices and Data Frames
+## 1551 R Programming Basic Building Blocks
+## 1552 R Programming Matrices and Data Frames
+## 1553 R Programming Basic Building Blocks
+## 1554 R Programming Workspace and Files
+## 1555 R Programming Matrices and Data Frames
+## 1556 R Programming Matrices and Data Frames
+## 1557 R Programming Matrices and Data Frames
+## 1558 R Programming Matrices and Data Frames
+## 1559 R Programming Matrices and Data Frames
+## 1560 R Programming Basic Building Blocks
+## 1561 R Programming Workspace and Files
+## 1562 R Programming Basic Building Blocks
+## 1563 R Programming Dates and Times
+## 1564 R Programming Matrices and Data Frames
+## 1565 R Programming Subsetting Vectors
+## 1566 R Programming Subsetting Vectors
+## 1567 R Programming Functions
+## 1568 R Programming Logic
+## 1569 R Programming Matrices and Data Frames
+## 1570 R Programming Subsetting Vectors
+## 1571 R Programming Matrices and Data Frames
+## 1572 R Programming Workspace and Files
+## 1573 R Programming Dates and Times
+## 1574 R Programming Logic
+## 1575 R Programming Logic
+## 1576 R Programming Dates and Times
+## 1577 R Programming Basic Building Blocks
+## 1578 R Programming Subsetting Vectors
+## 1579 R Programming Logic
+## 1580 R Programming Logic
+## 1581 R Programming Matrices and Data Frames
+## 1582 R Programming Workspace and Files
+## 1583 R Programming Matrices and Data Frames
+## 1584 R Programming Subsetting Vectors
+## 1585 R Programming Logic
+## 1586 R Programming Functions
+## 1587 R Programming Dates and Times
+## 1588 R Programming Dates and Times
+## 1589 R Programming Workspace and Files
+## 1590 R Programming Vectors
+## 1591 R Programming Basic Building Blocks
+## 1592 R Programming Functions
+## 1593 R Programming Functions
+## 1594 R Programming Matrices and Data Frames
+## 1595 R Programming Matrices and Data Frames
+## 1596 R Programming Logic
+## 1597 R Programming Logic
+## 1598 R Programming Vectors
+## 1599 R Programming Workspace and Files
+## 1600 R Programming Dates and Times
+## 1601 R Programming Basic Building Blocks
+## 1602 R Programming Dates and Times
+## 1603 R Programming Matrices and Data Frames
+## 1604 R Programming Vectors
+## 1605 R Programming Matrices and Data Frames
+## 1606 R Programming Basic Building Blocks
+## 1607 R Programming Basic Building Blocks
+## 1608 R Programming Logic
+## 1609 R Programming Dates and Times
+## 1610 R Programming Missing Values
+## 1611 R Programming Vectors
+## 1612 R Programming Vectors
+## 1613 R Programming Vectors
+## 1614 R Programming Basic Building Blocks
+## 1615 R Programming Matrices and Data Frames
+## 1616 R Programming Basic Building Blocks
+## 1617 R Programming Vectors
+## 1618 R Programming Logic
+## 1619 R Programming Workspace and Files
+## 1620 R Programming Functions
+## 1621 R Programming Missing Values
+## 1622 R Programming Dates and Times
+## 1623 R Programming Dates and Times
+## 1624 R Programming Functions
+## 1625 R Programming Vectors
+## 1626 R Programming Vectors
+## 1627 R Programming Matrices and Data Frames
+## 1628 R Programming Basic Building Blocks
+## 1629 R Programming Matrices and Data Frames
+## 1630 R Programming Matrices and Data Frames
+## 1631 R Programming Functions
+## 1632 R Programming Workspace and Files
+## 1633 R Programming Functions
+## 1634 R Programming Matrices and Data Frames
+## 1635 R Programming Subsetting Vectors
+## 1636 R Programming Vectors
+## 1637 R Programming Vectors
+## 1638 R Programming Vectors
+## 1639 R Programming Vectors
+## 1640 R Programming Workspace and Files
+## 1641 R Programming Logic
+## 1642 R Programming Logic
+## 1643 R Programming Functions
+## 1644 R Programming Matrices and Data Frames
+## 1645 R Programming Matrices and Data Frames
+## 1646 R Programming Matrices and Data Frames
+## 1647 R Programming Matrices and Data Frames
+## 1648 R Programming Matrices and Data Frames
+## 1649 R Programming Subsetting Vectors
+## 1650 R Programming Subsetting Vectors
+## 1651 R Programming Logic
+## 1652 R Programming Logic
+## 1653 R Programming Vectors
+## 1654 R Programming Dates and Times
+## 1655 R Programming Missing Values
+## 1656 R Programming Functions
+## 1657 R Programming Logic
+## 1658 R Programming Logic
+## 1659 R Programming Dates and Times
+## 1660 R Programming Workspace and Files
+## 1661 R Programming Workspace and Files
+## 1662 R Programming Subsetting Vectors
+## 1663 R Programming Functions
+## 1664 R Programming Dates and Times
+## 1665 R Programming Functions
+## 1666 R Programming Functions
+## 1667 R Programming Missing Values
+## 1668 R Programming Matrices and Data Frames
+## 1669 R Programming Functions
+## 1670 R Programming Workspace and Files
+## 1671 R Programming Workspace and Files
+## 1672 R Programming Functions
+## 1673 R Programming Dates and Times
+## 1674 R Programming Dates and Times
+## 1675 R Programming Functions
+## 1676 R Programming Functions
+## 1677 R Programming Missing Values
+## 1678 R Programming Missing Values
+## 1679 R Programming Subsetting Vectors
+## 1680 R Programming Functions
+## 1681 R Programming Functions
+## 1682 R Programming Logic
+## 1683 R Programming Logic
+## 1684 R Programming Functions
+## 1685 R Programming Functions
+## 1686 R Programming Functions
+## 1687 R Programming Functions
+## 1688 R Programming Functions
+## 1689 R Programming Functions
+## 1690 R Programming Functions
+## 1691 R Programming Missing Values
+## 1692 R Programming Missing Values
+## 1693 R Programming Subsetting Vectors
+## 1694 R Programming Subsetting Vectors
+## 1695 R Programming Missing Values
+## 1696 R Programming Missing Values
+## 1697 R Programming Missing Values
+## 1698 R Programming Missing Values
+## 1699 R Programming Functions
+## 1700 R Programming Functions
+## 1701 R Programming Missing Values
+## 1702 R Programming Missing Values
+## 1703 R Programming Missing Values
+## 1704 R Programming Dates and Times
+## 1705 R Programming Dates and Times
+## 1706 R Programming Functions
+## 1707 R Programming Dates and Times
+## 1708 R Programming Dates and Times
+## 1709 R Programming Functions
+## 1710 R Programming Vectors
+## 1711 R Programming Dates and Times
+## 1712 R Programming Dates and Times
+## 1713 R Programming Dates and Times
+## 1714 R Programming Dates and Times
+## 1715 R Programming Dates and Times
+## 1716 R Programming Functions
+## 1717 R Programming Vectors
+## 1718 R Programming Vectors
+## 1719 R Programming Functions
+## 1720 R Programming Functions
+## 1721 R Programming Functions
+## 1722 R Programming Workspace and Files
+## 1723 R Programming Functions
+## 1724 R Programming Logic
+## 1725 R Programming Vectors
+## 1726 R Programming Dates and Times
+## 1727 R Programming Dates and Times
+## 1728 R Programming Functions
+## 1729 R Programming Functions
+## 1730 R Programming Functions
+## 1731 R Programming Vectors
+## 1732 R Programming Functions
+## 1733 R Programming Vectors
+## 1734 R Programming Functions
+## 1735 R Programming Functions
+## 1736 R Programming Workspace and Files
+## 1737 R Programming Workspace and Files
+## 1738 R Programming Workspace and Files
+## 1739 R Programming Dates and Times
+## 1740 R Programming Vectors
+## 1741 R Programming Functions
+## 1742 R Programming Vectors
+## 1743 R Programming Functions
+## 1744 R Programming Functions
+## 1745 R Programming Workspace and Files
+## 1746 R Programming Dates and Times
+## 1747 R Programming Vectors
+## 1748 R Programming Logic
+## 1749 R Programming Functions
+## 1750 R Programming Logic
+## 1751 R Programming Subsetting Vectors
+## 1752 R Programming Subsetting Vectors
+## 1753 R Programming Workspace and Files
+## 1754 R Programming Functions
+## 1755 R Programming Logic
+## 1756 R Programming Functions
+## 1757 R Programming Functions
+## 1758 R Programming Functions
+## 1759 R Programming Dates and Times
+## 1760 R Programming Functions
+## 1761 R Programming Functions
+## 1762 R Programming Vectors
+## 1763 R Programming Vectors
+## 1764 R Programming Dates and Times
+## 1765 R Programming Vectors
+## 1766 R Programming Dates and Times
+## 1767 R Programming Vectors
+## 1768 R Programming Vectors
+## 1769 R Programming Dates and Times
+## 1770 R Programming Dates and Times
+## 1771 R Programming Functions
+## 1772 R Programming Workspace and Files
+## 1773 R Programming Logic
+## 1774 R Programming Basic Building Blocks
+## 1775 R Programming Basic Building Blocks
+## 1776 R Programming Logic
+## 1777 R Programming Logic
+## 1778 R Programming Basic Building Blocks
+## 1779 R Programming Basic Building Blocks
+## 1780 R Programming Missing Values
+## 1781 R Programming Workspace and Files
+## 1782 R Programming Workspace and Files
+## 1783 R Programming Functions
+## 1784 R Programming Workspace and Files
+## 1785 R Programming Workspace and Files
+## 1786 R Programming Missing Values
+## 1787 R Programming Logic
+## 1788 R Programming Dates and Times
+## 1789 R Programming Basic Building Blocks
+## 1790 R Programming Vectors
+## 1791 R Programming Vectors
+## 1792 R Programming Vectors
+## 1793 R Programming Dates and Times
+## 1794 R Programming Dates and Times
+## 1795 R Programming Vectors
+## 1796 R Programming Basic Building Blocks
+## 1797 R Programming Dates and Times
+## 1798 R Programming Dates and Times
+## 1799 R Programming Functions
+## 1800 R Programming Functions
+## 1801 R Programming Basic Building Blocks
+## 1802 R Programming Logic
+## 1803 R Programming Logic
+## 1804 R Programming Logic
+## 1805 R Programming Subsetting Vectors
+## 1806 R Programming Basic Building Blocks
+## 1807 R Programming Basic Building Blocks
+## 1808 R Programming Subsetting Vectors
+## 1809 R Programming Basic Building Blocks
+## 1810 R Programming Workspace and Files
+## 1811 R Programming Logic
+## 1812 R Programming Logic
+## 1813 R Programming Functions
+## 1814 R Programming Workspace and Files
+## 1815 R Programming Subsetting Vectors
+## 1816 R Programming Logic
+## 1817 R Programming Logic
+## 1818 R Programming Logic
+## 1819 R Programming Logic
+## 1820 R Programming Basic Building Blocks
+## 1821 R Programming Vectors
+## 1822 R Programming Dates and Times
+## 1823 R Programming Basic Building Blocks
+## 1824 R Programming Basic Building Blocks
+## 1825 R Programming Dates and Times
+## 1826 R Programming Logic
+## 1827 R Programming Workspace and Files
+## 1828 R Programming Workspace and Files
+## 1829 R Programming Basic Building Blocks
+## 1830 R Programming Basic Building Blocks
+## 1831 R Programming Logic
+## 1832 R Programming Basic Building Blocks
+## 1833 R Programming Basic Building Blocks
+## 1834 R Programming Logic
+## 1835 R Programming Logic
+## 1836 R Programming Subsetting Vectors
+## 1837 R Programming Subsetting Vectors
+## 1838 R Programming Missing Values
+## 1839 R Programming Missing Values
+## 1840 R Programming Subsetting Vectors
+## 1841 R Programming Basic Building Blocks
+## 1842 R Programming Workspace and Files
+## 1843 R Programming Workspace and Files
+## 1844 R Programming Logic
+## 1845 R Programming Dates and Times
+## 1846 R Programming Workspace and Files
+## 1847 R Programming Logic
+## 1848 R Programming Missing Values
+## 1849 R Programming Logic
+## 1850 R Programming Logic
+## 1851 R Programming Workspace and Files
+## 1852 R Programming Workspace and Files
+## 1853 R Programming Dates and Times
+## 1854 R Programming Dates and Times
+## 1855 R Programming Logic
+## 1856 R Programming Missing Values
+## 1857 R Programming Missing Values
+## 1858 R Programming Subsetting Vectors
+## 1859 R Programming Subsetting Vectors
+## 1860 R Programming Logic
+## 1861 R Programming Logic
+## 1862 R Programming Workspace and Files
+## 1863 R Programming Basic Building Blocks
+## 1864 R Programming Workspace and Files
+## 1865 R Programming Subsetting Vectors
+## 1866 R Programming Missing Values
+## 1867 R Programming Missing Values
+## 1868 R Programming Subsetting Vectors
+## 1869 R Programming Subsetting Vectors
+## 1870 R Programming Missing Values
+## 1871 R Programming Missing Values
+## 1872 R Programming Logic
+## 1873 R Programming Logic
+## 1874 R Programming Subsetting Vectors
+## 1875 R Programming Logic
+## 1876 R Programming Subsetting Vectors
+## 1877 R Programming Basic Building Blocks
+## 1878 R Programming Subsetting Vectors
+## 1879 R Programming Subsetting Vectors
+## 1880 R Programming Subsetting Vectors
+## 1881 R Programming Workspace and Files
+## 1882 R Programming Logic
+## 1883 R Programming Missing Values
+## 1884 R Programming Missing Values
+## 1885 R Programming Subsetting Vectors
+## 1886 R Programming Subsetting Vectors
+## 1887 R Programming Logic
+## 1888 R Programming Subsetting Vectors
+## 1889 R Programming Subsetting Vectors
+## 1890 R Programming Subsetting Vectors
+## 1891 R Programming Logic
+## 1892 R Programming Subsetting Vectors
+## 1893 R Programming Basic Building Blocks
+## 1894 R Programming Subsetting Vectors
+## 1895 R Programming Basic Building Blocks
+## 1896 R Programming Logic
+## 1897 R Programming Subsetting Vectors
+## 1898 R Programming Matrices and Data Frames
+## 1899 R Programming Matrices and Data Frames
+## 1900 R Programming Matrices and Data Frames
+## 1901 R Programming Matrices and Data Frames
+## 1902 R Programming Matrices and Data Frames
+## 1903 R Programming Matrices and Data Frames
+## 1904 R Programming Matrices and Data Frames
+## 1905 R Programming Matrices and Data Frames
+## 1906 R Programming Matrices and Data Frames
+## 1907 R Programming Matrices and Data Frames
+## 1908 R Programming Matrices and Data Frames
+## 1909 R Programming Matrices and Data Frames
+## 1910 R Programming Matrices and Data Frames
+## 1911 R Programming Matrices and Data Frames
+## 1912 R Programming Matrices and Data Frames
+## 1913 R Programming Matrices and Data Frames
+## 1914 R Programming Matrices and Data Frames
+## 1915 R Programming Matrices and Data Frames
+## 1916 R Programming Matrices and Data Frames
+## 1917 R Programming Matrices and Data Frames
+## 1918 R Programming Matrices and Data Frames
+## 1919 R Programming Matrices and Data Frames
+## 1920 R Programming Matrices and Data Frames
+## 1921 R Programming Basic Building Blocks
+## 1922 R Programming Basic Building Blocks
+## 1923 R Programming Basic Building Blocks
+## 1924 R Programming Basic Building Blocks
+## 1925 R Programming Basic Building Blocks
+## 1926 R Programming Basic Building Blocks
+## 1927 R Programming Basic Building Blocks
+## 1928 R Programming Basic Building Blocks
+## 1929 R Programming Basic Building Blocks
+## 1930 R Programming Basic Building Blocks
+## 1931 R Programming Basic Building Blocks
+## 1932 R Programming Basic Building Blocks
+## 1933 R Programming Basic Building Blocks
+## 1934 R Programming Basic Building Blocks
+## 1935 R Programming Basic Building Blocks
+## 1936 R Programming Missing Values
+## 1937 R Programming Vectors
+## 1938 R Programming Basic Building Blocks
+## 1939 R Programming Basic Building Blocks
+## 1940 R Programming Basic Building Blocks
+## 1941 R Programming Logic
+## 1942 R Programming Vectors
+## 1943 R Programming Logic
+## 1944 R Programming Basic Building Blocks
+## 1945 R Programming Basic Building Blocks
+## 1946 R Programming Dates and Times
+## 1947 R Programming Vectors
+## 1948 R Programming Basic Building Blocks
+## 1949 R Programming Logic
+## 1950 R Programming Basic Building Blocks
+## 1951 R Programming Logic
+## 1952 R Programming Logic
+## 1953 R Programming Logic
+## 1954 R Programming Logic
+## 1955 R Programming Dates and Times
+## 1956 R Programming Logic
+## 1957 R Programming Dates and Times
+## 1958 R Programming Missing Values
+## 1959 R Programming Missing Values
+## 1960 R Programming Vectors
+## 1961 R Programming Basic Building Blocks
+## 1962 R Programming Basic Building Blocks
+## 1963 R Programming Vectors
+## 1964 R Programming Dates and Times
+## 1965 R Programming Vectors
+## 1966 R Programming Dates and Times
+## 1967 R Programming Dates and Times
+## 1968 R Programming Vectors
+## 1969 R Programming Vectors
+## 1970 R Programming Vectors
+## 1971 R Programming Vectors
+## 1972 R Programming Vectors
+## 1973 R Programming Logic
+## 1974 R Programming Logic
+## 1975 R Programming Vectors
+## 1976 R Programming Vectors
+## 1977 R Programming Subsetting Vectors
+## 1978 R Programming Dates and Times
+## 1979 R Programming Dates and Times
+## 1980 R Programming Dates and Times
+## 1981 R Programming Subsetting Vectors
+## 1982 R Programming Subsetting Vectors
+## 1983 R Programming Dates and Times
+## 1984 R Programming Logic
+## 1985 R Programming Logic
+## 1986 R Programming Vectors
+## 1987 R Programming Logic
+## 1988 R Programming Subsetting Vectors
+## 1989 R Programming Missing Values
+## 1990 R Programming Subsetting Vectors
+## 1991 R Programming Matrices and Data Frames
+## 1992 R Programming Logic
+## 1993 R Programming Missing Values
+## 1994 R Programming Dates and Times
+## 1995 R Programming Logic
+## 1996 R Programming Logic
+## 1997 R Programming Logic
+## 1998 R Programming Logic
+## 1999 R Programming Dates and Times
+## 2000 R Programming Logic
+## 2001 R Programming Logic
+## 2002 R Programming Logic
+## 2003 R Programming Vectors
+## 2004 R Programming Logic
+## 2005 R Programming Logic
+## 2006 R Programming Logic
+## 2007 R Programming Logic
+## 2008 R Programming Logic
+## 2009 R Programming Logic
+## 2010 R Programming Logic
+## 2011 R Programming Logic
+## 2012 R Programming Matrices and Data Frames
+## 2013 R Programming Matrices and Data Frames
+## 2014 R Programming Matrices and Data Frames
+## 2015 R Programming Subsetting Vectors
+## 2016 R Programming Subsetting Vectors
+## 2017 R Programming Missing Values
+## 2018 R Programming Basic Building Blocks
+## 2019 R Programming Subsetting Vectors
+## 2020 R Programming Subsetting Vectors
+## 2021 R Programming Vectors
+## 2022 R Programming Logic
+## 2023 R Programming Logic
+## 2024 R Programming Logic
+## 2025 R Programming Missing Values
+## 2026 R Programming Logic
+## 2027 R Programming Logic
+## 2028 R Programming Basic Building Blocks
+## 2029 R Programming Missing Values
+## 2030 R Programming Dates and Times
+## 2031 R Programming Logic
+## 2032 R Programming Missing Values
+## 2033 R Programming Missing Values
+## 2034 R Programming Missing Values
+## 2035 R Programming Matrices and Data Frames
+## 2036 R Programming Dates and Times
+## 2037 R Programming Basic Building Blocks
+## 2038 R Programming Basic Building Blocks
+## 2039 R Programming Basic Building Blocks
+## 2040 R Programming Subsetting Vectors
+## 2041 R Programming Subsetting Vectors
+## 2042 R Programming Subsetting Vectors
+## 2043 R Programming Vectors
+## 2044 R Programming Basic Building Blocks
+## 2045 R Programming Matrices and Data Frames
+## 2046 R Programming Dates and Times
+## 2047 R Programming Dates and Times
+## 2048 R Programming Dates and Times
+## 2049 R Programming Matrices and Data Frames
+## 2050 R Programming Matrices and Data Frames
+## 2051 R Programming Dates and Times
+## 2052 R Programming Vectors
+## 2053 R Programming Basic Building Blocks
+## 2054 R Programming Vectors
+## 2055 R Programming Missing Values
+## 2056 R Programming Missing Values
+## 2057 R Programming Missing Values
+## 2058 R Programming Dates and Times
+## 2059 R Programming Subsetting Vectors
+## 2060 R Programming Matrices and Data Frames
+## 2061 R Programming Basic Building Blocks
+## 2062 R Programming Subsetting Vectors
+## 2063 R Programming Matrices and Data Frames
+## 2064 R Programming Dates and Times
+## 2065 R Programming Dates and Times
+## 2066 R Programming Matrices and Data Frames
+## 2067 R Programming Dates and Times
+## 2068 R Programming Dates and Times
+## 2069 R Programming Dates and Times
+## 2070 R Programming Matrices and Data Frames
+## 2071 R Programming Subsetting Vectors
+## 2072 R Programming Subsetting Vectors
+## 2073 R Programming Subsetting Vectors
+## 2074 R Programming Matrices and Data Frames
+## 2075 R Programming Subsetting Vectors
+## 2076 R Programming Matrices and Data Frames
+## 2077 R Programming Dates and Times
+## 2078 R Programming Matrices and Data Frames
+## 2079 R Programming Dates and Times
+## 2080 R Programming Matrices and Data Frames
+## 2081 R Programming Subsetting Vectors
+## 2082 R Programming Matrices and Data Frames
+## 2083 R Programming Basic Building Blocks
+## 2084 R Programming Subsetting Vectors
+## 2085 R Programming Matrices and Data Frames
+## 2086 R Programming Matrices and Data Frames
+## 2087 R Programming Dates and Times
+## 2088 R Programming Dates and Times
+## 2089 R Programming Subsetting Vectors
+## 2090 R Programming Basic Building Blocks
+## 2091 R Programming Subsetting Vectors
+## 2092 R Programming Matrices and Data Frames
+## 2093 R Programming Basic Building Blocks
+## 2094 R Programming Matrices and Data Frames
+## 2095 R Programming Matrices and Data Frames
+## 2096 R Programming Subsetting Vectors
+## 2097 R Programming Subsetting Vectors
+## 2098 R Programming Matrices and Data Frames
+## 2099 R Programming Basic Building Blocks
+## 2100 R Programming Subsetting Vectors
+## 2101 R Programming Subsetting Vectors
+## 2102 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2103 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2104 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2105 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2106 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2107 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2108 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2109 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2110 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2111 Exploratory_Data_Analysis Base_Plotting_System
+## 2112 Exploratory_Data_Analysis Base_Plotting_System
+## 2113 Exploratory_Data_Analysis Clustering_Example
+## 2114 Exploratory_Data_Analysis Clustering_Example
+## 2115 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2116 Exploratory_Data_Analysis K_Means_Clustering
+## 2117 Getting and Cleaning Data Tidying Data with tidyr
+## 2118 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2119 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2120 Getting and Cleaning Data Manipulating Data with dplyr
+## 2121 Getting and Cleaning Data Manipulating Data with dplyr
+## 2122 Getting and Cleaning Data Manipulating Data with dplyr
+## 2123 Getting and Cleaning Data Manipulating Data with dplyr
+## 2124 Getting and Cleaning Data Manipulating Data with dplyr
+## 2125 Getting and Cleaning Data Manipulating Data with dplyr
+## 2126 Exploratory_Data_Analysis K_Means_Clustering
+## 2127 Exploratory_Data_Analysis K_Means_Clustering
+## 2128 Exploratory_Data_Analysis Base_Plotting_System
+## 2129 Exploratory_Data_Analysis Base_Plotting_System
+## 2130 R Programming Looking at Data
+## 2131 R Programming Looking at Data
+## 2132 R Programming Looking at Data
+## 2133 R Programming Looking at Data
+## 2134 Exploratory_Data_Analysis Base_Plotting_System
+## 2135 Exploratory_Data_Analysis Base_Plotting_System
+## 2136 R Programming Looking at Data
+## 2137 R Programming Looking at Data
+## 2138 R Programming Looking at Data
+## 2139 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2140 R Programming Looking at Data
+## 2141 Exploratory_Data_Analysis Clustering_Example
+## 2142 Exploratory_Data_Analysis Clustering_Example
+## 2143 Exploratory_Data_Analysis Clustering_Example
+## 2144 Exploratory_Data_Analysis Clustering_Example
+## 2145 Exploratory_Data_Analysis Clustering_Example
+## 2146 Exploratory_Data_Analysis Clustering_Example
+## 2147 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2148 Getting and Cleaning Data Tidying Data with tidyr
+## 2149 Getting and Cleaning Data Tidying Data with tidyr
+## 2150 R Programming Looking at Data
+## 2151 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2152 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2153 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2154 Getting and Cleaning Data Manipulating Data with dplyr
+## 2155 R Programming Looking at Data
+## 2156 R Programming Looking at Data
+## 2157 R Programming Looking at Data
+## 2158 R Programming Looking at Data
+## 2159 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2160 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2161 R Programming Looking at Data
+## 2162 Exploratory_Data_Analysis Clustering_Example
+## 2163 Exploratory_Data_Analysis Exploratory_Graphs
+## 2164 Exploratory_Data_Analysis Exploratory_Graphs
+## 2165 Exploratory_Data_Analysis Exploratory_Graphs
+## 2166 Exploratory_Data_Analysis Exploratory_Graphs
+## 2167 Exploratory_Data_Analysis Exploratory_Graphs
+## 2168 Exploratory_Data_Analysis Exploratory_Graphs
+## 2169 Exploratory_Data_Analysis Clustering_Example
+## 2170 Exploratory_Data_Analysis Clustering_Example
+## 2171 Getting and Cleaning Data Tidying Data with tidyr
+## 2172 R Programming Looking at Data
+## 2173 Exploratory_Data_Analysis K_Means_Clustering
+## 2174 Exploratory_Data_Analysis K_Means_Clustering
+## 2175 Getting and Cleaning Data Tidying Data with tidyr
+## 2176 Exploratory_Data_Analysis Base_Plotting_System
+## 2177 Exploratory_Data_Analysis Clustering_Example
+## 2178 Exploratory_Data_Analysis Exploratory_Graphs
+## 2179 Exploratory_Data_Analysis Exploratory_Graphs
+## 2180 Exploratory_Data_Analysis K_Means_Clustering
+## 2181 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2182 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2183 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2184 Exploratory_Data_Analysis Exploratory_Graphs
+## 2185 Exploratory_Data_Analysis Base_Plotting_System
+## 2186 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2187 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2188 Exploratory_Data_Analysis Exploratory_Graphs
+## 2189 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2190 Exploratory_Data_Analysis K_Means_Clustering
+## 2191 Exploratory_Data_Analysis K_Means_Clustering
+## 2192 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2193 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2194 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2195 Getting and Cleaning Data Tidying Data with tidyr
+## 2196 Exploratory_Data_Analysis Exploratory_Graphs
+## 2197 Exploratory_Data_Analysis Exploratory_Graphs
+## 2198 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2199 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2200 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2201 Getting and Cleaning Data Tidying Data with tidyr
+## 2202 Getting and Cleaning Data Tidying Data with tidyr
+## 2203 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2204 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2205 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2206 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2207 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2208 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2209 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2210 Getting and Cleaning Data Tidying Data with tidyr
+## 2211 Getting and Cleaning Data Manipulating Data with dplyr
+## 2212 Getting and Cleaning Data Manipulating Data with dplyr
+## 2213 Getting and Cleaning Data Manipulating Data with dplyr
+## 2214 Getting and Cleaning Data Manipulating Data with dplyr
+## 2215 R Programming Dates and Times
+## 2216 R Programming Dates and Times
+## 2217 R Programming Dates and Times
+## 2218 Getting and Cleaning Data Manipulating Data with dplyr
+## 2219 Getting and Cleaning Data Manipulating Data with dplyr
+## 2220 Getting and Cleaning Data Manipulating Data with dplyr
+## 2221 Getting and Cleaning Data Manipulating Data with dplyr
+## 2222 Getting and Cleaning Data Manipulating Data with dplyr
+## 2223 Getting and Cleaning Data Manipulating Data with dplyr
+## 2224 Getting and Cleaning Data Manipulating Data with dplyr
+## 2225 R Programming Dates and Times
+## 2226 R Programming Dates and Times
+## 2227 R Programming Dates and Times
+## 2228 R Programming Dates and Times
+## 2229 R Programming Dates and Times
+## 2230 R Programming Dates and Times
+## 2231 R Programming Dates and Times
+## 2232 R Programming Dates and Times
+## 2233 R Programming Dates and Times
+## 2234 R Programming Dates and Times
+## 2235 R Programming Basic Building Blocks
+## 2236 R Programming Basic Building Blocks
+## 2237 R Programming Basic Building Blocks
+## 2238 R Programming Basic Building Blocks
+## 2239 R Programming Basic Building Blocks
+## 2240 R Programming Basic Building Blocks
+## 2241 R Programming Basic Building Blocks
+## 2242 R Programming Basic Building Blocks
+## 2243 R Programming Basic Building Blocks
+## 2244 R Programming Basic Building Blocks
+## 2245 R Programming Basic Building Blocks
+## 2246 R Programming Basic Building Blocks
+## 2247 R Programming Basic Building Blocks
+## 2248 R Programming Basic Building Blocks
+## 2249 R Programming Basic Building Blocks
+## 2250 R Programming Basic Building Blocks
+## 2251 R Programming Basic Building Blocks
+## 2252 R Programming Basic Building Blocks
+## 2253 R Programming Basic Building Blocks
+## 2254 R Programming Basic Building Blocks
+## 2255 R Programming Basic Building Blocks
+## 2256 R Programming Basic Building Blocks
+## 2257 R Programming Basic Building Blocks
+## 2258 R Programming Basic Building Blocks
+## 2259 R Programming Basic Building Blocks
+## 2260 R Programming Basic Building Blocks
+## 2261 R Programming Basic Building Blocks
+## 2262 R Programming Basic Building Blocks
+## 2263 R Programming Basic Building Blocks
+## 2264 R Programming Basic Building Blocks
+## 2265 R Programming Basic Building Blocks
+## 2266 R Programming Basic Building Blocks
+## 2267 R Programming Basic Building Blocks
+## 2268 R Programming Basic Building Blocks
+## 2269 R Programming Basic Building Blocks
+## 2270 R Programming Basic Building Blocks
+## 2271 R Programming Basic Building Blocks
+## 2272 R Programming Basic Building Blocks
+## 2273 R Programming Basic Building Blocks
+## 2274 R Programming Basic Building Blocks
+## 2275 R Programming Basic Building Blocks
+## 2276 R Programming Basic Building Blocks
+## 2277 R Programming Basic Building Blocks
+## 2278 R Programming Basic Building Blocks
+## 2279 R Programming Matrices and Data Frames
+## 2280 R Programming Matrices and Data Frames
+## 2281 R Programming Matrices and Data Frames
+## 2282 R Programming Matrices and Data Frames
+## 2283 R Programming Matrices and Data Frames
+## 2284 R Programming Matrices and Data Frames
+## 2285 R Programming Matrices and Data Frames
+## 2286 R Programming Matrices and Data Frames
+## 2287 R Programming Matrices and Data Frames
+## 2288 R Programming Matrices and Data Frames
+## 2289 R Programming Matrices and Data Frames
+## 2290 R Programming Matrices and Data Frames
+## 2291 R Programming Matrices and Data Frames
+## 2292 R Programming Matrices and Data Frames
+## 2293 R Programming Matrices and Data Frames
+## 2294 R Programming Matrices and Data Frames
+## 2295 R Programming Matrices and Data Frames
+## 2296 R Programming Matrices and Data Frames
+## 2297 R Programming Matrices and Data Frames
+## 2298 R Programming Matrices and Data Frames
+## 2299 R Programming Matrices and Data Frames
+## 2300 R Programming Matrices and Data Frames
+## 2301 R Programming Matrices and Data Frames
+## 2302 R Programming Basic Building Blocks
+## 2303 R Programming Basic Building Blocks
+## 2304 R Programming Basic Building Blocks
+## 2305 R Programming Basic Building Blocks
+## 2306 R Programming Basic Building Blocks
+## 2307 R Programming Basic Building Blocks
+## 2308 R Programming Basic Building Blocks
+## 2309 R Programming Basic Building Blocks
+## 2310 R Programming Basic Building Blocks
+## 2311 R Programming Basic Building Blocks
+## 2312 R Programming Basic Building Blocks
+## 2313 R Programming Basic Building Blocks
+## 2314 R Programming Basic Building Blocks
+## 2315 R Programming Basic Building Blocks
+## 2316 R Programming Basic Building Blocks
+## 2317 R Programming Basic Building Blocks
+## 2318 R Programming Basic Building Blocks
+## 2319 R Programming Basic Building Blocks
+## 2320 R Programming Basic Building Blocks
+## 2321 R Programming Basic Building Blocks
+## 2322 R Programming Basic Building Blocks
+## 2323 R Programming Basic Building Blocks
+## 2324 R Programming Workspace and Files
+## 2325 R Programming Workspace and Files
+## 2326 R Programming Workspace and Files
+## 2327 R Programming Workspace and Files
+## 2328 R Programming Workspace and Files
+## 2329 R Programming Workspace and Files
+## 2330 R Programming Workspace and Files
+## 2331 R Programming Workspace and Files
+## 2332 R Programming Workspace and Files
+## 2333 R Programming Workspace and Files
+## 2334 R Programming Workspace and Files
+## 2335 R Programming Workspace and Files
+## 2336 R Programming Workspace and Files
+## 2337 R Programming Workspace and Files
+## 2338 R Programming Workspace and Files
+## 2339 R Programming Workspace and Files
+## 2340 R Programming Workspace and Files
+## 2341 R Programming Workspace and Files
+## 2342 R Programming Workspace and Files
+## 2343 R Programming Workspace and Files
+## 2344 R Programming Workspace and Files
+## 2345 R Programming Workspace and Files
+## 2346 R Programming Workspace and Files
+## 2347 R Programming Vectors
+## 2348 R Programming Vectors
+## 2349 R Programming Vectors
+## 2350 R Programming Vectors
+## 2351 R Programming Vectors
+## 2352 R Programming Vectors
+## 2353 R Programming Vectors
+## 2354 R Programming Vectors
+## 2355 R Programming Vectors
+## 2356 R Programming Vectors
+## 2357 R Programming Vectors
+## 2358 R Programming Vectors
+## 2359 R Programming Vectors
+## 2360 R Programming Vectors
+## 2361 R Programming Vectors
+## 2362 R Programming Vectors
+## 2363 R Programming Vectors
+## 2364 R Programming Vectors
+## 2365 R Programming Vectors
+## 2366 R Programming Matrices and Data Frames
+## 2367 R Programming Matrices and Data Frames
+## 2368 R Programming Matrices and Data Frames
+## 2369 R Programming Matrices and Data Frames
+## 2370 R Programming Matrices and Data Frames
+## 2371 R Programming Matrices and Data Frames
+## 2372 R Programming Dates and Times
+## 2373 R Programming Dates and Times
+## 2374 R Programming Dates and Times
+## 2375 R Programming Dates and Times
+## 2376 R Programming Dates and Times
+## 2377 R Programming Dates and Times
+## 2378 R Programming Dates and Times
+## 2379 R Programming Dates and Times
+## 2380 R Programming Dates and Times
+## 2381 R Programming Dates and Times
+## 2382 R Programming Dates and Times
+## 2383 R Programming Dates and Times
+## 2384 R Programming Dates and Times
+## 2385 R Programming Missing Values
+## 2386 R Programming Missing Values
+## 2387 R Programming Missing Values
+## 2388 R Programming Missing Values
+## 2389 R Programming Missing Values
+## 2390 R Programming Missing Values
+## 2391 R Programming Missing Values
+## 2392 R Programming Missing Values
+## 2393 R Programming Missing Values
+## 2394 R Programming Missing Values
+## 2395 R Programming Missing Values
+## 2396 R Programming Missing Values
+## 2397 R Programming Missing Values
+## 2398 R Programming Missing Values
+## 2399 R Programming Subsetting Vectors
+## 2400 R Programming Subsetting Vectors
+## 2401 R Programming Subsetting Vectors
+## 2402 R Programming Subsetting Vectors
+## 2403 R Programming Subsetting Vectors
+## 2404 R Programming Subsetting Vectors
+## 2405 R Programming Subsetting Vectors
+## 2406 R Programming Subsetting Vectors
+## 2407 R Programming Subsetting Vectors
+## 2408 R Programming Subsetting Vectors
+## 2409 R Programming Subsetting Vectors
+## 2410 R Programming Subsetting Vectors
+## 2411 R Programming Subsetting Vectors
+## 2412 R Programming Subsetting Vectors
+## 2413 R Programming Subsetting Vectors
+## 2414 R Programming Subsetting Vectors
+## 2415 R Programming Subsetting Vectors
+## 2416 R Programming Subsetting Vectors
+## 2417 R Programming Subsetting Vectors
+## 2418 R Programming Subsetting Vectors
+## 2419 R Programming Subsetting Vectors
+## 2420 R Programming Subsetting Vectors
+## 2421 R Programming Subsetting Vectors
+## 2422 R Programming Subsetting Vectors
+## 2423 R Programming Subsetting Vectors
+## 2424 R Programming Subsetting Vectors
+## 2425 R Programming Logic
+## 2426 R Programming Logic
+## 2427 R Programming Logic
+## 2428 R Programming Logic
+## 2429 R Programming Logic
+## 2430 R Programming Logic
+## 2431 R Programming Logic
+## 2432 R Programming Logic
+## 2433 R Programming Logic
+## 2434 R Programming Logic
+## 2435 R Programming Logic
+## 2436 R Programming Logic
+## 2437 R Programming Logic
+## 2438 R Programming Logic
+## 2439 R Programming Logic
+## 2440 R Programming Logic
+## 2441 R Programming Logic
+## 2442 R Programming Logic
+## 2443 R Programming Logic
+## 2444 R Programming Logic
+## 2445 R Programming Logic
+## 2446 R Programming Logic
+## 2447 R Programming Logic
+## 2448 R Programming Logic
+## 2449 R Programming Logic
+## 2450 R Programming Logic
+## 2451 R Programming Logic
+## 2452 R Programming Logic
+## 2453 R Programming Logic
+## 2454 R Programming Logic
+## 2455 R Programming Logic
+## 2456 R Programming Logic
+## 2457 R Programming Logic
+## 2458 R Programming Logic
+## 2459 R Programming Logic
+## 2460 R Programming Matrices and Data Frames
+## 2461 R Programming Matrices and Data Frames
+## 2462 R Programming Dates and Times
+## 2463 R Programming Dates and Times
+## 2464 R Programming Dates and Times
+## 2465 R Programming Dates and Times
+## 2466 R Programming Dates and Times
+## 2467 R Programming Dates and Times
+## 2468 R Programming Dates and Times
+## 2469 R Programming Dates and Times
+## 2470 R Programming Dates and Times
+## 2471 R Programming Dates and Times
+## 2472 R Programming Dates and Times
+## 2473 R Programming Dates and Times
+## 2474 R Programming Dates and Times
+## 2475 R Programming Dates and Times
+## 2476 R Programming Dates and Times
+## 2477 R Programming Matrices and Data Frames
+## 2478 R Programming Matrices and Data Frames
+## 2479 R Programming Matrices and Data Frames
+## 2480 R Programming Matrices and Data Frames
+## 2481 R Programming Matrices and Data Frames
+## 2482 R Programming Matrices and Data Frames
+## 2483 R Programming Matrices and Data Frames
+## 2484 R Programming Matrices and Data Frames
+## 2485 R Programming Matrices and Data Frames
+## 2486 R Programming Matrices and Data Frames
+## 2487 R Programming Matrices and Data Frames
+## 2488 R Programming Matrices and Data Frames
+## 2489 R Programming Matrices and Data Frames
+## 2490 R Programming Matrices and Data Frames
+## 2491 R Programming Matrices and Data Frames
+## 2492 R Programming Basic Building Blocks
+## 2493 R Programming Basic Building Blocks
+## 2494 R Programming Basic Building Blocks
+## 2495 R Programming Basic Building Blocks
+## 2496 R Programming Basic Building Blocks
+## 2497 R Programming Basic Building Blocks
+## 2498 R Programming Basic Building Blocks
+## 2499 R Programming Basic Building Blocks
+## 2500 R Programming Basic Building Blocks
+## 2501 R Programming Basic Building Blocks
+## 2502 R Programming Basic Building Blocks
+## 2503 R Programming Basic Building Blocks
+## 2504 R Programming Basic Building Blocks
+## 2505 R Programming Basic Building Blocks
+## 2506 R Programming Basic Building Blocks
+## 2507 R Programming Basic Building Blocks
+## 2508 R Programming Basic Building Blocks
+## 2509 R Programming Basic Building Blocks
+## 2510 R Programming Basic Building Blocks
+## 2511 R Programming Basic Building Blocks
+## 2512 R Programming Basic Building Blocks
+## 2513 R Programming Basic Building Blocks
+## 2514 R Programming Workspace and Files
+## 2515 R Programming Workspace and Files
+## 2516 R Programming Workspace and Files
+## 2517 R Programming Workspace and Files
+## 2518 R Programming Workspace and Files
+## 2519 R Programming Workspace and Files
+## 2520 R Programming Workspace and Files
+## 2521 R Programming Workspace and Files
+## 2522 R Programming Workspace and Files
+## 2523 R Programming Workspace and Files
+## 2524 R Programming Workspace and Files
+## 2525 R Programming Workspace and Files
+## 2526 R Programming Workspace and Files
+## 2527 R Programming Workspace and Files
+## 2528 R Programming Workspace and Files
+## 2529 R Programming Workspace and Files
+## 2530 R Programming Workspace and Files
+## 2531 R Programming Workspace and Files
+## 2532 R Programming Workspace and Files
+## 2533 R Programming Workspace and Files
+## 2534 R Programming Workspace and Files
+## 2535 R Programming Workspace and Files
+## 2536 R Programming Workspace and Files
+## 2537 R Programming Vectors
+## 2538 R Programming Vectors
+## 2539 R Programming Vectors
+## 2540 R Programming Vectors
+## 2541 R Programming Vectors
+## 2542 R Programming Vectors
+## 2543 R Programming Vectors
+## 2544 R Programming Vectors
+## 2545 R Programming Vectors
+## 2546 R Programming Vectors
+## 2547 R Programming Vectors
+## 2548 R Programming Vectors
+## 2549 R Programming Vectors
+## 2550 R Programming Vectors
+## 2551 R Programming Vectors
+## 2552 R Programming Vectors
+## 2553 R Programming Missing Values
+## 2554 R Programming Missing Values
+## 2555 R Programming Missing Values
+## 2556 R Programming Missing Values
+## 2557 R Programming Missing Values
+## 2558 R Programming Missing Values
+## 2559 R Programming Missing Values
+## 2560 R Programming Missing Values
+## 2561 R Programming Missing Values
+## 2562 R Programming Missing Values
+## 2563 R Programming Missing Values
+## 2564 R Programming Missing Values
+## 2565 R Programming Missing Values
+## 2566 R Programming Missing Values
+## 2567 R Programming Vectors
+## 2568 R Programming Vectors
+## 2569 R Programming Vectors
+## 2570 R Programming Basic Building Blocks
+## 2571 R Programming Basic Building Blocks
+## 2572 R Programming Basic Building Blocks
+## 2573 R Programming Basic Building Blocks
+## 2574 R Programming Basic Building Blocks
+## 2575 R Programming Basic Building Blocks
+## 2576 R Programming Basic Building Blocks
+## 2577 R Programming Basic Building Blocks
+## 2578 R Programming Logic
+## 2579 R Programming Logic
+## 2580 R Programming Logic
+## 2581 R Programming Logic
+## 2582 R Programming Logic
+## 2583 R Programming Logic
+## 2584 R Programming Logic
+## 2585 R Programming Logic
+## 2586 R Programming Logic
+## 2587 R Programming Logic
+## 2588 R Programming Basic Building Blocks
+## 2589 R Programming Dates and Times
+## 2590 R Programming Dates and Times
+## 2591 R Programming Dates and Times
+## 2592 R Programming Dates and Times
+## 2593 R Programming Dates and Times
+## 2594 R Programming Dates and Times
+## 2595 R Programming Dates and Times
+## 2596 R Programming Dates and Times
+## 2597 R Programming Basic Building Blocks
+## 2598 R Programming Basic Building Blocks
+## 2599 R Programming Logic
+## 2600 R Programming Dates and Times
+## 2601 R Programming Dates and Times
+## 2602 R Programming Dates and Times
+## 2603 R Programming Dates and Times
+## 2604 R Programming Dates and Times
+## 2605 R Programming Dates and Times
+## 2606 R Programming Dates and Times
+## 2607 R Programming Dates and Times
+## 2608 R Programming Basic Building Blocks
+## 2609 R Programming Basic Building Blocks
+## 2610 R Programming Functions
+## 2611 R Programming Functions
+## 2612 R Programming Functions
+## 2613 R Programming Functions
+## 2614 R Programming Functions
+## 2615 R Programming Functions
+## 2616 R Programming Functions
+## 2617 R Programming Functions
+## 2618 R Programming Functions
+## 2619 R Programming Functions
+## 2620 R Programming Functions
+## 2621 R Programming Dates and Times
+## 2622 R Programming Basic Building Blocks
+## 2623 R Programming Basic Building Blocks
+## 2624 R Programming Basic Building Blocks
+## 2625 R Programming Basic Building Blocks
+## 2626 R Programming Basic Building Blocks
+## 2627 R Programming Basic Building Blocks
+## 2628 R Programming Basic Building Blocks
+## 2629 R Programming Basic Building Blocks
+## 2630 R Programming Basic Building Blocks
+## 2631 R Programming Functions
+## 2632 R Programming Functions
+## 2633 R Programming Subsetting Vectors
+## 2634 R Programming Subsetting Vectors
+## 2635 R Programming Subsetting Vectors
+## 2636 R Programming Subsetting Vectors
+## 2637 R Programming Subsetting Vectors
+## 2638 R Programming Subsetting Vectors
+## 2639 R Programming Subsetting Vectors
+## 2640 R Programming Subsetting Vectors
+## 2641 R Programming Subsetting Vectors
+## 2642 R Programming Logic
+## 2643 R Programming Logic
+## 2644 R Programming Logic
+## 2645 R Programming Logic
+## 2646 R Programming Logic
+## 2647 R Programming Logic
+## 2648 R Programming Logic
+## 2649 R Programming Logic
+## 2650 R Programming Logic
+## 2651 R Programming Logic
+## 2652 R Programming Logic
+## 2653 R Programming Logic
+## 2654 R Programming Logic
+## 2655 R Programming Logic
+## 2656 R Programming Logic
+## 2657 R Programming Logic
+## 2658 R Programming Logic
+## 2659 R Programming Logic
+## 2660 R Programming Logic
+## 2661 R Programming Logic
+## 2662 R Programming Logic
+## 2663 R Programming Logic
+## 2664 R Programming Logic
+## 2665 R Programming Logic
+## 2666 R Programming Vectors
+## 2667 R Programming Vectors
+## 2668 R Programming Vectors
+## 2669 R Programming Vectors
+## 2670 R Programming Vectors
+## 2671 R Programming Vectors
+## 2672 R Programming Vectors
+## 2673 R Programming Vectors
+## 2674 R Programming Vectors
+## 2675 R Programming Vectors
+## 2676 R Programming Vectors
+## 2677 R Programming Vectors
+## 2678 R Programming Vectors
+## 2679 R Programming Vectors
+## 2680 R Programming Vectors
+## 2681 R Programming Vectors
+## 2682 R Programming Vectors
+## 2683 R Programming Vectors
+## 2684 R Programming Vectors
+## 2685 R Programming Dates and Times
+## 2686 R Programming Dates and Times
+## 2687 R Programming Dates and Times
+## 2688 R Programming Dates and Times
+## 2689 R Programming Dates and Times
+## 2690 R Programming Dates and Times
+## 2691 R Programming Dates and Times
+## 2692 R Programming Dates and Times
+## 2693 R Programming Dates and Times
+## 2694 R Programming Dates and Times
+## 2695 R Programming Dates and Times
+## 2696 R Programming Workspace and Files
+## 2697 R Programming Workspace and Files
+## 2698 R Programming Workspace and Files
+## 2699 R Programming Workspace and Files
+## 2700 R Programming Workspace and Files
+## 2701 R Programming Workspace and Files
+## 2702 R Programming Workspace and Files
+## 2703 R Programming Workspace and Files
+## 2704 R Programming Workspace and Files
+## 2705 R Programming Workspace and Files
+## 2706 R Programming Workspace and Files
+## 2707 R Programming Workspace and Files
+## 2708 R Programming Workspace and Files
+## 2709 R Programming Workspace and Files
+## 2710 R Programming Workspace and Files
+## 2711 R Programming Workspace and Files
+## 2712 R Programming Workspace and Files
+## 2713 R Programming Workspace and Files
+## 2714 R Programming Workspace and Files
+## 2715 R Programming Workspace and Files
+## 2716 R Programming Workspace and Files
+## 2717 R Programming Workspace and Files
+## 2718 R Programming Functions
+## 2719 R Programming Functions
+## 2720 R Programming Functions
+## 2721 R Programming Functions
+## 2722 R Programming Functions
+## 2723 R Programming Functions
+## 2724 R Programming Functions
+## 2725 R Programming Functions
+## 2726 R Programming Functions
+## 2727 R Programming Functions
+## 2728 R Programming Functions
+## 2729 R Programming Functions
+## 2730 R Programming Functions
+## 2731 R Programming Functions
+## 2732 R Programming Functions
+## 2733 R Programming Missing Values
+## 2734 R Programming Missing Values
+## 2735 R Programming Missing Values
+## 2736 R Programming Missing Values
+## 2737 R Programming Missing Values
+## 2738 R Programming Missing Values
+## 2739 R Programming Missing Values
+## 2740 R Programming Missing Values
+## 2741 R Programming Missing Values
+## 2742 R Programming Subsetting Vectors
+## 2743 R Programming Subsetting Vectors
+## 2744 R Programming Subsetting Vectors
+## 2745 R Programming Subsetting Vectors
+## 2746 R Programming Subsetting Vectors
+## 2747 R Programming Subsetting Vectors
+## 2748 R Programming Subsetting Vectors
+## 2749 R Programming Subsetting Vectors
+## 2750 R Programming Subsetting Vectors
+## 2751 R Programming Subsetting Vectors
+## 2752 R Programming Subsetting Vectors
+## 2753 R Programming Subsetting Vectors
+## 2754 R Programming Subsetting Vectors
+## 2755 R Programming Subsetting Vectors
+## 2756 R Programming Workspace and Files
+## 2757 R Programming Missing Values
+## 2758 R Programming Missing Values
+## 2759 R Programming Missing Values
+## 2760 R Programming Missing Values
+## 2761 R Programming Missing Values
+## 2762 R Programming Subsetting Vectors
+## 2763 R Programming Subsetting Vectors
+## 2764 R Programming Subsetting Vectors
+## 2765 R Programming Dates and Times
+## 2766 Getting and Cleaning Data Tidying Data with tidyr
+## 2767 R Programming Dates and Times
+## 2768 R Programming Dates and Times
+## 2769 R Programming Dates and Times
+## 2770 R Programming Dates and Times
+## 2771 Getting and Cleaning Data Tidying Data with tidyr
+## 2772 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2773 Getting and Cleaning Data Tidying Data with tidyr
+## 2774 Getting and Cleaning Data Tidying Data with tidyr
+## 2775 Getting and Cleaning Data Tidying Data with tidyr
+## 2776 R Programming Dates and Times
+## 2777 R Programming Basic Building Blocks
+## 2778 R Programming Dates and Times
+## 2779 R Programming Logic
+## 2780 R Programming Missing Values
+## 2781 R Programming Basic Building Blocks
+## 2782 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2783 R Programming Dates and Times
+## 2784 Getting and Cleaning Data Tidying Data with tidyr
+## 2785 R Programming Subsetting Vectors
+## 2786 R Programming Dates and Times
+## 2787 R Programming Workspace and Files
+## 2788 R Programming Dates and Times
+## 2789 R Programming Dates and Times
+## 2790 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2791 R Programming Dates and Times
+## 2792 R Programming Dates and Times
+## 2793 R Programming Vectors
+## 2794 R Programming Subsetting Vectors
+## 2795 Getting and Cleaning Data Tidying Data with tidyr
+## 2796 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2797 R Programming Logic
+## 2798 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2799 Getting and Cleaning Data Tidying Data with tidyr
+## 2800 R Programming Missing Values
+## 2801 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2802 R Programming Dates and Times
+## 2803 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2804 R Programming Dates and Times
+## 2805 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2806 R Programming Subsetting Vectors
+## 2807 Getting and Cleaning Data Manipulating Data with dplyr
+## 2808 R Programming Workspace and Files
+## 2809 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2810 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2811 R Programming Logic
+## 2812 R Programming Logic
+## 2813 R Programming Logic
+## 2814 R Programming Vectors
+## 2815 R Programming Vectors
+## 2816 R Programming Subsetting Vectors
+## 2817 Getting and Cleaning Data Manipulating Data with dplyr
+## 2818 R Programming Logic
+## 2819 R Programming Vectors
+## 2820 R Programming Workspace and Files
+## 2821 R Programming Looking at Data
+## 2822 R Programming Basic Building Blocks
+## 2823 R Programming Matrices and Data Frames
+## 2824 Getting and Cleaning Data Tidying Data with tidyr
+## 2825 R Programming Missing Values
+## 2826 R Programming Missing Values
+## 2827 R Programming Basic Building Blocks
+## 2828 R Programming Logic
+## 2829 R Programming Subsetting Vectors
+## 2830 R Programming Workspace and Files
+## 2831 R Programming Workspace and Files
+## 2832 R Programming Looking at Data
+## 2833 R Programming Vectors
+## 2834 R Programming Vectors
+## 2835 R Programming Vectors
+## 2836 R Programming Vectors
+## 2837 R Programming Dates and Times
+## 2838 R Programming Vectors
+## 2839 R Programming Subsetting Vectors
+## 2840 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2841 R Programming Subsetting Vectors
+## 2842 R Programming Vectors
+## 2843 Getting and Cleaning Data Manipulating Data with dplyr
+## 2844 Getting and Cleaning Data Manipulating Data with dplyr
+## 2845 R Programming Vectors
+## 2846 R Programming Vectors
+## 2847 R Programming Vectors
+## 2848 R Programming Vectors
+## 2849 R Programming Vectors
+## 2850 R Programming Logic
+## 2851 R Programming Workspace and Files
+## 2852 R Programming Logic
+## 2853 R Programming Subsetting Vectors
+## 2854 R Programming Vectors
+## 2855 R Programming Logic
+## 2856 R Programming Workspace and Files
+## 2857 R Programming Workspace and Files
+## 2858 R Programming Missing Values
+## 2859 R Programming Missing Values
+## 2860 R Programming Missing Values
+## 2861 R Programming Looking at Data
+## 2862 R Programming Basic Building Blocks
+## 2863 R Programming Missing Values
+## 2864 R Programming Matrices and Data Frames
+## 2865 R Programming Matrices and Data Frames
+## 2866 R Programming Subsetting Vectors
+## 2867 R Programming Basic Building Blocks
+## 2868 R Programming Basic Building Blocks
+## 2869 R Programming Basic Building Blocks
+## 2870 R Programming Looking at Data
+## 2871 R Programming Logic
+## 2872 R Programming Logic
+## 2873 R Programming Subsetting Vectors
+## 2874 R Programming Subsetting Vectors
+## 2875 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2876 R Programming Subsetting Vectors
+## 2877 R Programming Workspace and Files
+## 2878 R Programming Workspace and Files
+## 2879 R Programming Subsetting Vectors
+## 2880 R Programming Subsetting Vectors
+## 2881 R Programming Vectors
+## 2882 R Programming Vectors
+## 2883 R Programming Logic
+## 2884 R Programming Missing Values
+## 2885 R Programming Looking at Data
+## 2886 R Programming Logic
+## 2887 R Programming Logic
+## 2888 R Programming Workspace and Files
+## 2889 R Programming Missing Values
+## 2890 R Programming Basic Building Blocks
+## 2891 R Programming Logic
+## 2892 R Programming Logic
+## 2893 R Programming Logic
+## 2894 R Programming Workspace and Files
+## 2895 R Programming Looking at Data
+## 2896 R Programming Looking at Data
+## 2897 R Programming Looking at Data
+## 2898 R Programming Matrices and Data Frames
+## 2899 R Programming Matrices and Data Frames
+## 2900 R Programming Basic Building Blocks
+## 2901 R Programming Looking at Data
+## 2902 R Programming Workspace and Files
+## 2903 R Programming Matrices and Data Frames
+## 2904 R Programming Basic Building Blocks
+## 2905 R Programming Basic Building Blocks
+## 2906 Getting and Cleaning Data Manipulating Data with dplyr
+## 2907 Getting and Cleaning Data Manipulating Data with dplyr
+## 2908 Getting and Cleaning Data Manipulating Data with dplyr
+## 2909 R Programming Looking at Data
+## 2910 R Programming Matrices and Data Frames
+## 2911 R Programming Matrices and Data Frames
+## 2912 R Programming Matrices and Data Frames
+## 2913 R Programming Subsetting Vectors
+## 2914 R Programming Basic Building Blocks
+## 2915 R Programming Subsetting Vectors
+## 2916 R Programming Missing Values
+## 2917 R Programming Workspace and Files
+## 2918 R Programming Workspace and Files
+## 2919 R Programming Looking at Data
+## 2920 R Programming Missing Values
+## 2921 R Programming Looking at Data
+## 2922 R Programming Matrices and Data Frames
+## 2923 R Programming Matrices and Data Frames
+## 2924 R Programming Basic Building Blocks
+## 2925 R Programming Matrices and Data Frames
+## 2926 Getting and Cleaning Data Manipulating Data with dplyr
+## 2927 R Programming Workspace and Files
+## 2928 R Programming Missing Values
+## 2929 R Programming Basic Building Blocks
+## 2930 R Programming Looking at Data
+## 2931 Getting and Cleaning Data Manipulating Data with dplyr
+## 2932 Getting and Cleaning Data Manipulating Data with dplyr
+## 2933 R Programming Looking at Data
+## 2934 R Programming Matrices and Data Frames
+## 2935 R Programming Looking at Data
+## 2936 R Programming Basic Building Blocks
+## 2937 Getting and Cleaning Data Manipulating Data with dplyr
+## 2938 R Programming Missing Values
+## 2939 Getting and Cleaning Data Manipulating Data with dplyr
+## 2940 Getting and Cleaning Data Manipulating Data with dplyr
+## 2941 R Programming Functions
+## 2942 R Programming Functions
+## 2943 R Programming Functions
+## 2944 R Programming Functions
+## 2945 R Programming Functions
+## 2946 R Programming Functions
+## 2947 R Programming Functions
+## 2948 R Programming Functions
+## 2949 R Programming Functions
+## 2950 R Programming Functions
+## 2951 R Programming Functions
+## 2952 R Programming Functions
+## 2953 R Programming Functions
+## 2954 R Programming Functions
+## 2955 R Programming Functions
+## 2956 R Programming Functions
+## 2957 R Programming Functions
+## 2958 R Programming Vectors
+## 2959 R Programming Vectors
+## 2960 R Programming Vectors
+## 2961 R Programming Vectors
+## 2962 R Programming Missing Values
+## 2963 R Programming Missing Values
+## 2964 R Programming Missing Values
+## 2965 R Programming Missing Values
+## 2966 R Programming Missing Values
+## 2967 R Programming Vectors
+## 2968 R Programming Vectors
+## 2969 R Programming Vectors
+## 2970 R Programming Vectors
+## 2971 R Programming Vectors
+## 2972 R Programming Missing Values
+## 2973 R Programming Missing Values
+## 2974 R Programming Vectors
+## 2975 R Programming Vectors
+## 2976 R Programming Vectors
+## 2977 R Programming Vectors
+## 2978 R Programming Missing Values
+## 2979 R Programming Missing Values
+## 2980 R Programming Missing Values
+## 2981 R Programming Missing Values
+## 2982 R Programming Missing Values
+## 2983 R Programming Missing Values
+## 2984 R Programming Subsetting Vectors
+## 2985 R Programming Subsetting Vectors
+## 2986 R Programming Subsetting Vectors
+## 2987 R Programming Subsetting Vectors
+## 2988 R Programming Subsetting Vectors
+## 2989 R Programming Subsetting Vectors
+## 2990 R Programming Logic
+## 2991 R Programming Logic
+## 2992 R Programming Logic
+## 2993 R Programming Logic
+## 2994 R Programming Logic
+## 2995 R Programming Logic
+## 2996 R Programming Logic
+## 2997 R Programming Logic
+## 2998 R Programming Logic
+## 2999 R Programming Missing Values
+## 3000 R Programming Subsetting Vectors
+## 3001 R Programming Subsetting Vectors
+## 3002 R Programming Subsetting Vectors
+## 3003 R Programming Subsetting Vectors
+## 3004 R Programming Subsetting Vectors
+## 3005 R Programming Subsetting Vectors
+## 3006 R Programming Subsetting Vectors
+## 3007 R Programming Subsetting Vectors
+## 3008 R Programming Subsetting Vectors
+## 3009 R Programming Subsetting Vectors
+## 3010 R Programming Subsetting Vectors
+## 3011 R Programming Subsetting Vectors
+## 3012 R Programming Subsetting Vectors
+## 3013 R Programming Subsetting Vectors
+## 3014 R Programming Subsetting Vectors
+## 3015 R Programming Subsetting Vectors
+## 3016 R Programming Subsetting Vectors
+## 3017 R Programming Subsetting Vectors
+## 3018 R Programming Subsetting Vectors
+## 3019 R Programming Subsetting Vectors
+## 3020 R Programming Logic
+## 3021 R Programming Logic
+## 3022 R Programming Dates and Times
+## 3023 R Programming Dates and Times
+## 3024 R Programming Dates and Times
+## 3025 R Programming Dates and Times
+## 3026 R Programming Dates and Times
+## 3027 R Programming Dates and Times
+## 3028 R Programming Dates and Times
+## 3029 R Programming Dates and Times
+## 3030 R Programming Dates and Times
+## 3031 R Programming Dates and Times
+## 3032 R Programming Dates and Times
+## 3033 R Programming Dates and Times
+## 3034 R Programming Dates and Times
+## 3035 R Programming Dates and Times
+## 3036 R Programming Dates and Times
+## 3037 R Programming Dates and Times
+## 3038 R Programming Dates and Times
+## 3039 R Programming Dates and Times
+## 3040 R Programming Dates and Times
+## 3041 R Programming Dates and Times
+## 3042 R Programming Dates and Times
+## 3043 R Programming Dates and Times
+## 3044 R Programming Dates and Times
+## 3045 R Programming Dates and Times
+## 3046 R Programming Dates and Times
+## 3047 R Programming Dates and Times
+## 3048 R Programming Dates and Times
+## 3049 R Programming Dates and Times
+## 3050 R Programming Functions
+## 3051 R Programming Functions
+## 3052 R Programming Functions
+## 3053 R Programming Functions
+## 3054 R Programming Functions
+## 3055 R Programming Functions
+## 3056 R Programming Functions
+## 3057 R Programming Functions
+## 3058 R Programming Functions
+## 3059 R Programming Functions
+## 3060 R Programming Functions
+## 3061 R Programming Functions
+## 3062 R Programming Functions
+## 3063 R Programming Functions
+## 3064 R Programming Functions
+## 3065 R Programming Functions
+## 3066 R Programming Functions
+## 3067 R Programming Functions
+## 3068 R Programming Functions
+## 3069 R Programming Functions
+## 3070 R Programming Functions
+## 3071 R Programming Functions
+## 3072 R Programming Functions
+## 3073 R Programming Functions
+## 3074 R Programming Functions
+## 3075 R Programming Functions
+## 3076 R Programming Functions
+## 3077 R Programming Functions
+## 3078 R Programming Matrices and Data Frames
+## 3079 R Programming Matrices and Data Frames
+## 3080 R Programming Matrices and Data Frames
+## 3081 R Programming Matrices and Data Frames
+## 3082 R Programming Matrices and Data Frames
+## 3083 R Programming Matrices and Data Frames
+## 3084 R Programming Matrices and Data Frames
+## 3085 R Programming Matrices and Data Frames
+## 3086 R Programming Matrices and Data Frames
+## 3087 R Programming Matrices and Data Frames
+## 3088 R Programming Matrices and Data Frames
+## 3089 R Programming Matrices and Data Frames
+## 3090 R Programming Matrices and Data Frames
+## 3091 R Programming Matrices and Data Frames
+## 3092 R Programming Matrices and Data Frames
+## 3093 R Programming Matrices and Data Frames
+## 3094 R Programming Matrices and Data Frames
+## 3095 R Programming Matrices and Data Frames
+## 3096 R Programming Matrices and Data Frames
+## 3097 R Programming Matrices and Data Frames
+## 3098 R Programming Matrices and Data Frames
+## 3099 R Programming Matrices and Data Frames
+## 3100 R Programming Matrices and Data Frames
+## 3101 R Programming Logic
+## 3102 R Programming Logic
+## 3103 R Programming Logic
+## 3104 R Programming Logic
+## 3105 R Programming Logic
+## 3106 R Programming Logic
+## 3107 R Programming Logic
+## 3108 R Programming Logic
+## 3109 R Programming Logic
+## 3110 R Programming Logic
+## 3111 R Programming Logic
+## 3112 R Programming Logic
+## 3113 R Programming Logic
+## 3114 R Programming Logic
+## 3115 R Programming Logic
+## 3116 R Programming Logic
+## 3117 R Programming Logic
+## 3118 R Programming Logic
+## 3119 R Programming Logic
+## 3120 R Programming Logic
+## 3121 R Programming Logic
+## 3122 R Programming Logic
+## 3123 R Programming Logic
+## 3124 R Programming Logic
+## 3125 R Programming Vectors
+## 3126 R Programming Vectors
+## 3127 R Programming Vectors
+## 3128 R Programming Vectors
+## 3129 R Programming Vectors
+## 3130 R Programming Vectors
+## 3131 Exploratory_Data_Analysis Plotting_Systems
+## 3132 Exploratory_Data_Analysis Plotting_Systems
+## 3133 Exploratory_Data_Analysis Plotting_Systems
+## 3134 Exploratory_Data_Analysis Plotting_Systems
+## 3135 Exploratory_Data_Analysis Plotting_Systems
+## 3136 Exploratory_Data_Analysis Plotting_Systems
+## 3137 Exploratory_Data_Analysis Plotting_Systems
+## 3138 Exploratory_Data_Analysis Plotting_Systems
+## 3139 Exploratory_Data_Analysis Plotting_Systems
+## 3140 Exploratory_Data_Analysis Plotting_Systems
+## 3141 Exploratory_Data_Analysis Plotting_Systems
+## 3142 Exploratory_Data_Analysis Plotting_Systems
+## 3143 Exploratory_Data_Analysis Plotting_Systems
+## 3144 Exploratory_Data_Analysis Plotting_Systems
+## 3145 Exploratory_Data_Analysis Plotting_Systems
+## 3146 Exploratory_Data_Analysis Plotting_Systems
+## 3147 Exploratory_Data_Analysis Plotting_Systems
+## 3148 Exploratory_Data_Analysis Plotting_Systems
+## 3149 Exploratory_Data_Analysis Plotting_Systems
+## 3150 Exploratory_Data_Analysis Plotting_Systems
+## 3151 Exploratory_Data_Analysis Plotting_Systems
+## 3152 Getting and Cleaning Data Manipulating Data with dplyr
+## 3153 Getting and Cleaning Data Manipulating Data with dplyr
+## 3154 Getting and Cleaning Data Manipulating Data with dplyr
+## 3155 Getting and Cleaning Data Manipulating Data with dplyr
+## 3156 Getting and Cleaning Data Manipulating Data with dplyr
+## 3157 Getting and Cleaning Data Manipulating Data with dplyr
+## 3158 Getting and Cleaning Data Manipulating Data with dplyr
+## 3159 Getting and Cleaning Data Manipulating Data with dplyr
+## 3160 Getting and Cleaning Data Manipulating Data with dplyr
+## 3161 Getting and Cleaning Data Manipulating Data with dplyr
+## 3162 Getting and Cleaning Data Manipulating Data with dplyr
+## 3163 Getting and Cleaning Data Manipulating Data with dplyr
+## 3164 Getting and Cleaning Data Manipulating Data with dplyr
+## 3165 Getting and Cleaning Data Manipulating Data with dplyr
+## 3166 Getting and Cleaning Data Manipulating Data with dplyr
+## 3167 Getting and Cleaning Data Manipulating Data with dplyr
+## 3168 Getting and Cleaning Data Manipulating Data with dplyr
+## 3169 Getting and Cleaning Data Manipulating Data with dplyr
+## 3170 Getting and Cleaning Data Manipulating Data with dplyr
+## 3171 Getting and Cleaning Data Manipulating Data with dplyr
+## 3172 Getting and Cleaning Data Manipulating Data with dplyr
+## 3173 Getting and Cleaning Data Manipulating Data with dplyr
+## 3174 Getting and Cleaning Data Manipulating Data with dplyr
+## 3175 Getting and Cleaning Data Manipulating Data with dplyr
+## 3176 Getting and Cleaning Data Manipulating Data with dplyr
+## 3177 Getting and Cleaning Data Manipulating Data with dplyr
+## 3178 Getting and Cleaning Data Manipulating Data with dplyr
+## 3179 Getting and Cleaning Data Manipulating Data with dplyr
+## 3180 Getting and Cleaning Data Manipulating Data with dplyr
+## 3181 Getting and Cleaning Data Manipulating Data with dplyr
+## 3182 Getting and Cleaning Data Manipulating Data with dplyr
+## 3183 Getting and Cleaning Data Manipulating Data with dplyr
+## 3184 Getting and Cleaning Data Manipulating Data with dplyr
+## 3185 Getting and Cleaning Data Manipulating Data with dplyr
+## 3186 Getting and Cleaning Data Manipulating Data with dplyr
+## 3187 Getting and Cleaning Data Manipulating Data with dplyr
+## 3188 Getting and Cleaning Data Manipulating Data with dplyr
+## 3189 Getting and Cleaning Data Manipulating Data with dplyr
+## 3190 Getting and Cleaning Data Manipulating Data with dplyr
+## 3191 Getting and Cleaning Data Manipulating Data with dplyr
+## 3192 Exploratory_Data_Analysis Base_Plotting_System
+## 3193 Exploratory_Data_Analysis Base_Plotting_System
+## 3194 Exploratory_Data_Analysis Base_Plotting_System
+## 3195 Exploratory_Data_Analysis Base_Plotting_System
+## 3196 Exploratory_Data_Analysis Base_Plotting_System
+## 3197 Exploratory_Data_Analysis Base_Plotting_System
+## 3198 Exploratory_Data_Analysis Base_Plotting_System
+## 3199 Exploratory_Data_Analysis Base_Plotting_System
+## 3200 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3201 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3202 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3203 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3204 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3205 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3206 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3207 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3208 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3209 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3210 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3211 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3212 R Programming Looking at Data
+## 3213 R Programming Looking at Data
+## 3214 R Programming Looking at Data
+## 3215 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3216 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3217 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3218 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3219 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3220 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3221 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3222 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3223 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3224 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3225 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3226 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3227 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3228 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3229 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3230 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3231 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3232 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3233 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3234 Exploratory_Data_Analysis Base_Plotting_System
+## 3235 Exploratory_Data_Analysis Base_Plotting_System
+## 3236 Exploratory_Data_Analysis Base_Plotting_System
+## 3237 Exploratory_Data_Analysis Base_Plotting_System
+## 3238 Exploratory_Data_Analysis Base_Plotting_System
+## 3239 Exploratory_Data_Analysis Base_Plotting_System
+## 3240 Exploratory_Data_Analysis Base_Plotting_System
+## 3241 Exploratory_Data_Analysis Base_Plotting_System
+## 3242 Exploratory_Data_Analysis Base_Plotting_System
+## 3243 Exploratory_Data_Analysis Base_Plotting_System
+## 3244 Exploratory_Data_Analysis Base_Plotting_System
+## 3245 Exploratory_Data_Analysis Base_Plotting_System
+## 3246 Exploratory_Data_Analysis Base_Plotting_System
+## 3247 Exploratory_Data_Analysis Base_Plotting_System
+## 3248 Exploratory_Data_Analysis Base_Plotting_System
+## 3249 Exploratory_Data_Analysis Base_Plotting_System
+## 3250 R Programming Looking at Data
+## 3251 R Programming Looking at Data
+## 3252 R Programming Looking at Data
+## 3253 R Programming Looking at Data
+## 3254 R Programming Looking at Data
+## 3255 R Programming Looking at Data
+## 3256 R Programming Looking at Data
+## 3257 R Programming Looking at Data
+## 3258 R Programming Looking at Data
+## 3259 R Programming Looking at Data
+## 3260 R Programming Looking at Data
+## 3261 R Programming Looking at Data
+## 3262 Exploratory_Data_Analysis Base_Plotting_System
+## 3263 Exploratory_Data_Analysis Base_Plotting_System
+## 3264 Exploratory_Data_Analysis Base_Plotting_System
+## 3265 Exploratory_Data_Analysis Base_Plotting_System
+## 3266 Exploratory_Data_Analysis Base_Plotting_System
+## 3267 Exploratory_Data_Analysis Base_Plotting_System
+## 3268 Exploratory_Data_Analysis Base_Plotting_System
+## 3269 Exploratory_Data_Analysis Clustering_Example
+## 3270 Exploratory_Data_Analysis Clustering_Example
+## 3271 Exploratory_Data_Analysis Clustering_Example
+## 3272 Exploratory_Data_Analysis Clustering_Example
+## 3273 Exploratory_Data_Analysis Clustering_Example
+## 3274 Exploratory_Data_Analysis Clustering_Example
+## 3275 Exploratory_Data_Analysis Clustering_Example
+## 3276 Exploratory_Data_Analysis Clustering_Example
+## 3277 Exploratory_Data_Analysis Clustering_Example
+## 3278 Exploratory_Data_Analysis Clustering_Example
+## 3279 Exploratory_Data_Analysis Clustering_Example
+## 3280 Exploratory_Data_Analysis Clustering_Example
+## 3281 Exploratory_Data_Analysis Clustering_Example
+## 3282 Exploratory_Data_Analysis Clustering_Example
+## 3283 Exploratory_Data_Analysis Clustering_Example
+## 3284 Exploratory_Data_Analysis Clustering_Example
+## 3285 Exploratory_Data_Analysis Clustering_Example
+## 3286 Exploratory_Data_Analysis Clustering_Example
+## 3287 Exploratory_Data_Analysis Base_Plotting_System
+## 3288 Exploratory_Data_Analysis Base_Plotting_System
+## 3289 Exploratory_Data_Analysis Base_Plotting_System
+## 3290 Exploratory_Data_Analysis Base_Plotting_System
+## 3291 Exploratory_Data_Analysis Base_Plotting_System
+## 3292 Exploratory_Data_Analysis Base_Plotting_System
+## 3293 Exploratory_Data_Analysis Base_Plotting_System
+## 3294 Exploratory_Data_Analysis Base_Plotting_System
+## 3295 Exploratory_Data_Analysis Base_Plotting_System
+## 3296 Exploratory_Data_Analysis Base_Plotting_System
+## 3297 Exploratory_Data_Analysis Clustering_Example
+## 3298 Exploratory_Data_Analysis Clustering_Example
+## 3299 Exploratory_Data_Analysis Clustering_Example
+## 3300 Exploratory_Data_Analysis Clustering_Example
+## 3301 Exploratory_Data_Analysis Clustering_Example
+## 3302 Exploratory_Data_Analysis Clustering_Example
+## 3303 Exploratory_Data_Analysis Clustering_Example
+## 3304 Exploratory_Data_Analysis Clustering_Example
+## 3305 Exploratory_Data_Analysis Clustering_Example
+## 3306 Exploratory_Data_Analysis Clustering_Example
+## 3307 Exploratory_Data_Analysis Clustering_Example
+## 3308 Exploratory_Data_Analysis Clustering_Example
+## 3309 Exploratory_Data_Analysis Clustering_Example
+## 3310 Exploratory_Data_Analysis Clustering_Example
+## 3311 Exploratory_Data_Analysis Clustering_Example
+## 3312 Exploratory_Data_Analysis Clustering_Example
+## 3313 Exploratory_Data_Analysis Clustering_Example
+## 3314 Exploratory_Data_Analysis Clustering_Example
+## 3315 Exploratory_Data_Analysis Clustering_Example
+## 3316 Exploratory_Data_Analysis Clustering_Example
+## 3317 Exploratory_Data_Analysis Clustering_Example
+## 3318 Exploratory_Data_Analysis Clustering_Example
+## 3319 R Programming Basic Building Blocks
+## 3320 R Programming Basic Building Blocks
+## 3321 R Programming Logic
+## 3322 R Programming Functions
+## 3323 R Programming Dates and Times
+## 3324 R Programming Basic Building Blocks
+## 3325 R Programming Functions
+## 3326 R Programming Logic
+## 3327 R Programming Basic Building Blocks
+## 3328 R Programming Functions
+## 3329 R Programming Basic Building Blocks
+## 3330 R Programming Basic Building Blocks
+## 3331 R Programming Logic
+## 3332 R Programming Subsetting Vectors
+## 3333 R Programming Basic Building Blocks
+## 3334 R Programming Dates and Times
+## 3335 R Programming Subsetting Vectors
+## 3336 R Programming Workspace and Files
+## 3337 R Programming Workspace and Files
+## 3338 R Programming Subsetting Vectors
+## 3339 R Programming Dates and Times
+## 3340 R Programming Workspace and Files
+## 3341 R Programming Subsetting Vectors
+## 3342 R Programming Functions
+## 3343 R Programming Workspace and Files
+## 3344 R Programming Workspace and Files
+## 3345 R Programming Vectors
+## 3346 R Programming Functions
+## 3347 R Programming Subsetting Vectors
+## 3348 R Programming Dates and Times
+## 3349 R Programming Dates and Times
+## 3350 R Programming Vectors
+## 3351 R Programming Dates and Times
+## 3352 R Programming Dates and Times
+## 3353 R Programming Basic Building Blocks
+## 3354 R Programming Subsetting Vectors
+## 3355 R Programming Subsetting Vectors
+## 3356 R Programming Workspace and Files
+## 3357 R Programming Logic
+## 3358 R Programming Logic
+## 3359 R Programming Logic
+## 3360 R Programming Workspace and Files
+## 3361 R Programming Workspace and Files
+## 3362 R Programming Dates and Times
+## 3363 R Programming Subsetting Vectors
+## 3364 R Programming Subsetting Vectors
+## 3365 R Programming Subsetting Vectors
+## 3366 R Programming Functions
+## 3367 R Programming Vectors
+## 3368 R Programming Logic
+## 3369 R Programming Logic
+## 3370 R Programming Logic
+## 3371 R Programming Functions
+## 3372 R Programming Dates and Times
+## 3373 R Programming Dates and Times
+## 3374 R Programming Dates and Times
+## 3375 R Programming Basic Building Blocks
+## 3376 R Programming Functions
+## 3377 R Programming Functions
+## 3378 R Programming Vectors
+## 3379 R Programming Vectors
+## 3380 R Programming Vectors
+## 3381 R Programming Subsetting Vectors
+## 3382 R Programming Subsetting Vectors
+## 3383 R Programming Subsetting Vectors
+## 3384 R Programming Workspace and Files
+## 3385 R Programming Workspace and Files
+## 3386 R Programming Workspace and Files
+## 3387 R Programming Workspace and Files
+## 3388 R Programming Logic
+## 3389 R Programming Dates and Times
+## 3390 R Programming Logic
+## 3391 R Programming Workspace and Files
+## 3392 R Programming Functions
+## 3393 R Programming Dates and Times
+## 3394 R Programming Dates and Times
+## 3395 R Programming Dates and Times
+## 3396 R Programming Logic
+## 3397 R Programming Logic
+## 3398 R Programming Logic
+## 3399 R Programming Logic
+## 3400 R Programming Logic
+## 3401 R Programming Logic
+## 3402 R Programming Logic
+## 3403 R Programming Functions
+## 3404 R Programming Functions
+## 3405 R Programming Vectors
+## 3406 R Programming Vectors
+## 3407 R Programming Vectors
+## 3408 R Programming Workspace and Files
+## 3409 R Programming Workspace and Files
+## 3410 R Programming Workspace and Files
+## 3411 R Programming Workspace and Files
+## 3412 R Programming Logic
+## 3413 R Programming Dates and Times
+## 3414 R Programming Vectors
+## 3415 R Programming Workspace and Files
+## 3416 R Programming Workspace and Files
+## 3417 R Programming Workspace and Files
+## 3418 R Programming Workspace and Files
+## 3419 R Programming Logic
+## 3420 R Programming Functions
+## 3421 R Programming Functions
+## 3422 R Programming Logic
+## 3423 R Programming Logic
+## 3424 R Programming Vectors
+## 3425 R Programming Vectors
+## 3426 R Programming Functions
+## 3427 R Programming Basic Building Blocks
+## 3428 R Programming Basic Building Blocks
+## 3429 R Programming Basic Building Blocks
+## 3430 R Programming Basic Building Blocks
+## 3431 R Programming Vectors
+## 3432 R Programming Vectors
+## 3433 R Programming Vectors
+## 3434 R Programming Vectors
+## 3435 R Programming Vectors
+## 3436 R Programming Vectors
+## 3437 R Programming Vectors
+## 3438 R Programming Basic Building Blocks
+## 3439 R Programming Missing Values
+## 3440 R Programming Missing Values
+## 3441 R Programming Functions
+## 3442 R Programming Logic
+## 3443 R Programming Functions
+## 3444 R Programming Functions
+## 3445 R Programming Missing Values
+## 3446 R Programming Missing Values
+## 3447 R Programming Missing Values
+## 3448 R Programming Dates and Times
+## 3449 R Programming Logic
+## 3450 R Programming Basic Building Blocks
+## 3451 R Programming Workspace and Files
+## 3452 R Programming Subsetting Vectors
+## 3453 R Programming Subsetting Vectors
+## 3454 R Programming Logic
+## 3455 R Programming Functions
+## 3456 R Programming Logic
+## 3457 R Programming Logic
+## 3458 R Programming Logic
+## 3459 R Programming Dates and Times
+## 3460 R Programming Basic Building Blocks
+## 3461 R Programming Functions
+## 3462 R Programming Logic
+## 3463 R Programming Dates and Times
+## 3464 R Programming Logic
+## 3465 R Programming Logic
+## 3466 R Programming Subsetting Vectors
+## 3467 R Programming Functions
+## 3468 R Programming Functions
+## 3469 R Programming Basic Building Blocks
+## 3470 R Programming Basic Building Blocks
+## 3471 R Programming Basic Building Blocks
+## 3472 R Programming Logic
+## 3473 R Programming Dates and Times
+## 3474 R Programming Workspace and Files
+## 3475 R Programming Subsetting Vectors
+## 3476 R Programming Basic Building Blocks
+## 3477 R Programming Functions
+## 3478 R Programming Basic Building Blocks
+## 3479 R Programming Basic Building Blocks
+## 3480 R Programming Functions
+## 3481 R Programming Subsetting Vectors
+## 3482 R Programming Subsetting Vectors
+## 3483 R Programming Missing Values
+## 3484 R Programming Subsetting Vectors
+## 3485 R Programming Functions
+## 3486 R Programming Dates and Times
+## 3487 R Programming Dates and Times
+## 3488 R Programming Logic
+## 3489 R Programming Dates and Times
+## 3490 R Programming Dates and Times
+## 3491 R Programming Functions
+## 3492 R Programming Dates and Times
+## 3493 R Programming Subsetting Vectors
+## 3494 R Programming Subsetting Vectors
+## 3495 R Programming Subsetting Vectors
+## 3496 R Programming Logic
+## 3497 R Programming Functions
+## 3498 R Programming Missing Values
+## 3499 R Programming Functions
+## 3500 R Programming Missing Values
+## 3501 R Programming Logic
+## 3502 R Programming Missing Values
+## 3503 R Programming Missing Values
+## 3504 R Programming Subsetting Vectors
+## 3505 R Programming Missing Values
+## 3506 R Programming Dates and Times
+## 3507 R Programming Dates and Times
+## 3508 R Programming Missing Values
+## 3509 R Programming Missing Values
+## 3510 R Programming Subsetting Vectors
+## 3511 R Programming Missing Values
+## 3512 R Programming Subsetting Vectors
+## 3513 R Programming Dates and Times
+## 3514 R Programming Workspace and Files
+## 3515 R Programming Workspace and Files
+## 3516 R Programming Logic
+## 3517 R Programming Missing Values
+## 3518 R Programming Logic
+## 3519 R Programming Subsetting Vectors
+## 3520 R Programming Workspace and Files
+## 3521 R Programming Missing Values
+## 3522 R Programming Workspace and Files
+## 3523 R Programming Logic
+## 3524 R Programming Dates and Times
+## 3525 R Programming Logic
+## 3526 R Programming Missing Values
+## 3527 R Programming Logic
+## 3528 R Programming Functions
+## 3529 R Programming Vectors
+## 3530 R Programming Subsetting Vectors
+## 3531 R Programming Basic Building Blocks
+## 3532 R Programming Subsetting Vectors
+## 3533 R Programming Subsetting Vectors
+## 3534 R Programming Workspace and Files
+## 3535 R Programming Workspace and Files
+## 3536 R Programming Logic
+## 3537 R Programming Workspace and Files
+## 3538 R Programming Subsetting Vectors
+## 3539 R Programming Workspace and Files
+## 3540 R Programming Subsetting Vectors
+## 3541 R Programming Basic Building Blocks
+## 3542 R Programming Basic Building Blocks
+## 3543 R Programming Workspace and Files
+## 3544 R Programming Subsetting Vectors
+## 3545 R Programming Logic
+## 3546 R Programming Subsetting Vectors
+## 3547 R Programming Subsetting Vectors
+## 3548 R Programming Basic Building Blocks
+## 3549 R Programming Subsetting Vectors
+## 3550 R Programming Subsetting Vectors
+## 3551 R Programming Dates and Times
+## 3552 R Programming Vectors
+## 3553 R Programming Vectors
+## 3554 R Programming Basic Building Blocks
+## 3555 R Programming Logic
+## 3556 R Programming Workspace and Files
+## 3557 R Programming Workspace and Files
+## 3558 R Programming Basic Building Blocks
+## 3559 R Programming Basic Building Blocks
+## 3560 R Programming Functions
+## 3561 R Programming Functions
+## 3562 R Programming Subsetting Vectors
+## 3563 R Programming Dates and Times
+## 3564 R Programming Basic Building Blocks
+## 3565 R Programming Subsetting Vectors
+## 3566 R Programming Functions
+## 3567 R Programming Functions
+## 3568 R Programming Vectors
+## 3569 R Programming Functions
+## 3570 R Programming Workspace and Files
+## 3571 R Programming Workspace and Files
+## 3572 R Programming Basic Building Blocks
+## 3573 R Programming Functions
+## 3574 R Programming Dates and Times
+## 3575 R Programming Dates and Times
+## 3576 R Programming Vectors
+## 3577 R Programming Logic
+## 3578 R Programming Logic
+## 3579 R Programming Workspace and Files
+## 3580 R Programming Workspace and Files
+## 3581 R Programming Workspace and Files
+## 3582 R Programming Subsetting Vectors
+## 3583 R Programming Vectors
+## 3584 R Programming Vectors
+## 3585 R Programming Logic
+## 3586 R Programming Vectors
+## 3587 R Programming Vectors
+## 3588 R Programming Logic
+## 3589 R Programming Vectors
+## 3590 R Programming Vectors
+## 3591 R Programming Vectors
+## 3592 R Programming Functions
+## 3593 R Programming Functions
+## 3594 R Programming Vectors
+## 3595 R Programming Dates and Times
+## 3596 R Programming Basic Building Blocks
+## 3597 R Programming Basic Building Blocks
+## 3598 R Programming Basic Building Blocks
+## 3599 R Programming Basic Building Blocks
+## 3600 R Programming Logic
+## 3601 R Programming Logic
+## 3602 R Programming Logic
+## 3603 R Programming Vectors
+## 3604 R Programming Functions
+## 3605 R Programming Missing Values
+## 3606 R Programming Missing Values
+## 3607 R Programming Logic
+## 3608 R Programming Logic
+## 3609 R Programming Functions
+## 3610 R Programming Subsetting Vectors
+## 3611 R Programming Missing Values
+## 3612 R Programming Logic
+## 3613 R Programming Logic
+## 3614 R Programming Logic
+## 3615 R Programming Logic
+## 3616 R Programming Logic
+## 3617 R Programming Workspace and Files
+## 3618 R Programming Workspace and Files
+## 3619 R Programming Vectors
+## 3620 R Programming Subsetting Vectors
+## 3621 R Programming Subsetting Vectors
+## 3622 R Programming Workspace and Files
+## 3623 R Programming Subsetting Vectors
+## 3624 R Programming Subsetting Vectors
+## 3625 R Programming Vectors
+## 3626 R Programming Logic
+## 3627 R Programming Logic
+## 3628 R Programming Logic
+## 3629 R Programming Workspace and Files
+## 3630 R Programming Functions
+## 3631 R Programming Functions
+## 3632 R Programming Functions
+## 3633 R Programming Functions
+## 3634 R Programming Functions
+## 3635 R Programming Missing Values
+## 3636 R Programming Dates and Times
+## 3637 R Programming Vectors
+## 3638 R Programming Subsetting Vectors
+## 3639 R Programming Vectors
+## 3640 R Programming Missing Values
+## 3641 R Programming Logic
+## 3642 R Programming Vectors
+## 3643 R Programming Logic
+## 3644 R Programming Subsetting Vectors
+## 3645 R Programming Vectors
+## 3646 R Programming Vectors
+## 3647 R Programming Vectors
+## 3648 R Programming Vectors
+## 3649 R Programming Functions
+## 3650 R Programming Subsetting Vectors
+## 3651 R Programming Basic Building Blocks
+## 3652 R Programming Logic
+## 3653 R Programming Logic
+## 3654 R Programming Vectors
+## 3655 R Programming Vectors
+## 3656 R Programming Vectors
+## 3657 R Programming Subsetting Vectors
+## 3658 R Programming Logic
+## 3659 R Programming Vectors
+## 3660 R Programming Vectors
+## 3661 R Programming Vectors
+## 3662 R Programming Vectors
+## 3663 R Programming Workspace and Files
+## 3664 R Programming Missing Values
+## 3665 R Programming Missing Values
+## 3666 R Programming Dates and Times
+## 3667 R Programming Basic Building Blocks
+## 3668 R Programming Vectors
+## 3669 R Programming Vectors
+## 3670 R Programming Basic Building Blocks
+## 3671 R Programming Workspace and Files
+## 3672 R Programming Functions
+## 3673 R Programming Dates and Times
+## 3674 R Programming Missing Values
+## 3675 R Programming Missing Values
+## 3676 R Programming Missing Values
+## 3677 R Programming Subsetting Vectors
+## 3678 R Programming Logic
+## 3679 R Programming Functions
+## 3680 R Programming Functions
+## 3681 R Programming Functions
+## 3682 R Programming Functions
+## 3683 R Programming Workspace and Files
+## 3684 R Programming Dates and Times
+## 3685 R Programming Vectors
+## 3686 R Programming Vectors
+## 3687 R Programming Vectors
+## 3688 R Programming Basic Building Blocks
+## 3689 R Programming Basic Building Blocks
+## 3690 R Programming Subsetting Vectors
+## 3691 R Programming Dates and Times
+## 3692 R Programming Logic
+## 3693 R Programming Logic
+## 3694 R Programming Logic
+## 3695 R Programming Functions
+## 3696 R Programming Vectors
+## 3697 R Programming Functions
+## 3698 R Programming Vectors
+## 3699 R Programming Basic Building Blocks
+## 3700 R Programming Dates and Times
+## 3701 R Programming Dates and Times
+## 3702 R Programming Functions
+## 3703 R Programming Logic
+## 3704 R Programming Functions
+## 3705 R Programming Dates and Times
+## 3706 R Programming Dates and Times
+## 3707 R Programming Dates and Times
+## 3708 R Programming Dates and Times
+## 3709 R Programming Vectors
+## 3710 R Programming Functions
+## 3711 R Programming Dates and Times
+## 3712 R Programming Missing Values
+## 3713 R Programming Subsetting Vectors
+## 3714 R Programming Dates and Times
+## 3715 R Programming Dates and Times
+## 3716 R Programming Dates and Times
+## 3717 R Programming Basic Building Blocks
+## 3718 R Programming Basic Building Blocks
+## 3719 R Programming Dates and Times
+## 3720 R Programming Basic Building Blocks
+## 3721 R Programming Dates and Times
+## 3722 R Programming Functions
+## 3723 R Programming Dates and Times
+## 3724 R Programming Dates and Times
+## 3725 R Programming Dates and Times
+## 3726 R Programming Dates and Times
+## 3727 R Programming Dates and Times
+## 3728 R Programming Logic
+## 3729 R Programming Basic Building Blocks
+## 3730 R Programming Logic
+## 3731 R Programming Logic
+## 3732 R Programming Basic Building Blocks
+## 3733 R Programming Logic
+## 3734 R Programming Logic
+## 3735 R Programming Logic
+## 3736 R Programming Workspace and Files
+## 3737 R Programming Workspace and Files
+## 3738 R Programming Workspace and Files
+## 3739 R Programming Workspace and Files
+## 3740 R Programming Vectors
+## 3741 R Programming Basic Building Blocks
+## 3742 R Programming Logic
+## 3743 R Programming Logic
+## 3744 R Programming Workspace and Files
+## 3745 R Programming Logic
+## 3746 R Programming Logic
+## 3747 R Programming Basic Building Blocks
+## 3748 R Programming Dates and Times
+## 3749 R Programming Workspace and Files
+## 3750 R Programming Vectors
+## 3751 R Programming Vectors
+## 3752 R Programming Workspace and Files
+## 3753 R Programming Basic Building Blocks
+## 3754 R Programming Basic Building Blocks
+## 3755 R Programming Vectors
+## 3756 R Programming Subsetting Vectors
+## 3757 R Programming Missing Values
+## 3758 R Programming Basic Building Blocks
+## 3759 R Programming Basic Building Blocks
+## 3760 R Programming Basic Building Blocks
+## 3761 R Programming Dates and Times
+## 3762 R Programming Dates and Times
+## 3763 R Programming Basic Building Blocks
+## 3764 R Programming Dates and Times
+## 3765 R Programming Dates and Times
+## 3766 R Programming Logic
+## 3767 R Programming Dates and Times
+## 3768 R Programming Subsetting Vectors
+## 3769 R Programming Subsetting Vectors
+## 3770 R Programming Missing Values
+## 3771 R Programming Basic Building Blocks
+## 3772 R Programming Dates and Times
+## 3773 R Programming Basic Building Blocks
+## 3774 R Programming Dates and Times
+## 3775 R Programming Workspace and Files
+## 3776 R Programming Basic Building Blocks
+## 3777 R Programming Workspace and Files
+## 3778 R Programming Dates and Times
+## 3779 R Programming Logic
+## 3780 R Programming Dates and Times
+## 3781 R Programming Dates and Times
+## 3782 R Programming Basic Building Blocks
+## 3783 R Programming Workspace and Files
+## 3784 R Programming Dates and Times
+## 3785 R Programming Vectors
+## 3786 R Programming Basic Building Blocks
+## 3787 R Programming Logic
+## 3788 R Programming Logic
+## 3789 R Programming Logic
+## 3790 R Programming Logic
+## 3791 R Programming Dates and Times
+## 3792 R Programming Basic Building Blocks
+## 3793 R Programming Subsetting Vectors
+## 3794 R Programming Subsetting Vectors
+## 3795 R Programming Subsetting Vectors
+## 3796 R Programming Basic Building Blocks
+## 3797 R Programming Dates and Times
+## 3798 R Programming Dates and Times
+## 3799 R Programming Logic
+## 3800 R Programming Dates and Times
+## 3801 R Programming Subsetting Vectors
+## 3802 R Programming Workspace and Files
+## 3803 R Programming Workspace and Files
+## 3804 R Programming Basic Building Blocks
+## 3805 R Programming Dates and Times
+## 3806 R Programming Basic Building Blocks
+## 3807 R Programming Basic Building Blocks
+## 3808 R Programming Basic Building Blocks
+## 3809 R Programming Vectors
+## 3810 R Programming Workspace and Files
+## 3811 R Programming Logic
+## 3812 R Programming Subsetting Vectors
+## 3813 R Programming Workspace and Files
+## 3814 R Programming Vectors
+## 3815 R Programming Dates and Times
+## 3816 R Programming Logic
+## 3817 R Programming Logic
+## 3818 R Programming Dates and Times
+## 3819 R Programming Subsetting Vectors
+## 3820 R Programming Missing Values
+## 3821 R Programming Missing Values
+## 3822 R Programming Workspace and Files
+## 3823 R Programming Workspace and Files
+## 3824 R Programming Vectors
+## 3825 R Programming Missing Values
+## 3826 R Programming Missing Values
+## 3827 R Programming Vectors
+## 3828 R Programming Logic
+## 3829 R Programming Dates and Times
+## 3830 R Programming Dates and Times
+## 3831 R Programming Dates and Times
+## 3832 R Programming Vectors
+## 3833 R Programming Dates and Times
+## 3834 R Programming Subsetting Vectors
+## 3835 R Programming Subsetting Vectors
+## 3836 R Programming Missing Values
+## 3837 R Programming Missing Values
+## 3838 R Programming Workspace and Files
+## 3839 R Programming Dates and Times
+## 3840 R Programming Dates and Times
+## 3841 R Programming Dates and Times
+## 3842 R Programming Dates and Times
+## 3843 R Programming Logic
+## 3844 R Programming Logic
+## 3845 R Programming Subsetting Vectors
+## 3846 R Programming Vectors
+## 3847 R Programming Subsetting Vectors
+## 3848 R Programming Dates and Times
+## 3849 R Programming Basic Building Blocks
+## 3850 R Programming Logic
+## 3851 R Programming Logic
+## 3852 R Programming Logic
+## 3853 R Programming Logic
+## 3854 R Programming Logic
+## 3855 R Programming Logic
+## 3856 R Programming Subsetting Vectors
+## 3857 R Programming Missing Values
+## 3858 R Programming Logic
+## 3859 R Programming Vectors
+## 3860 R Programming Subsetting Vectors
+## 3861 R Programming Vectors
+## 3862 R Programming Logic
+## 3863 R Programming Subsetting Vectors
+## 3864 R Programming Logic
+## 3865 R Programming Logic
+## 3866 R Programming Logic
+## 3867 R Programming Vectors
+## 3868 R Programming Missing Values
+## 3869 R Programming Workspace and Files
+## 3870 R Programming Workspace and Files
+## 3871 R Programming Vectors
+## 3872 R Programming Workspace and Files
+## 3873 R Programming Workspace and Files
+## 3874 R Programming Subsetting Vectors
+## 3875 R Programming Workspace and Files
+## 3876 R Programming Subsetting Vectors
+## 3877 R Programming Subsetting Vectors
+## 3878 R Programming Vectors
+## 3879 R Programming Subsetting Vectors
+## 3880 R Programming Vectors
+## 3881 R Programming Vectors
+## 3882 R Programming Vectors
+## 3883 R Programming Missing Values
+## 3884 R Programming Missing Values
+## 3885 R Programming Missing Values
+## 3886 R Programming Logic
+## 3887 R Programming Workspace and Files
+## 3888 R Programming Subsetting Vectors
+## 3889 R Programming Subsetting Vectors
+## 3890 R Programming Subsetting Vectors
+## 3891 R Programming Subsetting Vectors
+## 3892 R Programming Subsetting Vectors
+## 3893 R Programming Missing Values
+## 3894 R Programming Subsetting Vectors
+## 3895 Getting and Cleaning Data Manipulating Data with dplyr
+## 3896 Getting and Cleaning Data Manipulating Data with dplyr
+## 3897 R Programming Functions
+## 3898 Getting and Cleaning Data Tidying Data with tidyr
+## 3899 Getting and Cleaning Data Manipulating Data with dplyr
+## 3900 Getting and Cleaning Data Manipulating Data with dplyr
+## 3901 R Programming Matrices and Data Frames
+## 3902 Getting and Cleaning Data Manipulating Data with dplyr
+## 3903 Getting and Cleaning Data Manipulating Data with dplyr
+## 3904 Getting and Cleaning Data Tidying Data with tidyr
+## 3905 Getting and Cleaning Data Tidying Data with tidyr
+## 3906 Getting and Cleaning Data Manipulating Data with dplyr
+## 3907 Getting and Cleaning Data Manipulating Data with dplyr
+## 3908 Getting and Cleaning Data Manipulating Data with dplyr
+## 3909 Getting and Cleaning Data Manipulating Data with dplyr
+## 3910 Getting and Cleaning Data Manipulating Data with dplyr
+## 3911 R Programming Functions
+## 3912 R Programming Matrices and Data Frames
+## 3913 R Programming Matrices and Data Frames
+## 3914 Getting and Cleaning Data Tidying Data with tidyr
+## 3915 Getting and Cleaning Data Manipulating Data with dplyr
+## 3916 Getting and Cleaning Data Manipulating Data with dplyr
+## 3917 Getting and Cleaning Data Manipulating Data with dplyr
+## 3918 R Programming Functions
+## 3919 R Programming Functions
+## 3920 Getting and Cleaning Data Tidying Data with tidyr
+## 3921 Getting and Cleaning Data Manipulating Data with dplyr
+## 3922 Getting and Cleaning Data Tidying Data with tidyr
+## 3923 Getting and Cleaning Data Manipulating Data with dplyr
+## 3924 Getting and Cleaning Data Manipulating Data with dplyr
+## 3925 Getting and Cleaning Data Manipulating Data with dplyr
+## 3926 Getting and Cleaning Data Manipulating Data with dplyr
+## 3927 Getting and Cleaning Data Manipulating Data with dplyr
+## 3928 Getting and Cleaning Data Manipulating Data with dplyr
+## 3929 R Programming Functions
+## 3930 Getting and Cleaning Data Manipulating Data with dplyr
+## 3931 Getting and Cleaning Data Manipulating Data with dplyr
+## 3932 R Programming Matrices and Data Frames
+## 3933 R Programming Matrices and Data Frames
+## 3934 R Programming Functions
+## 3935 Getting and Cleaning Data Tidying Data with tidyr
+## 3936 R Programming Functions
+## 3937 Getting and Cleaning Data Manipulating Data with dplyr
+## 3938 Getting and Cleaning Data Tidying Data with tidyr
+## 3939 R Programming Functions
+## 3940 Getting and Cleaning Data Manipulating Data with dplyr
+## 3941 Getting and Cleaning Data Manipulating Data with dplyr
+## 3942 Getting and Cleaning Data Manipulating Data with dplyr
+## 3943 R Programming Functions
+## 3944 Getting and Cleaning Data Manipulating Data with dplyr
+## 3945 Getting and Cleaning Data Manipulating Data with dplyr
+## 3946 Getting and Cleaning Data Manipulating Data with dplyr
+## 3947 Getting and Cleaning Data Tidying Data with tidyr
+## 3948 Getting and Cleaning Data Tidying Data with tidyr
+## 3949 Getting and Cleaning Data Tidying Data with tidyr
+## 3950 Getting and Cleaning Data Manipulating Data with dplyr
+## 3951 Getting and Cleaning Data Tidying Data with tidyr
+## 3952 R Programming Matrices and Data Frames
+## 3953 Getting and Cleaning Data Tidying Data with tidyr
+## 3954 R Programming Matrices and Data Frames
+## 3955 R Programming Functions
+## 3956 R Programming Matrices and Data Frames
+## 3957 R Programming Functions
+## 3958 R Programming Matrices and Data Frames
+## 3959 R Programming Matrices and Data Frames
+## 3960 R Programming Matrices and Data Frames
+## 3961 Getting and Cleaning Data Tidying Data with tidyr
+## 3962 R Programming Matrices and Data Frames
+## 3963 R Programming Matrices and Data Frames
+## 3964 Getting and Cleaning Data Tidying Data with tidyr
+## 3965 Getting and Cleaning Data Tidying Data with tidyr
+## 3966 Getting and Cleaning Data Tidying Data with tidyr
+## 3967 Getting and Cleaning Data Manipulating Data with dplyr
+## 3968 Getting and Cleaning Data Manipulating Data with dplyr
+## 3969 R Programming Functions
+## 3970 R Programming Functions
+## 3971 R Programming Functions
+## 3972 R Programming Functions
+## 3973 R Programming Matrices and Data Frames
+## 3974 R Programming Matrices and Data Frames
+## 3975 R Programming Functions
+## 3976 Getting and Cleaning Data Tidying Data with tidyr
+## 3977 R Programming Matrices and Data Frames
+## 3978 R Programming Functions
+## 3979 R Programming Functions
+## 3980 R Programming Functions
+## 3981 Getting and Cleaning Data Manipulating Data with dplyr
+## 3982 R Programming Matrices and Data Frames
+## 3983 Getting and Cleaning Data Tidying Data with tidyr
+## 3984 R Programming Functions
+## 3985 R Programming Functions
+## 3986 Getting and Cleaning Data Tidying Data with tidyr
+## 3987 Getting and Cleaning Data Tidying Data with tidyr
+## 3988 R Programming Matrices and Data Frames
+## 3989 Getting and Cleaning Data Manipulating Data with dplyr
+## 3990 Getting and Cleaning Data Tidying Data with tidyr
+## 3991 R Programming Functions
+## 3992 R Programming Functions
+## 3993 Getting and Cleaning Data Tidying Data with tidyr
+## 3994 Getting and Cleaning Data Manipulating Data with dplyr
+## 3995 R Programming Matrices and Data Frames
+## 3996 R Programming Matrices and Data Frames
+## 3997 R Programming Matrices and Data Frames
+## 3998 Getting and Cleaning Data Manipulating Data with dplyr
+## 3999 Getting and Cleaning Data Tidying Data with tidyr
+## 4000 R Programming Matrices and Data Frames
+## 4001 Getting and Cleaning Data Tidying Data with tidyr
+## 4002 Getting and Cleaning Data Manipulating Data with dplyr
+## 4003 R Programming Functions
+## 4004 Getting and Cleaning Data Manipulating Data with dplyr
+## 4005 Getting and Cleaning Data Manipulating Data with dplyr
+## 4006 R Programming Functions
+## 4007 Getting and Cleaning Data Tidying Data with tidyr
+## 4008 R Programming Matrices and Data Frames
+## 4009 R Programming Functions
+## 4010 Getting and Cleaning Data Tidying Data with tidyr
+## 4011 Getting and Cleaning Data Tidying Data with tidyr
+## 4012 R Programming Functions
+## 4013 R Programming Functions
+## 4014 Getting and Cleaning Data Tidying Data with tidyr
+## 4015 Getting and Cleaning Data Tidying Data with tidyr
+## 4016 Getting and Cleaning Data Tidying Data with tidyr
+## 4017 Getting and Cleaning Data Tidying Data with tidyr
+## 4018 R Programming Matrices and Data Frames
+## 4019 Getting and Cleaning Data Tidying Data with tidyr
+## 4020 Getting and Cleaning Data Manipulating Data with dplyr
+## 4021 Getting and Cleaning Data Tidying Data with tidyr
+## 4022 Getting and Cleaning Data Manipulating Data with dplyr
+## 4023 R Programming Matrices and Data Frames
+## 4024 R Programming Matrices and Data Frames
+## 4025 Getting and Cleaning Data Manipulating Data with dplyr
+## 4026 Getting and Cleaning Data Manipulating Data with dplyr
+## 4027 Getting and Cleaning Data Manipulating Data with dplyr
+## 4028 R Programming Matrices and Data Frames
+## 4029 Getting and Cleaning Data Manipulating Data with dplyr
+## 4030 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4031 Getting and Cleaning Data Manipulating Data with dplyr
+## 4032 Getting and Cleaning Data Manipulating Data with dplyr
+## 4033 R Programming Matrices and Data Frames
+## 4034 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4035 R Programming Matrices and Data Frames
+## 4036 R Programming Matrices and Data Frames
+## 4037 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4038 R Programming Matrices and Data Frames
+## 4039 Getting and Cleaning Data Tidying Data with tidyr
+## 4040 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4041 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4042 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4043 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4044 R Programming Matrices and Data Frames
+## 4045 Getting and Cleaning Data Tidying Data with tidyr
+## 4046 Getting and Cleaning Data Tidying Data with tidyr
+## 4047 R Programming Matrices and Data Frames
+## 4048 Getting and Cleaning Data Manipulating Data with dplyr
+## 4049 Getting and Cleaning Data Manipulating Data with dplyr
+## 4050 Getting and Cleaning Data Manipulating Data with dplyr
+## 4051 Getting and Cleaning Data Tidying Data with tidyr
+## 4052 Getting and Cleaning Data Tidying Data with tidyr
+## 4053 Getting and Cleaning Data Tidying Data with tidyr
+## 4054 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4055 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4056 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4057 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4058 Getting and Cleaning Data Tidying Data with tidyr
+## 4059 Getting and Cleaning Data Tidying Data with tidyr
+## 4060 Getting and Cleaning Data Manipulating Data with dplyr
+## 4061 Getting and Cleaning Data Tidying Data with tidyr
+## 4062 Getting and Cleaning Data Tidying Data with tidyr
+## 4063 Getting and Cleaning Data Tidying Data with tidyr
+## 4064 Getting and Cleaning Data Tidying Data with tidyr
+## 4065 Getting and Cleaning Data Tidying Data with tidyr
+## 4066 Getting and Cleaning Data Tidying Data with tidyr
+## 4067 Getting and Cleaning Data Manipulating Data with dplyr
+## 4068 Getting and Cleaning Data Tidying Data with tidyr
+## 4069 Getting and Cleaning Data Tidying Data with tidyr
+## 4070 Getting and Cleaning Data Tidying Data with tidyr
+## 4071 Getting and Cleaning Data Tidying Data with tidyr
+## 4072 Getting and Cleaning Data Manipulating Data with dplyr
+## 4073 Getting and Cleaning Data Manipulating Data with dplyr
+## 4074 Getting and Cleaning Data Manipulating Data with dplyr
+## 4075 Getting and Cleaning Data Manipulating Data with dplyr
+## 4076 Getting and Cleaning Data Manipulating Data with dplyr
+## 4077 Getting and Cleaning Data Manipulating Data with dplyr
+## 4078 Getting and Cleaning Data Tidying Data with tidyr
+## 4079 Getting and Cleaning Data Tidying Data with tidyr
+## 4080 Getting and Cleaning Data Tidying Data with tidyr
+## 4081 Getting and Cleaning Data Tidying Data with tidyr
+## 4082 Getting and Cleaning Data Tidying Data with tidyr
+## 4083 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4084 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4085 R Programming Matrices and Data Frames
+## 4086 R Programming Matrices and Data Frames
+## 4087 R Programming Matrices and Data Frames
+## 4088 R Programming Matrices and Data Frames
+## 4089 R Programming Matrices and Data Frames
+## 4090 R Programming Matrices and Data Frames
+## 4091 R Programming Matrices and Data Frames
+## 4092 R Programming Looking at Data
+## 4093 R Programming Matrices and Data Frames
+## 4094 R Programming Matrices and Data Frames
+## 4095 R Programming Matrices and Data Frames
+## 4096 R Programming Matrices and Data Frames
+## 4097 R Programming Matrices and Data Frames
+## 4098 R Programming Matrices and Data Frames
+## 4099 Getting and Cleaning Data Tidying Data with tidyr
+## 4100 Getting and Cleaning Data Tidying Data with tidyr
+## 4101 Getting and Cleaning Data Tidying Data with tidyr
+## 4102 Getting and Cleaning Data Tidying Data with tidyr
+## 4103 Getting and Cleaning Data Tidying Data with tidyr
+## 4104 Getting and Cleaning Data Tidying Data with tidyr
+## 4105 Getting and Cleaning Data Tidying Data with tidyr
+## 4106 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4107 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4108 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4109 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4110 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4111 Exploratory_Data_Analysis Plotting_Systems
+## 4112 Exploratory_Data_Analysis Plotting_Systems
+## 4113 Exploratory_Data_Analysis Plotting_Systems
+## 4114 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4115 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4116 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4117 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4118 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4119 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4120 Getting and Cleaning Data Manipulating Data with dplyr
+## 4121 Getting and Cleaning Data Manipulating Data with dplyr
+## 4122 Getting and Cleaning Data Manipulating Data with dplyr
+## 4123 Getting and Cleaning Data Manipulating Data with dplyr
+## 4124 Exploratory_Data_Analysis Plotting_Systems
+## 4125 Exploratory_Data_Analysis Plotting_Systems
+## 4126 Exploratory_Data_Analysis Plotting_Systems
+## 4127 R Programming Looking at Data
+## 4128 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4129 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4130 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4131 Exploratory_Data_Analysis Plotting_Systems
+## 4132 Exploratory_Data_Analysis Plotting_Systems
+## 4133 Exploratory_Data_Analysis Plotting_Systems
+## 4134 Exploratory_Data_Analysis Plotting_Systems
+## 4135 Exploratory_Data_Analysis Plotting_Systems
+## 4136 Getting and Cleaning Data Manipulating Data with dplyr
+## 4137 Getting and Cleaning Data Manipulating Data with dplyr
+## 4138 Getting and Cleaning Data Manipulating Data with dplyr
+## 4139 Exploratory_Data_Analysis Plotting_Systems
+## 4140 Exploratory_Data_Analysis Plotting_Systems
+## 4141 Exploratory_Data_Analysis Plotting_Systems
+## 4142 Getting and Cleaning Data Manipulating Data with dplyr
+## 4143 Exploratory_Data_Analysis Plotting_Systems
+## 4144 Exploratory_Data_Analysis Plotting_Systems
+## 4145 Exploratory_Data_Analysis Plotting_Systems
+## 4146 Exploratory_Data_Analysis Plotting_Systems
+## 4147 Getting and Cleaning Data Manipulating Data with dplyr
+## 4148 R Programming Looking at Data
+## 4149 R Programming Looking at Data
+## 4150 R Programming Looking at Data
+## 4151 Exploratory_Data_Analysis Plotting_Systems
+## 4152 Getting and Cleaning Data Manipulating Data with dplyr
+## 4153 Getting and Cleaning Data Manipulating Data with dplyr
+## 4154 Getting and Cleaning Data Manipulating Data with dplyr
+## 4155 Getting and Cleaning Data Manipulating Data with dplyr
+## 4156 Getting and Cleaning Data Manipulating Data with dplyr
+## 4157 R Programming Looking at Data
+## 4158 Getting and Cleaning Data Manipulating Data with dplyr
+## 4159 R Programming Looking at Data
+## 4160 R Programming Looking at Data
+## 4161 Getting and Cleaning Data Manipulating Data with dplyr
+## 4162 Getting and Cleaning Data Manipulating Data with dplyr
+## 4163 Getting and Cleaning Data Manipulating Data with dplyr
+## 4164 R Programming Looking at Data
+## 4165 R Programming Looking at Data
+## 4166 R Programming Looking at Data
+## 4167 Getting and Cleaning Data Manipulating Data with dplyr
+## 4168 R Programming Looking at Data
+## 4169 Getting and Cleaning Data Manipulating Data with dplyr
+## 4170 R Programming Looking at Data
+## 4171 Getting and Cleaning Data Manipulating Data with dplyr
+## 4172 Exploratory_Data_Analysis Plotting_Systems
+## 4173 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4174 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4175 R Programming Looking at Data
+## 4176 Exploratory_Data_Analysis Plotting_Systems
+## 4177 R Programming Looking at Data
+## 4178 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4179 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4180 R Programming Functions
+## 4181 R Programming Functions
+## 4182 R Programming Logic
+## 4183 R Programming Logic
+## 4184 R Programming Functions
+## 4185 R Programming Functions
+## 4186 R Programming Functions
+## 4187 R Programming Logic
+## 4188 R Programming Functions
+## 4189 R Programming Subsetting Vectors
+## 4190 R Programming Subsetting Vectors
+## 4191 R Programming Subsetting Vectors
+## 4192 R Programming Functions
+## 4193 R Programming Subsetting Vectors
+## 4194 R Programming Subsetting Vectors
+## 4195 R Programming Workspace and Files
+## 4196 R Programming Subsetting Vectors
+## 4197 R Programming Vectors
+## 4198 R Programming Subsetting Vectors
+## 4199 R Programming Vectors
+## 4200 R Programming Functions
+## 4201 R Programming Functions
+## 4202 R Programming Vectors
+## 4203 R Programming Missing Values
+## 4204 R Programming Subsetting Vectors
+## 4205 R Programming Subsetting Vectors
+## 4206 R Programming Functions
+## 4207 R Programming Vectors
+## 4208 R Programming Subsetting Vectors
+## 4209 R Programming Subsetting Vectors
+## 4210 R Programming Basic Building Blocks
+## 4211 R Programming Functions
+## 4212 R Programming Workspace and Files
+## 4213 R Programming Workspace and Files
+## 4214 R Programming Vectors
+## 4215 R Programming Vectors
+## 4216 R Programming Vectors
+## 4217 R Programming Workspace and Files
+## 4218 R Programming Workspace and Files
+## 4219 R Programming Subsetting Vectors
+## 4220 R Programming Subsetting Vectors
+## 4221 R Programming Workspace and Files
+## 4222 R Programming Basic Building Blocks
+## 4223 R Programming Basic Building Blocks
+## 4224 R Programming Basic Building Blocks
+## 4225 R Programming Logic
+## 4226 R Programming Workspace and Files
+## 4227 R Programming Workspace and Files
+## 4228 R Programming Workspace and Files
+## 4229 R Programming Functions
+## 4230 R Programming Missing Values
+## 4231 R Programming Workspace and Files
+## 4232 R Programming Workspace and Files
+## 4233 R Programming Functions
+## 4234 R Programming Workspace and Files
+## 4235 R Programming Vectors
+## 4236 R Programming Vectors
+## 4237 R Programming Vectors
+## 4238 R Programming Vectors
+## 4239 R Programming Dates and Times
+## 4240 R Programming Workspace and Files
+## 4241 R Programming Workspace and Files
+## 4242 R Programming Workspace and Files
+## 4243 R Programming Basic Building Blocks
+## 4244 R Programming Basic Building Blocks
+## 4245 R Programming Missing Values
+## 4246 R Programming Missing Values
+## 4247 R Programming Missing Values
+## 4248 R Programming Missing Values
+## 4249 R Programming Functions
+## 4250 R Programming Missing Values
+## 4251 R Programming Missing Values
+## 4252 R Programming Dates and Times
+## 4253 R Programming Workspace and Files
+## 4254 R Programming Missing Values
+## 4255 R Programming Missing Values
+## 4256 R Programming Logic
+## 4257 R Programming Logic
+## 4258 R Programming Logic
+## 4259 R Programming Workspace and Files
+## 4260 R Programming Dates and Times
+## 4261 R Programming Dates and Times
+## 4262 R Programming Dates and Times
+## 4263 R Programming Dates and Times
+## 4264 R Programming Workspace and Files
+## 4265 R Programming Dates and Times
+## 4266 R Programming Logic
+## 4267 R Programming Workspace and Files
+## 4268 R Programming Workspace and Files
+## 4269 R Programming Workspace and Files
+## 4270 R Programming Workspace and Files
+## 4271 R Programming Basic Building Blocks
+## 4272 R Programming Basic Building Blocks
+## 4273 R Programming Dates and Times
+## 4274 R Programming Dates and Times
+## 4275 R Programming Dates and Times
+## 4276 R Programming Dates and Times
+## 4277 R Programming Dates and Times
+## 4278 R Programming Dates and Times
+## 4279 R Programming Missing Values
+## 4280 R Programming Missing Values
+## 4281 R Programming Vectors
+## 4282 R Programming Functions
+## 4283 R Programming Functions
+## 4284 R Programming Basic Building Blocks
+## 4285 R Programming Logic
+## 4286 R Programming Workspace and Files
+## 4287 R Programming Logic
+## 4288 R Programming Logic
+## 4289 R Programming Basic Building Blocks
+## 4290 R Programming Basic Building Blocks
+## 4291 R Programming Basic Building Blocks
+## 4292 R Programming Subsetting Vectors
+## 4293 R Programming Subsetting Vectors
+## 4294 R Programming Dates and Times
+## 4295 R Programming Dates and Times
+## 4296 R Programming Dates and Times
+## 4297 R Programming Dates and Times
+## 4298 R Programming Logic
+## 4299 R Programming Vectors
+## 4300 R Programming Basic Building Blocks
+## 4301 R Programming Basic Building Blocks
+## 4302 R Programming Basic Building Blocks
+## 4303 R Programming Basic Building Blocks
+## 4304 R Programming Vectors
+## 4305 R Programming Vectors
+## 4306 R Programming Vectors
+## 4307 R Programming Logic
+## 4308 R Programming Logic
+## 4309 R Programming Subsetting Vectors
+## 4310 R Programming Dates and Times
+## 4311 R Programming Dates and Times
+## 4312 R Programming Dates and Times
+## 4313 R Programming Subsetting Vectors
+## 4314 R Programming Vectors
+## 4315 R Programming Basic Building Blocks
+## 4316 R Programming Vectors
+## 4317 R Programming Vectors
+## 4318 R Programming Functions
+## 4319 R Programming Basic Building Blocks
+## 4320 R Programming Subsetting Vectors
+## 4321 R Programming Dates and Times
+## 4322 R Programming Subsetting Vectors
+## 4323 R Programming Dates and Times
+## 4324 R Programming Dates and Times
+## 4325 R Programming Subsetting Vectors
+## 4326 R Programming Subsetting Vectors
+## 4327 R Programming Basic Building Blocks
+## 4328 R Programming Logic
+## 4329 R Programming Functions
+## 4330 R Programming Subsetting Vectors
+## 4331 R Programming Logic
+## 4332 R Programming Logic
+## 4333 R Programming Logic
+## 4334 R Programming Logic
+## 4335 R Programming Logic
+## 4336 R Programming Functions
+## 4337 R Programming Basic Building Blocks
+## 4338 R Programming Functions
+## 4339 R Programming Basic Building Blocks
+## 4340 R Programming Basic Building Blocks
+## 4341 R Programming Subsetting Vectors
+## 4342 R Programming Logic
+## 4343 R Programming Functions
+## 4344 R Programming Missing Values
+## 4345 R Programming Missing Values
+## 4346 R Programming Functions
+## 4347 R Programming Functions
+## 4348 R Programming Dates and Times
+## 4349 R Programming Dates and Times
+## 4350 R Programming Dates and Times
+## 4351 R Programming Logic
+## 4352 R Programming Logic
+## 4353 R Programming Dates and Times
+## 4354 R Programming Functions
+## 4355 R Programming Functions
+## 4356 R Programming Subsetting Vectors
+## 4357 R Programming Functions
+## 4358 R Programming Logic
+## 4359 R Programming Logic
+## 4360 R Programming Dates and Times
+## 4361 R Programming Functions
+## 4362 R Programming Subsetting Vectors
+## 4363 R Programming Logic
+## 4364 R Programming Logic
+## 4365 R Programming Logic
+## 4366 R Programming Logic
+## 4367 R Programming Subsetting Vectors
+## 4368 R Programming Logic
+## 4369 R Programming Functions
+## 4370 R Programming Logic
+## 4371 R Programming Logic
+## 4372 R Programming Logic
+## 4373 R Programming Logic
+## 4374 R Programming Logic
+## 4375 R Programming Basic Building Blocks
+## 4376 R Programming Basic Building Blocks
+## 4377 R Programming Basic Building Blocks
+## 4378 R Programming Basic Building Blocks
+## 4379 R Programming Basic Building Blocks
+## 4380 R Programming Basic Building Blocks
+## 4381 R Programming Basic Building Blocks
+## 4382 R Programming Basic Building Blocks
+## 4383 R Programming Basic Building Blocks
+## 4384 R Programming Basic Building Blocks
+## 4385 R Programming Basic Building Blocks
+## 4386 R Programming Basic Building Blocks
+## 4387 R Programming Basic Building Blocks
+## 4388 R Programming Basic Building Blocks
+## 4389 R Programming Basic Building Blocks
+## 4390 R Programming Basic Building Blocks
+## 4391 R Programming Basic Building Blocks
+## 4392 R Programming Basic Building Blocks
+## 4393 R Programming Basic Building Blocks
+## 4394 R Programming Basic Building Blocks
+## 4395 R Programming Basic Building Blocks
+## 4396 R Programming Basic Building Blocks
+## 4397 R Programming Workspace and Files
+## 4398 R Programming Logic
+## 4399 R Programming Workspace and Files
+## 4400 R Programming Workspace and Files
+## 4401 R Programming Workspace and Files
+## 4402 R Programming Workspace and Files
+## 4403 R Programming Logic
+## 4404 R Programming Functions
+## 4405 R Programming Logic
+## 4406 R Programming Logic
+## 4407 R Programming Workspace and Files
+## 4408 R Programming Workspace and Files
+## 4409 R Programming Workspace and Files
+## 4410 R Programming Workspace and Files
+## 4411 R Programming Workspace and Files
+## 4412 R Programming Workspace and Files
+## 4413 R Programming Workspace and Files
+## 4414 R Programming Workspace and Files
+## 4415 R Programming Workspace and Files
+## 4416 R Programming Workspace and Files
+## 4417 R Programming Workspace and Files
+## 4418 R Programming Workspace and Files
+## 4419 R Programming Functions
+## 4420 R Programming Functions
+## 4421 R Programming Functions
+## 4422 R Programming Functions
+## 4423 R Programming Workspace and Files
+## 4424 R Programming Dates and Times
+## 4425 R Programming Dates and Times
+## 4426 R Programming Dates and Times
+## 4427 R Programming Dates and Times
+## 4428 R Programming Dates and Times
+## 4429 R Programming Dates and Times
+## 4430 R Programming Dates and Times
+## 4431 R Programming Dates and Times
+## 4432 R Programming Dates and Times
+## 4433 R Programming Dates and Times
+## 4434 R Programming Dates and Times
+## 4435 R Programming Dates and Times
+## 4436 R Programming Functions
+## 4437 R Programming Functions
+## 4438 R Programming Functions
+## 4439 R Programming Functions
+## 4440 R Programming Functions
+## 4441 R Programming Functions
+## 4442 R Programming Functions
+## 4443 R Programming Functions
+## 4444 R Programming Functions
+## 4445 R Programming Logic
+## 4446 R Programming Logic
+## 4447 R Programming Logic
+## 4448 R Programming Logic
+## 4449 R Programming Logic
+## 4450 R Programming Logic
+## 4451 R Programming Subsetting Vectors
+## 4452 R Programming Subsetting Vectors
+## 4453 R Programming Subsetting Vectors
+## 4454 R Programming Subsetting Vectors
+## 4455 R Programming Subsetting Vectors
+## 4456 R Programming Subsetting Vectors
+## 4457 R Programming Logic
+## 4458 R Programming Logic
+## 4459 R Programming Logic
+## 4460 R Programming Logic
+## 4461 R Programming Logic
+## 4462 R Programming Logic
+## 4463 R Programming Logic
+## 4464 R Programming Logic
+## 4465 R Programming Logic
+## 4466 R Programming Missing Values
+## 4467 R Programming Missing Values
+## 4468 R Programming Missing Values
+## 4469 R Programming Missing Values
+## 4470 R Programming Subsetting Vectors
+## 4471 R Programming Subsetting Vectors
+## 4472 R Programming Subsetting Vectors
+## 4473 R Programming Subsetting Vectors
+## 4474 R Programming Subsetting Vectors
+## 4475 R Programming Subsetting Vectors
+## 4476 R Programming Subsetting Vectors
+## 4477 R Programming Subsetting Vectors
+## 4478 R Programming Subsetting Vectors
+## 4479 R Programming Subsetting Vectors
+## 4480 R Programming Subsetting Vectors
+## 4481 R Programming Subsetting Vectors
+## 4482 R Programming Subsetting Vectors
+## 4483 R Programming Subsetting Vectors
+## 4484 R Programming Vectors
+## 4485 R Programming Vectors
+## 4486 R Programming Vectors
+## 4487 R Programming Vectors
+## 4488 R Programming Subsetting Vectors
+## 4489 R Programming Subsetting Vectors
+## 4490 R Programming Subsetting Vectors
+## 4491 R Programming Subsetting Vectors
+## 4492 R Programming Subsetting Vectors
+## 4493 R Programming Subsetting Vectors
+## 4494 R Programming Logic
+## 4495 R Programming Logic
+## 4496 R Programming Logic
+## 4497 R Programming Logic
+## 4498 R Programming Logic
+## 4499 R Programming Logic
+## 4500 R Programming Logic
+## 4501 R Programming Logic
+## 4502 R Programming Logic
+## 4503 R Programming Logic
+## 4504 R Programming Logic
+## 4505 R Programming Logic
+## 4506 R Programming Logic
+## 4507 R Programming Logic
+## 4508 R Programming Logic
+## 4509 R Programming Logic
+## 4510 R Programming Vectors
+## 4511 R Programming Vectors
+## 4512 R Programming Dates and Times
+## 4513 R Programming Dates and Times
+## 4514 R Programming Dates and Times
+## 4515 R Programming Dates and Times
+## 4516 R Programming Dates and Times
+## 4517 R Programming Dates and Times
+## 4518 R Programming Missing Values
+## 4519 R Programming Missing Values
+## 4520 R Programming Missing Values
+## 4521 R Programming Missing Values
+## 4522 R Programming Missing Values
+## 4523 R Programming Missing Values
+## 4524 R Programming Missing Values
+## 4525 R Programming Missing Values
+## 4526 R Programming Missing Values
+## 4527 R Programming Missing Values
+## 4528 R Programming Workspace and Files
+## 4529 R Programming Vectors
+## 4530 R Programming Vectors
+## 4531 R Programming Vectors
+## 4532 R Programming Vectors
+## 4533 R Programming Vectors
+## 4534 R Programming Vectors
+## 4535 R Programming Vectors
+## 4536 R Programming Vectors
+## 4537 R Programming Vectors
+## 4538 R Programming Vectors
+## 4539 R Programming Vectors
+## 4540 R Programming Vectors
+## 4541 R Programming Vectors
+## 4542 R Programming Workspace and Files
+## 4543 R Programming Workspace and Files
+## 4544 R Programming Workspace and Files
+## 4545 R Programming Workspace and Files
+## 4546 R Programming Basic Building Blocks
+## 4547 R Programming Basic Building Blocks
+## 4548 R Programming Basic Building Blocks
+## 4549 R Programming Basic Building Blocks
+## 4550 R Programming Basic Building Blocks
+## 4551 R Programming Basic Building Blocks
+## 4552 R Programming Basic Building Blocks
+## 4553 R Programming Dates and Times
+## 4554 R Programming Functions
+## 4555 R Programming Functions
+## 4556 R Programming Functions
+## 4557 R Programming Functions
+## 4558 R Programming Functions
+## 4559 R Programming Workspace and Files
+## 4560 R Programming Workspace and Files
+## 4561 R Programming Workspace and Files
+## 4562 R Programming Workspace and Files
+## 4563 R Programming Workspace and Files
+## 4564 R Programming Workspace and Files
+## 4565 R Programming Workspace and Files
+## 4566 R Programming Workspace and Files
+## 4567 R Programming Workspace and Files
+## 4568 R Programming Workspace and Files
+## 4569 R Programming Workspace and Files
+## 4570 R Programming Workspace and Files
+## 4571 R Programming Basic Building Blocks
+## 4572 R Programming Basic Building Blocks
+## 4573 R Programming Basic Building Blocks
+## 4574 R Programming Basic Building Blocks
+## 4575 R Programming Basic Building Blocks
+## 4576 R Programming Basic Building Blocks
+## 4577 R Programming Workspace and Files
+## 4578 R Programming Workspace and Files
+## 4579 R Programming Workspace and Files
+## 4580 R Programming Workspace and Files
+## 4581 R Programming Basic Building Blocks
+## 4582 R Programming Functions
+## 4583 R Programming Dates and Times
+## 4584 R Programming Basic Building Blocks
+## 4585 R Programming Basic Building Blocks
+## 4586 R Programming Dates and Times
+## 4587 R Programming Basic Building Blocks
+## 4588 R Programming Basic Building Blocks
+## 4589 R Programming Basic Building Blocks
+## 4590 R Programming Basic Building Blocks
+## 4591 R Programming Basic Building Blocks
+## 4592 R Programming Functions
+## 4593 R Programming Workspace and Files
+## 4594 R Programming Workspace and Files
+## 4595 R Programming Dates and Times
+## 4596 R Programming Dates and Times
+## 4597 R Programming Workspace and Files
+## 4598 R Programming Dates and Times
+## 4599 R Programming Dates and Times
+## 4600 R Programming Dates and Times
+## 4601 R Programming Dates and Times
+## 4602 R Programming Dates and Times
+## 4603 R Programming Basic Building Blocks
+## 4604 R Programming Workspace and Files
+## 4605 R Programming Workspace and Files
+## 4606 R Programming Workspace and Files
+## 4607 R Programming Functions
+## 4608 R Programming Functions
+## 4609 R Programming Functions
+## 4610 R Programming Functions
+## 4611 R Programming Functions
+## 4612 R Programming Workspace and Files
+## 4613 R Programming Functions
+## 4614 R Programming Functions
+## 4615 R Programming Basic Building Blocks
+## 4616 R Programming Basic Building Blocks
+## 4617 R Programming Basic Building Blocks
+## 4618 R Programming Basic Building Blocks
+## 4619 R Programming Basic Building Blocks
+## 4620 R Programming Basic Building Blocks
+## 4621 R Programming Basic Building Blocks
+## 4622 R Programming Basic Building Blocks
+## 4623 R Programming Basic Building Blocks
+## 4624 R Programming Basic Building Blocks
+## 4625 R Programming Basic Building Blocks
+## 4626 R Programming Basic Building Blocks
+## 4627 R Programming Basic Building Blocks
+## 4628 R Programming Basic Building Blocks
+## 4629 R Programming Basic Building Blocks
+## 4630 R Programming Basic Building Blocks
+## 4631 R Programming Basic Building Blocks
+## 4632 R Programming Basic Building Blocks
+## 4633 R Programming Basic Building Blocks
+## 4634 R Programming Basic Building Blocks
+## 4635 R Programming Basic Building Blocks
+## 4636 R Programming Basic Building Blocks
+## question_number correct attempt skipped datetime hash
+## 1 18 TRUE 1 FALSE 1505668097 30802
+## 2 11 TRUE 1 FALSE 1505668820 30802
+## 3 14 TRUE 1 FALSE 1505150483 30802
+## 4 17 TRUE 1 FALSE 1505668087 30802
+## 5 22 TRUE 1 FALSE 1505668145 30802
+## 6 5 TRUE 1 FALSE 1505177316 30802
+## 7 9 TRUE 1 FALSE 1505668784 30802
+## 8 15 TRUE 1 FALSE 1505668080 30802
+## 9 14 TRUE 1 FALSE 1505668039 30802
+## 10 16 TRUE 1 FALSE 1505668085 30802
+## 11 15 TRUE 1 FALSE 1505150496 30802
+## 12 22 TRUE 1 FALSE 1505180408 30802
+## 13 12 TRUE 1 FALSE 1505150412 30802
+## 14 19 TRUE 2 FALSE 1505180081 30802
+## 15 6 TRUE 1 FALSE 1505177807 30802
+## 16 31 TRUE 1 FALSE 1505505498 30802
+## 17 20 TRUE 1 FALSE 1505668128 30802
+## 18 23 TRUE 1 FALSE 1505505368 30802
+## 19 24 TRUE 1 FALSE 1505668172 30802
+## 20 27 TRUE 1 FALSE 1505505439 30802
+## 21 23 TRUE 1 FALSE 1505668154 30802
+## 22 19 TRUE 1 FALSE 1505668109 30802
+## 23 22 TRUE 1 FALSE 1505505353 30802
+## 24 5 TRUE 1 FALSE 1505668637 30802
+## 25 26 TRUE 1 FALSE 1505505410 30802
+## 26 11 TRUE 1 FALSE 1505150407 30802
+## 27 23 TRUE 1 FALSE 1505180420 30802
+## 28 39 TRUE 1 FALSE 1505508769 30802
+## 29 16 TRUE 1 FALSE 1505150503 30802
+## 30 8 TRUE 1 FALSE 1505177826 30802
+## 31 9 TRUE 1 FALSE 1505177833 30802
+## 32 33 TRUE 1 FALSE 1505505552 30802
+## 33 27 TRUE 1 FALSE 1505668234 30802
+## 34 11 TRUE 1 FALSE 1505177897 30802
+## 35 28 TRUE 1 FALSE 1505668329 30802
+## 36 29 TRUE 1 FALSE 1505668332 30802
+## 37 18 TRUE 1 FALSE 1505180008 30802
+## 38 29 TRUE 1 FALSE 1505505481 30802
+## 39 30 TRUE 1 FALSE 1505505488 30802
+## 40 10 TRUE 1 FALSE 1505150391 30802
+## 41 38 TRUE 1 FALSE 1505668506 30802
+## 42 17 TRUE 1 FALSE 1505150536 30802
+## 43 32 TRUE 1 FALSE 1505505524 30802
+## 44 43 TRUE 1 FALSE 1505508836 30802
+## 45 10 TRUE 1 FALSE 1505177848 30802
+## 46 34 TRUE 1 FALSE 1505505585 30802
+## 47 36 TRUE 2 FALSE 1505508687 30802
+## 48 21 TRUE 1 FALSE 1505505335 30802
+## 49 8 TRUE 1 FALSE 1505668764 30802
+## 50 38 TRUE 1 FALSE 1505508738 30802
+## 51 37 TRUE 1 FALSE 1505668503 30802
+## 52 17 TRUE 1 FALSE 1505179996 30802
+## 53 3 TRUE 1 FALSE 1505150315 30802
+## 54 41 TRUE 1 FALSE 1505508818 30802
+## 55 42 TRUE 1 FALSE 1505508833 30802
+## 56 8 TRUE 1 FALSE 1505504577 30802
+## 57 33 TRUE 2 FALSE 1505508597 30802
+## 58 31 TRUE 1 FALSE 1505178719 30802
+## 59 36 TRUE 1 FALSE 1505505616 30802
+## 60 14 TRUE 1 FALSE 1505178060 30802
+## 61 13 TRUE 1 FALSE 1505667996 30802
+## 62 37 TRUE 1 FALSE 1505508710 30802
+## 63 8 TRUE 1 FALSE 1505150377 30802
+## 64 35 TRUE 1 FALSE 1505668479 30802
+## 65 4 TRUE 1 FALSE 1505504072 30802
+## 66 6 TRUE 1 FALSE 1505504512 30802
+## 67 7 TRUE 1 FALSE 1505504524 30802
+## 68 9 TRUE 1 FALSE 1505505018 30802
+## 69 46 TRUE 1 FALSE 1505508887 30802
+## 70 35 TRUE 1 FALSE 1505508619 30802
+## 71 8 TRUE 1 FALSE 1505667946 30802
+## 72 9 TRUE 1 FALSE 1505667952 30802
+## 73 12 TRUE 1 FALSE 1505667992 30802
+## 74 3 TRUE 1 FALSE 1505668596 30802
+## 75 33 TRUE 1 FALSE 1505668387 30802
+## 76 27 TRUE 1 FALSE 1505508314 30802
+## 77 32 TRUE 1 FALSE 1505668370 30802
+## 78 3 TRUE 1 FALSE 1505504063 30802
+## 79 22 TRUE 1 FALSE 1505178497 30802
+## 80 23 TRUE 1 FALSE 1505178514 30802
+## 81 13 TRUE 1 FALSE 1505668950 30802
+## 82 18 TRUE 1 FALSE 1505150553 30802
+## 83 21 TRUE 1 FALSE 1505150627 30802
+## 84 22 TRUE 1 FALSE 1505150760 30802
+## 85 37 TRUE 1 FALSE 1505505623 30802
+## 86 11 TRUE 1 FALSE 1505667988 30802
+## 87 17 TRUE 1 FALSE 1505505244 30802
+## 88 8 TRUE 1 FALSE 1505179715 30802
+## 89 11 TRUE 1 FALSE 1505179880 30802
+## 90 41 TRUE 1 FALSE 1505179388 30802
+## 91 28 TRUE 1 FALSE 1505508324 30802
+## 92 25 TRUE 1 FALSE 1505178537 30802
+## 93 33 TRUE 1 FALSE 1505178902 30802
+## 94 9 TRUE 1 FALSE 1505504608 30802
+## 95 34 TRUE 1 FALSE 1505179229 30802
+## 96 35 TRUE 1 FALSE 1505179346 30802
+## 97 38 TRUE 1 FALSE 1505505639 30802
+## 98 15 TRUE 2 FALSE 1505178264 30802
+## 99 17 TRUE 1 FALSE 1505178420 30802
+## 100 30 TRUE 1 FALSE 1505668342 30802
+## 101 19 TRUE 1 FALSE 1505178443 30802
+## 102 21 TRUE 1 FALSE 1505178476 30802
+## 103 6 TRUE 1 FALSE 1505507898 30802
+## 104 30 TRUE 1 FALSE 1505508376 30802
+## 105 32 TRUE 1 FALSE 1505508519 30802
+## 106 7 TRUE 1 FALSE 1505667902 30802
+## 107 11 TRUE 1 FALSE 1505505062 30802
+## 108 13 TRUE 1 FALSE 1505505169 30802
+## 109 14 TRUE 1 FALSE 1505505178 30802
+## 110 15 TRUE 1 FALSE 1505505199 30802
+## 111 7 TRUE 1 FALSE 1505179705 30802
+## 112 41 TRUE 1 FALSE 1505505659 30802
+## 113 40 TRUE 1 FALSE 1505179385 30802
+## 114 19 TRUE 1 FALSE 1505504738 30802
+## 115 20 TRUE 1 FALSE 1505504751 30802
+## 116 21 TRUE 1 FALSE 1505504765 30802
+## 117 7 TRUE 1 FALSE 1505507907 30802
+## 118 9 TRUE 1 FALSE 1505507931 30802
+## 119 25 TRUE 1 FALSE 1505180457 30802
+## 120 44 TRUE 1 FALSE 1505508850 30802
+## 121 47 TRUE 1 FALSE 1505508901 30802
+## 122 23 TRUE 1 FALSE 1505150771 30802
+## 123 25 TRUE 1 FALSE 1505150856 30802
+## 124 40 TRUE 1 FALSE 1505505656 30802
+## 125 18 TRUE 1 FALSE 1505508174 30802
+## 126 26 TRUE 2 FALSE 1505151065 30802
+## 127 27 TRUE 1 FALSE 1505151073 30802
+## 128 31 TRUE 1 FALSE 1505151209 30802
+## 129 4 TRUE 1 FALSE 1505507870 30802
+## 130 22 TRUE 1 FALSE 1505504770 30802
+## 131 27 TRUE 1 FALSE 1505178618 30802
+## 132 29 TRUE 1 FALSE 1505178691 30802
+## 133 14 TRUE 1 FALSE 1505507990 30802
+## 134 32 TRUE 1 FALSE 1505178893 30802
+## 135 15 TRUE 2 FALSE 1505508127 30802
+## 136 17 TRUE 1 FALSE 1505508146 30802
+## 137 17 TRUE 1 FALSE 1505504715 30802
+## 138 18 TRUE 1 FALSE 1505504726 30802
+## 139 20 TRUE 1 FALSE 1505508208 30802
+## 140 21 TRUE 1 FALSE 1505508246 30802
+## 141 32 TRUE 1 FALSE 1505669957 30802
+## 142 5 TRUE 1 FALSE 1505504860 30802
+## 143 10 TRUE 1 FALSE 1505505060 30802
+## 144 5 TRUE 1 FALSE 1505667882 30802
+## 145 16 TRUE 1 FALSE 1505669377 30802
+## 146 5 TRUE 1 FALSE 1505179608 30802
+## 147 6 TRUE 1 FALSE 1505179665 30802
+## 148 12 TRUE 1 FALSE 1505504652 30802
+## 149 21 TRUE 1 FALSE 1505669440 30802
+## 150 23 TRUE 1 FALSE 1505669470 30802
+## 151 25 TRUE 1 FALSE 1505669494 30802
+## 152 27 TRUE 1 FALSE 1505669841 30802
+## 153 23 TRUE 1 FALSE 1505508277 30802
+## 154 50 TRUE 1 FALSE 1505672296 30802
+## 155 34 TRUE 2 TRUE 1505670450 30802
+## 156 10 TRUE 1 FALSE 1505507943 30802
+## 157 14 TRUE 1 FALSE 1505668971 30802
+## 158 13 TRUE 1 FALSE 1505507972 30802
+## 159 17 TRUE 1 FALSE 1505669386 30802
+## 160 19 TRUE 1 FALSE 1505669412 30802
+## 161 49 TRUE 1 FALSE 1505508929 30802
+## 162 40 TRUE 1 FALSE 1505671468 30802
+## 163 41 TRUE 1 FALSE 1505671634 30802
+## 164 42 TRUE 1 FALSE 1505671852 30802
+## 165 53 TRUE 1 FALSE 1505508985 30802
+## 166 28 TRUE 1 FALSE 1505669919 30802
+## 167 40 TRUE 1 FALSE 1505180835 30802
+## 168 51 TRUE 1 FALSE 1505672299 30802
+## 169 3 TRUE 1 FALSE 1505667847 30802
+## 170 12 TRUE 1 FALSE 1505507959 30802
+## 171 8 TRUE 1 FALSE 1505505005 30802
+## 172 36 TRUE 1 FALSE 1505670813 30802
+## 173 10 TRUE 1 FALSE 1505504615 30802
+## 174 30 TRUE 1 FALSE 1505180585 30802
+## 175 32 TRUE 1 FALSE 1505180624 30802
+## 176 33 TRUE 1 FALSE 1505151244 30802
+## 177 43 TRUE 1 FALSE 1505672034 30802
+## 178 47 TRUE 1 FALSE 1505672247 30802
+## 179 29 TRUE 1 FALSE 1505180522 30802
+## 180 4 TRUE 1 FALSE 1505667873 30802
+## 181 28 TRUE 1 FALSE 1505180515 30802
+## 182 48 TRUE 1 FALSE 1505672288 30802
+## 183 40 TRUE 1 FALSE 1505151347 30802
+## 184 38 TRUE 1 FALSE 1505670847 30802
+## 185 35 TRUE 4 FALSE 1505670800 30802
+## 186 54 TRUE 1 FALSE 1505508987 30802
+## 187 35 TRUE 1 FALSE 1505180807 30802
+## 188 39 TRUE 1 FALSE 1505180831 30802
+## 189 3 TRUE 1 FALSE 1505504832 30802
+## 190 36 TRUE 1 FALSE 1505151281 30802
+## 191 38 TRUE 1 FALSE 1505151324 30802
+## 192 39 TRUE 1 FALSE 1505151342 30802
+## 193 33 TRUE 2 FALSE 1505180782 30802
+## 194 50 TRUE 1 FALSE 1505508934 30802
+## 195 51 TRUE 1 FALSE 1505508975 30802
+## 196 21 TRUE 1 FALSE 1505149531 78719
+## 197 17 TRUE 1 FALSE 1505221985 78719
+## 198 9 TRUE 2 FALSE 1505221720 78719
+## 199 18 TRUE 1 FALSE 1505149462 78719
+## 200 6 TRUE 1 FALSE 1505846961 78719
+## 201 8 TRUE 1 FALSE 1505846987 78719
+## 202 10 TRUE 2 FALSE 1505221769 78719
+## 203 8 TRUE 1 FALSE 1505221667 78719
+## 204 53 TRUE 2 FALSE 1505854533 78719
+## 205 40 TRUE 1 FALSE 1505223714 78719
+## 206 41 TRUE 1 FALSE 1505223721 78719
+## 207 12 TRUE 1 FALSE 1505221839 78719
+## 208 15 TRUE 1 FALSE 1505847754 78719
+## 209 11 TRUE 1 FALSE 1505847160 78719
+## 210 54 TRUE 3 FALSE 1505854925 78719
+## 211 7 TRUE 1 FALSE 1505221630 78719
+## 212 3 TRUE 1 FALSE 1505846768 78719
+## 213 38 TRUE 1 FALSE 1505223700 78719
+## 214 4 TRUE 1 FALSE 1505221564 78719
+## 215 7 TRUE 1 FALSE 1505330479 78719
+## 216 3 TRUE 1 FALSE 1505222723 78719
+## 217 8 TRUE 1 FALSE 1505330518 78719
+## 218 12 TRUE 1 FALSE 1505847281 78719
+## 219 9 TRUE 2 FALSE 1505330533 78719
+## 220 18 TRUE 1 FALSE 1505222013 78719
+## 221 6 TRUE 1 FALSE 1505221609 78719
+## 222 17 TRUE 3 FALSE 1505149441 78719
+## 223 40 TRUE 1 FALSE 1505348999 78719
+## 224 37 TRUE 1 FALSE 1505223683 78719
+## 225 3 TRUE 1 FALSE 1505221554 78719
+## 226 17 TRUE 1 FALSE 1505958769 78719
+## 227 54 TRUE 1 FALSE 1505957495 78719
+## 228 5 TRUE 1 FALSE 1505222795 78719
+## 229 49 TRUE 1 FALSE 1505330220 78719
+## 230 3 TRUE 1 FALSE 1505149005 78719
+## 231 18 TRUE 1 FALSE 1505848765 78719
+## 232 19 TRUE 1 FALSE 1505848769 78719
+## 233 52 TRUE 1 FALSE 1505854229 78719
+## 234 15 TRUE 1 FALSE 1505958715 78719
+## 235 16 TRUE 1 FALSE 1505958740 78719
+## 236 21 TRUE 1 FALSE 1505222143 78719
+## 237 22 TRUE 1 FALSE 1505222145 78719
+## 238 7 TRUE 1 FALSE 1505227575 78719
+## 239 11 TRUE 2 FALSE 1505330582 78719
+## 240 36 TRUE 1 FALSE 1505223668 78719
+## 241 34 TRUE 1 FALSE 1505223642 78719
+## 242 48 TRUE 1 FALSE 1505854040 78719
+## 243 20 TRUE 2 FALSE 1505222132 78719
+## 244 38 TRUE 1 FALSE 1505348577 78719
+## 245 6 TRUE 1 FALSE 1505227563 78719
+## 246 28 TRUE 1 FALSE 1505849721 78719
+## 247 41 TRUE 1 FALSE 1505349050 78719
+## 248 35 TRUE 1 FALSE 1505956456 78719
+## 249 56 TRUE 1 FALSE 1505854932 78719
+## 250 12 TRUE 1 FALSE 1505330588 78719
+## 251 19 TRUE 1 FALSE 1505222094 78719
+## 252 33 TRUE 1 FALSE 1505223610 78719
+## 253 15 TRUE 1 FALSE 1505149230 78719
+## 254 16 TRUE 1 FALSE 1505149334 78719
+## 255 21 TRUE 1 FALSE 1505848949 78719
+## 256 24 TRUE 1 FALSE 1505849293 78719
+## 257 25 TRUE 1 FALSE 1505849350 78719
+## 258 4 TRUE 1 FALSE 1505330436 78719
+## 259 9 TRUE 1 FALSE 1505227625 78719
+## 260 26 TRUE 1 FALSE 1505223421 78719
+## 261 12 TRUE 1 FALSE 1505227670 78719
+## 262 57 TRUE 1 FALSE 1505854934 78719
+## 263 20 TRUE 2 FALSE 1505848850 78719
+## 264 15 TRUE 1 FALSE 1505330714 78719
+## 265 47 TRUE 1 FALSE 1505853977 78719
+## 266 36 TRUE 1 FALSE 1505348531 78719
+## 267 4 TRUE 1 FALSE 1505227518 78719
+## 268 34 TRUE 1 FALSE 1505211690 78719
+## 269 5 TRUE 1 FALSE 1505330454 78719
+## 270 29 TRUE 1 FALSE 1505850938 78719
+## 271 10 TRUE 1 FALSE 1505227649 78719
+## 272 8 TRUE 1 FALSE 1505222897 78719
+## 273 22 TRUE 1 FALSE 1505211375 78719
+## 274 23 TRUE 1 FALSE 1505211409 78719
+## 275 25 TRUE 1 FALSE 1505211429 78719
+## 276 14 TRUE 1 FALSE 1505149194 78719
+## 277 32 TRUE 2 FALSE 1505223574 78719
+## 278 31 TRUE 1 FALSE 1505211562 78719
+## 279 32 TRUE 1 FALSE 1505211601 78719
+## 280 33 TRUE 1 FALSE 1505211626 78719
+## 281 32 TRUE 1 FALSE 1505956336 78719
+## 282 35 TRUE 1 FALSE 1505211809 78719
+## 283 34 TRUE 1 FALSE 1505956441 78719
+## 284 23 TRUE 1 FALSE 1505223369 78719
+## 285 44 TRUE 1 FALSE 1505329967 78719
+## 286 8 TRUE 1 FALSE 1505149079 78719
+## 287 10 TRUE 1 FALSE 1505149107 78719
+## 288 11 TRUE 1 FALSE 1505149128 78719
+## 289 13 TRUE 1 FALSE 1505330596 78719
+## 290 14 TRUE 1 FALSE 1505330655 78719
+## 291 53 TRUE 1 FALSE 1505330265 78719
+## 292 19 TRUE 1 FALSE 1505218430 78719
+## 293 3 TRUE 1 FALSE 1505330423 78719
+## 294 11 TRUE 1 FALSE 1505958600 78719
+## 295 14 TRUE 1 FALSE 1505211104 78719
+## 296 48 TRUE 2 FALSE 1505501274 78719
+## 297 49 TRUE 1 FALSE 1505501316 78719
+## 298 50 TRUE 1 FALSE 1505501323 78719
+## 299 22 TRUE 1 FALSE 1505149572 78719
+## 300 12 TRUE 1 FALSE 1505149131 78719
+## 301 51 TRUE 1 FALSE 1505330252 78719
+## 302 26 TRUE 1 FALSE 1505149651 78719
+## 303 54 TRUE 1 FALSE 1505330268 78719
+## 304 31 TRUE 1 FALSE 1505149765 78719
+## 305 33 TRUE 1 FALSE 1505149808 78719
+## 306 40 TRUE 1 FALSE 1505211825 78719
+## 307 40 TRUE 1 FALSE 1505150019 78719
+## 308 9 TRUE 1 FALSE 1505222908 78719
+## 309 23 TRUE 1 FALSE 1505149583 78719
+## 310 25 TRUE 1 FALSE 1505149631 78719
+## 311 11 TRUE 1 FALSE 1505218270 78719
+## 312 27 TRUE 1 FALSE 1505149659 78719
+## 313 18 TRUE 1 FALSE 1505218399 78719
+## 314 27 TRUE 1 FALSE 1505956039 78719
+## 315 31 TRUE 1 FALSE 1505956252 78719
+## 316 33 TRUE 1 FALSE 1505956349 78719
+## 317 42 TRUE 2 FALSE 1505329912 78719
+## 318 43 TRUE 1 FALSE 1505329930 78719
+## 319 34 TRUE 1 FALSE 1505853128 78719
+## 320 46 TRUE 1 FALSE 1505330065 78719
+## 321 47 TRUE 1 FALSE 1505330183 78719
+## 322 37 TRUE 1 FALSE 1505500900 78719
+## 323 50 TRUE 1 FALSE 1505330232 78719
+## 324 31 TRUE 1 FALSE 1505223521 78719
+## 325 35 TRUE 2 FALSE 1505348494 78719
+## 326 13 TRUE 1 FALSE 1505958637 78719
+## 327 11 TRUE 1 FALSE 1505211045 78719
+## 328 47 TRUE 1 FALSE 1505501221 78719
+## 329 15 TRUE 2 FALSE 1505211213 78719
+## 330 20 TRUE 1 FALSE 1505958974 78719
+## 331 22 TRUE 1 FALSE 1505959019 78719
+## 332 42 TRUE 3 FALSE 1505351365 78719
+## 333 43 TRUE 1 FALSE 1505351491 78719
+## 334 47 TRUE 2 FALSE 1505352624 78719
+## 335 48 TRUE 2 FALSE 1505352687 78719
+## 336 50 TRUE 1 FALSE 1505352699 78719
+## 337 51 TRUE 1 FALSE 1505352701 78719
+## 338 39 TRUE 1 FALSE 1505150014 78719
+## 339 5 TRUE 1 FALSE 1505218072 78719
+## 340 6 TRUE 1 FALSE 1505218155 78719
+## 341 7 TRUE 1 FALSE 1505218209 78719
+## 342 8 TRUE 1 FALSE 1505218216 78719
+## 343 11 TRUE 1 FALSE 1505222936 78719
+## 344 17 TRUE 1 FALSE 1505218390 78719
+## 345 14 TRUE 1 FALSE 1505223089 78719
+## 346 15 TRUE 1 FALSE 1505223104 78719
+## 347 17 TRUE 1 FALSE 1505223144 78719
+## 348 21 TRUE 2 FALSE 1505223293 78719
+## 349 22 TRUE 1 FALSE 1505223332 78719
+## 350 6 TRUE 1 FALSE 1505495400 78719
+## 351 37 TRUE 1 FALSE 1505853279 78719
+## 352 27 TRUE 1 FALSE 1505223449 78719
+## 353 29 TRUE 1 FALSE 1505223480 78719
+## 354 30 TRUE 1 FALSE 1505223491 78719
+## 355 5 TRUE 1 FALSE 1505210978 78719
+## 356 6 TRUE 1 FALSE 1505210983 78719
+## 357 8 TRUE 1 FALSE 1505211003 78719
+## 358 9 TRUE 1 FALSE 1505211009 78719
+## 359 10 TRUE 1 FALSE 1505211026 78719
+## 360 40 TRUE 1 FALSE 1505219124 78719
+## 361 21 TRUE 1 FALSE 1505496128 78719
+## 362 22 TRUE 1 FALSE 1505496201 78719
+## 363 26 TRUE 1 FALSE 1505496331 78719
+## 364 17 TRUE 1 FALSE 1505211244 78719
+## 365 19 TRUE 1 FALSE 1505211267 78719
+## 366 21 TRUE 1 FALSE 1505211334 78719
+## 367 19 TRUE 1 FALSE 1506086651 78719
+## 368 20 TRUE 1 FALSE 1506086720 78719
+## 369 21 TRUE 1 FALSE 1506086943 78719
+## 370 27 TRUE 1 FALSE 1505211462 78719
+## 371 29 TRUE 1 FALSE 1505211518 78719
+## 372 28 TRUE 1 FALSE 1506087674 78719
+## 373 29 TRUE 1 FALSE 1506087894 78719
+## 374 30 TRUE 2 FALSE 1506088429 78719
+## 375 36 TRUE 4 FALSE 1505149950 78719
+## 376 38 TRUE 1 FALSE 1505150007 78719
+## 377 20 TRUE 1 FALSE 1505330845 78719
+## 378 22 TRUE 1 FALSE 1505330919 78719
+## 379 10 TRUE 1 FALSE 1505222932 78719
+## 380 22 TRUE 1 FALSE 1505955836 78719
+## 381 13 TRUE 1 FALSE 1505223072 78719
+## 382 25 TRUE 1 FALSE 1505955920 78719
+## 383 26 TRUE 1 FALSE 1505956019 78719
+## 384 46 TRUE 1 FALSE 1506091101 78719
+## 385 22 TRUE 1 FALSE 1505218536 78719
+## 386 23 TRUE 1 FALSE 1505218543 78719
+## 387 25 TRUE 1 FALSE 1505218604 78719
+## 388 28 TRUE 1 FALSE 1505218681 78719
+## 389 29 TRUE 1 FALSE 1505218688 78719
+## 390 30 TRUE 2 FALSE 1505218717 78719
+## 391 32 TRUE 1 FALSE 1505218785 78719
+## 392 33 TRUE 2 FALSE 1505218937 78719
+## 393 35 TRUE 1 FALSE 1505219019 78719
+## 394 39 TRUE 1 FALSE 1505219121 78719
+## 395 46 TRUE 2 FALSE 1505853916 78719
+## 396 51 TRUE 1 FALSE 1505957476 78719
+## 397 53 TRUE 1 FALSE 1505957488 78719
+## 398 6 TRUE 1 FALSE 1506086085 78719
+## 399 27 TRUE 1 FALSE 1505496336 78719
+## 400 30 TRUE 1 FALSE 1505496394 78719
+## 401 33 TRUE 1 FALSE 1505496491 78719
+## 402 53 TRUE 1 FALSE 1505501386 78719
+## 403 55 TRUE 1 FALSE 1505501455 78719
+## 404 56 TRUE 2 FALSE 1505501591 78719
+## 405 57 TRUE 2 FALSE 1505501659 78719
+## 406 61 TRUE 1 FALSE 1505501700 78719
+## 407 16 TRUE 2 FALSE 1505330738 78719
+## 408 31 TRUE 1 FALSE 1506088629 78719
+## 409 41 TRUE 1 FALSE 1505211829 78719
+## 410 16 TRUE 2 FALSE 1505955250 78719
+## 411 17 TRUE 1 FALSE 1505955256 78719
+## 412 21 TRUE 1 FALSE 1505955414 78719
+## 413 23 TRUE 1 FALSE 1505330961 78719
+## 414 23 TRUE 1 FALSE 1505955847 78719
+## 415 30 TRUE 8 FALSE 1505851908 78719
+## 416 47 TRUE 1 FALSE 1506091126 78719
+## 417 32 TRUE 1 FALSE 1505852056 78719
+## 418 33 TRUE 2 FALSE 1505852708 78719
+## 419 38 TRUE 1 FALSE 1505331347 78719
+## 420 23 TRUE 1 FALSE 1505347519 78719
+## 421 25 TRUE 1 FALSE 1505347564 78719
+## 422 27 TRUE 1 FALSE 1505347811 78719
+## 423 28 TRUE 1 FALSE 1505347847 78719
+## 424 32 TRUE 1 FALSE 1505347945 78719
+## 425 34 TRUE 2 FALSE 1505348287 78719
+## 426 18 TRUE 1 FALSE 1505496007 78719
+## 427 10 TRUE 1 FALSE 1505958584 78719
+## 428 3 TRUE 1 FALSE 1506086075 78719
+## 429 46 TRUE 1 FALSE 1505501186 78719
+## 430 8 TRUE 1 FALSE 1506086148 78719
+## 431 11 TRUE 1 FALSE 1506086223 78719
+## 432 12 TRUE 1 FALSE 1506086343 78719
+## 433 26 TRUE 1 FALSE 1505959075 78719
+## 434 5 TRUE 1 FALSE 1506004825 78719
+## 435 7 TRUE 1 FALSE 1506004878 78719
+## 436 9 TRUE 2 FALSE 1506005509 78719
+## 437 11 TRUE 1 FALSE 1506005685 78719
+## 438 16 TRUE 1 FALSE 1506005864 78719
+## 439 17 TRUE 1 FALSE 1505330749 78719
+## 440 18 TRUE 1 FALSE 1505330760 78719
+## 441 19 TRUE 1 FALSE 1505330806 78719
+## 442 33 TRUE 2 FALSE 1506090248 78719
+## 443 34 TRUE 1 FALSE 1506090619 78719
+## 444 27 TRUE 1 FALSE 1506006586 78719
+## 445 39 TRUE 1 FALSE 1506090890 78719
+## 446 28 TRUE 1 FALSE 1506006963 78719
+## 447 31 TRUE 1 FALSE 1506007028 78719
+## 448 31 TRUE 1 FALSE 1505852010 78719
+## 449 3 TRUE 2 FALSE 1505495349 78719
+## 450 4 TRUE 1 FALSE 1505495362 78719
+## 451 5 TRUE 1 FALSE 1505495372 78719
+## 452 35 TRUE 1 FALSE 1506007061 78719
+## 453 7 TRUE 1 FALSE 1505495433 78719
+## 454 9 TRUE 1 FALSE 1505495458 78719
+## 455 10 TRUE 1 FALSE 1505495488 78719
+## 456 12 TRUE 1 FALSE 1505495631 78719
+## 457 13 TRUE 1 FALSE 1505495740 78719
+## 458 14 TRUE 1 FALSE 1505495791 78719
+## 459 16 TRUE 1 FALSE 1505495846 78719
+## 460 17 TRUE 1 FALSE 1505495958 78719
+## 461 50 TRUE 1 FALSE 1505957446 78719
+## 462 44 TRUE 1 FALSE 1505501107 78719
+## 463 45 TRUE 1 FALSE 1505501160 78719
+## 464 10 TRUE 1 FALSE 1505954807 78719
+## 465 11 TRUE 1 FALSE 1505954822 78719
+## 466 32 TRUE 1 FALSE 1506088657 78719
+## 467 13 TRUE 1 FALSE 1505227687 78719
+## 468 14 TRUE 1 FALSE 1505227699 78719
+## 469 5 TRUE 1 FALSE 1505954593 78719
+## 470 6 TRUE 2 FALSE 1505954716 78719
+## 471 7 TRUE 1 FALSE 1505954728 78719
+## 472 8 TRUE 1 FALSE 1505954730 78719
+## 473 9 TRUE 1 FALSE 1505954743 78719
+## 474 34 TRUE 1 FALSE 1505845472 78719
+## 475 35 TRUE 1 FALSE 1505845478 78719
+## 476 37 TRUE 1 FALSE 1505845488 78719
+## 477 38 TRUE 1 FALSE 1505845493 78719
+## 478 19 TRUE 2 FALSE 1506006177 78719
+## 479 20 TRUE 1 FALSE 1506006215 78719
+## 480 37 TRUE 1 FALSE 1506090824 78719
+## 481 38 TRUE 1 FALSE 1506090859 78719
+## 482 24 TRUE 1 FALSE 1505330976 78719
+## 483 42 TRUE 1 FALSE 1506090976 78719
+## 484 43 TRUE 1 FALSE 1506090979 78719
+## 485 30 TRUE 1 FALSE 1505845421 78719
+## 486 33 TRUE 1 FALSE 1505845453 78719
+## 487 20 TRUE 1 FALSE 1505228732 78719
+## 488 62 TRUE 1 FALSE 1505501701 78719
+## 489 17 TRUE 1 FALSE 1506005908 78719
+## 490 39 TRUE 1 FALSE 1505956742 78719
+## 491 42 TRUE 1 FALSE 1505956923 78719
+## 492 43 TRUE 1 FALSE 1505957091 78719
+## 493 45 TRUE 1 FALSE 1505957113 78719
+## 494 48 TRUE 1 FALSE 1505957336 78719
+## 495 49 TRUE 1 FALSE 1505957391 78719
+## 496 9 TRUE 1 FALSE 1505958570 78719
+## 497 30 TRUE 1 FALSE 1505331167 78719
+## 498 32 TRUE 1 FALSE 1505331228 78719
+## 499 33 TRUE 1 FALSE 1505331248 78719
+## 500 35 TRUE 1 FALSE 1505331315 78719
+## 501 15 TRUE 1 FALSE 1506086441 78719
+## 502 27 TRUE 1 FALSE 1505959078 78719
+## 503 34 TRUE 2 FALSE 1505496624 78719
+## 504 15 TRUE 2 FALSE 1505228613 78719
+## 505 17 TRUE 1 FALSE 1505228645 78719
+## 506 18 TRUE 1 FALSE 1505228692 78719
+## 507 24 TRUE 1 FALSE 1506087274 78719
+## 508 25 TRUE 1 FALSE 1506087284 78719
+## 509 21 TRUE 1 FALSE 1505228790 78719
+## 510 23 TRUE 1 FALSE 1505228855 78719
+## 511 37 TRUE 1 FALSE 1505331345 78719
+## 512 14 TRUE 2 FALSE 1505954976 78719
+## 513 16 TRUE 1 FALSE 1505844732 78719
+## 514 21 TRUE 1 FALSE 1506006309 78719
+## 515 25 TRUE 1 FALSE 1506006523 78719
+## 516 26 TRUE 1 FALSE 1506006538 78719
+## 517 27 TRUE 1 FALSE 1505331048 78719
+## 518 28 TRUE 1 FALSE 1505331140 78719
+## 519 29 TRUE 1 FALSE 1505331150 78719
+## 520 27 TRUE 1 FALSE 1505844996 78719
+## 521 32 TRUE 1 FALSE 1506007037 78719
+## 522 33 TRUE 1 FALSE 1506007043 78719
+## 523 27 TRUE 1 FALSE 1505329142 78719
+## 524 19 TRUE 1 FALSE 1505347429 78719
+## 525 21 TRUE 1 FALSE 1505347466 78719
+## 526 38 TRUE 2 FALSE 1505853433 78719
+## 527 39 TRUE 1 FALSE 1505853508 78719
+## 528 42 TRUE 1 FALSE 1505853693 78719
+## 529 43 TRUE 1 FALSE 1505853702 78719
+## 530 41 TRUE 1 FALSE 1505501022 78719
+## 531 8 TRUE 1 FALSE 1505958562 78719
+## 532 37 TRUE 1 FALSE 1505496650 78719
+## 533 4 TRUE 1 FALSE 1505844594 78719
+## 534 6 TRUE 1 FALSE 1505844624 78719
+## 535 34 TRUE 1 FALSE 1506007048 78719
+## 536 10 TRUE 1 FALSE 1505844664 78719
+## 537 12 TRUE 1 FALSE 1505844684 78719
+## 538 13 TRUE 1 FALSE 1505844691 78719
+## 539 18 TRUE 2 FALSE 1506086647 78719
+## 540 18 TRUE 1 FALSE 1505844857 78719
+## 541 21 TRUE 1 FALSE 1505844901 78719
+## 542 35 TRUE 1 FALSE 1505496631 78719
+## 543 3 TRUE 1 FALSE 1505844582 78719
+## 544 3 TRUE 2 FALSE 1505346308 78719
+## 545 38 TRUE 3 FALSE 1505329730 78719
+## 546 39 TRUE 1 FALSE 1505329782 78719
+## 547 7 TRUE 1 FALSE 1505844639 78719
+## 548 30 TRUE 1 FALSE 1505499580 78719
+## 549 36 TRUE 2 FALSE 1506007123 78719
+## 550 17 TRUE 1 FALSE 1505844816 78719
+## 551 39 TRUE 1 FALSE 1506007135 78719
+## 552 22 TRUE 1 FALSE 1505844943 78719
+## 553 26 TRUE 1 FALSE 1505844989 78719
+## 554 6 TRUE 1 FALSE 1505958509 78719
+## 555 36 TRUE 1 FALSE 1505329632 78719
+## 556 37 TRUE 1 FALSE 1505329666 78719
+## 557 5 TRUE 1 FALSE 1505346366 78719
+## 558 41 TRUE 1 FALSE 1505329873 78719
+## 559 9 TRUE 1 FALSE 1505844649 78719
+## 560 6 TRUE 1 FALSE 1505498707 78719
+## 561 7 TRUE 1 FALSE 1505498747 78719
+## 562 38 TRUE 1 FALSE 1506007131 78719
+## 563 14 TRUE 1 FALSE 1505844720 78719
+## 564 32 TRUE 1 FALSE 1505329489 78719
+## 565 39 TRUE 1 FALSE 1505500932 78719
+## 566 40 TRUE 1 FALSE 1505500954 78719
+## 567 12 TRUE 1 FALSE 1505498930 78719
+## 568 16 TRUE 1 FALSE 1505499123 78719
+## 569 18 TRUE 1 FALSE 1505499226 78719
+## 570 5 TRUE 1 FALSE 1505844610 78719
+## 571 28 TRUE 1 FALSE 1505499490 78719
+## 572 13 TRUE 1 FALSE 1505347051 78719
+## 573 33 TRUE 1 FALSE 1505499862 78719
+## 574 8 TRUE 1 FALSE 1505498788 78719
+## 575 35 TRUE 1 FALSE 1505499995 78719
+## 576 36 TRUE 1 FALSE 1505500071 78719
+## 577 33 TRUE 1 FALSE 1505329568 78719
+## 578 35 TRUE 1 FALSE 1505329608 78719
+## 579 10 TRUE 1 FALSE 1505498875 78719
+## 580 4 TRUE 1 FALSE 1505498686 78719
+## 581 5 TRUE 1 FALSE 1505498695 78719
+## 582 27 TRUE 1 FALSE 1505499461 78719
+## 583 8 TRUE 1 FALSE 1505346618 78719
+## 584 16 TRUE 1 FALSE 1505347366 78719
+## 585 28 TRUE 1 FALSE 1505329182 78719
+## 586 57 TRUE 1 FALSE 1506091673 78719
+## 587 34 TRUE 1 FALSE 1505499901 78719
+## 588 56 TRUE 1 FALSE 1506091671 78719
+## 589 9 TRUE 1 FALSE 1505346658 78719
+## 590 11 TRUE 1 FALSE 1505346735 78719
+## 591 4 TRUE 1 FALSE 1505958381 78719
+## 592 48 TRUE 1 FALSE 1506091241 78719
+## 593 17 TRUE 1 FALSE 1505347402 78719
+## 594 26 TRUE 1 FALSE 1505499403 78719
+## 595 14 TRUE 1 FALSE 1505347072 78719
+## 596 24 TRUE 1 FALSE 1505499341 78719
+## 597 38 TRUE 1 FALSE 1505496653 78719
+## 598 30 TRUE 1 FALSE 1505329267 78719
+## 599 11 TRUE 1 FALSE 1505498901 78719
+## 600 3 TRUE 1 FALSE 1505958346 78719
+## 601 23 TRUE 1 FALSE 1505499328 78719
+## 602 53 TRUE 1 FALSE 1506091433 78719
+## 603 52 TRUE 1 FALSE 1506091267 78719
+## 604 54 TRUE 1 FALSE 1506091576 78719
+## 605 22 TRUE 1 FALSE 1505499300 78719
+## 606 25 TRUE 1 FALSE 1505499359 78719
+## 607 21 TRUE 1 FALSE 1505499273 78719
+## 608 21 TRUE 1 FALSE 1505672801 44419
+## 609 22 TRUE 1 FALSE 1504988371 44419
+## 610 25 TRUE 1 FALSE 1504988436 44419
+## 611 4 TRUE 1 FALSE 1505397508 44419
+## 612 27 TRUE NA NA NA 44419
+## 613 23 TRUE 1 FALSE 1504988381 44419
+## 614 26 TRUE 1 FALSE 1504988559 44419
+## 615 5 TRUE 1 FALSE 1505398539 44419
+## 616 18 TRUE 1 FALSE 1504988249 44419
+## 617 21 TRUE 1 FALSE 1504988327 44419
+## 618 3 TRUE 1 FALSE 1505397488 44419
+## 619 6 TRUE 1 FALSE 1505348198 44419
+## 620 7 TRUE 2 FALSE 1505348259 44419
+## 621 5 TRUE 1 FALSE 1505348113 44419
+## 622 11 TRUE 1 FALSE 1505348334 44419
+## 623 17 TRUE 1 FALSE 1505348421 44419
+## 624 15 TRUE 1 FALSE 1504988164 44419
+## 625 16 TRUE 1 FALSE 1504988177 44419
+## 626 17 TRUE 1 FALSE 1504988219 44419
+## 627 3 TRUE 1 FALSE 1505398500 44419
+## 628 25 TRUE 1 FALSE 1505333675 44419
+## 629 17 TRUE 1 FALSE 1505397782 44419
+## 630 8 TRUE 1 FALSE 1505398886 44419
+## 631 3 TRUE 1 FALSE 1505359039 44419
+## 632 8 TRUE 1 FALSE 1505348264 44419
+## 633 3 TRUE 1 FALSE 1504986835 44419
+## 634 8 TRUE 1 FALSE 1504986923 44419
+## 635 10 TRUE 1 FALSE 1504986941 44419
+## 636 11 TRUE 1 FALSE 1504986960 44419
+## 637 12 TRUE 1 FALSE 1504986967 44419
+## 638 14 TRUE 1 FALSE 1504988140 44419
+## 639 13 TRUE 10 FALSE 1505400338 44419
+## 640 14 TRUE 1 FALSE 1505601498 44419
+## 641 23 TRUE 1 FALSE 1505333608 44419
+## 642 18 TRUE 1 FALSE 1505397803 44419
+## 643 19 TRUE 1 FALSE 1505397823 44419
+## 644 20 TRUE 1 FALSE 1505397847 44419
+## 645 22 TRUE 1 FALSE 1505 44419
+## 646 11 TRUE 1 FALSE 1505670262 44419
+## 647 17 TRUE 1 FALSE 1505670349 44419
+## 648 18 TRUE 1 FALSE 1505670358 44419
+## 649 19 TRUE 1 FALSE 1505670445 44419
+## 650 12 TRUE 1 FALSE 1505397641 44419
+## 651 13 TRUE 1 FALSE 1505397653 44419
+## 652 18 TRUE 1 FALSE 1505672711 44419
+## 653 22 TRUE 1 FALSE 1505333553 44419
+## 654 16 TRUE 1 FALSE 1505397778 44419
+## 655 9 TRUE 1 FALSE 1505395347 44419
+## 656 10 TRUE 1 FALSE 1505395366 44419
+## 657 9 TRUE 1 FALSE 1505398916 44419
+## 658 5 TRUE 1 FALSE 1505397531 44419
+## 659 7 TRUE 1 FALSE 1505397548 44419
+## 660 8 TRUE 1 FALSE 1505397579 44419
+## 661 9 TRUE 1 FALSE 1505397595 44419
+## 662 11 TRUE 1 FALSE 1505397638 44419
+## 663 15 TRUE 3 FALSE 1505395733 44419
+## 664 18 TRUE 2 FALSE 1505348466 44419
+## 665 14 TRUE 1 FALSE 1505397709 44419
+## 666 15 TRUE 1 FALSE 1505397770 44419
+## 667 7 TRUE 1 FALSE 1505353029 44419
+## 668 12 TRUE 2 FALSE 1505395392 44419
+## 669 13 TRUE 1 FALSE 1505395544 44419
+## 670 14 TRUE 1 FALSE 1505395582 44419
+## 671 33 TRUE NA NA NA 44419
+## 672 16 TRUE 1 FALSE 1505672065 44419
+## 673 17 TRUE 1 FALSE 1505672679 44419
+## 674 21 TRUE 1 FALSE 1505333531 44419
+## 675 28 TRUE 1 FALSE 1505670677 44419
+## 676 29 TRUE 1 FALSE 1505670682 44419
+## 677 30 TRUE 1 FALSE 1505670726 44419
+## 678 8 TRUE 1 FALSE 1505353099 44419
+## 679 9 TRUE 1 FALSE 1505353157 44419
+## 680 11 TRUE 1 FALSE 1505398950 44419
+## 681 3 TRUE 1 FALSE 1505352952 44419
+## 682 4 TRUE 1 FALSE 1505352960 44419
+## 683 6 TRUE 1 FALSE 1505353002 44419
+## 684 32 TRUE 1 FALSE 1505670864 44419
+## 685 33 TRUE 1 FALSE 1505670992 44419
+## 686 5 TRUE 1 FALSE 1505670141 44419
+## 687 3 TRUE 1 FALSE 1505613009 44419
+## 688 8 TRUE 1 FALSE 1505613044 44419
+## 689 10 TRUE 1 FALSE 1505613053 44419
+## 690 11 TRUE 1 FALSE 1505613077 44419
+## 691 12 TRUE 1 FALSE 1505613092 44419
+## 692 25 TRUE 1 FALSE 1505670591 44419
+## 693 14 TRUE 1 FALSE 1505613297 44419
+## 694 15 TRUE 1 FALSE 1505613318 44419
+## 695 16 TRUE 1 FALSE 1505613339 44419
+## 696 7 TRUE 2 FALSE 1505395031 44419
+## 697 14 TRUE 1 FALSE 1505359530 44419
+## 698 32 TRUE 1 FALSE 1505348982 44419
+## 699 14 TRUE 1 FALSE 1505672028 44419
+## 700 19 TRUE 1 FALSE 1505333490 44419
+## 701 22 TRUE 1 FALSE 1505613809 44419
+## 702 4 TRUE 1 FALSE 1505394760 44419
+## 703 6 TRUE 1 FALSE 1505394811 44419
+## 704 19 TRUE 1 FALSE 1505348492 44419
+## 705 22 TRUE 1 FALSE 1505348728 44419
+## 706 15 TRUE 1 FALSE 1505359554 44419
+## 707 10 TRUE 1 FALSE 1505353165 44419
+## 708 5 TRUE 1 FALSE 1505359090 44419
+## 709 8 TRUE 4 FALSE 1505359388 44419
+## 710 9 TRUE 1 FALSE 1505359400 44419
+## 711 27 TRUE 1 FALSE 1505396111 44419
+## 712 5 TRUE 1 FALSE 1505332924 44419
+## 713 6 TRUE 1 FALSE 1505332945 44419
+## 714 13 TRUE 1 FALSE 1505359501 44419
+## 715 23 TRUE 1 FALSE 1505348737 44419
+## 716 25 TRUE 1 FALSE 1505348789 44419
+## 717 12 TRUE 1 FALSE 1505353213 44419
+## 718 17 TRUE 1 FALSE 1505353313 44419
+## 719 18 TRUE 1 FALSE 1505353329 44419
+## 720 19 TRUE 1 FALSE 1505353351 44419
+## 721 20 TRUE 1 FALSE 1505353369 44419
+## 722 21 TRUE 1 FALSE 1505353378 44419
+## 723 9 TRUE 1 FALSE 1505332978 44419
+## 724 10 TRUE 1 FALSE 1505332996 44419
+## 725 11 TRUE 1 FALSE 1505333016 44419
+## 726 8 TRUE 1 FALSE 1505332968 44419
+## 727 29 TRUE 1 FALSE 1505348888 44419
+## 728 30 TRUE 1 FALSE 1505348916 44419
+## 729 13 TRUE 1 FALSE 1505671998 44419
+## 730 28 TRUE 1 FALSE 1505348880 44419
+## 731 17 TRUE 1 FALSE 1505333443 44419
+## 732 11 TRUE 1 FALSE 1505359455 44419
+## 733 23 TRUE 1 FALSE 1505670522 44419
+## 734 10 TRUE 1 FALSE 1505359451 44419
+## 735 6 TRUE 1 FALSE 1505670180 44419
+## 736 17 TRUE 1 FALSE 1505359604 44419
+## 737 15 TRUE 2 FALSE 1505333189 44419
+## 738 22 TRUE 1 FALSE 1505670511 44419
+## 739 7 TRUE 1 FALSE 1505670190 44419
+## 740 8 TRUE 1 FALSE 1505670194 44419
+## 741 22 TRUE 1 FALSE 1505353386 44419
+## 742 7 TRUE 1 FALSE 1505671829 44419
+## 743 17 TRUE 1 FALSE 1505395773 44419
+## 744 6 TRUE 1 FALSE 1505671797 44419
+## 745 9 TRUE 1 FALSE 1505671872 44419
+## 746 10 TRUE 1 FALSE 1505671898 44419
+## 747 23 TRUE 1 FALSE 1505613818 44419
+## 748 3 TRUE 2 FALSE 1505671749 44419
+## 749 17 TRUE 1 FALSE 1505613375 44419
+## 750 18 TRUE 1 FALSE 1505613474 44419
+## 751 21 TRUE 3 FALSE 1505359755 44419
+## 752 12 TRUE 1 FALSE 1505671976 44419
+## 753 20 TRUE 1 FALSE 1505395854 44419
+## 754 4 TRUE 1 FALSE 1505671758 44419
+## 755 18 TRUE 1 FALSE 1505395805 44419
+## 756 23 TRUE 1 FALSE 1505395974 44419
+## 757 21 TRUE 2 FALSE 1505613798 44419
+## 758 14 TRUE 2 FALSE 1505333121 44419
+## 759 5 TRUE 1 FALSE 1505671775 44419
+## 760 21 TRUE 1 FALSE 1505395892 44419
+## 761 17 TRUE 1 FALSE 1505355131 14748
+## 762 21 TRUE 2 FALSE 1505175798 14748
+## 763 18 TRUE 1 FALSE 1505355148 14748
+## 764 11 TRUE 1 FALSE 1505355041 14748
+## 765 33 TRUE 1 FALSE 1505350172 14748
+## 766 34 TRUE 1 FALSE 1505350192 14748
+## 767 36 TRUE 1 FALSE 1505350217 14748
+## 768 18 TRUE 1 FALSE 1505175727 14748
+## 769 15 TRUE 1 FALSE 1505349838 14748
+## 770 17 TRUE 1 FALSE 1505175712 14748
+## 771 9 TRUE 1 FALSE 1505355013 14748
+## 772 19 TRUE 1 FALSE 1505347297 14748
+## 773 41 TRUE 1 FALSE 1505350265 14748
+## 774 15 TRUE 2 FALSE 1505346896 14748
+## 775 50 TRUE 1 FALSE 1505358761 14748
+## 776 12 TRUE 1 FALSE 1505355044 14748
+## 777 32 TRUE 1 FALSE 1505350159 14748
+## 778 16 TRUE 1 FALSE 1505175688 14748
+## 779 7 TRUE 1 FALSE 1505349114 14748
+## 780 16 TRUE 2 FALSE 1505355126 14748
+## 781 17 TRUE 1 FALSE 1505348375 14748
+## 782 19 TRUE 1 FALSE 1505355172 14748
+## 783 37 TRUE 1 FALSE 1505350224 14748
+## 784 38 TRUE 1 FALSE 1505350240 14748
+## 785 4 TRUE 1 FALSE 1505350487 14748
+## 786 8 TRUE 1 FALSE 1505355003 14748
+## 787 31 TRUE 1 FALSE 1505350133 14748
+## 788 48 TRUE 1 TRUE 1505358747 14748
+## 789 15 TRUE 1 FALSE 1505355098 14748
+## 790 37 TRUE 1 FALSE 1505351111 14748
+## 791 38 TRUE 1 FALSE 1505351122 14748
+## 792 14 TRUE 2 FALSE 1505346721 14748
+## 793 18 TRUE 2 FALSE 1505348398 14748
+## 794 17 TRUE 1 FALSE 1505347235 14748
+## 795 40 TRUE 1 FALSE 1505350262 14748
+## 796 7 TRUE 1 FALSE 1505354928 14748
+## 797 20 TRUE 1 FALSE 1505350797 14748
+## 798 6 TRUE 1 FALSE 1505346521 14748
+## 799 8 TRUE 1 FALSE 1505346546 14748
+## 800 15 TRUE 1 FALSE 1505175654 14748
+## 801 14 TRUE 1 FALSE 1505355077 14748
+## 802 14 TRUE 1 FALSE 1505349824 14748
+## 803 30 TRUE 1 FALSE 1505350939 14748
+## 804 16 TRUE 1 FALSE 1505357680 14748
+## 805 21 TRUE 1 FALSE 1505349925 14748
+## 806 22 TRUE 1 FALSE 1505349944 14748
+## 807 21 TRUE 1 FALSE 1505347336 14748
+## 808 20 TRUE 1 FALSE 1505355192 14748
+## 809 26 TRUE 1 FALSE 1505349995 14748
+## 810 27 TRUE 1 FALSE 1505350080 14748
+## 811 29 TRUE 1 FALSE 1505350110 14748
+## 812 13 TRUE 1 FALSE 1505355054 14748
+## 813 47 TRUE 1 FALSE 1505358677 14748
+## 814 6 TRUE 1 FALSE 1505349062 14748
+## 815 8 TRUE 1 FALSE 1505349133 14748
+## 816 9 TRUE 1 FALSE 1505349168 14748
+## 817 19 TRUE 1 FALSE 1505348411 14748
+## 818 3 TRUE 1 FALSE 1505354853 14748
+## 819 4 TRUE 1 FALSE 1505354864 14748
+## 820 5 TRUE 1 FALSE 1505354901 14748
+## 821 5 TRUE 1 FALSE 1505346512 14748
+## 822 30 TRUE 1 FALSE 1505350118 14748
+## 823 33 TRUE 1 FALSE 1505176077 14748
+## 824 6 TRUE 1 FALSE 1505350503 14748
+## 825 7 TRUE 1 FALSE 1505350518 14748
+## 826 9 TRUE 2 FALSE 1505350580 14748
+## 827 10 TRUE 1 FALSE 1505350594 14748
+## 828 12 TRUE 1 FALSE 1505350609 14748
+## 829 13 TRUE 1 FALSE 1505350621 14748
+## 830 14 TRUE 1 FALSE 1505350640 14748
+## 831 22 TRUE 1 FALSE 1505355227 14748
+## 832 23 TRUE 1 FALSE 1505355244 14748
+## 833 31 TRUE 1 FALSE 1505176029 14748
+## 834 13 TRUE 13 FALSE 1505349803 14748
+## 835 32 TRUE 1 FALSE 1505347687 14748
+## 836 33 TRUE 1 FALSE 1505347702 14748
+## 837 17 TRUE 1 FALSE 1505349863 14748
+## 838 35 TRUE 1 FALSE 1505347832 14748
+## 839 3 TRUE 1 FALSE 1505175460 14748
+## 840 23 TRUE 1 FALSE 1505349962 14748
+## 841 7 TRUE 1 FALSE 1505348262 14748
+## 842 8 TRUE 1 FALSE 1505348266 14748
+## 843 11 TRUE 1 FALSE 1505348300 14748
+## 844 14 TRUE 1 FALSE 1505175639 14748
+## 845 36 TRUE 1 FALSE 1505351094 14748
+## 846 5 TRUE 2 FALSE 1505355738 14748
+## 847 3 TRUE 1 FALSE 1505349005 14748
+## 848 39 TRUE 1 FALSE 1505176152 14748
+## 849 39 TRUE 1 FALSE 1505351151 14748
+## 850 51 TRUE 1 FALSE 1505358763 14748
+## 851 22 TRUE 2 FALSE 1505175830 14748
+## 852 23 TRUE 1 FALSE 1505175840 14748
+## 853 19 TRUE 1 FALSE 1505349295 14748
+## 854 27 TRUE 1 FALSE 1505175950 14748
+## 855 21 TRUE 1 FALSE 1505349311 14748
+## 856 22 TRUE 1 FALSE 1505349314 14748
+## 857 36 TRUE 1 FALSE 1505176120 14748
+## 858 38 TRUE 1 FALSE 1505176145 14748
+## 859 31 TRUE 2 FALSE 1505347602 14748
+## 860 40 TRUE 1 FALSE 1505176156 14748
+## 861 13 TRUE 4 FALSE 1505357576 14748
+## 862 17 TRUE 1 FALSE 1505357694 14748
+## 863 11 TRUE 1 FALSE 1505349647 14748
+## 864 21 TRUE 1 FALSE 1505350820 14748
+## 865 27 TRUE 1 FALSE 1505350892 14748
+## 866 3 TRUE 1 FALSE 1505349521 14748
+## 867 28 TRUE 1 FALSE 1505355317 14748
+## 868 29 TRUE 1 FALSE 1505355320 14748
+## 869 34 TRUE 1 FALSE 1505347811 14748
+## 870 32 TRUE 1 FALSE 1505355398 14748
+## 871 40 TRUE 1 FALSE 1505347882 14748
+## 872 8 TRUE 1 FALSE 1505175531 14748
+## 873 10 TRUE 1 FALSE 1505175544 14748
+## 874 11 TRUE 1 FALSE 1505175562 14748
+## 875 12 TRUE 1 FALSE 1505175569 14748
+## 876 43 TRUE 1 FALSE 1505358579 14748
+## 877 4 TRUE 1 FALSE 1505349011 14748
+## 878 42 TRUE 1 FALSE 1505358552 14748
+## 879 5 TRUE 1 FALSE 1505349553 14748
+## 880 17 TRUE 1 FALSE 1505349268 14748
+## 881 18 TRUE 1 FALSE 1505349282 14748
+## 882 43 TRUE 1 FALSE 1505351227 14748
+## 883 20 TRUE 1 FALSE 1505349307 14748
+## 884 25 TRUE 2 FALSE 1505175919 14748
+## 885 26 TRUE 1 FALSE 1505175941 14748
+## 886 41 TRUE 1 TRUE 1505358432 14748
+## 887 27 TRUE 1 FALSE 1505355293 14748
+## 888 25 TRUE 1 FALSE 1505357788 14748
+## 889 8 TRUE 2 FALSE 1505349612 14748
+## 890 9 TRUE 1 FALSE 1505349619 14748
+## 891 10 TRUE 1 FALSE 1505349643 14748
+## 892 14 TRUE 1 FALSE 1505357599 14748
+## 893 19 TRUE 1 FALSE 1505357717 14748
+## 894 22 TRUE 1 FALSE 1505347388 14748
+## 895 23 TRUE 1 FALSE 1505347414 14748
+## 896 23 TRUE 1 FALSE 1505350846 14748
+## 897 29 TRUE 1 FALSE 1505347559 14748
+## 898 8 TRUE 15 TRUE 1505357218 14748
+## 899 9 TRUE 1 FALSE 1505357252 14748
+## 900 9 TRUE 1 FALSE 1505346554 14748
+## 901 28 TRUE 1 FALSE 1505350909 14748
+## 902 30 TRUE 1 FALSE 1505355374 14748
+## 903 41 TRUE 1 FALSE 1505347891 14748
+## 904 5 TRUE 1 FALSE 1505348212 14748
+## 905 6 TRUE 1 FALSE 1505348248 14748
+## 906 35 TRUE 1 FALSE 1505351066 14748
+## 907 3 TRUE 1 FALSE 1505355679 14748
+## 908 24 TRUE 1 FALSE 1505355261 14748
+## 909 23 TRUE 2 FALSE 1505357765 14748
+## 910 10 TRUE 1 FALSE 1505346567 14748
+## 911 11 TRUE 1 FALSE 1505346591 14748
+## 912 41 TRUE 4 FALSE 1505351203 14748
+## 913 42 TRUE 1 FALSE 1505351221 14748
+## 914 44 TRUE 1 FALSE 1505351246 14748
+## 915 25 TRUE 1 FALSE 1505348616 14748
+## 916 11 TRUE 1 FALSE 1505357283 14748
+## 917 40 TRUE 1 FALSE 1505348877 14748
+## 918 15 TRUE 2 FALSE 1505350700 14748
+## 919 25 TRUE 1 FALSE 1505347434 14748
+## 920 27 TRUE 1 FALSE 1505347523 14748
+## 921 40 TRUE 2 FALSE 1505358376 14748
+## 922 28 TRUE 1 FALSE 1505348675 14748
+## 923 27 TRUE 2 FALSE 1505357948 14748
+## 924 28 TRUE 1 TRUE 1505357991 14748
+## 925 10 TRUE 1 FALSE 1505349177 14748
+## 926 32 TRUE 4 FALSE 1505351012 14748
+## 927 33 TRUE 2 FALSE 1505351042 14748
+## 928 18 TRUE 1 FALSE 1505350763 14748
+## 929 29 TRUE 1 FALSE 1505348684 14748
+## 930 12 TRUE 1 FALSE 1505349206 14748
+## 931 35 TRUE 1 FALSE 1505348837 14748
+## 932 39 TRUE 1 FALSE 1505348875 14748
+## 933 23 TRUE 1 FALSE 1505348483 14748
+## 934 54 TRUE 1 FALSE 1505351456 14748
+## 935 35 TRUE 1 FALSE 1505355436 14748
+## 936 50 TRUE 1 FALSE 1505351432 14748
+## 937 17 TRUE 1 FALSE 1505350736 14748
+## 938 38 TRUE 1 FALSE 1505358195 14748
+## 939 33 TRUE 2 FALSE 1505348819 14748
+## 940 21 TRUE 1 FALSE 1505357736 14748
+## 941 53 TRUE 1 FALSE 1505351453 14748
+## 942 32 TRUE 1 FALSE 1505358029 14748
+## 943 32 TRUE 1 FALSE 1505348746 14748
+## 944 33 TRUE 1 FALSE 1505355410 14748
+## 945 30 TRUE 1 FALSE 1505348708 14748
+## 946 47 TRUE 1 FALSE 1505351395 14748
+## 947 49 TRUE 1 FALSE 1505351420 14748
+## 948 36 TRUE 1 FALSE 1505358162 14748
+## 949 35 TRUE 1 TRUE 1505358146 14748
+## 950 37 TRUE 1 FALSE 1505355452 14748
+## 951 51 TRUE 1 FALSE 1505351444 14748
+## 952 38 TRUE 1 FALSE 1505355459 14748
+## 953 22 TRUE 1 FALSE 1505348473 14748
+## 954 46 TRUE 2 FALSE 1505351367 14748
+## 955 34 TRUE 1 TRUE 1505358111 14748
+## 956 40 TRUE 1 FALSE 1505332661 88135
+## 957 21 TRUE 1 FALSE 1505331746 88135
+## 958 18 TRUE 2 FALSE 1505331258 88135
+## 959 17 TRUE 2 FALSE 1505331224 88135
+## 960 33 TRUE 1 FALSE 1505332496 88135
+## 961 15 TRUE 3 FALSE 1505331065 88135
+## 962 3 TRUE 1 FALSE 1505330766 88135
+## 963 38 TRUE 1 FALSE 1505332647 88135
+## 964 39 TRUE 1 FALSE 1505332658 88135
+## 965 36 TRUE 2 FALSE 1505332572 88135
+## 966 16 TRUE 1 FALSE 1505331073 88135
+## 967 8 TRUE 1 FALSE 1505330823 88135
+## 968 26 TRUE 1 FALSE 1505332294 88135
+## 969 10 TRUE 1 FALSE 1505330833 88135
+## 970 31 TRUE 1 FALSE 1505332426 88135
+## 971 11 TRUE 1 FALSE 1505330844 88135
+## 972 12 TRUE 1 FALSE 1505330847 88135
+## 973 22 TRUE 1 FALSE 1505331849 88135
+## 974 27 TRUE 1 FALSE 1505332303 88135
+## 975 25 TRUE 1 FALSE 1505332204 88135
+## 976 14 TRUE 2 FALSE 1505331018 88135
+## 977 23 TRUE 1 FALSE 1505331858 88135
+## 978 27 TRUE 1 FALSE 1505504564 55259
+## 979 23 TRUE 1 FALSE 1505500848 55259
+## 980 14 TRUE 1 FALSE 1505497383 55259
+## 981 25 TRUE 1 FALSE 1505500876 55259
+## 982 9 TRUE 1 FALSE 1505496746 55259
+## 983 15 TRUE 2 FALSE 1505498980 55259
+## 984 8 TRUE 1 FALSE 1505496742 55259
+## 985 22 TRUE 1 FALSE 1505500560 55259
+## 986 41 TRUE 1 FALSE 1505512818 55259
+## 987 17 TRUE 2 FALSE 1505500224 55259
+## 988 11 TRUE 1 FALSE 1505497215 55259
+## 989 10 TRUE 1 FALSE 1505497011 55259
+## 990 6 TRUE 1 FALSE 1505496679 55259
+## 991 21 TRUE 1 FALSE 1505500347 55259
+## 992 33 TRUE 1 FALSE 1505508707 55259
+## 993 40 TRUE 1 FALSE 1505512815 55259
+## 994 31 TRUE 2 FALSE 1505507125 55259
+## 995 32 TRUE 1 FALSE 1505508679 55259
+## 996 29 TRUE 1 FALSE 1505506937 55259
+## 997 5 TRUE 1 FALSE 1505496673 55259
+## 998 19 TRUE 1 FALSE 1505500324 55259
+## 999 35 TRUE 1 FALSE 1505510294 55259
+## 1000 34 TRUE 2 FALSE 1505509316 55259
+## 1001 14 TRUE 2 FALSE 1504888348 75332
+## 1002 17 TRUE 1 FALSE 1504988618 75332
+## 1003 18 TRUE 1 FALSE 1504988630 75332
+## 1004 19 TRUE 1 FALSE 1504988654 75332
+## 1005 20 TRUE 1 FALSE 15049 75332
+## 1006 15 TRUE 2 FALSE 1504888438 75332
+## 1007 17 TRUE 2 FALSE 1504888570 75332
+## 1008 19 TRUE 2 FALSE 1504888653 75332
+## 1009 21 TRUE 2 FALSE 1504888757 75332
+## 1010 16 TRUE 2 FALSE 1504988608 75332
+## 1011 10 TRUE 1 FALSE 1504888198 75332
+## 1012 11 TRUE 1 FALSE 1504888235 75332
+## 1013 3 TRUE 1 FALSE 1504960775 75332
+## 1014 4 TRUE 1 FALSE 1504960785 75332
+## 1015 6 TRUE 1 FALSE 1504960925 75332
+## 1016 7 TRUE 1 FALSE 1504960939 75332
+## 1017 8 TRUE 1 FALSE 1504960990 75332
+## 1018 9 TRUE 1 FALSE 1504961065 75332
+## 1019 10 TRUE 1 FALSE 1504961074 75332
+## 1020 12 TRUE 1 FALSE 1504961131 75332
+## 1021 17 TRUE 1 FALSE 1504961270 75332
+## 1022 18 TRUE 1 FALSE 1504961289 75332
+## 1023 19 TRUE 1 FALSE 1504961317 75332
+## 1024 20 TRUE 1 FALSE 1504961330 75332
+## 1025 21 TRUE 1 FALSE 1504961339 75332
+## 1026 22 TRUE 1 FALSE 1504961345 75332
+## 1027 27 TRUE NA NA NA 75332
+## 1028 3 TRUE 1 FALSE 1504964728 75332
+## 1029 4 TRUE 1 FALSE 1504965515 75332
+## 1030 6 TRUE 1 FALSE 1504965535 75332
+## 1031 7 TRUE 1 FALSE 1504965546 75332
+## 1032 9 TRUE 1 FALSE 1504980565 75332
+## 1033 10 TRUE 1 FALSE 1504980574 75332
+## 1034 12 TRUE 1 FALSE 1504980592 75332
+## 1035 13 TRUE 1 FALSE 1504980599 75332
+## 1036 14 TRUE 1 FALSE 1504980608 75332
+## 1037 15 TRUE 1 FALSE 1504980642 75332
+## 1038 17 TRUE 1 FALSE 1504980684 75332
+## 1039 18 TRUE 1 FALSE 1504980700 75332
+## 1040 20 TRUE 1 FALSE 1504980752 75332
+## 1041 21 TRUE 1 FALSE 1504980843 75332
+## 1042 23 TRUE 1 FALSE 1504980871 75332
+## 1043 27 TRUE 1 FALSE 1504980924 75332
+## 1044 5 TRUE 1 FALSE 1504888131 75332
+## 1045 6 TRUE 1 FALSE 1504888142 75332
+## 1046 8 TRUE 1 FALSE 1504888164 75332
+## 1047 9 TRUE 1 FALSE 1504888175 75332
+## 1048 33 TRUE 1 FALSE 1504981065 75332
+## 1049 3 TRUE 1 FALSE 1504981591 75332
+## 1050 4 TRUE 1 FALSE 1504981597 75332
+## 1051 5 TRUE 1 FALSE 1504981607 75332
+## 1052 7 TRUE 1 FALSE 1504981637 75332
+## 1053 8 TRUE 1 FALSE 1504981666 75332
+## 1054 9 TRUE 1 FALSE 1504981673 75332
+## 1055 11 TRUE 1 FALSE 1504988503 75332
+## 1056 12 TRUE 1 FALSE 1504988507 75332
+## 1057 13 TRUE 1 FALSE 1504988513 75332
+## 1058 14 TRUE 1 FALSE 1504988524 75332
+## 1059 15 TRUE 1 FALSE 1504988569 75332
+## 1060 21 TRUE 1 FALSE 1504880016 75332
+## 1061 22 TRUE 1 FALSE 1504880028 75332
+## 1062 23 TRUE 1 FALSE 1504880039 75332
+## 1063 25 TRUE 1 FALSE 1504880067 75332
+## 1064 26 TRUE 1 FALSE 1504880080 75332
+## 1065 11 TRUE 1 FALSE 1504912448 75332
+## 1066 17 TRUE 1 FALSE 1504912520 75332
+## 1067 18 TRUE 1 FALSE 1504912528 75332
+## 1068 5 TRUE 1 FALSE 1504964756 75332
+## 1069 8 TRUE 1 FALSE 1504964826 75332
+## 1070 9 TRUE 1 FALSE 1504964835 75332
+## 1071 10 TRUE 1 FALSE 1504964861 75332
+## 1072 5 TRUE 2 FALSE 1504912376 75332
+## 1073 6 TRUE 1 FALSE 1504912398 75332
+## 1074 7 TRUE 2 FALSE 1504912415 75332
+## 1075 8 TRUE 1 FALSE 1504912421 75332
+## 1076 8 TRUE 1 FALSE 1504879734 75332
+## 1077 10 TRUE 1 FALSE 1504879752 75332
+## 1078 11 TRUE 1 FALSE 1504879761 75332
+## 1079 19 TRUE 1 FALSE 1504912547 75332
+## 1080 22 TRUE 1 FALSE 1504912594 75332
+## 1081 28 TRUE 1 FALSE 1504980933 75332
+## 1082 30 TRUE 1 FALSE 1504980991 75332
+## 1083 32 TRUE 1 FALSE 1504981038 75332
+## 1084 29 TRUE 1 FALSE 1504912702 75332
+## 1085 30 TRUE 1 FALSE 1504912724 75332
+## 1086 32 TRUE 1 FALSE 1504916790 75332
+## 1087 3 TRUE 1 FALSE 1504879686 75332
+## 1088 21 TRUE 1 FALSE 1504965055 75332
+## 1089 22 TRUE 1 FALSE 1504965082 75332
+## 1090 23 TRUE 1 FALSE 1504965098 75332
+## 1091 12 TRUE 1 FALSE 1504879765 75332
+## 1092 14 TRUE 1 FALSE 1504879903 75332
+## 1093 15 TRUE 1 FALSE 1504879919 75332
+## 1094 16 TRUE 1 FALSE 1504879923 75332
+## 1095 17 TRUE 1 FALSE 1504879951 75332
+## 1096 18 TRUE 1 FALSE 1504879969 75332
+## 1097 13 TRUE 1 FALSE 1504964908 75332
+## 1098 14 TRUE 1 FALSE 1504964917 75332
+## 1099 15 TRUE 1 FALSE 1504964932 75332
+## 1100 17 TRUE 1 FALSE 1504964983 75332
+## 1101 26 TRUE 2 FALSE 1504965189 75332
+## 1102 27 TRUE 1 FALSE 1504965206 75332
+## 1103 11 TRUE 1 FALSE 1504964864 75332
+## 1104 28 TRUE 1 FALSE 1504912693 75332
+## 1105 23 TRUE 1 FALSE 1504912599 75332
+## 1106 25 TRUE 1 FALSE 1504912640 75332
+## 1107 31 TRUE 1 FALSE 1505857844 80970
+## 1108 16 TRUE 2 FALSE 1506301522 80970
+## 1109 23 TRUE 2 FALSE 1505857425 80970
+## 1110 32 TRUE 2 FALSE 1506248219 80970
+## 1111 10 TRUE 1 FALSE 1506246734 80970
+## 1112 15 TRUE 1 FALSE 1506301487 80970
+## 1113 41 TRUE 1 FALSE 1505859709 80970
+## 1114 13 TRUE 1 FALSE 1506301455 80970
+## 1115 9 TRUE 1 FALSE 1506246670 80970
+## 1116 39 TRUE 1 FALSE 1506248456 80970
+## 1117 33 TRUE 2 FALSE 1506248236 80970
+## 1118 11 TRUE 1 FALSE 1506246743 80970
+## 1119 11 TRUE 1 FALSE 1506301400 80970
+## 1120 10 TRUE 1 FALSE 1506301347 80970
+## 1121 9 TRUE 2 FALSE 1505856912 80970
+## 1122 11 TRUE 1 FALSE 1505856989 80970
+## 1123 5 TRUE 3 FALSE 1505893274 80970
+## 1124 10 TRUE 1 FALSE 1505856923 80970
+## 1125 6 TRUE 3 FALSE 1505893376 80970
+## 1126 35 TRUE 2 FALSE 1506248305 80970
+## 1127 34 TRUE 1 FALSE 1506248279 80970
+## 1128 9 TRUE 1 FALSE 1506301333 80970
+## 1129 7 TRUE 1 FALSE 1506246639 80970
+## 1130 8 TRUE 1 FALSE 1506246645 80970
+## 1131 35 TRUE 1 FALSE 1505927021 80970
+## 1132 25 TRUE 1 FALSE 1505857455 80970
+## 1133 27 TRUE 1 FALSE 1505857751 80970
+## 1134 47 TRUE 1 FALSE 1505924508 80970
+## 1135 32 TRUE 2 FALSE 1505859280 80970
+## 1136 33 TRUE 1 FALSE 1505859357 80970
+## 1137 34 TRUE 2 FALSE 1505859539 80970
+## 1138 35 TRUE 1 FALSE 1505859605 80970
+## 1139 40 TRUE 1 FALSE 1505859705 80970
+## 1140 17 TRUE 1 FALSE 1505928336 80970
+## 1141 19 TRUE 1 FALSE 1505928352 80970
+## 1142 21 TRUE 1 FALSE 1505928372 80970
+## 1143 23 TRUE 1 FALSE 1505928418 80970
+## 1144 29 TRUE 1 FALSE 1505857816 80970
+## 1145 46 TRUE 1 FALSE 1505924470 80970
+## 1146 28 TRUE 1 FALSE 1505928875 80970
+## 1147 32 TRUE 1 FALSE 1505929059 80970
+## 1148 34 TRUE 1 FALSE 1505929220 80970
+## 1149 35 TRUE 1 FALSE 1505929240 80970
+## 1150 5 TRUE 1 FALSE 1505856843 80970
+## 1151 6 TRUE 1 FALSE 1505856867 80970
+## 1152 8 TRUE 1 FALSE 1505856905 80970
+## 1153 41 TRUE 1 FALSE 1505930472 80970
+## 1154 42 TRUE 2 FALSE 1505930972 80970
+## 1155 43 TRUE 1 FALSE 1505931081 80970
+## 1156 25 TRUE 1 FALSE 1505928467 80970
+## 1157 27 TRUE 1 FALSE 1505928744 80970
+## 1158 54 TRUE 1 FALSE 1506249648 80970
+## 1159 3 TRUE 1 FALSE 1506301071 80970
+## 1160 4 TRUE 1 FALSE 1506301278 80970
+## 1161 6 TRUE 1 FALSE 1506301306 80970
+## 1162 8 TRUE 1 FALSE 1506301318 80970
+## 1163 21 TRUE 1 FALSE 1505857304 80970
+## 1164 22 TRUE 1 FALSE 1505857381 80970
+## 1165 33 TRUE 1 FALSE 1505926188 80970
+## 1166 53 TRUE 2 FALSE 1505527288 80970
+## 1167 54 TRUE 1 FALSE 1505527586 80970
+## 1168 56 TRUE 1 FALSE 1505527603 80970
+## 1169 57 TRUE 1 FALSE 1505527606 80970
+## 1170 14 TRUE 3 FALSE 1506247113 80970
+## 1171 16 TRUE 1 FALSE 1506247395 80970
+## 1172 17 TRUE 1 FALSE 1506247406 80970
+## 1173 21 TRUE 2 FALSE 1506247574 80970
+## 1174 22 TRUE 1 FALSE 1506247737 80970
+## 1175 23 TRUE 1 FALSE 1506247745 80970
+## 1176 25 TRUE 1 FALSE 1506247808 80970
+## 1177 26 TRUE 1 FALSE 1506248007 80970
+## 1178 27 TRUE 1 FALSE 1506248019 80970
+## 1179 31 TRUE 1 FALSE 1506248114 80970
+## 1180 19 TRUE 2 FALSE 1506349930 80970
+## 1181 20 TRUE 1 FALSE 1506350001 80970
+## 1182 21 TRUE 1 FALSE 1506350014 80970
+## 1183 25 TRUE 1 FALSE 1506350076 80970
+## 1184 26 TRUE 1 FALSE 1506350105 80970
+## 1185 27 TRUE 2 FALSE 1506350139 80970
+## 1186 42 TRUE 1 FALSE 1506248794 80970
+## 1187 43 TRUE 1 FALSE 1506248870 80970
+## 1188 45 TRUE 1 FALSE 1506248922 80970
+## 1189 48 TRUE 1 FALSE 1506249111 80970
+## 1190 14 TRUE 1 FALSE 1505857018 80970
+## 1191 15 TRUE 1 FALSE 1505857085 80970
+## 1192 17 TRUE 2 FALSE 1505857137 80970
+## 1193 19 TRUE 4 FALSE 1505857187 80970
+## 1194 6 TRUE 2 FALSE 1506246621 80970
+## 1195 48 TRUE 2 FALSE 1505526547 80970
+## 1196 52 TRUE 1 FALSE 1505526700 80970
+## 1197 10 TRUE 1 FALSE 1505528647 80970
+## 1198 11 TRUE 2 FALSE 1505528695 80970
+## 1199 12 TRUE 1 FALSE 1505528709 80970
+## 1200 16 TRUE 1 FALSE 1505528741 80970
+## 1201 18 TRUE 1 FALSE 1505528754 80970
+## 1202 49 TRUE 1 FALSE 1505924554 80970
+## 1203 50 TRUE 1 FALSE 1505924563 80970
+## 1204 51 TRUE 1 FALSE 1505924601 80970
+## 1205 53 TRUE 1 FALSE 1505924610 80970
+## 1206 54 TRUE 1 FALSE 1505924614 80970
+## 1207 3 TRUE 1 FALSE 1505925110 80970
+## 1208 4 TRUE 1 FALSE 1505925124 80970
+## 1209 8 TRUE 1 FALSE 1505925189 80970
+## 1210 9 TRUE 1 FALSE 1505925207 80970
+## 1211 11 TRUE 1 FALSE 1505925355 80970
+## 1212 12 TRUE 1 FALSE 1505925363 80970
+## 1213 7 TRUE 2 FALSE 1505893395 80970
+## 1214 8 TRUE 1 FALSE 1505893407 80970
+## 1215 11 TRUE 1 FALSE 1505893432 80970
+## 1216 17 TRUE 1 FALSE 1505893498 80970
+## 1217 18 TRUE 1 FALSE 1505893507 80970
+## 1218 19 TRUE 1 FALSE 1505893539 80970
+## 1219 49 TRUE 1 FALSE 1506249231 80970
+## 1220 50 TRUE 1 FALSE 1506249322 80970
+## 1221 51 TRUE 2 FALSE 1506249619 80970
+## 1222 53 TRUE 1 FALSE 1506249641 80970
+## 1223 4 TRUE 2 FALSE 1505528557 80970
+## 1224 5 TRUE 1 FALSE 1505528568 80970
+## 1225 6 TRUE 1 FALSE 1505528579 80970
+## 1226 7 TRUE 1 FALSE 1505528590 80970
+## 1227 8 TRUE 1 FALSE 1505528620 80970
+## 1228 62 TRUE 1 FALSE 1505532681 80970
+## 1229 37 TRUE 1 FALSE 1505927027 80970
+## 1230 38 TRUE 1 FALSE 1505927033 80970
+## 1231 3 TRUE 1 FALSE 1505927150 80970
+## 1232 5 TRUE 1 FALSE 1505927196 80970
+## 1233 8 TRUE 1 FALSE 1505927349 80970
+## 1234 9 TRUE 1 FALSE 1505927548 80970
+## 1235 11 TRUE 1 FALSE 1505927597 80970
+## 1236 13 TRUE 1 FALSE 1505927687 80970
+## 1237 14 TRUE 1 FALSE 1505927711 80970
+## 1238 16 TRUE 2 FALSE 1505928326 80970
+## 1239 25 TRUE 1 FALSE 1505522821 80970
+## 1240 28 TRUE 1 FALSE 1505523646 80970
+## 1241 29 TRUE 1 FALSE 1505523913 80970
+## 1242 30 TRUE 2 FALSE 1505524414 80970
+## 1243 31 TRUE 1 FALSE 1505524487 80970
+## 1244 32 TRUE 1 FALSE 1505524531 80970
+## 1245 36 TRUE 1 FALSE 1505929252 80970
+## 1246 38 TRUE 1 FALSE 1505930105 80970
+## 1247 40 TRUE 1 FALSE 1505930423 80970
+## 1248 33 TRUE 7 FALSE 1505525252 80970
+## 1249 34 TRUE 1 FALSE 1505525278 80970
+## 1250 37 TRUE 1 FALSE 1505525467 80970
+## 1251 47 TRUE 1 FALSE 1505931417 80970
+## 1252 48 TRUE 2 FALSE 1505931531 80970
+## 1253 50 TRUE 1 FALSE 1505931543 80970
+## 1254 51 TRUE 1 FALSE 1505931544 80970
+## 1255 5 TRUE 1 FALSE 1506246572 80970
+## 1256 23 TRUE 1 FALSE 1505895800 80970
+## 1257 26 TRUE 1 FALSE 1505895831 80970
+## 1258 27 TRUE 1 FALSE 1505895850 80970
+## 1259 29 TRUE 1 FALSE 1505895893 80970
+## 1260 30 TRUE 1 FALSE 1505895901 80970
+## 1261 31 TRUE 1 FALSE 1505895978 80970
+## 1262 32 TRUE 1 FALSE 1505896020 80970
+## 1263 33 TRUE 1 FALSE 1505896052 80970
+## 1264 34 TRUE 1 FALSE 1505896136 80970
+## 1265 36 TRUE 1 FALSE 1505896181 80970
+## 1266 37 TRUE 1 FALSE 1505896193 80970
+## 1267 5 TRUE 1 FALSE 1506337543 80970
+## 1268 7 TRUE 1 FALSE 1506337602 80970
+## 1269 9 TRUE 1 FALSE 1506349254 80970
+## 1270 11 TRUE 2 FALSE 1506349423 80970
+## 1271 16 TRUE 1 FALSE 1506349570 80970
+## 1272 17 TRUE 1 FALSE 1506349617 80970
+## 1273 10 TRUE 1 FALSE 1505923243 80970
+## 1274 12 TRUE 1 FALSE 1505923251 80970
+## 1275 13 TRUE 1 FALSE 1505923256 80970
+## 1276 14 TRUE 2 FALSE 1505923270 80970
+## 1277 15 TRUE 1 FALSE 1505923445 80970
+## 1278 17 TRUE 1 FALSE 1505923469 80970
+## 1279 18 TRUE 1 FALSE 1505923493 80970
+## 1280 28 TRUE 2 FALSE 1506350317 80970
+## 1281 31 TRUE 1 FALSE 1506350350 80970
+## 1282 32 TRUE 5 FALSE 1506350391 80970
+## 1283 33 TRUE 1 FALSE 1506350398 80970
+## 1284 34 TRUE 1 FALSE 1506350402 80970
+## 1285 35 TRUE 1 FALSE 1506350415 80970
+## 1286 36 TRUE 2 FALSE 1506350430 80970
+## 1287 38 TRUE 1 FALSE 1506350439 80970
+## 1288 39 TRUE 1 FALSE 1506350441 80970
+## 1289 39 TRUE 1 FALSE 1505924199 80970
+## 1290 41 TRUE 2 FALSE 1505924288 80970
+## 1291 42 TRUE 1 FALSE 1505924318 80970
+## 1292 43 TRUE 1 FALSE 1505924324 80970
+## 1293 44 TRUE 1 FALSE 1505924416 80970
+## 1294 3 TRUE 1 FALSE 1505894274 80970
+## 1295 4 TRUE 1 FALSE 1505894284 80970
+## 1296 21 TRUE 2 FALSE 1505528952 80970
+## 1297 22 TRUE 1 FALSE 1505528963 80970
+## 1298 23 TRUE 2 FALSE 1505529038 80970
+## 1299 24 TRUE 1 FALSE 1505529049 80970
+## 1300 25 TRUE 1 FALSE 1505529078 80970
+## 1301 26 TRUE 1 FALSE 1505529090 80970
+## 1302 5 TRUE 1 FALSE 1505925139 80970
+## 1303 7 TRUE 1 FALSE 1505925152 80970
+## 1304 30 TRUE 2 FALSE 1505529203 80970
+## 1305 33 TRUE 1 FALSE 1505529230 80970
+## 1306 34 TRUE 1 FALSE 1505529293 80970
+## 1307 35 TRUE 2 FALSE 1505529376 80970
+## 1308 13 TRUE 1 FALSE 1505925389 80970
+## 1309 14 TRUE 1 FALSE 1505925451 80970
+## 1310 15 TRUE 2 FALSE 1505925494 80970
+## 1311 16 TRUE 1 FALSE 1505925503 80970
+## 1312 17 TRUE 1 FALSE 1505925529 80970
+## 1313 18 TRUE 1 FALSE 1505925594 80970
+## 1314 19 TRUE 1 FALSE 1505925631 80970
+## 1315 22 TRUE 2 FALSE 1505893623 80970
+## 1316 23 TRUE 1 FALSE 1505893634 80970
+## 1317 25 TRUE 2 FALSE 1505893691 80970
+## 1318 28 TRUE 2 FALSE 1505893816 80970
+## 1319 29 TRUE 1 FALSE 1505893830 80970
+## 1320 30 TRUE 1 FALSE 1505893859 80970
+## 1321 32 TRUE 1 FALSE 1505893934 80970
+## 1322 33 TRUE 3 FALSE 1505894069 80970
+## 1323 35 TRUE 1 FALSE 1505894138 80970
+## 1324 39 TRUE 1 FALSE 1505894185 80970
+## 1325 40 TRUE 1 FALSE 1505894189 80970
+## 1326 12 TRUE 1 FALSE 1505443060 80970
+## 1327 15 TRUE 1 FALSE 1505520968 80970
+## 1328 6 TRUE 1 FALSE 1505894333 80970
+## 1329 7 TRUE 1 FALSE 1505894350 80970
+## 1330 8 TRUE 2 FALSE 1505894416 80970
+## 1331 9 TRUE 1 FALSE 1505894479 80970
+## 1332 10 TRUE 1 FALSE 1505894489 80970
+## 1333 12 TRUE 1 FALSE 1505894526 80970
+## 1334 17 TRUE 3 FALSE 1505894655 80970
+## 1335 18 TRUE 1 FALSE 1505894884 80970
+## 1336 19 TRUE 1 FALSE 1505894938 80970
+## 1337 20 TRUE 1 FALSE 1505894956 80970
+## 1338 21 TRUE 1 FALSE 1505894963 80970
+## 1339 22 TRUE 1 FALSE 1505894965 80970
+## 1340 8 TRUE 1 FALSE 1505895455 80970
+## 1341 9 TRUE 1 FALSE 1505895462 80970
+## 1342 10 TRUE 2 FALSE 1505895486 80970
+## 1343 38 TRUE 1 FALSE 1505525535 80970
+## 1344 39 TRUE 1 FALSE 1505525739 80970
+## 1345 42 TRUE 1 FALSE 1505525826 80970
+## 1346 43 TRUE 1 FALSE 1505525831 80970
+## 1347 46 TRUE 3 FALSE 1505526373 80970
+## 1348 47 TRUE 1 FALSE 1505526412 80970
+## 1349 22 TRUE 1 FALSE 1505895782 80970
+## 1350 37 TRUE 2 FALSE 1505924106 80970
+## 1351 38 TRUE 1 FALSE 1505924117 80970
+## 1352 32 TRUE 1 FALSE 1505926179 80970
+## 1353 3 TRUE 1 FALSE 1505442611 80970
+## 1354 6 TRUE 1 FALSE 1505442740 80970
+## 1355 8 TRUE 1 FALSE 1505442789 80970
+## 1356 11 TRUE 1 FALSE 1505442892 80970
+## 1357 18 TRUE 2 FALSE 1505521097 80970
+## 1358 38 TRUE 1 FALSE 1505896212 80970
+## 1359 40 TRUE 1 FALSE 1505896220 80970
+## 1360 41 TRUE 1 FALSE 1505896223 80970
+## 1361 4 TRUE 1 FALSE 1505923192 80970
+## 1362 6 TRUE 1 FALSE 1505923206 80970
+## 1363 7 TRUE 1 FALSE 1505923214 80970
+## 1364 9 TRUE 1 FALSE 1505923232 80970
+## 1365 28 TRUE 1 FALSE 1505529164 80970
+## 1366 32 TRUE 1 FALSE 1505923858 80970
+## 1367 22 TRUE 1 FALSE 1505925825 80970
+## 1368 33 TRUE 3 FALSE 1505924010 80970
+## 1369 36 TRUE 1 FALSE 1505529526 80970
+## 1370 37 TRUE 2 FALSE 1505529636 80970
+## 1371 20 TRUE 1 FALSE 1505923617 80970
+## 1372 21 TRUE 1 FALSE 1505923643 80970
+## 1373 23 TRUE 1 FALSE 1505923706 80970
+## 1374 27 TRUE 1 FALSE 1505923756 80970
+## 1375 28 TRUE 1 FALSE 1505923773 80970
+## 1376 30 TRUE 1 FALSE 1505923794 80970
+## 1377 20 TRUE 1 FALSE 1505925789 80970
+## 1378 11 TRUE 1 FALSE 1505895490 80970
+## 1379 23 TRUE 2 FALSE 1505925871 80970
+## 1380 35 TRUE 1 FALSE 1505924040 80970
+## 1381 36 TRUE 1 FALSE 1505924066 80970
+## 1382 29 TRUE 1 FALSE 1505926056 80970
+## 1383 30 TRUE 1 FALSE 1505926104 80970
+## 1384 57 TRUE 1 FALSE 1505532665 80970
+## 1385 61 TRUE 1 FALSE 1505532676 80970
+## 1386 27 TRUE 1 FALSE 1505529124 80970
+## 1387 24 TRUE 1 FALSE 1505925884 80970
+## 1388 19 TRUE 1 FALSE 1505521101 80970
+## 1389 13 TRUE 1 FALSE 1505895506 80970
+## 1390 14 TRUE 1 FALSE 1505895515 80970
+## 1391 22 TRUE 1 FALSE 1506301811 80970
+## 1392 26 TRUE 1 FALSE 1506301842 80970
+## 1393 17 TRUE 1 FALSE 1506301539 80970
+## 1394 20 TRUE 1 FALSE 1506301736 80970
+## 1395 45 TRUE 1 FALSE 1505530125 80970
+## 1396 15 TRUE 1 FALSE 1505895528 80970
+## 1397 27 TRUE 1 FALSE 1506301845 80970
+## 1398 44 TRUE 1 FALSE 1505530108 80970
+## 1399 46 TRUE 1 FALSE 1505530881 80970
+## 1400 39 TRUE 1 FALSE 1505529805 80970
+## 1401 27 TRUE 1 FALSE 1505925965 80970
+## 1402 3 TRUE 1 FALSE 1505895408 80970
+## 1403 28 TRUE 2 FALSE 1505926047 80970
+## 1404 40 TRUE 1 FALSE 1505529823 80970
+## 1405 41 TRUE 1 FALSE 1505529988 80970
+## 1406 24 TRUE 2 FALSE 1505522792 80970
+## 1407 47 TRUE 1 FALSE 1505530893 80970
+## 1408 5 TRUE 1 FALSE 1505895426 80970
+## 1409 55 TRUE 2 FALSE 1505532556 80970
+## 1410 56 TRUE 1 FALSE 1505532653 80970
+## 1411 53 TRUE 1 FALSE 1505532392 80970
+## 1412 20 TRUE 2 FALSE 1505521184 80970
+## 1413 48 TRUE 1 FALSE 1505532304 80970
+## 1414 49 TRUE 1 FALSE 1505532369 80970
+## 1415 17 TRUE 3 FALSE 1505895664 80970
+## 1416 21 TRUE 1 FALSE 1505521588 80970
+## 1417 21 TRUE 1 FALSE 1505895726 80970
+## 1418 50 TRUE 1 FALSE 1505532376 80970
+## 1419 40 TRUE 1 FALSE 1505178706 96746
+## 1420 12 TRUE 1 FALSE 1505177973 96746
+## 1421 5 TRUE 1 FALSE 1505179127 96746
+## 1422 31 TRUE 1 FALSE 1505178423 96746
+## 1423 9 TRUE 1 FALSE 1505179229 96746
+## 1424 14 TRUE 1 FALSE 1505179355 96746
+## 1425 7 TRUE 1 FALSE 1505179206 96746
+## 1426 39 TRUE 1 FALSE 1505178700 96746
+## 1427 36 TRUE 1 FALSE 1505178668 96746
+## 1428 26 TRUE 1 FALSE 1505180267 96746
+## 1429 4 TRUE 1 FALSE 1505179116 96746
+## 1430 30 TRUE 1 FALSE 1505180392 96746
+## 1431 33 TRUE 1 FALSE 1505178526 96746
+## 1432 11 TRUE 1 FALSE 1505177970 96746
+## 1433 3 TRUE 2 FALSE 1505179038 96746
+## 1434 3 TRUE 1 FALSE 1505177899 96746
+## 1435 25 TRUE 1 FALSE 1505178290 96746
+## 1436 16 TRUE 1 FALSE 1505178054 96746
+## 1437 38 TRUE 1 FALSE 1505178696 96746
+## 1438 13 TRUE 1 FALSE 1505179325 96746
+## 1439 27 TRUE 1 FALSE 1505178349 96746
+## 1440 10 TRUE 1 FALSE 1505177961 96746
+## 1441 16 TRUE 1 FALSE 1505179372 96746
+## 1442 6 TRUE 1 FALSE 1505179151 96746
+## 1443 10 TRUE 2 FALSE 1505179286 96746
+## 1444 14 TRUE 1 FALSE 1505178024 96746
+## 1445 15 TRUE 1 FALSE 1505178039 96746
+## 1446 35 TRUE 1 FALSE 1505180641 96746
+## 1447 22 TRUE 2 FALSE 1505180212 96746
+## 1448 21 TRUE 2 FALSE 1505180156 96746
+## 1449 37 TRUE 1 FALSE 1505180657 96746
+## 1450 27 TRUE 1 FALSE 1505180346 96746
+## 1451 26 TRUE 1 FALSE 1505178341 96746
+## 1452 8 TRUE 1 FALSE 1505177946 96746
+## 1453 22 TRUE 1 FALSE 1505178246 96746
+## 1454 34 TRUE 1 FALSE 1505180637 96746
+## 1455 18 TRUE 1 FALSE 1505179947 96746
+## 1456 12 TRUE 1 FALSE 1505179312 96746
+## 1457 33 TRUE 4 FALSE 1505180617 96746
+## 1458 17 TRUE 1 FALSE 1505178127 96746
+## 1459 18 TRUE 1 FALSE 1505178153 96746
+## 1460 21 TRUE 1 FALSE 1505178207 96746
+## 1461 38 TRUE 1 FALSE 1505180660 96746
+## 1462 23 TRUE 1 FALSE 1505178255 96746
+## 1463 17 TRUE 6 FALSE 1505179907 96746
+## 1464 29 TRUE 1 FALSE 1505785763 74372
+## 1465 39 TRUE 1 FALSE 1505180304 74372
+## 1466 30 TRUE 1 FALSE 1505785797 74372
+## 1467 14 TRUE 2 FALSE 1505179792 74372
+## 1468 12 TRUE 1 FALSE 1505179708 74372
+## 1469 33 TRUE 1 FALSE 1505180202 74372
+## 1470 36 TRUE 1 FALSE 1505180258 74372
+## 1471 25 TRUE 1 FALSE 1505527863 74372
+## 1472 3 TRUE 1 FALSE 1505179605 74372
+## 1473 28 TRUE 1 FALSE 1505785757 74372
+## 1474 40 TRUE 1 FALSE 1505180308 74372
+## 1475 8 TRUE 1 FALSE 1505179672 74372
+## 1476 40 TRUE 1 FALSE 1505529005 74372
+## 1477 25 TRUE 2 FALSE 1505785630 74372
+## 1478 11 TRUE 1 FALSE 1505179701 74372
+## 1479 23 TRUE 1 FALSE 1505527826 74372
+## 1480 27 TRUE 1 FALSE 1505527910 74372
+## 1481 38 TRUE 1 FALSE 1505180293 74372
+## 1482 8 TRUE 1 FALSE 1505526835 74372
+## 1483 10 TRUE 1 FALSE 1505179690 74372
+## 1484 31 TRUE 1 FALSE 1505180162 74372
+## 1485 27 TRUE 1 FALSE 1505180083 74372
+## 1486 23 TRUE 1 FALSE 1505785557 74372
+## 1487 34 TRUE 2 FALSE 1505528928 74372
+## 1488 41 TRUE 1 FALSE 1505529011 74372
+## 1489 17 TRUE 1 FALSE 1505179885 74372
+## 1490 21 TRUE 1 FALSE 1505527680 74372
+## 1491 5 TRUE 1 FALSE 1505526814 74372
+## 1492 6 TRUE 1 FALSE 1505526824 74372
+## 1493 31 TRUE 1 FALSE 1505528011 74372
+## 1494 33 TRUE 1 FALSE 1505528406 74372
+## 1495 11 TRUE 1 FALSE 1505526868 74372
+## 1496 39 TRUE 1 FALSE 1505786077 74372
+## 1497 14 TRUE 1 FALSE 1505527074 74372
+## 1498 35 TRUE 1 FALSE 1505528959 74372
+## 1499 16 TRUE 1 FALSE 1505179827 74372
+## 1500 15 TRUE 1 FALSE 1505179813 74372
+## 1501 22 TRUE 2 FALSE 1505527763 74372
+## 1502 5 TRUE 1 FALSE 1505784956 74372
+## 1503 29 TRUE 1 FALSE 1505527961 74372
+## 1504 33 TRUE 1 FALSE 1505786012 74372
+## 1505 9 TRUE 1 FALSE 1505526841 74372
+## 1506 10 TRUE 1 FALSE 1505526848 74372
+## 1507 32 TRUE 2 FALSE 1505528389 74372
+## 1508 20 TRUE 2 FALSE 1505786483 74372
+## 1509 22 TRUE 2 FALSE 1505785547 74372
+## 1510 7 TRUE 2 FALSE 1505785055 74372
+## 1511 11 TRUE 1 FALSE 1505785108 74372
+## 1512 17 TRUE 1 FALSE 1505527620 74372
+## 1513 19 TRUE 1 FALSE 1505527646 74372
+## 1514 18 TRUE 1 FALSE 1505179901 74372
+## 1515 21 TRUE 1 FALSE 1505179959 74372
+## 1516 19 TRUE 1 FALSE 1505786458 74372
+## 1517 35 TRUE 1 FALSE 1505786052 74372
+## 1518 26 TRUE 1 FALSE 1505180073 74372
+## 1519 8 TRUE 1 FALSE 1505786277 74372
+## 1520 40 TRUE 1 FALSE 1505786079 74372
+## 1521 8 TRUE 1 FALSE 1505785058 74372
+## 1522 32 TRUE 4 FALSE 1505785919 74372
+## 1523 17 TRUE 1 FALSE 1505785257 74372
+## 1524 10 TRUE 1 FALSE 1505786332 74372
+## 1525 15 TRUE 2 FALSE 1505527368 74372
+## 1526 18 TRUE 1 FALSE 1505786422 74372
+## 1527 6 TRUE 2 FALSE 1505785026 74372
+## 1528 12 TRUE 1 FALSE 1505786359 74372
+## 1529 3 TRUE 1 FALSE 1505786172 74372
+## 1530 4 TRUE 1 FALSE 1505786183 74372
+## 1531 25 TRUE 1 FALSE 1505180052 74372
+## 1532 17 TRUE 1 FALSE 1505786412 74372
+## 1533 22 TRUE 1 FALSE 1505179976 74372
+## 1534 9 TRUE 1 FALSE 1505786323 74372
+## 1535 21 TRUE 1 FALSE 1505786490 74372
+## 1536 22 TRUE 1 FALSE 1505786493 74372
+## 1537 23 TRUE 1 FALSE 1505179985 74372
+## 1538 19 TRUE 1 FALSE 1505785421 74372
+## 1539 18 TRUE 3 FALSE 1505785339 74372
+## 1540 6 TRUE 1 FALSE 1505786222 74372
+## 1541 7 TRUE 1 FALSE 1505786238 74372
+## 1542 21 TRUE 1 FALSE 1505185226 16365
+## 1543 5 TRUE 1 FALSE 1505227545 16365
+## 1544 34 TRUE 1 FALSE 1505266751 16365
+## 1545 3 TRUE 1 FALSE 1505227533 16365
+## 1546 17 TRUE 1 FALSE 1505184469 16365
+## 1547 22 TRUE 1 FALSE 1505185286 16365
+## 1548 8 TRUE 2 FALSE 1505227803 16365
+## 1549 18 TRUE 1 FALSE 1505099938 16365
+## 1550 13 TRUE 2 FALSE 1505101103 16365
+## 1551 23 TRUE 1 FALSE 1505100012 16365
+## 1552 17 TRUE 1 FALSE 1505101308 16365
+## 1553 17 TRUE 2 FALSE 1505099925 16365
+## 1554 11 TRUE 1 FALSE 1505149695 16365
+## 1555 16 TRUE 1 FALSE 1505101139 16365
+## 1556 6 TRUE 1 FALSE 1505100874 16365
+## 1557 3 TRUE 2 FALSE 1505100838 16365
+## 1558 4 TRUE 1 FALSE 1505100848 16365
+## 1559 5 TRUE 1 FALSE 1505100860 16365
+## 1560 21 TRUE 1 FALSE 1505099982 16365
+## 1561 22 TRUE 2 FALSE 1505150061 16365
+## 1562 22 TRUE 1 FALSE 1505100003 16365
+## 1563 4 TRUE 1 FALSE 1505192035 16365
+## 1564 14 TRUE 1 FALSE 1505101118 16365
+## 1565 23 TRUE 1 FALSE 1505185294 16365
+## 1566 15 TRUE 1 FALSE 1505184430 16365
+## 1567 9 TRUE 1 FALSE 1505227984 16365
+## 1568 4 TRUE 1 FALSE 1505186595 16365
+## 1569 7 TRUE 1 FALSE 1505100893 16365
+## 1570 26 TRUE 1 FALSE 1505185324 16365
+## 1571 12 TRUE 1 FALSE 1505101052 16365
+## 1572 10 TRUE 1 FALSE 1505149681 16365
+## 1573 3 TRUE 1 FALSE 1505192029 16365
+## 1574 32 TRUE 1 FALSE 1505186993 16365
+## 1575 14 TRUE 1 FALSE 1505186661 16365
+## 1576 8 TRUE 2 FALSE 1505192085 16365
+## 1577 12 TRUE 1 FALSE 1505099789 16365
+## 1578 27 TRUE 1 FALSE 1505185336 16365
+## 1579 6 TRUE 1 FALSE 1505186613 16365
+## 1580 7 TRUE 1 FALSE 1505186618 16365
+## 1581 21 TRUE 1 FALSE 1505402325 16365
+## 1582 23 TRUE 1 FALSE 1505150077 16365
+## 1583 18 TRUE 1 FALSE 1505402202 16365
+## 1584 14 TRUE 1 FALSE 1505184421 16365
+## 1585 30 TRUE 1 FALSE 1505186943 16365
+## 1586 32 TRUE 1 FALSE 1505266484 16365
+## 1587 17 TRUE 1 FALSE 1505192321 16365
+## 1588 5 TRUE 1 FALSE 1505192043 16365
+## 1589 15 TRUE 2 FALSE 1505149827 16365
+## 1590 19 TRUE 1 FALSE 1505152247 16365
+## 1591 10 TRUE 1 FALSE 1505099777 16365
+## 1592 11 TRUE 1 FALSE 1505228051 16365
+## 1593 13 TRUE 1 FALSE 1505228178 16365
+## 1594 17 TRUE 1 FALSE 1505402180 16365
+## 1595 10 TRUE 1 FALSE 1505101023 16365
+## 1596 12 TRUE 1 FALSE 1505186647 16365
+## 1597 13 TRUE 1 FALSE 1505186653 16365
+## 1598 8 TRUE 1 FALSE 1505152074 16365
+## 1599 14 TRUE 1 FALSE 1505149768 16365
+## 1600 7 TRUE 1 FALSE 1505192055 16365
+## 1601 3 TRUE 1 FALSE 1505099720 16365
+## 1602 9 TRUE 1 FALSE 1505192091 16365
+## 1603 18 TRUE 1 FALSE 1505101333 16365
+## 1604 5 TRUE 1 FALSE 1505152026 16365
+## 1605 9 TRUE 1 FALSE 1505100912 16365
+## 1606 15 TRUE 1 FALSE 1505099863 16365
+## 1607 16 TRUE 1 FALSE 1505099865 16365
+## 1608 10 TRUE 1 FALSE 1505186636 16365
+## 1609 16 TRUE 2 FALSE 1505192301 16365
+## 1610 19 TRUE 1 FALSE 1505183391 16365
+## 1611 11 TRUE 1 FALSE 1505152125 16365
+## 1612 17 TRUE 1 FALSE 1505152229 16365
+## 1613 18 TRUE 1 FALSE 1505152237 16365
+## 1614 8 TRUE 1 FALSE 1505099769 16365
+## 1615 7 TRUE 1 FALSE 1505401876 16365
+## 1616 11 TRUE 1 FALSE 1505099787 16365
+## 1617 6 TRUE 2 FALSE 1505152063 16365
+## 1618 9 TRUE 1 FALSE 1505186628 16365
+## 1619 9 TRUE 1 FALSE 1505149657 16365
+## 1620 28 TRUE 1 FALSE 1505266348 16365
+## 1621 20 TRUE 1 FALSE 1505183435 16365
+## 1622 18 TRUE 1 FALSE 1505192328 16365
+## 1623 19 TRUE 1 FALSE 150 16365
+## 1624 19 TRUE 1 FALSE 1505228621 16365
+## 1625 22 TRUE 1 FALSE 1505152335 16365
+## 1626 23 TRUE 1 FALSE 1505152340 16365
+## 1627 10 TRUE 1 FALSE 1505401923 16365
+## 1628 14 TRUE 2 FALSE 1505099842 16365
+## 1629 14 TRUE 1 FALSE 1505401999 16365
+## 1630 16 TRUE 1 FALSE 1505402008 16365
+## 1631 14 TRUE 1 FALSE 1505228193 16365
+## 1632 8 TRUE 1 FALSE 1505149652 16365
+## 1633 16 TRUE 3 FALSE 1505228602 16365
+## 1634 6 TRUE 1 FALSE 1505401845 16365
+## 1635 5 TRUE 1 FALSE 1505184189 16365
+## 1636 25 TRUE 3 FALSE 1505152393 16365
+## 1637 28 TRUE 2 FALSE 1505153409 16365
+## 1638 29 TRUE 1 FALSE 1505153414 16365
+## 1639 30 TRUE NA NA NA 16365
+## 1640 21 TRUE 1 FALSE 1505150035 16365
+## 1641 27 TRUE 1 FALSE 1505186896 16365
+## 1642 28 TRUE 1 FALSE 1505186919 16365
+## 1643 17 TRUE 1 FALSE 1505228610 16365
+## 1644 3 TRUE 2 FALSE 1505401778 16365
+## 1645 4 TRUE 1 FALSE 1505401785 16365
+## 1646 9 TRUE 1 FALSE 1505401910 16365
+## 1647 12 TRUE 1 FALSE 1505401958 16365
+## 1648 13 TRUE 1 FALSE 1505401966 16365
+## 1649 11 TRUE 1 FALSE 1505184300 16365
+## 1650 13 TRUE 1 FALSE 1505184415 16365
+## 1651 21 TRUE 1 FALSE 1505186784 16365
+## 1652 23 TRUE 1 FALSE 1505186806 16365
+## 1653 7 TRUE 2 FALSE 1505152071 16365
+## 1654 15 TRUE 1 FALSE 1505192280 16365
+## 1655 22 TRUE 1 FALSE 1505183441 16365
+## 1656 21 TRUE 1 FALSE 1505228746 16365
+## 1657 15 TRUE 2 FALSE 1505186707 16365
+## 1658 17 TRUE 1 FALSE 1505186725 16365
+## 1659 11 TRUE 1 FALSE 1505192228 16365
+## 1660 5 TRUE 1 FALSE 1505149576 16365
+## 1661 6 TRUE 1 FALSE 1505149612 16365
+## 1662 10 TRUE 1 FALSE 1505184297 16365
+## 1663 27 TRUE 1 FALSE 1505266330 16365
+## 1664 14 TRUE 1 FALSE 1505192248 16365
+## 1665 8 TRUE 1 FALSE 1505265881 16365
+## 1666 11 TRUE 1 FALSE 1505265924 16365
+## 1667 21 TRUE 1 FALSE 1505183439 16365
+## 1668 5 TRUE 1 FALSE 1505401821 16365
+## 1669 17 TRUE 1 FALSE 1505266193 16365
+## 1670 17 TRUE 2 FALSE 1505149932 16365
+## 1671 19 TRUE 1 FALSE 1505149984 16365
+## 1672 28 TRUE 1 FALSE 1505229293 16365
+## 1673 12 TRUE 1 FALSE 1505192231 16365
+## 1674 13 TRUE 1 FALSE 1505192235 16365
+## 1675 3 TRUE 1 FALSE 1505265704 16365
+## 1676 9 TRUE 1 FALSE 1505265895 16365
+## 1677 12 TRUE 1 FALSE 1505183225 16365
+## 1678 10 TRUE 1 FALSE 1505183101 16365
+## 1679 3 TRUE 1 FALSE 1505184163 16365
+## 1680 16 TRUE 2 FALSE 1505266188 16365
+## 1681 25 TRUE 1 FALSE 1505228788 16365
+## 1682 18 TRUE 1 FALSE 1505186745 16365
+## 1683 20 TRUE 1 FALSE 1505186770 16365
+## 1684 21 TRUE 1 FALSE 1505266213 16365
+## 1685 23 TRUE 1 FALSE 1505266222 16365
+## 1686 25 TRUE 1 FALSE 1505266231 16365
+## 1687 5 TRUE 1 FALSE 1505265720 16365
+## 1688 23 TRUE 1 FALSE 1505228774 16365
+## 1689 13 TRUE 1 FALSE 1505265976 16365
+## 1690 14 TRUE 1 FALSE 1505265988 16365
+## 1691 6 TRUE 1 FALSE 1505182991 16365
+## 1692 7 TRUE 1 FALSE 1505183000 16365
+## 1693 8 TRUE 2 FALSE 1505184264 16365
+## 1694 9 TRUE 1 FALSE 1505184273 16365
+## 1695 8 TRUE 2 FALSE 1505183067 16365
+## 1696 18 TRUE 1 FALSE 1505183377 16365
+## 1697 9 TRUE 1 FALSE 1505183097 16365
+## 1698 17 TRUE 2 FALSE 1505183367 16365
+## 1699 27 TRUE 1 FALSE 1505229086 16365
+## 1700 19 TRUE 1 FALSE 1505266201 16365
+## 1701 4 TRUE 1 FALSE 1505182975 16365
+## 1702 3 TRUE 1 FALSE 1505182968 16365
+## 1703 3 TRUE 1 FALSE 1505361827 68515
+## 1704 29 TRUE 1 FALSE 1505397135 68515
+## 1705 28 TRUE 2 FALSE 1505397133 68515
+## 1706 11 TRUE 1 FALSE 1505397992 68515
+## 1707 27 TRUE 1 FALSE 1505397090 68515
+## 1708 37 TRUE 1 FALSE 1505397202 68515
+## 1709 9 TRUE 1 FALSE 1505397970 68515
+## 1710 40 TRUE 1 FALSE 1505361746 68515
+## 1711 24 TRUE 1 FALSE 1505397042 68515
+## 1712 30 TRUE 1 FALSE 1505397140 68515
+## 1713 32 TRUE 1 FALSE 1505397158 68515
+## 1714 33 TRUE 1 FALSE 1505397168 68515
+## 1715 35 TRUE 1 FALSE 1505397192 68515
+## 1716 41 TRUE 1 FALSE 1505409684 68515
+## 1717 39 TRUE 1 FALSE 1505361743 68515
+## 1718 35 TRUE 1 FALSE 1505361715 68515
+## 1719 38 TRUE 1 FALSE 1505399853 68515
+## 1720 8 TRUE 1 FALSE 1505397956 68515
+## 1721 14 TRUE 1 FALSE 1505398082 68515
+## 1722 17 TRUE 2 FALSE 1505333439 68515
+## 1723 16 TRUE 16 FALSE 1505398990 68515
+## 1724 39 TRUE 1 FALSE 1505396215 68515
+## 1725 7 TRUE 1 FALSE 1505361325 68515
+## 1726 38 TRUE 1 FALSE 1505397204 68515
+## 1727 23 TRUE 1 FALSE 1505397031 68515
+## 1728 42 TRUE 4 FALSE 1505410388 68515
+## 1729 43 TRUE 1 FALSE 1505410420 68515
+## 1730 13 TRUE 1 FALSE 1505398071 68515
+## 1731 29 TRUE 1 FALSE 1505361542 68515
+## 1732 51 TRUE 1 FALSE 1505411163 68515
+## 1733 5 TRUE 1 FALSE 1505334738 68515
+## 1734 23 TRUE 1 FALSE 1505399034 68515
+## 1735 27 TRUE 1 FALSE 1505399264 68515
+## 1736 10 TRUE 1 FALSE 1505333284 68515
+## 1737 11 TRUE 1 FALSE 1505333300 68515
+## 1738 14 TRUE 1 FALSE 1505333349 68515
+## 1739 16 TRUE 1 FALSE 1505396963 68515
+## 1740 6 TRUE 1 FALSE 1505361295 68515
+## 1741 19 TRUE 1 FALSE 1505399008 68515
+## 1742 33 TRUE 2 FALSE 1505361699 68515
+## 1743 36 TRUE 1 FALSE 1505399829 68515
+## 1744 5 TRUE 1 FALSE 1505397800 68515
+## 1745 9 TRUE 1 FALSE 1505333270 68515
+## 1746 14 TRUE 1 FALSE 1505396920 68515
+## 1747 28 TRUE 2 FALSE 1505361539 68515
+## 1748 38 TRUE 1 FALSE 1505396179 68515
+## 1749 40 TRUE 9 FALSE 1505409662 68515
+## 1750 35 TRUE 1 FALSE 1505396050 68515
+## 1751 23 TRUE 2 FALSE 1505395128 68515
+## 1752 26 TRUE 1 FALSE 1505395154 68515
+## 1753 15 TRUE 1 FALSE 1505333383 68515
+## 1754 50 TRUE 1 FALSE 1505411160 68515
+## 1755 51 TRUE 1 FALSE 1505396679 68515
+## 1756 17 TRUE 1 FALSE 1505398995 68515
+## 1757 21 TRUE 1 FALSE 1505399021 68515
+## 1758 25 TRUE 1 FALSE 1505399070 68515
+## 1759 5 TRUE 1 FALSE 1505396836 68515
+## 1760 28 TRUE 4 FALSE 1505399520 68515
+## 1761 32 TRUE 1 FALSE 1505399537 68515
+## 1762 19 TRUE 1 FALSE 1505361449 68515
+## 1763 22 TRUE 1 FALSE 1505361479 68515
+## 1764 15 TRUE 2 FALSE 1505396959 68515
+## 1765 25 TRUE 1 FALSE 1505361502 68515
+## 1766 17 TRUE 1 FALSE 1505396966 68515
+## 1767 30 TRUE 2 FALSE 1505361580 68515
+## 1768 32 TRUE 1 FALSE 1505361623 68515
+## 1769 20 TRUE 1 FALSE 1505396993 68515
+## 1770 22 TRUE 1 FALSE 1505397018 68515
+## 1771 3 TRUE 1 FALSE 1505397450 68515
+## 1772 8 TRUE 1 FALSE 1505333262 68515
+## 1773 33 TRUE 1 FALSE 1505396023 68515
+## 1774 23 TRUE 2 FALSE 1505190334 68515
+## 1775 25 TRUE 1 FALSE 1505190353 68515
+## 1776 36 TRUE 2 FALSE 1505396120 68515
+## 1777 37 TRUE 1 FALSE 1505396155 68515
+## 1778 31 TRUE 1 FALSE 1505190426 68515
+## 1779 33 TRUE 1 FALSE 1505190551 68515
+## 1780 7 TRUE 1 FALSE 1505361869 68515
+## 1781 25 TRUE 1 FALSE 1505333588 68515
+## 1782 27 TRUE 1 FALSE 1505333771 68515
+## 1783 48 TRUE 1 FALSE 1505411155 68515
+## 1784 33 TRUE 1 FALSE 1505334136 68515
+## 1785 34 TRUE 2 FALSE 1505334501 68515
+## 1786 22 TRUE 1 FALSE 1505362005 68515
+## 1787 53 TRUE 1 FALSE 1505396690 68515
+## 1788 4 TRUE 1 FALSE 1505396828 68515
+## 1789 3 TRUE 1 FALSE 1505190091 68515
+## 1790 8 TRUE 1 FALSE 1505361327 68515
+## 1791 17 TRUE 1 FALSE 1505361389 68515
+## 1792 18 TRUE 1 FALSE 1505361420 68515
+## 1793 11 TRUE 1 FALSE 1505396895 68515
+## 1794 12 TRUE 1 FALSE 1505396898 68515
+## 1795 23 TRUE 1 FALSE 1505361483 68515
+## 1796 15 TRUE 1 FALSE 1505190224 68515
+## 1797 18 TRUE 1 FALSE 1505396972 68515
+## 1798 19 TRUE 1 FALSE 1505396982 68515
+## 1799 34 TRUE 6 FALSE 1505399811 68515
+## 1800 35 TRUE 1 FALSE 1505399823 68515
+## 1801 18 TRUE 1 FALSE 1505190274 68515
+## 1802 32 TRUE 1 FALSE 1505395968 68515
+## 1803 28 TRUE 1 FALSE 1505395845 68515
+## 1804 30 TRUE 1 FALSE 1505395902 68515
+## 1805 21 TRUE 2 FALSE 1505395081 68515
+## 1806 26 TRUE 1 FALSE 1505190372 68515
+## 1807 27 TRUE 1 FALSE 1505190376 68515
+## 1808 27 TRUE 1 FALSE 1505395162 68515
+## 1809 36 TRUE 1 FALSE 1505190596 68515
+## 1810 19 TRUE 2 FALSE 1505333498 68515
+## 1811 41 TRUE 5 FALSE 1505396331 68515
+## 1812 42 TRUE 1 FALSE 1505396342 68515
+## 1813 47 TRUE 3 FALSE 1505411130 68515
+## 1814 32 TRUE 2 FALSE 1505334130 68515
+## 1815 9 TRUE 1 FALSE 1505394724 68515
+## 1816 49 TRUE 2 FALSE 1505396638 68515
+## 1817 50 TRUE 1 FALSE 1505396648 68515
+## 1818 7 TRUE 1 FALSE 1505395434 68515
+## 1819 54 TRUE 1 FALSE 1505396693 68515
+## 1820 8 TRUE 1 FALSE 1505190146 68515
+## 1821 11 TRUE 1 FALSE 1505361343 68515
+## 1822 9 TRUE 1 FALSE 1505396881 68515
+## 1823 11 TRUE 1 FALSE 1505190164 68515
+## 1824 12 TRUE 1 FALSE 1505190166 68515
+## 1825 13 TRUE 1 FALSE 1505396902 68515
+## 1826 47 TRUE 2 FALSE 1505396414 68515
+## 1827 5 TRUE 1 FALSE 1505333230 68515
+## 1828 6 TRUE 1 FALSE 1505333245 68515
+## 1829 16 TRUE 1 FALSE 1505190234 68515
+## 1830 17 TRUE 1 FALSE 1505190265 68515
+## 1831 20 TRUE 1 FALSE 1505395741 68515
+## 1832 21 TRUE 1 FALSE 1505190295 68515
+## 1833 22 TRUE 1 FALSE 1505190316 68515
+## 1834 44 TRUE 1 FALSE 1505396356 68515
+## 1835 46 TRUE 1 FALSE 1505396381 68515
+## 1836 22 TRUE 2 FALSE 1505395115 68515
+## 1837 8 TRUE 5 FALSE 1505394716 68515
+## 1838 19 TRUE 1 FALSE 1505361988 68515
+## 1839 20 TRUE 1 FALSE 1505361998 68515
+## 1840 29 TRUE 1 FALSE 1505395181 68515
+## 1841 38 TRUE 1 FALSE 1505190615 68515
+## 1842 21 TRUE 2 FALSE 1505333532 68515
+## 1843 22 TRUE 2 FALSE 1505333549 68515
+## 1844 43 TRUE 1 FALSE 1505396346 68515
+## 1845 8 TRUE 1 FALSE 1505396876 68515
+## 1846 31 TRUE 1 FALSE 1505333862 68515
+## 1847 15 TRUE 3 FALSE 1505395578 68515
+## 1848 21 TRUE 1 FALSE 1505362003 68515
+## 1849 4 TRUE 1 FALSE 1505395409 68515
+## 1850 9 TRUE 1 FALSE 1505395447 68515
+## 1851 35 TRUE 1 FALSE 1505334555 68515
+## 1852 40 TRUE 1 FALSE 1505334590 68515
+## 1853 3 TRUE 1 FALSE 1505396816 68515
+## 1854 7 TRUE 1 FALSE 1505396851 68515
+## 1855 27 TRUE 1 FALSE 1505395836 68515
+## 1856 10 TRUE 1 FALSE 1505361928 68515
+## 1857 17 TRUE 1 FALSE 1505361969 68515
+## 1858 13 TRUE 2 FALSE 1505394923 68515
+## 1859 14 TRUE 1 FALSE 1505394931 68515
+## 1860 21 TRUE 1 FALSE 1505395762 68515
+## 1861 23 TRUE 1 FALSE 1505395787 68515
+## 1862 23 TRUE 1 FALSE 1505333569 68515
+## 1863 10 TRUE 1 FALSE 1505190156 68515
+## 1864 29 TRUE 2 FALSE 1505333844 68515
+## 1865 34 TRUE 1 FALSE 1505395281 68515
+## 1866 12 TRUE 1 FALSE 1505361941 68515
+## 1867 18 TRUE 1 FALSE 1505361975 68515
+## 1868 30 TRUE 1 FALSE 1505395186 68515
+## 1869 31 TRUE 1 FALSE 1505395201 68515
+## 1870 4 TRUE 1 FALSE 1505361831 68515
+## 1871 6 TRUE 1 FALSE 1505361858 68515
+## 1872 14 TRUE 1 FALSE 1505395486 68515
+## 1873 12 TRUE 1 FALSE 1505395466 68515
+## 1874 36 TRUE 1 FALSE 1505395309 68515
+## 1875 6 TRUE 1 FALSE 1505395427 68515
+## 1876 40 TRUE 1 FALSE 1505395344 68515
+## 1877 14 TRUE 2 FALSE 1505190216 68515
+## 1878 11 TRUE 1 FALSE 1505394839 68515
+## 1879 17 TRUE 1 FALSE 1505394953 68515
+## 1880 3 TRUE 1 FALSE 1505394513 68515
+## 1881 41 TRUE 1 FALSE 1505334593 68515
+## 1882 13 TRUE 1 FALSE 1505395476 68515
+## 1883 8 TRUE 1 FALSE 1505361884 68515
+## 1884 9 TRUE 1 FALSE 1505361923 68515
+## 1885 33 TRUE 1 FALSE 1505395257 68515
+## 1886 10 TRUE 1 FALSE 1505394837 68515
+## 1887 17 TRUE 2 FALSE 1505395651 68515
+## 1888 37 TRUE 1 FALSE 1505395320 68515
+## 1889 41 TRUE 1 FALSE 1505395347 68515
+## 1890 15 TRUE 1 FALSE 1505394938 68515
+## 1891 18 TRUE 3 FALSE 1505395703 68515
+## 1892 38 TRUE 1 FALSE 1505395334 68515
+## 1893 40 TRUE 1 FALSE 1505190627 68515
+## 1894 5 TRUE 1 FALSE 1505394532 68515
+## 1895 39 TRUE 1 FALSE 1505190622 68515
+## 1896 10 TRUE 1 FALSE 1505395455 68515
+## 1897 32 TRUE 2 FALSE 1505395240 68515
+## 1898 4 TRUE 1 FALSE 1505829495 67994
+## 1899 34 TRUE 2 FALSE 1505829957 67994
+## 1900 35 TRUE 1 FALSE 1505829987 67994
+## 1901 3 TRUE 4 FALSE 1505829488 67994
+## 1902 38 TRUE 1 FALSE 1505830002 67994
+## 1903 27 TRUE 1 FALSE 1505829887 67994
+## 1904 9 TRUE 1 FALSE 1505829549 67994
+## 1905 37 TRUE 1 FALSE 1505829997 67994
+## 1906 33 TRUE 1 FALSE 1505829936 67994
+## 1907 13 TRUE 1 FALSE 1505829592 67994
+## 1908 14 TRUE 1 FALSE 1505829607 67994
+## 1909 10 TRUE 1 FALSE 1505829556 67994
+## 1910 12 TRUE 1 FALSE 1505829583 67994
+## 1911 6 TRUE 1 FALSE 1505829519 67994
+## 1912 7 TRUE 1 FALSE 1505829531 67994
+## 1913 16 TRUE 1 FALSE 1505829615 67994
+## 1914 5 TRUE 1 FALSE 1505829507 67994
+## 1915 30 TRUE 1 FALSE 1505829909 67994
+## 1916 26 TRUE 2 FALSE 1505829884 67994
+## 1917 21 TRUE 1 FALSE 1505829813 67994
+## 1918 22 TRUE 1 FALSE 1505829830 67994
+## 1919 17 TRUE 1 FALSE 1505829707 67994
+## 1920 18 TRUE 1 FALSE 1505829736 67994
+## 1921 10 TRUE 1 FALSE 1505703680 32870
+## 1922 25 TRUE 1 FALSE 1505704156 32870
+## 1923 8 TRUE 1 FALSE 1505703656 32870
+## 1924 23 TRUE 2 FALSE 1505704123 32870
+## 1925 3 TRUE 1 FALSE 1505703556 32870
+## 1926 14 TRUE 1 FALSE 1505703799 32870
+## 1927 15 TRUE 1 FALSE 1505703851 32870
+## 1928 22 TRUE 1 FALSE 1505704033 32870
+## 1929 18 TRUE 1 FALSE 1505703953 32870
+## 1930 11 TRUE 1 FALSE 1505703693 32870
+## 1931 21 TRUE 1 FALSE 1505704001 32870
+## 1932 17 TRUE 1 FALSE 1505703893 32870
+## 1933 12 TRUE 1 FALSE 1505703700 32870
+## 1934 16 TRUE 1 FALSE 1505703863 32870
+## 1935 22 TRUE 1 FALSE 1505235701 27487
+## 1936 12 TRUE 1 FALSE 1506016652 27487
+## 1937 29 TRUE 1 FALSE 1506015720 27487
+## 1938 14 TRUE 1 FALSE 1505235567 27487
+## 1939 12 TRUE 1 FALSE 1505235544 27487
+## 1940 21 TRUE 2 FALSE 1505235677 27487
+## 1941 21 TRUE 1 FALSE 1506022383 27487
+## 1942 25 TRUE 1 FALSE 1506015588 27487
+## 1943 18 TRUE 1 FALSE 1506022119 27487
+## 1944 23 TRUE 1 FALSE 1505235705 27487
+## 1945 11 TRUE 1 FALSE 1505235542 27487
+## 1946 8 TRUE 1 FALSE 1506123063 27487
+## 1947 30 TRUE 2 FALSE 1506015744 27487
+## 1948 15 TRUE 1 FALSE 1505235605 27487
+## 1949 14 TRUE 1 FALSE 1506020850 27487
+## 1950 18 TRUE 1 FALSE 1505235635 27487
+## 1951 12 TRUE 1 FALSE 1506020711 27487
+## 1952 13 TRUE 1 FALSE 1506020727 27487
+## 1953 15 TRUE 2 FALSE 1506021185 27487
+## 1954 17 TRUE 1 FALSE 1506022030 27487
+## 1955 38 TRUE 1 FALSE 1506126179 27487
+## 1956 20 TRUE 1 FALSE 1506022291 27487
+## 1957 7 TRUE 1 FALSE 1506122953 27487
+## 1958 9 TRUE 1 FALSE 1506016466 27487
+## 1959 10 TRUE 1 FALSE 1506016470 27487
+## 1960 17 TRUE 1 FALSE 1506015061 27487
+## 1961 16 TRUE 1 FALSE 1505235607 27487
+## 1962 17 TRUE 1 FALSE 1505235626 27487
+## 1963 18 TRUE 2 FALSE 1506015114 27487
+## 1964 3 TRUE 1 FALSE 1506122599 27487
+## 1965 23 TRUE 1 FALSE 1506015506 27487
+## 1966 33 TRUE 1 FALSE 1506126012 27487
+## 1967 4 TRUE 1 FALSE 1506122604 27487
+## 1968 28 TRUE 1 FALSE 1506015717 27487
+## 1969 6 TRUE 1 FALSE 1506014710 27487
+## 1970 7 TRUE 2 FALSE 1506014737 27487
+## 1971 8 TRUE 1 FALSE 1506014739 27487
+## 1972 11 TRUE 1 FALSE 1506014790 27487
+## 1973 54 TRUE 1 FALSE 1506033300 27487
+## 1974 39 TRUE 1 FALSE 1506025947 27487
+## 1975 19 TRUE 1 FALSE 1506015242 27487
+## 1976 22 TRUE 1 FALSE 1506015503 27487
+## 1977 13 TRUE 1 FALSE 1506017798 27487
+## 1978 35 TRUE 1 FALSE 1506126120 27487
+## 1979 37 TRUE 1 FALSE 1506126173 27487
+## 1980 5 TRUE 1 FALSE 1506122772 27487
+## 1981 21 TRUE 1 FALSE 1506018763 27487
+## 1982 22 TRUE 1 FALSE 1506018852 27487
+## 1983 9 TRUE 1 FALSE 1506123067 27487
+## 1984 23 TRUE 1 FALSE 1506022951 27487
+## 1985 27 TRUE 1 FALSE 1506023417 27487
+## 1986 35 TRUE 1 FALSE 1506015981 27487
+## 1987 10 TRUE 1 FALSE 1506020685 27487
+## 1988 11 TRUE 1 FALSE 1506017643 27487
+## 1989 3 TRUE 1 FALSE 1506016283 27487
+## 1990 14 TRUE 1 FALSE 1506017808 27487
+## 1991 34 TRUE 2 FALSE 1505237339 27487
+## 1992 33 TRUE 1 FALSE 1506024660 27487
+## 1993 8 TRUE 1 FALSE 1506016356 27487
+## 1994 22 TRUE 1 FALSE 1506123921 27487
+## 1995 35 TRUE 1 FALSE 1506024898 27487
+## 1996 36 TRUE 2 FALSE 1506024985 27487
+## 1997 37 TRUE 1 FALSE 1506025626 27487
+## 1998 38 TRUE 2 FALSE 1506025668 27487
+## 1999 32 TRUE 1 FALSE 1506125939 27487
+## 2000 42 TRUE 1 FALSE 1506026231 27487
+## 2001 43 TRUE 1 FALSE 1506026233 27487
+## 2002 44 TRUE 1 FALSE 1506026256 27487
+## 2003 5 TRUE 1 FALSE 1506014693 27487
+## 2004 49 TRUE 1 FALSE 1506033098 27487
+## 2005 50 TRUE 1 FALSE 1506033163 27487
+## 2006 51 TRUE 1 FALSE 1506033291 27487
+## 2007 53 TRUE 1 FALSE 1506033298 27487
+## 2008 4 TRUE 1 FALSE 1506020246 27487
+## 2009 6 TRUE 1 FALSE 1506020309 27487
+## 2010 7 TRUE 1 FALSE 1506020393 27487
+## 2011 9 TRUE 1 FALSE 1506020516 27487
+## 2012 22 TRUE 1 FALSE 1505236809 27487
+## 2013 26 TRUE 1 FALSE 1505236934 27487
+## 2014 27 TRUE 1 FALSE 1505236937 27487
+## 2015 15 TRUE 1 FALSE 1506018241 27487
+## 2016 17 TRUE 1 FALSE 1506018606 27487
+## 2017 7 TRUE 1 FALSE 1506016334 27487
+## 2018 39 TRUE 1 FALSE 1505235896 27487
+## 2019 23 TRUE 1 FALSE 1506018872 27487
+## 2020 26 TRUE 1 FALSE 1506018999 27487
+## 2021 32 TRUE 1 FALSE 1506015837 27487
+## 2022 28 TRUE 1 FALSE 1506023467 27487
+## 2023 30 TRUE 1 FALSE 1506023704 27487
+## 2024 32 TRUE 5 FALSE 1506024318 27487
+## 2025 6 TRUE 1 FALSE 1506016325 27487
+## 2026 46 TRUE 1 FALSE 1506032839 27487
+## 2027 47 TRUE 1 FALSE 1506032922 27487
+## 2028 40 TRUE 1 FALSE 1505235900 27487
+## 2029 17 TRUE 3 FALSE 1506017015 27487
+## 2030 27 TRUE 3 FALSE 1506125573 27487
+## 2031 41 TRUE 1 FALSE 1506026221 27487
+## 2032 20 TRUE 1 FALSE 1506017061 27487
+## 2033 21 TRUE 1 FALSE 1506017067 27487
+## 2034 22 TRUE 1 FALSE 1506017070 27487
+## 2035 33 TRUE 1 FALSE 1505237078 27487
+## 2036 19 TRUE 1 FALSE 1506123707 27487
+## 2037 3 TRUE 1 FALSE 1505235508 27487
+## 2038 8 TRUE 1 FALSE 1505235526 27487
+## 2039 10 TRUE 1 FALSE 1505235537 27487
+## 2040 8 TRUE 2 FALSE 1506017506 27487
+## 2041 9 TRUE 1 FALSE 1506017514 27487
+## 2042 10 TRUE 1 FALSE 1506017627 27487
+## 2043 40 TRUE 1 FALSE 1506016155 27487
+## 2044 33 TRUE 1 FALSE 1505235825 27487
+## 2045 30 TRUE 1 FALSE 1505237007 27487
+## 2046 18 TRUE 1 FALSE 1506123649 27487
+## 2047 30 TRUE 1 FALSE 1506125832 27487
+## 2048 20 TRUE 1 FALSE 1506123774 27487
+## 2049 35 TRUE 1 FALSE 1505237343 27487
+## 2050 37 TRUE 1 FALSE 1505237363 27487
+## 2051 11 TRUE 1 FALSE 1506123142 27487
+## 2052 33 TRUE 1 FALSE 1506015933 27487
+## 2053 27 TRUE 1 FALSE 1505235779 27487
+## 2054 39 TRUE 1 FALSE 1506016153 27487
+## 2055 18 TRUE 1 FALSE 1506017022 27487
+## 2056 19 TRUE 1 FALSE 1506017053 27487
+## 2057 4 TRUE 1 FALSE 1506016307 27487
+## 2058 29 TRUE 1 FALSE 1506125794 27487
+## 2059 36 TRUE 2 FALSE 1506019503 27487
+## 2060 13 TRUE 1 FALSE 1505236404 27487
+## 2061 38 TRUE 1 FALSE 1505235888 27487
+## 2062 41 TRUE 1 FALSE 1506019628 27487
+## 2063 17 TRUE 1 FALSE 1505236558 27487
+## 2064 23 TRUE 2 FALSE 1506124030 27487
+## 2065 24 TRUE 1 FALSE 1506124051 27487
+## 2066 21 TRUE 2 FALSE 1505236777 27487
+## 2067 15 TRUE 1 FALSE 1506123581 27487
+## 2068 28 TRUE 2 FALSE 1506125792 27487
+## 2069 17 TRUE 1 FALSE 1506123631 27487
+## 2070 10 TRUE 1 FALSE 1505236319 27487
+## 2071 37 TRUE 1 FALSE 1506019530 27487
+## 2072 5 TRUE 1 FALSE 1506017382 27487
+## 2073 3 TRUE 1 FALSE 1506017283 27487
+## 2074 14 TRUE 1 FALSE 1505236449 27487
+## 2075 27 TRUE 1 FALSE 1506019148 27487
+## 2076 18 TRUE 1 FALSE 1505236648 27487
+## 2077 14 TRUE 1 FALSE 1506123283 27487
+## 2078 6 TRUE 1 FALSE 1505236221 27487
+## 2079 16 TRUE 2 FALSE 1506123602 27487
+## 2080 9 TRUE 1 FALSE 1505236306 27487
+## 2081 34 TRUE 1 FALSE 1506019477 27487
+## 2082 12 TRUE 1 FALSE 1505236391 27487
+## 2083 36 TRUE 2 FALSE 1505235874 27487
+## 2084 40 TRUE 1 FALSE 1506019625 27487
+## 2085 4 TRUE 1 FALSE 1505236164 27487
+## 2086 16 TRUE 1 FALSE 1505236482 27487
+## 2087 12 TRUE 1 FALSE 1506123144 27487
+## 2088 13 TRUE 1 FALSE 1506123168 27487
+## 2089 33 TRUE 1 FALSE 1506019467 27487
+## 2090 26 TRUE 1 FALSE 1505235775 27487
+## 2091 31 TRUE 1 FALSE 1506019394 27487
+## 2092 7 TRUE 1 FALSE 1505236249 27487
+## 2093 25 TRUE 2 FALSE 1505235752 27487
+## 2094 38 TRUE 1 FALSE 1505237366 27487
+## 2095 3 TRUE 2 FALSE 1505236158 27487
+## 2096 32 TRUE 1 FALSE 1506019442 27487
+## 2097 29 TRUE 1 FALSE 1506019379 27487
+## 2098 5 TRUE 1 FALSE 1505236174 27487
+## 2099 31 TRUE 1 FALSE 1505235803 27487
+## 2100 38 TRUE 1 FALSE 1506019587 27487
+## 2101 30 TRUE 1 FALSE 1506019383 27487
+## 2102 15 TRUE 1 FALSE 1504919889 21536
+## 2103 7 TRUE 1 FALSE 1504919477 21536
+## 2104 27 TRUE 1 FALSE 1504920200 21536
+## 2105 30 TRUE 1 FALSE 1504920292 21536
+## 2106 25 TRUE 1 FALSE 1504920140 21536
+## 2107 26 TRUE 1 FALSE 1504920151 21536
+## 2108 10 TRUE 2 FALSE 1504919637 21536
+## 2109 14 TRUE 1 FALSE 1504919881 21536
+## 2110 13 TRUE 1 FALSE 1504919809 21536
+## 2111 12 TRUE 3 FALSE 1504888369 21536
+## 2112 13 TRUE 1 FALSE 1504888437 21536
+## 2113 5 TRUE 1 FALSE 1504999311 21536
+## 2114 8 TRUE 1 FALSE 1504999374 21536
+## 2115 31 TRUE 1 FALSE NA 21536
+## 2116 16 TRUE 1 FALSE 1504973409 21536
+## 2117 19 TRUE 1 FALSE 1505395970 21536
+## 2118 11 TRUE 1 FALSE 1504919736 21536
+## 2119 12 TRUE 1 FALSE 1504919757 21536
+## 2120 4 TRUE 4 FALSE 1505247059 21536
+## 2121 6 TRUE 2 FALSE 1505247085 21536
+## 2122 7 TRUE 1 FALSE 1505247103 21536
+## 2123 8 TRUE 1 FALSE 1505247115 21536
+## 2124 10 TRUE 1 FALSE 1505247141 21536
+## 2125 11 TRUE 1 FALSE 1505247154 21536
+## 2126 17 TRUE 1 FALSE 1504973443 21536
+## 2127 18 TRUE 1 FALSE 1504973458 21536
+## 2128 6 TRUE 2 FALSE 1504888138 21536
+## 2129 11 TRUE 1 FALSE 1504888263 21536
+## 2130 20 TRUE 1 FALSE 1505857113 21536
+## 2131 22 TRUE 1 FALSE 1505857141 21536
+## 2132 26 TRUE 1 FALSE 1505857190 21536
+## 2133 27 TRUE 1 FALSE 1505857192 21536
+## 2134 14 TRUE 1 FALSE 1504888468 21536
+## 2135 15 TRUE 2 FALSE 1504888506 21536
+## 2136 10 TRUE 1 FALSE 1505856573 21536
+## 2137 11 TRUE 1 FALSE 1505856586 21536
+## 2138 13 TRUE 1 FALSE 1505856710 21536
+## 2139 3 TRUE 1 FALSE 1504976570 21536
+## 2140 17 TRUE 1 FALSE 1505856871 21536
+## 2141 13 TRUE 1 FALSE 1504999650 21536
+## 2142 14 TRUE 1 FALSE 1504999666 21536
+## 2143 16 TRUE 1 FALSE 1504999968 21536
+## 2144 17 TRUE 1 FALSE 1505000116 21536
+## 2145 18 TRUE 1 FALSE 1505000184 21536
+## 2146 19 TRUE 1 FALSE 1505000250 21536
+## 2147 14 TRUE 2 FALSE 1505837157 21536
+## 2148 18 TRUE 2 FALSE 1505395967 21536
+## 2149 12 TRUE 2 FALSE 1505322708 21536
+## 2150 16 TRUE 1 FALSE 1505856856 21536
+## 2151 7 TRUE 1 FALSE 1504976651 21536
+## 2152 11 TRUE 1 FALSE 1504976763 21536
+## 2153 14 TRUE 1 FALSE 1504976834 21536
+## 2154 5 TRUE 1 FALSE 1505247065 21536
+## 2155 4 TRUE 1 FALSE 1505856481 21536
+## 2156 6 TRUE 1 FALSE 1505856504 21536
+## 2157 8 TRUE 1 FALSE 1505856554 21536
+## 2158 9 TRUE 1 FALSE 1505856562 21536
+## 2159 34 TRUE 2 FALSE 1504977559 21536
+## 2160 35 TRUE 2 FALSE 15049775 21536
+## 2161 15 TRUE 1 FALSE 1505856739 21536
+## 2162 12 TRUE 1 FALSE 1504999607 21536
+## 2163 17 TRUE 2 FALSE 1505068911 21536
+## 2164 19 TRUE 1 FALSE 1505068987 21536
+## 2165 22 TRUE 1 FALSE 1505069069 21536
+## 2166 23 TRUE 1 FALSE 1505069084 21536
+## 2167 3 TRUE 1 FALSE 1505057365 21536
+## 2168 5 TRUE 1 FALSE 1505057383 21536
+## 2169 9 TRUE 2 FALSE 1504999548 21536
+## 2170 11 TRUE 1 FALSE 1504999593 21536
+## 2171 20 TRUE 2 FALSE 1505396009 21536
+## 2172 3 TRUE 1 FALSE 1505856422 21536
+## 2173 13 TRUE 1 FALSE 1504973330 21536
+## 2174 15 TRUE 1 FALSE 1504973376 21536
+## 2175 15 TRUE 1 FALSE 1505322801 21536
+## 2176 18 TRUE 1 FALSE 1504888 21536
+## 2177 10 TRUE 1 FALSE 1504999565 21536
+## 2178 15 TRUE 1 FALSE 1505068879 21536
+## 2179 16 TRUE 1 FALSE 1505068891 21536
+## 2180 8 TRUE 5 FALSE 1504973076 21536
+## 2181 25 TRUE 1 FALSE 1504977261 21536
+## 2182 32 TRUE 1 FALSE 1504977533 21536
+## 2183 33 TRUE 1 FALSE 1504977542 21536
+## 2184 8 TRUE 1 FALSE 1505057480 21536
+## 2185 16 TRUE 2 FALSE 1504888605 21536
+## 2186 11 TRUE 1 FALSE 1505836962 21536
+## 2187 18 TRUE 1 FALSE 1505072392 21536
+## 2188 14 TRUE 1 FALSE 1505068848 21536
+## 2189 20 TRUE 5 FALSE 1505072510 21536
+## 2190 9 TRUE 2 FALSE 1504973117 21536
+## 2191 12 TRUE 1 FALSE 1504973181 21536
+## 2192 28 TRUE 1 FALSE 1505072917 21536
+## 2193 10 TRUE 2 FALSE 1505836955 21536
+## 2194 8 TRUE 1 FALSE 1505071870 21536
+## 2195 11 TRUE 1 FALSE 1505322525 21536
+## 2196 10 TRUE 1 FALSE 1505057532 21536
+## 2197 12 TRUE 1 FALSE 1505057602 21536
+## 2198 24 TRUE 1 FALSE 1505072714 21536
+## 2199 26 TRUE 1 FALSE 1505072730 21536
+## 2200 21 TRUE 1 FALSE 1504977153 21536
+## 2201 6 TRUE 1 FALSE 1505322440 21536
+## 2202 8 TRUE 1 FALSE 1505322477 21536
+## 2203 27 TRUE 1 FALSE 1505072840 21536
+## 2204 9 TRUE 1 FALSE 1505836881 21536
+## 2205 22 TRUE 1 FALSE 1505072554 21536
+## 2206 5 TRUE 1 FALSE 1505834795 21536
+## 2207 6 TRUE 1 FALSE 1505834854 21536
+## 2208 7 TRUE 1 FALSE 1505836867 21536
+## 2209 8 TRUE 1 FALSE 1505836869 21536
+## 2210 3 TRUE 1 FALSE 1505322354 21536
+## 2211 6 TRUE 1 FALSE 1504827158 65259
+## 2212 4 TRUE 2 FALSE 1504827135 65259
+## 2213 5 TRUE 1 FALSE 1504827148 65259
+## 2214 21 TRUE 1 FALSE 1504827484 65259
+## 2215 14 TRUE 1 FALSE 1504886321 65259
+## 2216 15 TRUE 1 FALSE 1504886357 65259
+## 2217 3 TRUE 2 FALSE 1504886227 65259
+## 2218 7 TRUE 1 FALSE 1504827187 65259
+## 2219 8 TRUE 1 FALSE 1504827202 65259
+## 2220 10 TRUE 1 FALSE 1504827233 65259
+## 2221 11 TRUE 1 FALSE 1504827252 65259
+## 2222 12 TRUE 1 FALSE 1504827268 65259
+## 2223 16 TRUE 1 FALSE 1504827350 65259
+## 2224 18 TRUE 1 FALSE 1504827441 65259
+## 2225 12 TRUE 1 FALSE 1504886301 65259
+## 2226 13 TRUE 1 FALSE 1504886305 65259
+## 2227 4 TRUE 1 FALSE 1504886232 65259
+## 2228 5 TRUE 1 FALSE 1504886240 65259
+## 2229 16 TRUE 2 FALSE 1504886364 65259
+## 2230 8 TRUE 1 FALSE 1504886272 65259
+## 2231 9 TRUE 1 FALSE 1504886278 65259
+## 2232 7 TRUE 2 FALSE 1504886258 65259
+## 2233 11 TRUE 1 FALSE 1504886296 65259
+## 2234 17 TRUE 1 FALSE 1504886368 65259
+## 2235 21 TRUE 2 FALSE 1505175554 2864
+## 2236 10 TRUE 1 FALSE 1505175315 2864
+## 2237 36 TRUE 1 FALSE 1505175790 2864
+## 2238 14 TRUE 1 FALSE 1505175368 2864
+## 2239 18 TRUE 1 FALSE 1505175499 2864
+## 2240 22 TRUE 1 FALSE 1505175575 2864
+## 2241 8 TRUE 1 FALSE 1505175307 2864
+## 2242 12 TRUE 1 FALSE 1505175329 2864
+## 2243 31 TRUE 1 FALSE 1505175717 2864
+## 2244 38 TRUE 1 FALSE 1505175818 2864
+## 2245 33 TRUE 1 FALSE 1505175754 2864
+## 2246 17 TRUE 2 FALSE 1505175482 2864
+## 2247 11 TRUE 1 FALSE 1505175324 2864
+## 2248 3 TRUE 1 FALSE 1505175263 2864
+## 2249 23 TRUE 1 FALSE 1505175584 2864
+## 2250 16 TRUE 1 FALSE 1505175433 2864
+## 2251 27 TRUE 1 FALSE 1505175658 2864
+## 2252 40 TRUE 1 FALSE 1505175831 2864
+## 2253 15 TRUE 2 FALSE 1505175424 2864
+## 2254 26 TRUE 1 FALSE 1505175653 2864
+## 2255 25 TRUE 1 FALSE 1505175621 2864
+## 2256 39 TRUE 1 FALSE 1505175825 2864
+## 2257 25 TRUE 1 FALSE 1505180426 34068
+## 2258 36 TRUE 1 FALSE 1505180611 34068
+## 2259 21 TRUE 1 FALSE 1505180336 34068
+## 2260 3 TRUE 1 FALSE 1505180045 34068
+## 2261 22 TRUE 1 FALSE 1505180360 34068
+## 2262 17 TRUE 1 FALSE 1505180233 34068
+## 2263 33 TRUE 1 FALSE 1505180557 34068
+## 2264 23 TRUE 1 FALSE 1505180371 34068
+## 2265 31 TRUE 1 FALSE 1505180527 34068
+## 2266 12 TRUE 1 FALSE 1505180118 34068
+## 2267 14 TRUE 1 FALSE 1505180178 34068
+## 2268 40 TRUE 1 FALSE 1505180659 34068
+## 2269 16 TRUE 1 FALSE 1505180198 34068
+## 2270 38 TRUE 1 FALSE 1505180642 34068
+## 2271 18 TRUE 1 FALSE 1505180259 34068
+## 2272 39 TRUE 1 FALSE 1505180649 34068
+## 2273 27 TRUE 1 FALSE 1505180456 34068
+## 2274 8 TRUE 1 FALSE 1505180083 34068
+## 2275 10 TRUE 1 FALSE 1505180098 34068
+## 2276 15 TRUE 1 FALSE 1505180188 34068
+## 2277 26 TRUE 1 FALSE 1505180445 34068
+## 2278 11 TRUE 1 FALSE 1505180115 34068
+## 2279 16 TRUE 2 FALSE 1502408365 76966
+## 2280 17 TRUE 1 FALSE 1502409052 76966
+## 2281 18 TRUE 3 FALSE 1502409329 76966
+## 2282 38 TRUE 1 FALSE 1502411179 76966
+## 2283 33 TRUE 1 FALSE 1502410633 76966
+## 2284 34 TRUE 2 FALSE 1502411135 76966
+## 2285 35 TRUE 1 FALSE 1502411141 76966
+## 2286 37 TRUE 1 FALSE 1502411166 76966
+## 2287 3 TRUE 1 FALSE 1502388489 76966
+## 2288 21 TRUE 3 FALSE 1502410318 76966
+## 2289 22 TRUE 1 FALSE 1502410425 76966
+## 2290 26 TRUE 1 FALSE 1502410486 76966
+## 2291 27 TRUE 1 FALSE 1502410498 76966
+## 2292 30 TRUE 1 FALSE 1502410523 76966
+## 2293 13 TRUE 1 FALSE 1502408160 76966
+## 2294 14 TRUE 1 FALSE 1502408314 76966
+## 2295 4 TRUE 1 FALSE 1502388497 76966
+## 2296 5 TRUE 1 FALSE 1502388508 76966
+## 2297 6 TRUE 1 FALSE 1502388672 76966
+## 2298 7 TRUE 1 FALSE 1502388705 76966
+## 2299 9 TRUE 1 FALSE 1502388726 76966
+## 2300 10 TRUE 1 FALSE 1502388746 76966
+## 2301 12 TRUE 1 FALSE 1502388793 76966
+## 2302 3 TRUE 1 FALSE 1499366294 4807
+## 2303 8 TRUE 1 FALSE 1499366325 4807
+## 2304 10 TRUE 1 FALSE 1499366341 4807
+## 2305 11 TRUE 2 FALSE 1499366546 4807
+## 2306 12 TRUE 1 FALSE 1499366549 4807
+## 2307 14 TRUE 4 FALSE 1499366778 4807
+## 2308 15 TRUE 2 FALSE 1499367393 4807
+## 2309 16 TRUE 1 FALSE 1499367401 4807
+## 2310 17 TRUE 2 FALSE 1499368142 4807
+## 2311 18 TRUE 1 FALSE 1499368185 4807
+## 2312 21 TRUE 3 FALSE 1499368318 4807
+## 2313 22 TRUE 2 FALSE 1499368356 4807
+## 2314 23 TRUE 2 FALSE 1499368404 4807
+## 2315 25 TRUE 2 FALSE 1499368659 4807
+## 2316 26 TRUE 1 FALSE 1499368673 4807
+## 2317 27 TRUE 1 FALSE 1499368680 4807
+## 2318 31 TRUE 1 FALSE 1499368797 4807
+## 2319 33 TRUE 1 FALSE 1499368821 4807
+## 2320 36 TRUE 1 FALSE 1499368868 4807
+## 2321 38 TRUE 1 FALSE 1499368891 4807
+## 2322 39 TRUE 1 FALSE 1499368902 4807
+## 2323 40 TRUE 1 FALSE 1499368906 4807
+## 2324 5 TRUE 1 FALSE 1499368998 4807
+## 2325 6 TRUE 1 FALSE 1499369005 4807
+## 2326 8 TRUE 1 FALSE 1499369036 4807
+## 2327 9 TRUE 1 FALSE 1499369040 4807
+## 2328 10 TRUE 1 FALSE 1499369050 4807
+## 2329 11 TRUE 1 FALSE 1499370381 4807
+## 2330 14 TRUE 1 FALSE 1499370430 4807
+## 2331 15 TRUE 2 FALSE 1499370499 4807
+## 2332 17 TRUE 1 FALSE 1499370533 4807
+## 2333 19 TRUE 1 FALSE 1499370573 4807
+## 2334 21 TRUE 1 FALSE 1499370622 4807
+## 2335 22 TRUE 2 FALSE 1499370650 4807
+## 2336 23 TRUE 3 FALSE 1499370781 4807
+## 2337 25 TRUE 1 FALSE 1499370808 4807
+## 2338 27 TRUE 2 FALSE 1499370959 4807
+## 2339 29 TRUE 1 FALSE 1499371025 4807
+## 2340 31 TRUE 2 FALSE 1499371094 4807
+## 2341 32 TRUE 1 FALSE 1499371248 4807
+## 2342 33 TRUE 1 FALSE 1499371284 4807
+## 2343 34 TRUE 2 FALSE 1499371565 4807
+## 2344 35 TRUE 1 FALSE 1499371585 4807
+## 2345 40 TRUE 1 FALSE 1499371651 4807
+## 2346 41 TRUE 1 FALSE 1499371655 4807
+## 2347 5 TRUE 1 FALSE 1499377896 4807
+## 2348 6 TRUE 2 FALSE 1499378009 4807
+## 2349 7 TRUE 1 FALSE 1499378023 4807
+## 2350 8 TRUE 1 FALSE 1499378032 4807
+## 2351 11 TRUE 1 FALSE 1499378097 4807
+## 2352 17 TRUE 3 FALSE 1499378329 4807
+## 2353 18 TRUE 2 FALSE 1499378420 4807
+## 2354 19 TRUE 1 FALSE 1499378496 4807
+## 2355 22 TRUE 1 FALSE 1499378561 4807
+## 2356 23 TRUE 1 FALSE 1499378567 4807
+## 2357 25 TRUE 2 FALSE 1499378924 4807
+## 2358 28 TRUE 1 FALSE 1499379089 4807
+## 2359 29 TRUE 1 FALSE 1499379097 4807
+## 2360 30 TRUE 1 FALSE 1499379307 4807
+## 2361 32 TRUE 2 FALSE 1499379460 4807
+## 2362 33 TRUE 2 FALSE 1499379696 4807
+## 2363 35 TRUE 1 FALSE 1499379958 4807
+## 2364 39 TRUE 1 FALSE 1499380006 4807
+## 2365 40 TRUE 1 FALSE 1499380013 4807
+## 2366 30 TRUE 2 FALSE 1500767835 4807
+## 2367 33 TRUE 1 FALSE 1500768120 4807
+## 2368 34 TRUE 2 FALSE 1500768238 4807
+## 2369 35 TRUE 1 FALSE 1500768247 4807
+## 2370 37 TRUE 1 FALSE 1500768320 4807
+## 2371 38 TRUE 1 FALSE 1500768324 4807
+## 2372 3 TRUE 1 FALSE 1499914640 4807
+## 2373 4 TRUE 1 FALSE 1499914653 4807
+## 2374 5 TRUE 2 FALSE 1499914675 4807
+## 2375 7 TRUE 1 FALSE 1499914898 4807
+## 2376 8 TRUE 2 FALSE 1499914953 4807
+## 2377 9 TRUE 1 FALSE 1499914960 4807
+## 2378 11 TRUE 1 FALSE 1499915028 4807
+## 2379 12 TRUE 1 FALSE 1499915032 4807
+## 2380 13 TRUE 1 FALSE 1499915053 4807
+## 2381 14 TRUE 1 FALSE 1499915087 4807
+## 2382 15 TRUE 1 FALSE 1499915168 4807
+## 2383 16 TRUE 1 FALSE 1499915177 4807
+## 2384 17 TRUE 1 FALSE 1499915197 4807
+## 2385 3 TRUE 2 FALSE 1499816686 4807
+## 2386 4 TRUE 1 FALSE 1499816698 4807
+## 2387 6 TRUE 1 FALSE 1499816726 4807
+## 2388 7 TRUE 1 FALSE 1499816756 4807
+## 2389 8 TRUE 1 FALSE 1499816802 4807
+## 2390 9 TRUE 1 FALSE 1499816871 4807
+## 2391 10 TRUE 1 FALSE 1499816878 4807
+## 2392 12 TRUE 1 FALSE 1499816969 4807
+## 2393 17 TRUE 2 FALSE 1499817174 4807
+## 2394 18 TRUE 1 FALSE 1499817222 4807
+## 2395 19 TRUE 1 FALSE 1499817252 4807
+## 2396 20 TRUE 1 FALSE 1499817295 4807
+## 2397 21 TRUE 1 FALSE 1499817336 4807
+## 2398 22 TRUE 1 FALSE 1499817340 4807
+## 2399 3 TRUE 1 FALSE 1499904135 4807
+## 2400 5 TRUE 1 FALSE 1499904169 4807
+## 2401 8 TRUE 1 FALSE 1499904364 4807
+## 2402 9 TRUE 1 FALSE 1499904382 4807
+## 2403 10 TRUE 1 FALSE 1499904495 4807
+## 2404 11 TRUE 1 FALSE 1499904498 4807
+## 2405 13 TRUE 2 FALSE 1499904601 4807
+## 2406 14 TRUE 1 FALSE 1499904646 4807
+## 2407 15 TRUE 1 FALSE 1499904713 4807
+## 2408 17 TRUE 1 FALSE 1499904793 4807
+## 2409 21 TRUE 2 FALSE 1499906000 4807
+## 2410 22 TRUE 1 FALSE 1499906037 4807
+## 2411 23 TRUE 1 FALSE 1499906056 4807
+## 2412 26 TRUE 1 FALSE 1499906133 4807
+## 2413 27 TRUE 1 FALSE 1499906166 4807
+## 2414 29 TRUE 1 FALSE 1499906215 4807
+## 2415 30 TRUE 1 FALSE 1499906225 4807
+## 2416 31 TRUE 1 FALSE 1499906250 4807
+## 2417 32 TRUE 2 FALSE 1499906339 4807
+## 2418 33 TRUE 1 FALSE 1499906394 4807
+## 2419 34 TRUE 1 FALSE 1499907077 4807
+## 2420 36 TRUE 2 FALSE 1499907284 4807
+## 2421 37 TRUE 1 FALSE 1499907300 4807
+## 2422 38 TRUE 1 FALSE 1499907338 4807
+## 2423 40 TRUE 1 FALSE 1499907372 4807
+## 2424 41 TRUE 1 FALSE 1499907374 4807
+## 2425 4 TRUE 1 FALSE 1499908616 4807
+## 2426 6 TRUE 1 FALSE 1499908709 4807
+## 2427 7 TRUE 1 FALSE 1499908731 4807
+## 2428 9 TRUE 1 FALSE 1499908806 4807
+## 2429 10 TRUE 1 FALSE 1499908820 4807
+## 2430 12 TRUE 1 FALSE 1499908853 4807
+## 2431 13 TRUE 1 FALSE 1499908899 4807
+## 2432 14 TRUE 1 FALSE 1499908930 4807
+## 2433 15 TRUE 4 FALSE 1499909165 4807
+## 2434 17 TRUE 3 FALSE 1499909273 4807
+## 2435 18 TRUE 2 FALSE 1499909311 4807
+## 2436 20 TRUE 1 FALSE 1499909349 4807
+## 2437 21 TRUE 1 FALSE 1499909379 4807
+## 2438 23 TRUE 1 FALSE 1499909422 4807
+## 2439 27 TRUE 1 FALSE 1499910378 4807
+## 2440 28 TRUE 1 FALSE 1499910400 4807
+## 2441 30 TRUE 1 FALSE 1499910473 4807
+## 2442 32 TRUE 2 FALSE 1499910546 4807
+## 2443 33 TRUE 2 FALSE 1499910603 4807
+## 2444 35 TRUE 1 FALSE 1499910661 4807
+## 2445 36 TRUE 3 FALSE 1499910782 4807
+## 2446 37 TRUE 1 FALSE 1499910820 4807
+## 2447 38 TRUE 1 FALSE 1499910839 4807
+## 2448 39 TRUE 1 FALSE 1499910875 4807
+## 2449 41 TRUE 4 FALSE 1499911294 4807
+## 2450 42 TRUE 1 FALSE 1499911474 4807
+## 2451 43 TRUE 1 FALSE 1499911482 4807
+## 2452 44 TRUE 1 FALSE 1499913399 4807
+## 2453 46 TRUE 1 FALSE 1499913459 4807
+## 2454 47 TRUE 1 FALSE 1499913818 4807
+## 2455 49 TRUE 2 FALSE 1499913873 4807
+## 2456 50 TRUE 9 FALSE 1499914027 4807
+## 2457 51 TRUE 1 FALSE 1499914054 4807
+## 2458 53 TRUE 1 FALSE 1499914067 4807
+## 2459 54 TRUE 1 FALSE 1499914074 4807
+## 2460 3 TRUE 4 FALSE 1500766032 4807
+## 2461 4 TRUE 1 FALSE 1500766040 4807
+## 2462 18 TRUE 1 FALSE 1499915217 4807
+## 2463 19 TRUE 1 FALSE 1499915371 4807
+## 2464 20 TRUE 1 FALSE 1499915470 4807
+## 2465 22 TRUE 1 FALSE 1499924270 4807
+## 2466 23 TRUE 2 FALSE 1499924308 4807
+## 2467 24 TRUE 1 FALSE 1499924366 4807
+## 2468 27 TRUE 5 FALSE 1499924620 4807
+## 2469 28 TRUE 2 FALSE 1499924724 4807
+## 2470 29 TRUE 1 FALSE 1499924727 4807
+## 2471 30 TRUE 1 FALSE 1499924747 4807
+## 2472 32 TRUE 1 FALSE 1499924807 4807
+## 2473 33 TRUE 1 FALSE 1499924845 4807
+## 2474 35 TRUE 1 FALSE 1499924900 4807
+## 2475 37 TRUE 1 FALSE 1499924944 4807
+## 2476 38 TRUE 1 FALSE 1499924948 4807
+## 2477 16 TRUE 2 FALSE 1500767055 4807
+## 2478 17 TRUE 2 FALSE 1500767367 4807
+## 2479 5 TRUE 1 FALSE 1500766055 4807
+## 2480 6 TRUE 1 FALSE 1500766091 4807
+## 2481 7 TRUE 1 FALSE 1500766234 4807
+## 2482 9 TRUE 1 FALSE 1500766271 4807
+## 2483 10 TRUE 1 FALSE 1500766294 4807
+## 2484 12 TRUE 1 FALSE 1500766347 4807
+## 2485 13 TRUE 1 FALSE 1500766412 4807
+## 2486 14 TRUE 2 FALSE 1500766485 4807
+## 2487 21 TRUE 1 FALSE 1500767561 4807
+## 2488 22 TRUE 1 FALSE 1500767604 4807
+## 2489 26 TRUE 1 FALSE 1500767725 4807
+## 2490 18 TRUE 1 FALSE 1500767391 4807
+## 2491 27 TRUE 1 FALSE 1500767733 4807
+## 2492 23 TRUE 1 FALSE 1505252526 6487
+## 2493 18 TRUE 1 FALSE 1505252392 6487
+## 2494 11 TRUE 1 FALSE 1505252088 6487
+## 2495 16 TRUE 1 FALSE 1505252333 6487
+## 2496 15 TRUE 1 FALSE 1505252312 6487
+## 2497 39 TRUE 1 FALSE 1505253186 6487
+## 2498 21 TRUE 1 FALSE 1505252497 6487
+## 2499 17 TRUE 1 FALSE 1505252375 6487
+## 2500 33 TRUE 1 FALSE 1505252944 6487
+## 2501 14 TRUE 1 FALSE 1505252297 6487
+## 2502 40 TRUE 1 FALSE 1505253190 6487
+## 2503 3 TRUE 1 FALSE 1505251861 6487
+## 2504 12 TRUE 2 FALSE 1505252106 6487
+## 2505 25 TRUE 1 FALSE 1505252568 6487
+## 2506 26 TRUE 1 FALSE 1505252586 6487
+## 2507 22 TRUE 1 FALSE 1505252519 6487
+## 2508 38 TRUE 1 FALSE 1505253173 6487
+## 2509 31 TRUE 1 FALSE 1505252811 6487
+## 2510 36 TRUE 1 FALSE 1505253059 6487
+## 2511 10 TRUE 1 FALSE 1505252078 6487
+## 2512 8 TRUE 1 FALSE 1505252047 6487
+## 2513 27 TRUE 1 FALSE 1505252590 6487
+## 2514 6 TRUE 1 FALSE 1506210439 8766
+## 2515 5 TRUE 1 FALSE 1506210407 8766
+## 2516 11 TRUE 1 FALSE 1506210616 8766
+## 2517 8 TRUE 1 FALSE 1506210477 8766
+## 2518 9 TRUE 1 FALSE 1506210483 8766
+## 2519 10 TRUE 1 FALSE 1506210501 8766
+## 2520 17 TRUE 2 FALSE 1506210932 8766
+## 2521 19 TRUE 1 FALSE 1506211021 8766
+## 2522 21 TRUE 1 FALSE 1506211065 8766
+## 2523 22 TRUE 2 FALSE 1506211108 8766
+## 2524 23 TRUE 1 FALSE 1506211133 8766
+## 2525 25 TRUE 1 FALSE 1506211212 8766
+## 2526 27 TRUE 1 FALSE 1506211241 8766
+## 2527 29 TRUE 1 FALSE 1506211334 8766
+## 2528 14 TRUE 1 FALSE 1506210650 8766
+## 2529 15 TRUE 2 FALSE 1506210749 8766
+## 2530 32 TRUE 2 FALSE 1506211444 8766
+## 2531 33 TRUE 1 FALSE 1506211488 8766
+## 2532 34 TRUE 3 FALSE 1506211691 8766
+## 2533 35 TRUE 1 FALSE 1506211760 8766
+## 2534 40 TRUE 1 FALSE 1506211831 8766
+## 2535 41 TRUE 1 FALSE 1506211833 8766
+## 2536 31 TRUE 2 FALSE 1506211401 8766
+## 2537 8 TRUE 1 FALSE 1506212217 8766
+## 2538 11 TRUE 1 FALSE 1506212271 8766
+## 2539 17 TRUE 1 FALSE 1506212393 8766
+## 2540 18 TRUE 1 FALSE 1506212398 8766
+## 2541 19 TRUE 1 FALSE 1506212435 8766
+## 2542 22 TRUE 1 FALSE 1506212468 8766
+## 2543 23 TRUE 1 FALSE 1506212473 8766
+## 2544 25 TRUE 2 FALSE 1506212545 8766
+## 2545 28 TRUE 2 FALSE 1506212625 8766
+## 2546 29 TRUE 1 FALSE 1506212633 8766
+## 2547 30 TRUE 2 FALSE 1506212830 8766
+## 2548 32 TRUE 1 FALSE 1506212886 8766
+## 2549 33 TRUE 1 FALSE 1506212966 8766
+## 2550 35 TRUE 1 FALSE 1506212997 8766
+## 2551 39 TRUE 1 FALSE 1506213064 8766
+## 2552 40 TRUE 1 FALSE 1506213067 8766
+## 2553 3 TRUE 1 FALSE 1506213777 8766
+## 2554 4 TRUE 1 FALSE 1506213785 8766
+## 2555 6 TRUE 1 FALSE 1506213826 8766
+## 2556 7 TRUE 1 FALSE 1506213883 8766
+## 2557 8 TRUE 1 FALSE 1506213972 8766
+## 2558 9 TRUE 1 FALSE 1506213998 8766
+## 2559 10 TRUE 1 FALSE 1506214004 8766
+## 2560 12 TRUE 1 FALSE 1506214063 8766
+## 2561 17 TRUE 1 FALSE 1506214112 8766
+## 2562 18 TRUE 1 FALSE 1506214169 8766
+## 2563 19 TRUE 1 FALSE 1506214189 8766
+## 2564 20 TRUE 3 FALSE 1506214264 8766
+## 2565 21 TRUE 1 FALSE 1506214267 8766
+## 2566 22 TRUE 1 FALSE 1506214270 8766
+## 2567 5 TRUE 2 FALSE 1506212127 8766
+## 2568 6 TRUE 1 FALSE 1506212150 8766
+## 2569 7 TRUE 1 FALSE 1506212211 8766
+## 2570 11 TRUE 1 FALSE 1506135629 70464
+## 2571 12 TRUE 1 FALSE 1506135632 70464
+## 2572 14 TRUE 1 FALSE 1506135745 70464
+## 2573 16 TRUE 1 FALSE 1506135811 70464
+## 2574 17 TRUE 1 FALSE 1506135858 70464
+## 2575 3 TRUE 1 FALSE 1506135551 70464
+## 2576 15 TRUE 1 FALSE 1506135755 70464
+## 2577 10 TRUE 1 FALSE 1506135616 70464
+## 2578 41 TRUE 4 FALSE 1506187821 70464
+## 2579 42 TRUE 1 FALSE 1506187994 70464
+## 2580 43 TRUE 1 FALSE 1506187999 70464
+## 2581 44 TRUE 1 FALSE 1506188065 70464
+## 2582 46 TRUE 1 FALSE 1506188171 70464
+## 2583 47 TRUE 1 FALSE 1506188203 70464
+## 2584 49 TRUE 1 FALSE 1506188288 70464
+## 2585 50 TRUE 1 FALSE 1506188295 70464
+## 2586 51 TRUE 1 FALSE 1506188305 70464
+## 2587 53 TRUE 1 FALSE 1506188320 70464
+## 2588 8 TRUE 1 FALSE 1506135610 70464
+## 2589 3 TRUE 1 FALSE 1506193173 70464
+## 2590 4 TRUE 1 FALSE 1506193189 70464
+## 2591 5 TRUE 1 FALSE 1506193202 70464
+## 2592 7 TRUE 1 FALSE 1506193243 70464
+## 2593 8 TRUE 1 FALSE 1506193274 70464
+## 2594 9 TRUE 1 FALSE 1506193279 70464
+## 2595 11 TRUE 1 FALSE 1506193319 70464
+## 2596 12 TRUE 1 FALSE 1506193322 70464
+## 2597 18 TRUE 1 FALSE 1506135868 70464
+## 2598 21 TRUE 2 FALSE 1506136028 70464
+## 2599 54 TRUE 1 FALSE 1506188328 70464
+## 2600 27 TRUE 10 TRUE 1506195744 70464
+## 2601 28 TRUE 1 FALSE 1506195911 70464
+## 2602 29 TRUE 1 FALSE 1506195919 70464
+## 2603 30 TRUE 1 FALSE 1506196096 70464
+## 2604 32 TRUE 1 FALSE 1506196132 70464
+## 2605 33 TRUE 1 FALSE 1506196150 70464
+## 2606 35 TRUE 1 FALSE 1506196194 70464
+## 2607 37 TRUE 1 FALSE 1506196220 70464
+## 2608 22 TRUE 1 FALSE 1506136045 70464
+## 2609 23 TRUE 1 FALSE 1506136050 70464
+## 2610 3 TRUE 1 FALSE 1506198130 70464
+## 2611 5 TRUE 1 FALSE 1506198206 70464
+## 2612 8 TRUE 1 FALSE 1506198439 70464
+## 2613 9 TRUE 1 FALSE 1506198480 70464
+## 2614 11 TRUE 1 FALSE 1506198649 70464
+## 2615 13 TRUE 1 FALSE 1506198827 70464
+## 2616 14 TRUE 1 FALSE 1506198844 70464
+## 2617 16 TRUE 1 FALSE 1506199211 70464
+## 2618 17 TRUE 1 FALSE 1506199221 70464
+## 2619 19 TRUE 1 FALSE 1506199242 70464
+## 2620 21 TRUE 1 FALSE 1506199264 70464
+## 2621 38 TRUE 1 FALSE 1506196227 70464
+## 2622 25 TRUE 1 FALSE 1506136071 70464
+## 2623 26 TRUE 1 FALSE 1506136079 70464
+## 2624 27 TRUE 1 FALSE 1506136092 70464
+## 2625 31 TRUE 1 FALSE 1506136148 70464
+## 2626 33 TRUE 1 FALSE 1506136164 70464
+## 2627 36 TRUE 1 FALSE 1506136294 70464
+## 2628 38 TRUE 1 FALSE 1506136314 70464
+## 2629 39 TRUE 1 FALSE 1506136320 70464
+## 2630 40 TRUE 1 FALSE 1506136326 70464
+## 2631 23 TRUE 1 FALSE 1506199410 70464
+## 2632 25 TRUE 1 FALSE 1506199452 70464
+## 2633 31 TRUE 1 FALSE 1506185691 70464
+## 2634 32 TRUE 1 FALSE 1506185708 70464
+## 2635 33 TRUE 1 FALSE 1506185747 70464
+## 2636 34 TRUE 1 FALSE 1506185770 70464
+## 2637 36 TRUE 3 FALSE 1506185842 70464
+## 2638 37 TRUE 1 FALSE 1506185855 70464
+## 2639 38 TRUE 1 FALSE 1506185893 70464
+## 2640 40 TRUE 1 FALSE 1506185907 70464
+## 2641 41 TRUE 1 FALSE 1506185911 70464
+## 2642 4 TRUE 1 FALSE 1506186378 70464
+## 2643 6 TRUE 1 FALSE 1506186406 70464
+## 2644 7 TRUE 1 FALSE 1506186421 70464
+## 2645 9 TRUE 1 FALSE 1506186463 70464
+## 2646 10 TRUE 1 FALSE 1506186474 70464
+## 2647 12 TRUE 1 FALSE 1506186493 70464
+## 2648 13 TRUE 1 FALSE 1506186498 70464
+## 2649 14 TRUE 1 FALSE 1506186518 70464
+## 2650 15 TRUE 2 FALSE 1506186580 70464
+## 2651 17 TRUE 1 FALSE 1506186705 70464
+## 2652 18 TRUE 1 FALSE 1506186726 70464
+## 2653 20 TRUE 1 FALSE 1506186795 70464
+## 2654 21 TRUE 1 FALSE 1506186845 70464
+## 2655 23 TRUE 1 FALSE 1506186866 70464
+## 2656 27 TRUE 2 FALSE 1506187018 70464
+## 2657 28 TRUE 1 FALSE 1506187037 70464
+## 2658 30 TRUE 1 FALSE 1506187203 70464
+## 2659 32 TRUE 1 FALSE 1506187279 70464
+## 2660 33 TRUE 1 FALSE 1506187330 70464
+## 2661 35 TRUE 1 FALSE 1506187358 70464
+## 2662 36 TRUE 1 FALSE 1506187397 70464
+## 2663 37 TRUE 1 FALSE 1506187415 70464
+## 2664 38 TRUE 3 FALSE 1506187465 70464
+## 2665 39 TRUE 1 FALSE 1506187580 70464
+## 2666 5 TRUE 1 FALSE 1506178473 70464
+## 2667 6 TRUE 2 FALSE 1506178574 70464
+## 2668 7 TRUE 1 FALSE 1506178599 70464
+## 2669 8 TRUE 1 FALSE 1506178604 70464
+## 2670 11 TRUE 1 FALSE 1506178693 70464
+## 2671 17 TRUE 1 FALSE 1506178955 70464
+## 2672 18 TRUE 1 FALSE 1506178971 70464
+## 2673 19 TRUE 1 FALSE 1506179020 70464
+## 2674 22 TRUE 1 FALSE 1506179220 70464
+## 2675 23 TRUE 1 FALSE 1506179232 70464
+## 2676 25 TRUE 1 FALSE 1506179326 70464
+## 2677 28 TRUE 1 FALSE 1506179501 70464
+## 2678 29 TRUE 1 FALSE 1506179507 70464
+## 2679 30 TRUE 1 FALSE 1506179629 70464
+## 2680 32 TRUE 2 FALSE 1506179733 70464
+## 2681 33 TRUE 1 FALSE 1506179820 70464
+## 2682 35 TRUE 1 FALSE 1506179931 70464
+## 2683 39 TRUE 1 FALSE 1506179988 70464
+## 2684 40 TRUE 1 FALSE 1506179990 70464
+## 2685 13 TRUE 1 FALSE 1506193336 70464
+## 2686 14 TRUE 1 FALSE 1506193399 70464
+## 2687 15 TRUE 1 FALSE 1506193452 70464
+## 2688 16 TRUE 2 FALSE 1506193475 70464
+## 2689 17 TRUE 1 FALSE 1506193484 70464
+## 2690 18 TRUE 1 FALSE 1506193506 70464
+## 2691 19 TRUE 1 FALSE 1506193554 70464
+## 2692 20 TRUE 1 FALSE 1506193606 70464
+## 2693 22 TRUE 1 FALSE 1506193642 70464
+## 2694 23 TRUE 1 FALSE 1506193662 70464
+## 2695 24 TRUE 1 FALSE 1506193688 70464
+## 2696 6 TRUE 2 FALSE 1506136519 70464
+## 2697 8 TRUE 1 FALSE 1506136553 70464
+## 2698 9 TRUE 1 FALSE 1506136558 70464
+## 2699 10 TRUE 1 FALSE 1506136599 70464
+## 2700 11 TRUE 1 FALSE 1506136648 70464
+## 2701 14 TRUE 2 FALSE 1506136808 70464
+## 2702 15 TRUE 1 FALSE 1506136846 70464
+## 2703 17 TRUE 1 FALSE 1506136944 70464
+## 2704 19 TRUE 1 FALSE 1506137069 70464
+## 2705 21 TRUE 1 FALSE 1506137165 70464
+## 2706 22 TRUE 1 FALSE 1506137214 70464
+## 2707 23 TRUE 1 FALSE 1506137230 70464
+## 2708 25 TRUE 1 FALSE 1506137364 70464
+## 2709 27 TRUE 3 FALSE 1506137735 70464
+## 2710 29 TRUE 2 FALSE 1506137957 70464
+## 2711 31 TRUE 1 FALSE 1506138006 70464
+## 2712 32 TRUE 1 FALSE 1506138158 70464
+## 2713 33 TRUE 1 FALSE 1506138355 70464
+## 2714 34 TRUE 1 FALSE 1506138547 70464
+## 2715 35 TRUE 1 FALSE 1506138654 70464
+## 2716 40 TRUE 1 FALSE 1506138827 70464
+## 2717 41 TRUE 1 FALSE 1506138834 70464
+## 2718 27 TRUE 3 FALSE 1506201417 70464
+## 2719 28 TRUE 1 FALSE 1506201461 70464
+## 2720 32 TRUE 1 FALSE 1506201561 70464
+## 2721 34 TRUE 1 FALSE 1506201772 70464
+## 2722 35 TRUE 2 FALSE 1506201870 70464
+## 2723 36 TRUE 1 FALSE 1506201887 70464
+## 2724 38 TRUE 1 FALSE 1506201992 70464
+## 2725 40 TRUE 1 FALSE 1506202262 70464
+## 2726 41 TRUE 1 FALSE 1506202303 70464
+## 2727 42 TRUE 1 FALSE 1506202581 70464
+## 2728 43 TRUE 1 FALSE 1506202661 70464
+## 2729 47 TRUE 1 FALSE 1506202941 70464
+## 2730 48 TRUE 3 FALSE 1506203030 70464
+## 2731 50 TRUE 1 FALSE 1506203057 70464
+## 2732 51 TRUE 1 FALSE 1506203061 70464
+## 2733 9 TRUE 2 FALSE 1506182879 70464
+## 2734 10 TRUE 1 FALSE 1506182885 70464
+## 2735 12 TRUE 1 FALSE 1506182922 70464
+## 2736 17 TRUE 1 FALSE 1506183313 70464
+## 2737 18 TRUE 1 FALSE 1506183332 70464
+## 2738 19 TRUE 1 FALSE 1506183386 70464
+## 2739 20 TRUE 3 FALSE 1506183424 70464
+## 2740 21 TRUE 1 FALSE 1506183486 70464
+## 2741 22 TRUE 1 FALSE 1506183488 70464
+## 2742 3 TRUE 1 FALSE 1506184009 70464
+## 2743 5 TRUE 1 FALSE 1506184047 70464
+## 2744 8 TRUE 4 FALSE 1506184271 70464
+## 2745 9 TRUE 1 FALSE 1506184281 70464
+## 2746 10 TRUE 2 FALSE 1506184385 70464
+## 2747 11 TRUE 1 FALSE 1506184388 70464
+## 2748 13 TRUE 1 FALSE 1506184630 70464
+## 2749 14 TRUE 1 FALSE 1506184640 70464
+## 2750 15 TRUE 1 FALSE 1506184649 70464
+## 2751 17 TRUE 1 FALSE 1506184964 70464
+## 2752 21 TRUE 2 FALSE 1506185218 70464
+## 2753 22 TRUE 1 FALSE 1506185237 70464
+## 2754 23 TRUE 1 FALSE 1506185250 70464
+## 2755 26 TRUE 1 FALSE 1506185373 70464
+## 2756 5 TRUE 1 FALSE 1506136440 70464
+## 2757 3 TRUE 2 FALSE 1506180371 70464
+## 2758 4 TRUE 2 FALSE 1506180400 70464
+## 2759 6 TRUE 1 FALSE 1506180436 70464
+## 2760 7 TRUE 1 FALSE 1506180483 70464
+## 2761 8 TRUE 1 FALSE 1506182819 70464
+## 2762 30 TRUE 1 FALSE 1506185676 70464
+## 2763 27 TRUE 1 FALSE 1506185409 70464
+## 2764 29 TRUE 1 FALSE 1506185665 70464
+## 2765 16 TRUE 2 FALSE 1505338706 11801
+## 2766 19 TRUE 1 FALSE 1506126571 11801
+## 2767 5 TRUE 1 FALSE 1505338545 11801
+## 2768 7 TRUE 1 FALSE 1505338558 11801
+## 2769 14 TRUE 1 FALSE 1505338660 11801
+## 2770 15 TRUE 1 FALSE 1505338682 11801
+## 2771 8 TRUE 1 FALSE 1506125918 11801
+## 2772 6 TRUE 1 FALSE 1506132057 11801
+## 2773 11 TRUE 1 FALSE 1506126006 11801
+## 2774 6 TRUE 5 FALSE 1506125893 11801
+## 2775 15 TRUE 1 FALSE 1506126402 11801
+## 2776 3 TRUE 1 FALSE 1505338525 11801
+## 2777 27 TRUE 1 FALSE 15051 11801
+## 2778 13 TRUE 1 FALSE 1505338634 11801
+## 2779 15 TRUE 2 FALSE 1505337494 11801
+## 2780 3 TRUE 1 FALSE 1505335967 11801
+## 2781 26 TRUE 1 FALSE 1505173441 11801
+## 2782 7 TRUE 1 FALSE 1506132080 11801
+## 2783 20 TRUE 1 FALSE 1505338777 11801
+## 2784 20 TRUE 1 FALSE 1506126602 11801
+## 2785 13 TRUE 1 FALSE 1505336560 11801
+## 2786 4 TRUE 1 FALSE 1505338534 11801
+## 2787 29 TRUE 1 FALSE 1505306881 11801
+## 2788 17 TRUE 1 FALSE 1505338717 11801
+## 2789 8 TRUE 1 FALSE 1505338582 11801
+## 2790 8 TRUE 1 FALSE 1506132086 11801
+## 2791 9 TRUE 1 FALSE 1505338591 11801
+## 2792 11 TRUE 1 FALSE 1505338623 11801
+## 2793 23 TRUE 1 FALSE 1505335586 11801
+## 2794 9 TRUE 1 FALSE 1505336481 11801
+## 2795 12 TRUE 1 FALSE 1506126259 11801
+## 2796 10 TRUE 1 FALSE 1506132176 11801
+## 2797 32 TRUE 1 FALSE 1505337824 11801
+## 2798 11 TRUE 1 FALSE 1506132186 11801
+## 2799 18 TRUE 1 FALSE 1506126566 11801
+## 2800 19 TRUE 1 FALSE 1505336262 11801
+## 2801 17 TRUE 1 FALSE 1506132471 11801
+## 2802 19 TRUE 1 FALSE 1505338753 11801
+## 2803 22 TRUE 1 FALSE 1506133638 11801
+## 2804 12 TRUE 1 FALSE 1505338627 11801
+## 2805 9 TRUE 1 FALSE 1506132109 11801
+## 2806 11 TRUE 1 FALSE 1505336521 11801
+## 2807 22 TRUE 1 FALSE 1506117792 11801
+## 2808 27 TRUE 1 FALSE 1505306822 11801
+## 2809 14 TRUE 1 FALSE 1506132328 11801
+## 2810 16 TRUE 1 FALSE 1506132457 11801
+## 2811 12 TRUE 1 FALSE 1505337366 11801
+## 2812 13 TRUE 1 FALSE 1505337371 11801
+## 2813 17 TRUE 1 FALSE 1505337535 11801
+## 2814 18 TRUE 1 FALSE 1505335469 11801
+## 2815 19 TRUE 1 FALSE 1505335489 11801
+## 2816 10 TRUE 1 FALSE 1505336518 11801
+## 2817 21 TRUE 1 FALSE 1506117770 11801
+## 2818 30 TRUE 1 FALSE 1505337749 11801
+## 2819 5 TRUE 1 FALSE 1505334705 11801
+## 2820 25 TRUE 1 FALSE 1505306754 11801
+## 2821 13 TRUE 1 FALSE 1506180109 11801
+## 2822 10 TRUE 1 FALSE 1505172619 11801
+## 2823 16 TRUE 2 FALSE 1506025214 11801
+## 2824 3 TRUE 1 FALSE 1506125691 11801
+## 2825 21 TRUE 1 FALSE 1505336295 11801
+## 2826 22 TRUE 1 FALSE 1505336297 11801
+## 2827 25 TRUE 1 FALSE 1505173415 11801
+## 2828 28 TRUE 1 FALSE 1505337709 11801
+## 2829 8 TRUE 1 FALSE 1505336471 11801
+## 2830 22 TRUE 1 FALSE 1505306545 11801
+## 2831 23 TRUE 1 FALSE 1505306566 11801
+## 2832 27 TRUE 1 FALSE 1506180480 11801
+## 2833 6 TRUE 2 FALSE 1505334963 11801
+## 2834 7 TRUE 1 FALSE 1505334983 11801
+## 2835 8 TRUE 1 FALSE 1505334988 11801
+## 2836 11 TRUE 1 FALSE 1505335039 11801
+## 2837 18 TRUE 1 FALSE 1505338727 11801
+## 2838 17 TRUE 1 FALSE 1505335455 11801
+## 2839 22 TRUE 1 FALSE 1505336917 11801
+## 2840 5 TRUE 1 FALSE 1506131989 11801
+## 2841 5 TRUE 1 FALSE 1505336396 11801
+## 2842 25 TRUE 1 FALSE 1505335618 11801
+## 2843 18 TRUE 1 FALSE 1506117740 11801
+## 2844 23 TRUE 1 FALSE 1506117822 11801
+## 2845 30 TRUE 1 FALSE 1505335708 11801
+## 2846 32 TRUE 1 FALSE 1505335771 11801
+## 2847 33 TRUE 1 FALSE 1505335838 11801
+## 2848 35 TRUE 1 FALSE 1505335871 11801
+## 2849 39 TRUE 1 FALSE 1505335905 11801
+## 2850 14 TRUE 1 FALSE 1505337388 11801
+## 2851 8 TRUE 1 FALSE 1505306152 11801
+## 2852 18 TRUE 1 FALSE 1505337567 11801
+## 2853 23 TRUE 1 FALSE 1505336935 11801
+## 2854 22 TRUE 1 FALSE 1505335571 11801
+## 2855 27 TRUE 1 FALSE 1505337703 11801
+## 2856 21 TRUE 1 FALSE 1505306526 11801
+## 2857 19 TRUE 1 FALSE 1505306493 11801
+## 2858 10 TRUE 1 FALSE 1505336104 11801
+## 2859 18 TRUE 1 FALSE 1505336238 11801
+## 2860 17 TRUE 1 FALSE 1505336225 11801
+## 2861 11 TRUE 1 FALSE 1506180082 11801
+## 2862 11 TRUE 1 FALSE 1505172631 11801
+## 2863 20 TRUE 2 FALSE 1505336289 11801
+## 2864 17 TRUE 1 FALSE 1506025282 11801
+## 2865 18 TRUE 1 FALSE 1506025300 11801
+## 2866 3 TRUE 1 FALSE 1505336366 11801
+## 2867 21 TRUE 1 FALSE 1505173332 11801
+## 2868 22 TRUE 1 FALSE 1505173367 11801
+## 2869 23 TRUE 1 FALSE 1505173375 11801
+## 2870 26 TRUE 1 FALSE 1506180478 11801
+## 2871 6 TRUE 1 FALSE 1505337317 11801
+## 2872 7 TRUE 1 FALSE 1505337325 11801
+## 2873 14 TRUE 1 FALSE 1505336571 11801
+## 2874 15 TRUE 1 FALSE 1505336583 11801
+## 2875 21 TRUE 1 FALSE 1506133597 11801
+## 2876 21 TRUE 1 FALSE 1505336799 11801
+## 2877 9 TRUE 1 FALSE 1505306157 11801
+## 2878 10 TRUE 1 FALSE 1505306169 11801
+## 2879 26 TRUE 1 FALSE 1505336974 11801
+## 2880 27 TRUE 1 FALSE 1505336998 11801
+## 2881 28 TRUE 1 FALSE 1505335669 11801
+## 2882 29 TRUE 1 FALSE 1505335679 11801
+## 2883 4 TRUE 1 FALSE 1505337298 11801
+## 2884 12 TRUE 1 FALSE 1505336140 11801
+## 2885 10 TRUE 1 FALSE 1506180068 11801
+## 2886 9 TRUE 1 FALSE 1505337344 11801
+## 2887 10 TRUE 1 FALSE 1505337355 11801
+## 2888 5 TRUE 1 FALSE 1505306128 11801
+## 2889 4 TRUE 1 FALSE 1505335979 11801
+## 2890 14 TRUE 1 FALSE 1505172981 11801
+## 2891 20 TRUE 1 FALSE 1505337594 11801
+## 2892 21 TRUE 1 FALSE 1505337629 11801
+## 2893 23 TRUE 1 FALSE 1505337652 11801
+## 2894 17 TRUE 1 FALSE 1505306457 11801
+## 2895 8 TRUE 1 FALSE 1506180049 11801
+## 2896 4 TRUE 1 FALSE 1506180010 11801
+## 2897 9 TRUE 1 FALSE 1506180054 11801
+## 2898 6 TRUE 1 FALSE 1506025006 11801
+## 2899 10 TRUE 1 FALSE 1506025063 11801
+## 2900 12 TRUE 1 FALSE 1505172637 11801
+## 2901 15 TRUE 1 FALSE 1506180242 11801
+## 2902 6 TRUE 1 FALSE 1505306138 11801
+## 2903 13 TRUE 1 FALSE 1506025126 11801
+## 2904 18 TRUE 1 FALSE 1505173282 11801
+## 2905 17 TRUE 1 FALSE 1505173268 11801
+## 2906 11 TRUE 1 FALSE 1506117575 11801
+## 2907 12 TRUE 1 FALSE 1506117593 11801
+## 2908 16 TRUE 1 FALSE 1506117695 11801
+## 2909 22 TRUE 1 FALSE 1506180438 11801
+## 2910 5 TRUE 1 FALSE 1506024983 11801
+## 2911 4 TRUE 1 FALSE 1506024969 11801
+## 2912 7 TRUE 1 FALSE 1506025029 11801
+## 2913 17 TRUE 1 FALSE 1505336612 11801
+## 2914 3 TRUE 1 FALSE 1505172367 11801
+## 2915 29 TRUE 1 FALSE 1505337038 11801
+## 2916 6 TRUE 1 FALSE 1505336012 11801
+## 2917 11 TRUE 1 FALSE 1505306207 11801
+## 2918 14 TRUE 1 FALSE 1505306305 11801
+## 2919 6 TRUE 1 FALSE 1506180033 11801
+## 2920 8 TRUE 1 FALSE 1505336064 11801
+## 2921 20 TRUE 1 FALSE 1506180416 11801
+## 2922 9 TRUE 1 FALSE 1506025047 11801
+## 2923 3 TRUE 2 FALSE 1506024960 11801
+## 2924 15 TRUE 1 FALSE 1505173232 11801
+## 2925 12 TRUE 1 FALSE 1506025100 11801
+## 2926 7 TRUE 1 FALSE 1506117520 11801
+## 2927 15 TRUE 1 FALSE 1505306372 11801
+## 2928 9 TRUE 1 FALSE 1505336097 11801
+## 2929 16 TRUE 1 FALSE 1505173242 11801
+## 2930 3 TRUE 2 FALSE 1506179983 11801
+## 2931 6 TRUE 1 FALSE 1506117457 11801
+## 2932 8 TRUE 1 FALSE 1506117534 11801
+## 2933 17 TRUE 1 FALSE 1506180283 11801
+## 2934 14 TRUE 1 FALSE 1506025149 11801
+## 2935 16 TRUE 1 FALSE 1506180263 11801
+## 2936 8 TRUE 1 FALSE 1505172601 11801
+## 2937 10 TRUE 1 FALSE 1506117564 11801
+## 2938 7 TRUE 1 FALSE 1505336031 11801
+## 2939 4 TRUE 1 FALSE 1506117435 11801
+## 2940 5 TRUE 1 FALSE 1506117446 11801
+## 2941 11 TRUE 1 FALSE 1505351615 75323
+## 2942 28 TRUE 1 FALSE 1505353246 75323
+## 2943 3 TRUE 1 FALSE 1505351276 75323
+## 2944 25 TRUE 1 FALSE 1505352999 75323
+## 2945 32 TRUE 1 FALSE 1505353299 75323
+## 2946 5 TRUE 1 FALSE 1505351291 75323
+## 2947 13 TRUE 1 FALSE 1505351931 75323
+## 2948 21 TRUE 1 FALSE 1505352944 75323
+## 2949 16 TRUE 1 FALSE 1505352898 75323
+## 2950 27 TRUE 1 FALSE 1505353220 75323
+## 2951 34 TRUE 1 FALSE 1505353380 75323
+## 2952 23 TRUE 1 FALSE 1505352959 75323
+## 2953 14 TRUE 1 FALSE 1505351945 75323
+## 2954 9 TRUE 1 FALSE 1505351495 75323
+## 2955 8 TRUE 2 FALSE 1505351364 75323
+## 2956 19 TRUE 1 FALSE 1505352922 75323
+## 2957 17 TRUE 1 FALSE 1505352907 75323
+## 2958 19 TRUE 1 FALSE 1499717174 27264
+## 2959 18 TRUE 1 FALSE 1499717162 27264
+## 2960 32 TRUE 2 FALSE 1499717772 27264
+## 2961 22 TRUE 1 FALSE 1499717426 27264
+## 2962 3 TRUE 1 FALSE 1499972100 27264
+## 2963 4 TRUE 1 FALSE 1499972111 27264
+## 2964 6 TRUE 1 FALSE 1499972192 27264
+## 2965 7 TRUE 1 FALSE 1499972248 27264
+## 2966 8 TRUE 1 FALSE 1499972334 27264
+## 2967 23 TRUE 1 FALSE 1499717448 27264
+## 2968 25 TRUE 1 FALSE 1499717503 27264
+## 2969 28 TRUE 1 FALSE 1499717569 27264
+## 2970 29 TRUE 1 FALSE 1499717575 27264
+## 2971 30 TRUE 1 FALSE 1499717635 27264
+## 2972 20 TRUE 1 FALSE 1499972952 27264
+## 2973 21 TRUE 1 FALSE 1499973007 27264
+## 2974 33 TRUE 1 FALSE 1499717894 27264
+## 2975 35 TRUE 1 FALSE 1499717971 27264
+## 2976 39 TRUE 1 FALSE 1499718035 27264
+## 2977 40 TRUE 1 FALSE 1499718040 27264
+## 2978 9 TRUE 1 FALSE 1499972580 27264
+## 2979 10 TRUE 1 FALSE 1499972591 27264
+## 2980 12 TRUE 1 FALSE 1499972689 27264
+## 2981 17 TRUE 1 FALSE 1499972855 27264
+## 2982 18 TRUE 1 FALSE 1499972894 27264
+## 2983 19 TRUE 1 FALSE 1499972928 27264
+## 2984 34 TRUE 1 FALSE 1499975281 27264
+## 2985 36 TRUE 1 FALSE 1499975358 27264
+## 2986 37 TRUE 1 FALSE 1499975367 27264
+## 2987 38 TRUE 1 FALSE 1499975403 27264
+## 2988 40 TRUE 1 FALSE 1499975514 27264
+## 2989 41 TRUE 1 FALSE 1499975517 27264
+## 2990 4 TRUE 1 FALSE 1500128995 27264
+## 2991 6 TRUE 1 FALSE 1500129038 27264
+## 2992 7 TRUE 1 FALSE 1500129051 27264
+## 2993 9 TRUE 1 FALSE 1500129078 27264
+## 2994 10 TRUE 1 FALSE 1500129100 27264
+## 2995 12 TRUE 1 FALSE 1500129114 27264
+## 2996 13 TRUE 1 FALSE 1500129123 27264
+## 2997 14 TRUE 1 FALSE 1500129169 27264
+## 2998 15 TRUE 1 FALSE 1500129290 27264
+## 2999 22 TRUE 1 FALSE 1499973011 27264
+## 3000 3 TRUE 1 FALSE 1499973169 27264
+## 3001 5 TRUE 1 FALSE 1499973203 27264
+## 3002 8 TRUE 2 FALSE 1499973595 27264
+## 3003 9 TRUE 1 FALSE 1499973678 27264
+## 3004 10 TRUE 1 FALSE 1499973705 27264
+## 3005 11 TRUE 1 FALSE 1499973708 27264
+## 3006 13 TRUE 2 FALSE 1499973957 27264
+## 3007 14 TRUE 1 FALSE 1499974030 27264
+## 3008 15 TRUE 1 FALSE 1499974053 27264
+## 3009 17 TRUE 1 FALSE 1499974112 27264
+## 3010 21 TRUE 1 FALSE 1499974474 27264
+## 3011 22 TRUE 1 FALSE 1499974710 27264
+## 3012 23 TRUE 1 FALSE 1499974780 27264
+## 3013 26 TRUE 1 FALSE 1499974854 27264
+## 3014 27 TRUE 1 FALSE 1499974945 27264
+## 3015 29 TRUE 1 FALSE 1499975006 27264
+## 3016 30 TRUE 1 FALSE 1499975017 27264
+## 3017 31 TRUE 1 FALSE 1499975156 27264
+## 3018 32 TRUE 1 FALSE 1499975203 27264
+## 3019 33 TRUE 1 FALSE 1499975246 27264
+## 3020 53 TRUE 1 FALSE 1500131026 27264
+## 3021 54 TRUE 1 FALSE 1500131030 27264
+## 3022 3 TRUE 1 FALSE 1500476968 27264
+## 3023 4 TRUE 1 FALSE 1500476979 27264
+## 3024 5 TRUE 1 FALSE 1500476995 27264
+## 3025 7 TRUE 1 FALSE 1500477044 27264
+## 3026 8 TRUE 1 FALSE 1500477117 27264
+## 3027 9 TRUE 1 FALSE 1500477134 27264
+## 3028 11 TRUE 1 FALSE 1500477181 27264
+## 3029 12 TRUE 1 FALSE 1500477186 27264
+## 3030 13 TRUE 1 FALSE 1500477196 27264
+## 3031 14 TRUE 1 FALSE 1500477283 27264
+## 3032 15 TRUE 1 FALSE 1500477385 27264
+## 3033 16 TRUE 1 FALSE 1500477400 27264
+## 3034 17 TRUE 1 FALSE 1500477405 27264
+## 3035 18 TRUE 1 FALSE 1500477428 27264
+## 3036 19 TRUE 1 FALSE 1500477470 27264
+## 3037 20 TRUE 1 FALSE 1500477491 27264
+## 3038 22 TRUE 1 FALSE 1500477553 27264
+## 3039 23 TRUE 1 FALSE 1500477576 27264
+## 3040 24 TRUE 1 FALSE 1500477597 27264
+## 3041 27 TRUE 1 FALSE 1500477666 27264
+## 3042 28 TRUE 1 FALSE 1500477854 27264
+## 3043 29 TRUE 1 FALSE 1500477859 27264
+## 3044 30 TRUE 1 FALSE 1500477962 27264
+## 3045 32 TRUE 1 FALSE 1500478001 27264
+## 3046 33 TRUE 1 FALSE 1500478026 27264
+## 3047 35 TRUE 1 FALSE 1500478108 27264
+## 3048 37 TRUE 1 FALSE 1500478133 27264
+## 3049 38 TRUE 1 FALSE 1500478135 27264
+## 3050 3 TRUE 1 FALSE 1500687956 27264
+## 3051 5 TRUE 2 FALSE 1500688097 27264
+## 3052 8 TRUE 1 FALSE 1500688406 27264
+## 3053 9 TRUE 1 FALSE 1500688459 27264
+## 3054 11 TRUE 1 FALSE 1500688504 27264
+## 3055 13 TRUE 1 FALSE 1500688816 27264
+## 3056 14 TRUE 1 FALSE 1500689032 27264
+## 3057 16 TRUE 3 FALSE 1500689728 27264
+## 3058 17 TRUE 1 FALSE 1500689798 27264
+## 3059 19 TRUE 1 FALSE 1500689859 27264
+## 3060 21 TRUE 1 FALSE 1500689959 27264
+## 3061 23 TRUE 1 FALSE 1500690029 27264
+## 3062 25 TRUE 1 FALSE 1500690068 27264
+## 3063 27 TRUE 1 FALSE 1500690409 27264
+## 3064 28 TRUE 1 FALSE 1500690564 27264
+## 3065 32 TRUE 1 FALSE 1500690755 27264
+## 3066 34 TRUE 2 FALSE 1500691825 27264
+## 3067 35 TRUE 2 FALSE 1500692069 27264
+## 3068 36 TRUE 1 FALSE 1500692193 27264
+## 3069 38 TRUE 1 FALSE 1500692275 27264
+## 3070 40 TRUE 1 FALSE 1500692671 27264
+## 3071 41 TRUE 1 FALSE 1500692745 27264
+## 3072 42 TRUE 4 FALSE 1500694004 27264
+## 3073 43 TRUE 1 FALSE 1500694208 27264
+## 3074 47 TRUE 3 FALSE 1500694841 27264
+## 3075 48 TRUE 1 FALSE 1500695054 27264
+## 3076 50 TRUE 1 FALSE 1500695062 27264
+## 3077 51 TRUE 1 FALSE 1500695069 27264
+## 3078 3 TRUE 2 FALSE 1500731293 27264
+## 3079 4 TRUE 1 FALSE 1500731315 27264
+## 3080 5 TRUE 1 FALSE 1500731332 27264
+## 3081 6 TRUE 1 FALSE 1500731351 27264
+## 3082 7 TRUE 1 FALSE 1500731380 27264
+## 3083 9 TRUE 1 FALSE 1500731409 27264
+## 3084 10 TRUE 1 FALSE 1500731428 27264
+## 3085 12 TRUE 1 FALSE 1500731474 27264
+## 3086 13 TRUE 1 FALSE 1500731489 27264
+## 3087 14 TRUE 1 FALSE 1500731587 27264
+## 3088 16 TRUE 1 FALSE 1500731709 27264
+## 3089 17 TRUE 1 FALSE 1500731829 27264
+## 3090 18 TRUE 1 FALSE 1500731862 27264
+## 3091 21 TRUE 1 FALSE 1500731929 27264
+## 3092 22 TRUE 1 FALSE 1500731967 27264
+## 3093 26 TRUE 1 FALSE 1500732030 27264
+## 3094 27 TRUE 1 FALSE 1500732036 27264
+## 3095 30 TRUE 1 FALSE 1500732124 27264
+## 3096 33 TRUE 1 FALSE 1500732222 27264
+## 3097 34 TRUE 2 FALSE 1500732498 27264
+## 3098 35 TRUE 1 FALSE 1500732632 27264
+## 3099 37 TRUE 1 FALSE 1500732647 27264
+## 3100 38 TRUE 1 FALSE 1500732650 27264
+## 3101 17 TRUE 1 FALSE 1500129334 27264
+## 3102 18 TRUE 1 FALSE 1500129354 27264
+## 3103 20 TRUE 1 FALSE 1500129395 27264
+## 3104 21 TRUE 1 FALSE 1500129464 27264
+## 3105 23 TRUE 1 FALSE 1500129490 27264
+## 3106 27 TRUE 1 FALSE 1500129597 27264
+## 3107 28 TRUE 1 FALSE 1500129616 27264
+## 3108 30 TRUE 1 FALSE 1500129725 27264
+## 3109 32 TRUE 1 FALSE 1500129804 27264
+## 3110 33 TRUE 1 FALSE 1500129878 27264
+## 3111 35 TRUE 1 FALSE 1500129924 27264
+## 3112 36 TRUE 1 FALSE 1500129972 27264
+## 3113 37 TRUE 1 FALSE 1500130016 27264
+## 3114 38 TRUE 1 FALSE 1500130040 27264
+## 3115 39 TRUE 1 FALSE 1500130142 27264
+## 3116 41 TRUE 1 FALSE 1500130260 27264
+## 3117 42 TRUE 1 FALSE 1500130309 27264
+## 3118 43 TRUE 1 FALSE 1500130314 27264
+## 3119 44 TRUE 1 FALSE 1500130405 27264
+## 3120 46 TRUE 1 FALSE 1500130833 27264
+## 3121 47 TRUE 1 FALSE 1500130880 27264
+## 3122 49 TRUE 1 FALSE 1500130938 27264
+## 3123 50 TRUE 1 FALSE 1500130952 27264
+## 3124 51 TRUE 1 FALSE 1500131012 27264
+## 3125 5 TRUE 2 FALSE 1499716767 27264
+## 3126 6 TRUE 1 FALSE 1499716848 27264
+## 3127 7 TRUE 2 FALSE 1499716944 27264
+## 3128 8 TRUE 1 FALSE 1499716958 27264
+## 3129 11 TRUE 1 FALSE 1499716989 27264
+## 3130 17 TRUE 1 FALSE 1499717154 27264
+## 3131 5 TRUE 1 FALSE 1500996298 27264
+## 3132 7 TRUE 2 FALSE 1500996449 27264
+## 3133 9 TRUE 1 FALSE 1500997090 27264
+## 3134 11 TRUE 1 FALSE 1500997234 27264
+## 3135 16 TRUE 1 FALSE 1500998294 27264
+## 3136 17 TRUE 1 FALSE 1500998391 27264
+## 3137 19 TRUE 2 FALSE 1500998924 27264
+## 3138 20 TRUE 1 FALSE 1500999208 27264
+## 3139 21 TRUE 1 FALSE 1500999223 27264
+## 3140 25 TRUE 1 FALSE 1500999734 27264
+## 3141 26 TRUE 1 FALSE 1500999780 27264
+## 3142 27 TRUE 1 FALSE 1500999825 27264
+## 3143 28 TRUE 1 FALSE 1500999954 27264
+## 3144 31 TRUE 1 FALSE 1501000263 27264
+## 3145 32 TRUE 1 FALSE 1501000273 27264
+## 3146 33 TRUE 1 FALSE 1501000278 27264
+## 3147 34 TRUE 1 FALSE 1501000285 27264
+## 3148 35 TRUE 1 FALSE 1501000297 27264
+## 3149 36 TRUE 1 FALSE 1501000371 27264
+## 3150 38 TRUE 1 FALSE 1501000392 27264
+## 3151 39 TRUE 1 FALSE 1501000395 27264
+## 3152 4 TRUE 1 FALSE 1501379160 27264
+## 3153 5 TRUE 1 FALSE 1501379178 27264
+## 3154 6 TRUE 1 FALSE 1501379189 27264
+## 3155 7 TRUE 1 FALSE 1501379227 27264
+## 3156 8 TRUE 1 FALSE 1501379247 27264
+## 3157 10 TRUE 3 FALSE 1501379391 27264
+## 3158 11 TRUE 1 FALSE 1501379410 27264
+## 3159 12 TRUE 1 FALSE 1501379443 27264
+## 3160 16 TRUE 1 FALSE 1501379606 27264
+## 3161 18 TRUE 1 FALSE 1501379647 27264
+## 3162 21 TRUE 1 FALSE 1501379724 27264
+## 3163 22 TRUE 1 FALSE 1501379750 27264
+## 3164 23 TRUE 1 FALSE 1501379780 27264
+## 3165 24 TRUE 1 FALSE 1501379796 27264
+## 3166 25 TRUE 1 FALSE 1501379817 27264
+## 3167 26 TRUE 1 FALSE 1501379856 27264
+## 3168 27 TRUE 1 FALSE 1501379928 27264
+## 3169 28 TRUE 1 FALSE 1501379958 27264
+## 3170 30 TRUE 1 FALSE 1501380037 27264
+## 3171 33 TRUE 1 FALSE 1501380125 27264
+## 3172 34 TRUE 1 FALSE 1501380153 27264
+## 3173 35 TRUE 1 FALSE 1501380212 27264
+## 3174 36 TRUE 1 FALSE 1501380280 27264
+## 3175 37 TRUE 2 FALSE 1501380424 27264
+## 3176 39 TRUE 1 FALSE 1501380520 27264
+## 3177 40 TRUE 1 FALSE 1501380543 27264
+## 3178 41 TRUE 1 FALSE 1501380667 27264
+## 3179 44 TRUE 1 FALSE 1501380759 27264
+## 3180 45 TRUE 1 FALSE 1501380819 27264
+## 3181 46 TRUE 1 FALSE 1501380858 27264
+## 3182 47 TRUE 1 FALSE 1501380905 27264
+## 3183 48 TRUE 1 FALSE 1501380950 27264
+## 3184 49 TRUE 1 FALSE 1501381011 27264
+## 3185 50 TRUE 1 FALSE 1501381017 27264
+## 3186 53 TRUE 1 FALSE 1501381258 27264
+## 3187 55 TRUE 1 FALSE 1501381398 27264
+## 3188 56 TRUE 1 FALSE 1501381500 27264
+## 3189 57 TRUE 1 FALSE 1501381573 27264
+## 3190 61 TRUE 1 FALSE 1501381652 27264
+## 3191 62 TRUE 1 FALSE 1501381657 27264
+## 3192 54 TRUE 1 FALSE 1504671231 27264
+## 3193 56 TRUE 1 FALSE 1504671286 27264
+## 3194 58 TRUE 1 FALSE 1504671411 27264
+## 3195 60 TRUE 3 FALSE 1504671477 27264
+## 3196 62 TRUE 1 FALSE 1504671506 27264
+## 3197 64 TRUE 1 FALSE 1504671568 27264
+## 3198 67 TRUE 1 FALSE 1504671587 27264
+## 3199 68 TRUE 1 FALSE 1504671590 27264
+## 3200 34 TRUE 2 FALSE 1504204701 27264
+## 3201 35 TRUE 1 FALSE 1504204710 27264
+## 3202 39 TRUE 1 FALSE 1504204995 27264
+## 3203 42 TRUE 1 FALSE 1504205194 27264
+## 3204 43 TRUE 1 FALSE 1504205289 27264
+## 3205 45 TRUE 1 FALSE 1504205316 27264
+## 3206 48 TRUE 1 FALSE 1504205407 27264
+## 3207 49 TRUE 3 FALSE 1504205605 27264
+## 3208 50 TRUE 1 FALSE 1504205672 27264
+## 3209 51 TRUE 1 FALSE 1504205735 27264
+## 3210 53 TRUE 1 FALSE 1504205767 27264
+## 3211 54 TRUE 1 FALSE 1504205772 27264
+## 3212 3 TRUE 2 FALSE 1504655935 27264
+## 3213 4 TRUE 1 FALSE 1504656031 27264
+## 3214 6 TRUE 1 FALSE 1504656063 27264
+## 3215 5 TRUE 1 FALSE 1504202427 27264
+## 3216 6 TRUE 1 FALSE 1504202466 27264
+## 3217 7 TRUE 1 FALSE 1504202479 27264
+## 3218 8 TRUE 1 FALSE 1504202525 27264
+## 3219 9 TRUE 1 FALSE 1504202583 27264
+## 3220 10 TRUE 1 FALSE 1504202866 27264
+## 3221 11 TRUE 1 FALSE 1504203036 27264
+## 3222 14 TRUE 1 FALSE 1504203271 27264
+## 3223 16 TRUE 1 FALSE 1504203642 27264
+## 3224 17 TRUE 1 FALSE 1504203657 27264
+## 3225 21 TRUE 1 FALSE 1504203861 27264
+## 3226 22 TRUE 1 FALSE 1504204016 27264
+## 3227 23 TRUE 1 FALSE 1504204038 27264
+## 3228 25 TRUE 1 FALSE 1504204102 27264
+## 3229 26 TRUE 2 FALSE 1504204283 27264
+## 3230 27 TRUE 1 FALSE 1504204310 27264
+## 3231 31 TRUE 1 FALSE 1504204534 27264
+## 3232 32 TRUE 1 FALSE 1504204571 27264
+## 3233 33 TRUE 1 FALSE 1504204584 27264
+## 3234 18 TRUE 1 FALSE 1504657836 27264
+## 3235 19 TRUE 1 FALSE 1504657907 27264
+## 3236 20 TRUE 2 FALSE 1504667739 27264
+## 3237 22 TRUE 1 FALSE 1504667788 27264
+## 3238 23 TRUE 2 FALSE 1504667886 27264
+## 3239 24 TRUE 1 FALSE 1504668069 27264
+## 3240 25 TRUE 1 FALSE 1504668171 27264
+## 3241 26 TRUE 1 FALSE 1504668224 27264
+## 3242 27 TRUE 1 FALSE 1504668276 27264
+## 3243 28 TRUE 1 FALSE 1504668293 27264
+## 3244 30 TRUE 1 FALSE 1504668381 27264
+## 3245 31 TRUE 1 FALSE 1504668407 27264
+## 3246 32 TRUE 1 FALSE 1504668468 27264
+## 3247 33 TRUE 1 FALSE 1504668477 27264
+## 3248 36 TRUE 1 FALSE 1504668519 27264
+## 3249 40 TRUE 1 FALSE 1504669284 27264
+## 3250 8 TRUE 1 FALSE 1504656091 27264
+## 3251 9 TRUE 1 FALSE 1504656101 27264
+## 3252 10 TRUE 1 FALSE 1504656116 27264
+## 3253 11 TRUE 1 FALSE 1504656134 27264
+## 3254 13 TRUE 1 FALSE 1504656217 27264
+## 3255 15 TRUE 1 FALSE 1504656301 27264
+## 3256 16 TRUE 1 FALSE 1504656312 27264
+## 3257 17 TRUE 1 FALSE 1504656351 27264
+## 3258 20 TRUE 2 FALSE 1504656553 27264
+## 3259 22 TRUE 1 FALSE 1504656625 27264
+## 3260 26 TRUE 1 FALSE 1504656666 27264
+## 3261 27 TRUE 1 FALSE 1504656670 27264
+## 3262 6 TRUE 1 FALSE 1504657001 27264
+## 3263 11 TRUE 1 FALSE 1504657135 27264
+## 3264 12 TRUE 1 FALSE 1504657234 27264
+## 3265 13 TRUE 1 FALSE 1504657368 27264
+## 3266 14 TRUE 1 FALSE 1504657393 27264
+## 3267 15 TRUE 1 FALSE 1504657447 27264
+## 3268 16 TRUE 1 FALSE 1504657629 27264
+## 3269 12 TRUE 1 FALSE 1505189928 27264
+## 3270 13 TRUE 1 FALSE 1505190286 27264
+## 3271 14 TRUE 1 FALSE 1505190367 27264
+## 3272 16 TRUE 1 FALSE 1505190510 27264
+## 3273 17 TRUE 1 FALSE 1505190519 27264
+## 3274 18 TRUE 1 FALSE 1505190562 27264
+## 3275 19 TRUE 1 FALSE 1505190714 27264
+## 3276 21 TRUE 1 FALSE 1505190811 27264
+## 3277 23 TRUE 1 FALSE 1505191100 27264
+## 3278 24 TRUE 1 FALSE 1505191186 27264
+## 3279 25 TRUE 1 FALSE 1505191247 27264
+## 3280 28 TRUE 1 FALSE 1505191383 27264
+## 3281 29 TRUE 1 FALSE 1505191449 27264
+## 3282 30 TRUE 1 FALSE 1505191495 27264
+## 3283 31 TRUE 1 FALSE 1505191530 27264
+## 3284 33 TRUE 1 FALSE 1505191630 27264
+## 3285 34 TRUE 2 FALSE 1505191836 27264
+## 3286 35 TRUE 1 FALSE 1505191902 27264
+## 3287 43 TRUE 2 FALSE 1504669498 27264
+## 3288 44 TRUE 1 FALSE 1504669528 27264
+## 3289 45 TRUE 2 FALSE 1504669765 27264
+## 3290 46 TRUE 1 FALSE 1504670157 27264
+## 3291 47 TRUE 1 FALSE 1504670312 27264
+## 3292 48 TRUE 1 FALSE 1504670366 27264
+## 3293 49 TRUE 1 FALSE 1504670600 27264
+## 3294 50 TRUE 1 FALSE 1504670789 27264
+## 3295 51 TRUE 1 FALSE 1504671104 27264
+## 3296 52 TRUE 1 FALSE 1504671170 27264
+## 3297 55 TRUE 1 FALSE 1505193537 27264
+## 3298 5 TRUE 1 FALSE 1505188765 27264
+## 3299 8 TRUE 2 FALSE 1505188931 27264
+## 3300 9 TRUE 1 FALSE 1505189040 27264
+## 3301 10 TRUE 3 FALSE 1505189736 27264
+## 3302 11 TRUE 2 FALSE 1505189897 27264
+## 3303 48 TRUE 1 FALSE 1505193043 27264
+## 3304 50 TRUE 1 FALSE 1505193213 27264
+## 3305 51 TRUE 1 FALSE 1505193226 27264
+## 3306 53 TRUE 1 FALSE 1505193419 27264
+## 3307 41 TRUE 1 FALSE 1505192603 27264
+## 3308 56 TRUE 1 FALSE 1505193591 27264
+## 3309 40 TRUE 2 FALSE 1505192527 27264
+## 3310 47 TRUE 1 FALSE 1505192927 27264
+## 3311 42 TRUE 1 FALSE 1505192627 27264
+## 3312 43 TRUE 1 FALSE 1505192649 27264
+## 3313 45 TRUE 1 FALSE 1505192694 27264
+## 3314 59 TRUE 1 FALSE 1505193703 27264
+## 3315 60 TRUE 1 FALSE 1505193726 27264
+## 3316 65 TRUE 1 FALSE 1505193796 27264
+## 3317 57 TRUE 1 FALSE 1505193664 27264
+## 3318 66 TRUE 1 FALSE 1505193799 27264
+## 3319 15 TRUE 1 FALSE 1505070029 94880
+## 3320 12 TRUE 1 FALSE 1505069987 94880
+## 3321 37 TRUE 1 FALSE 1505078720 94880
+## 3322 38 TRUE 1 FALSE 1505081631 94880
+## 3323 27 TRUE 5 FALSE 1505079604 94880
+## 3324 14 TRUE 1 FALSE 1505070016 94880
+## 3325 40 TRUE 1 TRUE 1505082035 94880
+## 3326 38 TRUE 1 FALSE 1505078732 94880
+## 3327 11 TRUE 1 FALSE 1505069985 94880
+## 3328 36 TRUE 1 FALSE 1505081610 94880
+## 3329 10 TRUE 1 FALSE 1505069958 94880
+## 3330 16 TRUE 1 FALSE 1505070038 94880
+## 3331 39 TRUE 1 FALSE 1505078743 94880
+## 3332 15 TRUE 1 FALSE 1505077243 94880
+## 3333 8 TRUE 1 FALSE 1505069954 94880
+## 3334 38 TRUE 1 FALSE 1505079704 94880
+## 3335 13 TRUE 1 FALSE 1505077218 94880
+## 3336 22 TRUE 2 FALSE 1505072942 94880
+## 3337 14 TRUE 2 FALSE 1505070661 94880
+## 3338 14 TRUE 1 FALSE 1505077225 94880
+## 3339 8 TRUE 1 FALSE 1505079013 94880
+## 3340 17 TRUE 2 FALSE 1505072811 94880
+## 3341 11 TRUE 1 FALSE 1505077202 94880
+## 3342 35 TRUE 2 FALSE 1505081596 94880
+## 3343 15 TRUE 2 FALSE 1505070741 94880
+## 3344 11 TRUE 1 FALSE 1505070620 94880
+## 3345 7 TRUE 1 FALSE 1505076206 94880
+## 3346 13 TRUE 4 TRUE 1505080714 94880
+## 3347 10 TRUE 1 FALSE 1505077200 94880
+## 3348 29 TRUE 1 FALSE 1505079647 94880
+## 3349 30 TRUE 1 FALSE 1505079657 94880
+## 3350 8 TRUE 1 FALSE 1505076210 94880
+## 3351 28 TRUE 1 FALSE 1505079644 94880
+## 3352 37 TRUE 1 FALSE 1505079702 94880
+## 3353 3 TRUE 1 FALSE 1505069929 94880
+## 3354 8 TRUE 2 FALSE 1505077179 94880
+## 3355 9 TRUE 1 FALSE 1505077187 94880
+## 3356 10 TRUE 1 FALSE 1505070604 94880
+## 3357 51 TRUE 1 FALSE 1505078902 94880
+## 3358 53 TRUE 1 FALSE 1505078907 94880
+## 3359 54 TRUE 1 FALSE 1505078908 94880
+## 3360 19 TRUE 1 FALSE 1505072841 94880
+## 3361 21 TRUE 1 FALSE 1505072870 94880
+## 3362 7 TRUE 1 FALSE 1505078992 94880
+## 3363 23 TRUE 1 FALSE 1505077831 94880
+## 3364 26 TRUE 1 FALSE 1505077893 94880
+## 3365 27 TRUE 1 FALSE 1505077912 94880
+## 3366 3 TRUE 1 FALSE 1505079740 94880
+## 3367 6 TRUE 1 FALSE 1505076194 94880
+## 3368 33 TRUE 1 FALSE 1505078684 94880
+## 3369 35 TRUE 1 FALSE 1505078695 94880
+## 3370 36 TRUE 1 FALSE 1505078710 94880
+## 3371 41 TRUE 1 FALSE 1505082060 94880
+## 3372 32 TRUE 1 FALSE 1505079666 94880
+## 3373 33 TRUE 1 FALSE 1505079680 94880
+## 3374 35 TRUE 1 FALSE 1505079696 94880
+## 3375 40 TRUE 1 FALSE 1505070381 94880
+## 3376 14 TRUE 1 FALSE 1505080738 94880
+## 3377 5 TRUE 1 FALSE 1505079760 94880
+## 3378 35 TRUE 1 FALSE 1505076783 94880
+## 3379 39 TRUE 1 FALSE 1505076809 94880
+## 3380 40 TRUE 1 FALSE 1505076811 94880
+## 3381 17 TRUE 1 FALSE 1505077255 94880
+## 3382 21 TRUE 2 FALSE 1505077581 94880
+## 3383 22 TRUE 1 FALSE 1505077801 94880
+## 3384 5 TRUE 1 FALSE 1505070533 94880
+## 3385 6 TRUE 1 FALSE 1505070541 94880
+## 3386 8 TRUE 1 FALSE 1505070577 94880
+## 3387 9 TRUE 1 FALSE 1505070588 94880
+## 3388 32 TRUE 1 FALSE 1505078631 94880
+## 3389 24 TRUE 1 FALSE 1505079333 94880
+## 3390 50 TRUE 1 FALSE 1505078892 94880
+## 3391 27 TRUE 1 FALSE 1505073097 94880
+## 3392 8 TRUE 5 TRUE 1505080342 94880
+## 3393 3 TRUE 1 FALSE 1505078937 94880
+## 3394 4 TRUE 1 FALSE 1505078946 94880
+## 3395 5 TRUE 1 FALSE 1505078959 94880
+## 3396 41 TRUE 2 FALSE 1505078814 94880
+## 3397 42 TRUE 1 FALSE 1505078823 94880
+## 3398 43 TRUE 1 FALSE 1505078829 94880
+## 3399 44 TRUE 1 FALSE 1505078838 94880
+## 3400 46 TRUE 1 FALSE 1505078855 94880
+## 3401 47 TRUE 1 FALSE 1505078866 94880
+## 3402 49 TRUE 1 FALSE 1505078881 94880
+## 3403 17 TRUE 1 FALSE 1505081027 94880
+## 3404 19 TRUE 1 FALSE 1505081038 94880
+## 3405 11 TRUE 1 FALSE 1505076227 94880
+## 3406 17 TRUE 1 FALSE 1505076462 94880
+## 3407 18 TRUE 1 FALSE 1505076469 94880
+## 3408 34 TRUE 2 FALSE 1505073511 94880
+## 3409 35 TRUE 1 FALSE 1505073548 94880
+## 3410 40 TRUE 1 FALSE 1505073582 94880
+## 3411 41 TRUE 1 FALSE 1505073584 94880
+## 3412 9 TRUE 1 FALSE 1505078245 94880
+## 3413 23 TRUE 1 FALSE 1505079318 94880
+## 3414 33 TRUE 1 FALSE 1505076764 94880
+## 3415 29 TRUE 1 FALSE 1505073157 94880
+## 3416 31 TRUE 1 FALSE 1505073239 94880
+## 3417 32 TRUE 1 FALSE 1505073398 94880
+## 3418 33 TRUE 1 FALSE 1505073416 94880
+## 3419 20 TRUE 1 FALSE 1505078462 94880
+## 3420 32 TRUE 1 FALSE 1505081325 94880
+## 3421 34 TRUE 2 TRUE 1505081484 94880
+## 3422 28 TRUE 1 FALSE 1505078538 94880
+## 3423 30 TRUE 1 FALSE 1505078548 94880
+## 3424 5 TRUE 1 FALSE 1505076163 94880
+## 3425 32 TRUE 1 FALSE 1505076688 94880
+## 3426 16 TRUE 2 TRUE 1505081016 94880
+## 3427 26 TRUE 1 FALSE 1505070233 94880
+## 3428 27 TRUE 1 FALSE 1505070241 94880
+## 3429 31 TRUE 1 FALSE 1505070293 94880
+## 3430 33 TRUE 1 FALSE 1505070306 94880
+## 3431 19 TRUE 1 FALSE 1505076483 94880
+## 3432 22 TRUE 1 FALSE 1505076549 94880
+## 3433 23 TRUE 1 FALSE 1505076558 94880
+## 3434 25 TRUE 1 FALSE 1505076587 94880
+## 3435 28 TRUE 1 FALSE 1505076639 94880
+## 3436 29 TRUE 1 FALSE 1505076646 94880
+## 3437 30 TRUE 1 FALSE 1505076666 94880
+## 3438 23 TRUE 1 FALSE 1505070163 94880
+## 3439 17 TRUE 1 FALSE 1505077033 94880
+## 3440 18 TRUE 1 FALSE 1505077044 94880
+## 3441 21 TRUE 1 FALSE 1505081049 94880
+## 3442 17 TRUE 1 FALSE 1505078421 94880
+## 3443 9 TRUE 1 FALSE 1505080389 94880
+## 3444 11 TRUE 1 FALSE 1505080406 94880
+## 3445 8 TRUE 1 FALSE 1505076912 94880
+## 3446 9 TRUE 2 FALSE 1505076962 94880
+## 3447 10 TRUE 1 FALSE 1505076969 94880
+## 3448 22 TRUE 1 FALSE 1505079305 94880
+## 3449 6 TRUE 1 FALSE 1505078217 94880
+## 3450 25 TRUE 1 FALSE 1505070219 94880
+## 3451 25 TRUE 1 FALSE 1505073005 94880
+## 3452 31 TRUE 1 FALSE 1505077986 94880
+## 3453 32 TRUE 1 FALSE 1505078007 94880
+## 3454 18 TRUE 1 FALSE 1505078436 94880
+## 3455 27 TRUE 1 TRUE 1505081192 94880
+## 3456 21 TRUE 1 FALSE 1505078470 94880
+## 3457 23 TRUE 1 FALSE 1505078483 94880
+## 3458 27 TRUE 1 FALSE 1505078527 94880
+## 3459 20 TRUE 1 FALSE 1505079292 94880
+## 3460 22 TRUE 1 FALSE 1505070154 94880
+## 3461 51 TRUE 1 FALSE 1505082347 94880
+## 3462 7 TRUE 1 FALSE 1505078224 94880
+## 3463 12 TRUE 1 FALSE 1505079045 94880
+## 3464 10 TRUE 1 FALSE 1505078256 94880
+## 3465 12 TRUE 1 FALSE 1505078267 94880
+## 3466 33 TRUE 1 FALSE 1505078039 94880
+## 3467 42 TRUE 1 TRUE 1505082186 94880
+## 3468 43 TRUE 1 FALSE 1505082232 94880
+## 3469 17 TRUE 2 FALSE 1505070073 94880
+## 3470 18 TRUE 1 FALSE 1505070088 94880
+## 3471 21 TRUE 1 FALSE 1505070140 94880
+## 3472 4 TRUE 1 FALSE 1505078206 94880
+## 3473 13 TRUE 1 FALSE 1505079053 94880
+## 3474 23 TRUE 1 FALSE 1505072977 94880
+## 3475 30 TRUE 1 FALSE 1505077958 94880
+## 3476 39 TRUE 1 FALSE 1505070376 94880
+## 3477 23 TRUE 1 FALSE 1505081065 94880
+## 3478 36 TRUE 1 FALSE 1505070341 94880
+## 3479 38 TRUE 1 FALSE 1505070367 94880
+## 3480 50 TRUE 1 FALSE 1505082339 94880
+## 3481 40 TRUE 1 FALSE 1505078132 94880
+## 3482 41 TRUE 1 FALSE 1505078136 94880
+## 3483 7 TRUE 1 FALSE 1505076897 94880
+## 3484 29 TRUE 1 FALSE 1505077948 94880
+## 3485 28 TRUE 1 TRUE 1505081303 94880
+## 3486 9 TRUE 1 FALSE 1505079020 94880
+## 3487 11 TRUE 1 FALSE 1505079043 94880
+## 3488 15 TRUE 1 FALSE 1505078409 94880
+## 3489 18 TRUE 1 FALSE 1505079272 94880
+## 3490 14 TRUE 1 FALSE 1505079070 94880
+## 3491 25 TRUE 1 FALSE 1505081080 94880
+## 3492 19 TRUE 1 FALSE 1505079282 94880
+## 3493 34 TRUE 1 FALSE 1505078055 94880
+## 3494 3 TRUE 1 FALSE 1505077139 94880
+## 3495 5 TRUE 1 FALSE 1505077153 94880
+## 3496 13 TRUE 1 FALSE 1505078275 94880
+## 3497 48 TRUE 1 FALSE 1505082332 94880
+## 3498 12 TRUE 1 FALSE 1505076989 94880
+## 3499 47 TRUE 1 TRUE 1505082292 94880
+## 3500 4 TRUE 1 FALSE 1505076870 94880
+## 3501 14 TRUE 1 FALSE 1505078303 94880
+## 3502 3 TRUE 1 FALSE 1505076860 94880
+## 3503 21 TRUE 1 FALSE 1505077107 94880
+## 3504 36 TRUE 1 FALSE 1505078088 94880
+## 3505 6 TRUE 1 FALSE 1505076885 94880
+## 3506 16 TRUE 2 FALSE 1505079257 94880
+## 3507 17 TRUE 1 FALSE 1505079263 94880
+## 3508 22 TRUE 1 FALSE 1505077110 94880
+## 3509 19 TRUE 1 FALSE 1505077072 94880
+## 3510 38 TRUE 1 FALSE 1505078106 94880
+## 3511 20 TRUE 2 FALSE 1505077102 94880
+## 3512 37 TRUE 1 FALSE 1505078097 94880
+## 3513 15 TRUE 1 FALSE 1505079242 94880
+## 3514 32 TRUE 1 FALSE 1505429062 46250
+## 3515 29 TRUE 1 FALSE 1505428531 46250
+## 3516 23 TRUE 1 FALSE 1505443634 46250
+## 3517 10 TRUE 1 FALSE 1505433466 46250
+## 3518 20 TRUE 1 FALSE 1505443584 46250
+## 3519 22 TRUE 1 FALSE 1505438543 46250
+## 3520 31 TRUE 1 FALSE 1505428637 46250
+## 3521 9 TRUE 1 FALSE 1505433459 46250
+## 3522 27 TRUE 2 FALSE 1505428464 46250
+## 3523 21 TRUE 1 FALSE 1505443611 46250
+## 3524 14 TRUE 1 FALSE 1505445126 46250
+## 3525 17 TRUE 1 FALSE 1505443522 46250
+## 3526 12 TRUE 1 FALSE 1505434127 46250
+## 3527 18 TRUE 1 FALSE 1505443540 46250
+## 3528 32 TRUE 1 TRUE 1505786752 46250
+## 3529 39 TRUE 1 FALSE 1505433073 46250
+## 3530 5 TRUE 1 FALSE 1505434799 46250
+## 3531 25 TRUE 1 FALSE 1505153044 46250
+## 3532 8 TRUE 1 FALSE 1505438255 46250
+## 3533 9 TRUE 1 FALSE 1505438266 46250
+## 3534 23 TRUE 2 FALSE 1505406032 46250
+## 3535 25 TRUE 1 FALSE 1505406198 46250
+## 3536 15 TRUE 3 FALSE 1505443478 46250
+## 3537 6 TRUE 1 FALSE 1505153843 46250
+## 3538 15 TRUE 1 FALSE 1505438346 46250
+## 3539 33 TRUE 1 FALSE 1505429073 46250
+## 3540 21 TRUE 1 FALSE 1505438519 46250
+## 3541 38 TRUE 1 FALSE 1505153307 46250
+## 3542 39 TRUE 1 FALSE 1505153314 46250
+## 3543 34 TRUE 2 FALSE 1505429450 46250
+## 3544 3 TRUE 1 FALSE 1505434734 46250
+## 3545 9 TRUE 1 FALSE 1505443363 46250
+## 3546 10 TRUE 1 FALSE 1505438285 46250
+## 3547 11 TRUE 1 FALSE 1505438287 46250
+## 3548 31 TRUE 2 FALSE 1505153195 46250
+## 3549 14 TRUE 1 FALSE 1505438335 46250
+## 3550 17 TRUE 1 FALSE 1505438386 46250
+## 3551 13 TRUE 1 FALSE 1505445065 46250
+## 3552 7 TRUE 2 FALSE 1505431589 46250
+## 3553 8 TRUE 1 FALSE 1505431594 46250
+## 3554 40 TRUE 1 FALSE 1505153317 46250
+## 3555 27 TRUE 1 FALSE 1505443692 46250
+## 3556 35 TRUE 1 FALSE 1505429574 46250
+## 3557 40 TRUE 1 FALSE 1505429650 46250
+## 3558 26 TRUE 2 FALSE 1505153106 46250
+## 3559 27 TRUE 1 FALSE 1505153112 46250
+## 3560 3 TRUE 1 FALSE 1505785852 46250
+## 3561 5 TRUE 1 FALSE 1505785912 46250
+## 3562 13 TRUE 1 FALSE 1505438327 46250
+## 3563 12 TRUE 1 FALSE 1505445054 46250
+## 3564 36 TRUE 1 FALSE 1505153263 46250
+## 3565 41 TRUE 1 FALSE 1505439974 46250
+## 3566 11 TRUE 1 FALSE 1505786079 46250
+## 3567 13 TRUE 1 FALSE 1505786139 46250
+## 3568 40 TRUE 1 FALSE 1505433079 46250
+## 3569 16 TRUE 2 FALSE 1505786317 46250
+## 3570 19 TRUE 1 FALSE 1505402599 46250
+## 3571 21 TRUE 1 FALSE 1505402659 46250
+## 3572 33 TRUE 1 FALSE 1505153223 46250
+## 3573 28 TRUE 1 FALSE 1505786722 46250
+## 3574 11 TRUE 1 FALSE 1505445051 46250
+## 3575 9 TRUE 1 FALSE 1505445031 46250
+## 3576 11 TRUE 1 FALSE 1505431630 46250
+## 3577 28 TRUE 1 FALSE 1505443705 46250
+## 3578 30 TRUE 1 FALSE 1505443742 46250
+## 3579 41 TRUE 1 FALSE 1505429656 46250
+## 3580 22 TRUE 3 FALSE 1505402946 46250
+## 3581 8 TRUE 1 FALSE 1505153890 46250
+## 3582 40 TRUE 1 FALSE 1505439971 46250
+## 3583 6 TRUE 2 FALSE 1505431573 46250
+## 3584 35 TRUE 1 FALSE 1505432941 46250
+## 3585 42 TRUE 1 FALSE 1505444119 46250
+## 3586 17 TRUE 1 FALSE 1505432036 46250
+## 3587 18 TRUE 1 FALSE 1505432041 46250
+## 3588 43 TRUE 1 FALSE 1505444124 46250
+## 3589 19 TRUE 1 FALSE 1505432092 46250
+## 3590 23 TRUE 1 FALSE 1505432333 46250
+## 3591 25 TRUE 1 FALSE 1505432391 46250
+## 3592 8 TRUE 3 FALSE 1505786022 46250
+## 3593 9 TRUE 1 FALSE 1505786052 46250
+## 3594 33 TRUE 1 FALSE 1505432892 46250
+## 3595 8 TRUE 2 FALSE 1505445018 46250
+## 3596 18 TRUE 1 FALSE 1505152849 46250
+## 3597 21 TRUE 1 FALSE 1505152974 46250
+## 3598 22 TRUE 1 FALSE 1505152995 46250
+## 3599 23 TRUE 1 FALSE 1505153008 46250
+## 3600 10 TRUE 1 FALSE 1505443371 46250
+## 3601 12 TRUE 1 FALSE 1505443389 46250
+## 3602 13 TRUE 1 FALSE 1505443397 46250
+## 3603 28 TRUE 1 FALSE 1505432509 46250
+## 3604 27 TRUE 1 TRUE 1505786532 46250
+## 3605 7 TRUE 1 FALSE 1505433385 46250
+## 3606 8 TRUE 1 FALSE 1505433422 46250
+## 3607 39 TRUE 1 FALSE 1505444022 46250
+## 3608 41 TRUE 4 FALSE 1505444100 46250
+## 3609 34 TRUE 1 FALSE 1505786808 46250
+## 3610 23 TRUE 1 FALSE 1505438559 46250
+## 3611 17 TRUE 1 FALSE 1505434218 46250
+## 3612 32 TRUE 2 FALSE 1505443884 46250
+## 3613 33 TRUE 1 FALSE 1505443930 46250
+## 3614 14 TRUE 1 FALSE 1505443408 46250
+## 3615 37 TRUE 1 FALSE 1505443981 46250
+## 3616 38 TRUE 1 FALSE 1505443996 46250
+## 3617 9 TRUE 1 FALSE 1505153898 46250
+## 3618 10 TRUE 1 FALSE 1505153915 46250
+## 3619 18 TRUE 1 FALSE 1505432041 46250
+## 3620 34 TRUE 1 FALSE 1505438938 46250
+## 3621 36 TRUE 2 FALSE 1505438977 46250
+## 3622 5 TRUE 1 FALSE 1505153790 46250
+## 3623 37 TRUE 2 FALSE 1505439921 46250
+## 3624 38 TRUE 1 FALSE 1505439950 46250
+## 3625 28 TRUE 1 FALSE 1505432509 46250
+## 3626 4 TRUE 1 FALSE 1505443316 46250
+## 3627 6 TRUE 1 FALSE 1505443338 46250
+## 3628 7 TRUE 1 FALSE 1505443345 46250
+## 3629 15 TRUE 2 FALSE 1505402130 46250
+## 3630 17 TRUE 1 FALSE 1505786324 46250
+## 3631 19 TRUE 1 FALSE 1505786341 46250
+## 3632 21 TRUE 1 FALSE 1505786360 46250
+## 3633 23 TRUE 1 FALSE 1505786385 46250
+## 3634 25 TRUE 1 FALSE 1505786406 46250
+## 3635 6 TRUE 1 FALSE 1505433362 46250
+## 3636 7 TRUE 1 FALSE 1505444938 46250
+## 3637 29 TRUE 1 FALSE 1505432514 46250
+## 3638 32 TRUE 3 FALSE 1505438776 46250
+## 3639 8 TRUE 1 FALSE 1505431594 46250
+## 3640 20 TRUE 2 FALSE 1505434497 46250
+## 3641 35 TRUE 1 FALSE 1505443952 46250
+## 3642 5 TRUE 2 FALSE 1505431519 46250
+## 3643 36 TRUE 1 FALSE 1505443969 46250
+## 3644 31 TRUE 1 FALSE 1505438719 46250
+## 3645 29 TRUE 1 FALSE 1505432514 46250
+## 3646 5 TRUE 2 FALSE 1505431519 46250
+## 3647 30 TRUE 1 FALSE 1505432742 46250
+## 3648 32 TRUE 1 FALSE 1505432813 46250
+## 3649 14 TRUE 1 FALSE 1505786150 46250
+## 3650 33 TRUE 5 FALSE 1505438898 46250
+## 3651 8 TRUE 1 FALSE 1505152636 46250
+## 3652 44 TRUE 1 FALSE 1505444139 46250
+## 3653 46 TRUE 1 FALSE 1505444240 46250
+## 3654 22 TRUE 1 FALSE 1505432327 46250
+## 3655 23 TRUE 1 FALSE 1505432333 46250
+## 3656 25 TRUE 1 FALSE 1505432391 46250
+## 3657 30 TRUE 1 FALSE 1505438665 46250
+## 3658 50 TRUE 1 FALSE 1505444283 46250
+## 3659 6 TRUE 2 FALSE 1505431573 46250
+## 3660 7 TRUE 2 FALSE 1505431589 46250
+## 3661 39 TRUE 1 FALSE 1505433073 46250
+## 3662 11 TRUE 1 FALSE 1505431630 46250
+## 3663 17 TRUE 1 FALSE 1505402521 46250
+## 3664 3 TRUE 1 FALSE 1505433309 46250
+## 3665 4 TRUE 1 FALSE 1505433315 46250
+## 3666 5 TRUE 1 FALSE 1505444919 46250
+## 3667 14 TRUE 1 FALSE 1505152748 46250
+## 3668 30 TRUE 1 FALSE 1505432742 46250
+## 3669 32 TRUE 1 FALSE 1505432813 46250
+## 3670 17 TRUE 2 FALSE 1505152830 46250
+## 3671 11 TRUE 1 FALSE 1505153964 46250
+## 3672 48 TRUE 1 FALSE 1505788538 46250
+## 3673 15 TRUE 1 FALSE 1505445196 46250
+## 3674 18 TRUE 1 FALSE 1505434432 46250
+## 3675 21 TRUE 1 FALSE 1505434502 46250
+## 3676 22 TRUE 1 FALSE 1505434503 46250
+## 3677 29 TRUE 1 FALSE 1505438658 46250
+## 3678 49 TRUE 1 FALSE 1505444275 46250
+## 3679 40 TRUE 1 FALSE 1505787177 46250
+## 3680 41 TRUE 1 TRUE 1505787203 46250
+## 3681 42 TRUE 1 TRUE 1505788018 46250
+## 3682 43 TRUE 1 TRUE 1505788244 46250
+## 3683 14 TRUE 1 FALSE 1505154128 46250
+## 3684 24 TRUE 1 FALSE 1505445327 46250
+## 3685 17 TRUE 1 FALSE 1505432036 46250
+## 3686 19 TRUE 1 FALSE 1505432092 46250
+## 3687 22 TRUE 1 FALSE 1505432327 46250
+## 3688 11 TRUE 1 FALSE 1505152663 46250
+## 3689 12 TRUE 1 FALSE 1505152667 46250
+## 3690 27 TRUE 1 FALSE 1505438630 46250
+## 3691 38 TRUE 1 FALSE 1505445870 46250
+## 3692 51 TRUE 1 FALSE 1505444301 46250
+## 3693 53 TRUE 1 FALSE 1505444305 46250
+## 3694 54 TRUE 1 FALSE 1505444307 46250
+## 3695 47 TRUE 1 TRUE 1505788464 46250
+## 3696 33 TRUE 1 FALSE 1505432892 46250
+## 3697 50 TRUE 1 FALSE 1505788547 46250
+## 3698 40 TRUE 1 FALSE 1505433079 46250
+## 3699 3 TRUE 1 FALSE 1505152256 46250
+## 3700 3 TRUE 1 FALSE 1505444896 46250
+## 3701 4 TRUE 1 FALSE 1505444906 46250
+## 3702 35 TRUE 2 FALSE 1505786858 46250
+## 3703 47 TRUE 1 FALSE 1505444255 46250
+## 3704 38 TRUE 1 FALSE 1505786924 46250
+## 3705 19 TRUE 1 FALSE 1505445262 46250
+## 3706 20 TRUE 1 FALSE 1505445273 46250
+## 3707 22 TRUE 1 FALSE 1505445296 46250
+## 3708 23 TRUE 2 FALSE 1505445317 46250
+## 3709 35 TRUE 1 FALSE 1505432941 46250
+## 3710 51 TRUE 1 FALSE 1505788549 46250
+## 3711 27 TRUE 2 TRUE 1505445747 46250
+## 3712 19 TRUE 1 FALSE 1505434448 46250
+## 3713 26 TRUE 1 FALSE 1505438601 46250
+## 3714 32 TRUE 1 FALSE 1505445826 46250
+## 3715 37 TRUE 1 FALSE 1505445868 46250
+## 3716 18 TRUE 1 FALSE 1505445249 46250
+## 3717 15 TRUE 1 FALSE 1505152763 46250
+## 3718 16 TRUE 1 FALSE 1505152774 46250
+## 3719 35 TRUE 1 FALSE 1505445860 46250
+## 3720 10 TRUE 1 FALSE 1505152653 46250
+## 3721 30 TRUE 1 FALSE 1505445799 46250
+## 3722 36 TRUE 1 FALSE 1505786886 46250
+## 3723 17 TRUE 2 FALSE 1505445214 46250
+## 3724 29 TRUE 1 FALSE 1505445790 46250
+## 3725 16 TRUE 1 FALSE 1505445201 46250
+## 3726 28 TRUE 1 FALSE 1505445787 46250
+## 3727 33 TRUE 1 FALSE 1505445842 46250
+## 3728 47 TRUE 1 FALSE 1505145039 92108
+## 3729 26 TRUE 1 FALSE 1505090765 92108
+## 3730 46 TRUE 1 FALSE 1505145021 92108
+## 3731 50 TRUE 1 FALSE 1505145077 92108
+## 3732 25 TRUE 1 FALSE 1505090735 92108
+## 3733 51 TRUE 1 FALSE 1505145096 92108
+## 3734 49 TRUE 1 FALSE 1505145066 92108
+## 3735 44 TRUE 1 FALSE 1505144936 92108
+## 3736 17 TRUE 2 FALSE 1505092230 92108
+## 3737 21 TRUE 1 FALSE 1505092298 92108
+## 3738 11 TRUE 1 FALSE 1505091626 92108
+## 3739 14 TRUE 1 FALSE 1505091868 92108
+## 3740 39 TRUE 1 FALSE 1505140406 92108
+## 3741 27 TRUE 1 FALSE 1505090771 92108
+## 3742 42 TRUE 1 FALSE 1505144897 92108
+## 3743 43 TRUE 1 FALSE 1505144908 92108
+## 3744 19 TRUE 1 FALSE 1505092260 92108
+## 3745 53 TRUE 1 FALSE 1505145101 92108
+## 3746 54 TRUE 1 FALSE 1505145102 92108
+## 3747 33 TRUE 1 FALSE 1505091060 92108
+## 3748 3 TRUE 1 FALSE 1505145388 92108
+## 3749 10 TRUE 1 FALSE 1505091584 92108
+## 3750 33 TRUE 2 FALSE 1505139741 92108
+## 3751 35 TRUE 1 FALSE 1505139981 92108
+## 3752 15 TRUE 1 FALSE 1505092052 92108
+## 3753 21 TRUE 1 FALSE 1505090641 92108
+## 3754 22 TRUE 1 FALSE 1505090664 92108
+## 3755 40 TRUE 1 FALSE 1505140411 92108
+## 3756 32 TRUE 1 FALSE 1505143044 92108
+## 3757 3 TRUE 1 FALSE 1505141123 92108
+## 3758 31 TRUE 1 FALSE 1505090991 92108
+## 3759 12 TRUE 1 FALSE 1505090382 92108
+## 3760 36 TRUE 1 FALSE 1505091273 92108
+## 3761 38 TRUE 1 FALSE 1505146411 92108
+## 3762 35 TRUE 1 FALSE 1505146395 92108
+## 3763 23 TRUE 1 FALSE 1505090697 92108
+## 3764 5 TRUE 1 FALSE 1505145501 92108
+## 3765 7 TRUE 1 FALSE 1505145522 92108
+## 3766 41 TRUE 1 FALSE 1505144883 92108
+## 3767 9 TRUE 1 FALSE 1505145560 92108
+## 3768 33 TRUE 1 FALSE 1505143095 92108
+## 3769 34 TRUE 1 FALSE 1505143126 92108
+## 3770 4 TRUE 1 FALSE 1505141146 92108
+## 3771 38 TRUE 1 FALSE 1505091319 92108
+## 3772 37 TRUE 1 FALSE 1505146408 92108
+## 3773 39 TRUE 1 FALSE 1505091327 92108
+## 3774 4 TRUE 2 FALSE 1505145411 92108
+## 3775 9 TRUE 1 FALSE 1505091571 92108
+## 3776 18 TRUE 1 FALSE 1505090588 92108
+## 3777 8 TRUE 1 FALSE 1505091564 92108
+## 3778 8 TRUE 1 FALSE 1505145553 92108
+## 3779 39 TRUE 1 FALSE 1505144750 92108
+## 3780 12 TRUE 1 FALSE 1505145597 92108
+## 3781 13 TRUE 1 FALSE 1505145605 92108
+## 3782 11 TRUE 1 FALSE 1505090376 92108
+## 3783 22 TRUE 2 FALSE 1505092503 92108
+## 3784 33 TRUE 1 FALSE 1505146363 92108
+## 3785 32 TRUE 1 FALSE 1505139610 92108
+## 3786 17 TRUE 1 FALSE 1505090565 92108
+## 3787 4 TRUE 1 FALSE 1505143392 92108
+## 3788 38 TRUE 1 FALSE 1505144724 92108
+## 3789 7 TRUE 1 FALSE 1505143418 92108
+## 3790 9 TRUE 1 FALSE 1505143480 92108
+## 3791 11 TRUE 1 FALSE 1505145594 92108
+## 3792 8 TRUE 1 FALSE 1505090346 92108
+## 3793 37 TRUE 1 FALSE 1505143241 92108
+## 3794 38 TRUE 1 FALSE 1505143251 92108
+## 3795 40 TRUE 1 FALSE 1505143264 92108
+## 3796 40 TRUE 1 FALSE 1505091330 92108
+## 3797 18 TRUE 1 FALSE 1505145719 92108
+## 3798 19 TRUE 1 FALSE 1505145737 92108
+## 3799 6 TRUE 1 FALSE 1505143408 92108
+## 3800 22 TRUE 1 FALSE 1505145897 92108
+## 3801 31 TRUE 1 FALSE 1505143014 92108
+## 3802 29 TRUE 1 FALSE 1505092743 92108
+## 3803 31 TRUE 1 FALSE 1505092784 92108
+## 3804 10 TRUE 1 FALSE 1505090359 92108
+## 3805 27 TRUE 2 FALSE 1505146228 92108
+## 3806 14 TRUE 1 FALSE 1505090450 92108
+## 3807 15 TRUE 1 FALSE 1505090465 92108
+## 3808 16 TRUE 1 FALSE 1505090475 92108
+## 3809 30 TRUE 2 FALSE 1505139384 92108
+## 3810 6 TRUE 1 FALSE 1505091447 92108
+## 3811 37 TRUE 1 FALSE 1505144676 92108
+## 3812 30 TRUE 1 FALSE 1505142873 92108
+## 3813 27 TRUE 2 FALSE 1505092676 92108
+## 3814 18 TRUE 1 FALSE 1505138935 92108
+## 3815 24 TRUE 1 FALSE 1505145924 92108
+## 3816 10 TRUE 1 FALSE 1505143498 92108
+## 3817 12 TRUE 1 FALSE 1505143596 92108
+## 3818 14 TRUE 1 FALSE 1505145626 92108
+## 3819 36 TRUE 4 FALSE 1505143205 92108
+## 3820 6 TRUE 2 FALSE 1505141252 92108
+## 3821 7 TRUE 1 FALSE 1505141263 92108
+## 3822 23 TRUE 1 FALSE 1505092538 92108
+## 3823 25 TRUE 1 FALSE 1505092565 92108
+## 3824 17 TRUE 1 FALSE 1505138928 92108
+## 3825 9 TRUE 2 FALSE 1505141666 92108
+## 3826 10 TRUE 1 FALSE 1505141700 92108
+## 3827 22 TRUE 2 FALSE 1505139023 92108
+## 3828 15 TRUE 1 FALSE 1505143685 92108
+## 3829 15 TRUE 1 FALSE 1505145693 92108
+## 3830 16 TRUE 2 FALSE 1505145702 92108
+## 3831 17 TRUE 1 FALSE 1505145711 92108
+## 3832 8 TRUE 1 FALSE 1505137768 92108
+## 3833 20 TRUE 1 FALSE 1505145763 92108
+## 3834 8 TRUE 1 FALSE 1505142212 92108
+## 3835 9 TRUE 1 FALSE 1505142237 92108
+## 3836 12 TRUE 1 FALSE 1505141887 92108
+## 3837 17 TRUE 1 FALSE 1505141948 92108
+## 3838 32 TRUE 1 FALSE 1505092842 92108
+## 3839 28 TRUE 1 FALSE 1505146272 92108
+## 3840 29 TRUE 1 FALSE 1505146277 92108
+## 3841 30 TRUE 1 FALSE 1505146286 92108
+## 3842 32 TRUE 1 FALSE 1505146350 92108
+## 3843 35 TRUE 1 FALSE 1505144640 92108
+## 3844 36 TRUE 1 FALSE 1505144660 92108
+## 3845 29 TRUE 1 FALSE 1505142866 92108
+## 3846 11 TRUE 1 FALSE 1505137785 92108
+## 3847 5 TRUE 1 FALSE 1505142096 92108
+## 3848 23 TRUE 1 FALSE 1505145914 92108
+## 3849 3 TRUE 1 FALSE 1505090265 92108
+## 3850 30 TRUE 1 FALSE 1505144142 92108
+## 3851 13 TRUE 1 FALSE 1505143609 92108
+## 3852 14 TRUE 1 FALSE 1505143628 92108
+## 3853 17 TRUE 2 FALSE 1505143748 92108
+## 3854 18 TRUE 1 FALSE 1505143769 92108
+## 3855 20 TRUE 1 FALSE 1505143809 92108
+## 3856 41 TRUE 1 FALSE 1505143268 92108
+## 3857 8 TRUE 1 FALSE 1505141371 92108
+## 3858 23 TRUE 1 FALSE 1505143934 92108
+## 3859 7 TRUE 1 FALSE 1505137765 92108
+## 3860 3 TRUE 1 FALSE 1505142077 92108
+## 3861 25 TRUE 1 FALSE 1505139049 92108
+## 3862 27 TRUE 1 FALSE 1505144000 92108
+## 3863 15 TRUE 1 FALSE 1505142330 92108
+## 3864 32 TRUE 2 FALSE 1505144374 92108
+## 3865 21 TRUE 1 FALSE 1505143886 92108
+## 3866 33 TRUE 3 FALSE 1505144603 92108
+## 3867 6 TRUE 1 FALSE 1505137761 92108
+## 3868 22 TRUE 1 FALSE 1505142018 92108
+## 3869 33 TRUE 1 FALSE 1505092863 92108
+## 3870 34 TRUE 2 FALSE 1505093719 92108
+## 3871 19 TRUE 1 FALSE 1505138940 92108
+## 3872 40 TRUE 1 FALSE 1505094722 92108
+## 3873 5 TRUE 1 FALSE 1505091438 92108
+## 3874 27 TRUE 1 FALSE 1505142823 92108
+## 3875 35 TRUE 1 FALSE 1505094471 92108
+## 3876 10 TRUE 1 FALSE 1505142262 92108
+## 3877 13 TRUE 1 FALSE 1505142293 92108
+## 3878 23 TRUE 1 FALSE 1505139029 92108
+## 3879 23 TRUE 1 FALSE 1505142689 92108
+## 3880 28 TRUE 1 FALSE 1505139161 92108
+## 3881 29 TRUE 1 FALSE 1505139167 92108
+## 3882 5 TRUE 1 FALSE 1505137743 92108
+## 3883 18 TRUE 1 FALSE 1505141958 92108
+## 3884 21 TRUE 1 FALSE 1505142017 92108
+## 3885 19 TRUE 1 FALSE 1505141980 92108
+## 3886 28 TRUE 1 FALSE 1505144025 92108
+## 3887 41 TRUE 1 FALSE 1505094724 92108
+## 3888 14 TRUE 1 FALSE 1505142305 92108
+## 3889 21 TRUE 1 FALSE 1505142639 92108
+## 3890 11 TRUE 1 FALSE 1505142265 92108
+## 3891 22 TRUE 1 FALSE 1505142669 92108
+## 3892 26 TRUE 1 FALSE 1505142746 92108
+## 3893 20 TRUE 2 FALSE 1505142014 92108
+## 3894 17 TRUE 1 FALSE 1505142357 92108
+## 3895 24 TRUE 1 FALSE 1506008641 12264
+## 3896 25 TRUE 1 FALSE 1506008667 12264
+## 3897 16 TRUE 2 FALSE 1505158699 12264
+## 3898 33 TRUE 6 TRUE 1506302433 12264
+## 3899 26 TRUE 3 TRUE 1506008869 12264
+## 3900 49 TRUE 2 TRUE 1506094840 12264
+## 3901 3 TRUE 3 FALSE 1505939024 12264
+## 3902 23 TRUE 1 FALSE 1506008619 12264
+## 3903 22 TRUE 1 FALSE 1506008498 12264
+## 3904 28 TRUE 2 FALSE 1506301497 12264
+## 3905 29 TRUE 1 FALSE 1506301699 12264
+## 3906 39 TRUE 1 FALSE 1506093876 12264
+## 3907 21 TRUE 1 FALSE 1506008458 12264
+## 3908 61 TRUE 1 FALSE 1506096166 12264
+## 3909 18 TRUE 1 FALSE 1506008351 12264
+## 3910 62 TRUE 1 FALSE 1506096169 12264
+## 3911 32 TRUE 1 FALSE 1505158903 12264
+## 3912 4 TRUE 1 FALSE 1505939129 12264
+## 3913 5 TRUE 1 FALSE 1505939142 12264
+## 3914 24 TRUE 1 FALSE 1506266384 12264
+## 3915 16 TRUE 1 FALSE 1506008227 12264
+## 3916 11 TRUE 1 FALSE 1506007974 12264
+## 3917 57 TRUE 2 FALSE 1506096114 12264
+## 3918 28 TRUE 1 FALSE 1505158892 12264
+## 3919 34 TRUE 2 FALSE 1505159127 12264
+## 3920 21 TRUE 1 FALSE 1506265621 12264
+## 3921 37 TRUE 1 TRUE 1506093701 12264
+## 3922 25 TRUE 1 FALSE 1506266438 12264
+## 3923 4 TRUE 2 FALSE 1506007758 12264
+## 3924 5 TRUE 1 FALSE 1506007769 12264
+## 3925 10 TRUE 1 FALSE 1506007957 12264
+## 3926 12 TRUE 1 FALSE 1506008120 12264
+## 3927 8 TRUE 1 FALSE 1506007851 12264
+## 3928 34 TRUE 1 FALSE 1506010908 12264
+## 3929 27 TRUE 1 FALSE 1505158845 12264
+## 3930 36 TRUE 1 FALSE 1506011434 12264
+## 3931 46 TRUE 1 FALSE 1506094525 12264
+## 3932 18 TRUE 1 TRUE 1505957595 12264
+## 3933 21 TRUE 1 FALSE 1505957867 12264
+## 3934 35 TRUE 3 FALSE 1505159231 12264
+## 3935 32 TRUE 1 FALSE 1506302021 12264
+## 3936 9 TRUE 1 FALSE 1505158462 12264
+## 3937 33 TRUE 1 FALSE 1506010563 12264
+## 3938 19 TRUE 1 FALSE 1506265326 12264
+## 3939 13 TRUE 1 FALSE 1505158549 12264
+## 3940 35 TRUE 2 FALSE 1506011413 12264
+## 3941 47 TRUE 1 FALSE 1506094685 12264
+## 3942 48 TRUE 1 FALSE 1506094759 12264
+## 3943 36 TRUE 1 FALSE 1505159244 12264
+## 3944 27 TRUE 1 FALSE 1506008914 12264
+## 3945 6 TRUE 1 FALSE 1506007790 12264
+## 3946 7 TRUE 1 FALSE 1506007830 12264
+## 3947 18 TRUE 4 FALSE 1506265322 12264
+## 3948 30 TRUE 5 TRUE 1506301984 12264
+## 3949 31 TRUE 1 FALSE 1506302000 12264
+## 3950 56 TRUE 2 FALSE 1506095938 12264
+## 3951 20 TRUE 1 FALSE 1506265351 12264
+## 3952 17 TRUE 1 FALSE 1505957518 12264
+## 3953 6 TRUE 2 FALSE 1506264257 12264
+## 3954 38 TRUE 1 FALSE 1505958402 12264
+## 3955 14 TRUE 1 FALSE 1505158564 12264
+## 3956 6 TRUE 1 FALSE 1505939185 12264
+## 3957 17 TRUE 1 FALSE 1505158710 12264
+## 3958 10 TRUE 1 FALSE 1505939585 12264
+## 3959 12 TRUE 1 FALSE 1505939652 12264
+## 3960 13 TRUE 1 FALSE 1505939676 12264
+## 3961 42 TRUE 1 FALSE 1506302883 12264
+## 3962 34 TRUE 2 FALSE 1505958382 12264
+## 3963 35 TRUE 1 FALSE 1505958387 12264
+## 3964 8 TRUE 1 FALSE 1506264277 12264
+## 3965 11 TRUE 1 FALSE 1506264475 12264
+## 3966 15 TRUE 1 FALSE 1506265203 12264
+## 3967 28 TRUE 1 FALSE 1506008932 12264
+## 3968 30 TRUE 1 FALSE 1506008962 12264
+## 3969 3 TRUE 1 FALSE 1505158388 12264
+## 3970 5 TRUE 1 FALSE 1505158405 12264
+## 3971 11 TRUE 1 FALSE 1505158513 12264
+## 3972 8 TRUE 1 FALSE 1505158433 12264
+## 3973 14 TRUE 2 FALSE 1505939900 12264
+## 3974 37 TRUE 1 FALSE 1505958400 12264
+## 3975 51 TRUE 1 FALSE 1505160286 12264
+## 3976 12 TRUE 1 FALSE 1506265075 12264
+## 3977 26 TRUE 1 FALSE 1505958109 12264
+## 3978 21 TRUE 1 FALSE 1505158729 12264
+## 3979 23 TRUE 1 FALSE 1505158771 12264
+## 3980 25 TRUE 1 FALSE 1505158783 12264
+## 3981 45 TRUE 1 FALSE 1506094463 12264
+## 3982 16 TRUE 2 FALSE 1505957110 12264
+## 3983 48 TRUE 1 FALSE 1506303433 12264
+## 3984 38 TRUE 1 FALSE 1505159262 12264
+## 3985 19 TRUE 1 FALSE 1505158720 12264
+## 3986 38 TRUE 1 FALSE 1506302706 12264
+## 3987 39 TRUE 1 FALSE 1506302781 12264
+## 3988 30 TRUE 1 FALSE 1505958159 12264
+## 3989 44 TRUE 2 FALSE 1506094360 12264
+## 3990 43 TRUE 1 FALSE 1506302887 12264
+## 3991 48 TRUE 1 FALSE 1505160278 12264
+## 3992 50 TRUE 1 FALSE 1505160283 12264
+## 3993 47 TRUE 1 FALSE 1506303127 12264
+## 3994 40 TRUE 2 FALSE 1506094024 12264
+## 3995 7 TRUE 1 FALSE 1505939264 12264
+## 3996 9 TRUE 1 FALSE 1505939571 12264
+## 3997 27 TRUE 1 FALSE 1505958126 12264
+## 3998 41 TRUE 2 FALSE 1506094193 12264
+## 3999 3 TRUE 1 FALSE 1506263855 12264
+## 4000 22 TRUE 1 FALSE 1505957951 12264
+## 4001 52 TRUE 1 FALSE 1506303477 12264
+## 4002 55 TRUE 1 FALSE 1506095699 12264
+## 4003 40 TRUE 1 FALSE 1505159301 12264
+## 4004 50 TRUE 3 FALSE 1506094870 12264
+## 4005 53 TRUE 1 FALSE 1506094890 12264
+## 4006 47 TRUE 5 FALSE 1505160247 12264
+## 4007 46 TRUE 2 FALSE 1506303032 12264
+## 4008 33 TRUE 1 FALSE 1505958321 12264
+## 4009 41 TRUE 1 FALSE 1505159322 12264
+## 4010 37 TRUE 1 FALSE 1506302606 12264
+## 4011 54 TRUE 1 FALSE 1506304448 12264
+## 4012 43 TRUE 1 FALSE 1505159792 12264
+## 4013 42 TRUE 7 FALSE 1505159714 12264
+## 4014 57 TRUE 1 FALSE 1506304459 12264
+## 4015 56 TRUE 1 FALSE 1506304456 12264
+## 4016 53 TRUE 4 TRUE 1506304331 12264
+## 4017 34 TRUE 1 FALSE 1506302512 12264
+## 4018 7 TRUE 1 FALSE 1505662449 77484
+## 4019 29 TRUE 1 FALSE 1505933352 77484
+## 4020 12 TRUE 1 FALSE 1505620711 77484
+## 4021 28 TRUE 7 TRUE 1505933336 77484
+## 4022 16 TRUE 2 FALSE 1505658665 77484
+## 4023 3 TRUE 1 FALSE 1505662375 77484
+## 4024 6 TRUE 1 FALSE 1505662418 77484
+## 4025 11 TRUE 1 FALSE 1505620655 77484
+## 4026 22 TRUE 1 FALSE 1505658800 77484
+## 4027 18 TRUE 1 FALSE 1505658716 77484
+## 4028 22 TRUE 1 FALSE 1505663220 77484
+## 4029 21 TRUE 1 FALSE 1505658751 77484
+## 4030 32 TRUE 1 FALSE 1506109530 77484
+## 4031 8 TRUE 1 FALSE 1505620513 77484
+## 4032 10 TRUE 1 FALSE 1505620638 77484
+## 4033 26 TRUE 1 FALSE 1505663649 77484
+## 4034 33 TRUE 1 FALSE 1506109538 77484
+## 4035 4 TRUE 1 FALSE 1505662391 77484
+## 4036 5 TRUE 1 FALSE 1505662399 77484
+## 4037 53 TRUE 1 FALSE 1506110081 77484
+## 4038 27 TRUE 1 FALSE 1505663660 77484
+## 4039 30 TRUE 2 FALSE 1505933677 77484
+## 4040 51 TRUE 1 FALSE 1506110075 77484
+## 4041 35 TRUE 1 FALSE 1506109594 77484
+## 4042 54 TRUE 1 FALSE 1506110084 77484
+## 4043 34 TRUE 1 FALSE 1506109584 77484
+## 4044 10 TRUE 1 FALSE 1505662493 77484
+## 4045 56 TRUE 1 FALSE 1505938576 77484
+## 4046 57 TRUE 1 FALSE 1505938577 77484
+## 4047 9 TRUE 1 FALSE 1505662471 77484
+## 4048 7 TRUE 1 FALSE 1505620499 77484
+## 4049 61 TRUE 1 FALSE 1505661565 77484
+## 4050 62 TRUE 1 FALSE 1505661566 77484
+## 4051 11 TRUE 1 FALSE 1505755390 77484
+## 4052 12 TRUE 1 FALSE 1505755431 77484
+## 4053 15 TRUE 1 FALSE 1505755605 77484
+## 4054 39 TRUE 1 FALSE 1506109662 77484
+## 4055 42 TRUE 1 FALSE 1506109895 77484
+## 4056 43 TRUE 1 FALSE 1506109907 77484
+## 4057 45 TRUE 1 FALSE 1506109919 77484
+## 4058 31 TRUE 1 FALSE 1505933696 77484
+## 4059 32 TRUE 1 FALSE 1505934001 77484
+## 4060 6 TRUE 1 FALSE 1505620438 77484
+## 4061 21 TRUE 2 FALSE 1505756415 77484
+## 4062 24 TRUE 1 FALSE 1505926825 77484
+## 4063 25 TRUE 1 FALSE 1505926865 77484
+## 4064 18 TRUE 4 FALSE 1505755825 77484
+## 4065 19 TRUE 1 FALSE 1505755831 77484
+## 4066 20 TRUE 1 FALSE 1505756324 77484
+## 4067 37 TRUE 3 FALSE 1505660376 77484
+## 4068 33 TRUE 1 FALSE 1505934654 77484
+## 4069 34 TRUE 1 FALSE 1505934668 77484
+## 4070 37 TRUE 1 FALSE 1505934805 77484
+## 4071 38 TRUE 1 FALSE 1505934870 77484
+## 4072 30 TRUE 1 FALSE 1505659399 77484
+## 4073 33 TRUE 1 FALSE 1505660136 77484
+## 4074 34 TRUE 1 FALSE 1505660153 77484
+## 4075 35 TRUE 1 FALSE 1505660199 77484
+## 4076 36 TRUE 1 FALSE 1505660228 77484
+## 4077 4 TRUE 1 FALSE 1505620388 77484
+## 4078 3 TRUE 1 FALSE 1505754718 77484
+## 4079 6 TRUE 1 FALSE 1505755287 77484
+## 4080 8 TRUE 1 FALSE 1505755315 77484
+## 4081 53 TRUE 5 FALSE 1505937820 77484
+## 4082 54 TRUE 1 FALSE 1505938564 77484
+## 4083 17 TRUE 1 FALSE 1506109310 77484
+## 4084 21 TRUE 1 FALSE 1506109343 77484
+## 4085 12 TRUE 1 FALSE 1505662530 77484
+## 4086 13 TRUE 1 FALSE 1505662545 77484
+## 4087 14 TRUE 1 FALSE 1505662570 77484
+## 4088 16 TRUE 1 FALSE 1505662588 77484
+## 4089 17 TRUE 3 FALSE 1505663033 77484
+## 4090 18 TRUE 1 FALSE 1505663053 77484
+## 4091 21 TRUE 1 FALSE 1505663166 77484
+## 4092 3 TRUE 3 TRUE 1506107780 77484
+## 4093 30 TRUE 1 FALSE 1505663738 77484
+## 4094 33 TRUE 1 FALSE 1505663803 77484
+## 4095 34 TRUE 2 FALSE 1505663836 77484
+## 4096 35 TRUE 1 FALSE 1505663848 77484
+## 4097 37 TRUE 1 FALSE 1505663856 77484
+## 4098 38 TRUE 1 FALSE 1505663858 77484
+## 4099 39 TRUE 3 FALSE 1505935095 77484
+## 4100 42 TRUE 1 FALSE 1505935144 77484
+## 4101 43 TRUE 1 FALSE 1505935150 77484
+## 4102 46 TRUE 2 FALSE 1505935796 77484
+## 4103 47 TRUE 1 FALSE 1505936230 77484
+## 4104 48 TRUE 1 FALSE 1505936416 77484
+## 4105 52 TRUE 1 FALSE 1505936509 77484
+## 4106 9 TRUE 2 FALSE 1506109069 77484
+## 4107 10 TRUE 1 FALSE 1506109090 77484
+## 4108 11 TRUE 1 FALSE 1506109096 77484
+## 4109 14 TRUE 1 FALSE 1506109211 77484
+## 4110 16 TRUE 1 FALSE 1506109298 77484
+## 4111 35 TRUE 1 FALSE 1506308161 77484
+## 4112 36 TRUE 1 FALSE 1506308182 77484
+## 4113 38 TRUE 1 FALSE 1506308188 77484
+## 4114 22 TRUE 2 FALSE 1506109393 77484
+## 4115 23 TRUE 1 FALSE 1506109397 77484
+## 4116 25 TRUE 1 FALSE 1506109407 77484
+## 4117 26 TRUE 1 FALSE 1506109440 77484
+## 4118 27 TRUE 1 FALSE 1506109471 77484
+## 4119 31 TRUE 1 FALSE 1506109501 77484
+## 4120 25 TRUE 1 FALSE 1505659111 77484
+## 4121 26 TRUE 1 FALSE 1505659140 77484
+## 4122 27 TRUE 1 FALSE 1505659206 77484
+## 4123 28 TRUE 1 FALSE 1505659365 77484
+## 4124 16 TRUE 1 FALSE 1506307451 77484
+## 4125 17 TRUE 1 FALSE 1506307522 77484
+## 4126 19 TRUE 2 FALSE 1506307728 77484
+## 4127 4 TRUE 1 FALSE 1506108154 77484
+## 4128 48 TRUE 1 FALSE 1506109954 77484
+## 4129 49 TRUE 1 FALSE 1506109988 77484
+## 4130 50 TRUE 1 FALSE 1506110033 77484
+## 4131 5 TRUE 2 FALSE 1506306338 77484
+## 4132 7 TRUE 1 TRUE 1506306399 77484
+## 4133 9 TRUE 1 FALSE 1506306770 77484
+## 4134 11 TRUE 1 FALSE 1506306922 77484
+## 4135 34 TRUE 2 FALSE 1506308153 77484
+## 4136 46 TRUE 1 FALSE 1505661064 77484
+## 4137 47 TRUE 1 FALSE 1505661098 77484
+## 4138 48 TRUE 1 FALSE 1505661140 77484
+## 4139 20 TRUE 1 FALSE 1506307745 77484
+## 4140 21 TRUE 1 FALSE 1506307765 77484
+## 4141 25 TRUE 1 FALSE 1506307896 77484
+## 4142 5 TRUE 1 FALSE 1505620428 77484
+## 4143 28 TRUE 1 FALSE 1506308045 77484
+## 4144 31 TRUE 1 FALSE 1506308102 77484
+## 4145 32 TRUE 1 FALSE 1506308109 77484
+## 4146 33 TRUE 1 FALSE 1506308115 77484
+## 4147 45 TRUE 1 FALSE 1505661011 77484
+## 4148 16 TRUE 1 FALSE 1506108798 77484
+## 4149 17 TRUE 1 FALSE 1506108814 77484
+## 4150 20 TRUE 1 FALSE 1506108880 77484
+## 4151 39 TRUE 1 FALSE 1506308189 77484
+## 4152 23 TRUE 3 FALSE 1505659083 77484
+## 4153 24 TRUE 1 FALSE 1505659097 77484
+## 4154 40 TRUE 1 FALSE 1505660420 77484
+## 4155 41 TRUE 1 FALSE 1505660488 77484
+## 4156 44 TRUE 1 FALSE 1505660956 77484
+## 4157 15 TRUE 1 FALSE 1506108785 77484
+## 4158 50 TRUE 1 FALSE 1505661181 77484
+## 4159 6 TRUE 1 FALSE 1506108182 77484
+## 4160 8 TRUE 1 FALSE 1506108196 77484
+## 4161 49 TRUE 1 FALSE 1505661177 77484
+## 4162 39 TRUE 1 FALSE 1505660409 77484
+## 4163 57 TRUE 1 FALSE 1505661510 77484
+## 4164 9 TRUE 1 FALSE 1506108225 77484
+## 4165 22 TRUE 1 FALSE 1506108905 77484
+## 4166 26 TRUE 1 FALSE 1506108938 77484
+## 4167 53 TRUE 1 FALSE 1505661289 77484
+## 4168 13 TRUE 1 FALSE 1506108387 77484
+## 4169 56 TRUE 2 FALSE 1505661446 77484
+## 4170 10 TRUE 1 FALSE 1506108269 77484
+## 4171 55 TRUE 1 FALSE 1505661365 77484
+## 4172 27 TRUE 1 FALSE 1506307929 77484
+## 4173 5 TRUE 1 FALSE 1506108980 77484
+## 4174 6 TRUE 1 FALSE 1506109008 77484
+## 4175 11 TRUE 1 FALSE 1506108350 77484
+## 4176 26 TRUE 1 FALSE 1506307910 77484
+## 4177 27 TRUE 1 FALSE 1506108940 77484
+## 4178 8 TRUE 1 FALSE 1506109018 77484
+## 4179 7 TRUE 1 FALSE 1506109016 77484
+## 4180 3 TRUE 1 FALSE 1505148695 24042
+## 4181 50 TRUE 1 FALSE 1505174460 24042
+## 4182 4 TRUE 1 FALSE 1505142875 24042
+## 4183 7 TRUE 1 FALSE 1505142909 24042
+## 4184 48 TRUE 1 FALSE 1505174452 24042
+## 4185 8 TRUE 2 FALSE 1505150098 24042
+## 4186 47 TRUE 1 FALSE 1505174333 24042
+## 4187 6 TRUE 1 FALSE 1505142901 24042
+## 4188 5 TRUE 1 FALSE 1505148724 24042
+## 4189 9 TRUE 1 FALSE 1505098173 24042
+## 4190 13 TRUE 1 FALSE 1505098242 24042
+## 4191 5 TRUE 1 FALSE 1505097967 24042
+## 4192 9 TRUE 1 FALSE 1505150131 24042
+## 4193 8 TRUE 1 FALSE 1505098164 24042
+## 4194 10 TRUE 2 FALSE 1505098212 24042
+## 4195 40 TRUE 1 FALSE 1505091065 24042
+## 4196 11 TRUE 1 FALSE 1505098215 24042
+## 4197 19 TRUE 1 FALSE 1505091605 24042
+## 4198 3 TRUE 1 FALSE 1505097939 24042
+## 4199 17 TRUE 1 FALSE 1505091585 24042
+## 4200 40 TRUE 2 FALSE 1505153481 24042
+## 4201 41 TRUE 1 FALSE 1505153537 24042
+## 4202 18 TRUE 1 FALSE 1505091590 24042
+## 4203 10 TRUE 1 FALSE 1505097625 24042
+## 4204 14 TRUE 2 FALSE 1505098285 24042
+## 4205 21 TRUE 2 FALSE 1505098627 24042
+## 4206 42 TRUE 5 FALSE 1505154198 24042
+## 4207 11 TRUE 1 FALSE 1505091361 24042
+## 4208 22 TRUE 1 FALSE 1505098970 24042
+## 4209 23 TRUE 1 FALSE 1505098987 24042
+## 4210 40 TRUE 1 FALSE 1505087947 24042
+## 4211 43 TRUE 2 FALSE 1505173726 24042
+## 4212 29 TRUE 1 FALSE 1505089948 24042
+## 4213 35 TRUE 1 FALSE 1505090824 24042
+## 4214 28 TRUE 3 FALSE 1505091998 24042
+## 4215 29 TRUE 1 FALSE 1505092006 24042
+## 4216 30 TRUE 1 FALSE 1505092054 24042
+## 4217 27 TRUE 1 FALSE 1505089874 24042
+## 4218 31 TRUE 2 FALSE 1505090050 24042
+## 4219 15 TRUE 1 FALSE 1505098298 24042
+## 4220 17 TRUE 1 FALSE 1505098394 24042
+## 4221 34 TRUE 2 FALSE 1505090731 24042
+## 4222 36 TRUE 1 FALSE 1505087885 24042
+## 4223 38 TRUE 1 FALSE 1505087934 24042
+## 4224 39 TRUE 1 FALSE 1505087942 24042
+## 4225 54 TRUE 1 FALSE 1505144344 24042
+## 4226 5 TRUE 1 FALSE 1505088043 24042
+## 4227 6 TRUE 1 FALSE 1505088054 24042
+## 4228 8 TRUE 1 FALSE 1505088076 24042
+## 4229 11 TRUE 1 FALSE 1505150243 24042
+## 4230 20 TRUE 2 FALSE 1505097845 24042
+## 4231 14 TRUE 1 FALSE 1505088343 24042
+## 4232 15 TRUE 1 FALSE 1505089113 24042
+## 4233 51 TRUE 1 FALSE 1505174462 24042
+## 4234 19 TRUE 1 FALSE 1505089284 24042
+## 4235 5 TRUE 2 FALSE 1505091254 24042
+## 4236 6 TRUE 1 FALSE 1505091305 24042
+## 4237 7 TRUE 1 FALSE 1505091325 24042
+## 4238 8 TRUE 1 FALSE 1505091330 24042
+## 4239 23 TRUE 2 FALSE 1505147434 24042
+## 4240 9 TRUE 1 FALSE 1505088082 24042
+## 4241 11 TRUE 1 FALSE 1505088122 24042
+## 4242 33 TRUE 1 FALSE 1505090376 24042
+## 4243 18 TRUE 1 FALSE 1505087453 24042
+## 4244 21 TRUE 1 FALSE 1505087495 24042
+## 4245 6 TRUE 1 FALSE 1505097302 24042
+## 4246 7 TRUE 1 FALSE 1505097321 24042
+## 4247 8 TRUE 1 FALSE 1505097550 24042
+## 4248 9 TRUE 1 FALSE 1505097618 24042
+## 4249 28 TRUE 1 FALSE 1505152664 24042
+## 4250 12 TRUE 1 FALSE 1505097654 24042
+## 4251 17 TRUE 1 FALSE 1505097763 24042
+## 4252 24 TRUE 1 FALSE 1505147445 24042
+## 4253 32 TRUE 1 FALSE 1505090285 24042
+## 4254 21 TRUE 1 FALSE 1505097851 24042
+## 4255 22 TRUE 1 FALSE 1505097854 24042
+## 4256 50 TRUE 1 FALSE 1505144309 24042
+## 4257 51 TRUE 1 FALSE 1505144326 24042
+## 4258 53 TRUE 1 FALSE 1505144340 24042
+## 4259 22 TRUE 2 FALSE 1505089423 24042
+## 4260 3 TRUE 1 FALSE 1505146706 24042
+## 4261 4 TRUE 1 FALSE 1505146718 24042
+## 4262 5 TRUE 1 FALSE 1505146764 24042
+## 4263 7 TRUE 1 FALSE 1505146773 24042
+## 4264 10 TRUE 1 FALSE 1505088103 24042
+## 4265 11 TRUE 1 FALSE 1505146939 24042
+## 4266 9 TRUE 1 FALSE 1505142927 24042
+## 4267 21 TRUE 1 FALSE 1505089363 24042
+## 4268 41 TRUE 1 FALSE 1505091068 24042
+## 4269 23 TRUE 1 FALSE 1505089466 24042
+## 4270 25 TRUE 1 FALSE 1505089567 24042
+## 4271 11 TRUE 1 FALSE 1505087201 24042
+## 4272 12 TRUE 1 FALSE 1505087202 24042
+## 4273 27 TRUE 4 FALSE 1505147788 24042
+## 4274 28 TRUE 1 FALSE 1505147843 24042
+## 4275 29 TRUE 1 FALSE 1505147848 24042
+## 4276 30 TRUE 1 FALSE 1505147878 24042
+## 4277 37 TRUE 1 FALSE 1505148556 24042
+## 4278 38 TRUE 1 FALSE 1505148558 24042
+## 4279 18 TRUE 1 FALSE 1505097776 24042
+## 4280 19 TRUE 1 FALSE 1505097822 24042
+## 4281 35 TRUE 1 FALSE 1505092351 24042
+## 4282 36 TRUE 1 FALSE 1505153082 24042
+## 4283 38 TRUE 1 FALSE 1505153138 24042
+## 4284 33 TRUE 1 FALSE 1505087800 24042
+## 4285 49 TRUE 1 FALSE 1505144300 24042
+## 4286 17 TRUE 2 FALSE 1505089237 24042
+## 4287 37 TRUE 1 FALSE 1505143853 24042
+## 4288 38 TRUE 1 FALSE 1505143890 24042
+## 4289 3 TRUE 1 FALSE 1505087082 24042
+## 4290 8 TRUE 1 FALSE 1505087168 24042
+## 4291 10 TRUE 1 FALSE 1505087191 24042
+## 4292 27 TRUE 1 FALSE 1505099070 24042
+## 4293 29 TRUE 1 FALSE 1505099151 24042
+## 4294 8 TRUE 1 FALSE 1505146807 24042
+## 4295 9 TRUE 1 FALSE 1505146815 24042
+## 4296 12 TRUE 1 FALSE 1505146942 24042
+## 4297 13 TRUE 1 FALSE 1505146950 24042
+## 4298 12 TRUE 1 FALSE 1505142947 24042
+## 4299 32 TRUE 1 FALSE 1505092135 24042
+## 4300 22 TRUE 5 FALSE 1505087585 24042
+## 4301 23 TRUE 1 FALSE 1505087594 24042
+## 4302 14 TRUE 1 FALSE 1505087368 24042
+## 4303 15 TRUE 1 FALSE 1505087385 24042
+## 4304 22 TRUE 1 FALSE 1505091720 24042
+## 4305 23 TRUE 1 FALSE 1505091726 24042
+## 4306 25 TRUE 1 FALSE 1505091821 24042
+## 4307 10 TRUE 1 FALSE 1505142936 24042
+## 4308 36 TRUE 1 FALSE 1505143839 24042
+## 4309 36 TRUE 1 FALSE 1505100176 24042
+## 4310 16 TRUE 2 FALSE 1505147010 24042
+## 4311 17 TRUE 1 FALSE 1505147090 24042
+## 4312 18 TRUE 1 FALSE 1505147193 24042
+## 4313 26 TRUE 1 FALSE 1505099046 24042
+## 4314 33 TRUE 2 FALSE 1505092316 24042
+## 4315 26 TRUE 1 FALSE 1505087637 24042
+## 4316 39 TRUE 1 FALSE 1505092396 24042
+## 4317 40 TRUE 1 FALSE 1505092400 24042
+## 4318 35 TRUE 2 FALSE 1505153072 24042
+## 4319 17 TRUE 2 FALSE 1505087440 24042
+## 4320 33 TRUE 1 FALSE 1505100071 24042
+## 4321 14 TRUE 1 FALSE 1505146968 24042
+## 4322 37 TRUE 1 FALSE 1505100183 24042
+## 4323 32 TRUE 1 FALSE 1505148220 24042
+## 4324 33 TRUE 1 FALSE 1505148260 24042
+## 4325 30 TRUE 1 FALSE 1505099161 24042
+## 4326 31 TRUE 1 FALSE 1505099202 24042
+## 4327 16 TRUE 1 FALSE 1505087396 24042
+## 4328 47 TRUE 1 FALSE 1505144112 24042
+## 4329 13 TRUE 12 FALSE 1505151039 24042
+## 4330 34 TRUE 1 FALSE 1505100139 24042
+## 4331 13 TRUE 1 FALSE 1505143077 24042
+## 4332 14 TRUE 1 FALSE 1505143226 24042
+## 4333 15 TRUE 1 FALSE 1505143319 24042
+## 4334 17 TRUE 1 FALSE 1505143347 24042
+## 4335 18 TRUE 1 FALSE 1505143373 24042
+## 4336 27 TRUE 1 FALSE 1505152490 24042
+## 4337 25 TRUE 1 FALSE 1505087626 24042
+## 4338 32 TRUE 1 FALSE 1505152697 24042
+## 4339 27 TRUE 1 FALSE 1505087643 24042
+## 4340 31 TRUE 1 FALSE 1505087759 24042
+## 4341 32 TRUE 2 FALSE 1505100034 24042
+## 4342 46 TRUE 1 FALSE 1505144098 24042
+## 4343 14 TRUE 1 FALSE 1505151072 24042
+## 4344 3 TRUE 1 FALSE 1505096812 24042
+## 4345 4 TRUE 1 FALSE 1505096821 24042
+## 4346 19 TRUE 1 FALSE 1505151564 24042
+## 4347 21 TRUE 1 FALSE 1505151585 24042
+## 4348 35 TRUE 1 FALSE 1505148510 24042
+## 4349 19 TRUE 1 FALSE 1505147346 24042
+## 4350 20 TRUE 1 FALSE 1505147380 24042
+## 4351 27 TRUE 1 FALSE 1505143514 24042
+## 4352 28 TRUE 1 FALSE 1505143527 24042
+## 4353 15 TRUE 1 FALSE 1505146992 24042
+## 4354 16 TRUE 2 FALSE 1505151538 24042
+## 4355 17 TRUE 1 FALSE 1505151551 24042
+## 4356 38 TRUE 1 FALSE 1505100194 24042
+## 4357 25 TRUE 1 FALSE 1505151649 24042
+## 4358 41 TRUE 1 FALSE 1505143996 24042
+## 4359 43 TRUE 1 FALSE 1505144028 24042
+## 4360 22 TRUE 1 FALSE 1505147405 24042
+## 4361 34 TRUE 1 FALSE 1505152972 24042
+## 4362 41 TRUE 1 FALSE 1505100206 24042
+## 4363 20 TRUE 1 FALSE 1505143419 24042
+## 4364 30 TRUE 1 FALSE 1505143681 24042
+## 4365 33 TRUE 1 FALSE 1505143775 24042
+## 4366 44 TRUE 1 FALSE 1505144043 24042
+## 4367 40 TRUE 1 FALSE 1505100205 24042
+## 4368 35 TRUE 1 FALSE 1505143800 24042
+## 4369 23 TRUE 1 FALSE 1505151599 24042
+## 4370 32 TRUE 1 FALSE 1505143720 24042
+## 4371 23 TRUE 1 FALSE 1505143462 24042
+## 4372 42 TRUE 1 FALSE 1505144022 24042
+## 4373 21 TRUE 1 FALSE 1505143437 24042
+## 4374 39 TRUE 1 FALSE 1505143941 24042
+## 4375 3 TRUE 1 FALSE 1504839912 64610
+## 4376 8 TRUE 1 FALSE 1504840037 64610
+## 4377 23 TRUE 1 FALSE 1504840960 64610
+## 4378 40 TRUE 1 FALSE 1504841449 64610
+## 4379 10 TRUE 1 FALSE 1504840061 64610
+## 4380 11 TRUE 1 FALSE 1504840087 64610
+## 4381 25 TRUE 1 FALSE 1504841020 64610
+## 4382 26 TRUE 1 FALSE 1504841054 64610
+## 4383 15 TRUE 1 FALSE 1504840305 64610
+## 4384 16 TRUE 1 FALSE 1504840316 64610
+## 4385 17 TRUE 1 FALSE 1504840367 64610
+## 4386 18 TRUE 1 FALSE 1504840398 64610
+## 4387 21 TRUE 1 FALSE 1504840486 64610
+## 4388 22 TRUE 1 FALSE 1504840913 64610
+## 4389 12 TRUE 1 FALSE 1504840095 64610
+## 4390 14 TRUE 1 FALSE 1504840262 64610
+## 4391 27 TRUE 1 FALSE 1504841063 64610
+## 4392 33 TRUE 1 FALSE 1504841311 64610
+## 4393 36 TRUE 1 FALSE 1504841395 64610
+## 4394 38 TRUE 1 FALSE 1504841435 64610
+## 4395 31 TRUE 2 FALSE 1504841253 64610
+## 4396 39 TRUE 1 FALSE 1504841445 64610
+## 4397 40 TRUE 1 FALSE 1504888964 34362
+## 4398 41 TRUE 2 FALSE 1506118825 34362
+## 4399 34 TRUE 2 TRUE 1504888707 34362
+## 4400 32 TRUE 2 FALSE 1504888209 34362
+## 4401 33 TRUE 1 FALSE 1504888294 34362
+## 4402 35 TRUE 1 FALSE 1504888888 34362
+## 4403 38 TRUE 3 FALSE 1506117762 34362
+## 4404 9 TRUE 1 FALSE 1506136575 34362
+## 4405 42 TRUE 1 FALSE 1506118837 34362
+## 4406 39 TRUE 1 FALSE 1506118744 34362
+## 4407 31 TRUE 1 FALSE 1504888015 34362
+## 4408 11 TRUE 3 FALSE 1504886090 34362
+## 4409 14 TRUE 1 TRUE 1504886933 34362
+## 4410 15 TRUE 2 FALSE 1504886997 34362
+## 4411 17 TRUE 1 TRUE 1504887286 34362
+## 4412 19 TRUE 1 FALSE 1504887532 34362
+## 4413 21 TRUE 1 FALSE 1504887572 34362
+## 4414 22 TRUE 2 FALSE 1504887595 34362
+## 4415 23 TRUE 1 FALSE 1504887646 34362
+## 4416 25 TRUE 1 FALSE 1504887680 34362
+## 4417 27 TRUE 1 TRUE 1504887845 34362
+## 4418 29 TRUE 1 FALSE 1504887910 34362
+## 4419 27 TRUE 8 FALSE 1506138777 34362
+## 4420 28 TRUE 2 FALSE 1506139211 34362
+## 4421 32 TRUE 1 FALSE 1506139348 34362
+## 4422 34 TRUE 4 TRUE 1506139898 34362
+## 4423 41 TRUE 1 FALSE 1504889009 34362
+## 4424 12 TRUE 1 FALSE 1506119495 34362
+## 4425 13 TRUE 1 FALSE 1506119507 34362
+## 4426 14 TRUE 1 FALSE 1506119536 34362
+## 4427 15 TRUE 1 FALSE 1506119620 34362
+## 4428 16 TRUE 2 FALSE 1506119648 34362
+## 4429 17 TRUE 1 FALSE 1506119657 34362
+## 4430 18 TRUE 1 FALSE 1506132322 34362
+## 4431 19 TRUE 1 FALSE 1506132357 34362
+## 4432 20 TRUE 1 FALSE 1506132406 34362
+## 4433 22 TRUE 1 FALSE 1506132426 34362
+## 4434 23 TRUE 1 FALSE 1506132512 34362
+## 4435 24 TRUE 1 FALSE 1506132524 34362
+## 4436 11 TRUE 1 FALSE 1506136592 34362
+## 4437 13 TRUE 2 FALSE 1506136666 34362
+## 4438 14 TRUE 1 FALSE 1506136682 34362
+## 4439 16 TRUE 1 FALSE 1506136712 34362
+## 4440 17 TRUE 1 FALSE 1506136717 34362
+## 4441 19 TRUE 1 FALSE 1506136723 34362
+## 4442 21 TRUE 1 FALSE 1506136737 34362
+## 4443 23 TRUE 1 FALSE 1506136748 34362
+## 4444 25 TRUE 1 FALSE 1506136760 34362
+## 4445 30 TRUE 1 FALSE 1506117151 34362
+## 4446 32 TRUE 1 FALSE 1506117472 34362
+## 4447 33 TRUE 1 FALSE 1506117582 34362
+## 4448 35 TRUE 1 FALSE 1506117600 34362
+## 4449 36 TRUE 1 FALSE 1506117677 34362
+## 4450 37 TRUE 1 FALSE 1506117706 34362
+## 4451 27 TRUE 1 FALSE 1506114680 34362
+## 4452 29 TRUE 1 FALSE 1506114712 34362
+## 4453 30 TRUE 2 FALSE 1506114816 34362
+## 4454 31 TRUE 1 FALSE 1506114859 34362
+## 4455 32 TRUE 1 FALSE 1506114893 34362
+## 4456 33 TRUE 1 FALSE 1506114953 34362
+## 4457 43 TRUE 1 FALSE 1506118853 34362
+## 4458 44 TRUE 1 FALSE 1506118889 34362
+## 4459 46 TRUE 1 FALSE 1506118936 34362
+## 4460 47 TRUE 1 FALSE 1506118958 34362
+## 4461 49 TRUE 2 FALSE 1506119005 34362
+## 4462 50 TRUE 1 FALSE 1506119019 34362
+## 4463 51 TRUE 1 FALSE 1506119032 34362
+## 4464 53 TRUE 1 FALSE 1506119039 34362
+## 4465 54 TRUE 1 FALSE 1506119041 34362
+## 4466 19 TRUE 1 FALSE 1506112971 34362
+## 4467 20 TRUE 1 FALSE 1506113006 34362
+## 4468 21 TRUE 1 FALSE 1506113015 34362
+## 4469 22 TRUE 1 FALSE 1506113019 34362
+## 4470 3 TRUE 1 FALSE 1506113278 34362
+## 4471 5 TRUE 1 FALSE 1506113324 34362
+## 4472 8 TRUE 1 FALSE 1506113760 34362
+## 4473 9 TRUE 1 FALSE 1506113769 34362
+## 4474 10 TRUE 1 FALSE 1506113810 34362
+## 4475 11 TRUE 1 FALSE 1506113812 34362
+## 4476 13 TRUE 1 FALSE 1506113916 34362
+## 4477 14 TRUE 1 FALSE 1506113926 34362
+## 4478 15 TRUE 1 FALSE 1506113938 34362
+## 4479 17 TRUE 1 FALSE 1506113970 34362
+## 4480 21 TRUE 4 FALSE 1506114287 34362
+## 4481 22 TRUE 1 FALSE 1506114375 34362
+## 4482 23 TRUE 2 FALSE 1506114468 34362
+## 4483 26 TRUE 1 FALSE 1506114663 34362
+## 4484 33 TRUE 4 FALSE 1506111119 34362
+## 4485 35 TRUE 1 FALSE 1506111166 34362
+## 4486 39 TRUE 1 FALSE 1506111231 34362
+## 4487 40 TRUE 1 FALSE 1506111233 34362
+## 4488 34 TRUE 2 FALSE 1506115001 34362
+## 4489 36 TRUE 1 FALSE 1506115038 34362
+## 4490 37 TRUE 2 FALSE 1506115062 34362
+## 4491 38 TRUE 1 FALSE 1506115083 34362
+## 4492 40 TRUE 1 FALSE 1506115222 34362
+## 4493 41 TRUE 1 FALSE 1506115225 34362
+## 4494 4 TRUE 1 FALSE 1506115908 34362
+## 4495 6 TRUE 2 FALSE 1506116001 34362
+## 4496 7 TRUE 1 FALSE 1506116063 34362
+## 4497 9 TRUE 1 FALSE 1506116101 34362
+## 4498 10 TRUE 1 FALSE 1506116112 34362
+## 4499 12 TRUE 1 FALSE 1506116129 34362
+## 4500 13 TRUE 1 FALSE 1506116143 34362
+## 4501 14 TRUE 1 FALSE 1506116182 34362
+## 4502 15 TRUE 3 FALSE 1506116401 34362
+## 4503 17 TRUE 1 FALSE 1506116527 34362
+## 4504 18 TRUE 1 FALSE 1506116542 34362
+## 4505 20 TRUE 1 FALSE 1506116948 34362
+## 4506 21 TRUE 1 FALSE 1506116972 34362
+## 4507 23 TRUE 1 FALSE 1506117021 34362
+## 4508 27 TRUE 1 FALSE 1506117051 34362
+## 4509 28 TRUE 1 FALSE 1506117065 34362
+## 4510 30 TRUE 4 FALSE 1506110484 34362
+## 4511 32 TRUE 2 FALSE 1506110591 34362
+## 4512 3 TRUE 1 FALSE 1506119115 34362
+## 4513 4 TRUE 1 FALSE 1506119126 34362
+## 4514 5 TRUE 1 FALSE 1506119137 34362
+## 4515 7 TRUE 1 FALSE 1506119259 34362
+## 4516 8 TRUE 1 FALSE 1506119448 34362
+## 4517 9 TRUE 2 FALSE 1506119458 34362
+## 4518 3 TRUE 1 FALSE 1506111521 34362
+## 4519 4 TRUE 1 FALSE 1506111528 34362
+## 4520 6 TRUE 1 FALSE 1506111608 34362
+## 4521 7 TRUE 1 FALSE 1506111636 34362
+## 4522 8 TRUE 1 FALSE 1506111683 34362
+## 4523 9 TRUE 1 FALSE 1506111716 34362
+## 4524 10 TRUE 1 FALSE 1506111720 34362
+## 4525 12 TRUE 1 FALSE 1506111759 34362
+## 4526 17 TRUE 1 FALSE 1506112837 34362
+## 4527 18 TRUE 1 FALSE 1506112865 34362
+## 4528 5 TRUE 1 TRUE 1504885877 34362
+## 4529 5 TRUE 1 FALSE 1506109084 34362
+## 4530 6 TRUE 1 TRUE 1506109339 34362
+## 4531 7 TRUE 1 FALSE 1506109387 34362
+## 4532 8 TRUE 1 FALSE 1506109391 34362
+## 4533 11 TRUE 1 FALSE 1506109755 34362
+## 4534 17 TRUE 1 FALSE 1506109906 34362
+## 4535 18 TRUE 1 FALSE 1506109918 34362
+## 4536 19 TRUE 1 FALSE 1506109951 34362
+## 4537 22 TRUE 2 FALSE 1506110152 34362
+## 4538 23 TRUE 1 FALSE 1506110158 34362
+## 4539 25 TRUE 1 FALSE 1506110209 34362
+## 4540 28 TRUE 2 FALSE 1506110315 34362
+## 4541 29 TRUE 1 FALSE 1506110320 34362
+## 4542 25 TRUE 1 FALSE 1506107547 34362
+## 4543 27 TRUE 1 FALSE 1506107860 34362
+## 4544 29 TRUE 1 FALSE 1506107992 34362
+## 4545 31 TRUE 2 FALSE 1506108034 34362
+## 4546 10 TRUE 1 FALSE 1506104895 34362
+## 4547 11 TRUE 1 FALSE 1506104920 34362
+## 4548 12 TRUE 1 FALSE 1506104924 34362
+## 4549 14 TRUE 1 FALSE 1506105185 34362
+## 4550 15 TRUE 1 FALSE 1506105211 34362
+## 4551 16 TRUE 1 FALSE 1506105226 34362
+## 4552 17 TRUE 1 FALSE 1506105951 34362
+## 4553 11 TRUE 2 FALSE 1506119491 34362
+## 4554 35 TRUE 4 TRUE 1506140241 34362
+## 4555 36 TRUE 2 FALSE 1506140327 34362
+## 4556 38 TRUE 1 FALSE 1506140378 34362
+## 4557 40 TRUE 2 FALSE 1506140983 34362
+## 4558 41 TRUE 1 FALSE 1506141096 34362
+## 4559 6 TRUE 1 TRUE 1504885915 34362
+## 4560 8 TRUE 1 FALSE 1504885972 34362
+## 4561 9 TRUE 1 FALSE 1504885986 34362
+## 4562 10 TRUE 1 FALSE 1504886007 34362
+## 4563 11 TRUE 2 FALSE 1506106797 34362
+## 4564 14 TRUE 1 FALSE 1506106940 34362
+## 4565 15 TRUE 1 FALSE 1506107201 34362
+## 4566 17 TRUE 1 FALSE 1506107296 34362
+## 4567 19 TRUE 1 FALSE 1506107336 34362
+## 4568 21 TRUE 1 FALSE 1506107362 34362
+## 4569 22 TRUE 1 FALSE 1506107383 34362
+## 4570 23 TRUE 2 FALSE 1506107463 34362
+## 4571 21 TRUE 1 FALSE 1506106018 34362
+## 4572 22 TRUE 1 FALSE 1506106043 34362
+## 4573 23 TRUE 1 FALSE 1506106055 34362
+## 4574 3 TRUE 1 FALSE 1506104741 34362
+## 4575 8 TRUE 1 FALSE 1506104870 34362
+## 4576 27 TRUE 1 FALSE 1506106117 34362
+## 4577 32 TRUE 1 FALSE 1506108350 34362
+## 4578 33 TRUE 1 FALSE 1506108369 34362
+## 4579 34 TRUE 2 FALSE 1506108577 34362
+## 4580 35 TRUE 2 FALSE 1506108820 34362
+## 4581 18 TRUE 1 FALSE 1506105962 34362
+## 4582 43 TRUE 1 TRUE 1506142792 34362
+## 4583 27 TRUE 1 TRUE 1506132695 34362
+## 4584 25 TRUE 1 FALSE 1506106088 34362
+## 4585 26 TRUE 1 FALSE 1506106112 34362
+## 4586 30 TRUE 1 FALSE 1506132845 34362
+## 4587 31 TRUE 1 FALSE 1506106207 34362
+## 4588 33 TRUE 1 FALSE 1506106233 34362
+## 4589 36 TRUE 1 FALSE 1506106320 34362
+## 4590 38 TRUE 1 FALSE 1506106358 34362
+## 4591 39 TRUE 1 FALSE 1506106366 34362
+## 4592 42 TRUE 4 TRUE 1506142686 34362
+## 4593 40 TRUE 1 FALSE 1506108879 34362
+## 4594 41 TRUE 1 FALSE 1506108883 34362
+## 4595 28 TRUE 2 FALSE 1506132825 34362
+## 4596 29 TRUE 1 FALSE 1506132831 34362
+## 4597 10 TRUE 1 FALSE 1506106670 34362
+## 4598 32 TRUE 1 FALSE 1506132908 34362
+## 4599 33 TRUE 1 FALSE 1506132929 34362
+## 4600 35 TRUE 1 FALSE 1506132958 34362
+## 4601 37 TRUE 1 FALSE 1506132975 34362
+## 4602 38 TRUE 1 FALSE 1506132977 34362
+## 4603 40 TRUE 1 FALSE 1506106370 34362
+## 4604 5 TRUE 1 FALSE 1506106592 34362
+## 4605 6 TRUE 1 FALSE 1506106606 34362
+## 4606 9 TRUE 1 FALSE 1506106656 34362
+## 4607 47 TRUE 2 TRUE 1506143157 34362
+## 4608 48 TRUE 5 TRUE 1506143300 34362
+## 4609 50 TRUE 1 FALSE 1506143310 34362
+## 4610 51 TRUE 1 FALSE 1506143312 34362
+## 4611 3 TRUE 1 FALSE 1506136516 34362
+## 4612 8 TRUE 1 FALSE 1506106648 34362
+## 4613 5 TRUE 1 FALSE 1506136526 34362
+## 4614 8 TRUE 1 FALSE 1506136538 34362
+## 4615 40 TRUE 1 FALSE 1505233830 35235
+## 4616 14 TRUE 1 FALSE 1505159998 35235
+## 4617 25 TRUE 1 FALSE 1505233569 35235
+## 4618 8 TRUE 1 FALSE 1505159873 35235
+## 4619 3 TRUE 1 FALSE 1505159831 35235
+## 4620 23 TRUE 1 FALSE 1505228886 35235
+## 4621 39 TRUE 1 FALSE 1505233824 35235
+## 4622 11 TRUE 2 FALSE 1505159957 35235
+## 4623 16 TRUE 1 FALSE 1505160038 35235
+## 4624 22 TRUE 1 FALSE 1505228880 35235
+## 4625 15 TRUE 1 FALSE 1505160013 35235
+## 4626 27 TRUE 1 FALSE 1505233585 35235
+## 4627 31 TRUE 1 FALSE 1505233657 35235
+## 4628 36 TRUE 1 FALSE 1505233766 35235
+## 4629 18 TRUE 1 FALSE 1505160064 35235
+## 4630 38 TRUE 1 FALSE 1505233815 35235
+## 4631 33 TRUE 1 FALSE 1505233722 35235
+## 4632 21 TRUE 2 FALSE 1505228867 35235
+## 4633 26 TRUE 1 FALSE 1505233578 35235
+## 4634 12 TRUE 2 FALSE 1505159969 35235
+## 4635 17 TRUE 1 FALSE 1505160053 35235
+## 4636 10 TRUE 1 FALSE 1505159886 35235
+datetime variable into month-day-year format and create a new data frame (DF6) that shows the average correct for each dayDF5$datetime2 <- as.POSIXct(as.numeric(DF5$datetime), origin='1970-01-01')
+class(DF5$datetime2)
+## [1] "POSIXct" "POSIXt"
+DF5$date_class <-NULL
+DF5
+## course_name lesson_name
+## 1 R Programming Dates and Times
+## 2 R Programming Functions
+## 3 R Programming Basic Building Blocks
+## 4 R Programming Dates and Times
+## 5 R Programming Dates and Times
+## 6 R Programming Workspace and Files
+## 7 R Programming Functions
+## 8 R Programming Dates and Times
+## 9 R Programming Dates and Times
+## 10 R Programming Dates and Times
+## 11 R Programming Basic Building Blocks
+## 12 R Programming Vectors
+## 13 R Programming Basic Building Blocks
+## 14 R Programming Vectors
+## 15 R Programming Workspace and Files
+## 16 R Programming Subsetting Vectors
+## 17 R Programming Dates and Times
+## 18 R Programming Subsetting Vectors
+## 19 R Programming Dates and Times
+## 20 R Programming Subsetting Vectors
+## 21 R Programming Dates and Times
+## 22 R Programming Dates and Times
+## 23 R Programming Subsetting Vectors
+## 24 R Programming Functions
+## 25 R Programming Subsetting Vectors
+## 26 R Programming Basic Building Blocks
+## 27 R Programming Vectors
+## 28 R Programming Logic
+## 29 R Programming Basic Building Blocks
+## 30 R Programming Workspace and Files
+## 31 R Programming Workspace and Files
+## 32 R Programming Subsetting Vectors
+## 33 R Programming Dates and Times
+## 34 R Programming Workspace and Files
+## 35 R Programming Dates and Times
+## 36 R Programming Dates and Times
+## 37 R Programming Vectors
+## 38 R Programming Subsetting Vectors
+## 39 R Programming Subsetting Vectors
+## 40 R Programming Basic Building Blocks
+## 41 R Programming Dates and Times
+## 42 R Programming Basic Building Blocks
+## 43 R Programming Subsetting Vectors
+## 44 R Programming Logic
+## 45 R Programming Workspace and Files
+## 46 R Programming Subsetting Vectors
+## 47 R Programming Logic
+## 48 R Programming Subsetting Vectors
+## 49 R Programming Functions
+## 50 R Programming Logic
+## 51 R Programming Dates and Times
+## 52 R Programming Vectors
+## 53 R Programming Basic Building Blocks
+## 54 R Programming Logic
+## 55 R Programming Logic
+## 56 R Programming Missing Values
+## 57 R Programming Logic
+## 58 R Programming Workspace and Files
+## 59 R Programming Subsetting Vectors
+## 60 R Programming Workspace and Files
+## 61 R Programming Dates and Times
+## 62 R Programming Logic
+## 63 R Programming Basic Building Blocks
+## 64 R Programming Dates and Times
+## 65 R Programming Missing Values
+## 66 R Programming Missing Values
+## 67 R Programming Missing Values
+## 68 R Programming Subsetting Vectors
+## 69 R Programming Logic
+## 70 R Programming Logic
+## 71 R Programming Dates and Times
+## 72 R Programming Dates and Times
+## 73 R Programming Dates and Times
+## 74 R Programming Functions
+## 75 R Programming Dates and Times
+## 76 R Programming Logic
+## 77 R Programming Dates and Times
+## 78 R Programming Missing Values
+## 79 R Programming Workspace and Files
+## 80 R Programming Workspace and Files
+## 81 R Programming Functions
+## 82 R Programming Basic Building Blocks
+## 83 R Programming Basic Building Blocks
+## 84 R Programming Basic Building Blocks
+## 85 R Programming Subsetting Vectors
+## 86 R Programming Dates and Times
+## 87 R Programming Subsetting Vectors
+## 88 R Programming Vectors
+## 89 R Programming Vectors
+## 90 R Programming Workspace and Files
+## 91 R Programming Logic
+## 92 R Programming Workspace and Files
+## 93 R Programming Workspace and Files
+## 94 R Programming Missing Values
+## 95 R Programming Workspace and Files
+## 96 R Programming Workspace and Files
+## 97 R Programming Subsetting Vectors
+## 98 R Programming Workspace and Files
+## 99 R Programming Workspace and Files
+## 100 R Programming Dates and Times
+## 101 R Programming Workspace and Files
+## 102 R Programming Workspace and Files
+## 103 R Programming Logic
+## 104 R Programming Logic
+## 105 R Programming Logic
+## 106 R Programming Dates and Times
+## 107 R Programming Subsetting Vectors
+## 108 R Programming Subsetting Vectors
+## 109 R Programming Subsetting Vectors
+## 110 R Programming Subsetting Vectors
+## 111 R Programming Vectors
+## 112 R Programming Subsetting Vectors
+## 113 R Programming Workspace and Files
+## 114 R Programming Missing Values
+## 115 R Programming Missing Values
+## 116 R Programming Missing Values
+## 117 R Programming Logic
+## 118 R Programming Logic
+## 119 R Programming Vectors
+## 120 R Programming Logic
+## 121 R Programming Logic
+## 122 R Programming Basic Building Blocks
+## 123 R Programming Basic Building Blocks
+## 124 R Programming Subsetting Vectors
+## 125 R Programming Logic
+## 126 R Programming Basic Building Blocks
+## 127 R Programming Basic Building Blocks
+## 128 R Programming Basic Building Blocks
+## 129 R Programming Logic
+## 130 R Programming Missing Values
+## 131 R Programming Workspace and Files
+## 132 R Programming Workspace and Files
+## 133 R Programming Logic
+## 134 R Programming Workspace and Files
+## 135 R Programming Logic
+## 136 R Programming Logic
+## 137 R Programming Missing Values
+## 138 R Programming Missing Values
+## 139 R Programming Logic
+## 140 R Programming Logic
+## 141 R Programming Functions
+## 142 R Programming Subsetting Vectors
+## 143 R Programming Subsetting Vectors
+## 144 R Programming Dates and Times
+## 145 R Programming Functions
+## 146 R Programming Vectors
+## 147 R Programming Vectors
+## 148 R Programming Missing Values
+## 149 R Programming Functions
+## 150 R Programming Functions
+## 151 R Programming Functions
+## 152 R Programming Functions
+## 153 R Programming Logic
+## 154 R Programming Functions
+## 155 R Programming Functions
+## 156 R Programming Logic
+## 157 R Programming Functions
+## 158 R Programming Logic
+## 159 R Programming Functions
+## 160 R Programming Functions
+## 161 R Programming Logic
+## 162 R Programming Functions
+## 163 R Programming Functions
+## 164 R Programming Functions
+## 165 R Programming Logic
+## 166 R Programming Functions
+## 167 R Programming Vectors
+## 168 R Programming Functions
+## 169 R Programming Dates and Times
+## 170 R Programming Logic
+## 171 R Programming Subsetting Vectors
+## 172 R Programming Functions
+## 173 R Programming Missing Values
+## 174 R Programming Vectors
+## 175 R Programming Vectors
+## 176 R Programming Basic Building Blocks
+## 177 R Programming Functions
+## 178 R Programming Functions
+## 179 R Programming Vectors
+## 180 R Programming Dates and Times
+## 181 R Programming Vectors
+## 182 R Programming Functions
+## 183 R Programming Basic Building Blocks
+## 184 R Programming Functions
+## 185 R Programming Functions
+## 186 R Programming Logic
+## 187 R Programming Vectors
+## 188 R Programming Vectors
+## 189 R Programming Subsetting Vectors
+## 190 R Programming Basic Building Blocks
+## 191 R Programming Basic Building Blocks
+## 192 R Programming Basic Building Blocks
+## 193 R Programming Vectors
+## 194 R Programming Logic
+## 195 R Programming Logic
+## 196 R Programming Basic Building Blocks
+## 197 R Programming Missing Values
+## 198 R Programming Missing Values
+## 199 R Programming Basic Building Blocks
+## 200 Getting and Cleaning Data Tidying Data with tidyr
+## 201 Getting and Cleaning Data Tidying Data with tidyr
+## 202 R Programming Missing Values
+## 203 R Programming Missing Values
+## 204 Getting and Cleaning Data Tidying Data with tidyr
+## 205 R Programming Subsetting Vectors
+## 206 R Programming Subsetting Vectors
+## 207 R Programming Missing Values
+## 208 Getting and Cleaning Data Tidying Data with tidyr
+## 209 Getting and Cleaning Data Tidying Data with tidyr
+## 210 Getting and Cleaning Data Tidying Data with tidyr
+## 211 R Programming Missing Values
+## 212 Getting and Cleaning Data Tidying Data with tidyr
+## 213 R Programming Subsetting Vectors
+## 214 R Programming Missing Values
+## 215 R Programming Dates and Times
+## 216 R Programming Subsetting Vectors
+## 217 R Programming Dates and Times
+## 218 Getting and Cleaning Data Tidying Data with tidyr
+## 219 R Programming Dates and Times
+## 220 R Programming Missing Values
+## 221 R Programming Missing Values
+## 222 R Programming Basic Building Blocks
+## 223 R Programming Functions
+## 224 R Programming Subsetting Vectors
+## 225 R Programming Missing Values
+## 226 R Programming Looking at Data
+## 227 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 228 R Programming Subsetting Vectors
+## 229 R Programming Logic
+## 230 R Programming Basic Building Blocks
+## 231 Getting and Cleaning Data Tidying Data with tidyr
+## 232 Getting and Cleaning Data Tidying Data with tidyr
+## 233 Getting and Cleaning Data Tidying Data with tidyr
+## 234 R Programming Looking at Data
+## 235 R Programming Looking at Data
+## 236 R Programming Missing Values
+## 237 R Programming Missing Values
+## 238 R Programming Logic
+## 239 R Programming Dates and Times
+## 240 R Programming Subsetting Vectors
+## 241 R Programming Subsetting Vectors
+## 242 Getting and Cleaning Data Tidying Data with tidyr
+## 243 R Programming Missing Values
+## 244 R Programming Functions
+## 245 R Programming Logic
+## 246 Getting and Cleaning Data Tidying Data with tidyr
+## 247 R Programming Functions
+## 248 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 249 Getting and Cleaning Data Tidying Data with tidyr
+## 250 R Programming Dates and Times
+## 251 R Programming Missing Values
+## 252 R Programming Subsetting Vectors
+## 253 R Programming Basic Building Blocks
+## 254 R Programming Basic Building Blocks
+## 255 Getting and Cleaning Data Tidying Data with tidyr
+## 256 Getting and Cleaning Data Tidying Data with tidyr
+## 257 Getting and Cleaning Data Tidying Data with tidyr
+## 258 R Programming Dates and Times
+## 259 R Programming Logic
+## 260 R Programming Subsetting Vectors
+## 261 R Programming Logic
+## 262 Getting and Cleaning Data Tidying Data with tidyr
+## 263 Getting and Cleaning Data Tidying Data with tidyr
+## 264 R Programming Dates and Times
+## 265 Getting and Cleaning Data Tidying Data with tidyr
+## 266 R Programming Functions
+## 267 R Programming Logic
+## 268 R Programming Workspace and Files
+## 269 R Programming Dates and Times
+## 270 Getting and Cleaning Data Tidying Data with tidyr
+## 271 R Programming Logic
+## 272 R Programming Subsetting Vectors
+## 273 R Programming Workspace and Files
+## 274 R Programming Workspace and Files
+## 275 R Programming Workspace and Files
+## 276 R Programming Basic Building Blocks
+## 277 R Programming Subsetting Vectors
+## 278 R Programming Workspace and Files
+## 279 R Programming Workspace and Files
+## 280 R Programming Workspace and Files
+## 281 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 282 R Programming Workspace and Files
+## 283 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 284 R Programming Subsetting Vectors
+## 285 R Programming Logic
+## 286 R Programming Basic Building Blocks
+## 287 R Programming Basic Building Blocks
+## 288 R Programming Basic Building Blocks
+## 289 R Programming Dates and Times
+## 290 R Programming Dates and Times
+## 291 R Programming Logic
+## 292 R Programming Vectors
+## 293 R Programming Dates and Times
+## 294 R Programming Looking at Data
+## 295 R Programming Workspace and Files
+## 296 Getting and Cleaning Data Manipulating Data with dplyr
+## 297 Getting and Cleaning Data Manipulating Data with dplyr
+## 298 Getting and Cleaning Data Manipulating Data with dplyr
+## 299 R Programming Basic Building Blocks
+## 300 R Programming Basic Building Blocks
+## 301 R Programming Logic
+## 302 R Programming Basic Building Blocks
+## 303 R Programming Logic
+## 304 R Programming Basic Building Blocks
+## 305 R Programming Basic Building Blocks
+## 306 R Programming Workspace and Files
+## 307 R Programming Basic Building Blocks
+## 308 R Programming Subsetting Vectors
+## 309 R Programming Basic Building Blocks
+## 310 R Programming Basic Building Blocks
+## 311 R Programming Vectors
+## 312 R Programming Basic Building Blocks
+## 313 R Programming Vectors
+## 314 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 315 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 316 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 317 R Programming Logic
+## 318 R Programming Logic
+## 319 Getting and Cleaning Data Tidying Data with tidyr
+## 320 R Programming Logic
+## 321 R Programming Logic
+## 322 Getting and Cleaning Data Manipulating Data with dplyr
+## 323 R Programming Logic
+## 324 R Programming Subsetting Vectors
+## 325 R Programming Functions
+## 326 R Programming Looking at Data
+## 327 R Programming Workspace and Files
+## 328 Getting and Cleaning Data Manipulating Data with dplyr
+## 329 R Programming Workspace and Files
+## 330 R Programming Looking at Data
+## 331 R Programming Looking at Data
+## 332 R Programming Functions
+## 333 R Programming Functions
+## 334 R Programming Functions
+## 335 R Programming Functions
+## 336 R Programming Functions
+## 337 R Programming Functions
+## 338 R Programming Basic Building Blocks
+## 339 R Programming Vectors
+## 340 R Programming Vectors
+## 341 R Programming Vectors
+## 342 R Programming Vectors
+## 343 R Programming Subsetting Vectors
+## 344 R Programming Vectors
+## 345 R Programming Subsetting Vectors
+## 346 R Programming Subsetting Vectors
+## 347 R Programming Subsetting Vectors
+## 348 R Programming Subsetting Vectors
+## 349 R Programming Subsetting Vectors
+## 350 R Programming Matrices and Data Frames
+## 351 Getting and Cleaning Data Tidying Data with tidyr
+## 352 R Programming Subsetting Vectors
+## 353 R Programming Subsetting Vectors
+## 354 R Programming Subsetting Vectors
+## 355 R Programming Workspace and Files
+## 356 R Programming Workspace and Files
+## 357 R Programming Workspace and Files
+## 358 R Programming Workspace and Files
+## 359 R Programming Workspace and Files
+## 360 R Programming Vectors
+## 361 R Programming Matrices and Data Frames
+## 362 R Programming Matrices and Data Frames
+## 363 R Programming Matrices and Data Frames
+## 364 R Programming Workspace and Files
+## 365 R Programming Workspace and Files
+## 366 R Programming Workspace and Files
+## 367 Getting and Cleaning Data Tidying Data with tidyr
+## 368 Getting and Cleaning Data Tidying Data with tidyr
+## 369 Getting and Cleaning Data Tidying Data with tidyr
+## 370 R Programming Workspace and Files
+## 371 R Programming Workspace and Files
+## 372 Getting and Cleaning Data Tidying Data with tidyr
+## 373 Getting and Cleaning Data Tidying Data with tidyr
+## 374 Getting and Cleaning Data Tidying Data with tidyr
+## 375 R Programming Basic Building Blocks
+## 376 R Programming Basic Building Blocks
+## 377 R Programming Dates and Times
+## 378 R Programming Dates and Times
+## 379 R Programming Subsetting Vectors
+## 380 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 381 R Programming Subsetting Vectors
+## 382 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 383 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 384 Getting and Cleaning Data Tidying Data with tidyr
+## 385 R Programming Vectors
+## 386 R Programming Vectors
+## 387 R Programming Vectors
+## 388 R Programming Vectors
+## 389 R Programming Vectors
+## 390 R Programming Vectors
+## 391 R Programming Vectors
+## 392 R Programming Vectors
+## 393 R Programming Vectors
+## 394 R Programming Vectors
+## 395 Getting and Cleaning Data Tidying Data with tidyr
+## 396 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 397 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 398 Getting and Cleaning Data Tidying Data with tidyr
+## 399 R Programming Matrices and Data Frames
+## 400 R Programming Matrices and Data Frames
+## 401 R Programming Matrices and Data Frames
+## 402 Getting and Cleaning Data Manipulating Data with dplyr
+## 403 Getting and Cleaning Data Manipulating Data with dplyr
+## 404 Getting and Cleaning Data Manipulating Data with dplyr
+## 405 Getting and Cleaning Data Manipulating Data with dplyr
+## 406 Getting and Cleaning Data Manipulating Data with dplyr
+## 407 R Programming Dates and Times
+## 408 Getting and Cleaning Data Tidying Data with tidyr
+## 409 R Programming Workspace and Files
+## 410 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 411 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 412 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 413 R Programming Dates and Times
+## 414 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 415 Getting and Cleaning Data Tidying Data with tidyr
+## 416 Getting and Cleaning Data Tidying Data with tidyr
+## 417 Getting and Cleaning Data Tidying Data with tidyr
+## 418 Getting and Cleaning Data Tidying Data with tidyr
+## 419 R Programming Dates and Times
+## 420 R Programming Functions
+## 421 R Programming Functions
+## 422 R Programming Functions
+## 423 R Programming Functions
+## 424 R Programming Functions
+## 425 R Programming Functions
+## 426 R Programming Matrices and Data Frames
+## 427 R Programming Looking at Data
+## 428 Getting and Cleaning Data Tidying Data with tidyr
+## 429 Getting and Cleaning Data Manipulating Data with dplyr
+## 430 Getting and Cleaning Data Tidying Data with tidyr
+## 431 Getting and Cleaning Data Tidying Data with tidyr
+## 432 Getting and Cleaning Data Tidying Data with tidyr
+## 433 R Programming Looking at Data
+## 434 Exploratory_Data_Analysis Plotting_Systems
+## 435 Exploratory_Data_Analysis Plotting_Systems
+## 436 Exploratory_Data_Analysis Plotting_Systems
+## 437 Exploratory_Data_Analysis Plotting_Systems
+## 438 Exploratory_Data_Analysis Plotting_Systems
+## 439 R Programming Dates and Times
+## 440 R Programming Dates and Times
+## 441 R Programming Dates and Times
+## 442 Getting and Cleaning Data Tidying Data with tidyr
+## 443 Getting and Cleaning Data Tidying Data with tidyr
+## 444 Exploratory_Data_Analysis Plotting_Systems
+## 445 Getting and Cleaning Data Tidying Data with tidyr
+## 446 Exploratory_Data_Analysis Plotting_Systems
+## 447 Exploratory_Data_Analysis Plotting_Systems
+## 448 Getting and Cleaning Data Tidying Data with tidyr
+## 449 R Programming Matrices and Data Frames
+## 450 R Programming Matrices and Data Frames
+## 451 R Programming Matrices and Data Frames
+## 452 Exploratory_Data_Analysis Plotting_Systems
+## 453 R Programming Matrices and Data Frames
+## 454 R Programming Matrices and Data Frames
+## 455 R Programming Matrices and Data Frames
+## 456 R Programming Matrices and Data Frames
+## 457 R Programming Matrices and Data Frames
+## 458 R Programming Matrices and Data Frames
+## 459 R Programming Matrices and Data Frames
+## 460 R Programming Matrices and Data Frames
+## 461 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 462 Getting and Cleaning Data Manipulating Data with dplyr
+## 463 Getting and Cleaning Data Manipulating Data with dplyr
+## 464 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 465 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 466 Getting and Cleaning Data Tidying Data with tidyr
+## 467 R Programming Logic
+## 468 R Programming Logic
+## 469 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 470 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 471 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 472 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 473 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 474 R Programming Matrices and Data Frames
+## 475 R Programming Matrices and Data Frames
+## 476 R Programming Matrices and Data Frames
+## 477 R Programming Matrices and Data Frames
+## 478 Exploratory_Data_Analysis Plotting_Systems
+## 479 Exploratory_Data_Analysis Plotting_Systems
+## 480 Getting and Cleaning Data Tidying Data with tidyr
+## 481 Getting and Cleaning Data Tidying Data with tidyr
+## 482 R Programming Dates and Times
+## 483 Getting and Cleaning Data Tidying Data with tidyr
+## 484 Getting and Cleaning Data Tidying Data with tidyr
+## 485 R Programming Matrices and Data Frames
+## 486 R Programming Matrices and Data Frames
+## 487 R Programming Logic
+## 488 Getting and Cleaning Data Manipulating Data with dplyr
+## 489 Exploratory_Data_Analysis Plotting_Systems
+## 490 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 491 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 492 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 493 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 494 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 495 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 496 R Programming Looking at Data
+## 497 R Programming Dates and Times
+## 498 R Programming Dates and Times
+## 499 R Programming Dates and Times
+## 500 R Programming Dates and Times
+## 501 Getting and Cleaning Data Tidying Data with tidyr
+## 502 R Programming Looking at Data
+## 503 R Programming Matrices and Data Frames
+## 504 R Programming Logic
+## 505 R Programming Logic
+## 506 R Programming Logic
+## 507 Getting and Cleaning Data Tidying Data with tidyr
+## 508 Getting and Cleaning Data Tidying Data with tidyr
+## 509 R Programming Logic
+## 510 R Programming Logic
+## 511 R Programming Dates and Times
+## 512 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 513 R Programming Matrices and Data Frames
+## 514 Exploratory_Data_Analysis Plotting_Systems
+## 515 Exploratory_Data_Analysis Plotting_Systems
+## 516 Exploratory_Data_Analysis Plotting_Systems
+## 517 R Programming Dates and Times
+## 518 R Programming Dates and Times
+## 519 R Programming Dates and Times
+## 520 R Programming Matrices and Data Frames
+## 521 Exploratory_Data_Analysis Plotting_Systems
+## 522 Exploratory_Data_Analysis Plotting_Systems
+## 523 R Programming Logic
+## 524 R Programming Functions
+## 525 R Programming Functions
+## 526 Getting and Cleaning Data Tidying Data with tidyr
+## 527 Getting and Cleaning Data Tidying Data with tidyr
+## 528 Getting and Cleaning Data Tidying Data with tidyr
+## 529 Getting and Cleaning Data Tidying Data with tidyr
+## 530 Getting and Cleaning Data Manipulating Data with dplyr
+## 531 R Programming Looking at Data
+## 532 R Programming Matrices and Data Frames
+## 533 R Programming Matrices and Data Frames
+## 534 R Programming Matrices and Data Frames
+## 535 Exploratory_Data_Analysis Plotting_Systems
+## 536 R Programming Matrices and Data Frames
+## 537 R Programming Matrices and Data Frames
+## 538 R Programming Matrices and Data Frames
+## 539 Getting and Cleaning Data Tidying Data with tidyr
+## 540 R Programming Matrices and Data Frames
+## 541 R Programming Matrices and Data Frames
+## 542 R Programming Matrices and Data Frames
+## 543 R Programming Matrices and Data Frames
+## 544 R Programming Functions
+## 545 R Programming Logic
+## 546 R Programming Logic
+## 547 R Programming Matrices and Data Frames
+## 548 Getting and Cleaning Data Manipulating Data with dplyr
+## 549 Exploratory_Data_Analysis Plotting_Systems
+## 550 R Programming Matrices and Data Frames
+## 551 Exploratory_Data_Analysis Plotting_Systems
+## 552 R Programming Matrices and Data Frames
+## 553 R Programming Matrices and Data Frames
+## 554 R Programming Looking at Data
+## 555 R Programming Logic
+## 556 R Programming Logic
+## 557 R Programming Functions
+## 558 R Programming Logic
+## 559 R Programming Matrices and Data Frames
+## 560 Getting and Cleaning Data Manipulating Data with dplyr
+## 561 Getting and Cleaning Data Manipulating Data with dplyr
+## 562 Exploratory_Data_Analysis Plotting_Systems
+## 563 R Programming Matrices and Data Frames
+## 564 R Programming Logic
+## 565 Getting and Cleaning Data Manipulating Data with dplyr
+## 566 Getting and Cleaning Data Manipulating Data with dplyr
+## 567 Getting and Cleaning Data Manipulating Data with dplyr
+## 568 Getting and Cleaning Data Manipulating Data with dplyr
+## 569 Getting and Cleaning Data Manipulating Data with dplyr
+## 570 R Programming Matrices and Data Frames
+## 571 Getting and Cleaning Data Manipulating Data with dplyr
+## 572 R Programming Functions
+## 573 Getting and Cleaning Data Manipulating Data with dplyr
+## 574 Getting and Cleaning Data Manipulating Data with dplyr
+## 575 Getting and Cleaning Data Manipulating Data with dplyr
+## 576 Getting and Cleaning Data Manipulating Data with dplyr
+## 577 R Programming Logic
+## 578 R Programming Logic
+## 579 Getting and Cleaning Data Manipulating Data with dplyr
+## 580 Getting and Cleaning Data Manipulating Data with dplyr
+## 581 Getting and Cleaning Data Manipulating Data with dplyr
+## 582 Getting and Cleaning Data Manipulating Data with dplyr
+## 583 R Programming Functions
+## 584 R Programming Functions
+## 585 R Programming Logic
+## 586 Getting and Cleaning Data Tidying Data with tidyr
+## 587 Getting and Cleaning Data Manipulating Data with dplyr
+## 588 Getting and Cleaning Data Tidying Data with tidyr
+## 589 R Programming Functions
+## 590 R Programming Functions
+## 591 R Programming Looking at Data
+## 592 Getting and Cleaning Data Tidying Data with tidyr
+## 593 R Programming Functions
+## 594 Getting and Cleaning Data Manipulating Data with dplyr
+## 595 R Programming Functions
+## 596 Getting and Cleaning Data Manipulating Data with dplyr
+## 597 R Programming Matrices and Data Frames
+## 598 R Programming Logic
+## 599 Getting and Cleaning Data Manipulating Data with dplyr
+## 600 R Programming Looking at Data
+## 601 Getting and Cleaning Data Manipulating Data with dplyr
+## 602 Getting and Cleaning Data Tidying Data with tidyr
+## 603 Getting and Cleaning Data Tidying Data with tidyr
+## 604 Getting and Cleaning Data Tidying Data with tidyr
+## 605 Getting and Cleaning Data Manipulating Data with dplyr
+## 606 Getting and Cleaning Data Manipulating Data with dplyr
+## 607 Getting and Cleaning Data Manipulating Data with dplyr
+## 608 R Programming Matrices and Data Frames
+## 609 R Programming Basic Building Blocks
+## 610 R Programming Basic Building Blocks
+## 611 R Programming Dates and Times
+## 612 R Programming Basic Building Blocks
+## 613 R Programming Basic Building Blocks
+## 614 R Programming Basic Building Blocks
+## 615 R Programming Functions
+## 616 R Programming Basic Building Blocks
+## 617 R Programming Basic Building Blocks
+## 618 R Programming Dates and Times
+## 619 R Programming Vectors
+## 620 R Programming Vectors
+## 621 R Programming Vectors
+## 622 R Programming Vectors
+## 623 R Programming Vectors
+## 624 R Programming Basic Building Blocks
+## 625 R Programming Basic Building Blocks
+## 626 R Programming Basic Building Blocks
+## 627 R Programming Functions
+## 628 R Programming Workspace and Files
+## 629 R Programming Dates and Times
+## 630 R Programming Functions
+## 631 R Programming Subsetting Vectors
+## 632 R Programming Vectors
+## 633 R Programming Basic Building Blocks
+## 634 R Programming Basic Building Blocks
+## 635 R Programming Basic Building Blocks
+## 636 R Programming Basic Building Blocks
+## 637 R Programming Basic Building Blocks
+## 638 R Programming Basic Building Blocks
+## 639 R Programming Functions
+## 640 R Programming Functions
+## 641 R Programming Workspace and Files
+## 642 R Programming Dates and Times
+## 643 R Programming Dates and Times
+## 644 R Programming Dates and Times
+## 645 R Programming Dates and Times
+## 646 R Programming Vectors
+## 647 R Programming Vectors
+## 648 R Programming Vectors
+## 649 R Programming Vectors
+## 650 R Programming Dates and Times
+## 651 R Programming Dates and Times
+## 652 R Programming Matrices and Data Frames
+## 653 R Programming Workspace and Files
+## 654 R Programming Dates and Times
+## 655 R Programming Logic
+## 656 R Programming Logic
+## 657 R Programming Functions
+## 658 R Programming Dates and Times
+## 659 R Programming Dates and Times
+## 660 R Programming Dates and Times
+## 661 R Programming Dates and Times
+## 662 R Programming Dates and Times
+## 663 R Programming Logic
+## 664 R Programming Vectors
+## 665 R Programming Dates and Times
+## 666 R Programming Dates and Times
+## 667 R Programming Missing Values
+## 668 R Programming Logic
+## 669 R Programming Logic
+## 670 R Programming Logic
+## 671 R Programming Vectors
+## 672 R Programming Matrices and Data Frames
+## 673 R Programming Matrices and Data Frames
+## 674 R Programming Workspace and Files
+## 675 R Programming Vectors
+## 676 R Programming Vectors
+## 677 R Programming Vectors
+## 678 R Programming Missing Values
+## 679 R Programming Missing Values
+## 680 R Programming Functions
+## 681 R Programming Missing Values
+## 682 R Programming Missing Values
+## 683 R Programming Missing Values
+## 684 R Programming Vectors
+## 685 R Programming Vectors
+## 686 R Programming Vectors
+## 687 R Programming Basic Building Blocks
+## 688 R Programming Basic Building Blocks
+## 689 R Programming Basic Building Blocks
+## 690 R Programming Basic Building Blocks
+## 691 R Programming Basic Building Blocks
+## 692 R Programming Vectors
+## 693 R Programming Basic Building Blocks
+## 694 R Programming Basic Building Blocks
+## 695 R Programming Basic Building Blocks
+## 696 R Programming Logic
+## 697 R Programming Subsetting Vectors
+## 698 R Programming Vectors
+## 699 R Programming Matrices and Data Frames
+## 700 R Programming Workspace and Files
+## 701 R Programming Basic Building Blocks
+## 702 R Programming Logic
+## 703 R Programming Logic
+## 704 R Programming Vectors
+## 705 R Programming Vectors
+## 706 R Programming Subsetting Vectors
+## 707 R Programming Missing Values
+## 708 R Programming Subsetting Vectors
+## 709 R Programming Subsetting Vectors
+## 710 R Programming Subsetting Vectors
+## 711 R Programming Logic
+## 712 R Programming Workspace and Files
+## 713 R Programming Workspace and Files
+## 714 R Programming Subsetting Vectors
+## 715 R Programming Vectors
+## 716 R Programming Vectors
+## 717 R Programming Missing Values
+## 718 R Programming Missing Values
+## 719 R Programming Missing Values
+## 720 R Programming Missing Values
+## 721 R Programming Missing Values
+## 722 R Programming Missing Values
+## 723 R Programming Workspace and Files
+## 724 R Programming Workspace and Files
+## 725 R Programming Workspace and Files
+## 726 R Programming Workspace and Files
+## 727 R Programming Vectors
+## 728 R Programming Vectors
+## 729 R Programming Matrices and Data Frames
+## 730 R Programming Vectors
+## 731 R Programming Workspace and Files
+## 732 R Programming Subsetting Vectors
+## 733 R Programming Vectors
+## 734 R Programming Subsetting Vectors
+## 735 R Programming Vectors
+## 736 R Programming Subsetting Vectors
+## 737 R Programming Workspace and Files
+## 738 R Programming Vectors
+## 739 R Programming Vectors
+## 740 R Programming Vectors
+## 741 R Programming Missing Values
+## 742 R Programming Matrices and Data Frames
+## 743 R Programming Logic
+## 744 R Programming Matrices and Data Frames
+## 745 R Programming Matrices and Data Frames
+## 746 R Programming Matrices and Data Frames
+## 747 R Programming Basic Building Blocks
+## 748 R Programming Matrices and Data Frames
+## 749 R Programming Basic Building Blocks
+## 750 R Programming Basic Building Blocks
+## 751 R Programming Subsetting Vectors
+## 752 R Programming Matrices and Data Frames
+## 753 R Programming Logic
+## 754 R Programming Matrices and Data Frames
+## 755 R Programming Logic
+## 756 R Programming Logic
+## 757 R Programming Basic Building Blocks
+## 758 R Programming Workspace and Files
+## 759 R Programming Matrices and Data Frames
+## 760 R Programming Logic
+## 761 R Programming Dates and Times
+## 762 R Programming Basic Building Blocks
+## 763 R Programming Dates and Times
+## 764 R Programming Dates and Times
+## 765 R Programming Subsetting Vectors
+## 766 R Programming Subsetting Vectors
+## 767 R Programming Subsetting Vectors
+## 768 R Programming Basic Building Blocks
+## 769 R Programming Subsetting Vectors
+## 770 R Programming Basic Building Blocks
+## 771 R Programming Dates and Times
+## 772 R Programming Workspace and Files
+## 773 R Programming Subsetting Vectors
+## 774 R Programming Workspace and Files
+## 775 R Programming Functions
+## 776 R Programming Dates and Times
+## 777 R Programming Subsetting Vectors
+## 778 R Programming Basic Building Blocks
+## 779 R Programming Missing Values
+## 780 R Programming Dates and Times
+## 781 R Programming Vectors
+## 782 R Programming Dates and Times
+## 783 R Programming Subsetting Vectors
+## 784 R Programming Subsetting Vectors
+## 785 R Programming Logic
+## 786 R Programming Dates and Times
+## 787 R Programming Subsetting Vectors
+## 788 R Programming Functions
+## 789 R Programming Dates and Times
+## 790 R Programming Logic
+## 791 R Programming Logic
+## 792 R Programming Workspace and Files
+## 793 R Programming Vectors
+## 794 R Programming Workspace and Files
+## 795 R Programming Subsetting Vectors
+## 796 R Programming Dates and Times
+## 797 R Programming Logic
+## 798 R Programming Workspace and Files
+## 799 R Programming Workspace and Files
+## 800 R Programming Basic Building Blocks
+## 801 R Programming Dates and Times
+## 802 R Programming Subsetting Vectors
+## 803 R Programming Logic
+## 804 R Programming Functions
+## 805 R Programming Subsetting Vectors
+## 806 R Programming Subsetting Vectors
+## 807 R Programming Workspace and Files
+## 808 R Programming Dates and Times
+## 809 R Programming Subsetting Vectors
+## 810 R Programming Subsetting Vectors
+## 811 R Programming Subsetting Vectors
+## 812 R Programming Dates and Times
+## 813 R Programming Functions
+## 814 R Programming Missing Values
+## 815 R Programming Missing Values
+## 816 R Programming Missing Values
+## 817 R Programming Vectors
+## 818 R Programming Dates and Times
+## 819 R Programming Dates and Times
+## 820 R Programming Dates and Times
+## 821 R Programming Workspace and Files
+## 822 R Programming Subsetting Vectors
+## 823 R Programming Basic Building Blocks
+## 824 R Programming Logic
+## 825 R Programming Logic
+## 826 R Programming Logic
+## 827 R Programming Logic
+## 828 R Programming Logic
+## 829 R Programming Logic
+## 830 R Programming Logic
+## 831 R Programming Dates and Times
+## 832 R Programming Dates and Times
+## 833 R Programming Basic Building Blocks
+## 834 R Programming Subsetting Vectors
+## 835 R Programming Workspace and Files
+## 836 R Programming Workspace and Files
+## 837 R Programming Subsetting Vectors
+## 838 R Programming Workspace and Files
+## 839 R Programming Basic Building Blocks
+## 840 R Programming Subsetting Vectors
+## 841 R Programming Vectors
+## 842 R Programming Vectors
+## 843 R Programming Vectors
+## 844 R Programming Basic Building Blocks
+## 845 R Programming Logic
+## 846 R Programming Functions
+## 847 R Programming Missing Values
+## 848 R Programming Basic Building Blocks
+## 849 R Programming Logic
+## 850 R Programming Functions
+## 851 R Programming Basic Building Blocks
+## 852 R Programming Basic Building Blocks
+## 853 R Programming Missing Values
+## 854 R Programming Basic Building Blocks
+## 855 R Programming Missing Values
+## 856 R Programming Missing Values
+## 857 R Programming Basic Building Blocks
+## 858 R Programming Basic Building Blocks
+## 859 R Programming Workspace and Files
+## 860 R Programming Basic Building Blocks
+## 861 R Programming Functions
+## 862 R Programming Functions
+## 863 R Programming Subsetting Vectors
+## 864 R Programming Logic
+## 865 R Programming Logic
+## 866 R Programming Subsetting Vectors
+## 867 R Programming Dates and Times
+## 868 R Programming Dates and Times
+## 869 R Programming Workspace and Files
+## 870 R Programming Dates and Times
+## 871 R Programming Workspace and Files
+## 872 R Programming Basic Building Blocks
+## 873 R Programming Basic Building Blocks
+## 874 R Programming Basic Building Blocks
+## 875 R Programming Basic Building Blocks
+## 876 R Programming Functions
+## 877 R Programming Missing Values
+## 878 R Programming Functions
+## 879 R Programming Subsetting Vectors
+## 880 R Programming Missing Values
+## 881 R Programming Missing Values
+## 882 R Programming Logic
+## 883 R Programming Missing Values
+## 884 R Programming Basic Building Blocks
+## 885 R Programming Basic Building Blocks
+## 886 R Programming Functions
+## 887 R Programming Dates and Times
+## 888 R Programming Functions
+## 889 R Programming Subsetting Vectors
+## 890 R Programming Subsetting Vectors
+## 891 R Programming Subsetting Vectors
+## 892 R Programming Functions
+## 893 R Programming Functions
+## 894 R Programming Workspace and Files
+## 895 R Programming Workspace and Files
+## 896 R Programming Logic
+## 897 R Programming Workspace and Files
+## 898 R Programming Functions
+## 899 R Programming Functions
+## 900 R Programming Workspace and Files
+## 901 R Programming Logic
+## 902 R Programming Dates and Times
+## 903 R Programming Workspace and Files
+## 904 R Programming Vectors
+## 905 R Programming Vectors
+## 906 R Programming Logic
+## 907 R Programming Functions
+## 908 R Programming Dates and Times
+## 909 R Programming Functions
+## 910 R Programming Workspace and Files
+## 911 R Programming Workspace and Files
+## 912 R Programming Logic
+## 913 R Programming Logic
+## 914 R Programming Logic
+## 915 R Programming Vectors
+## 916 R Programming Functions
+## 917 R Programming Vectors
+## 918 R Programming Logic
+## 919 R Programming Workspace and Files
+## 920 R Programming Workspace and Files
+## 921 R Programming Functions
+## 922 R Programming Vectors
+## 923 R Programming Functions
+## 924 R Programming Functions
+## 925 R Programming Missing Values
+## 926 R Programming Logic
+## 927 R Programming Logic
+## 928 R Programming Logic
+## 929 R Programming Vectors
+## 930 R Programming Missing Values
+## 931 R Programming Vectors
+## 932 R Programming Vectors
+## 933 R Programming Vectors
+## 934 R Programming Logic
+## 935 R Programming Dates and Times
+## 936 R Programming Logic
+## 937 R Programming Logic
+## 938 R Programming Functions
+## 939 R Programming Vectors
+## 940 R Programming Functions
+## 941 R Programming Logic
+## 942 R Programming Functions
+## 943 R Programming Vectors
+## 944 R Programming Dates and Times
+## 945 R Programming Vectors
+## 946 R Programming Logic
+## 947 R Programming Logic
+## 948 R Programming Functions
+## 949 R Programming Functions
+## 950 R Programming Dates and Times
+## 951 R Programming Logic
+## 952 R Programming Dates and Times
+## 953 R Programming Vectors
+## 954 R Programming Logic
+## 955 R Programming Functions
+## 956 R Programming Basic Building Blocks
+## 957 R Programming Basic Building Blocks
+## 958 R Programming Basic Building Blocks
+## 959 R Programming Basic Building Blocks
+## 960 R Programming Basic Building Blocks
+## 961 R Programming Basic Building Blocks
+## 962 R Programming Basic Building Blocks
+## 963 R Programming Basic Building Blocks
+## 964 R Programming Basic Building Blocks
+## 965 R Programming Basic Building Blocks
+## 966 R Programming Basic Building Blocks
+## 967 R Programming Basic Building Blocks
+## 968 R Programming Basic Building Blocks
+## 969 R Programming Basic Building Blocks
+## 970 R Programming Basic Building Blocks
+## 971 R Programming Basic Building Blocks
+## 972 R Programming Basic Building Blocks
+## 973 R Programming Basic Building Blocks
+## 974 R Programming Basic Building Blocks
+## 975 R Programming Basic Building Blocks
+## 976 R Programming Basic Building Blocks
+## 977 R Programming Basic Building Blocks
+## 978 R Programming Workspace and Files
+## 979 R Programming Workspace and Files
+## 980 R Programming Workspace and Files
+## 981 R Programming Workspace and Files
+## 982 R Programming Workspace and Files
+## 983 R Programming Workspace and Files
+## 984 R Programming Workspace and Files
+## 985 R Programming Workspace and Files
+## 986 R Programming Workspace and Files
+## 987 R Programming Workspace and Files
+## 988 R Programming Workspace and Files
+## 989 R Programming Workspace and Files
+## 990 R Programming Workspace and Files
+## 991 R Programming Workspace and Files
+## 992 R Programming Workspace and Files
+## 993 R Programming Workspace and Files
+## 994 R Programming Workspace and Files
+## 995 R Programming Workspace and Files
+## 996 R Programming Workspace and Files
+## 997 R Programming Workspace and Files
+## 998 R Programming Workspace and Files
+## 999 R Programming Workspace and Files
+## 1000 R Programming Workspace and Files
+## 1001 R Programming Workspace and Files
+## 1002 R Programming Dates and Times
+## 1003 R Programming Dates and Times
+## 1004 R Programming Dates and Times
+## 1005 R Programming Dates and Times
+## 1006 R Programming Workspace and Files
+## 1007 R Programming Workspace and Files
+## 1008 R Programming Workspace and Files
+## 1009 R Programming Workspace and Files
+## 1010 R Programming Dates and Times
+## 1011 R Programming Workspace and Files
+## 1012 R Programming Workspace and Files
+## 1013 R Programming Missing Values
+## 1014 R Programming Missing Values
+## 1015 R Programming Missing Values
+## 1016 R Programming Missing Values
+## 1017 R Programming Missing Values
+## 1018 R Programming Missing Values
+## 1019 R Programming Missing Values
+## 1020 R Programming Missing Values
+## 1021 R Programming Missing Values
+## 1022 R Programming Missing Values
+## 1023 R Programming Missing Values
+## 1024 R Programming Missing Values
+## 1025 R Programming Missing Values
+## 1026 R Programming Missing Values
+## 1027 R Programming Basic Building Blocks
+## 1028 R Programming Subsetting Vectors
+## 1029 R Programming Logic
+## 1030 R Programming Logic
+## 1031 R Programming Logic
+## 1032 R Programming Logic
+## 1033 R Programming Logic
+## 1034 R Programming Logic
+## 1035 R Programming Logic
+## 1036 R Programming Logic
+## 1037 R Programming Logic
+## 1038 R Programming Logic
+## 1039 R Programming Logic
+## 1040 R Programming Logic
+## 1041 R Programming Logic
+## 1042 R Programming Logic
+## 1043 R Programming Logic
+## 1044 R Programming Workspace and Files
+## 1045 R Programming Workspace and Files
+## 1046 R Programming Workspace and Files
+## 1047 R Programming Workspace and Files
+## 1048 R Programming Logic
+## 1049 R Programming Dates and Times
+## 1050 R Programming Dates and Times
+## 1051 R Programming Dates and Times
+## 1052 R Programming Dates and Times
+## 1053 R Programming Dates and Times
+## 1054 R Programming Dates and Times
+## 1055 R Programming Dates and Times
+## 1056 R Programming Dates and Times
+## 1057 R Programming Dates and Times
+## 1058 R Programming Dates and Times
+## 1059 R Programming Dates and Times
+## 1060 R Programming Basic Building Blocks
+## 1061 R Programming Basic Building Blocks
+## 1062 R Programming Basic Building Blocks
+## 1063 R Programming Basic Building Blocks
+## 1064 R Programming Basic Building Blocks
+## 1065 R Programming Vectors
+## 1066 R Programming Vectors
+## 1067 R Programming Vectors
+## 1068 R Programming Subsetting Vectors
+## 1069 R Programming Subsetting Vectors
+## 1070 R Programming Subsetting Vectors
+## 1071 R Programming Subsetting Vectors
+## 1072 R Programming Vectors
+## 1073 R Programming Vectors
+## 1074 R Programming Vectors
+## 1075 R Programming Vectors
+## 1076 R Programming Basic Building Blocks
+## 1077 R Programming Basic Building Blocks
+## 1078 R Programming Basic Building Blocks
+## 1079 R Programming Vectors
+## 1080 R Programming Vectors
+## 1081 R Programming Logic
+## 1082 R Programming Logic
+## 1083 R Programming Logic
+## 1084 R Programming Vectors
+## 1085 R Programming Vectors
+## 1086 R Programming Vectors
+## 1087 R Programming Basic Building Blocks
+## 1088 R Programming Subsetting Vectors
+## 1089 R Programming Subsetting Vectors
+## 1090 R Programming Subsetting Vectors
+## 1091 R Programming Basic Building Blocks
+## 1092 R Programming Basic Building Blocks
+## 1093 R Programming Basic Building Blocks
+## 1094 R Programming Basic Building Blocks
+## 1095 R Programming Basic Building Blocks
+## 1096 R Programming Basic Building Blocks
+## 1097 R Programming Subsetting Vectors
+## 1098 R Programming Subsetting Vectors
+## 1099 R Programming Subsetting Vectors
+## 1100 R Programming Subsetting Vectors
+## 1101 R Programming Subsetting Vectors
+## 1102 R Programming Subsetting Vectors
+## 1103 R Programming Subsetting Vectors
+## 1104 R Programming Vectors
+## 1105 R Programming Vectors
+## 1106 R Programming Vectors
+## 1107 R Programming Workspace and Files
+## 1108 R Programming Looking at Data
+## 1109 R Programming Workspace and Files
+## 1110 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1111 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1112 R Programming Looking at Data
+## 1113 R Programming Workspace and Files
+## 1114 R Programming Looking at Data
+## 1115 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1116 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1117 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1118 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1119 R Programming Looking at Data
+## 1120 R Programming Looking at Data
+## 1121 R Programming Workspace and Files
+## 1122 R Programming Workspace and Files
+## 1123 R Programming Vectors
+## 1124 R Programming Workspace and Files
+## 1125 R Programming Vectors
+## 1126 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1127 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1128 R Programming Looking at Data
+## 1129 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1130 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1131 R Programming Dates and Times
+## 1132 R Programming Workspace and Files
+## 1133 R Programming Workspace and Files
+## 1134 R Programming Logic
+## 1135 R Programming Workspace and Files
+## 1136 R Programming Workspace and Files
+## 1137 R Programming Workspace and Files
+## 1138 R Programming Workspace and Files
+## 1139 R Programming Workspace and Files
+## 1140 R Programming Functions
+## 1141 R Programming Functions
+## 1142 R Programming Functions
+## 1143 R Programming Functions
+## 1144 R Programming Workspace and Files
+## 1145 R Programming Logic
+## 1146 R Programming Functions
+## 1147 R Programming Functions
+## 1148 R Programming Functions
+## 1149 R Programming Functions
+## 1150 R Programming Workspace and Files
+## 1151 R Programming Workspace and Files
+## 1152 R Programming Workspace and Files
+## 1153 R Programming Functions
+## 1154 R Programming Functions
+## 1155 R Programming Functions
+## 1156 R Programming Functions
+## 1157 R Programming Functions
+## 1158 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1159 R Programming Looking at Data
+## 1160 R Programming Looking at Data
+## 1161 R Programming Looking at Data
+## 1162 R Programming Looking at Data
+## 1163 R Programming Workspace and Files
+## 1164 R Programming Workspace and Files
+## 1165 R Programming Dates and Times
+## 1166 Getting and Cleaning Data Tidying Data with tidyr
+## 1167 Getting and Cleaning Data Tidying Data with tidyr
+## 1168 Getting and Cleaning Data Tidying Data with tidyr
+## 1169 Getting and Cleaning Data Tidying Data with tidyr
+## 1170 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1171 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1172 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1173 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1174 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1175 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1176 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1177 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1178 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1179 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1180 Exploratory_Data_Analysis Plotting_Systems
+## 1181 Exploratory_Data_Analysis Plotting_Systems
+## 1182 Exploratory_Data_Analysis Plotting_Systems
+## 1183 Exploratory_Data_Analysis Plotting_Systems
+## 1184 Exploratory_Data_Analysis Plotting_Systems
+## 1185 Exploratory_Data_Analysis Plotting_Systems
+## 1186 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1187 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1188 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1189 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1190 R Programming Workspace and Files
+## 1191 R Programming Workspace and Files
+## 1192 R Programming Workspace and Files
+## 1193 R Programming Workspace and Files
+## 1194 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1195 Getting and Cleaning Data Tidying Data with tidyr
+## 1196 Getting and Cleaning Data Tidying Data with tidyr
+## 1197 Getting and Cleaning Data Manipulating Data with dplyr
+## 1198 Getting and Cleaning Data Manipulating Data with dplyr
+## 1199 Getting and Cleaning Data Manipulating Data with dplyr
+## 1200 Getting and Cleaning Data Manipulating Data with dplyr
+## 1201 Getting and Cleaning Data Manipulating Data with dplyr
+## 1202 R Programming Logic
+## 1203 R Programming Logic
+## 1204 R Programming Logic
+## 1205 R Programming Logic
+## 1206 R Programming Logic
+## 1207 R Programming Dates and Times
+## 1208 R Programming Dates and Times
+## 1209 R Programming Dates and Times
+## 1210 R Programming Dates and Times
+## 1211 R Programming Dates and Times
+## 1212 R Programming Dates and Times
+## 1213 R Programming Vectors
+## 1214 R Programming Vectors
+## 1215 R Programming Vectors
+## 1216 R Programming Vectors
+## 1217 R Programming Vectors
+## 1218 R Programming Vectors
+## 1219 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1220 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1221 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1222 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1223 Getting and Cleaning Data Manipulating Data with dplyr
+## 1224 Getting and Cleaning Data Manipulating Data with dplyr
+## 1225 Getting and Cleaning Data Manipulating Data with dplyr
+## 1226 Getting and Cleaning Data Manipulating Data with dplyr
+## 1227 Getting and Cleaning Data Manipulating Data with dplyr
+## 1228 Getting and Cleaning Data Manipulating Data with dplyr
+## 1229 R Programming Dates and Times
+## 1230 R Programming Dates and Times
+## 1231 R Programming Functions
+## 1232 R Programming Functions
+## 1233 R Programming Functions
+## 1234 R Programming Functions
+## 1235 R Programming Functions
+## 1236 R Programming Functions
+## 1237 R Programming Functions
+## 1238 R Programming Functions
+## 1239 Getting and Cleaning Data Tidying Data with tidyr
+## 1240 Getting and Cleaning Data Tidying Data with tidyr
+## 1241 Getting and Cleaning Data Tidying Data with tidyr
+## 1242 Getting and Cleaning Data Tidying Data with tidyr
+## 1243 Getting and Cleaning Data Tidying Data with tidyr
+## 1244 Getting and Cleaning Data Tidying Data with tidyr
+## 1245 R Programming Functions
+## 1246 R Programming Functions
+## 1247 R Programming Functions
+## 1248 Getting and Cleaning Data Tidying Data with tidyr
+## 1249 Getting and Cleaning Data Tidying Data with tidyr
+## 1250 Getting and Cleaning Data Tidying Data with tidyr
+## 1251 R Programming Functions
+## 1252 R Programming Functions
+## 1253 R Programming Functions
+## 1254 R Programming Functions
+## 1255 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 1256 R Programming Subsetting Vectors
+## 1257 R Programming Subsetting Vectors
+## 1258 R Programming Subsetting Vectors
+## 1259 R Programming Subsetting Vectors
+## 1260 R Programming Subsetting Vectors
+## 1261 R Programming Subsetting Vectors
+## 1262 R Programming Subsetting Vectors
+## 1263 R Programming Subsetting Vectors
+## 1264 R Programming Subsetting Vectors
+## 1265 R Programming Subsetting Vectors
+## 1266 R Programming Subsetting Vectors
+## 1267 Exploratory_Data_Analysis Plotting_Systems
+## 1268 Exploratory_Data_Analysis Plotting_Systems
+## 1269 Exploratory_Data_Analysis Plotting_Systems
+## 1270 Exploratory_Data_Analysis Plotting_Systems
+## 1271 Exploratory_Data_Analysis Plotting_Systems
+## 1272 Exploratory_Data_Analysis Plotting_Systems
+## 1273 R Programming Logic
+## 1274 R Programming Logic
+## 1275 R Programming Logic
+## 1276 R Programming Logic
+## 1277 R Programming Logic
+## 1278 R Programming Logic
+## 1279 R Programming Logic
+## 1280 Exploratory_Data_Analysis Plotting_Systems
+## 1281 Exploratory_Data_Analysis Plotting_Systems
+## 1282 Exploratory_Data_Analysis Plotting_Systems
+## 1283 Exploratory_Data_Analysis Plotting_Systems
+## 1284 Exploratory_Data_Analysis Plotting_Systems
+## 1285 Exploratory_Data_Analysis Plotting_Systems
+## 1286 Exploratory_Data_Analysis Plotting_Systems
+## 1287 Exploratory_Data_Analysis Plotting_Systems
+## 1288 Exploratory_Data_Analysis Plotting_Systems
+## 1289 R Programming Logic
+## 1290 R Programming Logic
+## 1291 R Programming Logic
+## 1292 R Programming Logic
+## 1293 R Programming Logic
+## 1294 R Programming Missing Values
+## 1295 R Programming Missing Values
+## 1296 Getting and Cleaning Data Manipulating Data with dplyr
+## 1297 Getting and Cleaning Data Manipulating Data with dplyr
+## 1298 Getting and Cleaning Data Manipulating Data with dplyr
+## 1299 Getting and Cleaning Data Manipulating Data with dplyr
+## 1300 Getting and Cleaning Data Manipulating Data with dplyr
+## 1301 Getting and Cleaning Data Manipulating Data with dplyr
+## 1302 R Programming Dates and Times
+## 1303 R Programming Dates and Times
+## 1304 Getting and Cleaning Data Manipulating Data with dplyr
+## 1305 Getting and Cleaning Data Manipulating Data with dplyr
+## 1306 Getting and Cleaning Data Manipulating Data with dplyr
+## 1307 Getting and Cleaning Data Manipulating Data with dplyr
+## 1308 R Programming Dates and Times
+## 1309 R Programming Dates and Times
+## 1310 R Programming Dates and Times
+## 1311 R Programming Dates and Times
+## 1312 R Programming Dates and Times
+## 1313 R Programming Dates and Times
+## 1314 R Programming Dates and Times
+## 1315 R Programming Vectors
+## 1316 R Programming Vectors
+## 1317 R Programming Vectors
+## 1318 R Programming Vectors
+## 1319 R Programming Vectors
+## 1320 R Programming Vectors
+## 1321 R Programming Vectors
+## 1322 R Programming Vectors
+## 1323 R Programming Vectors
+## 1324 R Programming Vectors
+## 1325 R Programming Vectors
+## 1326 Getting and Cleaning Data Tidying Data with tidyr
+## 1327 Getting and Cleaning Data Tidying Data with tidyr
+## 1328 R Programming Missing Values
+## 1329 R Programming Missing Values
+## 1330 R Programming Missing Values
+## 1331 R Programming Missing Values
+## 1332 R Programming Missing Values
+## 1333 R Programming Missing Values
+## 1334 R Programming Missing Values
+## 1335 R Programming Missing Values
+## 1336 R Programming Missing Values
+## 1337 R Programming Missing Values
+## 1338 R Programming Missing Values
+## 1339 R Programming Missing Values
+## 1340 R Programming Subsetting Vectors
+## 1341 R Programming Subsetting Vectors
+## 1342 R Programming Subsetting Vectors
+## 1343 Getting and Cleaning Data Tidying Data with tidyr
+## 1344 Getting and Cleaning Data Tidying Data with tidyr
+## 1345 Getting and Cleaning Data Tidying Data with tidyr
+## 1346 Getting and Cleaning Data Tidying Data with tidyr
+## 1347 Getting and Cleaning Data Tidying Data with tidyr
+## 1348 Getting and Cleaning Data Tidying Data with tidyr
+## 1349 R Programming Subsetting Vectors
+## 1350 R Programming Logic
+## 1351 R Programming Logic
+## 1352 R Programming Dates and Times
+## 1353 Getting and Cleaning Data Tidying Data with tidyr
+## 1354 Getting and Cleaning Data Tidying Data with tidyr
+## 1355 Getting and Cleaning Data Tidying Data with tidyr
+## 1356 Getting and Cleaning Data Tidying Data with tidyr
+## 1357 Getting and Cleaning Data Tidying Data with tidyr
+## 1358 R Programming Subsetting Vectors
+## 1359 R Programming Subsetting Vectors
+## 1360 R Programming Subsetting Vectors
+## 1361 R Programming Logic
+## 1362 R Programming Logic
+## 1363 R Programming Logic
+## 1364 R Programming Logic
+## 1365 Getting and Cleaning Data Manipulating Data with dplyr
+## 1366 R Programming Logic
+## 1367 R Programming Dates and Times
+## 1368 R Programming Logic
+## 1369 Getting and Cleaning Data Manipulating Data with dplyr
+## 1370 Getting and Cleaning Data Manipulating Data with dplyr
+## 1371 R Programming Logic
+## 1372 R Programming Logic
+## 1373 R Programming Logic
+## 1374 R Programming Logic
+## 1375 R Programming Logic
+## 1376 R Programming Logic
+## 1377 R Programming Dates and Times
+## 1378 R Programming Subsetting Vectors
+## 1379 R Programming Dates and Times
+## 1380 R Programming Logic
+## 1381 R Programming Logic
+## 1382 R Programming Dates and Times
+## 1383 R Programming Dates and Times
+## 1384 Getting and Cleaning Data Manipulating Data with dplyr
+## 1385 Getting and Cleaning Data Manipulating Data with dplyr
+## 1386 Getting and Cleaning Data Manipulating Data with dplyr
+## 1387 R Programming Dates and Times
+## 1388 Getting and Cleaning Data Tidying Data with tidyr
+## 1389 R Programming Subsetting Vectors
+## 1390 R Programming Subsetting Vectors
+## 1391 R Programming Looking at Data
+## 1392 R Programming Looking at Data
+## 1393 R Programming Looking at Data
+## 1394 R Programming Looking at Data
+## 1395 Getting and Cleaning Data Manipulating Data with dplyr
+## 1396 R Programming Subsetting Vectors
+## 1397 R Programming Looking at Data
+## 1398 Getting and Cleaning Data Manipulating Data with dplyr
+## 1399 Getting and Cleaning Data Manipulating Data with dplyr
+## 1400 Getting and Cleaning Data Manipulating Data with dplyr
+## 1401 R Programming Dates and Times
+## 1402 R Programming Subsetting Vectors
+## 1403 R Programming Dates and Times
+## 1404 Getting and Cleaning Data Manipulating Data with dplyr
+## 1405 Getting and Cleaning Data Manipulating Data with dplyr
+## 1406 Getting and Cleaning Data Tidying Data with tidyr
+## 1407 Getting and Cleaning Data Manipulating Data with dplyr
+## 1408 R Programming Subsetting Vectors
+## 1409 Getting and Cleaning Data Manipulating Data with dplyr
+## 1410 Getting and Cleaning Data Manipulating Data with dplyr
+## 1411 Getting and Cleaning Data Manipulating Data with dplyr
+## 1412 Getting and Cleaning Data Tidying Data with tidyr
+## 1413 Getting and Cleaning Data Manipulating Data with dplyr
+## 1414 Getting and Cleaning Data Manipulating Data with dplyr
+## 1415 R Programming Subsetting Vectors
+## 1416 Getting and Cleaning Data Tidying Data with tidyr
+## 1417 R Programming Subsetting Vectors
+## 1418 Getting and Cleaning Data Manipulating Data with dplyr
+## 1419 R Programming Basic Building Blocks
+## 1420 R Programming Basic Building Blocks
+## 1421 R Programming Matrices and Data Frames
+## 1422 R Programming Basic Building Blocks
+## 1423 R Programming Matrices and Data Frames
+## 1424 R Programming Matrices and Data Frames
+## 1425 R Programming Matrices and Data Frames
+## 1426 R Programming Basic Building Blocks
+## 1427 R Programming Basic Building Blocks
+## 1428 R Programming Matrices and Data Frames
+## 1429 R Programming Matrices and Data Frames
+## 1430 R Programming Matrices and Data Frames
+## 1431 R Programming Basic Building Blocks
+## 1432 R Programming Basic Building Blocks
+## 1433 R Programming Matrices and Data Frames
+## 1434 R Programming Basic Building Blocks
+## 1435 R Programming Basic Building Blocks
+## 1436 R Programming Basic Building Blocks
+## 1437 R Programming Basic Building Blocks
+## 1438 R Programming Matrices and Data Frames
+## 1439 R Programming Basic Building Blocks
+## 1440 R Programming Basic Building Blocks
+## 1441 R Programming Matrices and Data Frames
+## 1442 R Programming Matrices and Data Frames
+## 1443 R Programming Matrices and Data Frames
+## 1444 R Programming Basic Building Blocks
+## 1445 R Programming Basic Building Blocks
+## 1446 R Programming Matrices and Data Frames
+## 1447 R Programming Matrices and Data Frames
+## 1448 R Programming Matrices and Data Frames
+## 1449 R Programming Matrices and Data Frames
+## 1450 R Programming Matrices and Data Frames
+## 1451 R Programming Basic Building Blocks
+## 1452 R Programming Basic Building Blocks
+## 1453 R Programming Basic Building Blocks
+## 1454 R Programming Matrices and Data Frames
+## 1455 R Programming Matrices and Data Frames
+## 1456 R Programming Matrices and Data Frames
+## 1457 R Programming Matrices and Data Frames
+## 1458 R Programming Basic Building Blocks
+## 1459 R Programming Basic Building Blocks
+## 1460 R Programming Basic Building Blocks
+## 1461 R Programming Matrices and Data Frames
+## 1462 R Programming Basic Building Blocks
+## 1463 R Programming Matrices and Data Frames
+## 1464 R Programming Vectors
+## 1465 R Programming Basic Building Blocks
+## 1466 R Programming Vectors
+## 1467 R Programming Basic Building Blocks
+## 1468 R Programming Basic Building Blocks
+## 1469 R Programming Basic Building Blocks
+## 1470 R Programming Basic Building Blocks
+## 1471 R Programming Workspace and Files
+## 1472 R Programming Basic Building Blocks
+## 1473 R Programming Vectors
+## 1474 R Programming Basic Building Blocks
+## 1475 R Programming Basic Building Blocks
+## 1476 R Programming Workspace and Files
+## 1477 R Programming Vectors
+## 1478 R Programming Basic Building Blocks
+## 1479 R Programming Workspace and Files
+## 1480 R Programming Workspace and Files
+## 1481 R Programming Basic Building Blocks
+## 1482 R Programming Workspace and Files
+## 1483 R Programming Basic Building Blocks
+## 1484 R Programming Basic Building Blocks
+## 1485 R Programming Basic Building Blocks
+## 1486 R Programming Vectors
+## 1487 R Programming Workspace and Files
+## 1488 R Programming Workspace and Files
+## 1489 R Programming Basic Building Blocks
+## 1490 R Programming Workspace and Files
+## 1491 R Programming Workspace and Files
+## 1492 R Programming Workspace and Files
+## 1493 R Programming Workspace and Files
+## 1494 R Programming Workspace and Files
+## 1495 R Programming Workspace and Files
+## 1496 R Programming Vectors
+## 1497 R Programming Workspace and Files
+## 1498 R Programming Workspace and Files
+## 1499 R Programming Basic Building Blocks
+## 1500 R Programming Basic Building Blocks
+## 1501 R Programming Workspace and Files
+## 1502 R Programming Vectors
+## 1503 R Programming Workspace and Files
+## 1504 R Programming Vectors
+## 1505 R Programming Workspace and Files
+## 1506 R Programming Workspace and Files
+## 1507 R Programming Workspace and Files
+## 1508 R Programming Missing Values
+## 1509 R Programming Vectors
+## 1510 R Programming Vectors
+## 1511 R Programming Vectors
+## 1512 R Programming Workspace and Files
+## 1513 R Programming Workspace and Files
+## 1514 R Programming Basic Building Blocks
+## 1515 R Programming Basic Building Blocks
+## 1516 R Programming Missing Values
+## 1517 R Programming Vectors
+## 1518 R Programming Basic Building Blocks
+## 1519 R Programming Missing Values
+## 1520 R Programming Vectors
+## 1521 R Programming Vectors
+## 1522 R Programming Vectors
+## 1523 R Programming Vectors
+## 1524 R Programming Missing Values
+## 1525 R Programming Workspace and Files
+## 1526 R Programming Missing Values
+## 1527 R Programming Vectors
+## 1528 R Programming Missing Values
+## 1529 R Programming Missing Values
+## 1530 R Programming Missing Values
+## 1531 R Programming Basic Building Blocks
+## 1532 R Programming Missing Values
+## 1533 R Programming Basic Building Blocks
+## 1534 R Programming Missing Values
+## 1535 R Programming Missing Values
+## 1536 R Programming Missing Values
+## 1537 R Programming Basic Building Blocks
+## 1538 R Programming Vectors
+## 1539 R Programming Vectors
+## 1540 R Programming Missing Values
+## 1541 R Programming Missing Values
+## 1542 R Programming Subsetting Vectors
+## 1543 R Programming Functions
+## 1544 R Programming Functions
+## 1545 R Programming Functions
+## 1546 R Programming Subsetting Vectors
+## 1547 R Programming Subsetting Vectors
+## 1548 R Programming Functions
+## 1549 R Programming Basic Building Blocks
+## 1550 R Programming Matrices and Data Frames
+## 1551 R Programming Basic Building Blocks
+## 1552 R Programming Matrices and Data Frames
+## 1553 R Programming Basic Building Blocks
+## 1554 R Programming Workspace and Files
+## 1555 R Programming Matrices and Data Frames
+## 1556 R Programming Matrices and Data Frames
+## 1557 R Programming Matrices and Data Frames
+## 1558 R Programming Matrices and Data Frames
+## 1559 R Programming Matrices and Data Frames
+## 1560 R Programming Basic Building Blocks
+## 1561 R Programming Workspace and Files
+## 1562 R Programming Basic Building Blocks
+## 1563 R Programming Dates and Times
+## 1564 R Programming Matrices and Data Frames
+## 1565 R Programming Subsetting Vectors
+## 1566 R Programming Subsetting Vectors
+## 1567 R Programming Functions
+## 1568 R Programming Logic
+## 1569 R Programming Matrices and Data Frames
+## 1570 R Programming Subsetting Vectors
+## 1571 R Programming Matrices and Data Frames
+## 1572 R Programming Workspace and Files
+## 1573 R Programming Dates and Times
+## 1574 R Programming Logic
+## 1575 R Programming Logic
+## 1576 R Programming Dates and Times
+## 1577 R Programming Basic Building Blocks
+## 1578 R Programming Subsetting Vectors
+## 1579 R Programming Logic
+## 1580 R Programming Logic
+## 1581 R Programming Matrices and Data Frames
+## 1582 R Programming Workspace and Files
+## 1583 R Programming Matrices and Data Frames
+## 1584 R Programming Subsetting Vectors
+## 1585 R Programming Logic
+## 1586 R Programming Functions
+## 1587 R Programming Dates and Times
+## 1588 R Programming Dates and Times
+## 1589 R Programming Workspace and Files
+## 1590 R Programming Vectors
+## 1591 R Programming Basic Building Blocks
+## 1592 R Programming Functions
+## 1593 R Programming Functions
+## 1594 R Programming Matrices and Data Frames
+## 1595 R Programming Matrices and Data Frames
+## 1596 R Programming Logic
+## 1597 R Programming Logic
+## 1598 R Programming Vectors
+## 1599 R Programming Workspace and Files
+## 1600 R Programming Dates and Times
+## 1601 R Programming Basic Building Blocks
+## 1602 R Programming Dates and Times
+## 1603 R Programming Matrices and Data Frames
+## 1604 R Programming Vectors
+## 1605 R Programming Matrices and Data Frames
+## 1606 R Programming Basic Building Blocks
+## 1607 R Programming Basic Building Blocks
+## 1608 R Programming Logic
+## 1609 R Programming Dates and Times
+## 1610 R Programming Missing Values
+## 1611 R Programming Vectors
+## 1612 R Programming Vectors
+## 1613 R Programming Vectors
+## 1614 R Programming Basic Building Blocks
+## 1615 R Programming Matrices and Data Frames
+## 1616 R Programming Basic Building Blocks
+## 1617 R Programming Vectors
+## 1618 R Programming Logic
+## 1619 R Programming Workspace and Files
+## 1620 R Programming Functions
+## 1621 R Programming Missing Values
+## 1622 R Programming Dates and Times
+## 1623 R Programming Dates and Times
+## 1624 R Programming Functions
+## 1625 R Programming Vectors
+## 1626 R Programming Vectors
+## 1627 R Programming Matrices and Data Frames
+## 1628 R Programming Basic Building Blocks
+## 1629 R Programming Matrices and Data Frames
+## 1630 R Programming Matrices and Data Frames
+## 1631 R Programming Functions
+## 1632 R Programming Workspace and Files
+## 1633 R Programming Functions
+## 1634 R Programming Matrices and Data Frames
+## 1635 R Programming Subsetting Vectors
+## 1636 R Programming Vectors
+## 1637 R Programming Vectors
+## 1638 R Programming Vectors
+## 1639 R Programming Vectors
+## 1640 R Programming Workspace and Files
+## 1641 R Programming Logic
+## 1642 R Programming Logic
+## 1643 R Programming Functions
+## 1644 R Programming Matrices and Data Frames
+## 1645 R Programming Matrices and Data Frames
+## 1646 R Programming Matrices and Data Frames
+## 1647 R Programming Matrices and Data Frames
+## 1648 R Programming Matrices and Data Frames
+## 1649 R Programming Subsetting Vectors
+## 1650 R Programming Subsetting Vectors
+## 1651 R Programming Logic
+## 1652 R Programming Logic
+## 1653 R Programming Vectors
+## 1654 R Programming Dates and Times
+## 1655 R Programming Missing Values
+## 1656 R Programming Functions
+## 1657 R Programming Logic
+## 1658 R Programming Logic
+## 1659 R Programming Dates and Times
+## 1660 R Programming Workspace and Files
+## 1661 R Programming Workspace and Files
+## 1662 R Programming Subsetting Vectors
+## 1663 R Programming Functions
+## 1664 R Programming Dates and Times
+## 1665 R Programming Functions
+## 1666 R Programming Functions
+## 1667 R Programming Missing Values
+## 1668 R Programming Matrices and Data Frames
+## 1669 R Programming Functions
+## 1670 R Programming Workspace and Files
+## 1671 R Programming Workspace and Files
+## 1672 R Programming Functions
+## 1673 R Programming Dates and Times
+## 1674 R Programming Dates and Times
+## 1675 R Programming Functions
+## 1676 R Programming Functions
+## 1677 R Programming Missing Values
+## 1678 R Programming Missing Values
+## 1679 R Programming Subsetting Vectors
+## 1680 R Programming Functions
+## 1681 R Programming Functions
+## 1682 R Programming Logic
+## 1683 R Programming Logic
+## 1684 R Programming Functions
+## 1685 R Programming Functions
+## 1686 R Programming Functions
+## 1687 R Programming Functions
+## 1688 R Programming Functions
+## 1689 R Programming Functions
+## 1690 R Programming Functions
+## 1691 R Programming Missing Values
+## 1692 R Programming Missing Values
+## 1693 R Programming Subsetting Vectors
+## 1694 R Programming Subsetting Vectors
+## 1695 R Programming Missing Values
+## 1696 R Programming Missing Values
+## 1697 R Programming Missing Values
+## 1698 R Programming Missing Values
+## 1699 R Programming Functions
+## 1700 R Programming Functions
+## 1701 R Programming Missing Values
+## 1702 R Programming Missing Values
+## 1703 R Programming Missing Values
+## 1704 R Programming Dates and Times
+## 1705 R Programming Dates and Times
+## 1706 R Programming Functions
+## 1707 R Programming Dates and Times
+## 1708 R Programming Dates and Times
+## 1709 R Programming Functions
+## 1710 R Programming Vectors
+## 1711 R Programming Dates and Times
+## 1712 R Programming Dates and Times
+## 1713 R Programming Dates and Times
+## 1714 R Programming Dates and Times
+## 1715 R Programming Dates and Times
+## 1716 R Programming Functions
+## 1717 R Programming Vectors
+## 1718 R Programming Vectors
+## 1719 R Programming Functions
+## 1720 R Programming Functions
+## 1721 R Programming Functions
+## 1722 R Programming Workspace and Files
+## 1723 R Programming Functions
+## 1724 R Programming Logic
+## 1725 R Programming Vectors
+## 1726 R Programming Dates and Times
+## 1727 R Programming Dates and Times
+## 1728 R Programming Functions
+## 1729 R Programming Functions
+## 1730 R Programming Functions
+## 1731 R Programming Vectors
+## 1732 R Programming Functions
+## 1733 R Programming Vectors
+## 1734 R Programming Functions
+## 1735 R Programming Functions
+## 1736 R Programming Workspace and Files
+## 1737 R Programming Workspace and Files
+## 1738 R Programming Workspace and Files
+## 1739 R Programming Dates and Times
+## 1740 R Programming Vectors
+## 1741 R Programming Functions
+## 1742 R Programming Vectors
+## 1743 R Programming Functions
+## 1744 R Programming Functions
+## 1745 R Programming Workspace and Files
+## 1746 R Programming Dates and Times
+## 1747 R Programming Vectors
+## 1748 R Programming Logic
+## 1749 R Programming Functions
+## 1750 R Programming Logic
+## 1751 R Programming Subsetting Vectors
+## 1752 R Programming Subsetting Vectors
+## 1753 R Programming Workspace and Files
+## 1754 R Programming Functions
+## 1755 R Programming Logic
+## 1756 R Programming Functions
+## 1757 R Programming Functions
+## 1758 R Programming Functions
+## 1759 R Programming Dates and Times
+## 1760 R Programming Functions
+## 1761 R Programming Functions
+## 1762 R Programming Vectors
+## 1763 R Programming Vectors
+## 1764 R Programming Dates and Times
+## 1765 R Programming Vectors
+## 1766 R Programming Dates and Times
+## 1767 R Programming Vectors
+## 1768 R Programming Vectors
+## 1769 R Programming Dates and Times
+## 1770 R Programming Dates and Times
+## 1771 R Programming Functions
+## 1772 R Programming Workspace and Files
+## 1773 R Programming Logic
+## 1774 R Programming Basic Building Blocks
+## 1775 R Programming Basic Building Blocks
+## 1776 R Programming Logic
+## 1777 R Programming Logic
+## 1778 R Programming Basic Building Blocks
+## 1779 R Programming Basic Building Blocks
+## 1780 R Programming Missing Values
+## 1781 R Programming Workspace and Files
+## 1782 R Programming Workspace and Files
+## 1783 R Programming Functions
+## 1784 R Programming Workspace and Files
+## 1785 R Programming Workspace and Files
+## 1786 R Programming Missing Values
+## 1787 R Programming Logic
+## 1788 R Programming Dates and Times
+## 1789 R Programming Basic Building Blocks
+## 1790 R Programming Vectors
+## 1791 R Programming Vectors
+## 1792 R Programming Vectors
+## 1793 R Programming Dates and Times
+## 1794 R Programming Dates and Times
+## 1795 R Programming Vectors
+## 1796 R Programming Basic Building Blocks
+## 1797 R Programming Dates and Times
+## 1798 R Programming Dates and Times
+## 1799 R Programming Functions
+## 1800 R Programming Functions
+## 1801 R Programming Basic Building Blocks
+## 1802 R Programming Logic
+## 1803 R Programming Logic
+## 1804 R Programming Logic
+## 1805 R Programming Subsetting Vectors
+## 1806 R Programming Basic Building Blocks
+## 1807 R Programming Basic Building Blocks
+## 1808 R Programming Subsetting Vectors
+## 1809 R Programming Basic Building Blocks
+## 1810 R Programming Workspace and Files
+## 1811 R Programming Logic
+## 1812 R Programming Logic
+## 1813 R Programming Functions
+## 1814 R Programming Workspace and Files
+## 1815 R Programming Subsetting Vectors
+## 1816 R Programming Logic
+## 1817 R Programming Logic
+## 1818 R Programming Logic
+## 1819 R Programming Logic
+## 1820 R Programming Basic Building Blocks
+## 1821 R Programming Vectors
+## 1822 R Programming Dates and Times
+## 1823 R Programming Basic Building Blocks
+## 1824 R Programming Basic Building Blocks
+## 1825 R Programming Dates and Times
+## 1826 R Programming Logic
+## 1827 R Programming Workspace and Files
+## 1828 R Programming Workspace and Files
+## 1829 R Programming Basic Building Blocks
+## 1830 R Programming Basic Building Blocks
+## 1831 R Programming Logic
+## 1832 R Programming Basic Building Blocks
+## 1833 R Programming Basic Building Blocks
+## 1834 R Programming Logic
+## 1835 R Programming Logic
+## 1836 R Programming Subsetting Vectors
+## 1837 R Programming Subsetting Vectors
+## 1838 R Programming Missing Values
+## 1839 R Programming Missing Values
+## 1840 R Programming Subsetting Vectors
+## 1841 R Programming Basic Building Blocks
+## 1842 R Programming Workspace and Files
+## 1843 R Programming Workspace and Files
+## 1844 R Programming Logic
+## 1845 R Programming Dates and Times
+## 1846 R Programming Workspace and Files
+## 1847 R Programming Logic
+## 1848 R Programming Missing Values
+## 1849 R Programming Logic
+## 1850 R Programming Logic
+## 1851 R Programming Workspace and Files
+## 1852 R Programming Workspace and Files
+## 1853 R Programming Dates and Times
+## 1854 R Programming Dates and Times
+## 1855 R Programming Logic
+## 1856 R Programming Missing Values
+## 1857 R Programming Missing Values
+## 1858 R Programming Subsetting Vectors
+## 1859 R Programming Subsetting Vectors
+## 1860 R Programming Logic
+## 1861 R Programming Logic
+## 1862 R Programming Workspace and Files
+## 1863 R Programming Basic Building Blocks
+## 1864 R Programming Workspace and Files
+## 1865 R Programming Subsetting Vectors
+## 1866 R Programming Missing Values
+## 1867 R Programming Missing Values
+## 1868 R Programming Subsetting Vectors
+## 1869 R Programming Subsetting Vectors
+## 1870 R Programming Missing Values
+## 1871 R Programming Missing Values
+## 1872 R Programming Logic
+## 1873 R Programming Logic
+## 1874 R Programming Subsetting Vectors
+## 1875 R Programming Logic
+## 1876 R Programming Subsetting Vectors
+## 1877 R Programming Basic Building Blocks
+## 1878 R Programming Subsetting Vectors
+## 1879 R Programming Subsetting Vectors
+## 1880 R Programming Subsetting Vectors
+## 1881 R Programming Workspace and Files
+## 1882 R Programming Logic
+## 1883 R Programming Missing Values
+## 1884 R Programming Missing Values
+## 1885 R Programming Subsetting Vectors
+## 1886 R Programming Subsetting Vectors
+## 1887 R Programming Logic
+## 1888 R Programming Subsetting Vectors
+## 1889 R Programming Subsetting Vectors
+## 1890 R Programming Subsetting Vectors
+## 1891 R Programming Logic
+## 1892 R Programming Subsetting Vectors
+## 1893 R Programming Basic Building Blocks
+## 1894 R Programming Subsetting Vectors
+## 1895 R Programming Basic Building Blocks
+## 1896 R Programming Logic
+## 1897 R Programming Subsetting Vectors
+## 1898 R Programming Matrices and Data Frames
+## 1899 R Programming Matrices and Data Frames
+## 1900 R Programming Matrices and Data Frames
+## 1901 R Programming Matrices and Data Frames
+## 1902 R Programming Matrices and Data Frames
+## 1903 R Programming Matrices and Data Frames
+## 1904 R Programming Matrices and Data Frames
+## 1905 R Programming Matrices and Data Frames
+## 1906 R Programming Matrices and Data Frames
+## 1907 R Programming Matrices and Data Frames
+## 1908 R Programming Matrices and Data Frames
+## 1909 R Programming Matrices and Data Frames
+## 1910 R Programming Matrices and Data Frames
+## 1911 R Programming Matrices and Data Frames
+## 1912 R Programming Matrices and Data Frames
+## 1913 R Programming Matrices and Data Frames
+## 1914 R Programming Matrices and Data Frames
+## 1915 R Programming Matrices and Data Frames
+## 1916 R Programming Matrices and Data Frames
+## 1917 R Programming Matrices and Data Frames
+## 1918 R Programming Matrices and Data Frames
+## 1919 R Programming Matrices and Data Frames
+## 1920 R Programming Matrices and Data Frames
+## 1921 R Programming Basic Building Blocks
+## 1922 R Programming Basic Building Blocks
+## 1923 R Programming Basic Building Blocks
+## 1924 R Programming Basic Building Blocks
+## 1925 R Programming Basic Building Blocks
+## 1926 R Programming Basic Building Blocks
+## 1927 R Programming Basic Building Blocks
+## 1928 R Programming Basic Building Blocks
+## 1929 R Programming Basic Building Blocks
+## 1930 R Programming Basic Building Blocks
+## 1931 R Programming Basic Building Blocks
+## 1932 R Programming Basic Building Blocks
+## 1933 R Programming Basic Building Blocks
+## 1934 R Programming Basic Building Blocks
+## 1935 R Programming Basic Building Blocks
+## 1936 R Programming Missing Values
+## 1937 R Programming Vectors
+## 1938 R Programming Basic Building Blocks
+## 1939 R Programming Basic Building Blocks
+## 1940 R Programming Basic Building Blocks
+## 1941 R Programming Logic
+## 1942 R Programming Vectors
+## 1943 R Programming Logic
+## 1944 R Programming Basic Building Blocks
+## 1945 R Programming Basic Building Blocks
+## 1946 R Programming Dates and Times
+## 1947 R Programming Vectors
+## 1948 R Programming Basic Building Blocks
+## 1949 R Programming Logic
+## 1950 R Programming Basic Building Blocks
+## 1951 R Programming Logic
+## 1952 R Programming Logic
+## 1953 R Programming Logic
+## 1954 R Programming Logic
+## 1955 R Programming Dates and Times
+## 1956 R Programming Logic
+## 1957 R Programming Dates and Times
+## 1958 R Programming Missing Values
+## 1959 R Programming Missing Values
+## 1960 R Programming Vectors
+## 1961 R Programming Basic Building Blocks
+## 1962 R Programming Basic Building Blocks
+## 1963 R Programming Vectors
+## 1964 R Programming Dates and Times
+## 1965 R Programming Vectors
+## 1966 R Programming Dates and Times
+## 1967 R Programming Dates and Times
+## 1968 R Programming Vectors
+## 1969 R Programming Vectors
+## 1970 R Programming Vectors
+## 1971 R Programming Vectors
+## 1972 R Programming Vectors
+## 1973 R Programming Logic
+## 1974 R Programming Logic
+## 1975 R Programming Vectors
+## 1976 R Programming Vectors
+## 1977 R Programming Subsetting Vectors
+## 1978 R Programming Dates and Times
+## 1979 R Programming Dates and Times
+## 1980 R Programming Dates and Times
+## 1981 R Programming Subsetting Vectors
+## 1982 R Programming Subsetting Vectors
+## 1983 R Programming Dates and Times
+## 1984 R Programming Logic
+## 1985 R Programming Logic
+## 1986 R Programming Vectors
+## 1987 R Programming Logic
+## 1988 R Programming Subsetting Vectors
+## 1989 R Programming Missing Values
+## 1990 R Programming Subsetting Vectors
+## 1991 R Programming Matrices and Data Frames
+## 1992 R Programming Logic
+## 1993 R Programming Missing Values
+## 1994 R Programming Dates and Times
+## 1995 R Programming Logic
+## 1996 R Programming Logic
+## 1997 R Programming Logic
+## 1998 R Programming Logic
+## 1999 R Programming Dates and Times
+## 2000 R Programming Logic
+## 2001 R Programming Logic
+## 2002 R Programming Logic
+## 2003 R Programming Vectors
+## 2004 R Programming Logic
+## 2005 R Programming Logic
+## 2006 R Programming Logic
+## 2007 R Programming Logic
+## 2008 R Programming Logic
+## 2009 R Programming Logic
+## 2010 R Programming Logic
+## 2011 R Programming Logic
+## 2012 R Programming Matrices and Data Frames
+## 2013 R Programming Matrices and Data Frames
+## 2014 R Programming Matrices and Data Frames
+## 2015 R Programming Subsetting Vectors
+## 2016 R Programming Subsetting Vectors
+## 2017 R Programming Missing Values
+## 2018 R Programming Basic Building Blocks
+## 2019 R Programming Subsetting Vectors
+## 2020 R Programming Subsetting Vectors
+## 2021 R Programming Vectors
+## 2022 R Programming Logic
+## 2023 R Programming Logic
+## 2024 R Programming Logic
+## 2025 R Programming Missing Values
+## 2026 R Programming Logic
+## 2027 R Programming Logic
+## 2028 R Programming Basic Building Blocks
+## 2029 R Programming Missing Values
+## 2030 R Programming Dates and Times
+## 2031 R Programming Logic
+## 2032 R Programming Missing Values
+## 2033 R Programming Missing Values
+## 2034 R Programming Missing Values
+## 2035 R Programming Matrices and Data Frames
+## 2036 R Programming Dates and Times
+## 2037 R Programming Basic Building Blocks
+## 2038 R Programming Basic Building Blocks
+## 2039 R Programming Basic Building Blocks
+## 2040 R Programming Subsetting Vectors
+## 2041 R Programming Subsetting Vectors
+## 2042 R Programming Subsetting Vectors
+## 2043 R Programming Vectors
+## 2044 R Programming Basic Building Blocks
+## 2045 R Programming Matrices and Data Frames
+## 2046 R Programming Dates and Times
+## 2047 R Programming Dates and Times
+## 2048 R Programming Dates and Times
+## 2049 R Programming Matrices and Data Frames
+## 2050 R Programming Matrices and Data Frames
+## 2051 R Programming Dates and Times
+## 2052 R Programming Vectors
+## 2053 R Programming Basic Building Blocks
+## 2054 R Programming Vectors
+## 2055 R Programming Missing Values
+## 2056 R Programming Missing Values
+## 2057 R Programming Missing Values
+## 2058 R Programming Dates and Times
+## 2059 R Programming Subsetting Vectors
+## 2060 R Programming Matrices and Data Frames
+## 2061 R Programming Basic Building Blocks
+## 2062 R Programming Subsetting Vectors
+## 2063 R Programming Matrices and Data Frames
+## 2064 R Programming Dates and Times
+## 2065 R Programming Dates and Times
+## 2066 R Programming Matrices and Data Frames
+## 2067 R Programming Dates and Times
+## 2068 R Programming Dates and Times
+## 2069 R Programming Dates and Times
+## 2070 R Programming Matrices and Data Frames
+## 2071 R Programming Subsetting Vectors
+## 2072 R Programming Subsetting Vectors
+## 2073 R Programming Subsetting Vectors
+## 2074 R Programming Matrices and Data Frames
+## 2075 R Programming Subsetting Vectors
+## 2076 R Programming Matrices and Data Frames
+## 2077 R Programming Dates and Times
+## 2078 R Programming Matrices and Data Frames
+## 2079 R Programming Dates and Times
+## 2080 R Programming Matrices and Data Frames
+## 2081 R Programming Subsetting Vectors
+## 2082 R Programming Matrices and Data Frames
+## 2083 R Programming Basic Building Blocks
+## 2084 R Programming Subsetting Vectors
+## 2085 R Programming Matrices and Data Frames
+## 2086 R Programming Matrices and Data Frames
+## 2087 R Programming Dates and Times
+## 2088 R Programming Dates and Times
+## 2089 R Programming Subsetting Vectors
+## 2090 R Programming Basic Building Blocks
+## 2091 R Programming Subsetting Vectors
+## 2092 R Programming Matrices and Data Frames
+## 2093 R Programming Basic Building Blocks
+## 2094 R Programming Matrices and Data Frames
+## 2095 R Programming Matrices and Data Frames
+## 2096 R Programming Subsetting Vectors
+## 2097 R Programming Subsetting Vectors
+## 2098 R Programming Matrices and Data Frames
+## 2099 R Programming Basic Building Blocks
+## 2100 R Programming Subsetting Vectors
+## 2101 R Programming Subsetting Vectors
+## 2102 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2103 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2104 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2105 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2106 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2107 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2108 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2109 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2110 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2111 Exploratory_Data_Analysis Base_Plotting_System
+## 2112 Exploratory_Data_Analysis Base_Plotting_System
+## 2113 Exploratory_Data_Analysis Clustering_Example
+## 2114 Exploratory_Data_Analysis Clustering_Example
+## 2115 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2116 Exploratory_Data_Analysis K_Means_Clustering
+## 2117 Getting and Cleaning Data Tidying Data with tidyr
+## 2118 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2119 Exploratory_Data_Analysis Graphics_Devices_in_R
+## 2120 Getting and Cleaning Data Manipulating Data with dplyr
+## 2121 Getting and Cleaning Data Manipulating Data with dplyr
+## 2122 Getting and Cleaning Data Manipulating Data with dplyr
+## 2123 Getting and Cleaning Data Manipulating Data with dplyr
+## 2124 Getting and Cleaning Data Manipulating Data with dplyr
+## 2125 Getting and Cleaning Data Manipulating Data with dplyr
+## 2126 Exploratory_Data_Analysis K_Means_Clustering
+## 2127 Exploratory_Data_Analysis K_Means_Clustering
+## 2128 Exploratory_Data_Analysis Base_Plotting_System
+## 2129 Exploratory_Data_Analysis Base_Plotting_System
+## 2130 R Programming Looking at Data
+## 2131 R Programming Looking at Data
+## 2132 R Programming Looking at Data
+## 2133 R Programming Looking at Data
+## 2134 Exploratory_Data_Analysis Base_Plotting_System
+## 2135 Exploratory_Data_Analysis Base_Plotting_System
+## 2136 R Programming Looking at Data
+## 2137 R Programming Looking at Data
+## 2138 R Programming Looking at Data
+## 2139 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2140 R Programming Looking at Data
+## 2141 Exploratory_Data_Analysis Clustering_Example
+## 2142 Exploratory_Data_Analysis Clustering_Example
+## 2143 Exploratory_Data_Analysis Clustering_Example
+## 2144 Exploratory_Data_Analysis Clustering_Example
+## 2145 Exploratory_Data_Analysis Clustering_Example
+## 2146 Exploratory_Data_Analysis Clustering_Example
+## 2147 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2148 Getting and Cleaning Data Tidying Data with tidyr
+## 2149 Getting and Cleaning Data Tidying Data with tidyr
+## 2150 R Programming Looking at Data
+## 2151 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2152 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2153 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2154 Getting and Cleaning Data Manipulating Data with dplyr
+## 2155 R Programming Looking at Data
+## 2156 R Programming Looking at Data
+## 2157 R Programming Looking at Data
+## 2158 R Programming Looking at Data
+## 2159 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2160 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2161 R Programming Looking at Data
+## 2162 Exploratory_Data_Analysis Clustering_Example
+## 2163 Exploratory_Data_Analysis Exploratory_Graphs
+## 2164 Exploratory_Data_Analysis Exploratory_Graphs
+## 2165 Exploratory_Data_Analysis Exploratory_Graphs
+## 2166 Exploratory_Data_Analysis Exploratory_Graphs
+## 2167 Exploratory_Data_Analysis Exploratory_Graphs
+## 2168 Exploratory_Data_Analysis Exploratory_Graphs
+## 2169 Exploratory_Data_Analysis Clustering_Example
+## 2170 Exploratory_Data_Analysis Clustering_Example
+## 2171 Getting and Cleaning Data Tidying Data with tidyr
+## 2172 R Programming Looking at Data
+## 2173 Exploratory_Data_Analysis K_Means_Clustering
+## 2174 Exploratory_Data_Analysis K_Means_Clustering
+## 2175 Getting and Cleaning Data Tidying Data with tidyr
+## 2176 Exploratory_Data_Analysis Base_Plotting_System
+## 2177 Exploratory_Data_Analysis Clustering_Example
+## 2178 Exploratory_Data_Analysis Exploratory_Graphs
+## 2179 Exploratory_Data_Analysis Exploratory_Graphs
+## 2180 Exploratory_Data_Analysis K_Means_Clustering
+## 2181 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2182 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2183 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2184 Exploratory_Data_Analysis Exploratory_Graphs
+## 2185 Exploratory_Data_Analysis Base_Plotting_System
+## 2186 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2187 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2188 Exploratory_Data_Analysis Exploratory_Graphs
+## 2189 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2190 Exploratory_Data_Analysis K_Means_Clustering
+## 2191 Exploratory_Data_Analysis K_Means_Clustering
+## 2192 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2193 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2194 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2195 Getting and Cleaning Data Tidying Data with tidyr
+## 2196 Exploratory_Data_Analysis Exploratory_Graphs
+## 2197 Exploratory_Data_Analysis Exploratory_Graphs
+## 2198 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2199 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2200 Exploratory_Data_Analysis Principles_of_Analytic_Graphs
+## 2201 Getting and Cleaning Data Tidying Data with tidyr
+## 2202 Getting and Cleaning Data Tidying Data with tidyr
+## 2203 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2204 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2205 Exploratory_Data_Analysis Hierarchical_Clustering
+## 2206 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2207 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2208 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2209 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2210 Getting and Cleaning Data Tidying Data with tidyr
+## 2211 Getting and Cleaning Data Manipulating Data with dplyr
+## 2212 Getting and Cleaning Data Manipulating Data with dplyr
+## 2213 Getting and Cleaning Data Manipulating Data with dplyr
+## 2214 Getting and Cleaning Data Manipulating Data with dplyr
+## 2215 R Programming Dates and Times
+## 2216 R Programming Dates and Times
+## 2217 R Programming Dates and Times
+## 2218 Getting and Cleaning Data Manipulating Data with dplyr
+## 2219 Getting and Cleaning Data Manipulating Data with dplyr
+## 2220 Getting and Cleaning Data Manipulating Data with dplyr
+## 2221 Getting and Cleaning Data Manipulating Data with dplyr
+## 2222 Getting and Cleaning Data Manipulating Data with dplyr
+## 2223 Getting and Cleaning Data Manipulating Data with dplyr
+## 2224 Getting and Cleaning Data Manipulating Data with dplyr
+## 2225 R Programming Dates and Times
+## 2226 R Programming Dates and Times
+## 2227 R Programming Dates and Times
+## 2228 R Programming Dates and Times
+## 2229 R Programming Dates and Times
+## 2230 R Programming Dates and Times
+## 2231 R Programming Dates and Times
+## 2232 R Programming Dates and Times
+## 2233 R Programming Dates and Times
+## 2234 R Programming Dates and Times
+## 2235 R Programming Basic Building Blocks
+## 2236 R Programming Basic Building Blocks
+## 2237 R Programming Basic Building Blocks
+## 2238 R Programming Basic Building Blocks
+## 2239 R Programming Basic Building Blocks
+## 2240 R Programming Basic Building Blocks
+## 2241 R Programming Basic Building Blocks
+## 2242 R Programming Basic Building Blocks
+## 2243 R Programming Basic Building Blocks
+## 2244 R Programming Basic Building Blocks
+## 2245 R Programming Basic Building Blocks
+## 2246 R Programming Basic Building Blocks
+## 2247 R Programming Basic Building Blocks
+## 2248 R Programming Basic Building Blocks
+## 2249 R Programming Basic Building Blocks
+## 2250 R Programming Basic Building Blocks
+## 2251 R Programming Basic Building Blocks
+## 2252 R Programming Basic Building Blocks
+## 2253 R Programming Basic Building Blocks
+## 2254 R Programming Basic Building Blocks
+## 2255 R Programming Basic Building Blocks
+## 2256 R Programming Basic Building Blocks
+## 2257 R Programming Basic Building Blocks
+## 2258 R Programming Basic Building Blocks
+## 2259 R Programming Basic Building Blocks
+## 2260 R Programming Basic Building Blocks
+## 2261 R Programming Basic Building Blocks
+## 2262 R Programming Basic Building Blocks
+## 2263 R Programming Basic Building Blocks
+## 2264 R Programming Basic Building Blocks
+## 2265 R Programming Basic Building Blocks
+## 2266 R Programming Basic Building Blocks
+## 2267 R Programming Basic Building Blocks
+## 2268 R Programming Basic Building Blocks
+## 2269 R Programming Basic Building Blocks
+## 2270 R Programming Basic Building Blocks
+## 2271 R Programming Basic Building Blocks
+## 2272 R Programming Basic Building Blocks
+## 2273 R Programming Basic Building Blocks
+## 2274 R Programming Basic Building Blocks
+## 2275 R Programming Basic Building Blocks
+## 2276 R Programming Basic Building Blocks
+## 2277 R Programming Basic Building Blocks
+## 2278 R Programming Basic Building Blocks
+## 2279 R Programming Matrices and Data Frames
+## 2280 R Programming Matrices and Data Frames
+## 2281 R Programming Matrices and Data Frames
+## 2282 R Programming Matrices and Data Frames
+## 2283 R Programming Matrices and Data Frames
+## 2284 R Programming Matrices and Data Frames
+## 2285 R Programming Matrices and Data Frames
+## 2286 R Programming Matrices and Data Frames
+## 2287 R Programming Matrices and Data Frames
+## 2288 R Programming Matrices and Data Frames
+## 2289 R Programming Matrices and Data Frames
+## 2290 R Programming Matrices and Data Frames
+## 2291 R Programming Matrices and Data Frames
+## 2292 R Programming Matrices and Data Frames
+## 2293 R Programming Matrices and Data Frames
+## 2294 R Programming Matrices and Data Frames
+## 2295 R Programming Matrices and Data Frames
+## 2296 R Programming Matrices and Data Frames
+## 2297 R Programming Matrices and Data Frames
+## 2298 R Programming Matrices and Data Frames
+## 2299 R Programming Matrices and Data Frames
+## 2300 R Programming Matrices and Data Frames
+## 2301 R Programming Matrices and Data Frames
+## 2302 R Programming Basic Building Blocks
+## 2303 R Programming Basic Building Blocks
+## 2304 R Programming Basic Building Blocks
+## 2305 R Programming Basic Building Blocks
+## 2306 R Programming Basic Building Blocks
+## 2307 R Programming Basic Building Blocks
+## 2308 R Programming Basic Building Blocks
+## 2309 R Programming Basic Building Blocks
+## 2310 R Programming Basic Building Blocks
+## 2311 R Programming Basic Building Blocks
+## 2312 R Programming Basic Building Blocks
+## 2313 R Programming Basic Building Blocks
+## 2314 R Programming Basic Building Blocks
+## 2315 R Programming Basic Building Blocks
+## 2316 R Programming Basic Building Blocks
+## 2317 R Programming Basic Building Blocks
+## 2318 R Programming Basic Building Blocks
+## 2319 R Programming Basic Building Blocks
+## 2320 R Programming Basic Building Blocks
+## 2321 R Programming Basic Building Blocks
+## 2322 R Programming Basic Building Blocks
+## 2323 R Programming Basic Building Blocks
+## 2324 R Programming Workspace and Files
+## 2325 R Programming Workspace and Files
+## 2326 R Programming Workspace and Files
+## 2327 R Programming Workspace and Files
+## 2328 R Programming Workspace and Files
+## 2329 R Programming Workspace and Files
+## 2330 R Programming Workspace and Files
+## 2331 R Programming Workspace and Files
+## 2332 R Programming Workspace and Files
+## 2333 R Programming Workspace and Files
+## 2334 R Programming Workspace and Files
+## 2335 R Programming Workspace and Files
+## 2336 R Programming Workspace and Files
+## 2337 R Programming Workspace and Files
+## 2338 R Programming Workspace and Files
+## 2339 R Programming Workspace and Files
+## 2340 R Programming Workspace and Files
+## 2341 R Programming Workspace and Files
+## 2342 R Programming Workspace and Files
+## 2343 R Programming Workspace and Files
+## 2344 R Programming Workspace and Files
+## 2345 R Programming Workspace and Files
+## 2346 R Programming Workspace and Files
+## 2347 R Programming Vectors
+## 2348 R Programming Vectors
+## 2349 R Programming Vectors
+## 2350 R Programming Vectors
+## 2351 R Programming Vectors
+## 2352 R Programming Vectors
+## 2353 R Programming Vectors
+## 2354 R Programming Vectors
+## 2355 R Programming Vectors
+## 2356 R Programming Vectors
+## 2357 R Programming Vectors
+## 2358 R Programming Vectors
+## 2359 R Programming Vectors
+## 2360 R Programming Vectors
+## 2361 R Programming Vectors
+## 2362 R Programming Vectors
+## 2363 R Programming Vectors
+## 2364 R Programming Vectors
+## 2365 R Programming Vectors
+## 2366 R Programming Matrices and Data Frames
+## 2367 R Programming Matrices and Data Frames
+## 2368 R Programming Matrices and Data Frames
+## 2369 R Programming Matrices and Data Frames
+## 2370 R Programming Matrices and Data Frames
+## 2371 R Programming Matrices and Data Frames
+## 2372 R Programming Dates and Times
+## 2373 R Programming Dates and Times
+## 2374 R Programming Dates and Times
+## 2375 R Programming Dates and Times
+## 2376 R Programming Dates and Times
+## 2377 R Programming Dates and Times
+## 2378 R Programming Dates and Times
+## 2379 R Programming Dates and Times
+## 2380 R Programming Dates and Times
+## 2381 R Programming Dates and Times
+## 2382 R Programming Dates and Times
+## 2383 R Programming Dates and Times
+## 2384 R Programming Dates and Times
+## 2385 R Programming Missing Values
+## 2386 R Programming Missing Values
+## 2387 R Programming Missing Values
+## 2388 R Programming Missing Values
+## 2389 R Programming Missing Values
+## 2390 R Programming Missing Values
+## 2391 R Programming Missing Values
+## 2392 R Programming Missing Values
+## 2393 R Programming Missing Values
+## 2394 R Programming Missing Values
+## 2395 R Programming Missing Values
+## 2396 R Programming Missing Values
+## 2397 R Programming Missing Values
+## 2398 R Programming Missing Values
+## 2399 R Programming Subsetting Vectors
+## 2400 R Programming Subsetting Vectors
+## 2401 R Programming Subsetting Vectors
+## 2402 R Programming Subsetting Vectors
+## 2403 R Programming Subsetting Vectors
+## 2404 R Programming Subsetting Vectors
+## 2405 R Programming Subsetting Vectors
+## 2406 R Programming Subsetting Vectors
+## 2407 R Programming Subsetting Vectors
+## 2408 R Programming Subsetting Vectors
+## 2409 R Programming Subsetting Vectors
+## 2410 R Programming Subsetting Vectors
+## 2411 R Programming Subsetting Vectors
+## 2412 R Programming Subsetting Vectors
+## 2413 R Programming Subsetting Vectors
+## 2414 R Programming Subsetting Vectors
+## 2415 R Programming Subsetting Vectors
+## 2416 R Programming Subsetting Vectors
+## 2417 R Programming Subsetting Vectors
+## 2418 R Programming Subsetting Vectors
+## 2419 R Programming Subsetting Vectors
+## 2420 R Programming Subsetting Vectors
+## 2421 R Programming Subsetting Vectors
+## 2422 R Programming Subsetting Vectors
+## 2423 R Programming Subsetting Vectors
+## 2424 R Programming Subsetting Vectors
+## 2425 R Programming Logic
+## 2426 R Programming Logic
+## 2427 R Programming Logic
+## 2428 R Programming Logic
+## 2429 R Programming Logic
+## 2430 R Programming Logic
+## 2431 R Programming Logic
+## 2432 R Programming Logic
+## 2433 R Programming Logic
+## 2434 R Programming Logic
+## 2435 R Programming Logic
+## 2436 R Programming Logic
+## 2437 R Programming Logic
+## 2438 R Programming Logic
+## 2439 R Programming Logic
+## 2440 R Programming Logic
+## 2441 R Programming Logic
+## 2442 R Programming Logic
+## 2443 R Programming Logic
+## 2444 R Programming Logic
+## 2445 R Programming Logic
+## 2446 R Programming Logic
+## 2447 R Programming Logic
+## 2448 R Programming Logic
+## 2449 R Programming Logic
+## 2450 R Programming Logic
+## 2451 R Programming Logic
+## 2452 R Programming Logic
+## 2453 R Programming Logic
+## 2454 R Programming Logic
+## 2455 R Programming Logic
+## 2456 R Programming Logic
+## 2457 R Programming Logic
+## 2458 R Programming Logic
+## 2459 R Programming Logic
+## 2460 R Programming Matrices and Data Frames
+## 2461 R Programming Matrices and Data Frames
+## 2462 R Programming Dates and Times
+## 2463 R Programming Dates and Times
+## 2464 R Programming Dates and Times
+## 2465 R Programming Dates and Times
+## 2466 R Programming Dates and Times
+## 2467 R Programming Dates and Times
+## 2468 R Programming Dates and Times
+## 2469 R Programming Dates and Times
+## 2470 R Programming Dates and Times
+## 2471 R Programming Dates and Times
+## 2472 R Programming Dates and Times
+## 2473 R Programming Dates and Times
+## 2474 R Programming Dates and Times
+## 2475 R Programming Dates and Times
+## 2476 R Programming Dates and Times
+## 2477 R Programming Matrices and Data Frames
+## 2478 R Programming Matrices and Data Frames
+## 2479 R Programming Matrices and Data Frames
+## 2480 R Programming Matrices and Data Frames
+## 2481 R Programming Matrices and Data Frames
+## 2482 R Programming Matrices and Data Frames
+## 2483 R Programming Matrices and Data Frames
+## 2484 R Programming Matrices and Data Frames
+## 2485 R Programming Matrices and Data Frames
+## 2486 R Programming Matrices and Data Frames
+## 2487 R Programming Matrices and Data Frames
+## 2488 R Programming Matrices and Data Frames
+## 2489 R Programming Matrices and Data Frames
+## 2490 R Programming Matrices and Data Frames
+## 2491 R Programming Matrices and Data Frames
+## 2492 R Programming Basic Building Blocks
+## 2493 R Programming Basic Building Blocks
+## 2494 R Programming Basic Building Blocks
+## 2495 R Programming Basic Building Blocks
+## 2496 R Programming Basic Building Blocks
+## 2497 R Programming Basic Building Blocks
+## 2498 R Programming Basic Building Blocks
+## 2499 R Programming Basic Building Blocks
+## 2500 R Programming Basic Building Blocks
+## 2501 R Programming Basic Building Blocks
+## 2502 R Programming Basic Building Blocks
+## 2503 R Programming Basic Building Blocks
+## 2504 R Programming Basic Building Blocks
+## 2505 R Programming Basic Building Blocks
+## 2506 R Programming Basic Building Blocks
+## 2507 R Programming Basic Building Blocks
+## 2508 R Programming Basic Building Blocks
+## 2509 R Programming Basic Building Blocks
+## 2510 R Programming Basic Building Blocks
+## 2511 R Programming Basic Building Blocks
+## 2512 R Programming Basic Building Blocks
+## 2513 R Programming Basic Building Blocks
+## 2514 R Programming Workspace and Files
+## 2515 R Programming Workspace and Files
+## 2516 R Programming Workspace and Files
+## 2517 R Programming Workspace and Files
+## 2518 R Programming Workspace and Files
+## 2519 R Programming Workspace and Files
+## 2520 R Programming Workspace and Files
+## 2521 R Programming Workspace and Files
+## 2522 R Programming Workspace and Files
+## 2523 R Programming Workspace and Files
+## 2524 R Programming Workspace and Files
+## 2525 R Programming Workspace and Files
+## 2526 R Programming Workspace and Files
+## 2527 R Programming Workspace and Files
+## 2528 R Programming Workspace and Files
+## 2529 R Programming Workspace and Files
+## 2530 R Programming Workspace and Files
+## 2531 R Programming Workspace and Files
+## 2532 R Programming Workspace and Files
+## 2533 R Programming Workspace and Files
+## 2534 R Programming Workspace and Files
+## 2535 R Programming Workspace and Files
+## 2536 R Programming Workspace and Files
+## 2537 R Programming Vectors
+## 2538 R Programming Vectors
+## 2539 R Programming Vectors
+## 2540 R Programming Vectors
+## 2541 R Programming Vectors
+## 2542 R Programming Vectors
+## 2543 R Programming Vectors
+## 2544 R Programming Vectors
+## 2545 R Programming Vectors
+## 2546 R Programming Vectors
+## 2547 R Programming Vectors
+## 2548 R Programming Vectors
+## 2549 R Programming Vectors
+## 2550 R Programming Vectors
+## 2551 R Programming Vectors
+## 2552 R Programming Vectors
+## 2553 R Programming Missing Values
+## 2554 R Programming Missing Values
+## 2555 R Programming Missing Values
+## 2556 R Programming Missing Values
+## 2557 R Programming Missing Values
+## 2558 R Programming Missing Values
+## 2559 R Programming Missing Values
+## 2560 R Programming Missing Values
+## 2561 R Programming Missing Values
+## 2562 R Programming Missing Values
+## 2563 R Programming Missing Values
+## 2564 R Programming Missing Values
+## 2565 R Programming Missing Values
+## 2566 R Programming Missing Values
+## 2567 R Programming Vectors
+## 2568 R Programming Vectors
+## 2569 R Programming Vectors
+## 2570 R Programming Basic Building Blocks
+## 2571 R Programming Basic Building Blocks
+## 2572 R Programming Basic Building Blocks
+## 2573 R Programming Basic Building Blocks
+## 2574 R Programming Basic Building Blocks
+## 2575 R Programming Basic Building Blocks
+## 2576 R Programming Basic Building Blocks
+## 2577 R Programming Basic Building Blocks
+## 2578 R Programming Logic
+## 2579 R Programming Logic
+## 2580 R Programming Logic
+## 2581 R Programming Logic
+## 2582 R Programming Logic
+## 2583 R Programming Logic
+## 2584 R Programming Logic
+## 2585 R Programming Logic
+## 2586 R Programming Logic
+## 2587 R Programming Logic
+## 2588 R Programming Basic Building Blocks
+## 2589 R Programming Dates and Times
+## 2590 R Programming Dates and Times
+## 2591 R Programming Dates and Times
+## 2592 R Programming Dates and Times
+## 2593 R Programming Dates and Times
+## 2594 R Programming Dates and Times
+## 2595 R Programming Dates and Times
+## 2596 R Programming Dates and Times
+## 2597 R Programming Basic Building Blocks
+## 2598 R Programming Basic Building Blocks
+## 2599 R Programming Logic
+## 2600 R Programming Dates and Times
+## 2601 R Programming Dates and Times
+## 2602 R Programming Dates and Times
+## 2603 R Programming Dates and Times
+## 2604 R Programming Dates and Times
+## 2605 R Programming Dates and Times
+## 2606 R Programming Dates and Times
+## 2607 R Programming Dates and Times
+## 2608 R Programming Basic Building Blocks
+## 2609 R Programming Basic Building Blocks
+## 2610 R Programming Functions
+## 2611 R Programming Functions
+## 2612 R Programming Functions
+## 2613 R Programming Functions
+## 2614 R Programming Functions
+## 2615 R Programming Functions
+## 2616 R Programming Functions
+## 2617 R Programming Functions
+## 2618 R Programming Functions
+## 2619 R Programming Functions
+## 2620 R Programming Functions
+## 2621 R Programming Dates and Times
+## 2622 R Programming Basic Building Blocks
+## 2623 R Programming Basic Building Blocks
+## 2624 R Programming Basic Building Blocks
+## 2625 R Programming Basic Building Blocks
+## 2626 R Programming Basic Building Blocks
+## 2627 R Programming Basic Building Blocks
+## 2628 R Programming Basic Building Blocks
+## 2629 R Programming Basic Building Blocks
+## 2630 R Programming Basic Building Blocks
+## 2631 R Programming Functions
+## 2632 R Programming Functions
+## 2633 R Programming Subsetting Vectors
+## 2634 R Programming Subsetting Vectors
+## 2635 R Programming Subsetting Vectors
+## 2636 R Programming Subsetting Vectors
+## 2637 R Programming Subsetting Vectors
+## 2638 R Programming Subsetting Vectors
+## 2639 R Programming Subsetting Vectors
+## 2640 R Programming Subsetting Vectors
+## 2641 R Programming Subsetting Vectors
+## 2642 R Programming Logic
+## 2643 R Programming Logic
+## 2644 R Programming Logic
+## 2645 R Programming Logic
+## 2646 R Programming Logic
+## 2647 R Programming Logic
+## 2648 R Programming Logic
+## 2649 R Programming Logic
+## 2650 R Programming Logic
+## 2651 R Programming Logic
+## 2652 R Programming Logic
+## 2653 R Programming Logic
+## 2654 R Programming Logic
+## 2655 R Programming Logic
+## 2656 R Programming Logic
+## 2657 R Programming Logic
+## 2658 R Programming Logic
+## 2659 R Programming Logic
+## 2660 R Programming Logic
+## 2661 R Programming Logic
+## 2662 R Programming Logic
+## 2663 R Programming Logic
+## 2664 R Programming Logic
+## 2665 R Programming Logic
+## 2666 R Programming Vectors
+## 2667 R Programming Vectors
+## 2668 R Programming Vectors
+## 2669 R Programming Vectors
+## 2670 R Programming Vectors
+## 2671 R Programming Vectors
+## 2672 R Programming Vectors
+## 2673 R Programming Vectors
+## 2674 R Programming Vectors
+## 2675 R Programming Vectors
+## 2676 R Programming Vectors
+## 2677 R Programming Vectors
+## 2678 R Programming Vectors
+## 2679 R Programming Vectors
+## 2680 R Programming Vectors
+## 2681 R Programming Vectors
+## 2682 R Programming Vectors
+## 2683 R Programming Vectors
+## 2684 R Programming Vectors
+## 2685 R Programming Dates and Times
+## 2686 R Programming Dates and Times
+## 2687 R Programming Dates and Times
+## 2688 R Programming Dates and Times
+## 2689 R Programming Dates and Times
+## 2690 R Programming Dates and Times
+## 2691 R Programming Dates and Times
+## 2692 R Programming Dates and Times
+## 2693 R Programming Dates and Times
+## 2694 R Programming Dates and Times
+## 2695 R Programming Dates and Times
+## 2696 R Programming Workspace and Files
+## 2697 R Programming Workspace and Files
+## 2698 R Programming Workspace and Files
+## 2699 R Programming Workspace and Files
+## 2700 R Programming Workspace and Files
+## 2701 R Programming Workspace and Files
+## 2702 R Programming Workspace and Files
+## 2703 R Programming Workspace and Files
+## 2704 R Programming Workspace and Files
+## 2705 R Programming Workspace and Files
+## 2706 R Programming Workspace and Files
+## 2707 R Programming Workspace and Files
+## 2708 R Programming Workspace and Files
+## 2709 R Programming Workspace and Files
+## 2710 R Programming Workspace and Files
+## 2711 R Programming Workspace and Files
+## 2712 R Programming Workspace and Files
+## 2713 R Programming Workspace and Files
+## 2714 R Programming Workspace and Files
+## 2715 R Programming Workspace and Files
+## 2716 R Programming Workspace and Files
+## 2717 R Programming Workspace and Files
+## 2718 R Programming Functions
+## 2719 R Programming Functions
+## 2720 R Programming Functions
+## 2721 R Programming Functions
+## 2722 R Programming Functions
+## 2723 R Programming Functions
+## 2724 R Programming Functions
+## 2725 R Programming Functions
+## 2726 R Programming Functions
+## 2727 R Programming Functions
+## 2728 R Programming Functions
+## 2729 R Programming Functions
+## 2730 R Programming Functions
+## 2731 R Programming Functions
+## 2732 R Programming Functions
+## 2733 R Programming Missing Values
+## 2734 R Programming Missing Values
+## 2735 R Programming Missing Values
+## 2736 R Programming Missing Values
+## 2737 R Programming Missing Values
+## 2738 R Programming Missing Values
+## 2739 R Programming Missing Values
+## 2740 R Programming Missing Values
+## 2741 R Programming Missing Values
+## 2742 R Programming Subsetting Vectors
+## 2743 R Programming Subsetting Vectors
+## 2744 R Programming Subsetting Vectors
+## 2745 R Programming Subsetting Vectors
+## 2746 R Programming Subsetting Vectors
+## 2747 R Programming Subsetting Vectors
+## 2748 R Programming Subsetting Vectors
+## 2749 R Programming Subsetting Vectors
+## 2750 R Programming Subsetting Vectors
+## 2751 R Programming Subsetting Vectors
+## 2752 R Programming Subsetting Vectors
+## 2753 R Programming Subsetting Vectors
+## 2754 R Programming Subsetting Vectors
+## 2755 R Programming Subsetting Vectors
+## 2756 R Programming Workspace and Files
+## 2757 R Programming Missing Values
+## 2758 R Programming Missing Values
+## 2759 R Programming Missing Values
+## 2760 R Programming Missing Values
+## 2761 R Programming Missing Values
+## 2762 R Programming Subsetting Vectors
+## 2763 R Programming Subsetting Vectors
+## 2764 R Programming Subsetting Vectors
+## 2765 R Programming Dates and Times
+## 2766 Getting and Cleaning Data Tidying Data with tidyr
+## 2767 R Programming Dates and Times
+## 2768 R Programming Dates and Times
+## 2769 R Programming Dates and Times
+## 2770 R Programming Dates and Times
+## 2771 Getting and Cleaning Data Tidying Data with tidyr
+## 2772 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2773 Getting and Cleaning Data Tidying Data with tidyr
+## 2774 Getting and Cleaning Data Tidying Data with tidyr
+## 2775 Getting and Cleaning Data Tidying Data with tidyr
+## 2776 R Programming Dates and Times
+## 2777 R Programming Basic Building Blocks
+## 2778 R Programming Dates and Times
+## 2779 R Programming Logic
+## 2780 R Programming Missing Values
+## 2781 R Programming Basic Building Blocks
+## 2782 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2783 R Programming Dates and Times
+## 2784 Getting and Cleaning Data Tidying Data with tidyr
+## 2785 R Programming Subsetting Vectors
+## 2786 R Programming Dates and Times
+## 2787 R Programming Workspace and Files
+## 2788 R Programming Dates and Times
+## 2789 R Programming Dates and Times
+## 2790 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2791 R Programming Dates and Times
+## 2792 R Programming Dates and Times
+## 2793 R Programming Vectors
+## 2794 R Programming Subsetting Vectors
+## 2795 Getting and Cleaning Data Tidying Data with tidyr
+## 2796 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2797 R Programming Logic
+## 2798 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2799 Getting and Cleaning Data Tidying Data with tidyr
+## 2800 R Programming Missing Values
+## 2801 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2802 R Programming Dates and Times
+## 2803 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2804 R Programming Dates and Times
+## 2805 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2806 R Programming Subsetting Vectors
+## 2807 Getting and Cleaning Data Manipulating Data with dplyr
+## 2808 R Programming Workspace and Files
+## 2809 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2810 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2811 R Programming Logic
+## 2812 R Programming Logic
+## 2813 R Programming Logic
+## 2814 R Programming Vectors
+## 2815 R Programming Vectors
+## 2816 R Programming Subsetting Vectors
+## 2817 Getting and Cleaning Data Manipulating Data with dplyr
+## 2818 R Programming Logic
+## 2819 R Programming Vectors
+## 2820 R Programming Workspace and Files
+## 2821 R Programming Looking at Data
+## 2822 R Programming Basic Building Blocks
+## 2823 R Programming Matrices and Data Frames
+## 2824 Getting and Cleaning Data Tidying Data with tidyr
+## 2825 R Programming Missing Values
+## 2826 R Programming Missing Values
+## 2827 R Programming Basic Building Blocks
+## 2828 R Programming Logic
+## 2829 R Programming Subsetting Vectors
+## 2830 R Programming Workspace and Files
+## 2831 R Programming Workspace and Files
+## 2832 R Programming Looking at Data
+## 2833 R Programming Vectors
+## 2834 R Programming Vectors
+## 2835 R Programming Vectors
+## 2836 R Programming Vectors
+## 2837 R Programming Dates and Times
+## 2838 R Programming Vectors
+## 2839 R Programming Subsetting Vectors
+## 2840 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2841 R Programming Subsetting Vectors
+## 2842 R Programming Vectors
+## 2843 Getting and Cleaning Data Manipulating Data with dplyr
+## 2844 Getting and Cleaning Data Manipulating Data with dplyr
+## 2845 R Programming Vectors
+## 2846 R Programming Vectors
+## 2847 R Programming Vectors
+## 2848 R Programming Vectors
+## 2849 R Programming Vectors
+## 2850 R Programming Logic
+## 2851 R Programming Workspace and Files
+## 2852 R Programming Logic
+## 2853 R Programming Subsetting Vectors
+## 2854 R Programming Vectors
+## 2855 R Programming Logic
+## 2856 R Programming Workspace and Files
+## 2857 R Programming Workspace and Files
+## 2858 R Programming Missing Values
+## 2859 R Programming Missing Values
+## 2860 R Programming Missing Values
+## 2861 R Programming Looking at Data
+## 2862 R Programming Basic Building Blocks
+## 2863 R Programming Missing Values
+## 2864 R Programming Matrices and Data Frames
+## 2865 R Programming Matrices and Data Frames
+## 2866 R Programming Subsetting Vectors
+## 2867 R Programming Basic Building Blocks
+## 2868 R Programming Basic Building Blocks
+## 2869 R Programming Basic Building Blocks
+## 2870 R Programming Looking at Data
+## 2871 R Programming Logic
+## 2872 R Programming Logic
+## 2873 R Programming Subsetting Vectors
+## 2874 R Programming Subsetting Vectors
+## 2875 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 2876 R Programming Subsetting Vectors
+## 2877 R Programming Workspace and Files
+## 2878 R Programming Workspace and Files
+## 2879 R Programming Subsetting Vectors
+## 2880 R Programming Subsetting Vectors
+## 2881 R Programming Vectors
+## 2882 R Programming Vectors
+## 2883 R Programming Logic
+## 2884 R Programming Missing Values
+## 2885 R Programming Looking at Data
+## 2886 R Programming Logic
+## 2887 R Programming Logic
+## 2888 R Programming Workspace and Files
+## 2889 R Programming Missing Values
+## 2890 R Programming Basic Building Blocks
+## 2891 R Programming Logic
+## 2892 R Programming Logic
+## 2893 R Programming Logic
+## 2894 R Programming Workspace and Files
+## 2895 R Programming Looking at Data
+## 2896 R Programming Looking at Data
+## 2897 R Programming Looking at Data
+## 2898 R Programming Matrices and Data Frames
+## 2899 R Programming Matrices and Data Frames
+## 2900 R Programming Basic Building Blocks
+## 2901 R Programming Looking at Data
+## 2902 R Programming Workspace and Files
+## 2903 R Programming Matrices and Data Frames
+## 2904 R Programming Basic Building Blocks
+## 2905 R Programming Basic Building Blocks
+## 2906 Getting and Cleaning Data Manipulating Data with dplyr
+## 2907 Getting and Cleaning Data Manipulating Data with dplyr
+## 2908 Getting and Cleaning Data Manipulating Data with dplyr
+## 2909 R Programming Looking at Data
+## 2910 R Programming Matrices and Data Frames
+## 2911 R Programming Matrices and Data Frames
+## 2912 R Programming Matrices and Data Frames
+## 2913 R Programming Subsetting Vectors
+## 2914 R Programming Basic Building Blocks
+## 2915 R Programming Subsetting Vectors
+## 2916 R Programming Missing Values
+## 2917 R Programming Workspace and Files
+## 2918 R Programming Workspace and Files
+## 2919 R Programming Looking at Data
+## 2920 R Programming Missing Values
+## 2921 R Programming Looking at Data
+## 2922 R Programming Matrices and Data Frames
+## 2923 R Programming Matrices and Data Frames
+## 2924 R Programming Basic Building Blocks
+## 2925 R Programming Matrices and Data Frames
+## 2926 Getting and Cleaning Data Manipulating Data with dplyr
+## 2927 R Programming Workspace and Files
+## 2928 R Programming Missing Values
+## 2929 R Programming Basic Building Blocks
+## 2930 R Programming Looking at Data
+## 2931 Getting and Cleaning Data Manipulating Data with dplyr
+## 2932 Getting and Cleaning Data Manipulating Data with dplyr
+## 2933 R Programming Looking at Data
+## 2934 R Programming Matrices and Data Frames
+## 2935 R Programming Looking at Data
+## 2936 R Programming Basic Building Blocks
+## 2937 Getting and Cleaning Data Manipulating Data with dplyr
+## 2938 R Programming Missing Values
+## 2939 Getting and Cleaning Data Manipulating Data with dplyr
+## 2940 Getting and Cleaning Data Manipulating Data with dplyr
+## 2941 R Programming Functions
+## 2942 R Programming Functions
+## 2943 R Programming Functions
+## 2944 R Programming Functions
+## 2945 R Programming Functions
+## 2946 R Programming Functions
+## 2947 R Programming Functions
+## 2948 R Programming Functions
+## 2949 R Programming Functions
+## 2950 R Programming Functions
+## 2951 R Programming Functions
+## 2952 R Programming Functions
+## 2953 R Programming Functions
+## 2954 R Programming Functions
+## 2955 R Programming Functions
+## 2956 R Programming Functions
+## 2957 R Programming Functions
+## 2958 R Programming Vectors
+## 2959 R Programming Vectors
+## 2960 R Programming Vectors
+## 2961 R Programming Vectors
+## 2962 R Programming Missing Values
+## 2963 R Programming Missing Values
+## 2964 R Programming Missing Values
+## 2965 R Programming Missing Values
+## 2966 R Programming Missing Values
+## 2967 R Programming Vectors
+## 2968 R Programming Vectors
+## 2969 R Programming Vectors
+## 2970 R Programming Vectors
+## 2971 R Programming Vectors
+## 2972 R Programming Missing Values
+## 2973 R Programming Missing Values
+## 2974 R Programming Vectors
+## 2975 R Programming Vectors
+## 2976 R Programming Vectors
+## 2977 R Programming Vectors
+## 2978 R Programming Missing Values
+## 2979 R Programming Missing Values
+## 2980 R Programming Missing Values
+## 2981 R Programming Missing Values
+## 2982 R Programming Missing Values
+## 2983 R Programming Missing Values
+## 2984 R Programming Subsetting Vectors
+## 2985 R Programming Subsetting Vectors
+## 2986 R Programming Subsetting Vectors
+## 2987 R Programming Subsetting Vectors
+## 2988 R Programming Subsetting Vectors
+## 2989 R Programming Subsetting Vectors
+## 2990 R Programming Logic
+## 2991 R Programming Logic
+## 2992 R Programming Logic
+## 2993 R Programming Logic
+## 2994 R Programming Logic
+## 2995 R Programming Logic
+## 2996 R Programming Logic
+## 2997 R Programming Logic
+## 2998 R Programming Logic
+## 2999 R Programming Missing Values
+## 3000 R Programming Subsetting Vectors
+## 3001 R Programming Subsetting Vectors
+## 3002 R Programming Subsetting Vectors
+## 3003 R Programming Subsetting Vectors
+## 3004 R Programming Subsetting Vectors
+## 3005 R Programming Subsetting Vectors
+## 3006 R Programming Subsetting Vectors
+## 3007 R Programming Subsetting Vectors
+## 3008 R Programming Subsetting Vectors
+## 3009 R Programming Subsetting Vectors
+## 3010 R Programming Subsetting Vectors
+## 3011 R Programming Subsetting Vectors
+## 3012 R Programming Subsetting Vectors
+## 3013 R Programming Subsetting Vectors
+## 3014 R Programming Subsetting Vectors
+## 3015 R Programming Subsetting Vectors
+## 3016 R Programming Subsetting Vectors
+## 3017 R Programming Subsetting Vectors
+## 3018 R Programming Subsetting Vectors
+## 3019 R Programming Subsetting Vectors
+## 3020 R Programming Logic
+## 3021 R Programming Logic
+## 3022 R Programming Dates and Times
+## 3023 R Programming Dates and Times
+## 3024 R Programming Dates and Times
+## 3025 R Programming Dates and Times
+## 3026 R Programming Dates and Times
+## 3027 R Programming Dates and Times
+## 3028 R Programming Dates and Times
+## 3029 R Programming Dates and Times
+## 3030 R Programming Dates and Times
+## 3031 R Programming Dates and Times
+## 3032 R Programming Dates and Times
+## 3033 R Programming Dates and Times
+## 3034 R Programming Dates and Times
+## 3035 R Programming Dates and Times
+## 3036 R Programming Dates and Times
+## 3037 R Programming Dates and Times
+## 3038 R Programming Dates and Times
+## 3039 R Programming Dates and Times
+## 3040 R Programming Dates and Times
+## 3041 R Programming Dates and Times
+## 3042 R Programming Dates and Times
+## 3043 R Programming Dates and Times
+## 3044 R Programming Dates and Times
+## 3045 R Programming Dates and Times
+## 3046 R Programming Dates and Times
+## 3047 R Programming Dates and Times
+## 3048 R Programming Dates and Times
+## 3049 R Programming Dates and Times
+## 3050 R Programming Functions
+## 3051 R Programming Functions
+## 3052 R Programming Functions
+## 3053 R Programming Functions
+## 3054 R Programming Functions
+## 3055 R Programming Functions
+## 3056 R Programming Functions
+## 3057 R Programming Functions
+## 3058 R Programming Functions
+## 3059 R Programming Functions
+## 3060 R Programming Functions
+## 3061 R Programming Functions
+## 3062 R Programming Functions
+## 3063 R Programming Functions
+## 3064 R Programming Functions
+## 3065 R Programming Functions
+## 3066 R Programming Functions
+## 3067 R Programming Functions
+## 3068 R Programming Functions
+## 3069 R Programming Functions
+## 3070 R Programming Functions
+## 3071 R Programming Functions
+## 3072 R Programming Functions
+## 3073 R Programming Functions
+## 3074 R Programming Functions
+## 3075 R Programming Functions
+## 3076 R Programming Functions
+## 3077 R Programming Functions
+## 3078 R Programming Matrices and Data Frames
+## 3079 R Programming Matrices and Data Frames
+## 3080 R Programming Matrices and Data Frames
+## 3081 R Programming Matrices and Data Frames
+## 3082 R Programming Matrices and Data Frames
+## 3083 R Programming Matrices and Data Frames
+## 3084 R Programming Matrices and Data Frames
+## 3085 R Programming Matrices and Data Frames
+## 3086 R Programming Matrices and Data Frames
+## 3087 R Programming Matrices and Data Frames
+## 3088 R Programming Matrices and Data Frames
+## 3089 R Programming Matrices and Data Frames
+## 3090 R Programming Matrices and Data Frames
+## 3091 R Programming Matrices and Data Frames
+## 3092 R Programming Matrices and Data Frames
+## 3093 R Programming Matrices and Data Frames
+## 3094 R Programming Matrices and Data Frames
+## 3095 R Programming Matrices and Data Frames
+## 3096 R Programming Matrices and Data Frames
+## 3097 R Programming Matrices and Data Frames
+## 3098 R Programming Matrices and Data Frames
+## 3099 R Programming Matrices and Data Frames
+## 3100 R Programming Matrices and Data Frames
+## 3101 R Programming Logic
+## 3102 R Programming Logic
+## 3103 R Programming Logic
+## 3104 R Programming Logic
+## 3105 R Programming Logic
+## 3106 R Programming Logic
+## 3107 R Programming Logic
+## 3108 R Programming Logic
+## 3109 R Programming Logic
+## 3110 R Programming Logic
+## 3111 R Programming Logic
+## 3112 R Programming Logic
+## 3113 R Programming Logic
+## 3114 R Programming Logic
+## 3115 R Programming Logic
+## 3116 R Programming Logic
+## 3117 R Programming Logic
+## 3118 R Programming Logic
+## 3119 R Programming Logic
+## 3120 R Programming Logic
+## 3121 R Programming Logic
+## 3122 R Programming Logic
+## 3123 R Programming Logic
+## 3124 R Programming Logic
+## 3125 R Programming Vectors
+## 3126 R Programming Vectors
+## 3127 R Programming Vectors
+## 3128 R Programming Vectors
+## 3129 R Programming Vectors
+## 3130 R Programming Vectors
+## 3131 Exploratory_Data_Analysis Plotting_Systems
+## 3132 Exploratory_Data_Analysis Plotting_Systems
+## 3133 Exploratory_Data_Analysis Plotting_Systems
+## 3134 Exploratory_Data_Analysis Plotting_Systems
+## 3135 Exploratory_Data_Analysis Plotting_Systems
+## 3136 Exploratory_Data_Analysis Plotting_Systems
+## 3137 Exploratory_Data_Analysis Plotting_Systems
+## 3138 Exploratory_Data_Analysis Plotting_Systems
+## 3139 Exploratory_Data_Analysis Plotting_Systems
+## 3140 Exploratory_Data_Analysis Plotting_Systems
+## 3141 Exploratory_Data_Analysis Plotting_Systems
+## 3142 Exploratory_Data_Analysis Plotting_Systems
+## 3143 Exploratory_Data_Analysis Plotting_Systems
+## 3144 Exploratory_Data_Analysis Plotting_Systems
+## 3145 Exploratory_Data_Analysis Plotting_Systems
+## 3146 Exploratory_Data_Analysis Plotting_Systems
+## 3147 Exploratory_Data_Analysis Plotting_Systems
+## 3148 Exploratory_Data_Analysis Plotting_Systems
+## 3149 Exploratory_Data_Analysis Plotting_Systems
+## 3150 Exploratory_Data_Analysis Plotting_Systems
+## 3151 Exploratory_Data_Analysis Plotting_Systems
+## 3152 Getting and Cleaning Data Manipulating Data with dplyr
+## 3153 Getting and Cleaning Data Manipulating Data with dplyr
+## 3154 Getting and Cleaning Data Manipulating Data with dplyr
+## 3155 Getting and Cleaning Data Manipulating Data with dplyr
+## 3156 Getting and Cleaning Data Manipulating Data with dplyr
+## 3157 Getting and Cleaning Data Manipulating Data with dplyr
+## 3158 Getting and Cleaning Data Manipulating Data with dplyr
+## 3159 Getting and Cleaning Data Manipulating Data with dplyr
+## 3160 Getting and Cleaning Data Manipulating Data with dplyr
+## 3161 Getting and Cleaning Data Manipulating Data with dplyr
+## 3162 Getting and Cleaning Data Manipulating Data with dplyr
+## 3163 Getting and Cleaning Data Manipulating Data with dplyr
+## 3164 Getting and Cleaning Data Manipulating Data with dplyr
+## 3165 Getting and Cleaning Data Manipulating Data with dplyr
+## 3166 Getting and Cleaning Data Manipulating Data with dplyr
+## 3167 Getting and Cleaning Data Manipulating Data with dplyr
+## 3168 Getting and Cleaning Data Manipulating Data with dplyr
+## 3169 Getting and Cleaning Data Manipulating Data with dplyr
+## 3170 Getting and Cleaning Data Manipulating Data with dplyr
+## 3171 Getting and Cleaning Data Manipulating Data with dplyr
+## 3172 Getting and Cleaning Data Manipulating Data with dplyr
+## 3173 Getting and Cleaning Data Manipulating Data with dplyr
+## 3174 Getting and Cleaning Data Manipulating Data with dplyr
+## 3175 Getting and Cleaning Data Manipulating Data with dplyr
+## 3176 Getting and Cleaning Data Manipulating Data with dplyr
+## 3177 Getting and Cleaning Data Manipulating Data with dplyr
+## 3178 Getting and Cleaning Data Manipulating Data with dplyr
+## 3179 Getting and Cleaning Data Manipulating Data with dplyr
+## 3180 Getting and Cleaning Data Manipulating Data with dplyr
+## 3181 Getting and Cleaning Data Manipulating Data with dplyr
+## 3182 Getting and Cleaning Data Manipulating Data with dplyr
+## 3183 Getting and Cleaning Data Manipulating Data with dplyr
+## 3184 Getting and Cleaning Data Manipulating Data with dplyr
+## 3185 Getting and Cleaning Data Manipulating Data with dplyr
+## 3186 Getting and Cleaning Data Manipulating Data with dplyr
+## 3187 Getting and Cleaning Data Manipulating Data with dplyr
+## 3188 Getting and Cleaning Data Manipulating Data with dplyr
+## 3189 Getting and Cleaning Data Manipulating Data with dplyr
+## 3190 Getting and Cleaning Data Manipulating Data with dplyr
+## 3191 Getting and Cleaning Data Manipulating Data with dplyr
+## 3192 Exploratory_Data_Analysis Base_Plotting_System
+## 3193 Exploratory_Data_Analysis Base_Plotting_System
+## 3194 Exploratory_Data_Analysis Base_Plotting_System
+## 3195 Exploratory_Data_Analysis Base_Plotting_System
+## 3196 Exploratory_Data_Analysis Base_Plotting_System
+## 3197 Exploratory_Data_Analysis Base_Plotting_System
+## 3198 Exploratory_Data_Analysis Base_Plotting_System
+## 3199 Exploratory_Data_Analysis Base_Plotting_System
+## 3200 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3201 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3202 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3203 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3204 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3205 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3206 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3207 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3208 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3209 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3210 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3211 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3212 R Programming Looking at Data
+## 3213 R Programming Looking at Data
+## 3214 R Programming Looking at Data
+## 3215 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3216 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3217 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3218 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3219 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3220 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3221 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3222 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3223 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3224 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3225 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3226 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3227 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3228 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3229 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3230 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3231 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3232 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3233 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 3234 Exploratory_Data_Analysis Base_Plotting_System
+## 3235 Exploratory_Data_Analysis Base_Plotting_System
+## 3236 Exploratory_Data_Analysis Base_Plotting_System
+## 3237 Exploratory_Data_Analysis Base_Plotting_System
+## 3238 Exploratory_Data_Analysis Base_Plotting_System
+## 3239 Exploratory_Data_Analysis Base_Plotting_System
+## 3240 Exploratory_Data_Analysis Base_Plotting_System
+## 3241 Exploratory_Data_Analysis Base_Plotting_System
+## 3242 Exploratory_Data_Analysis Base_Plotting_System
+## 3243 Exploratory_Data_Analysis Base_Plotting_System
+## 3244 Exploratory_Data_Analysis Base_Plotting_System
+## 3245 Exploratory_Data_Analysis Base_Plotting_System
+## 3246 Exploratory_Data_Analysis Base_Plotting_System
+## 3247 Exploratory_Data_Analysis Base_Plotting_System
+## 3248 Exploratory_Data_Analysis Base_Plotting_System
+## 3249 Exploratory_Data_Analysis Base_Plotting_System
+## 3250 R Programming Looking at Data
+## 3251 R Programming Looking at Data
+## 3252 R Programming Looking at Data
+## 3253 R Programming Looking at Data
+## 3254 R Programming Looking at Data
+## 3255 R Programming Looking at Data
+## 3256 R Programming Looking at Data
+## 3257 R Programming Looking at Data
+## 3258 R Programming Looking at Data
+## 3259 R Programming Looking at Data
+## 3260 R Programming Looking at Data
+## 3261 R Programming Looking at Data
+## 3262 Exploratory_Data_Analysis Base_Plotting_System
+## 3263 Exploratory_Data_Analysis Base_Plotting_System
+## 3264 Exploratory_Data_Analysis Base_Plotting_System
+## 3265 Exploratory_Data_Analysis Base_Plotting_System
+## 3266 Exploratory_Data_Analysis Base_Plotting_System
+## 3267 Exploratory_Data_Analysis Base_Plotting_System
+## 3268 Exploratory_Data_Analysis Base_Plotting_System
+## 3269 Exploratory_Data_Analysis Clustering_Example
+## 3270 Exploratory_Data_Analysis Clustering_Example
+## 3271 Exploratory_Data_Analysis Clustering_Example
+## 3272 Exploratory_Data_Analysis Clustering_Example
+## 3273 Exploratory_Data_Analysis Clustering_Example
+## 3274 Exploratory_Data_Analysis Clustering_Example
+## 3275 Exploratory_Data_Analysis Clustering_Example
+## 3276 Exploratory_Data_Analysis Clustering_Example
+## 3277 Exploratory_Data_Analysis Clustering_Example
+## 3278 Exploratory_Data_Analysis Clustering_Example
+## 3279 Exploratory_Data_Analysis Clustering_Example
+## 3280 Exploratory_Data_Analysis Clustering_Example
+## 3281 Exploratory_Data_Analysis Clustering_Example
+## 3282 Exploratory_Data_Analysis Clustering_Example
+## 3283 Exploratory_Data_Analysis Clustering_Example
+## 3284 Exploratory_Data_Analysis Clustering_Example
+## 3285 Exploratory_Data_Analysis Clustering_Example
+## 3286 Exploratory_Data_Analysis Clustering_Example
+## 3287 Exploratory_Data_Analysis Base_Plotting_System
+## 3288 Exploratory_Data_Analysis Base_Plotting_System
+## 3289 Exploratory_Data_Analysis Base_Plotting_System
+## 3290 Exploratory_Data_Analysis Base_Plotting_System
+## 3291 Exploratory_Data_Analysis Base_Plotting_System
+## 3292 Exploratory_Data_Analysis Base_Plotting_System
+## 3293 Exploratory_Data_Analysis Base_Plotting_System
+## 3294 Exploratory_Data_Analysis Base_Plotting_System
+## 3295 Exploratory_Data_Analysis Base_Plotting_System
+## 3296 Exploratory_Data_Analysis Base_Plotting_System
+## 3297 Exploratory_Data_Analysis Clustering_Example
+## 3298 Exploratory_Data_Analysis Clustering_Example
+## 3299 Exploratory_Data_Analysis Clustering_Example
+## 3300 Exploratory_Data_Analysis Clustering_Example
+## 3301 Exploratory_Data_Analysis Clustering_Example
+## 3302 Exploratory_Data_Analysis Clustering_Example
+## 3303 Exploratory_Data_Analysis Clustering_Example
+## 3304 Exploratory_Data_Analysis Clustering_Example
+## 3305 Exploratory_Data_Analysis Clustering_Example
+## 3306 Exploratory_Data_Analysis Clustering_Example
+## 3307 Exploratory_Data_Analysis Clustering_Example
+## 3308 Exploratory_Data_Analysis Clustering_Example
+## 3309 Exploratory_Data_Analysis Clustering_Example
+## 3310 Exploratory_Data_Analysis Clustering_Example
+## 3311 Exploratory_Data_Analysis Clustering_Example
+## 3312 Exploratory_Data_Analysis Clustering_Example
+## 3313 Exploratory_Data_Analysis Clustering_Example
+## 3314 Exploratory_Data_Analysis Clustering_Example
+## 3315 Exploratory_Data_Analysis Clustering_Example
+## 3316 Exploratory_Data_Analysis Clustering_Example
+## 3317 Exploratory_Data_Analysis Clustering_Example
+## 3318 Exploratory_Data_Analysis Clustering_Example
+## 3319 R Programming Basic Building Blocks
+## 3320 R Programming Basic Building Blocks
+## 3321 R Programming Logic
+## 3322 R Programming Functions
+## 3323 R Programming Dates and Times
+## 3324 R Programming Basic Building Blocks
+## 3325 R Programming Functions
+## 3326 R Programming Logic
+## 3327 R Programming Basic Building Blocks
+## 3328 R Programming Functions
+## 3329 R Programming Basic Building Blocks
+## 3330 R Programming Basic Building Blocks
+## 3331 R Programming Logic
+## 3332 R Programming Subsetting Vectors
+## 3333 R Programming Basic Building Blocks
+## 3334 R Programming Dates and Times
+## 3335 R Programming Subsetting Vectors
+## 3336 R Programming Workspace and Files
+## 3337 R Programming Workspace and Files
+## 3338 R Programming Subsetting Vectors
+## 3339 R Programming Dates and Times
+## 3340 R Programming Workspace and Files
+## 3341 R Programming Subsetting Vectors
+## 3342 R Programming Functions
+## 3343 R Programming Workspace and Files
+## 3344 R Programming Workspace and Files
+## 3345 R Programming Vectors
+## 3346 R Programming Functions
+## 3347 R Programming Subsetting Vectors
+## 3348 R Programming Dates and Times
+## 3349 R Programming Dates and Times
+## 3350 R Programming Vectors
+## 3351 R Programming Dates and Times
+## 3352 R Programming Dates and Times
+## 3353 R Programming Basic Building Blocks
+## 3354 R Programming Subsetting Vectors
+## 3355 R Programming Subsetting Vectors
+## 3356 R Programming Workspace and Files
+## 3357 R Programming Logic
+## 3358 R Programming Logic
+## 3359 R Programming Logic
+## 3360 R Programming Workspace and Files
+## 3361 R Programming Workspace and Files
+## 3362 R Programming Dates and Times
+## 3363 R Programming Subsetting Vectors
+## 3364 R Programming Subsetting Vectors
+## 3365 R Programming Subsetting Vectors
+## 3366 R Programming Functions
+## 3367 R Programming Vectors
+## 3368 R Programming Logic
+## 3369 R Programming Logic
+## 3370 R Programming Logic
+## 3371 R Programming Functions
+## 3372 R Programming Dates and Times
+## 3373 R Programming Dates and Times
+## 3374 R Programming Dates and Times
+## 3375 R Programming Basic Building Blocks
+## 3376 R Programming Functions
+## 3377 R Programming Functions
+## 3378 R Programming Vectors
+## 3379 R Programming Vectors
+## 3380 R Programming Vectors
+## 3381 R Programming Subsetting Vectors
+## 3382 R Programming Subsetting Vectors
+## 3383 R Programming Subsetting Vectors
+## 3384 R Programming Workspace and Files
+## 3385 R Programming Workspace and Files
+## 3386 R Programming Workspace and Files
+## 3387 R Programming Workspace and Files
+## 3388 R Programming Logic
+## 3389 R Programming Dates and Times
+## 3390 R Programming Logic
+## 3391 R Programming Workspace and Files
+## 3392 R Programming Functions
+## 3393 R Programming Dates and Times
+## 3394 R Programming Dates and Times
+## 3395 R Programming Dates and Times
+## 3396 R Programming Logic
+## 3397 R Programming Logic
+## 3398 R Programming Logic
+## 3399 R Programming Logic
+## 3400 R Programming Logic
+## 3401 R Programming Logic
+## 3402 R Programming Logic
+## 3403 R Programming Functions
+## 3404 R Programming Functions
+## 3405 R Programming Vectors
+## 3406 R Programming Vectors
+## 3407 R Programming Vectors
+## 3408 R Programming Workspace and Files
+## 3409 R Programming Workspace and Files
+## 3410 R Programming Workspace and Files
+## 3411 R Programming Workspace and Files
+## 3412 R Programming Logic
+## 3413 R Programming Dates and Times
+## 3414 R Programming Vectors
+## 3415 R Programming Workspace and Files
+## 3416 R Programming Workspace and Files
+## 3417 R Programming Workspace and Files
+## 3418 R Programming Workspace and Files
+## 3419 R Programming Logic
+## 3420 R Programming Functions
+## 3421 R Programming Functions
+## 3422 R Programming Logic
+## 3423 R Programming Logic
+## 3424 R Programming Vectors
+## 3425 R Programming Vectors
+## 3426 R Programming Functions
+## 3427 R Programming Basic Building Blocks
+## 3428 R Programming Basic Building Blocks
+## 3429 R Programming Basic Building Blocks
+## 3430 R Programming Basic Building Blocks
+## 3431 R Programming Vectors
+## 3432 R Programming Vectors
+## 3433 R Programming Vectors
+## 3434 R Programming Vectors
+## 3435 R Programming Vectors
+## 3436 R Programming Vectors
+## 3437 R Programming Vectors
+## 3438 R Programming Basic Building Blocks
+## 3439 R Programming Missing Values
+## 3440 R Programming Missing Values
+## 3441 R Programming Functions
+## 3442 R Programming Logic
+## 3443 R Programming Functions
+## 3444 R Programming Functions
+## 3445 R Programming Missing Values
+## 3446 R Programming Missing Values
+## 3447 R Programming Missing Values
+## 3448 R Programming Dates and Times
+## 3449 R Programming Logic
+## 3450 R Programming Basic Building Blocks
+## 3451 R Programming Workspace and Files
+## 3452 R Programming Subsetting Vectors
+## 3453 R Programming Subsetting Vectors
+## 3454 R Programming Logic
+## 3455 R Programming Functions
+## 3456 R Programming Logic
+## 3457 R Programming Logic
+## 3458 R Programming Logic
+## 3459 R Programming Dates and Times
+## 3460 R Programming Basic Building Blocks
+## 3461 R Programming Functions
+## 3462 R Programming Logic
+## 3463 R Programming Dates and Times
+## 3464 R Programming Logic
+## 3465 R Programming Logic
+## 3466 R Programming Subsetting Vectors
+## 3467 R Programming Functions
+## 3468 R Programming Functions
+## 3469 R Programming Basic Building Blocks
+## 3470 R Programming Basic Building Blocks
+## 3471 R Programming Basic Building Blocks
+## 3472 R Programming Logic
+## 3473 R Programming Dates and Times
+## 3474 R Programming Workspace and Files
+## 3475 R Programming Subsetting Vectors
+## 3476 R Programming Basic Building Blocks
+## 3477 R Programming Functions
+## 3478 R Programming Basic Building Blocks
+## 3479 R Programming Basic Building Blocks
+## 3480 R Programming Functions
+## 3481 R Programming Subsetting Vectors
+## 3482 R Programming Subsetting Vectors
+## 3483 R Programming Missing Values
+## 3484 R Programming Subsetting Vectors
+## 3485 R Programming Functions
+## 3486 R Programming Dates and Times
+## 3487 R Programming Dates and Times
+## 3488 R Programming Logic
+## 3489 R Programming Dates and Times
+## 3490 R Programming Dates and Times
+## 3491 R Programming Functions
+## 3492 R Programming Dates and Times
+## 3493 R Programming Subsetting Vectors
+## 3494 R Programming Subsetting Vectors
+## 3495 R Programming Subsetting Vectors
+## 3496 R Programming Logic
+## 3497 R Programming Functions
+## 3498 R Programming Missing Values
+## 3499 R Programming Functions
+## 3500 R Programming Missing Values
+## 3501 R Programming Logic
+## 3502 R Programming Missing Values
+## 3503 R Programming Missing Values
+## 3504 R Programming Subsetting Vectors
+## 3505 R Programming Missing Values
+## 3506 R Programming Dates and Times
+## 3507 R Programming Dates and Times
+## 3508 R Programming Missing Values
+## 3509 R Programming Missing Values
+## 3510 R Programming Subsetting Vectors
+## 3511 R Programming Missing Values
+## 3512 R Programming Subsetting Vectors
+## 3513 R Programming Dates and Times
+## 3514 R Programming Workspace and Files
+## 3515 R Programming Workspace and Files
+## 3516 R Programming Logic
+## 3517 R Programming Missing Values
+## 3518 R Programming Logic
+## 3519 R Programming Subsetting Vectors
+## 3520 R Programming Workspace and Files
+## 3521 R Programming Missing Values
+## 3522 R Programming Workspace and Files
+## 3523 R Programming Logic
+## 3524 R Programming Dates and Times
+## 3525 R Programming Logic
+## 3526 R Programming Missing Values
+## 3527 R Programming Logic
+## 3528 R Programming Functions
+## 3529 R Programming Vectors
+## 3530 R Programming Subsetting Vectors
+## 3531 R Programming Basic Building Blocks
+## 3532 R Programming Subsetting Vectors
+## 3533 R Programming Subsetting Vectors
+## 3534 R Programming Workspace and Files
+## 3535 R Programming Workspace and Files
+## 3536 R Programming Logic
+## 3537 R Programming Workspace and Files
+## 3538 R Programming Subsetting Vectors
+## 3539 R Programming Workspace and Files
+## 3540 R Programming Subsetting Vectors
+## 3541 R Programming Basic Building Blocks
+## 3542 R Programming Basic Building Blocks
+## 3543 R Programming Workspace and Files
+## 3544 R Programming Subsetting Vectors
+## 3545 R Programming Logic
+## 3546 R Programming Subsetting Vectors
+## 3547 R Programming Subsetting Vectors
+## 3548 R Programming Basic Building Blocks
+## 3549 R Programming Subsetting Vectors
+## 3550 R Programming Subsetting Vectors
+## 3551 R Programming Dates and Times
+## 3552 R Programming Vectors
+## 3553 R Programming Vectors
+## 3554 R Programming Basic Building Blocks
+## 3555 R Programming Logic
+## 3556 R Programming Workspace and Files
+## 3557 R Programming Workspace and Files
+## 3558 R Programming Basic Building Blocks
+## 3559 R Programming Basic Building Blocks
+## 3560 R Programming Functions
+## 3561 R Programming Functions
+## 3562 R Programming Subsetting Vectors
+## 3563 R Programming Dates and Times
+## 3564 R Programming Basic Building Blocks
+## 3565 R Programming Subsetting Vectors
+## 3566 R Programming Functions
+## 3567 R Programming Functions
+## 3568 R Programming Vectors
+## 3569 R Programming Functions
+## 3570 R Programming Workspace and Files
+## 3571 R Programming Workspace and Files
+## 3572 R Programming Basic Building Blocks
+## 3573 R Programming Functions
+## 3574 R Programming Dates and Times
+## 3575 R Programming Dates and Times
+## 3576 R Programming Vectors
+## 3577 R Programming Logic
+## 3578 R Programming Logic
+## 3579 R Programming Workspace and Files
+## 3580 R Programming Workspace and Files
+## 3581 R Programming Workspace and Files
+## 3582 R Programming Subsetting Vectors
+## 3583 R Programming Vectors
+## 3584 R Programming Vectors
+## 3585 R Programming Logic
+## 3586 R Programming Vectors
+## 3587 R Programming Vectors
+## 3588 R Programming Logic
+## 3589 R Programming Vectors
+## 3590 R Programming Vectors
+## 3591 R Programming Vectors
+## 3592 R Programming Functions
+## 3593 R Programming Functions
+## 3594 R Programming Vectors
+## 3595 R Programming Dates and Times
+## 3596 R Programming Basic Building Blocks
+## 3597 R Programming Basic Building Blocks
+## 3598 R Programming Basic Building Blocks
+## 3599 R Programming Basic Building Blocks
+## 3600 R Programming Logic
+## 3601 R Programming Logic
+## 3602 R Programming Logic
+## 3603 R Programming Vectors
+## 3604 R Programming Functions
+## 3605 R Programming Missing Values
+## 3606 R Programming Missing Values
+## 3607 R Programming Logic
+## 3608 R Programming Logic
+## 3609 R Programming Functions
+## 3610 R Programming Subsetting Vectors
+## 3611 R Programming Missing Values
+## 3612 R Programming Logic
+## 3613 R Programming Logic
+## 3614 R Programming Logic
+## 3615 R Programming Logic
+## 3616 R Programming Logic
+## 3617 R Programming Workspace and Files
+## 3618 R Programming Workspace and Files
+## 3619 R Programming Vectors
+## 3620 R Programming Subsetting Vectors
+## 3621 R Programming Subsetting Vectors
+## 3622 R Programming Workspace and Files
+## 3623 R Programming Subsetting Vectors
+## 3624 R Programming Subsetting Vectors
+## 3625 R Programming Vectors
+## 3626 R Programming Logic
+## 3627 R Programming Logic
+## 3628 R Programming Logic
+## 3629 R Programming Workspace and Files
+## 3630 R Programming Functions
+## 3631 R Programming Functions
+## 3632 R Programming Functions
+## 3633 R Programming Functions
+## 3634 R Programming Functions
+## 3635 R Programming Missing Values
+## 3636 R Programming Dates and Times
+## 3637 R Programming Vectors
+## 3638 R Programming Subsetting Vectors
+## 3639 R Programming Vectors
+## 3640 R Programming Missing Values
+## 3641 R Programming Logic
+## 3642 R Programming Vectors
+## 3643 R Programming Logic
+## 3644 R Programming Subsetting Vectors
+## 3645 R Programming Vectors
+## 3646 R Programming Vectors
+## 3647 R Programming Vectors
+## 3648 R Programming Vectors
+## 3649 R Programming Functions
+## 3650 R Programming Subsetting Vectors
+## 3651 R Programming Basic Building Blocks
+## 3652 R Programming Logic
+## 3653 R Programming Logic
+## 3654 R Programming Vectors
+## 3655 R Programming Vectors
+## 3656 R Programming Vectors
+## 3657 R Programming Subsetting Vectors
+## 3658 R Programming Logic
+## 3659 R Programming Vectors
+## 3660 R Programming Vectors
+## 3661 R Programming Vectors
+## 3662 R Programming Vectors
+## 3663 R Programming Workspace and Files
+## 3664 R Programming Missing Values
+## 3665 R Programming Missing Values
+## 3666 R Programming Dates and Times
+## 3667 R Programming Basic Building Blocks
+## 3668 R Programming Vectors
+## 3669 R Programming Vectors
+## 3670 R Programming Basic Building Blocks
+## 3671 R Programming Workspace and Files
+## 3672 R Programming Functions
+## 3673 R Programming Dates and Times
+## 3674 R Programming Missing Values
+## 3675 R Programming Missing Values
+## 3676 R Programming Missing Values
+## 3677 R Programming Subsetting Vectors
+## 3678 R Programming Logic
+## 3679 R Programming Functions
+## 3680 R Programming Functions
+## 3681 R Programming Functions
+## 3682 R Programming Functions
+## 3683 R Programming Workspace and Files
+## 3684 R Programming Dates and Times
+## 3685 R Programming Vectors
+## 3686 R Programming Vectors
+## 3687 R Programming Vectors
+## 3688 R Programming Basic Building Blocks
+## 3689 R Programming Basic Building Blocks
+## 3690 R Programming Subsetting Vectors
+## 3691 R Programming Dates and Times
+## 3692 R Programming Logic
+## 3693 R Programming Logic
+## 3694 R Programming Logic
+## 3695 R Programming Functions
+## 3696 R Programming Vectors
+## 3697 R Programming Functions
+## 3698 R Programming Vectors
+## 3699 R Programming Basic Building Blocks
+## 3700 R Programming Dates and Times
+## 3701 R Programming Dates and Times
+## 3702 R Programming Functions
+## 3703 R Programming Logic
+## 3704 R Programming Functions
+## 3705 R Programming Dates and Times
+## 3706 R Programming Dates and Times
+## 3707 R Programming Dates and Times
+## 3708 R Programming Dates and Times
+## 3709 R Programming Vectors
+## 3710 R Programming Functions
+## 3711 R Programming Dates and Times
+## 3712 R Programming Missing Values
+## 3713 R Programming Subsetting Vectors
+## 3714 R Programming Dates and Times
+## 3715 R Programming Dates and Times
+## 3716 R Programming Dates and Times
+## 3717 R Programming Basic Building Blocks
+## 3718 R Programming Basic Building Blocks
+## 3719 R Programming Dates and Times
+## 3720 R Programming Basic Building Blocks
+## 3721 R Programming Dates and Times
+## 3722 R Programming Functions
+## 3723 R Programming Dates and Times
+## 3724 R Programming Dates and Times
+## 3725 R Programming Dates and Times
+## 3726 R Programming Dates and Times
+## 3727 R Programming Dates and Times
+## 3728 R Programming Logic
+## 3729 R Programming Basic Building Blocks
+## 3730 R Programming Logic
+## 3731 R Programming Logic
+## 3732 R Programming Basic Building Blocks
+## 3733 R Programming Logic
+## 3734 R Programming Logic
+## 3735 R Programming Logic
+## 3736 R Programming Workspace and Files
+## 3737 R Programming Workspace and Files
+## 3738 R Programming Workspace and Files
+## 3739 R Programming Workspace and Files
+## 3740 R Programming Vectors
+## 3741 R Programming Basic Building Blocks
+## 3742 R Programming Logic
+## 3743 R Programming Logic
+## 3744 R Programming Workspace and Files
+## 3745 R Programming Logic
+## 3746 R Programming Logic
+## 3747 R Programming Basic Building Blocks
+## 3748 R Programming Dates and Times
+## 3749 R Programming Workspace and Files
+## 3750 R Programming Vectors
+## 3751 R Programming Vectors
+## 3752 R Programming Workspace and Files
+## 3753 R Programming Basic Building Blocks
+## 3754 R Programming Basic Building Blocks
+## 3755 R Programming Vectors
+## 3756 R Programming Subsetting Vectors
+## 3757 R Programming Missing Values
+## 3758 R Programming Basic Building Blocks
+## 3759 R Programming Basic Building Blocks
+## 3760 R Programming Basic Building Blocks
+## 3761 R Programming Dates and Times
+## 3762 R Programming Dates and Times
+## 3763 R Programming Basic Building Blocks
+## 3764 R Programming Dates and Times
+## 3765 R Programming Dates and Times
+## 3766 R Programming Logic
+## 3767 R Programming Dates and Times
+## 3768 R Programming Subsetting Vectors
+## 3769 R Programming Subsetting Vectors
+## 3770 R Programming Missing Values
+## 3771 R Programming Basic Building Blocks
+## 3772 R Programming Dates and Times
+## 3773 R Programming Basic Building Blocks
+## 3774 R Programming Dates and Times
+## 3775 R Programming Workspace and Files
+## 3776 R Programming Basic Building Blocks
+## 3777 R Programming Workspace and Files
+## 3778 R Programming Dates and Times
+## 3779 R Programming Logic
+## 3780 R Programming Dates and Times
+## 3781 R Programming Dates and Times
+## 3782 R Programming Basic Building Blocks
+## 3783 R Programming Workspace and Files
+## 3784 R Programming Dates and Times
+## 3785 R Programming Vectors
+## 3786 R Programming Basic Building Blocks
+## 3787 R Programming Logic
+## 3788 R Programming Logic
+## 3789 R Programming Logic
+## 3790 R Programming Logic
+## 3791 R Programming Dates and Times
+## 3792 R Programming Basic Building Blocks
+## 3793 R Programming Subsetting Vectors
+## 3794 R Programming Subsetting Vectors
+## 3795 R Programming Subsetting Vectors
+## 3796 R Programming Basic Building Blocks
+## 3797 R Programming Dates and Times
+## 3798 R Programming Dates and Times
+## 3799 R Programming Logic
+## 3800 R Programming Dates and Times
+## 3801 R Programming Subsetting Vectors
+## 3802 R Programming Workspace and Files
+## 3803 R Programming Workspace and Files
+## 3804 R Programming Basic Building Blocks
+## 3805 R Programming Dates and Times
+## 3806 R Programming Basic Building Blocks
+## 3807 R Programming Basic Building Blocks
+## 3808 R Programming Basic Building Blocks
+## 3809 R Programming Vectors
+## 3810 R Programming Workspace and Files
+## 3811 R Programming Logic
+## 3812 R Programming Subsetting Vectors
+## 3813 R Programming Workspace and Files
+## 3814 R Programming Vectors
+## 3815 R Programming Dates and Times
+## 3816 R Programming Logic
+## 3817 R Programming Logic
+## 3818 R Programming Dates and Times
+## 3819 R Programming Subsetting Vectors
+## 3820 R Programming Missing Values
+## 3821 R Programming Missing Values
+## 3822 R Programming Workspace and Files
+## 3823 R Programming Workspace and Files
+## 3824 R Programming Vectors
+## 3825 R Programming Missing Values
+## 3826 R Programming Missing Values
+## 3827 R Programming Vectors
+## 3828 R Programming Logic
+## 3829 R Programming Dates and Times
+## 3830 R Programming Dates and Times
+## 3831 R Programming Dates and Times
+## 3832 R Programming Vectors
+## 3833 R Programming Dates and Times
+## 3834 R Programming Subsetting Vectors
+## 3835 R Programming Subsetting Vectors
+## 3836 R Programming Missing Values
+## 3837 R Programming Missing Values
+## 3838 R Programming Workspace and Files
+## 3839 R Programming Dates and Times
+## 3840 R Programming Dates and Times
+## 3841 R Programming Dates and Times
+## 3842 R Programming Dates and Times
+## 3843 R Programming Logic
+## 3844 R Programming Logic
+## 3845 R Programming Subsetting Vectors
+## 3846 R Programming Vectors
+## 3847 R Programming Subsetting Vectors
+## 3848 R Programming Dates and Times
+## 3849 R Programming Basic Building Blocks
+## 3850 R Programming Logic
+## 3851 R Programming Logic
+## 3852 R Programming Logic
+## 3853 R Programming Logic
+## 3854 R Programming Logic
+## 3855 R Programming Logic
+## 3856 R Programming Subsetting Vectors
+## 3857 R Programming Missing Values
+## 3858 R Programming Logic
+## 3859 R Programming Vectors
+## 3860 R Programming Subsetting Vectors
+## 3861 R Programming Vectors
+## 3862 R Programming Logic
+## 3863 R Programming Subsetting Vectors
+## 3864 R Programming Logic
+## 3865 R Programming Logic
+## 3866 R Programming Logic
+## 3867 R Programming Vectors
+## 3868 R Programming Missing Values
+## 3869 R Programming Workspace and Files
+## 3870 R Programming Workspace and Files
+## 3871 R Programming Vectors
+## 3872 R Programming Workspace and Files
+## 3873 R Programming Workspace and Files
+## 3874 R Programming Subsetting Vectors
+## 3875 R Programming Workspace and Files
+## 3876 R Programming Subsetting Vectors
+## 3877 R Programming Subsetting Vectors
+## 3878 R Programming Vectors
+## 3879 R Programming Subsetting Vectors
+## 3880 R Programming Vectors
+## 3881 R Programming Vectors
+## 3882 R Programming Vectors
+## 3883 R Programming Missing Values
+## 3884 R Programming Missing Values
+## 3885 R Programming Missing Values
+## 3886 R Programming Logic
+## 3887 R Programming Workspace and Files
+## 3888 R Programming Subsetting Vectors
+## 3889 R Programming Subsetting Vectors
+## 3890 R Programming Subsetting Vectors
+## 3891 R Programming Subsetting Vectors
+## 3892 R Programming Subsetting Vectors
+## 3893 R Programming Missing Values
+## 3894 R Programming Subsetting Vectors
+## 3895 Getting and Cleaning Data Manipulating Data with dplyr
+## 3896 Getting and Cleaning Data Manipulating Data with dplyr
+## 3897 R Programming Functions
+## 3898 Getting and Cleaning Data Tidying Data with tidyr
+## 3899 Getting and Cleaning Data Manipulating Data with dplyr
+## 3900 Getting and Cleaning Data Manipulating Data with dplyr
+## 3901 R Programming Matrices and Data Frames
+## 3902 Getting and Cleaning Data Manipulating Data with dplyr
+## 3903 Getting and Cleaning Data Manipulating Data with dplyr
+## 3904 Getting and Cleaning Data Tidying Data with tidyr
+## 3905 Getting and Cleaning Data Tidying Data with tidyr
+## 3906 Getting and Cleaning Data Manipulating Data with dplyr
+## 3907 Getting and Cleaning Data Manipulating Data with dplyr
+## 3908 Getting and Cleaning Data Manipulating Data with dplyr
+## 3909 Getting and Cleaning Data Manipulating Data with dplyr
+## 3910 Getting and Cleaning Data Manipulating Data with dplyr
+## 3911 R Programming Functions
+## 3912 R Programming Matrices and Data Frames
+## 3913 R Programming Matrices and Data Frames
+## 3914 Getting and Cleaning Data Tidying Data with tidyr
+## 3915 Getting and Cleaning Data Manipulating Data with dplyr
+## 3916 Getting and Cleaning Data Manipulating Data with dplyr
+## 3917 Getting and Cleaning Data Manipulating Data with dplyr
+## 3918 R Programming Functions
+## 3919 R Programming Functions
+## 3920 Getting and Cleaning Data Tidying Data with tidyr
+## 3921 Getting and Cleaning Data Manipulating Data with dplyr
+## 3922 Getting and Cleaning Data Tidying Data with tidyr
+## 3923 Getting and Cleaning Data Manipulating Data with dplyr
+## 3924 Getting and Cleaning Data Manipulating Data with dplyr
+## 3925 Getting and Cleaning Data Manipulating Data with dplyr
+## 3926 Getting and Cleaning Data Manipulating Data with dplyr
+## 3927 Getting and Cleaning Data Manipulating Data with dplyr
+## 3928 Getting and Cleaning Data Manipulating Data with dplyr
+## 3929 R Programming Functions
+## 3930 Getting and Cleaning Data Manipulating Data with dplyr
+## 3931 Getting and Cleaning Data Manipulating Data with dplyr
+## 3932 R Programming Matrices and Data Frames
+## 3933 R Programming Matrices and Data Frames
+## 3934 R Programming Functions
+## 3935 Getting and Cleaning Data Tidying Data with tidyr
+## 3936 R Programming Functions
+## 3937 Getting and Cleaning Data Manipulating Data with dplyr
+## 3938 Getting and Cleaning Data Tidying Data with tidyr
+## 3939 R Programming Functions
+## 3940 Getting and Cleaning Data Manipulating Data with dplyr
+## 3941 Getting and Cleaning Data Manipulating Data with dplyr
+## 3942 Getting and Cleaning Data Manipulating Data with dplyr
+## 3943 R Programming Functions
+## 3944 Getting and Cleaning Data Manipulating Data with dplyr
+## 3945 Getting and Cleaning Data Manipulating Data with dplyr
+## 3946 Getting and Cleaning Data Manipulating Data with dplyr
+## 3947 Getting and Cleaning Data Tidying Data with tidyr
+## 3948 Getting and Cleaning Data Tidying Data with tidyr
+## 3949 Getting and Cleaning Data Tidying Data with tidyr
+## 3950 Getting and Cleaning Data Manipulating Data with dplyr
+## 3951 Getting and Cleaning Data Tidying Data with tidyr
+## 3952 R Programming Matrices and Data Frames
+## 3953 Getting and Cleaning Data Tidying Data with tidyr
+## 3954 R Programming Matrices and Data Frames
+## 3955 R Programming Functions
+## 3956 R Programming Matrices and Data Frames
+## 3957 R Programming Functions
+## 3958 R Programming Matrices and Data Frames
+## 3959 R Programming Matrices and Data Frames
+## 3960 R Programming Matrices and Data Frames
+## 3961 Getting and Cleaning Data Tidying Data with tidyr
+## 3962 R Programming Matrices and Data Frames
+## 3963 R Programming Matrices and Data Frames
+## 3964 Getting and Cleaning Data Tidying Data with tidyr
+## 3965 Getting and Cleaning Data Tidying Data with tidyr
+## 3966 Getting and Cleaning Data Tidying Data with tidyr
+## 3967 Getting and Cleaning Data Manipulating Data with dplyr
+## 3968 Getting and Cleaning Data Manipulating Data with dplyr
+## 3969 R Programming Functions
+## 3970 R Programming Functions
+## 3971 R Programming Functions
+## 3972 R Programming Functions
+## 3973 R Programming Matrices and Data Frames
+## 3974 R Programming Matrices and Data Frames
+## 3975 R Programming Functions
+## 3976 Getting and Cleaning Data Tidying Data with tidyr
+## 3977 R Programming Matrices and Data Frames
+## 3978 R Programming Functions
+## 3979 R Programming Functions
+## 3980 R Programming Functions
+## 3981 Getting and Cleaning Data Manipulating Data with dplyr
+## 3982 R Programming Matrices and Data Frames
+## 3983 Getting and Cleaning Data Tidying Data with tidyr
+## 3984 R Programming Functions
+## 3985 R Programming Functions
+## 3986 Getting and Cleaning Data Tidying Data with tidyr
+## 3987 Getting and Cleaning Data Tidying Data with tidyr
+## 3988 R Programming Matrices and Data Frames
+## 3989 Getting and Cleaning Data Manipulating Data with dplyr
+## 3990 Getting and Cleaning Data Tidying Data with tidyr
+## 3991 R Programming Functions
+## 3992 R Programming Functions
+## 3993 Getting and Cleaning Data Tidying Data with tidyr
+## 3994 Getting and Cleaning Data Manipulating Data with dplyr
+## 3995 R Programming Matrices and Data Frames
+## 3996 R Programming Matrices and Data Frames
+## 3997 R Programming Matrices and Data Frames
+## 3998 Getting and Cleaning Data Manipulating Data with dplyr
+## 3999 Getting and Cleaning Data Tidying Data with tidyr
+## 4000 R Programming Matrices and Data Frames
+## 4001 Getting and Cleaning Data Tidying Data with tidyr
+## 4002 Getting and Cleaning Data Manipulating Data with dplyr
+## 4003 R Programming Functions
+## 4004 Getting and Cleaning Data Manipulating Data with dplyr
+## 4005 Getting and Cleaning Data Manipulating Data with dplyr
+## 4006 R Programming Functions
+## 4007 Getting and Cleaning Data Tidying Data with tidyr
+## 4008 R Programming Matrices and Data Frames
+## 4009 R Programming Functions
+## 4010 Getting and Cleaning Data Tidying Data with tidyr
+## 4011 Getting and Cleaning Data Tidying Data with tidyr
+## 4012 R Programming Functions
+## 4013 R Programming Functions
+## 4014 Getting and Cleaning Data Tidying Data with tidyr
+## 4015 Getting and Cleaning Data Tidying Data with tidyr
+## 4016 Getting and Cleaning Data Tidying Data with tidyr
+## 4017 Getting and Cleaning Data Tidying Data with tidyr
+## 4018 R Programming Matrices and Data Frames
+## 4019 Getting and Cleaning Data Tidying Data with tidyr
+## 4020 Getting and Cleaning Data Manipulating Data with dplyr
+## 4021 Getting and Cleaning Data Tidying Data with tidyr
+## 4022 Getting and Cleaning Data Manipulating Data with dplyr
+## 4023 R Programming Matrices and Data Frames
+## 4024 R Programming Matrices and Data Frames
+## 4025 Getting and Cleaning Data Manipulating Data with dplyr
+## 4026 Getting and Cleaning Data Manipulating Data with dplyr
+## 4027 Getting and Cleaning Data Manipulating Data with dplyr
+## 4028 R Programming Matrices and Data Frames
+## 4029 Getting and Cleaning Data Manipulating Data with dplyr
+## 4030 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4031 Getting and Cleaning Data Manipulating Data with dplyr
+## 4032 Getting and Cleaning Data Manipulating Data with dplyr
+## 4033 R Programming Matrices and Data Frames
+## 4034 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4035 R Programming Matrices and Data Frames
+## 4036 R Programming Matrices and Data Frames
+## 4037 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4038 R Programming Matrices and Data Frames
+## 4039 Getting and Cleaning Data Tidying Data with tidyr
+## 4040 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4041 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4042 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4043 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4044 R Programming Matrices and Data Frames
+## 4045 Getting and Cleaning Data Tidying Data with tidyr
+## 4046 Getting and Cleaning Data Tidying Data with tidyr
+## 4047 R Programming Matrices and Data Frames
+## 4048 Getting and Cleaning Data Manipulating Data with dplyr
+## 4049 Getting and Cleaning Data Manipulating Data with dplyr
+## 4050 Getting and Cleaning Data Manipulating Data with dplyr
+## 4051 Getting and Cleaning Data Tidying Data with tidyr
+## 4052 Getting and Cleaning Data Tidying Data with tidyr
+## 4053 Getting and Cleaning Data Tidying Data with tidyr
+## 4054 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4055 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4056 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4057 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4058 Getting and Cleaning Data Tidying Data with tidyr
+## 4059 Getting and Cleaning Data Tidying Data with tidyr
+## 4060 Getting and Cleaning Data Manipulating Data with dplyr
+## 4061 Getting and Cleaning Data Tidying Data with tidyr
+## 4062 Getting and Cleaning Data Tidying Data with tidyr
+## 4063 Getting and Cleaning Data Tidying Data with tidyr
+## 4064 Getting and Cleaning Data Tidying Data with tidyr
+## 4065 Getting and Cleaning Data Tidying Data with tidyr
+## 4066 Getting and Cleaning Data Tidying Data with tidyr
+## 4067 Getting and Cleaning Data Manipulating Data with dplyr
+## 4068 Getting and Cleaning Data Tidying Data with tidyr
+## 4069 Getting and Cleaning Data Tidying Data with tidyr
+## 4070 Getting and Cleaning Data Tidying Data with tidyr
+## 4071 Getting and Cleaning Data Tidying Data with tidyr
+## 4072 Getting and Cleaning Data Manipulating Data with dplyr
+## 4073 Getting and Cleaning Data Manipulating Data with dplyr
+## 4074 Getting and Cleaning Data Manipulating Data with dplyr
+## 4075 Getting and Cleaning Data Manipulating Data with dplyr
+## 4076 Getting and Cleaning Data Manipulating Data with dplyr
+## 4077 Getting and Cleaning Data Manipulating Data with dplyr
+## 4078 Getting and Cleaning Data Tidying Data with tidyr
+## 4079 Getting and Cleaning Data Tidying Data with tidyr
+## 4080 Getting and Cleaning Data Tidying Data with tidyr
+## 4081 Getting and Cleaning Data Tidying Data with tidyr
+## 4082 Getting and Cleaning Data Tidying Data with tidyr
+## 4083 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4084 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4085 R Programming Matrices and Data Frames
+## 4086 R Programming Matrices and Data Frames
+## 4087 R Programming Matrices and Data Frames
+## 4088 R Programming Matrices and Data Frames
+## 4089 R Programming Matrices and Data Frames
+## 4090 R Programming Matrices and Data Frames
+## 4091 R Programming Matrices and Data Frames
+## 4092 R Programming Looking at Data
+## 4093 R Programming Matrices and Data Frames
+## 4094 R Programming Matrices and Data Frames
+## 4095 R Programming Matrices and Data Frames
+## 4096 R Programming Matrices and Data Frames
+## 4097 R Programming Matrices and Data Frames
+## 4098 R Programming Matrices and Data Frames
+## 4099 Getting and Cleaning Data Tidying Data with tidyr
+## 4100 Getting and Cleaning Data Tidying Data with tidyr
+## 4101 Getting and Cleaning Data Tidying Data with tidyr
+## 4102 Getting and Cleaning Data Tidying Data with tidyr
+## 4103 Getting and Cleaning Data Tidying Data with tidyr
+## 4104 Getting and Cleaning Data Tidying Data with tidyr
+## 4105 Getting and Cleaning Data Tidying Data with tidyr
+## 4106 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4107 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4108 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4109 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4110 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4111 Exploratory_Data_Analysis Plotting_Systems
+## 4112 Exploratory_Data_Analysis Plotting_Systems
+## 4113 Exploratory_Data_Analysis Plotting_Systems
+## 4114 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4115 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4116 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4117 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4118 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4119 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4120 Getting and Cleaning Data Manipulating Data with dplyr
+## 4121 Getting and Cleaning Data Manipulating Data with dplyr
+## 4122 Getting and Cleaning Data Manipulating Data with dplyr
+## 4123 Getting and Cleaning Data Manipulating Data with dplyr
+## 4124 Exploratory_Data_Analysis Plotting_Systems
+## 4125 Exploratory_Data_Analysis Plotting_Systems
+## 4126 Exploratory_Data_Analysis Plotting_Systems
+## 4127 R Programming Looking at Data
+## 4128 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4129 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4130 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4131 Exploratory_Data_Analysis Plotting_Systems
+## 4132 Exploratory_Data_Analysis Plotting_Systems
+## 4133 Exploratory_Data_Analysis Plotting_Systems
+## 4134 Exploratory_Data_Analysis Plotting_Systems
+## 4135 Exploratory_Data_Analysis Plotting_Systems
+## 4136 Getting and Cleaning Data Manipulating Data with dplyr
+## 4137 Getting and Cleaning Data Manipulating Data with dplyr
+## 4138 Getting and Cleaning Data Manipulating Data with dplyr
+## 4139 Exploratory_Data_Analysis Plotting_Systems
+## 4140 Exploratory_Data_Analysis Plotting_Systems
+## 4141 Exploratory_Data_Analysis Plotting_Systems
+## 4142 Getting and Cleaning Data Manipulating Data with dplyr
+## 4143 Exploratory_Data_Analysis Plotting_Systems
+## 4144 Exploratory_Data_Analysis Plotting_Systems
+## 4145 Exploratory_Data_Analysis Plotting_Systems
+## 4146 Exploratory_Data_Analysis Plotting_Systems
+## 4147 Getting and Cleaning Data Manipulating Data with dplyr
+## 4148 R Programming Looking at Data
+## 4149 R Programming Looking at Data
+## 4150 R Programming Looking at Data
+## 4151 Exploratory_Data_Analysis Plotting_Systems
+## 4152 Getting and Cleaning Data Manipulating Data with dplyr
+## 4153 Getting and Cleaning Data Manipulating Data with dplyr
+## 4154 Getting and Cleaning Data Manipulating Data with dplyr
+## 4155 Getting and Cleaning Data Manipulating Data with dplyr
+## 4156 Getting and Cleaning Data Manipulating Data with dplyr
+## 4157 R Programming Looking at Data
+## 4158 Getting and Cleaning Data Manipulating Data with dplyr
+## 4159 R Programming Looking at Data
+## 4160 R Programming Looking at Data
+## 4161 Getting and Cleaning Data Manipulating Data with dplyr
+## 4162 Getting and Cleaning Data Manipulating Data with dplyr
+## 4163 Getting and Cleaning Data Manipulating Data with dplyr
+## 4164 R Programming Looking at Data
+## 4165 R Programming Looking at Data
+## 4166 R Programming Looking at Data
+## 4167 Getting and Cleaning Data Manipulating Data with dplyr
+## 4168 R Programming Looking at Data
+## 4169 Getting and Cleaning Data Manipulating Data with dplyr
+## 4170 R Programming Looking at Data
+## 4171 Getting and Cleaning Data Manipulating Data with dplyr
+## 4172 Exploratory_Data_Analysis Plotting_Systems
+## 4173 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4174 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4175 R Programming Looking at Data
+## 4176 Exploratory_Data_Analysis Plotting_Systems
+## 4177 R Programming Looking at Data
+## 4178 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4179 Getting and Cleaning Data Grouping and Chaining with dplyr
+## 4180 R Programming Functions
+## 4181 R Programming Functions
+## 4182 R Programming Logic
+## 4183 R Programming Logic
+## 4184 R Programming Functions
+## 4185 R Programming Functions
+## 4186 R Programming Functions
+## 4187 R Programming Logic
+## 4188 R Programming Functions
+## 4189 R Programming Subsetting Vectors
+## 4190 R Programming Subsetting Vectors
+## 4191 R Programming Subsetting Vectors
+## 4192 R Programming Functions
+## 4193 R Programming Subsetting Vectors
+## 4194 R Programming Subsetting Vectors
+## 4195 R Programming Workspace and Files
+## 4196 R Programming Subsetting Vectors
+## 4197 R Programming Vectors
+## 4198 R Programming Subsetting Vectors
+## 4199 R Programming Vectors
+## 4200 R Programming Functions
+## 4201 R Programming Functions
+## 4202 R Programming Vectors
+## 4203 R Programming Missing Values
+## 4204 R Programming Subsetting Vectors
+## 4205 R Programming Subsetting Vectors
+## 4206 R Programming Functions
+## 4207 R Programming Vectors
+## 4208 R Programming Subsetting Vectors
+## 4209 R Programming Subsetting Vectors
+## 4210 R Programming Basic Building Blocks
+## 4211 R Programming Functions
+## 4212 R Programming Workspace and Files
+## 4213 R Programming Workspace and Files
+## 4214 R Programming Vectors
+## 4215 R Programming Vectors
+## 4216 R Programming Vectors
+## 4217 R Programming Workspace and Files
+## 4218 R Programming Workspace and Files
+## 4219 R Programming Subsetting Vectors
+## 4220 R Programming Subsetting Vectors
+## 4221 R Programming Workspace and Files
+## 4222 R Programming Basic Building Blocks
+## 4223 R Programming Basic Building Blocks
+## 4224 R Programming Basic Building Blocks
+## 4225 R Programming Logic
+## 4226 R Programming Workspace and Files
+## 4227 R Programming Workspace and Files
+## 4228 R Programming Workspace and Files
+## 4229 R Programming Functions
+## 4230 R Programming Missing Values
+## 4231 R Programming Workspace and Files
+## 4232 R Programming Workspace and Files
+## 4233 R Programming Functions
+## 4234 R Programming Workspace and Files
+## 4235 R Programming Vectors
+## 4236 R Programming Vectors
+## 4237 R Programming Vectors
+## 4238 R Programming Vectors
+## 4239 R Programming Dates and Times
+## 4240 R Programming Workspace and Files
+## 4241 R Programming Workspace and Files
+## 4242 R Programming Workspace and Files
+## 4243 R Programming Basic Building Blocks
+## 4244 R Programming Basic Building Blocks
+## 4245 R Programming Missing Values
+## 4246 R Programming Missing Values
+## 4247 R Programming Missing Values
+## 4248 R Programming Missing Values
+## 4249 R Programming Functions
+## 4250 R Programming Missing Values
+## 4251 R Programming Missing Values
+## 4252 R Programming Dates and Times
+## 4253 R Programming Workspace and Files
+## 4254 R Programming Missing Values
+## 4255 R Programming Missing Values
+## 4256 R Programming Logic
+## 4257 R Programming Logic
+## 4258 R Programming Logic
+## 4259 R Programming Workspace and Files
+## 4260 R Programming Dates and Times
+## 4261 R Programming Dates and Times
+## 4262 R Programming Dates and Times
+## 4263 R Programming Dates and Times
+## 4264 R Programming Workspace and Files
+## 4265 R Programming Dates and Times
+## 4266 R Programming Logic
+## 4267 R Programming Workspace and Files
+## 4268 R Programming Workspace and Files
+## 4269 R Programming Workspace and Files
+## 4270 R Programming Workspace and Files
+## 4271 R Programming Basic Building Blocks
+## 4272 R Programming Basic Building Blocks
+## 4273 R Programming Dates and Times
+## 4274 R Programming Dates and Times
+## 4275 R Programming Dates and Times
+## 4276 R Programming Dates and Times
+## 4277 R Programming Dates and Times
+## 4278 R Programming Dates and Times
+## 4279 R Programming Missing Values
+## 4280 R Programming Missing Values
+## 4281 R Programming Vectors
+## 4282 R Programming Functions
+## 4283 R Programming Functions
+## 4284 R Programming Basic Building Blocks
+## 4285 R Programming Logic
+## 4286 R Programming Workspace and Files
+## 4287 R Programming Logic
+## 4288 R Programming Logic
+## 4289 R Programming Basic Building Blocks
+## 4290 R Programming Basic Building Blocks
+## 4291 R Programming Basic Building Blocks
+## 4292 R Programming Subsetting Vectors
+## 4293 R Programming Subsetting Vectors
+## 4294 R Programming Dates and Times
+## 4295 R Programming Dates and Times
+## 4296 R Programming Dates and Times
+## 4297 R Programming Dates and Times
+## 4298 R Programming Logic
+## 4299 R Programming Vectors
+## 4300 R Programming Basic Building Blocks
+## 4301 R Programming Basic Building Blocks
+## 4302 R Programming Basic Building Blocks
+## 4303 R Programming Basic Building Blocks
+## 4304 R Programming Vectors
+## 4305 R Programming Vectors
+## 4306 R Programming Vectors
+## 4307 R Programming Logic
+## 4308 R Programming Logic
+## 4309 R Programming Subsetting Vectors
+## 4310 R Programming Dates and Times
+## 4311 R Programming Dates and Times
+## 4312 R Programming Dates and Times
+## 4313 R Programming Subsetting Vectors
+## 4314 R Programming Vectors
+## 4315 R Programming Basic Building Blocks
+## 4316 R Programming Vectors
+## 4317 R Programming Vectors
+## 4318 R Programming Functions
+## 4319 R Programming Basic Building Blocks
+## 4320 R Programming Subsetting Vectors
+## 4321 R Programming Dates and Times
+## 4322 R Programming Subsetting Vectors
+## 4323 R Programming Dates and Times
+## 4324 R Programming Dates and Times
+## 4325 R Programming Subsetting Vectors
+## 4326 R Programming Subsetting Vectors
+## 4327 R Programming Basic Building Blocks
+## 4328 R Programming Logic
+## 4329 R Programming Functions
+## 4330 R Programming Subsetting Vectors
+## 4331 R Programming Logic
+## 4332 R Programming Logic
+## 4333 R Programming Logic
+## 4334 R Programming Logic
+## 4335 R Programming Logic
+## 4336 R Programming Functions
+## 4337 R Programming Basic Building Blocks
+## 4338 R Programming Functions
+## 4339 R Programming Basic Building Blocks
+## 4340 R Programming Basic Building Blocks
+## 4341 R Programming Subsetting Vectors
+## 4342 R Programming Logic
+## 4343 R Programming Functions
+## 4344 R Programming Missing Values
+## 4345 R Programming Missing Values
+## 4346 R Programming Functions
+## 4347 R Programming Functions
+## 4348 R Programming Dates and Times
+## 4349 R Programming Dates and Times
+## 4350 R Programming Dates and Times
+## 4351 R Programming Logic
+## 4352 R Programming Logic
+## 4353 R Programming Dates and Times
+## 4354 R Programming Functions
+## 4355 R Programming Functions
+## 4356 R Programming Subsetting Vectors
+## 4357 R Programming Functions
+## 4358 R Programming Logic
+## 4359 R Programming Logic
+## 4360 R Programming Dates and Times
+## 4361 R Programming Functions
+## 4362 R Programming Subsetting Vectors
+## 4363 R Programming Logic
+## 4364 R Programming Logic
+## 4365 R Programming Logic
+## 4366 R Programming Logic
+## 4367 R Programming Subsetting Vectors
+## 4368 R Programming Logic
+## 4369 R Programming Functions
+## 4370 R Programming Logic
+## 4371 R Programming Logic
+## 4372 R Programming Logic
+## 4373 R Programming Logic
+## 4374 R Programming Logic
+## 4375 R Programming Basic Building Blocks
+## 4376 R Programming Basic Building Blocks
+## 4377 R Programming Basic Building Blocks
+## 4378 R Programming Basic Building Blocks
+## 4379 R Programming Basic Building Blocks
+## 4380 R Programming Basic Building Blocks
+## 4381 R Programming Basic Building Blocks
+## 4382 R Programming Basic Building Blocks
+## 4383 R Programming Basic Building Blocks
+## 4384 R Programming Basic Building Blocks
+## 4385 R Programming Basic Building Blocks
+## 4386 R Programming Basic Building Blocks
+## 4387 R Programming Basic Building Blocks
+## 4388 R Programming Basic Building Blocks
+## 4389 R Programming Basic Building Blocks
+## 4390 R Programming Basic Building Blocks
+## 4391 R Programming Basic Building Blocks
+## 4392 R Programming Basic Building Blocks
+## 4393 R Programming Basic Building Blocks
+## 4394 R Programming Basic Building Blocks
+## 4395 R Programming Basic Building Blocks
+## 4396 R Programming Basic Building Blocks
+## 4397 R Programming Workspace and Files
+## 4398 R Programming Logic
+## 4399 R Programming Workspace and Files
+## 4400 R Programming Workspace and Files
+## 4401 R Programming Workspace and Files
+## 4402 R Programming Workspace and Files
+## 4403 R Programming Logic
+## 4404 R Programming Functions
+## 4405 R Programming Logic
+## 4406 R Programming Logic
+## 4407 R Programming Workspace and Files
+## 4408 R Programming Workspace and Files
+## 4409 R Programming Workspace and Files
+## 4410 R Programming Workspace and Files
+## 4411 R Programming Workspace and Files
+## 4412 R Programming Workspace and Files
+## 4413 R Programming Workspace and Files
+## 4414 R Programming Workspace and Files
+## 4415 R Programming Workspace and Files
+## 4416 R Programming Workspace and Files
+## 4417 R Programming Workspace and Files
+## 4418 R Programming Workspace and Files
+## 4419 R Programming Functions
+## 4420 R Programming Functions
+## 4421 R Programming Functions
+## 4422 R Programming Functions
+## 4423 R Programming Workspace and Files
+## 4424 R Programming Dates and Times
+## 4425 R Programming Dates and Times
+## 4426 R Programming Dates and Times
+## 4427 R Programming Dates and Times
+## 4428 R Programming Dates and Times
+## 4429 R Programming Dates and Times
+## 4430 R Programming Dates and Times
+## 4431 R Programming Dates and Times
+## 4432 R Programming Dates and Times
+## 4433 R Programming Dates and Times
+## 4434 R Programming Dates and Times
+## 4435 R Programming Dates and Times
+## 4436 R Programming Functions
+## 4437 R Programming Functions
+## 4438 R Programming Functions
+## 4439 R Programming Functions
+## 4440 R Programming Functions
+## 4441 R Programming Functions
+## 4442 R Programming Functions
+## 4443 R Programming Functions
+## 4444 R Programming Functions
+## 4445 R Programming Logic
+## 4446 R Programming Logic
+## 4447 R Programming Logic
+## 4448 R Programming Logic
+## 4449 R Programming Logic
+## 4450 R Programming Logic
+## 4451 R Programming Subsetting Vectors
+## 4452 R Programming Subsetting Vectors
+## 4453 R Programming Subsetting Vectors
+## 4454 R Programming Subsetting Vectors
+## 4455 R Programming Subsetting Vectors
+## 4456 R Programming Subsetting Vectors
+## 4457 R Programming Logic
+## 4458 R Programming Logic
+## 4459 R Programming Logic
+## 4460 R Programming Logic
+## 4461 R Programming Logic
+## 4462 R Programming Logic
+## 4463 R Programming Logic
+## 4464 R Programming Logic
+## 4465 R Programming Logic
+## 4466 R Programming Missing Values
+## 4467 R Programming Missing Values
+## 4468 R Programming Missing Values
+## 4469 R Programming Missing Values
+## 4470 R Programming Subsetting Vectors
+## 4471 R Programming Subsetting Vectors
+## 4472 R Programming Subsetting Vectors
+## 4473 R Programming Subsetting Vectors
+## 4474 R Programming Subsetting Vectors
+## 4475 R Programming Subsetting Vectors
+## 4476 R Programming Subsetting Vectors
+## 4477 R Programming Subsetting Vectors
+## 4478 R Programming Subsetting Vectors
+## 4479 R Programming Subsetting Vectors
+## 4480 R Programming Subsetting Vectors
+## 4481 R Programming Subsetting Vectors
+## 4482 R Programming Subsetting Vectors
+## 4483 R Programming Subsetting Vectors
+## 4484 R Programming Vectors
+## 4485 R Programming Vectors
+## 4486 R Programming Vectors
+## 4487 R Programming Vectors
+## 4488 R Programming Subsetting Vectors
+## 4489 R Programming Subsetting Vectors
+## 4490 R Programming Subsetting Vectors
+## 4491 R Programming Subsetting Vectors
+## 4492 R Programming Subsetting Vectors
+## 4493 R Programming Subsetting Vectors
+## 4494 R Programming Logic
+## 4495 R Programming Logic
+## 4496 R Programming Logic
+## 4497 R Programming Logic
+## 4498 R Programming Logic
+## 4499 R Programming Logic
+## 4500 R Programming Logic
+## 4501 R Programming Logic
+## 4502 R Programming Logic
+## 4503 R Programming Logic
+## 4504 R Programming Logic
+## 4505 R Programming Logic
+## 4506 R Programming Logic
+## 4507 R Programming Logic
+## 4508 R Programming Logic
+## 4509 R Programming Logic
+## 4510 R Programming Vectors
+## 4511 R Programming Vectors
+## 4512 R Programming Dates and Times
+## 4513 R Programming Dates and Times
+## 4514 R Programming Dates and Times
+## 4515 R Programming Dates and Times
+## 4516 R Programming Dates and Times
+## 4517 R Programming Dates and Times
+## 4518 R Programming Missing Values
+## 4519 R Programming Missing Values
+## 4520 R Programming Missing Values
+## 4521 R Programming Missing Values
+## 4522 R Programming Missing Values
+## 4523 R Programming Missing Values
+## 4524 R Programming Missing Values
+## 4525 R Programming Missing Values
+## 4526 R Programming Missing Values
+## 4527 R Programming Missing Values
+## 4528 R Programming Workspace and Files
+## 4529 R Programming Vectors
+## 4530 R Programming Vectors
+## 4531 R Programming Vectors
+## 4532 R Programming Vectors
+## 4533 R Programming Vectors
+## 4534 R Programming Vectors
+## 4535 R Programming Vectors
+## 4536 R Programming Vectors
+## 4537 R Programming Vectors
+## 4538 R Programming Vectors
+## 4539 R Programming Vectors
+## 4540 R Programming Vectors
+## 4541 R Programming Vectors
+## 4542 R Programming Workspace and Files
+## 4543 R Programming Workspace and Files
+## 4544 R Programming Workspace and Files
+## 4545 R Programming Workspace and Files
+## 4546 R Programming Basic Building Blocks
+## 4547 R Programming Basic Building Blocks
+## 4548 R Programming Basic Building Blocks
+## 4549 R Programming Basic Building Blocks
+## 4550 R Programming Basic Building Blocks
+## 4551 R Programming Basic Building Blocks
+## 4552 R Programming Basic Building Blocks
+## 4553 R Programming Dates and Times
+## 4554 R Programming Functions
+## 4555 R Programming Functions
+## 4556 R Programming Functions
+## 4557 R Programming Functions
+## 4558 R Programming Functions
+## 4559 R Programming Workspace and Files
+## 4560 R Programming Workspace and Files
+## 4561 R Programming Workspace and Files
+## 4562 R Programming Workspace and Files
+## 4563 R Programming Workspace and Files
+## 4564 R Programming Workspace and Files
+## 4565 R Programming Workspace and Files
+## 4566 R Programming Workspace and Files
+## 4567 R Programming Workspace and Files
+## 4568 R Programming Workspace and Files
+## 4569 R Programming Workspace and Files
+## 4570 R Programming Workspace and Files
+## 4571 R Programming Basic Building Blocks
+## 4572 R Programming Basic Building Blocks
+## 4573 R Programming Basic Building Blocks
+## 4574 R Programming Basic Building Blocks
+## 4575 R Programming Basic Building Blocks
+## 4576 R Programming Basic Building Blocks
+## 4577 R Programming Workspace and Files
+## 4578 R Programming Workspace and Files
+## 4579 R Programming Workspace and Files
+## 4580 R Programming Workspace and Files
+## 4581 R Programming Basic Building Blocks
+## 4582 R Programming Functions
+## 4583 R Programming Dates and Times
+## 4584 R Programming Basic Building Blocks
+## 4585 R Programming Basic Building Blocks
+## 4586 R Programming Dates and Times
+## 4587 R Programming Basic Building Blocks
+## 4588 R Programming Basic Building Blocks
+## 4589 R Programming Basic Building Blocks
+## 4590 R Programming Basic Building Blocks
+## 4591 R Programming Basic Building Blocks
+## 4592 R Programming Functions
+## 4593 R Programming Workspace and Files
+## 4594 R Programming Workspace and Files
+## 4595 R Programming Dates and Times
+## 4596 R Programming Dates and Times
+## 4597 R Programming Workspace and Files
+## 4598 R Programming Dates and Times
+## 4599 R Programming Dates and Times
+## 4600 R Programming Dates and Times
+## 4601 R Programming Dates and Times
+## 4602 R Programming Dates and Times
+## 4603 R Programming Basic Building Blocks
+## 4604 R Programming Workspace and Files
+## 4605 R Programming Workspace and Files
+## 4606 R Programming Workspace and Files
+## 4607 R Programming Functions
+## 4608 R Programming Functions
+## 4609 R Programming Functions
+## 4610 R Programming Functions
+## 4611 R Programming Functions
+## 4612 R Programming Workspace and Files
+## 4613 R Programming Functions
+## 4614 R Programming Functions
+## 4615 R Programming Basic Building Blocks
+## 4616 R Programming Basic Building Blocks
+## 4617 R Programming Basic Building Blocks
+## 4618 R Programming Basic Building Blocks
+## 4619 R Programming Basic Building Blocks
+## 4620 R Programming Basic Building Blocks
+## 4621 R Programming Basic Building Blocks
+## 4622 R Programming Basic Building Blocks
+## 4623 R Programming Basic Building Blocks
+## 4624 R Programming Basic Building Blocks
+## 4625 R Programming Basic Building Blocks
+## 4626 R Programming Basic Building Blocks
+## 4627 R Programming Basic Building Blocks
+## 4628 R Programming Basic Building Blocks
+## 4629 R Programming Basic Building Blocks
+## 4630 R Programming Basic Building Blocks
+## 4631 R Programming Basic Building Blocks
+## 4632 R Programming Basic Building Blocks
+## 4633 R Programming Basic Building Blocks
+## 4634 R Programming Basic Building Blocks
+## 4635 R Programming Basic Building Blocks
+## 4636 R Programming Basic Building Blocks
+## question_number correct attempt skipped datetime hash
+## 1 18 TRUE 1 FALSE 1505668097 30802
+## 2 11 TRUE 1 FALSE 1505668820 30802
+## 3 14 TRUE 1 FALSE 1505150483 30802
+## 4 17 TRUE 1 FALSE 1505668087 30802
+## 5 22 TRUE 1 FALSE 1505668145 30802
+## 6 5 TRUE 1 FALSE 1505177316 30802
+## 7 9 TRUE 1 FALSE 1505668784 30802
+## 8 15 TRUE 1 FALSE 1505668080 30802
+## 9 14 TRUE 1 FALSE 1505668039 30802
+## 10 16 TRUE 1 FALSE 1505668085 30802
+## 11 15 TRUE 1 FALSE 1505150496 30802
+## 12 22 TRUE 1 FALSE 1505180408 30802
+## 13 12 TRUE 1 FALSE 1505150412 30802
+## 14 19 TRUE 2 FALSE 1505180081 30802
+## 15 6 TRUE 1 FALSE 1505177807 30802
+## 16 31 TRUE 1 FALSE 1505505498 30802
+## 17 20 TRUE 1 FALSE 1505668128 30802
+## 18 23 TRUE 1 FALSE 1505505368 30802
+## 19 24 TRUE 1 FALSE 1505668172 30802
+## 20 27 TRUE 1 FALSE 1505505439 30802
+## 21 23 TRUE 1 FALSE 1505668154 30802
+## 22 19 TRUE 1 FALSE 1505668109 30802
+## 23 22 TRUE 1 FALSE 1505505353 30802
+## 24 5 TRUE 1 FALSE 1505668637 30802
+## 25 26 TRUE 1 FALSE 1505505410 30802
+## 26 11 TRUE 1 FALSE 1505150407 30802
+## 27 23 TRUE 1 FALSE 1505180420 30802
+## 28 39 TRUE 1 FALSE 1505508769 30802
+## 29 16 TRUE 1 FALSE 1505150503 30802
+## 30 8 TRUE 1 FALSE 1505177826 30802
+## 31 9 TRUE 1 FALSE 1505177833 30802
+## 32 33 TRUE 1 FALSE 1505505552 30802
+## 33 27 TRUE 1 FALSE 1505668234 30802
+## 34 11 TRUE 1 FALSE 1505177897 30802
+## 35 28 TRUE 1 FALSE 1505668329 30802
+## 36 29 TRUE 1 FALSE 1505668332 30802
+## 37 18 TRUE 1 FALSE 1505180008 30802
+## 38 29 TRUE 1 FALSE 1505505481 30802
+## 39 30 TRUE 1 FALSE 1505505488 30802
+## 40 10 TRUE 1 FALSE 1505150391 30802
+## 41 38 TRUE 1 FALSE 1505668506 30802
+## 42 17 TRUE 1 FALSE 1505150536 30802
+## 43 32 TRUE 1 FALSE 1505505524 30802
+## 44 43 TRUE 1 FALSE 1505508836 30802
+## 45 10 TRUE 1 FALSE 1505177848 30802
+## 46 34 TRUE 1 FALSE 1505505585 30802
+## 47 36 TRUE 2 FALSE 1505508687 30802
+## 48 21 TRUE 1 FALSE 1505505335 30802
+## 49 8 TRUE 1 FALSE 1505668764 30802
+## 50 38 TRUE 1 FALSE 1505508738 30802
+## 51 37 TRUE 1 FALSE 1505668503 30802
+## 52 17 TRUE 1 FALSE 1505179996 30802
+## 53 3 TRUE 1 FALSE 1505150315 30802
+## 54 41 TRUE 1 FALSE 1505508818 30802
+## 55 42 TRUE 1 FALSE 1505508833 30802
+## 56 8 TRUE 1 FALSE 1505504577 30802
+## 57 33 TRUE 2 FALSE 1505508597 30802
+## 58 31 TRUE 1 FALSE 1505178719 30802
+## 59 36 TRUE 1 FALSE 1505505616 30802
+## 60 14 TRUE 1 FALSE 1505178060 30802
+## 61 13 TRUE 1 FALSE 1505667996 30802
+## 62 37 TRUE 1 FALSE 1505508710 30802
+## 63 8 TRUE 1 FALSE 1505150377 30802
+## 64 35 TRUE 1 FALSE 1505668479 30802
+## 65 4 TRUE 1 FALSE 1505504072 30802
+## 66 6 TRUE 1 FALSE 1505504512 30802
+## 67 7 TRUE 1 FALSE 1505504524 30802
+## 68 9 TRUE 1 FALSE 1505505018 30802
+## 69 46 TRUE 1 FALSE 1505508887 30802
+## 70 35 TRUE 1 FALSE 1505508619 30802
+## 71 8 TRUE 1 FALSE 1505667946 30802
+## 72 9 TRUE 1 FALSE 1505667952 30802
+## 73 12 TRUE 1 FALSE 1505667992 30802
+## 74 3 TRUE 1 FALSE 1505668596 30802
+## 75 33 TRUE 1 FALSE 1505668387 30802
+## 76 27 TRUE 1 FALSE 1505508314 30802
+## 77 32 TRUE 1 FALSE 1505668370 30802
+## 78 3 TRUE 1 FALSE 1505504063 30802
+## 79 22 TRUE 1 FALSE 1505178497 30802
+## 80 23 TRUE 1 FALSE 1505178514 30802
+## 81 13 TRUE 1 FALSE 1505668950 30802
+## 82 18 TRUE 1 FALSE 1505150553 30802
+## 83 21 TRUE 1 FALSE 1505150627 30802
+## 84 22 TRUE 1 FALSE 1505150760 30802
+## 85 37 TRUE 1 FALSE 1505505623 30802
+## 86 11 TRUE 1 FALSE 1505667988 30802
+## 87 17 TRUE 1 FALSE 1505505244 30802
+## 88 8 TRUE 1 FALSE 1505179715 30802
+## 89 11 TRUE 1 FALSE 1505179880 30802
+## 90 41 TRUE 1 FALSE 1505179388 30802
+## 91 28 TRUE 1 FALSE 1505508324 30802
+## 92 25 TRUE 1 FALSE 1505178537 30802
+## 93 33 TRUE 1 FALSE 1505178902 30802
+## 94 9 TRUE 1 FALSE 1505504608 30802
+## 95 34 TRUE 1 FALSE 1505179229 30802
+## 96 35 TRUE 1 FALSE 1505179346 30802
+## 97 38 TRUE 1 FALSE 1505505639 30802
+## 98 15 TRUE 2 FALSE 1505178264 30802
+## 99 17 TRUE 1 FALSE 1505178420 30802
+## 100 30 TRUE 1 FALSE 1505668342 30802
+## 101 19 TRUE 1 FALSE 1505178443 30802
+## 102 21 TRUE 1 FALSE 1505178476 30802
+## 103 6 TRUE 1 FALSE 1505507898 30802
+## 104 30 TRUE 1 FALSE 1505508376 30802
+## 105 32 TRUE 1 FALSE 1505508519 30802
+## 106 7 TRUE 1 FALSE 1505667902 30802
+## 107 11 TRUE 1 FALSE 1505505062 30802
+## 108 13 TRUE 1 FALSE 1505505169 30802
+## 109 14 TRUE 1 FALSE 1505505178 30802
+## 110 15 TRUE 1 FALSE 1505505199 30802
+## 111 7 TRUE 1 FALSE 1505179705 30802
+## 112 41 TRUE 1 FALSE 1505505659 30802
+## 113 40 TRUE 1 FALSE 1505179385 30802
+## 114 19 TRUE 1 FALSE 1505504738 30802
+## 115 20 TRUE 1 FALSE 1505504751 30802
+## 116 21 TRUE 1 FALSE 1505504765 30802
+## 117 7 TRUE 1 FALSE 1505507907 30802
+## 118 9 TRUE 1 FALSE 1505507931 30802
+## 119 25 TRUE 1 FALSE 1505180457 30802
+## 120 44 TRUE 1 FALSE 1505508850 30802
+## 121 47 TRUE 1 FALSE 1505508901 30802
+## 122 23 TRUE 1 FALSE 1505150771 30802
+## 123 25 TRUE 1 FALSE 1505150856 30802
+## 124 40 TRUE 1 FALSE 1505505656 30802
+## 125 18 TRUE 1 FALSE 1505508174 30802
+## 126 26 TRUE 2 FALSE 1505151065 30802
+## 127 27 TRUE 1 FALSE 1505151073 30802
+## 128 31 TRUE 1 FALSE 1505151209 30802
+## 129 4 TRUE 1 FALSE 1505507870 30802
+## 130 22 TRUE 1 FALSE 1505504770 30802
+## 131 27 TRUE 1 FALSE 1505178618 30802
+## 132 29 TRUE 1 FALSE 1505178691 30802
+## 133 14 TRUE 1 FALSE 1505507990 30802
+## 134 32 TRUE 1 FALSE 1505178893 30802
+## 135 15 TRUE 2 FALSE 1505508127 30802
+## 136 17 TRUE 1 FALSE 1505508146 30802
+## 137 17 TRUE 1 FALSE 1505504715 30802
+## 138 18 TRUE 1 FALSE 1505504726 30802
+## 139 20 TRUE 1 FALSE 1505508208 30802
+## 140 21 TRUE 1 FALSE 1505508246 30802
+## 141 32 TRUE 1 FALSE 1505669957 30802
+## 142 5 TRUE 1 FALSE 1505504860 30802
+## 143 10 TRUE 1 FALSE 1505505060 30802
+## 144 5 TRUE 1 FALSE 1505667882 30802
+## 145 16 TRUE 1 FALSE 1505669377 30802
+## 146 5 TRUE 1 FALSE 1505179608 30802
+## 147 6 TRUE 1 FALSE 1505179665 30802
+## 148 12 TRUE 1 FALSE 1505504652 30802
+## 149 21 TRUE 1 FALSE 1505669440 30802
+## 150 23 TRUE 1 FALSE 1505669470 30802
+## 151 25 TRUE 1 FALSE 1505669494 30802
+## 152 27 TRUE 1 FALSE 1505669841 30802
+## 153 23 TRUE 1 FALSE 1505508277 30802
+## 154 50 TRUE 1 FALSE 1505672296 30802
+## 155 34 TRUE 2 TRUE 1505670450 30802
+## 156 10 TRUE 1 FALSE 1505507943 30802
+## 157 14 TRUE 1 FALSE 1505668971 30802
+## 158 13 TRUE 1 FALSE 1505507972 30802
+## 159 17 TRUE 1 FALSE 1505669386 30802
+## 160 19 TRUE 1 FALSE 1505669412 30802
+## 161 49 TRUE 1 FALSE 1505508929 30802
+## 162 40 TRUE 1 FALSE 1505671468 30802
+## 163 41 TRUE 1 FALSE 1505671634 30802
+## 164 42 TRUE 1 FALSE 1505671852 30802
+## 165 53 TRUE 1 FALSE 1505508985 30802
+## 166 28 TRUE 1 FALSE 1505669919 30802
+## 167 40 TRUE 1 FALSE 1505180835 30802
+## 168 51 TRUE 1 FALSE 1505672299 30802
+## 169 3 TRUE 1 FALSE 1505667847 30802
+## 170 12 TRUE 1 FALSE 1505507959 30802
+## 171 8 TRUE 1 FALSE 1505505005 30802
+## 172 36 TRUE 1 FALSE 1505670813 30802
+## 173 10 TRUE 1 FALSE 1505504615 30802
+## 174 30 TRUE 1 FALSE 1505180585 30802
+## 175 32 TRUE 1 FALSE 1505180624 30802
+## 176 33 TRUE 1 FALSE 1505151244 30802
+## 177 43 TRUE 1 FALSE 1505672034 30802
+## 178 47 TRUE 1 FALSE 1505672247 30802
+## 179 29 TRUE 1 FALSE 1505180522 30802
+## 180 4 TRUE 1 FALSE 1505667873 30802
+## 181 28 TRUE 1 FALSE 1505180515 30802
+## 182 48 TRUE 1 FALSE 1505672288 30802
+## 183 40 TRUE 1 FALSE 1505151347 30802
+## 184 38 TRUE 1 FALSE 1505670847 30802
+## 185 35 TRUE 4 FALSE 1505670800 30802
+## 186 54 TRUE 1 FALSE 1505508987 30802
+## 187 35 TRUE 1 FALSE 1505180807 30802
+## 188 39 TRUE 1 FALSE 1505180831 30802
+## 189 3 TRUE 1 FALSE 1505504832 30802
+## 190 36 TRUE 1 FALSE 1505151281 30802
+## 191 38 TRUE 1 FALSE 1505151324 30802
+## 192 39 TRUE 1 FALSE 1505151342 30802
+## 193 33 TRUE 2 FALSE 1505180782 30802
+## 194 50 TRUE 1 FALSE 1505508934 30802
+## 195 51 TRUE 1 FALSE 1505508975 30802
+## 196 21 TRUE 1 FALSE 1505149531 78719
+## 197 17 TRUE 1 FALSE 1505221985 78719
+## 198 9 TRUE 2 FALSE 1505221720 78719
+## 199 18 TRUE 1 FALSE 1505149462 78719
+## 200 6 TRUE 1 FALSE 1505846961 78719
+## 201 8 TRUE 1 FALSE 1505846987 78719
+## 202 10 TRUE 2 FALSE 1505221769 78719
+## 203 8 TRUE 1 FALSE 1505221667 78719
+## 204 53 TRUE 2 FALSE 1505854533 78719
+## 205 40 TRUE 1 FALSE 1505223714 78719
+## 206 41 TRUE 1 FALSE 1505223721 78719
+## 207 12 TRUE 1 FALSE 1505221839 78719
+## 208 15 TRUE 1 FALSE 1505847754 78719
+## 209 11 TRUE 1 FALSE 1505847160 78719
+## 210 54 TRUE 3 FALSE 1505854925 78719
+## 211 7 TRUE 1 FALSE 1505221630 78719
+## 212 3 TRUE 1 FALSE 1505846768 78719
+## 213 38 TRUE 1 FALSE 1505223700 78719
+## 214 4 TRUE 1 FALSE 1505221564 78719
+## 215 7 TRUE 1 FALSE 1505330479 78719
+## 216 3 TRUE 1 FALSE 1505222723 78719
+## 217 8 TRUE 1 FALSE 1505330518 78719
+## 218 12 TRUE 1 FALSE 1505847281 78719
+## 219 9 TRUE 2 FALSE 1505330533 78719
+## 220 18 TRUE 1 FALSE 1505222013 78719
+## 221 6 TRUE 1 FALSE 1505221609 78719
+## 222 17 TRUE 3 FALSE 1505149441 78719
+## 223 40 TRUE 1 FALSE 1505348999 78719
+## 224 37 TRUE 1 FALSE 1505223683 78719
+## 225 3 TRUE 1 FALSE 1505221554 78719
+## 226 17 TRUE 1 FALSE 1505958769 78719
+## 227 54 TRUE 1 FALSE 1505957495 78719
+## 228 5 TRUE 1 FALSE 1505222795 78719
+## 229 49 TRUE 1 FALSE 1505330220 78719
+## 230 3 TRUE 1 FALSE 1505149005 78719
+## 231 18 TRUE 1 FALSE 1505848765 78719
+## 232 19 TRUE 1 FALSE 1505848769 78719
+## 233 52 TRUE 1 FALSE 1505854229 78719
+## 234 15 TRUE 1 FALSE 1505958715 78719
+## 235 16 TRUE 1 FALSE 1505958740 78719
+## 236 21 TRUE 1 FALSE 1505222143 78719
+## 237 22 TRUE 1 FALSE 1505222145 78719
+## 238 7 TRUE 1 FALSE 1505227575 78719
+## 239 11 TRUE 2 FALSE 1505330582 78719
+## 240 36 TRUE 1 FALSE 1505223668 78719
+## 241 34 TRUE 1 FALSE 1505223642 78719
+## 242 48 TRUE 1 FALSE 1505854040 78719
+## 243 20 TRUE 2 FALSE 1505222132 78719
+## 244 38 TRUE 1 FALSE 1505348577 78719
+## 245 6 TRUE 1 FALSE 1505227563 78719
+## 246 28 TRUE 1 FALSE 1505849721 78719
+## 247 41 TRUE 1 FALSE 1505349050 78719
+## 248 35 TRUE 1 FALSE 1505956456 78719
+## 249 56 TRUE 1 FALSE 1505854932 78719
+## 250 12 TRUE 1 FALSE 1505330588 78719
+## 251 19 TRUE 1 FALSE 1505222094 78719
+## 252 33 TRUE 1 FALSE 1505223610 78719
+## 253 15 TRUE 1 FALSE 1505149230 78719
+## 254 16 TRUE 1 FALSE 1505149334 78719
+## 255 21 TRUE 1 FALSE 1505848949 78719
+## 256 24 TRUE 1 FALSE 1505849293 78719
+## 257 25 TRUE 1 FALSE 1505849350 78719
+## 258 4 TRUE 1 FALSE 1505330436 78719
+## 259 9 TRUE 1 FALSE 1505227625 78719
+## 260 26 TRUE 1 FALSE 1505223421 78719
+## 261 12 TRUE 1 FALSE 1505227670 78719
+## 262 57 TRUE 1 FALSE 1505854934 78719
+## 263 20 TRUE 2 FALSE 1505848850 78719
+## 264 15 TRUE 1 FALSE 1505330714 78719
+## 265 47 TRUE 1 FALSE 1505853977 78719
+## 266 36 TRUE 1 FALSE 1505348531 78719
+## 267 4 TRUE 1 FALSE 1505227518 78719
+## 268 34 TRUE 1 FALSE 1505211690 78719
+## 269 5 TRUE 1 FALSE 1505330454 78719
+## 270 29 TRUE 1 FALSE 1505850938 78719
+## 271 10 TRUE 1 FALSE 1505227649 78719
+## 272 8 TRUE 1 FALSE 1505222897 78719
+## 273 22 TRUE 1 FALSE 1505211375 78719
+## 274 23 TRUE 1 FALSE 1505211409 78719
+## 275 25 TRUE 1 FALSE 1505211429 78719
+## 276 14 TRUE 1 FALSE 1505149194 78719
+## 277 32 TRUE 2 FALSE 1505223574 78719
+## 278 31 TRUE 1 FALSE 1505211562 78719
+## 279 32 TRUE 1 FALSE 1505211601 78719
+## 280 33 TRUE 1 FALSE 1505211626 78719
+## 281 32 TRUE 1 FALSE 1505956336 78719
+## 282 35 TRUE 1 FALSE 1505211809 78719
+## 283 34 TRUE 1 FALSE 1505956441 78719
+## 284 23 TRUE 1 FALSE 1505223369 78719
+## 285 44 TRUE 1 FALSE 1505329967 78719
+## 286 8 TRUE 1 FALSE 1505149079 78719
+## 287 10 TRUE 1 FALSE 1505149107 78719
+## 288 11 TRUE 1 FALSE 1505149128 78719
+## 289 13 TRUE 1 FALSE 1505330596 78719
+## 290 14 TRUE 1 FALSE 1505330655 78719
+## 291 53 TRUE 1 FALSE 1505330265 78719
+## 292 19 TRUE 1 FALSE 1505218430 78719
+## 293 3 TRUE 1 FALSE 1505330423 78719
+## 294 11 TRUE 1 FALSE 1505958600 78719
+## 295 14 TRUE 1 FALSE 1505211104 78719
+## 296 48 TRUE 2 FALSE 1505501274 78719
+## 297 49 TRUE 1 FALSE 1505501316 78719
+## 298 50 TRUE 1 FALSE 1505501323 78719
+## 299 22 TRUE 1 FALSE 1505149572 78719
+## 300 12 TRUE 1 FALSE 1505149131 78719
+## 301 51 TRUE 1 FALSE 1505330252 78719
+## 302 26 TRUE 1 FALSE 1505149651 78719
+## 303 54 TRUE 1 FALSE 1505330268 78719
+## 304 31 TRUE 1 FALSE 1505149765 78719
+## 305 33 TRUE 1 FALSE 1505149808 78719
+## 306 40 TRUE 1 FALSE 1505211825 78719
+## 307 40 TRUE 1 FALSE 1505150019 78719
+## 308 9 TRUE 1 FALSE 1505222908 78719
+## 309 23 TRUE 1 FALSE 1505149583 78719
+## 310 25 TRUE 1 FALSE 1505149631 78719
+## 311 11 TRUE 1 FALSE 1505218270 78719
+## 312 27 TRUE 1 FALSE 1505149659 78719
+## 313 18 TRUE 1 FALSE 1505218399 78719
+## 314 27 TRUE 1 FALSE 1505956039 78719
+## 315 31 TRUE 1 FALSE 1505956252 78719
+## 316 33 TRUE 1 FALSE 1505956349 78719
+## 317 42 TRUE 2 FALSE 1505329912 78719
+## 318 43 TRUE 1 FALSE 1505329930 78719
+## 319 34 TRUE 1 FALSE 1505853128 78719
+## 320 46 TRUE 1 FALSE 1505330065 78719
+## 321 47 TRUE 1 FALSE 1505330183 78719
+## 322 37 TRUE 1 FALSE 1505500900 78719
+## 323 50 TRUE 1 FALSE 1505330232 78719
+## 324 31 TRUE 1 FALSE 1505223521 78719
+## 325 35 TRUE 2 FALSE 1505348494 78719
+## 326 13 TRUE 1 FALSE 1505958637 78719
+## 327 11 TRUE 1 FALSE 1505211045 78719
+## 328 47 TRUE 1 FALSE 1505501221 78719
+## 329 15 TRUE 2 FALSE 1505211213 78719
+## 330 20 TRUE 1 FALSE 1505958974 78719
+## 331 22 TRUE 1 FALSE 1505959019 78719
+## 332 42 TRUE 3 FALSE 1505351365 78719
+## 333 43 TRUE 1 FALSE 1505351491 78719
+## 334 47 TRUE 2 FALSE 1505352624 78719
+## 335 48 TRUE 2 FALSE 1505352687 78719
+## 336 50 TRUE 1 FALSE 1505352699 78719
+## 337 51 TRUE 1 FALSE 1505352701 78719
+## 338 39 TRUE 1 FALSE 1505150014 78719
+## 339 5 TRUE 1 FALSE 1505218072 78719
+## 340 6 TRUE 1 FALSE 1505218155 78719
+## 341 7 TRUE 1 FALSE 1505218209 78719
+## 342 8 TRUE 1 FALSE 1505218216 78719
+## 343 11 TRUE 1 FALSE 1505222936 78719
+## 344 17 TRUE 1 FALSE 1505218390 78719
+## 345 14 TRUE 1 FALSE 1505223089 78719
+## 346 15 TRUE 1 FALSE 1505223104 78719
+## 347 17 TRUE 1 FALSE 1505223144 78719
+## 348 21 TRUE 2 FALSE 1505223293 78719
+## 349 22 TRUE 1 FALSE 1505223332 78719
+## 350 6 TRUE 1 FALSE 1505495400 78719
+## 351 37 TRUE 1 FALSE 1505853279 78719
+## 352 27 TRUE 1 FALSE 1505223449 78719
+## 353 29 TRUE 1 FALSE 1505223480 78719
+## 354 30 TRUE 1 FALSE 1505223491 78719
+## 355 5 TRUE 1 FALSE 1505210978 78719
+## 356 6 TRUE 1 FALSE 1505210983 78719
+## 357 8 TRUE 1 FALSE 1505211003 78719
+## 358 9 TRUE 1 FALSE 1505211009 78719
+## 359 10 TRUE 1 FALSE 1505211026 78719
+## 360 40 TRUE 1 FALSE 1505219124 78719
+## 361 21 TRUE 1 FALSE 1505496128 78719
+## 362 22 TRUE 1 FALSE 1505496201 78719
+## 363 26 TRUE 1 FALSE 1505496331 78719
+## 364 17 TRUE 1 FALSE 1505211244 78719
+## 365 19 TRUE 1 FALSE 1505211267 78719
+## 366 21 TRUE 1 FALSE 1505211334 78719
+## 367 19 TRUE 1 FALSE 1506086651 78719
+## 368 20 TRUE 1 FALSE 1506086720 78719
+## 369 21 TRUE 1 FALSE 1506086943 78719
+## 370 27 TRUE 1 FALSE 1505211462 78719
+## 371 29 TRUE 1 FALSE 1505211518 78719
+## 372 28 TRUE 1 FALSE 1506087674 78719
+## 373 29 TRUE 1 FALSE 1506087894 78719
+## 374 30 TRUE 2 FALSE 1506088429 78719
+## 375 36 TRUE 4 FALSE 1505149950 78719
+## 376 38 TRUE 1 FALSE 1505150007 78719
+## 377 20 TRUE 1 FALSE 1505330845 78719
+## 378 22 TRUE 1 FALSE 1505330919 78719
+## 379 10 TRUE 1 FALSE 1505222932 78719
+## 380 22 TRUE 1 FALSE 1505955836 78719
+## 381 13 TRUE 1 FALSE 1505223072 78719
+## 382 25 TRUE 1 FALSE 1505955920 78719
+## 383 26 TRUE 1 FALSE 1505956019 78719
+## 384 46 TRUE 1 FALSE 1506091101 78719
+## 385 22 TRUE 1 FALSE 1505218536 78719
+## 386 23 TRUE 1 FALSE 1505218543 78719
+## 387 25 TRUE 1 FALSE 1505218604 78719
+## 388 28 TRUE 1 FALSE 1505218681 78719
+## 389 29 TRUE 1 FALSE 1505218688 78719
+## 390 30 TRUE 2 FALSE 1505218717 78719
+## 391 32 TRUE 1 FALSE 1505218785 78719
+## 392 33 TRUE 2 FALSE 1505218937 78719
+## 393 35 TRUE 1 FALSE 1505219019 78719
+## 394 39 TRUE 1 FALSE 1505219121 78719
+## 395 46 TRUE 2 FALSE 1505853916 78719
+## 396 51 TRUE 1 FALSE 1505957476 78719
+## 397 53 TRUE 1 FALSE 1505957488 78719
+## 398 6 TRUE 1 FALSE 1506086085 78719
+## 399 27 TRUE 1 FALSE 1505496336 78719
+## 400 30 TRUE 1 FALSE 1505496394 78719
+## 401 33 TRUE 1 FALSE 1505496491 78719
+## 402 53 TRUE 1 FALSE 1505501386 78719
+## 403 55 TRUE 1 FALSE 1505501455 78719
+## 404 56 TRUE 2 FALSE 1505501591 78719
+## 405 57 TRUE 2 FALSE 1505501659 78719
+## 406 61 TRUE 1 FALSE 1505501700 78719
+## 407 16 TRUE 2 FALSE 1505330738 78719
+## 408 31 TRUE 1 FALSE 1506088629 78719
+## 409 41 TRUE 1 FALSE 1505211829 78719
+## 410 16 TRUE 2 FALSE 1505955250 78719
+## 411 17 TRUE 1 FALSE 1505955256 78719
+## 412 21 TRUE 1 FALSE 1505955414 78719
+## 413 23 TRUE 1 FALSE 1505330961 78719
+## 414 23 TRUE 1 FALSE 1505955847 78719
+## 415 30 TRUE 8 FALSE 1505851908 78719
+## 416 47 TRUE 1 FALSE 1506091126 78719
+## 417 32 TRUE 1 FALSE 1505852056 78719
+## 418 33 TRUE 2 FALSE 1505852708 78719
+## 419 38 TRUE 1 FALSE 1505331347 78719
+## 420 23 TRUE 1 FALSE 1505347519 78719
+## 421 25 TRUE 1 FALSE 1505347564 78719
+## 422 27 TRUE 1 FALSE 1505347811 78719
+## 423 28 TRUE 1 FALSE 1505347847 78719
+## 424 32 TRUE 1 FALSE 1505347945 78719
+## 425 34 TRUE 2 FALSE 1505348287 78719
+## 426 18 TRUE 1 FALSE 1505496007 78719
+## 427 10 TRUE 1 FALSE 1505958584 78719
+## 428 3 TRUE 1 FALSE 1506086075 78719
+## 429 46 TRUE 1 FALSE 1505501186 78719
+## 430 8 TRUE 1 FALSE 1506086148 78719
+## 431 11 TRUE 1 FALSE 1506086223 78719
+## 432 12 TRUE 1 FALSE 1506086343 78719
+## 433 26 TRUE 1 FALSE 1505959075 78719
+## 434 5 TRUE 1 FALSE 1506004825 78719
+## 435 7 TRUE 1 FALSE 1506004878 78719
+## 436 9 TRUE 2 FALSE 1506005509 78719
+## 437 11 TRUE 1 FALSE 1506005685 78719
+## 438 16 TRUE 1 FALSE 1506005864 78719
+## 439 17 TRUE 1 FALSE 1505330749 78719
+## 440 18 TRUE 1 FALSE 1505330760 78719
+## 441 19 TRUE 1 FALSE 1505330806 78719
+## 442 33 TRUE 2 FALSE 1506090248 78719
+## 443 34 TRUE 1 FALSE 1506090619 78719
+## 444 27 TRUE 1 FALSE 1506006586 78719
+## 445 39 TRUE 1 FALSE 1506090890 78719
+## 446 28 TRUE 1 FALSE 1506006963 78719
+## 447 31 TRUE 1 FALSE 1506007028 78719
+## 448 31 TRUE 1 FALSE 1505852010 78719
+## 449 3 TRUE 2 FALSE 1505495349 78719
+## 450 4 TRUE 1 FALSE 1505495362 78719
+## 451 5 TRUE 1 FALSE 1505495372 78719
+## 452 35 TRUE 1 FALSE 1506007061 78719
+## 453 7 TRUE 1 FALSE 1505495433 78719
+## 454 9 TRUE 1 FALSE 1505495458 78719
+## 455 10 TRUE 1 FALSE 1505495488 78719
+## 456 12 TRUE 1 FALSE 1505495631 78719
+## 457 13 TRUE 1 FALSE 1505495740 78719
+## 458 14 TRUE 1 FALSE 1505495791 78719
+## 459 16 TRUE 1 FALSE 1505495846 78719
+## 460 17 TRUE 1 FALSE 1505495958 78719
+## 461 50 TRUE 1 FALSE 1505957446 78719
+## 462 44 TRUE 1 FALSE 1505501107 78719
+## 463 45 TRUE 1 FALSE 1505501160 78719
+## 464 10 TRUE 1 FALSE 1505954807 78719
+## 465 11 TRUE 1 FALSE 1505954822 78719
+## 466 32 TRUE 1 FALSE 1506088657 78719
+## 467 13 TRUE 1 FALSE 1505227687 78719
+## 468 14 TRUE 1 FALSE 1505227699 78719
+## 469 5 TRUE 1 FALSE 1505954593 78719
+## 470 6 TRUE 2 FALSE 1505954716 78719
+## 471 7 TRUE 1 FALSE 1505954728 78719
+## 472 8 TRUE 1 FALSE 1505954730 78719
+## 473 9 TRUE 1 FALSE 1505954743 78719
+## 474 34 TRUE 1 FALSE 1505845472 78719
+## 475 35 TRUE 1 FALSE 1505845478 78719
+## 476 37 TRUE 1 FALSE 1505845488 78719
+## 477 38 TRUE 1 FALSE 1505845493 78719
+## 478 19 TRUE 2 FALSE 1506006177 78719
+## 479 20 TRUE 1 FALSE 1506006215 78719
+## 480 37 TRUE 1 FALSE 1506090824 78719
+## 481 38 TRUE 1 FALSE 1506090859 78719
+## 482 24 TRUE 1 FALSE 1505330976 78719
+## 483 42 TRUE 1 FALSE 1506090976 78719
+## 484 43 TRUE 1 FALSE 1506090979 78719
+## 485 30 TRUE 1 FALSE 1505845421 78719
+## 486 33 TRUE 1 FALSE 1505845453 78719
+## 487 20 TRUE 1 FALSE 1505228732 78719
+## 488 62 TRUE 1 FALSE 1505501701 78719
+## 489 17 TRUE 1 FALSE 1506005908 78719
+## 490 39 TRUE 1 FALSE 1505956742 78719
+## 491 42 TRUE 1 FALSE 1505956923 78719
+## 492 43 TRUE 1 FALSE 1505957091 78719
+## 493 45 TRUE 1 FALSE 1505957113 78719
+## 494 48 TRUE 1 FALSE 1505957336 78719
+## 495 49 TRUE 1 FALSE 1505957391 78719
+## 496 9 TRUE 1 FALSE 1505958570 78719
+## 497 30 TRUE 1 FALSE 1505331167 78719
+## 498 32 TRUE 1 FALSE 1505331228 78719
+## 499 33 TRUE 1 FALSE 1505331248 78719
+## 500 35 TRUE 1 FALSE 1505331315 78719
+## 501 15 TRUE 1 FALSE 1506086441 78719
+## 502 27 TRUE 1 FALSE 1505959078 78719
+## 503 34 TRUE 2 FALSE 1505496624 78719
+## 504 15 TRUE 2 FALSE 1505228613 78719
+## 505 17 TRUE 1 FALSE 1505228645 78719
+## 506 18 TRUE 1 FALSE 1505228692 78719
+## 507 24 TRUE 1 FALSE 1506087274 78719
+## 508 25 TRUE 1 FALSE 1506087284 78719
+## 509 21 TRUE 1 FALSE 1505228790 78719
+## 510 23 TRUE 1 FALSE 1505228855 78719
+## 511 37 TRUE 1 FALSE 1505331345 78719
+## 512 14 TRUE 2 FALSE 1505954976 78719
+## 513 16 TRUE 1 FALSE 1505844732 78719
+## 514 21 TRUE 1 FALSE 1506006309 78719
+## 515 25 TRUE 1 FALSE 1506006523 78719
+## 516 26 TRUE 1 FALSE 1506006538 78719
+## 517 27 TRUE 1 FALSE 1505331048 78719
+## 518 28 TRUE 1 FALSE 1505331140 78719
+## 519 29 TRUE 1 FALSE 1505331150 78719
+## 520 27 TRUE 1 FALSE 1505844996 78719
+## 521 32 TRUE 1 FALSE 1506007037 78719
+## 522 33 TRUE 1 FALSE 1506007043 78719
+## 523 27 TRUE 1 FALSE 1505329142 78719
+## 524 19 TRUE 1 FALSE 1505347429 78719
+## 525 21 TRUE 1 FALSE 1505347466 78719
+## 526 38 TRUE 2 FALSE 1505853433 78719
+## 527 39 TRUE 1 FALSE 1505853508 78719
+## 528 42 TRUE 1 FALSE 1505853693 78719
+## 529 43 TRUE 1 FALSE 1505853702 78719
+## 530 41 TRUE 1 FALSE 1505501022 78719
+## 531 8 TRUE 1 FALSE 1505958562 78719
+## 532 37 TRUE 1 FALSE 1505496650 78719
+## 533 4 TRUE 1 FALSE 1505844594 78719
+## 534 6 TRUE 1 FALSE 1505844624 78719
+## 535 34 TRUE 1 FALSE 1506007048 78719
+## 536 10 TRUE 1 FALSE 1505844664 78719
+## 537 12 TRUE 1 FALSE 1505844684 78719
+## 538 13 TRUE 1 FALSE 1505844691 78719
+## 539 18 TRUE 2 FALSE 1506086647 78719
+## 540 18 TRUE 1 FALSE 1505844857 78719
+## 541 21 TRUE 1 FALSE 1505844901 78719
+## 542 35 TRUE 1 FALSE 1505496631 78719
+## 543 3 TRUE 1 FALSE 1505844582 78719
+## 544 3 TRUE 2 FALSE 1505346308 78719
+## 545 38 TRUE 3 FALSE 1505329730 78719
+## 546 39 TRUE 1 FALSE 1505329782 78719
+## 547 7 TRUE 1 FALSE 1505844639 78719
+## 548 30 TRUE 1 FALSE 1505499580 78719
+## 549 36 TRUE 2 FALSE 1506007123 78719
+## 550 17 TRUE 1 FALSE 1505844816 78719
+## 551 39 TRUE 1 FALSE 1506007135 78719
+## 552 22 TRUE 1 FALSE 1505844943 78719
+## 553 26 TRUE 1 FALSE 1505844989 78719
+## 554 6 TRUE 1 FALSE 1505958509 78719
+## 555 36 TRUE 1 FALSE 1505329632 78719
+## 556 37 TRUE 1 FALSE 1505329666 78719
+## 557 5 TRUE 1 FALSE 1505346366 78719
+## 558 41 TRUE 1 FALSE 1505329873 78719
+## 559 9 TRUE 1 FALSE 1505844649 78719
+## 560 6 TRUE 1 FALSE 1505498707 78719
+## 561 7 TRUE 1 FALSE 1505498747 78719
+## 562 38 TRUE 1 FALSE 1506007131 78719
+## 563 14 TRUE 1 FALSE 1505844720 78719
+## 564 32 TRUE 1 FALSE 1505329489 78719
+## 565 39 TRUE 1 FALSE 1505500932 78719
+## 566 40 TRUE 1 FALSE 1505500954 78719
+## 567 12 TRUE 1 FALSE 1505498930 78719
+## 568 16 TRUE 1 FALSE 1505499123 78719
+## 569 18 TRUE 1 FALSE 1505499226 78719
+## 570 5 TRUE 1 FALSE 1505844610 78719
+## 571 28 TRUE 1 FALSE 1505499490 78719
+## 572 13 TRUE 1 FALSE 1505347051 78719
+## 573 33 TRUE 1 FALSE 1505499862 78719
+## 574 8 TRUE 1 FALSE 1505498788 78719
+## 575 35 TRUE 1 FALSE 1505499995 78719
+## 576 36 TRUE 1 FALSE 1505500071 78719
+## 577 33 TRUE 1 FALSE 1505329568 78719
+## 578 35 TRUE 1 FALSE 1505329608 78719
+## 579 10 TRUE 1 FALSE 1505498875 78719
+## 580 4 TRUE 1 FALSE 1505498686 78719
+## 581 5 TRUE 1 FALSE 1505498695 78719
+## 582 27 TRUE 1 FALSE 1505499461 78719
+## 583 8 TRUE 1 FALSE 1505346618 78719
+## 584 16 TRUE 1 FALSE 1505347366 78719
+## 585 28 TRUE 1 FALSE 1505329182 78719
+## 586 57 TRUE 1 FALSE 1506091673 78719
+## 587 34 TRUE 1 FALSE 1505499901 78719
+## 588 56 TRUE 1 FALSE 1506091671 78719
+## 589 9 TRUE 1 FALSE 1505346658 78719
+## 590 11 TRUE 1 FALSE 1505346735 78719
+## 591 4 TRUE 1 FALSE 1505958381 78719
+## 592 48 TRUE 1 FALSE 1506091241 78719
+## 593 17 TRUE 1 FALSE 1505347402 78719
+## 594 26 TRUE 1 FALSE 1505499403 78719
+## 595 14 TRUE 1 FALSE 1505347072 78719
+## 596 24 TRUE 1 FALSE 1505499341 78719
+## 597 38 TRUE 1 FALSE 1505496653 78719
+## 598 30 TRUE 1 FALSE 1505329267 78719
+## 599 11 TRUE 1 FALSE 1505498901 78719
+## 600 3 TRUE 1 FALSE 1505958346 78719
+## 601 23 TRUE 1 FALSE 1505499328 78719
+## 602 53 TRUE 1 FALSE 1506091433 78719
+## 603 52 TRUE 1 FALSE 1506091267 78719
+## 604 54 TRUE 1 FALSE 1506091576 78719
+## 605 22 TRUE 1 FALSE 1505499300 78719
+## 606 25 TRUE 1 FALSE 1505499359 78719
+## 607 21 TRUE 1 FALSE 1505499273 78719
+## 608 21 TRUE 1 FALSE 1505672801 44419
+## 609 22 TRUE 1 FALSE 1504988371 44419
+## 610 25 TRUE 1 FALSE 1504988436 44419
+## 611 4 TRUE 1 FALSE 1505397508 44419
+## 612 27 TRUE NA NA NA 44419
+## 613 23 TRUE 1 FALSE 1504988381 44419
+## 614 26 TRUE 1 FALSE 1504988559 44419
+## 615 5 TRUE 1 FALSE 1505398539 44419
+## 616 18 TRUE 1 FALSE 1504988249 44419
+## 617 21 TRUE 1 FALSE 1504988327 44419
+## 618 3 TRUE 1 FALSE 1505397488 44419
+## 619 6 TRUE 1 FALSE 1505348198 44419
+## 620 7 TRUE 2 FALSE 1505348259 44419
+## 621 5 TRUE 1 FALSE 1505348113 44419
+## 622 11 TRUE 1 FALSE 1505348334 44419
+## 623 17 TRUE 1 FALSE 1505348421 44419
+## 624 15 TRUE 1 FALSE 1504988164 44419
+## 625 16 TRUE 1 FALSE 1504988177 44419
+## 626 17 TRUE 1 FALSE 1504988219 44419
+## 627 3 TRUE 1 FALSE 1505398500 44419
+## 628 25 TRUE 1 FALSE 1505333675 44419
+## 629 17 TRUE 1 FALSE 1505397782 44419
+## 630 8 TRUE 1 FALSE 1505398886 44419
+## 631 3 TRUE 1 FALSE 1505359039 44419
+## 632 8 TRUE 1 FALSE 1505348264 44419
+## 633 3 TRUE 1 FALSE 1504986835 44419
+## 634 8 TRUE 1 FALSE 1504986923 44419
+## 635 10 TRUE 1 FALSE 1504986941 44419
+## 636 11 TRUE 1 FALSE 1504986960 44419
+## 637 12 TRUE 1 FALSE 1504986967 44419
+## 638 14 TRUE 1 FALSE 1504988140 44419
+## 639 13 TRUE 10 FALSE 1505400338 44419
+## 640 14 TRUE 1 FALSE 1505601498 44419
+## 641 23 TRUE 1 FALSE 1505333608 44419
+## 642 18 TRUE 1 FALSE 1505397803 44419
+## 643 19 TRUE 1 FALSE 1505397823 44419
+## 644 20 TRUE 1 FALSE 1505397847 44419
+## 645 22 TRUE 1 FALSE 1505 44419
+## 646 11 TRUE 1 FALSE 1505670262 44419
+## 647 17 TRUE 1 FALSE 1505670349 44419
+## 648 18 TRUE 1 FALSE 1505670358 44419
+## 649 19 TRUE 1 FALSE 1505670445 44419
+## 650 12 TRUE 1 FALSE 1505397641 44419
+## 651 13 TRUE 1 FALSE 1505397653 44419
+## 652 18 TRUE 1 FALSE 1505672711 44419
+## 653 22 TRUE 1 FALSE 1505333553 44419
+## 654 16 TRUE 1 FALSE 1505397778 44419
+## 655 9 TRUE 1 FALSE 1505395347 44419
+## 656 10 TRUE 1 FALSE 1505395366 44419
+## 657 9 TRUE 1 FALSE 1505398916 44419
+## 658 5 TRUE 1 FALSE 1505397531 44419
+## 659 7 TRUE 1 FALSE 1505397548 44419
+## 660 8 TRUE 1 FALSE 1505397579 44419
+## 661 9 TRUE 1 FALSE 1505397595 44419
+## 662 11 TRUE 1 FALSE 1505397638 44419
+## 663 15 TRUE 3 FALSE 1505395733 44419
+## 664 18 TRUE 2 FALSE 1505348466 44419
+## 665 14 TRUE 1 FALSE 1505397709 44419
+## 666 15 TRUE 1 FALSE 1505397770 44419
+## 667 7 TRUE 1 FALSE 1505353029 44419
+## 668 12 TRUE 2 FALSE 1505395392 44419
+## 669 13 TRUE 1 FALSE 1505395544 44419
+## 670 14 TRUE 1 FALSE 1505395582 44419
+## 671 33 TRUE NA NA NA 44419
+## 672 16 TRUE 1 FALSE 1505672065 44419
+## 673 17 TRUE 1 FALSE 1505672679 44419
+## 674 21 TRUE 1 FALSE 1505333531 44419
+## 675 28 TRUE 1 FALSE 1505670677 44419
+## 676 29 TRUE 1 FALSE 1505670682 44419
+## 677 30 TRUE 1 FALSE 1505670726 44419
+## 678 8 TRUE 1 FALSE 1505353099 44419
+## 679 9 TRUE 1 FALSE 1505353157 44419
+## 680 11 TRUE 1 FALSE 1505398950 44419
+## 681 3 TRUE 1 FALSE 1505352952 44419
+## 682 4 TRUE 1 FALSE 1505352960 44419
+## 683 6 TRUE 1 FALSE 1505353002 44419
+## 684 32 TRUE 1 FALSE 1505670864 44419
+## 685 33 TRUE 1 FALSE 1505670992 44419
+## 686 5 TRUE 1 FALSE 1505670141 44419
+## 687 3 TRUE 1 FALSE 1505613009 44419
+## 688 8 TRUE 1 FALSE 1505613044 44419
+## 689 10 TRUE 1 FALSE 1505613053 44419
+## 690 11 TRUE 1 FALSE 1505613077 44419
+## 691 12 TRUE 1 FALSE 1505613092 44419
+## 692 25 TRUE 1 FALSE 1505670591 44419
+## 693 14 TRUE 1 FALSE 1505613297 44419
+## 694 15 TRUE 1 FALSE 1505613318 44419
+## 695 16 TRUE 1 FALSE 1505613339 44419
+## 696 7 TRUE 2 FALSE 1505395031 44419
+## 697 14 TRUE 1 FALSE 1505359530 44419
+## 698 32 TRUE 1 FALSE 1505348982 44419
+## 699 14 TRUE 1 FALSE 1505672028 44419
+## 700 19 TRUE 1 FALSE 1505333490 44419
+## 701 22 TRUE 1 FALSE 1505613809 44419
+## 702 4 TRUE 1 FALSE 1505394760 44419
+## 703 6 TRUE 1 FALSE 1505394811 44419
+## 704 19 TRUE 1 FALSE 1505348492 44419
+## 705 22 TRUE 1 FALSE 1505348728 44419
+## 706 15 TRUE 1 FALSE 1505359554 44419
+## 707 10 TRUE 1 FALSE 1505353165 44419
+## 708 5 TRUE 1 FALSE 1505359090 44419
+## 709 8 TRUE 4 FALSE 1505359388 44419
+## 710 9 TRUE 1 FALSE 1505359400 44419
+## 711 27 TRUE 1 FALSE 1505396111 44419
+## 712 5 TRUE 1 FALSE 1505332924 44419
+## 713 6 TRUE 1 FALSE 1505332945 44419
+## 714 13 TRUE 1 FALSE 1505359501 44419
+## 715 23 TRUE 1 FALSE 1505348737 44419
+## 716 25 TRUE 1 FALSE 1505348789 44419
+## 717 12 TRUE 1 FALSE 1505353213 44419
+## 718 17 TRUE 1 FALSE 1505353313 44419
+## 719 18 TRUE 1 FALSE 1505353329 44419
+## 720 19 TRUE 1 FALSE 1505353351 44419
+## 721 20 TRUE 1 FALSE 1505353369 44419
+## 722 21 TRUE 1 FALSE 1505353378 44419
+## 723 9 TRUE 1 FALSE 1505332978 44419
+## 724 10 TRUE 1 FALSE 1505332996 44419
+## 725 11 TRUE 1 FALSE 1505333016 44419
+## 726 8 TRUE 1 FALSE 1505332968 44419
+## 727 29 TRUE 1 FALSE 1505348888 44419
+## 728 30 TRUE 1 FALSE 1505348916 44419
+## 729 13 TRUE 1 FALSE 1505671998 44419
+## 730 28 TRUE 1 FALSE 1505348880 44419
+## 731 17 TRUE 1 FALSE 1505333443 44419
+## 732 11 TRUE 1 FALSE 1505359455 44419
+## 733 23 TRUE 1 FALSE 1505670522 44419
+## 734 10 TRUE 1 FALSE 1505359451 44419
+## 735 6 TRUE 1 FALSE 1505670180 44419
+## 736 17 TRUE 1 FALSE 1505359604 44419
+## 737 15 TRUE 2 FALSE 1505333189 44419
+## 738 22 TRUE 1 FALSE 1505670511 44419
+## 739 7 TRUE 1 FALSE 1505670190 44419
+## 740 8 TRUE 1 FALSE 1505670194 44419
+## 741 22 TRUE 1 FALSE 1505353386 44419
+## 742 7 TRUE 1 FALSE 1505671829 44419
+## 743 17 TRUE 1 FALSE 1505395773 44419
+## 744 6 TRUE 1 FALSE 1505671797 44419
+## 745 9 TRUE 1 FALSE 1505671872 44419
+## 746 10 TRUE 1 FALSE 1505671898 44419
+## 747 23 TRUE 1 FALSE 1505613818 44419
+## 748 3 TRUE 2 FALSE 1505671749 44419
+## 749 17 TRUE 1 FALSE 1505613375 44419
+## 750 18 TRUE 1 FALSE 1505613474 44419
+## 751 21 TRUE 3 FALSE 1505359755 44419
+## 752 12 TRUE 1 FALSE 1505671976 44419
+## 753 20 TRUE 1 FALSE 1505395854 44419
+## 754 4 TRUE 1 FALSE 1505671758 44419
+## 755 18 TRUE 1 FALSE 1505395805 44419
+## 756 23 TRUE 1 FALSE 1505395974 44419
+## 757 21 TRUE 2 FALSE 1505613798 44419
+## 758 14 TRUE 2 FALSE 1505333121 44419
+## 759 5 TRUE 1 FALSE 1505671775 44419
+## 760 21 TRUE 1 FALSE 1505395892 44419
+## 761 17 TRUE 1 FALSE 1505355131 14748
+## 762 21 TRUE 2 FALSE 1505175798 14748
+## 763 18 TRUE 1 FALSE 1505355148 14748
+## 764 11 TRUE 1 FALSE 1505355041 14748
+## 765 33 TRUE 1 FALSE 1505350172 14748
+## 766 34 TRUE 1 FALSE 1505350192 14748
+## 767 36 TRUE 1 FALSE 1505350217 14748
+## 768 18 TRUE 1 FALSE 1505175727 14748
+## 769 15 TRUE 1 FALSE 1505349838 14748
+## 770 17 TRUE 1 FALSE 1505175712 14748
+## 771 9 TRUE 1 FALSE 1505355013 14748
+## 772 19 TRUE 1 FALSE 1505347297 14748
+## 773 41 TRUE 1 FALSE 1505350265 14748
+## 774 15 TRUE 2 FALSE 1505346896 14748
+## 775 50 TRUE 1 FALSE 1505358761 14748
+## 776 12 TRUE 1 FALSE 1505355044 14748
+## 777 32 TRUE 1 FALSE 1505350159 14748
+## 778 16 TRUE 1 FALSE 1505175688 14748
+## 779 7 TRUE 1 FALSE 1505349114 14748
+## 780 16 TRUE 2 FALSE 1505355126 14748
+## 781 17 TRUE 1 FALSE 1505348375 14748
+## 782 19 TRUE 1 FALSE 1505355172 14748
+## 783 37 TRUE 1 FALSE 1505350224 14748
+## 784 38 TRUE 1 FALSE 1505350240 14748
+## 785 4 TRUE 1 FALSE 1505350487 14748
+## 786 8 TRUE 1 FALSE 1505355003 14748
+## 787 31 TRUE 1 FALSE 1505350133 14748
+## 788 48 TRUE 1 TRUE 1505358747 14748
+## 789 15 TRUE 1 FALSE 1505355098 14748
+## 790 37 TRUE 1 FALSE 1505351111 14748
+## 791 38 TRUE 1 FALSE 1505351122 14748
+## 792 14 TRUE 2 FALSE 1505346721 14748
+## 793 18 TRUE 2 FALSE 1505348398 14748
+## 794 17 TRUE 1 FALSE 1505347235 14748
+## 795 40 TRUE 1 FALSE 1505350262 14748
+## 796 7 TRUE 1 FALSE 1505354928 14748
+## 797 20 TRUE 1 FALSE 1505350797 14748
+## 798 6 TRUE 1 FALSE 1505346521 14748
+## 799 8 TRUE 1 FALSE 1505346546 14748
+## 800 15 TRUE 1 FALSE 1505175654 14748
+## 801 14 TRUE 1 FALSE 1505355077 14748
+## 802 14 TRUE 1 FALSE 1505349824 14748
+## 803 30 TRUE 1 FALSE 1505350939 14748
+## 804 16 TRUE 1 FALSE 1505357680 14748
+## 805 21 TRUE 1 FALSE 1505349925 14748
+## 806 22 TRUE 1 FALSE 1505349944 14748
+## 807 21 TRUE 1 FALSE 1505347336 14748
+## 808 20 TRUE 1 FALSE 1505355192 14748
+## 809 26 TRUE 1 FALSE 1505349995 14748
+## 810 27 TRUE 1 FALSE 1505350080 14748
+## 811 29 TRUE 1 FALSE 1505350110 14748
+## 812 13 TRUE 1 FALSE 1505355054 14748
+## 813 47 TRUE 1 FALSE 1505358677 14748
+## 814 6 TRUE 1 FALSE 1505349062 14748
+## 815 8 TRUE 1 FALSE 1505349133 14748
+## 816 9 TRUE 1 FALSE 1505349168 14748
+## 817 19 TRUE 1 FALSE 1505348411 14748
+## 818 3 TRUE 1 FALSE 1505354853 14748
+## 819 4 TRUE 1 FALSE 1505354864 14748
+## 820 5 TRUE 1 FALSE 1505354901 14748
+## 821 5 TRUE 1 FALSE 1505346512 14748
+## 822 30 TRUE 1 FALSE 1505350118 14748
+## 823 33 TRUE 1 FALSE 1505176077 14748
+## 824 6 TRUE 1 FALSE 1505350503 14748
+## 825 7 TRUE 1 FALSE 1505350518 14748
+## 826 9 TRUE 2 FALSE 1505350580 14748
+## 827 10 TRUE 1 FALSE 1505350594 14748
+## 828 12 TRUE 1 FALSE 1505350609 14748
+## 829 13 TRUE 1 FALSE 1505350621 14748
+## 830 14 TRUE 1 FALSE 1505350640 14748
+## 831 22 TRUE 1 FALSE 1505355227 14748
+## 832 23 TRUE 1 FALSE 1505355244 14748
+## 833 31 TRUE 1 FALSE 1505176029 14748
+## 834 13 TRUE 13 FALSE 1505349803 14748
+## 835 32 TRUE 1 FALSE 1505347687 14748
+## 836 33 TRUE 1 FALSE 1505347702 14748
+## 837 17 TRUE 1 FALSE 1505349863 14748
+## 838 35 TRUE 1 FALSE 1505347832 14748
+## 839 3 TRUE 1 FALSE 1505175460 14748
+## 840 23 TRUE 1 FALSE 1505349962 14748
+## 841 7 TRUE 1 FALSE 1505348262 14748
+## 842 8 TRUE 1 FALSE 1505348266 14748
+## 843 11 TRUE 1 FALSE 1505348300 14748
+## 844 14 TRUE 1 FALSE 1505175639 14748
+## 845 36 TRUE 1 FALSE 1505351094 14748
+## 846 5 TRUE 2 FALSE 1505355738 14748
+## 847 3 TRUE 1 FALSE 1505349005 14748
+## 848 39 TRUE 1 FALSE 1505176152 14748
+## 849 39 TRUE 1 FALSE 1505351151 14748
+## 850 51 TRUE 1 FALSE 1505358763 14748
+## 851 22 TRUE 2 FALSE 1505175830 14748
+## 852 23 TRUE 1 FALSE 1505175840 14748
+## 853 19 TRUE 1 FALSE 1505349295 14748
+## 854 27 TRUE 1 FALSE 1505175950 14748
+## 855 21 TRUE 1 FALSE 1505349311 14748
+## 856 22 TRUE 1 FALSE 1505349314 14748
+## 857 36 TRUE 1 FALSE 1505176120 14748
+## 858 38 TRUE 1 FALSE 1505176145 14748
+## 859 31 TRUE 2 FALSE 1505347602 14748
+## 860 40 TRUE 1 FALSE 1505176156 14748
+## 861 13 TRUE 4 FALSE 1505357576 14748
+## 862 17 TRUE 1 FALSE 1505357694 14748
+## 863 11 TRUE 1 FALSE 1505349647 14748
+## 864 21 TRUE 1 FALSE 1505350820 14748
+## 865 27 TRUE 1 FALSE 1505350892 14748
+## 866 3 TRUE 1 FALSE 1505349521 14748
+## 867 28 TRUE 1 FALSE 1505355317 14748
+## 868 29 TRUE 1 FALSE 1505355320 14748
+## 869 34 TRUE 1 FALSE 1505347811 14748
+## 870 32 TRUE 1 FALSE 1505355398 14748
+## 871 40 TRUE 1 FALSE 1505347882 14748
+## 872 8 TRUE 1 FALSE 1505175531 14748
+## 873 10 TRUE 1 FALSE 1505175544 14748
+## 874 11 TRUE 1 FALSE 1505175562 14748
+## 875 12 TRUE 1 FALSE 1505175569 14748
+## 876 43 TRUE 1 FALSE 1505358579 14748
+## 877 4 TRUE 1 FALSE 1505349011 14748
+## 878 42 TRUE 1 FALSE 1505358552 14748
+## 879 5 TRUE 1 FALSE 1505349553 14748
+## 880 17 TRUE 1 FALSE 1505349268 14748
+## 881 18 TRUE 1 FALSE 1505349282 14748
+## 882 43 TRUE 1 FALSE 1505351227 14748
+## 883 20 TRUE 1 FALSE 1505349307 14748
+## 884 25 TRUE 2 FALSE 1505175919 14748
+## 885 26 TRUE 1 FALSE 1505175941 14748
+## 886 41 TRUE 1 TRUE 1505358432 14748
+## 887 27 TRUE 1 FALSE 1505355293 14748
+## 888 25 TRUE 1 FALSE 1505357788 14748
+## 889 8 TRUE 2 FALSE 1505349612 14748
+## 890 9 TRUE 1 FALSE 1505349619 14748
+## 891 10 TRUE 1 FALSE 1505349643 14748
+## 892 14 TRUE 1 FALSE 1505357599 14748
+## 893 19 TRUE 1 FALSE 1505357717 14748
+## 894 22 TRUE 1 FALSE 1505347388 14748
+## 895 23 TRUE 1 FALSE 1505347414 14748
+## 896 23 TRUE 1 FALSE 1505350846 14748
+## 897 29 TRUE 1 FALSE 1505347559 14748
+## 898 8 TRUE 15 TRUE 1505357218 14748
+## 899 9 TRUE 1 FALSE 1505357252 14748
+## 900 9 TRUE 1 FALSE 1505346554 14748
+## 901 28 TRUE 1 FALSE 1505350909 14748
+## 902 30 TRUE 1 FALSE 1505355374 14748
+## 903 41 TRUE 1 FALSE 1505347891 14748
+## 904 5 TRUE 1 FALSE 1505348212 14748
+## 905 6 TRUE 1 FALSE 1505348248 14748
+## 906 35 TRUE 1 FALSE 1505351066 14748
+## 907 3 TRUE 1 FALSE 1505355679 14748
+## 908 24 TRUE 1 FALSE 1505355261 14748
+## 909 23 TRUE 2 FALSE 1505357765 14748
+## 910 10 TRUE 1 FALSE 1505346567 14748
+## 911 11 TRUE 1 FALSE 1505346591 14748
+## 912 41 TRUE 4 FALSE 1505351203 14748
+## 913 42 TRUE 1 FALSE 1505351221 14748
+## 914 44 TRUE 1 FALSE 1505351246 14748
+## 915 25 TRUE 1 FALSE 1505348616 14748
+## 916 11 TRUE 1 FALSE 1505357283 14748
+## 917 40 TRUE 1 FALSE 1505348877 14748
+## 918 15 TRUE 2 FALSE 1505350700 14748
+## 919 25 TRUE 1 FALSE 1505347434 14748
+## 920 27 TRUE 1 FALSE 1505347523 14748
+## 921 40 TRUE 2 FALSE 1505358376 14748
+## 922 28 TRUE 1 FALSE 1505348675 14748
+## 923 27 TRUE 2 FALSE 1505357948 14748
+## 924 28 TRUE 1 TRUE 1505357991 14748
+## 925 10 TRUE 1 FALSE 1505349177 14748
+## 926 32 TRUE 4 FALSE 1505351012 14748
+## 927 33 TRUE 2 FALSE 1505351042 14748
+## 928 18 TRUE 1 FALSE 1505350763 14748
+## 929 29 TRUE 1 FALSE 1505348684 14748
+## 930 12 TRUE 1 FALSE 1505349206 14748
+## 931 35 TRUE 1 FALSE 1505348837 14748
+## 932 39 TRUE 1 FALSE 1505348875 14748
+## 933 23 TRUE 1 FALSE 1505348483 14748
+## 934 54 TRUE 1 FALSE 1505351456 14748
+## 935 35 TRUE 1 FALSE 1505355436 14748
+## 936 50 TRUE 1 FALSE 1505351432 14748
+## 937 17 TRUE 1 FALSE 1505350736 14748
+## 938 38 TRUE 1 FALSE 1505358195 14748
+## 939 33 TRUE 2 FALSE 1505348819 14748
+## 940 21 TRUE 1 FALSE 1505357736 14748
+## 941 53 TRUE 1 FALSE 1505351453 14748
+## 942 32 TRUE 1 FALSE 1505358029 14748
+## 943 32 TRUE 1 FALSE 1505348746 14748
+## 944 33 TRUE 1 FALSE 1505355410 14748
+## 945 30 TRUE 1 FALSE 1505348708 14748
+## 946 47 TRUE 1 FALSE 1505351395 14748
+## 947 49 TRUE 1 FALSE 1505351420 14748
+## 948 36 TRUE 1 FALSE 1505358162 14748
+## 949 35 TRUE 1 TRUE 1505358146 14748
+## 950 37 TRUE 1 FALSE 1505355452 14748
+## 951 51 TRUE 1 FALSE 1505351444 14748
+## 952 38 TRUE 1 FALSE 1505355459 14748
+## 953 22 TRUE 1 FALSE 1505348473 14748
+## 954 46 TRUE 2 FALSE 1505351367 14748
+## 955 34 TRUE 1 TRUE 1505358111 14748
+## 956 40 TRUE 1 FALSE 1505332661 88135
+## 957 21 TRUE 1 FALSE 1505331746 88135
+## 958 18 TRUE 2 FALSE 1505331258 88135
+## 959 17 TRUE 2 FALSE 1505331224 88135
+## 960 33 TRUE 1 FALSE 1505332496 88135
+## 961 15 TRUE 3 FALSE 1505331065 88135
+## 962 3 TRUE 1 FALSE 1505330766 88135
+## 963 38 TRUE 1 FALSE 1505332647 88135
+## 964 39 TRUE 1 FALSE 1505332658 88135
+## 965 36 TRUE 2 FALSE 1505332572 88135
+## 966 16 TRUE 1 FALSE 1505331073 88135
+## 967 8 TRUE 1 FALSE 1505330823 88135
+## 968 26 TRUE 1 FALSE 1505332294 88135
+## 969 10 TRUE 1 FALSE 1505330833 88135
+## 970 31 TRUE 1 FALSE 1505332426 88135
+## 971 11 TRUE 1 FALSE 1505330844 88135
+## 972 12 TRUE 1 FALSE 1505330847 88135
+## 973 22 TRUE 1 FALSE 1505331849 88135
+## 974 27 TRUE 1 FALSE 1505332303 88135
+## 975 25 TRUE 1 FALSE 1505332204 88135
+## 976 14 TRUE 2 FALSE 1505331018 88135
+## 977 23 TRUE 1 FALSE 1505331858 88135
+## 978 27 TRUE 1 FALSE 1505504564 55259
+## 979 23 TRUE 1 FALSE 1505500848 55259
+## 980 14 TRUE 1 FALSE 1505497383 55259
+## 981 25 TRUE 1 FALSE 1505500876 55259
+## 982 9 TRUE 1 FALSE 1505496746 55259
+## 983 15 TRUE 2 FALSE 1505498980 55259
+## 984 8 TRUE 1 FALSE 1505496742 55259
+## 985 22 TRUE 1 FALSE 1505500560 55259
+## 986 41 TRUE 1 FALSE 1505512818 55259
+## 987 17 TRUE 2 FALSE 1505500224 55259
+## 988 11 TRUE 1 FALSE 1505497215 55259
+## 989 10 TRUE 1 FALSE 1505497011 55259
+## 990 6 TRUE 1 FALSE 1505496679 55259
+## 991 21 TRUE 1 FALSE 1505500347 55259
+## 992 33 TRUE 1 FALSE 1505508707 55259
+## 993 40 TRUE 1 FALSE 1505512815 55259
+## 994 31 TRUE 2 FALSE 1505507125 55259
+## 995 32 TRUE 1 FALSE 1505508679 55259
+## 996 29 TRUE 1 FALSE 1505506937 55259
+## 997 5 TRUE 1 FALSE 1505496673 55259
+## 998 19 TRUE 1 FALSE 1505500324 55259
+## 999 35 TRUE 1 FALSE 1505510294 55259
+## 1000 34 TRUE 2 FALSE 1505509316 55259
+## 1001 14 TRUE 2 FALSE 1504888348 75332
+## 1002 17 TRUE 1 FALSE 1504988618 75332
+## 1003 18 TRUE 1 FALSE 1504988630 75332
+## 1004 19 TRUE 1 FALSE 1504988654 75332
+## 1005 20 TRUE 1 FALSE 15049 75332
+## 1006 15 TRUE 2 FALSE 1504888438 75332
+## 1007 17 TRUE 2 FALSE 1504888570 75332
+## 1008 19 TRUE 2 FALSE 1504888653 75332
+## 1009 21 TRUE 2 FALSE 1504888757 75332
+## 1010 16 TRUE 2 FALSE 1504988608 75332
+## 1011 10 TRUE 1 FALSE 1504888198 75332
+## 1012 11 TRUE 1 FALSE 1504888235 75332
+## 1013 3 TRUE 1 FALSE 1504960775 75332
+## 1014 4 TRUE 1 FALSE 1504960785 75332
+## 1015 6 TRUE 1 FALSE 1504960925 75332
+## 1016 7 TRUE 1 FALSE 1504960939 75332
+## 1017 8 TRUE 1 FALSE 1504960990 75332
+## 1018 9 TRUE 1 FALSE 1504961065 75332
+## 1019 10 TRUE 1 FALSE 1504961074 75332
+## 1020 12 TRUE 1 FALSE 1504961131 75332
+## 1021 17 TRUE 1 FALSE 1504961270 75332
+## 1022 18 TRUE 1 FALSE 1504961289 75332
+## 1023 19 TRUE 1 FALSE 1504961317 75332
+## 1024 20 TRUE 1 FALSE 1504961330 75332
+## 1025 21 TRUE 1 FALSE 1504961339 75332
+## 1026 22 TRUE 1 FALSE 1504961345 75332
+## 1027 27 TRUE NA NA NA 75332
+## 1028 3 TRUE 1 FALSE 1504964728 75332
+## 1029 4 TRUE 1 FALSE 1504965515 75332
+## 1030 6 TRUE 1 FALSE 1504965535 75332
+## 1031 7 TRUE 1 FALSE 1504965546 75332
+## 1032 9 TRUE 1 FALSE 1504980565 75332
+## 1033 10 TRUE 1 FALSE 1504980574 75332
+## 1034 12 TRUE 1 FALSE 1504980592 75332
+## 1035 13 TRUE 1 FALSE 1504980599 75332
+## 1036 14 TRUE 1 FALSE 1504980608 75332
+## 1037 15 TRUE 1 FALSE 1504980642 75332
+## 1038 17 TRUE 1 FALSE 1504980684 75332
+## 1039 18 TRUE 1 FALSE 1504980700 75332
+## 1040 20 TRUE 1 FALSE 1504980752 75332
+## 1041 21 TRUE 1 FALSE 1504980843 75332
+## 1042 23 TRUE 1 FALSE 1504980871 75332
+## 1043 27 TRUE 1 FALSE 1504980924 75332
+## 1044 5 TRUE 1 FALSE 1504888131 75332
+## 1045 6 TRUE 1 FALSE 1504888142 75332
+## 1046 8 TRUE 1 FALSE 1504888164 75332
+## 1047 9 TRUE 1 FALSE 1504888175 75332
+## 1048 33 TRUE 1 FALSE 1504981065 75332
+## 1049 3 TRUE 1 FALSE 1504981591 75332
+## 1050 4 TRUE 1 FALSE 1504981597 75332
+## 1051 5 TRUE 1 FALSE 1504981607 75332
+## 1052 7 TRUE 1 FALSE 1504981637 75332
+## 1053 8 TRUE 1 FALSE 1504981666 75332
+## 1054 9 TRUE 1 FALSE 1504981673 75332
+## 1055 11 TRUE 1 FALSE 1504988503 75332
+## 1056 12 TRUE 1 FALSE 1504988507 75332
+## 1057 13 TRUE 1 FALSE 1504988513 75332
+## 1058 14 TRUE 1 FALSE 1504988524 75332
+## 1059 15 TRUE 1 FALSE 1504988569 75332
+## 1060 21 TRUE 1 FALSE 1504880016 75332
+## 1061 22 TRUE 1 FALSE 1504880028 75332
+## 1062 23 TRUE 1 FALSE 1504880039 75332
+## 1063 25 TRUE 1 FALSE 1504880067 75332
+## 1064 26 TRUE 1 FALSE 1504880080 75332
+## 1065 11 TRUE 1 FALSE 1504912448 75332
+## 1066 17 TRUE 1 FALSE 1504912520 75332
+## 1067 18 TRUE 1 FALSE 1504912528 75332
+## 1068 5 TRUE 1 FALSE 1504964756 75332
+## 1069 8 TRUE 1 FALSE 1504964826 75332
+## 1070 9 TRUE 1 FALSE 1504964835 75332
+## 1071 10 TRUE 1 FALSE 1504964861 75332
+## 1072 5 TRUE 2 FALSE 1504912376 75332
+## 1073 6 TRUE 1 FALSE 1504912398 75332
+## 1074 7 TRUE 2 FALSE 1504912415 75332
+## 1075 8 TRUE 1 FALSE 1504912421 75332
+## 1076 8 TRUE 1 FALSE 1504879734 75332
+## 1077 10 TRUE 1 FALSE 1504879752 75332
+## 1078 11 TRUE 1 FALSE 1504879761 75332
+## 1079 19 TRUE 1 FALSE 1504912547 75332
+## 1080 22 TRUE 1 FALSE 1504912594 75332
+## 1081 28 TRUE 1 FALSE 1504980933 75332
+## 1082 30 TRUE 1 FALSE 1504980991 75332
+## 1083 32 TRUE 1 FALSE 1504981038 75332
+## 1084 29 TRUE 1 FALSE 1504912702 75332
+## 1085 30 TRUE 1 FALSE 1504912724 75332
+## 1086 32 TRUE 1 FALSE 1504916790 75332
+## 1087 3 TRUE 1 FALSE 1504879686 75332
+## 1088 21 TRUE 1 FALSE 1504965055 75332
+## 1089 22 TRUE 1 FALSE 1504965082 75332
+## 1090 23 TRUE 1 FALSE 1504965098 75332
+## 1091 12 TRUE 1 FALSE 1504879765 75332
+## 1092 14 TRUE 1 FALSE 1504879903 75332
+## 1093 15 TRUE 1 FALSE 1504879919 75332
+## 1094 16 TRUE 1 FALSE 1504879923 75332
+## 1095 17 TRUE 1 FALSE 1504879951 75332
+## 1096 18 TRUE 1 FALSE 1504879969 75332
+## 1097 13 TRUE 1 FALSE 1504964908 75332
+## 1098 14 TRUE 1 FALSE 1504964917 75332
+## 1099 15 TRUE 1 FALSE 1504964932 75332
+## 1100 17 TRUE 1 FALSE 1504964983 75332
+## 1101 26 TRUE 2 FALSE 1504965189 75332
+## 1102 27 TRUE 1 FALSE 1504965206 75332
+## 1103 11 TRUE 1 FALSE 1504964864 75332
+## 1104 28 TRUE 1 FALSE 1504912693 75332
+## 1105 23 TRUE 1 FALSE 1504912599 75332
+## 1106 25 TRUE 1 FALSE 1504912640 75332
+## 1107 31 TRUE 1 FALSE 1505857844 80970
+## 1108 16 TRUE 2 FALSE 1506301522 80970
+## 1109 23 TRUE 2 FALSE 1505857425 80970
+## 1110 32 TRUE 2 FALSE 1506248219 80970
+## 1111 10 TRUE 1 FALSE 1506246734 80970
+## 1112 15 TRUE 1 FALSE 1506301487 80970
+## 1113 41 TRUE 1 FALSE 1505859709 80970
+## 1114 13 TRUE 1 FALSE 1506301455 80970
+## 1115 9 TRUE 1 FALSE 1506246670 80970
+## 1116 39 TRUE 1 FALSE 1506248456 80970
+## 1117 33 TRUE 2 FALSE 1506248236 80970
+## 1118 11 TRUE 1 FALSE 1506246743 80970
+## 1119 11 TRUE 1 FALSE 1506301400 80970
+## 1120 10 TRUE 1 FALSE 1506301347 80970
+## 1121 9 TRUE 2 FALSE 1505856912 80970
+## 1122 11 TRUE 1 FALSE 1505856989 80970
+## 1123 5 TRUE 3 FALSE 1505893274 80970
+## 1124 10 TRUE 1 FALSE 1505856923 80970
+## 1125 6 TRUE 3 FALSE 1505893376 80970
+## 1126 35 TRUE 2 FALSE 1506248305 80970
+## 1127 34 TRUE 1 FALSE 1506248279 80970
+## 1128 9 TRUE 1 FALSE 1506301333 80970
+## 1129 7 TRUE 1 FALSE 1506246639 80970
+## 1130 8 TRUE 1 FALSE 1506246645 80970
+## 1131 35 TRUE 1 FALSE 1505927021 80970
+## 1132 25 TRUE 1 FALSE 1505857455 80970
+## 1133 27 TRUE 1 FALSE 1505857751 80970
+## 1134 47 TRUE 1 FALSE 1505924508 80970
+## 1135 32 TRUE 2 FALSE 1505859280 80970
+## 1136 33 TRUE 1 FALSE 1505859357 80970
+## 1137 34 TRUE 2 FALSE 1505859539 80970
+## 1138 35 TRUE 1 FALSE 1505859605 80970
+## 1139 40 TRUE 1 FALSE 1505859705 80970
+## 1140 17 TRUE 1 FALSE 1505928336 80970
+## 1141 19 TRUE 1 FALSE 1505928352 80970
+## 1142 21 TRUE 1 FALSE 1505928372 80970
+## 1143 23 TRUE 1 FALSE 1505928418 80970
+## 1144 29 TRUE 1 FALSE 1505857816 80970
+## 1145 46 TRUE 1 FALSE 1505924470 80970
+## 1146 28 TRUE 1 FALSE 1505928875 80970
+## 1147 32 TRUE 1 FALSE 1505929059 80970
+## 1148 34 TRUE 1 FALSE 1505929220 80970
+## 1149 35 TRUE 1 FALSE 1505929240 80970
+## 1150 5 TRUE 1 FALSE 1505856843 80970
+## 1151 6 TRUE 1 FALSE 1505856867 80970
+## 1152 8 TRUE 1 FALSE 1505856905 80970
+## 1153 41 TRUE 1 FALSE 1505930472 80970
+## 1154 42 TRUE 2 FALSE 1505930972 80970
+## 1155 43 TRUE 1 FALSE 1505931081 80970
+## 1156 25 TRUE 1 FALSE 1505928467 80970
+## 1157 27 TRUE 1 FALSE 1505928744 80970
+## 1158 54 TRUE 1 FALSE 1506249648 80970
+## 1159 3 TRUE 1 FALSE 1506301071 80970
+## 1160 4 TRUE 1 FALSE 1506301278 80970
+## 1161 6 TRUE 1 FALSE 1506301306 80970
+## 1162 8 TRUE 1 FALSE 1506301318 80970
+## 1163 21 TRUE 1 FALSE 1505857304 80970
+## 1164 22 TRUE 1 FALSE 1505857381 80970
+## 1165 33 TRUE 1 FALSE 1505926188 80970
+## 1166 53 TRUE 2 FALSE 1505527288 80970
+## 1167 54 TRUE 1 FALSE 1505527586 80970
+## 1168 56 TRUE 1 FALSE 1505527603 80970
+## 1169 57 TRUE 1 FALSE 1505527606 80970
+## 1170 14 TRUE 3 FALSE 1506247113 80970
+## 1171 16 TRUE 1 FALSE 1506247395 80970
+## 1172 17 TRUE 1 FALSE 1506247406 80970
+## 1173 21 TRUE 2 FALSE 1506247574 80970
+## 1174 22 TRUE 1 FALSE 1506247737 80970
+## 1175 23 TRUE 1 FALSE 1506247745 80970
+## 1176 25 TRUE 1 FALSE 1506247808 80970
+## 1177 26 TRUE 1 FALSE 1506248007 80970
+## 1178 27 TRUE 1 FALSE 1506248019 80970
+## 1179 31 TRUE 1 FALSE 1506248114 80970
+## 1180 19 TRUE 2 FALSE 1506349930 80970
+## 1181 20 TRUE 1 FALSE 1506350001 80970
+## 1182 21 TRUE 1 FALSE 1506350014 80970
+## 1183 25 TRUE 1 FALSE 1506350076 80970
+## 1184 26 TRUE 1 FALSE 1506350105 80970
+## 1185 27 TRUE 2 FALSE 1506350139 80970
+## 1186 42 TRUE 1 FALSE 1506248794 80970
+## 1187 43 TRUE 1 FALSE 1506248870 80970
+## 1188 45 TRUE 1 FALSE 1506248922 80970
+## 1189 48 TRUE 1 FALSE 1506249111 80970
+## 1190 14 TRUE 1 FALSE 1505857018 80970
+## 1191 15 TRUE 1 FALSE 1505857085 80970
+## 1192 17 TRUE 2 FALSE 1505857137 80970
+## 1193 19 TRUE 4 FALSE 1505857187 80970
+## 1194 6 TRUE 2 FALSE 1506246621 80970
+## 1195 48 TRUE 2 FALSE 1505526547 80970
+## 1196 52 TRUE 1 FALSE 1505526700 80970
+## 1197 10 TRUE 1 FALSE 1505528647 80970
+## 1198 11 TRUE 2 FALSE 1505528695 80970
+## 1199 12 TRUE 1 FALSE 1505528709 80970
+## 1200 16 TRUE 1 FALSE 1505528741 80970
+## 1201 18 TRUE 1 FALSE 1505528754 80970
+## 1202 49 TRUE 1 FALSE 1505924554 80970
+## 1203 50 TRUE 1 FALSE 1505924563 80970
+## 1204 51 TRUE 1 FALSE 1505924601 80970
+## 1205 53 TRUE 1 FALSE 1505924610 80970
+## 1206 54 TRUE 1 FALSE 1505924614 80970
+## 1207 3 TRUE 1 FALSE 1505925110 80970
+## 1208 4 TRUE 1 FALSE 1505925124 80970
+## 1209 8 TRUE 1 FALSE 1505925189 80970
+## 1210 9 TRUE 1 FALSE 1505925207 80970
+## 1211 11 TRUE 1 FALSE 1505925355 80970
+## 1212 12 TRUE 1 FALSE 1505925363 80970
+## 1213 7 TRUE 2 FALSE 1505893395 80970
+## 1214 8 TRUE 1 FALSE 1505893407 80970
+## 1215 11 TRUE 1 FALSE 1505893432 80970
+## 1216 17 TRUE 1 FALSE 1505893498 80970
+## 1217 18 TRUE 1 FALSE 1505893507 80970
+## 1218 19 TRUE 1 FALSE 1505893539 80970
+## 1219 49 TRUE 1 FALSE 1506249231 80970
+## 1220 50 TRUE 1 FALSE 1506249322 80970
+## 1221 51 TRUE 2 FALSE 1506249619 80970
+## 1222 53 TRUE 1 FALSE 1506249641 80970
+## 1223 4 TRUE 2 FALSE 1505528557 80970
+## 1224 5 TRUE 1 FALSE 1505528568 80970
+## 1225 6 TRUE 1 FALSE 1505528579 80970
+## 1226 7 TRUE 1 FALSE 1505528590 80970
+## 1227 8 TRUE 1 FALSE 1505528620 80970
+## 1228 62 TRUE 1 FALSE 1505532681 80970
+## 1229 37 TRUE 1 FALSE 1505927027 80970
+## 1230 38 TRUE 1 FALSE 1505927033 80970
+## 1231 3 TRUE 1 FALSE 1505927150 80970
+## 1232 5 TRUE 1 FALSE 1505927196 80970
+## 1233 8 TRUE 1 FALSE 1505927349 80970
+## 1234 9 TRUE 1 FALSE 1505927548 80970
+## 1235 11 TRUE 1 FALSE 1505927597 80970
+## 1236 13 TRUE 1 FALSE 1505927687 80970
+## 1237 14 TRUE 1 FALSE 1505927711 80970
+## 1238 16 TRUE 2 FALSE 1505928326 80970
+## 1239 25 TRUE 1 FALSE 1505522821 80970
+## 1240 28 TRUE 1 FALSE 1505523646 80970
+## 1241 29 TRUE 1 FALSE 1505523913 80970
+## 1242 30 TRUE 2 FALSE 1505524414 80970
+## 1243 31 TRUE 1 FALSE 1505524487 80970
+## 1244 32 TRUE 1 FALSE 1505524531 80970
+## 1245 36 TRUE 1 FALSE 1505929252 80970
+## 1246 38 TRUE 1 FALSE 1505930105 80970
+## 1247 40 TRUE 1 FALSE 1505930423 80970
+## 1248 33 TRUE 7 FALSE 1505525252 80970
+## 1249 34 TRUE 1 FALSE 1505525278 80970
+## 1250 37 TRUE 1 FALSE 1505525467 80970
+## 1251 47 TRUE 1 FALSE 1505931417 80970
+## 1252 48 TRUE 2 FALSE 1505931531 80970
+## 1253 50 TRUE 1 FALSE 1505931543 80970
+## 1254 51 TRUE 1 FALSE 1505931544 80970
+## 1255 5 TRUE 1 FALSE 1506246572 80970
+## 1256 23 TRUE 1 FALSE 1505895800 80970
+## 1257 26 TRUE 1 FALSE 1505895831 80970
+## 1258 27 TRUE 1 FALSE 1505895850 80970
+## 1259 29 TRUE 1 FALSE 1505895893 80970
+## 1260 30 TRUE 1 FALSE 1505895901 80970
+## 1261 31 TRUE 1 FALSE 1505895978 80970
+## 1262 32 TRUE 1 FALSE 1505896020 80970
+## 1263 33 TRUE 1 FALSE 1505896052 80970
+## 1264 34 TRUE 1 FALSE 1505896136 80970
+## 1265 36 TRUE 1 FALSE 1505896181 80970
+## 1266 37 TRUE 1 FALSE 1505896193 80970
+## 1267 5 TRUE 1 FALSE 1506337543 80970
+## 1268 7 TRUE 1 FALSE 1506337602 80970
+## 1269 9 TRUE 1 FALSE 1506349254 80970
+## 1270 11 TRUE 2 FALSE 1506349423 80970
+## 1271 16 TRUE 1 FALSE 1506349570 80970
+## 1272 17 TRUE 1 FALSE 1506349617 80970
+## 1273 10 TRUE 1 FALSE 1505923243 80970
+## 1274 12 TRUE 1 FALSE 1505923251 80970
+## 1275 13 TRUE 1 FALSE 1505923256 80970
+## 1276 14 TRUE 2 FALSE 1505923270 80970
+## 1277 15 TRUE 1 FALSE 1505923445 80970
+## 1278 17 TRUE 1 FALSE 1505923469 80970
+## 1279 18 TRUE 1 FALSE 1505923493 80970
+## 1280 28 TRUE 2 FALSE 1506350317 80970
+## 1281 31 TRUE 1 FALSE 1506350350 80970
+## 1282 32 TRUE 5 FALSE 1506350391 80970
+## 1283 33 TRUE 1 FALSE 1506350398 80970
+## 1284 34 TRUE 1 FALSE 1506350402 80970
+## 1285 35 TRUE 1 FALSE 1506350415 80970
+## 1286 36 TRUE 2 FALSE 1506350430 80970
+## 1287 38 TRUE 1 FALSE 1506350439 80970
+## 1288 39 TRUE 1 FALSE 1506350441 80970
+## 1289 39 TRUE 1 FALSE 1505924199 80970
+## 1290 41 TRUE 2 FALSE 1505924288 80970
+## 1291 42 TRUE 1 FALSE 1505924318 80970
+## 1292 43 TRUE 1 FALSE 1505924324 80970
+## 1293 44 TRUE 1 FALSE 1505924416 80970
+## 1294 3 TRUE 1 FALSE 1505894274 80970
+## 1295 4 TRUE 1 FALSE 1505894284 80970
+## 1296 21 TRUE 2 FALSE 1505528952 80970
+## 1297 22 TRUE 1 FALSE 1505528963 80970
+## 1298 23 TRUE 2 FALSE 1505529038 80970
+## 1299 24 TRUE 1 FALSE 1505529049 80970
+## 1300 25 TRUE 1 FALSE 1505529078 80970
+## 1301 26 TRUE 1 FALSE 1505529090 80970
+## 1302 5 TRUE 1 FALSE 1505925139 80970
+## 1303 7 TRUE 1 FALSE 1505925152 80970
+## 1304 30 TRUE 2 FALSE 1505529203 80970
+## 1305 33 TRUE 1 FALSE 1505529230 80970
+## 1306 34 TRUE 1 FALSE 1505529293 80970
+## 1307 35 TRUE 2 FALSE 1505529376 80970
+## 1308 13 TRUE 1 FALSE 1505925389 80970
+## 1309 14 TRUE 1 FALSE 1505925451 80970
+## 1310 15 TRUE 2 FALSE 1505925494 80970
+## 1311 16 TRUE 1 FALSE 1505925503 80970
+## 1312 17 TRUE 1 FALSE 1505925529 80970
+## 1313 18 TRUE 1 FALSE 1505925594 80970
+## 1314 19 TRUE 1 FALSE 1505925631 80970
+## 1315 22 TRUE 2 FALSE 1505893623 80970
+## 1316 23 TRUE 1 FALSE 1505893634 80970
+## 1317 25 TRUE 2 FALSE 1505893691 80970
+## 1318 28 TRUE 2 FALSE 1505893816 80970
+## 1319 29 TRUE 1 FALSE 1505893830 80970
+## 1320 30 TRUE 1 FALSE 1505893859 80970
+## 1321 32 TRUE 1 FALSE 1505893934 80970
+## 1322 33 TRUE 3 FALSE 1505894069 80970
+## 1323 35 TRUE 1 FALSE 1505894138 80970
+## 1324 39 TRUE 1 FALSE 1505894185 80970
+## 1325 40 TRUE 1 FALSE 1505894189 80970
+## 1326 12 TRUE 1 FALSE 1505443060 80970
+## 1327 15 TRUE 1 FALSE 1505520968 80970
+## 1328 6 TRUE 1 FALSE 1505894333 80970
+## 1329 7 TRUE 1 FALSE 1505894350 80970
+## 1330 8 TRUE 2 FALSE 1505894416 80970
+## 1331 9 TRUE 1 FALSE 1505894479 80970
+## 1332 10 TRUE 1 FALSE 1505894489 80970
+## 1333 12 TRUE 1 FALSE 1505894526 80970
+## 1334 17 TRUE 3 FALSE 1505894655 80970
+## 1335 18 TRUE 1 FALSE 1505894884 80970
+## 1336 19 TRUE 1 FALSE 1505894938 80970
+## 1337 20 TRUE 1 FALSE 1505894956 80970
+## 1338 21 TRUE 1 FALSE 1505894963 80970
+## 1339 22 TRUE 1 FALSE 1505894965 80970
+## 1340 8 TRUE 1 FALSE 1505895455 80970
+## 1341 9 TRUE 1 FALSE 1505895462 80970
+## 1342 10 TRUE 2 FALSE 1505895486 80970
+## 1343 38 TRUE 1 FALSE 1505525535 80970
+## 1344 39 TRUE 1 FALSE 1505525739 80970
+## 1345 42 TRUE 1 FALSE 1505525826 80970
+## 1346 43 TRUE 1 FALSE 1505525831 80970
+## 1347 46 TRUE 3 FALSE 1505526373 80970
+## 1348 47 TRUE 1 FALSE 1505526412 80970
+## 1349 22 TRUE 1 FALSE 1505895782 80970
+## 1350 37 TRUE 2 FALSE 1505924106 80970
+## 1351 38 TRUE 1 FALSE 1505924117 80970
+## 1352 32 TRUE 1 FALSE 1505926179 80970
+## 1353 3 TRUE 1 FALSE 1505442611 80970
+## 1354 6 TRUE 1 FALSE 1505442740 80970
+## 1355 8 TRUE 1 FALSE 1505442789 80970
+## 1356 11 TRUE 1 FALSE 1505442892 80970
+## 1357 18 TRUE 2 FALSE 1505521097 80970
+## 1358 38 TRUE 1 FALSE 1505896212 80970
+## 1359 40 TRUE 1 FALSE 1505896220 80970
+## 1360 41 TRUE 1 FALSE 1505896223 80970
+## 1361 4 TRUE 1 FALSE 1505923192 80970
+## 1362 6 TRUE 1 FALSE 1505923206 80970
+## 1363 7 TRUE 1 FALSE 1505923214 80970
+## 1364 9 TRUE 1 FALSE 1505923232 80970
+## 1365 28 TRUE 1 FALSE 1505529164 80970
+## 1366 32 TRUE 1 FALSE 1505923858 80970
+## 1367 22 TRUE 1 FALSE 1505925825 80970
+## 1368 33 TRUE 3 FALSE 1505924010 80970
+## 1369 36 TRUE 1 FALSE 1505529526 80970
+## 1370 37 TRUE 2 FALSE 1505529636 80970
+## 1371 20 TRUE 1 FALSE 1505923617 80970
+## 1372 21 TRUE 1 FALSE 1505923643 80970
+## 1373 23 TRUE 1 FALSE 1505923706 80970
+## 1374 27 TRUE 1 FALSE 1505923756 80970
+## 1375 28 TRUE 1 FALSE 1505923773 80970
+## 1376 30 TRUE 1 FALSE 1505923794 80970
+## 1377 20 TRUE 1 FALSE 1505925789 80970
+## 1378 11 TRUE 1 FALSE 1505895490 80970
+## 1379 23 TRUE 2 FALSE 1505925871 80970
+## 1380 35 TRUE 1 FALSE 1505924040 80970
+## 1381 36 TRUE 1 FALSE 1505924066 80970
+## 1382 29 TRUE 1 FALSE 1505926056 80970
+## 1383 30 TRUE 1 FALSE 1505926104 80970
+## 1384 57 TRUE 1 FALSE 1505532665 80970
+## 1385 61 TRUE 1 FALSE 1505532676 80970
+## 1386 27 TRUE 1 FALSE 1505529124 80970
+## 1387 24 TRUE 1 FALSE 1505925884 80970
+## 1388 19 TRUE 1 FALSE 1505521101 80970
+## 1389 13 TRUE 1 FALSE 1505895506 80970
+## 1390 14 TRUE 1 FALSE 1505895515 80970
+## 1391 22 TRUE 1 FALSE 1506301811 80970
+## 1392 26 TRUE 1 FALSE 1506301842 80970
+## 1393 17 TRUE 1 FALSE 1506301539 80970
+## 1394 20 TRUE 1 FALSE 1506301736 80970
+## 1395 45 TRUE 1 FALSE 1505530125 80970
+## 1396 15 TRUE 1 FALSE 1505895528 80970
+## 1397 27 TRUE 1 FALSE 1506301845 80970
+## 1398 44 TRUE 1 FALSE 1505530108 80970
+## 1399 46 TRUE 1 FALSE 1505530881 80970
+## 1400 39 TRUE 1 FALSE 1505529805 80970
+## 1401 27 TRUE 1 FALSE 1505925965 80970
+## 1402 3 TRUE 1 FALSE 1505895408 80970
+## 1403 28 TRUE 2 FALSE 1505926047 80970
+## 1404 40 TRUE 1 FALSE 1505529823 80970
+## 1405 41 TRUE 1 FALSE 1505529988 80970
+## 1406 24 TRUE 2 FALSE 1505522792 80970
+## 1407 47 TRUE 1 FALSE 1505530893 80970
+## 1408 5 TRUE 1 FALSE 1505895426 80970
+## 1409 55 TRUE 2 FALSE 1505532556 80970
+## 1410 56 TRUE 1 FALSE 1505532653 80970
+## 1411 53 TRUE 1 FALSE 1505532392 80970
+## 1412 20 TRUE 2 FALSE 1505521184 80970
+## 1413 48 TRUE 1 FALSE 1505532304 80970
+## 1414 49 TRUE 1 FALSE 1505532369 80970
+## 1415 17 TRUE 3 FALSE 1505895664 80970
+## 1416 21 TRUE 1 FALSE 1505521588 80970
+## 1417 21 TRUE 1 FALSE 1505895726 80970
+## 1418 50 TRUE 1 FALSE 1505532376 80970
+## 1419 40 TRUE 1 FALSE 1505178706 96746
+## 1420 12 TRUE 1 FALSE 1505177973 96746
+## 1421 5 TRUE 1 FALSE 1505179127 96746
+## 1422 31 TRUE 1 FALSE 1505178423 96746
+## 1423 9 TRUE 1 FALSE 1505179229 96746
+## 1424 14 TRUE 1 FALSE 1505179355 96746
+## 1425 7 TRUE 1 FALSE 1505179206 96746
+## 1426 39 TRUE 1 FALSE 1505178700 96746
+## 1427 36 TRUE 1 FALSE 1505178668 96746
+## 1428 26 TRUE 1 FALSE 1505180267 96746
+## 1429 4 TRUE 1 FALSE 1505179116 96746
+## 1430 30 TRUE 1 FALSE 1505180392 96746
+## 1431 33 TRUE 1 FALSE 1505178526 96746
+## 1432 11 TRUE 1 FALSE 1505177970 96746
+## 1433 3 TRUE 2 FALSE 1505179038 96746
+## 1434 3 TRUE 1 FALSE 1505177899 96746
+## 1435 25 TRUE 1 FALSE 1505178290 96746
+## 1436 16 TRUE 1 FALSE 1505178054 96746
+## 1437 38 TRUE 1 FALSE 1505178696 96746
+## 1438 13 TRUE 1 FALSE 1505179325 96746
+## 1439 27 TRUE 1 FALSE 1505178349 96746
+## 1440 10 TRUE 1 FALSE 1505177961 96746
+## 1441 16 TRUE 1 FALSE 1505179372 96746
+## 1442 6 TRUE 1 FALSE 1505179151 96746
+## 1443 10 TRUE 2 FALSE 1505179286 96746
+## 1444 14 TRUE 1 FALSE 1505178024 96746
+## 1445 15 TRUE 1 FALSE 1505178039 96746
+## 1446 35 TRUE 1 FALSE 1505180641 96746
+## 1447 22 TRUE 2 FALSE 1505180212 96746
+## 1448 21 TRUE 2 FALSE 1505180156 96746
+## 1449 37 TRUE 1 FALSE 1505180657 96746
+## 1450 27 TRUE 1 FALSE 1505180346 96746
+## 1451 26 TRUE 1 FALSE 1505178341 96746
+## 1452 8 TRUE 1 FALSE 1505177946 96746
+## 1453 22 TRUE 1 FALSE 1505178246 96746
+## 1454 34 TRUE 1 FALSE 1505180637 96746
+## 1455 18 TRUE 1 FALSE 1505179947 96746
+## 1456 12 TRUE 1 FALSE 1505179312 96746
+## 1457 33 TRUE 4 FALSE 1505180617 96746
+## 1458 17 TRUE 1 FALSE 1505178127 96746
+## 1459 18 TRUE 1 FALSE 1505178153 96746
+## 1460 21 TRUE 1 FALSE 1505178207 96746
+## 1461 38 TRUE 1 FALSE 1505180660 96746
+## 1462 23 TRUE 1 FALSE 1505178255 96746
+## 1463 17 TRUE 6 FALSE 1505179907 96746
+## 1464 29 TRUE 1 FALSE 1505785763 74372
+## 1465 39 TRUE 1 FALSE 1505180304 74372
+## 1466 30 TRUE 1 FALSE 1505785797 74372
+## 1467 14 TRUE 2 FALSE 1505179792 74372
+## 1468 12 TRUE 1 FALSE 1505179708 74372
+## 1469 33 TRUE 1 FALSE 1505180202 74372
+## 1470 36 TRUE 1 FALSE 1505180258 74372
+## 1471 25 TRUE 1 FALSE 1505527863 74372
+## 1472 3 TRUE 1 FALSE 1505179605 74372
+## 1473 28 TRUE 1 FALSE 1505785757 74372
+## 1474 40 TRUE 1 FALSE 1505180308 74372
+## 1475 8 TRUE 1 FALSE 1505179672 74372
+## 1476 40 TRUE 1 FALSE 1505529005 74372
+## 1477 25 TRUE 2 FALSE 1505785630 74372
+## 1478 11 TRUE 1 FALSE 1505179701 74372
+## 1479 23 TRUE 1 FALSE 1505527826 74372
+## 1480 27 TRUE 1 FALSE 1505527910 74372
+## 1481 38 TRUE 1 FALSE 1505180293 74372
+## 1482 8 TRUE 1 FALSE 1505526835 74372
+## 1483 10 TRUE 1 FALSE 1505179690 74372
+## 1484 31 TRUE 1 FALSE 1505180162 74372
+## 1485 27 TRUE 1 FALSE 1505180083 74372
+## 1486 23 TRUE 1 FALSE 1505785557 74372
+## 1487 34 TRUE 2 FALSE 1505528928 74372
+## 1488 41 TRUE 1 FALSE 1505529011 74372
+## 1489 17 TRUE 1 FALSE 1505179885 74372
+## 1490 21 TRUE 1 FALSE 1505527680 74372
+## 1491 5 TRUE 1 FALSE 1505526814 74372
+## 1492 6 TRUE 1 FALSE 1505526824 74372
+## 1493 31 TRUE 1 FALSE 1505528011 74372
+## 1494 33 TRUE 1 FALSE 1505528406 74372
+## 1495 11 TRUE 1 FALSE 1505526868 74372
+## 1496 39 TRUE 1 FALSE 1505786077 74372
+## 1497 14 TRUE 1 FALSE 1505527074 74372
+## 1498 35 TRUE 1 FALSE 1505528959 74372
+## 1499 16 TRUE 1 FALSE 1505179827 74372
+## 1500 15 TRUE 1 FALSE 1505179813 74372
+## 1501 22 TRUE 2 FALSE 1505527763 74372
+## 1502 5 TRUE 1 FALSE 1505784956 74372
+## 1503 29 TRUE 1 FALSE 1505527961 74372
+## 1504 33 TRUE 1 FALSE 1505786012 74372
+## 1505 9 TRUE 1 FALSE 1505526841 74372
+## 1506 10 TRUE 1 FALSE 1505526848 74372
+## 1507 32 TRUE 2 FALSE 1505528389 74372
+## 1508 20 TRUE 2 FALSE 1505786483 74372
+## 1509 22 TRUE 2 FALSE 1505785547 74372
+## 1510 7 TRUE 2 FALSE 1505785055 74372
+## 1511 11 TRUE 1 FALSE 1505785108 74372
+## 1512 17 TRUE 1 FALSE 1505527620 74372
+## 1513 19 TRUE 1 FALSE 1505527646 74372
+## 1514 18 TRUE 1 FALSE 1505179901 74372
+## 1515 21 TRUE 1 FALSE 1505179959 74372
+## 1516 19 TRUE 1 FALSE 1505786458 74372
+## 1517 35 TRUE 1 FALSE 1505786052 74372
+## 1518 26 TRUE 1 FALSE 1505180073 74372
+## 1519 8 TRUE 1 FALSE 1505786277 74372
+## 1520 40 TRUE 1 FALSE 1505786079 74372
+## 1521 8 TRUE 1 FALSE 1505785058 74372
+## 1522 32 TRUE 4 FALSE 1505785919 74372
+## 1523 17 TRUE 1 FALSE 1505785257 74372
+## 1524 10 TRUE 1 FALSE 1505786332 74372
+## 1525 15 TRUE 2 FALSE 1505527368 74372
+## 1526 18 TRUE 1 FALSE 1505786422 74372
+## 1527 6 TRUE 2 FALSE 1505785026 74372
+## 1528 12 TRUE 1 FALSE 1505786359 74372
+## 1529 3 TRUE 1 FALSE 1505786172 74372
+## 1530 4 TRUE 1 FALSE 1505786183 74372
+## 1531 25 TRUE 1 FALSE 1505180052 74372
+## 1532 17 TRUE 1 FALSE 1505786412 74372
+## 1533 22 TRUE 1 FALSE 1505179976 74372
+## 1534 9 TRUE 1 FALSE 1505786323 74372
+## 1535 21 TRUE 1 FALSE 1505786490 74372
+## 1536 22 TRUE 1 FALSE 1505786493 74372
+## 1537 23 TRUE 1 FALSE 1505179985 74372
+## 1538 19 TRUE 1 FALSE 1505785421 74372
+## 1539 18 TRUE 3 FALSE 1505785339 74372
+## 1540 6 TRUE 1 FALSE 1505786222 74372
+## 1541 7 TRUE 1 FALSE 1505786238 74372
+## 1542 21 TRUE 1 FALSE 1505185226 16365
+## 1543 5 TRUE 1 FALSE 1505227545 16365
+## 1544 34 TRUE 1 FALSE 1505266751 16365
+## 1545 3 TRUE 1 FALSE 1505227533 16365
+## 1546 17 TRUE 1 FALSE 1505184469 16365
+## 1547 22 TRUE 1 FALSE 1505185286 16365
+## 1548 8 TRUE 2 FALSE 1505227803 16365
+## 1549 18 TRUE 1 FALSE 1505099938 16365
+## 1550 13 TRUE 2 FALSE 1505101103 16365
+## 1551 23 TRUE 1 FALSE 1505100012 16365
+## 1552 17 TRUE 1 FALSE 1505101308 16365
+## 1553 17 TRUE 2 FALSE 1505099925 16365
+## 1554 11 TRUE 1 FALSE 1505149695 16365
+## 1555 16 TRUE 1 FALSE 1505101139 16365
+## 1556 6 TRUE 1 FALSE 1505100874 16365
+## 1557 3 TRUE 2 FALSE 1505100838 16365
+## 1558 4 TRUE 1 FALSE 1505100848 16365
+## 1559 5 TRUE 1 FALSE 1505100860 16365
+## 1560 21 TRUE 1 FALSE 1505099982 16365
+## 1561 22 TRUE 2 FALSE 1505150061 16365
+## 1562 22 TRUE 1 FALSE 1505100003 16365
+## 1563 4 TRUE 1 FALSE 1505192035 16365
+## 1564 14 TRUE 1 FALSE 1505101118 16365
+## 1565 23 TRUE 1 FALSE 1505185294 16365
+## 1566 15 TRUE 1 FALSE 1505184430 16365
+## 1567 9 TRUE 1 FALSE 1505227984 16365
+## 1568 4 TRUE 1 FALSE 1505186595 16365
+## 1569 7 TRUE 1 FALSE 1505100893 16365
+## 1570 26 TRUE 1 FALSE 1505185324 16365
+## 1571 12 TRUE 1 FALSE 1505101052 16365
+## 1572 10 TRUE 1 FALSE 1505149681 16365
+## 1573 3 TRUE 1 FALSE 1505192029 16365
+## 1574 32 TRUE 1 FALSE 1505186993 16365
+## 1575 14 TRUE 1 FALSE 1505186661 16365
+## 1576 8 TRUE 2 FALSE 1505192085 16365
+## 1577 12 TRUE 1 FALSE 1505099789 16365
+## 1578 27 TRUE 1 FALSE 1505185336 16365
+## 1579 6 TRUE 1 FALSE 1505186613 16365
+## 1580 7 TRUE 1 FALSE 1505186618 16365
+## 1581 21 TRUE 1 FALSE 1505402325 16365
+## 1582 23 TRUE 1 FALSE 1505150077 16365
+## 1583 18 TRUE 1 FALSE 1505402202 16365
+## 1584 14 TRUE 1 FALSE 1505184421 16365
+## 1585 30 TRUE 1 FALSE 1505186943 16365
+## 1586 32 TRUE 1 FALSE 1505266484 16365
+## 1587 17 TRUE 1 FALSE 1505192321 16365
+## 1588 5 TRUE 1 FALSE 1505192043 16365
+## 1589 15 TRUE 2 FALSE 1505149827 16365
+## 1590 19 TRUE 1 FALSE 1505152247 16365
+## 1591 10 TRUE 1 FALSE 1505099777 16365
+## 1592 11 TRUE 1 FALSE 1505228051 16365
+## 1593 13 TRUE 1 FALSE 1505228178 16365
+## 1594 17 TRUE 1 FALSE 1505402180 16365
+## 1595 10 TRUE 1 FALSE 1505101023 16365
+## 1596 12 TRUE 1 FALSE 1505186647 16365
+## 1597 13 TRUE 1 FALSE 1505186653 16365
+## 1598 8 TRUE 1 FALSE 1505152074 16365
+## 1599 14 TRUE 1 FALSE 1505149768 16365
+## 1600 7 TRUE 1 FALSE 1505192055 16365
+## 1601 3 TRUE 1 FALSE 1505099720 16365
+## 1602 9 TRUE 1 FALSE 1505192091 16365
+## 1603 18 TRUE 1 FALSE 1505101333 16365
+## 1604 5 TRUE 1 FALSE 1505152026 16365
+## 1605 9 TRUE 1 FALSE 1505100912 16365
+## 1606 15 TRUE 1 FALSE 1505099863 16365
+## 1607 16 TRUE 1 FALSE 1505099865 16365
+## 1608 10 TRUE 1 FALSE 1505186636 16365
+## 1609 16 TRUE 2 FALSE 1505192301 16365
+## 1610 19 TRUE 1 FALSE 1505183391 16365
+## 1611 11 TRUE 1 FALSE 1505152125 16365
+## 1612 17 TRUE 1 FALSE 1505152229 16365
+## 1613 18 TRUE 1 FALSE 1505152237 16365
+## 1614 8 TRUE 1 FALSE 1505099769 16365
+## 1615 7 TRUE 1 FALSE 1505401876 16365
+## 1616 11 TRUE 1 FALSE 1505099787 16365
+## 1617 6 TRUE 2 FALSE 1505152063 16365
+## 1618 9 TRUE 1 FALSE 1505186628 16365
+## 1619 9 TRUE 1 FALSE 1505149657 16365
+## 1620 28 TRUE 1 FALSE 1505266348 16365
+## 1621 20 TRUE 1 FALSE 1505183435 16365
+## 1622 18 TRUE 1 FALSE 1505192328 16365
+## 1623 19 TRUE 1 FALSE 150 16365
+## 1624 19 TRUE 1 FALSE 1505228621 16365
+## 1625 22 TRUE 1 FALSE 1505152335 16365
+## 1626 23 TRUE 1 FALSE 1505152340 16365
+## 1627 10 TRUE 1 FALSE 1505401923 16365
+## 1628 14 TRUE 2 FALSE 1505099842 16365
+## 1629 14 TRUE 1 FALSE 1505401999 16365
+## 1630 16 TRUE 1 FALSE 1505402008 16365
+## 1631 14 TRUE 1 FALSE 1505228193 16365
+## 1632 8 TRUE 1 FALSE 1505149652 16365
+## 1633 16 TRUE 3 FALSE 1505228602 16365
+## 1634 6 TRUE 1 FALSE 1505401845 16365
+## 1635 5 TRUE 1 FALSE 1505184189 16365
+## 1636 25 TRUE 3 FALSE 1505152393 16365
+## 1637 28 TRUE 2 FALSE 1505153409 16365
+## 1638 29 TRUE 1 FALSE 1505153414 16365
+## 1639 30 TRUE NA NA NA 16365
+## 1640 21 TRUE 1 FALSE 1505150035 16365
+## 1641 27 TRUE 1 FALSE 1505186896 16365
+## 1642 28 TRUE 1 FALSE 1505186919 16365
+## 1643 17 TRUE 1 FALSE 1505228610 16365
+## 1644 3 TRUE 2 FALSE 1505401778 16365
+## 1645 4 TRUE 1 FALSE 1505401785 16365
+## 1646 9 TRUE 1 FALSE 1505401910 16365
+## 1647 12 TRUE 1 FALSE 1505401958 16365
+## 1648 13 TRUE 1 FALSE 1505401966 16365
+## 1649 11 TRUE 1 FALSE 1505184300 16365
+## 1650 13 TRUE 1 FALSE 1505184415 16365
+## 1651 21 TRUE 1 FALSE 1505186784 16365
+## 1652 23 TRUE 1 FALSE 1505186806 16365
+## 1653 7 TRUE 2 FALSE 1505152071 16365
+## 1654 15 TRUE 1 FALSE 1505192280 16365
+## 1655 22 TRUE 1 FALSE 1505183441 16365
+## 1656 21 TRUE 1 FALSE 1505228746 16365
+## 1657 15 TRUE 2 FALSE 1505186707 16365
+## 1658 17 TRUE 1 FALSE 1505186725 16365
+## 1659 11 TRUE 1 FALSE 1505192228 16365
+## 1660 5 TRUE 1 FALSE 1505149576 16365
+## 1661 6 TRUE 1 FALSE 1505149612 16365
+## 1662 10 TRUE 1 FALSE 1505184297 16365
+## 1663 27 TRUE 1 FALSE 1505266330 16365
+## 1664 14 TRUE 1 FALSE 1505192248 16365
+## 1665 8 TRUE 1 FALSE 1505265881 16365
+## 1666 11 TRUE 1 FALSE 1505265924 16365
+## 1667 21 TRUE 1 FALSE 1505183439 16365
+## 1668 5 TRUE 1 FALSE 1505401821 16365
+## 1669 17 TRUE 1 FALSE 1505266193 16365
+## 1670 17 TRUE 2 FALSE 1505149932 16365
+## 1671 19 TRUE 1 FALSE 1505149984 16365
+## 1672 28 TRUE 1 FALSE 1505229293 16365
+## 1673 12 TRUE 1 FALSE 1505192231 16365
+## 1674 13 TRUE 1 FALSE 1505192235 16365
+## 1675 3 TRUE 1 FALSE 1505265704 16365
+## 1676 9 TRUE 1 FALSE 1505265895 16365
+## 1677 12 TRUE 1 FALSE 1505183225 16365
+## 1678 10 TRUE 1 FALSE 1505183101 16365
+## 1679 3 TRUE 1 FALSE 1505184163 16365
+## 1680 16 TRUE 2 FALSE 1505266188 16365
+## 1681 25 TRUE 1 FALSE 1505228788 16365
+## 1682 18 TRUE 1 FALSE 1505186745 16365
+## 1683 20 TRUE 1 FALSE 1505186770 16365
+## 1684 21 TRUE 1 FALSE 1505266213 16365
+## 1685 23 TRUE 1 FALSE 1505266222 16365
+## 1686 25 TRUE 1 FALSE 1505266231 16365
+## 1687 5 TRUE 1 FALSE 1505265720 16365
+## 1688 23 TRUE 1 FALSE 1505228774 16365
+## 1689 13 TRUE 1 FALSE 1505265976 16365
+## 1690 14 TRUE 1 FALSE 1505265988 16365
+## 1691 6 TRUE 1 FALSE 1505182991 16365
+## 1692 7 TRUE 1 FALSE 1505183000 16365
+## 1693 8 TRUE 2 FALSE 1505184264 16365
+## 1694 9 TRUE 1 FALSE 1505184273 16365
+## 1695 8 TRUE 2 FALSE 1505183067 16365
+## 1696 18 TRUE 1 FALSE 1505183377 16365
+## 1697 9 TRUE 1 FALSE 1505183097 16365
+## 1698 17 TRUE 2 FALSE 1505183367 16365
+## 1699 27 TRUE 1 FALSE 1505229086 16365
+## 1700 19 TRUE 1 FALSE 1505266201 16365
+## 1701 4 TRUE 1 FALSE 1505182975 16365
+## 1702 3 TRUE 1 FALSE 1505182968 16365
+## 1703 3 TRUE 1 FALSE 1505361827 68515
+## 1704 29 TRUE 1 FALSE 1505397135 68515
+## 1705 28 TRUE 2 FALSE 1505397133 68515
+## 1706 11 TRUE 1 FALSE 1505397992 68515
+## 1707 27 TRUE 1 FALSE 1505397090 68515
+## 1708 37 TRUE 1 FALSE 1505397202 68515
+## 1709 9 TRUE 1 FALSE 1505397970 68515
+## 1710 40 TRUE 1 FALSE 1505361746 68515
+## 1711 24 TRUE 1 FALSE 1505397042 68515
+## 1712 30 TRUE 1 FALSE 1505397140 68515
+## 1713 32 TRUE 1 FALSE 1505397158 68515
+## 1714 33 TRUE 1 FALSE 1505397168 68515
+## 1715 35 TRUE 1 FALSE 1505397192 68515
+## 1716 41 TRUE 1 FALSE 1505409684 68515
+## 1717 39 TRUE 1 FALSE 1505361743 68515
+## 1718 35 TRUE 1 FALSE 1505361715 68515
+## 1719 38 TRUE 1 FALSE 1505399853 68515
+## 1720 8 TRUE 1 FALSE 1505397956 68515
+## 1721 14 TRUE 1 FALSE 1505398082 68515
+## 1722 17 TRUE 2 FALSE 1505333439 68515
+## 1723 16 TRUE 16 FALSE 1505398990 68515
+## 1724 39 TRUE 1 FALSE 1505396215 68515
+## 1725 7 TRUE 1 FALSE 1505361325 68515
+## 1726 38 TRUE 1 FALSE 1505397204 68515
+## 1727 23 TRUE 1 FALSE 1505397031 68515
+## 1728 42 TRUE 4 FALSE 1505410388 68515
+## 1729 43 TRUE 1 FALSE 1505410420 68515
+## 1730 13 TRUE 1 FALSE 1505398071 68515
+## 1731 29 TRUE 1 FALSE 1505361542 68515
+## 1732 51 TRUE 1 FALSE 1505411163 68515
+## 1733 5 TRUE 1 FALSE 1505334738 68515
+## 1734 23 TRUE 1 FALSE 1505399034 68515
+## 1735 27 TRUE 1 FALSE 1505399264 68515
+## 1736 10 TRUE 1 FALSE 1505333284 68515
+## 1737 11 TRUE 1 FALSE 1505333300 68515
+## 1738 14 TRUE 1 FALSE 1505333349 68515
+## 1739 16 TRUE 1 FALSE 1505396963 68515
+## 1740 6 TRUE 1 FALSE 1505361295 68515
+## 1741 19 TRUE 1 FALSE 1505399008 68515
+## 1742 33 TRUE 2 FALSE 1505361699 68515
+## 1743 36 TRUE 1 FALSE 1505399829 68515
+## 1744 5 TRUE 1 FALSE 1505397800 68515
+## 1745 9 TRUE 1 FALSE 1505333270 68515
+## 1746 14 TRUE 1 FALSE 1505396920 68515
+## 1747 28 TRUE 2 FALSE 1505361539 68515
+## 1748 38 TRUE 1 FALSE 1505396179 68515
+## 1749 40 TRUE 9 FALSE 1505409662 68515
+## 1750 35 TRUE 1 FALSE 1505396050 68515
+## 1751 23 TRUE 2 FALSE 1505395128 68515
+## 1752 26 TRUE 1 FALSE 1505395154 68515
+## 1753 15 TRUE 1 FALSE 1505333383 68515
+## 1754 50 TRUE 1 FALSE 1505411160 68515
+## 1755 51 TRUE 1 FALSE 1505396679 68515
+## 1756 17 TRUE 1 FALSE 1505398995 68515
+## 1757 21 TRUE 1 FALSE 1505399021 68515
+## 1758 25 TRUE 1 FALSE 1505399070 68515
+## 1759 5 TRUE 1 FALSE 1505396836 68515
+## 1760 28 TRUE 4 FALSE 1505399520 68515
+## 1761 32 TRUE 1 FALSE 1505399537 68515
+## 1762 19 TRUE 1 FALSE 1505361449 68515
+## 1763 22 TRUE 1 FALSE 1505361479 68515
+## 1764 15 TRUE 2 FALSE 1505396959 68515
+## 1765 25 TRUE 1 FALSE 1505361502 68515
+## 1766 17 TRUE 1 FALSE 1505396966 68515
+## 1767 30 TRUE 2 FALSE 1505361580 68515
+## 1768 32 TRUE 1 FALSE 1505361623 68515
+## 1769 20 TRUE 1 FALSE 1505396993 68515
+## 1770 22 TRUE 1 FALSE 1505397018 68515
+## 1771 3 TRUE 1 FALSE 1505397450 68515
+## 1772 8 TRUE 1 FALSE 1505333262 68515
+## 1773 33 TRUE 1 FALSE 1505396023 68515
+## 1774 23 TRUE 2 FALSE 1505190334 68515
+## 1775 25 TRUE 1 FALSE 1505190353 68515
+## 1776 36 TRUE 2 FALSE 1505396120 68515
+## 1777 37 TRUE 1 FALSE 1505396155 68515
+## 1778 31 TRUE 1 FALSE 1505190426 68515
+## 1779 33 TRUE 1 FALSE 1505190551 68515
+## 1780 7 TRUE 1 FALSE 1505361869 68515
+## 1781 25 TRUE 1 FALSE 1505333588 68515
+## 1782 27 TRUE 1 FALSE 1505333771 68515
+## 1783 48 TRUE 1 FALSE 1505411155 68515
+## 1784 33 TRUE 1 FALSE 1505334136 68515
+## 1785 34 TRUE 2 FALSE 1505334501 68515
+## 1786 22 TRUE 1 FALSE 1505362005 68515
+## 1787 53 TRUE 1 FALSE 1505396690 68515
+## 1788 4 TRUE 1 FALSE 1505396828 68515
+## 1789 3 TRUE 1 FALSE 1505190091 68515
+## 1790 8 TRUE 1 FALSE 1505361327 68515
+## 1791 17 TRUE 1 FALSE 1505361389 68515
+## 1792 18 TRUE 1 FALSE 1505361420 68515
+## 1793 11 TRUE 1 FALSE 1505396895 68515
+## 1794 12 TRUE 1 FALSE 1505396898 68515
+## 1795 23 TRUE 1 FALSE 1505361483 68515
+## 1796 15 TRUE 1 FALSE 1505190224 68515
+## 1797 18 TRUE 1 FALSE 1505396972 68515
+## 1798 19 TRUE 1 FALSE 1505396982 68515
+## 1799 34 TRUE 6 FALSE 1505399811 68515
+## 1800 35 TRUE 1 FALSE 1505399823 68515
+## 1801 18 TRUE 1 FALSE 1505190274 68515
+## 1802 32 TRUE 1 FALSE 1505395968 68515
+## 1803 28 TRUE 1 FALSE 1505395845 68515
+## 1804 30 TRUE 1 FALSE 1505395902 68515
+## 1805 21 TRUE 2 FALSE 1505395081 68515
+## 1806 26 TRUE 1 FALSE 1505190372 68515
+## 1807 27 TRUE 1 FALSE 1505190376 68515
+## 1808 27 TRUE 1 FALSE 1505395162 68515
+## 1809 36 TRUE 1 FALSE 1505190596 68515
+## 1810 19 TRUE 2 FALSE 1505333498 68515
+## 1811 41 TRUE 5 FALSE 1505396331 68515
+## 1812 42 TRUE 1 FALSE 1505396342 68515
+## 1813 47 TRUE 3 FALSE 1505411130 68515
+## 1814 32 TRUE 2 FALSE 1505334130 68515
+## 1815 9 TRUE 1 FALSE 1505394724 68515
+## 1816 49 TRUE 2 FALSE 1505396638 68515
+## 1817 50 TRUE 1 FALSE 1505396648 68515
+## 1818 7 TRUE 1 FALSE 1505395434 68515
+## 1819 54 TRUE 1 FALSE 1505396693 68515
+## 1820 8 TRUE 1 FALSE 1505190146 68515
+## 1821 11 TRUE 1 FALSE 1505361343 68515
+## 1822 9 TRUE 1 FALSE 1505396881 68515
+## 1823 11 TRUE 1 FALSE 1505190164 68515
+## 1824 12 TRUE 1 FALSE 1505190166 68515
+## 1825 13 TRUE 1 FALSE 1505396902 68515
+## 1826 47 TRUE 2 FALSE 1505396414 68515
+## 1827 5 TRUE 1 FALSE 1505333230 68515
+## 1828 6 TRUE 1 FALSE 1505333245 68515
+## 1829 16 TRUE 1 FALSE 1505190234 68515
+## 1830 17 TRUE 1 FALSE 1505190265 68515
+## 1831 20 TRUE 1 FALSE 1505395741 68515
+## 1832 21 TRUE 1 FALSE 1505190295 68515
+## 1833 22 TRUE 1 FALSE 1505190316 68515
+## 1834 44 TRUE 1 FALSE 1505396356 68515
+## 1835 46 TRUE 1 FALSE 1505396381 68515
+## 1836 22 TRUE 2 FALSE 1505395115 68515
+## 1837 8 TRUE 5 FALSE 1505394716 68515
+## 1838 19 TRUE 1 FALSE 1505361988 68515
+## 1839 20 TRUE 1 FALSE 1505361998 68515
+## 1840 29 TRUE 1 FALSE 1505395181 68515
+## 1841 38 TRUE 1 FALSE 1505190615 68515
+## 1842 21 TRUE 2 FALSE 1505333532 68515
+## 1843 22 TRUE 2 FALSE 1505333549 68515
+## 1844 43 TRUE 1 FALSE 1505396346 68515
+## 1845 8 TRUE 1 FALSE 1505396876 68515
+## 1846 31 TRUE 1 FALSE 1505333862 68515
+## 1847 15 TRUE 3 FALSE 1505395578 68515
+## 1848 21 TRUE 1 FALSE 1505362003 68515
+## 1849 4 TRUE 1 FALSE 1505395409 68515
+## 1850 9 TRUE 1 FALSE 1505395447 68515
+## 1851 35 TRUE 1 FALSE 1505334555 68515
+## 1852 40 TRUE 1 FALSE 1505334590 68515
+## 1853 3 TRUE 1 FALSE 1505396816 68515
+## 1854 7 TRUE 1 FALSE 1505396851 68515
+## 1855 27 TRUE 1 FALSE 1505395836 68515
+## 1856 10 TRUE 1 FALSE 1505361928 68515
+## 1857 17 TRUE 1 FALSE 1505361969 68515
+## 1858 13 TRUE 2 FALSE 1505394923 68515
+## 1859 14 TRUE 1 FALSE 1505394931 68515
+## 1860 21 TRUE 1 FALSE 1505395762 68515
+## 1861 23 TRUE 1 FALSE 1505395787 68515
+## 1862 23 TRUE 1 FALSE 1505333569 68515
+## 1863 10 TRUE 1 FALSE 1505190156 68515
+## 1864 29 TRUE 2 FALSE 1505333844 68515
+## 1865 34 TRUE 1 FALSE 1505395281 68515
+## 1866 12 TRUE 1 FALSE 1505361941 68515
+## 1867 18 TRUE 1 FALSE 1505361975 68515
+## 1868 30 TRUE 1 FALSE 1505395186 68515
+## 1869 31 TRUE 1 FALSE 1505395201 68515
+## 1870 4 TRUE 1 FALSE 1505361831 68515
+## 1871 6 TRUE 1 FALSE 1505361858 68515
+## 1872 14 TRUE 1 FALSE 1505395486 68515
+## 1873 12 TRUE 1 FALSE 1505395466 68515
+## 1874 36 TRUE 1 FALSE 1505395309 68515
+## 1875 6 TRUE 1 FALSE 1505395427 68515
+## 1876 40 TRUE 1 FALSE 1505395344 68515
+## 1877 14 TRUE 2 FALSE 1505190216 68515
+## 1878 11 TRUE 1 FALSE 1505394839 68515
+## 1879 17 TRUE 1 FALSE 1505394953 68515
+## 1880 3 TRUE 1 FALSE 1505394513 68515
+## 1881 41 TRUE 1 FALSE 1505334593 68515
+## 1882 13 TRUE 1 FALSE 1505395476 68515
+## 1883 8 TRUE 1 FALSE 1505361884 68515
+## 1884 9 TRUE 1 FALSE 1505361923 68515
+## 1885 33 TRUE 1 FALSE 1505395257 68515
+## 1886 10 TRUE 1 FALSE 1505394837 68515
+## 1887 17 TRUE 2 FALSE 1505395651 68515
+## 1888 37 TRUE 1 FALSE 1505395320 68515
+## 1889 41 TRUE 1 FALSE 1505395347 68515
+## 1890 15 TRUE 1 FALSE 1505394938 68515
+## 1891 18 TRUE 3 FALSE 1505395703 68515
+## 1892 38 TRUE 1 FALSE 1505395334 68515
+## 1893 40 TRUE 1 FALSE 1505190627 68515
+## 1894 5 TRUE 1 FALSE 1505394532 68515
+## 1895 39 TRUE 1 FALSE 1505190622 68515
+## 1896 10 TRUE 1 FALSE 1505395455 68515
+## 1897 32 TRUE 2 FALSE 1505395240 68515
+## 1898 4 TRUE 1 FALSE 1505829495 67994
+## 1899 34 TRUE 2 FALSE 1505829957 67994
+## 1900 35 TRUE 1 FALSE 1505829987 67994
+## 1901 3 TRUE 4 FALSE 1505829488 67994
+## 1902 38 TRUE 1 FALSE 1505830002 67994
+## 1903 27 TRUE 1 FALSE 1505829887 67994
+## 1904 9 TRUE 1 FALSE 1505829549 67994
+## 1905 37 TRUE 1 FALSE 1505829997 67994
+## 1906 33 TRUE 1 FALSE 1505829936 67994
+## 1907 13 TRUE 1 FALSE 1505829592 67994
+## 1908 14 TRUE 1 FALSE 1505829607 67994
+## 1909 10 TRUE 1 FALSE 1505829556 67994
+## 1910 12 TRUE 1 FALSE 1505829583 67994
+## 1911 6 TRUE 1 FALSE 1505829519 67994
+## 1912 7 TRUE 1 FALSE 1505829531 67994
+## 1913 16 TRUE 1 FALSE 1505829615 67994
+## 1914 5 TRUE 1 FALSE 1505829507 67994
+## 1915 30 TRUE 1 FALSE 1505829909 67994
+## 1916 26 TRUE 2 FALSE 1505829884 67994
+## 1917 21 TRUE 1 FALSE 1505829813 67994
+## 1918 22 TRUE 1 FALSE 1505829830 67994
+## 1919 17 TRUE 1 FALSE 1505829707 67994
+## 1920 18 TRUE 1 FALSE 1505829736 67994
+## 1921 10 TRUE 1 FALSE 1505703680 32870
+## 1922 25 TRUE 1 FALSE 1505704156 32870
+## 1923 8 TRUE 1 FALSE 1505703656 32870
+## 1924 23 TRUE 2 FALSE 1505704123 32870
+## 1925 3 TRUE 1 FALSE 1505703556 32870
+## 1926 14 TRUE 1 FALSE 1505703799 32870
+## 1927 15 TRUE 1 FALSE 1505703851 32870
+## 1928 22 TRUE 1 FALSE 1505704033 32870
+## 1929 18 TRUE 1 FALSE 1505703953 32870
+## 1930 11 TRUE 1 FALSE 1505703693 32870
+## 1931 21 TRUE 1 FALSE 1505704001 32870
+## 1932 17 TRUE 1 FALSE 1505703893 32870
+## 1933 12 TRUE 1 FALSE 1505703700 32870
+## 1934 16 TRUE 1 FALSE 1505703863 32870
+## 1935 22 TRUE 1 FALSE 1505235701 27487
+## 1936 12 TRUE 1 FALSE 1506016652 27487
+## 1937 29 TRUE 1 FALSE 1506015720 27487
+## 1938 14 TRUE 1 FALSE 1505235567 27487
+## 1939 12 TRUE 1 FALSE 1505235544 27487
+## 1940 21 TRUE 2 FALSE 1505235677 27487
+## 1941 21 TRUE 1 FALSE 1506022383 27487
+## 1942 25 TRUE 1 FALSE 1506015588 27487
+## 1943 18 TRUE 1 FALSE 1506022119 27487
+## 1944 23 TRUE 1 FALSE 1505235705 27487
+## 1945 11 TRUE 1 FALSE 1505235542 27487
+## 1946 8 TRUE 1 FALSE 1506123063 27487
+## 1947 30 TRUE 2 FALSE 1506015744 27487
+## 1948 15 TRUE 1 FALSE 1505235605 27487
+## 1949 14 TRUE 1 FALSE 1506020850 27487
+## 1950 18 TRUE 1 FALSE 1505235635 27487
+## 1951 12 TRUE 1 FALSE 1506020711 27487
+## 1952 13 TRUE 1 FALSE 1506020727 27487
+## 1953 15 TRUE 2 FALSE 1506021185 27487
+## 1954 17 TRUE 1 FALSE 1506022030 27487
+## 1955 38 TRUE 1 FALSE 1506126179 27487
+## 1956 20 TRUE 1 FALSE 1506022291 27487
+## 1957 7 TRUE 1 FALSE 1506122953 27487
+## 1958 9 TRUE 1 FALSE 1506016466 27487
+## 1959 10 TRUE 1 FALSE 1506016470 27487
+## 1960 17 TRUE 1 FALSE 1506015061 27487
+## 1961 16 TRUE 1 FALSE 1505235607 27487
+## 1962 17 TRUE 1 FALSE 1505235626 27487
+## 1963 18 TRUE 2 FALSE 1506015114 27487
+## 1964 3 TRUE 1 FALSE 1506122599 27487
+## 1965 23 TRUE 1 FALSE 1506015506 27487
+## 1966 33 TRUE 1 FALSE 1506126012 27487
+## 1967 4 TRUE 1 FALSE 1506122604 27487
+## 1968 28 TRUE 1 FALSE 1506015717 27487
+## 1969 6 TRUE 1 FALSE 1506014710 27487
+## 1970 7 TRUE 2 FALSE 1506014737 27487
+## 1971 8 TRUE 1 FALSE 1506014739 27487
+## 1972 11 TRUE 1 FALSE 1506014790 27487
+## 1973 54 TRUE 1 FALSE 1506033300 27487
+## 1974 39 TRUE 1 FALSE 1506025947 27487
+## 1975 19 TRUE 1 FALSE 1506015242 27487
+## 1976 22 TRUE 1 FALSE 1506015503 27487
+## 1977 13 TRUE 1 FALSE 1506017798 27487
+## 1978 35 TRUE 1 FALSE 1506126120 27487
+## 1979 37 TRUE 1 FALSE 1506126173 27487
+## 1980 5 TRUE 1 FALSE 1506122772 27487
+## 1981 21 TRUE 1 FALSE 1506018763 27487
+## 1982 22 TRUE 1 FALSE 1506018852 27487
+## 1983 9 TRUE 1 FALSE 1506123067 27487
+## 1984 23 TRUE 1 FALSE 1506022951 27487
+## 1985 27 TRUE 1 FALSE 1506023417 27487
+## 1986 35 TRUE 1 FALSE 1506015981 27487
+## 1987 10 TRUE 1 FALSE 1506020685 27487
+## 1988 11 TRUE 1 FALSE 1506017643 27487
+## 1989 3 TRUE 1 FALSE 1506016283 27487
+## 1990 14 TRUE 1 FALSE 1506017808 27487
+## 1991 34 TRUE 2 FALSE 1505237339 27487
+## 1992 33 TRUE 1 FALSE 1506024660 27487
+## 1993 8 TRUE 1 FALSE 1506016356 27487
+## 1994 22 TRUE 1 FALSE 1506123921 27487
+## 1995 35 TRUE 1 FALSE 1506024898 27487
+## 1996 36 TRUE 2 FALSE 1506024985 27487
+## 1997 37 TRUE 1 FALSE 1506025626 27487
+## 1998 38 TRUE 2 FALSE 1506025668 27487
+## 1999 32 TRUE 1 FALSE 1506125939 27487
+## 2000 42 TRUE 1 FALSE 1506026231 27487
+## 2001 43 TRUE 1 FALSE 1506026233 27487
+## 2002 44 TRUE 1 FALSE 1506026256 27487
+## 2003 5 TRUE 1 FALSE 1506014693 27487
+## 2004 49 TRUE 1 FALSE 1506033098 27487
+## 2005 50 TRUE 1 FALSE 1506033163 27487
+## 2006 51 TRUE 1 FALSE 1506033291 27487
+## 2007 53 TRUE 1 FALSE 1506033298 27487
+## 2008 4 TRUE 1 FALSE 1506020246 27487
+## 2009 6 TRUE 1 FALSE 1506020309 27487
+## 2010 7 TRUE 1 FALSE 1506020393 27487
+## 2011 9 TRUE 1 FALSE 1506020516 27487
+## 2012 22 TRUE 1 FALSE 1505236809 27487
+## 2013 26 TRUE 1 FALSE 1505236934 27487
+## 2014 27 TRUE 1 FALSE 1505236937 27487
+## 2015 15 TRUE 1 FALSE 1506018241 27487
+## 2016 17 TRUE 1 FALSE 1506018606 27487
+## 2017 7 TRUE 1 FALSE 1506016334 27487
+## 2018 39 TRUE 1 FALSE 1505235896 27487
+## 2019 23 TRUE 1 FALSE 1506018872 27487
+## 2020 26 TRUE 1 FALSE 1506018999 27487
+## 2021 32 TRUE 1 FALSE 1506015837 27487
+## 2022 28 TRUE 1 FALSE 1506023467 27487
+## 2023 30 TRUE 1 FALSE 1506023704 27487
+## 2024 32 TRUE 5 FALSE 1506024318 27487
+## 2025 6 TRUE 1 FALSE 1506016325 27487
+## 2026 46 TRUE 1 FALSE 1506032839 27487
+## 2027 47 TRUE 1 FALSE 1506032922 27487
+## 2028 40 TRUE 1 FALSE 1505235900 27487
+## 2029 17 TRUE 3 FALSE 1506017015 27487
+## 2030 27 TRUE 3 FALSE 1506125573 27487
+## 2031 41 TRUE 1 FALSE 1506026221 27487
+## 2032 20 TRUE 1 FALSE 1506017061 27487
+## 2033 21 TRUE 1 FALSE 1506017067 27487
+## 2034 22 TRUE 1 FALSE 1506017070 27487
+## 2035 33 TRUE 1 FALSE 1505237078 27487
+## 2036 19 TRUE 1 FALSE 1506123707 27487
+## 2037 3 TRUE 1 FALSE 1505235508 27487
+## 2038 8 TRUE 1 FALSE 1505235526 27487
+## 2039 10 TRUE 1 FALSE 1505235537 27487
+## 2040 8 TRUE 2 FALSE 1506017506 27487
+## 2041 9 TRUE 1 FALSE 1506017514 27487
+## 2042 10 TRUE 1 FALSE 1506017627 27487
+## 2043 40 TRUE 1 FALSE 1506016155 27487
+## 2044 33 TRUE 1 FALSE 1505235825 27487
+## 2045 30 TRUE 1 FALSE 1505237007 27487
+## 2046 18 TRUE 1 FALSE 1506123649 27487
+## 2047 30 TRUE 1 FALSE 1506125832 27487
+## 2048 20 TRUE 1 FALSE 1506123774 27487
+## 2049 35 TRUE 1 FALSE 1505237343 27487
+## 2050 37 TRUE 1 FALSE 1505237363 27487
+## 2051 11 TRUE 1 FALSE 1506123142 27487
+## 2052 33 TRUE 1 FALSE 1506015933 27487
+## 2053 27 TRUE 1 FALSE 1505235779 27487
+## 2054 39 TRUE 1 FALSE 1506016153 27487
+## 2055 18 TRUE 1 FALSE 1506017022 27487
+## 2056 19 TRUE 1 FALSE 1506017053 27487
+## 2057 4 TRUE 1 FALSE 1506016307 27487
+## 2058 29 TRUE 1 FALSE 1506125794 27487
+## 2059 36 TRUE 2 FALSE 1506019503 27487
+## 2060 13 TRUE 1 FALSE 1505236404 27487
+## 2061 38 TRUE 1 FALSE 1505235888 27487
+## 2062 41 TRUE 1 FALSE 1506019628 27487
+## 2063 17 TRUE 1 FALSE 1505236558 27487
+## 2064 23 TRUE 2 FALSE 1506124030 27487
+## 2065 24 TRUE 1 FALSE 1506124051 27487
+## 2066 21 TRUE 2 FALSE 1505236777 27487
+## 2067 15 TRUE 1 FALSE 1506123581 27487
+## 2068 28 TRUE 2 FALSE 1506125792 27487
+## 2069 17 TRUE 1 FALSE 1506123631 27487
+## 2070 10 TRUE 1 FALSE 1505236319 27487
+## 2071 37 TRUE 1 FALSE 1506019530 27487
+## 2072 5 TRUE 1 FALSE 1506017382 27487
+## 2073 3 TRUE 1 FALSE 1506017283 27487
+## 2074 14 TRUE 1 FALSE 1505236449 27487
+## 2075 27 TRUE 1 FALSE 1506019148 27487
+## 2076 18 TRUE 1 FALSE 1505236648 27487
+## 2077 14 TRUE 1 FALSE 1506123283 27487
+## 2078 6 TRUE 1 FALSE 1505236221 27487
+## 2079 16 TRUE 2 FALSE 1506123602 27487
+## 2080 9 TRUE 1 FALSE 1505236306 27487
+## 2081 34 TRUE 1 FALSE 1506019477 27487
+## 2082 12 TRUE 1 FALSE 1505236391 27487
+## 2083 36 TRUE 2 FALSE 1505235874 27487
+## 2084 40 TRUE 1 FALSE 1506019625 27487
+## 2085 4 TRUE 1 FALSE 1505236164 27487
+## 2086 16 TRUE 1 FALSE 1505236482 27487
+## 2087 12 TRUE 1 FALSE 1506123144 27487
+## 2088 13 TRUE 1 FALSE 1506123168 27487
+## 2089 33 TRUE 1 FALSE 1506019467 27487
+## 2090 26 TRUE 1 FALSE 1505235775 27487
+## 2091 31 TRUE 1 FALSE 1506019394 27487
+## 2092 7 TRUE 1 FALSE 1505236249 27487
+## 2093 25 TRUE 2 FALSE 1505235752 27487
+## 2094 38 TRUE 1 FALSE 1505237366 27487
+## 2095 3 TRUE 2 FALSE 1505236158 27487
+## 2096 32 TRUE 1 FALSE 1506019442 27487
+## 2097 29 TRUE 1 FALSE 1506019379 27487
+## 2098 5 TRUE 1 FALSE 1505236174 27487
+## 2099 31 TRUE 1 FALSE 1505235803 27487
+## 2100 38 TRUE 1 FALSE 1506019587 27487
+## 2101 30 TRUE 1 FALSE 1506019383 27487
+## 2102 15 TRUE 1 FALSE 1504919889 21536
+## 2103 7 TRUE 1 FALSE 1504919477 21536
+## 2104 27 TRUE 1 FALSE 1504920200 21536
+## 2105 30 TRUE 1 FALSE 1504920292 21536
+## 2106 25 TRUE 1 FALSE 1504920140 21536
+## 2107 26 TRUE 1 FALSE 1504920151 21536
+## 2108 10 TRUE 2 FALSE 1504919637 21536
+## 2109 14 TRUE 1 FALSE 1504919881 21536
+## 2110 13 TRUE 1 FALSE 1504919809 21536
+## 2111 12 TRUE 3 FALSE 1504888369 21536
+## 2112 13 TRUE 1 FALSE 1504888437 21536
+## 2113 5 TRUE 1 FALSE 1504999311 21536
+## 2114 8 TRUE 1 FALSE 1504999374 21536
+## 2115 31 TRUE 1 FALSE NA 21536
+## 2116 16 TRUE 1 FALSE 1504973409 21536
+## 2117 19 TRUE 1 FALSE 1505395970 21536
+## 2118 11 TRUE 1 FALSE 1504919736 21536
+## 2119 12 TRUE 1 FALSE 1504919757 21536
+## 2120 4 TRUE 4 FALSE 1505247059 21536
+## 2121 6 TRUE 2 FALSE 1505247085 21536
+## 2122 7 TRUE 1 FALSE 1505247103 21536
+## 2123 8 TRUE 1 FALSE 1505247115 21536
+## 2124 10 TRUE 1 FALSE 1505247141 21536
+## 2125 11 TRUE 1 FALSE 1505247154 21536
+## 2126 17 TRUE 1 FALSE 1504973443 21536
+## 2127 18 TRUE 1 FALSE 1504973458 21536
+## 2128 6 TRUE 2 FALSE 1504888138 21536
+## 2129 11 TRUE 1 FALSE 1504888263 21536
+## 2130 20 TRUE 1 FALSE 1505857113 21536
+## 2131 22 TRUE 1 FALSE 1505857141 21536
+## 2132 26 TRUE 1 FALSE 1505857190 21536
+## 2133 27 TRUE 1 FALSE 1505857192 21536
+## 2134 14 TRUE 1 FALSE 1504888468 21536
+## 2135 15 TRUE 2 FALSE 1504888506 21536
+## 2136 10 TRUE 1 FALSE 1505856573 21536
+## 2137 11 TRUE 1 FALSE 1505856586 21536
+## 2138 13 TRUE 1 FALSE 1505856710 21536
+## 2139 3 TRUE 1 FALSE 1504976570 21536
+## 2140 17 TRUE 1 FALSE 1505856871 21536
+## 2141 13 TRUE 1 FALSE 1504999650 21536
+## 2142 14 TRUE 1 FALSE 1504999666 21536
+## 2143 16 TRUE 1 FALSE 1504999968 21536
+## 2144 17 TRUE 1 FALSE 1505000116 21536
+## 2145 18 TRUE 1 FALSE 1505000184 21536
+## 2146 19 TRUE 1 FALSE 1505000250 21536
+## 2147 14 TRUE 2 FALSE 1505837157 21536
+## 2148 18 TRUE 2 FALSE 1505395967 21536
+## 2149 12 TRUE 2 FALSE 1505322708 21536
+## 2150 16 TRUE 1 FALSE 1505856856 21536
+## 2151 7 TRUE 1 FALSE 1504976651 21536
+## 2152 11 TRUE 1 FALSE 1504976763 21536
+## 2153 14 TRUE 1 FALSE 1504976834 21536
+## 2154 5 TRUE 1 FALSE 1505247065 21536
+## 2155 4 TRUE 1 FALSE 1505856481 21536
+## 2156 6 TRUE 1 FALSE 1505856504 21536
+## 2157 8 TRUE 1 FALSE 1505856554 21536
+## 2158 9 TRUE 1 FALSE 1505856562 21536
+## 2159 34 TRUE 2 FALSE 1504977559 21536
+## 2160 35 TRUE 2 FALSE 15049775 21536
+## 2161 15 TRUE 1 FALSE 1505856739 21536
+## 2162 12 TRUE 1 FALSE 1504999607 21536
+## 2163 17 TRUE 2 FALSE 1505068911 21536
+## 2164 19 TRUE 1 FALSE 1505068987 21536
+## 2165 22 TRUE 1 FALSE 1505069069 21536
+## 2166 23 TRUE 1 FALSE 1505069084 21536
+## 2167 3 TRUE 1 FALSE 1505057365 21536
+## 2168 5 TRUE 1 FALSE 1505057383 21536
+## 2169 9 TRUE 2 FALSE 1504999548 21536
+## 2170 11 TRUE 1 FALSE 1504999593 21536
+## 2171 20 TRUE 2 FALSE 1505396009 21536
+## 2172 3 TRUE 1 FALSE 1505856422 21536
+## 2173 13 TRUE 1 FALSE 1504973330 21536
+## 2174 15 TRUE 1 FALSE 1504973376 21536
+## 2175 15 TRUE 1 FALSE 1505322801 21536
+## 2176 18 TRUE 1 FALSE 1504888 21536
+## 2177 10 TRUE 1 FALSE 1504999565 21536
+## 2178 15 TRUE 1 FALSE 1505068879 21536
+## 2179 16 TRUE 1 FALSE 1505068891 21536
+## 2180 8 TRUE 5 FALSE 1504973076 21536
+## 2181 25 TRUE 1 FALSE 1504977261 21536
+## 2182 32 TRUE 1 FALSE 1504977533 21536
+## 2183 33 TRUE 1 FALSE 1504977542 21536
+## 2184 8 TRUE 1 FALSE 1505057480 21536
+## 2185 16 TRUE 2 FALSE 1504888605 21536
+## 2186 11 TRUE 1 FALSE 1505836962 21536
+## 2187 18 TRUE 1 FALSE 1505072392 21536
+## 2188 14 TRUE 1 FALSE 1505068848 21536
+## 2189 20 TRUE 5 FALSE 1505072510 21536
+## 2190 9 TRUE 2 FALSE 1504973117 21536
+## 2191 12 TRUE 1 FALSE 1504973181 21536
+## 2192 28 TRUE 1 FALSE 1505072917 21536
+## 2193 10 TRUE 2 FALSE 1505836955 21536
+## 2194 8 TRUE 1 FALSE 1505071870 21536
+## 2195 11 TRUE 1 FALSE 1505322525 21536
+## 2196 10 TRUE 1 FALSE 1505057532 21536
+## 2197 12 TRUE 1 FALSE 1505057602 21536
+## 2198 24 TRUE 1 FALSE 1505072714 21536
+## 2199 26 TRUE 1 FALSE 1505072730 21536
+## 2200 21 TRUE 1 FALSE 1504977153 21536
+## 2201 6 TRUE 1 FALSE 1505322440 21536
+## 2202 8 TRUE 1 FALSE 1505322477 21536
+## 2203 27 TRUE 1 FALSE 1505072840 21536
+## 2204 9 TRUE 1 FALSE 1505836881 21536
+## 2205 22 TRUE 1 FALSE 1505072554 21536
+## 2206 5 TRUE 1 FALSE 1505834795 21536
+## 2207 6 TRUE 1 FALSE 1505834854 21536
+## 2208 7 TRUE 1 FALSE 1505836867 21536
+## 2209 8 TRUE 1 FALSE 1505836869 21536
+## 2210 3 TRUE 1 FALSE 1505322354 21536
+## 2211 6 TRUE 1 FALSE 1504827158 65259
+## 2212 4 TRUE 2 FALSE 1504827135 65259
+## 2213 5 TRUE 1 FALSE 1504827148 65259
+## 2214 21 TRUE 1 FALSE 1504827484 65259
+## 2215 14 TRUE 1 FALSE 1504886321 65259
+## 2216 15 TRUE 1 FALSE 1504886357 65259
+## 2217 3 TRUE 2 FALSE 1504886227 65259
+## 2218 7 TRUE 1 FALSE 1504827187 65259
+## 2219 8 TRUE 1 FALSE 1504827202 65259
+## 2220 10 TRUE 1 FALSE 1504827233 65259
+## 2221 11 TRUE 1 FALSE 1504827252 65259
+## 2222 12 TRUE 1 FALSE 1504827268 65259
+## 2223 16 TRUE 1 FALSE 1504827350 65259
+## 2224 18 TRUE 1 FALSE 1504827441 65259
+## 2225 12 TRUE 1 FALSE 1504886301 65259
+## 2226 13 TRUE 1 FALSE 1504886305 65259
+## 2227 4 TRUE 1 FALSE 1504886232 65259
+## 2228 5 TRUE 1 FALSE 1504886240 65259
+## 2229 16 TRUE 2 FALSE 1504886364 65259
+## 2230 8 TRUE 1 FALSE 1504886272 65259
+## 2231 9 TRUE 1 FALSE 1504886278 65259
+## 2232 7 TRUE 2 FALSE 1504886258 65259
+## 2233 11 TRUE 1 FALSE 1504886296 65259
+## 2234 17 TRUE 1 FALSE 1504886368 65259
+## 2235 21 TRUE 2 FALSE 1505175554 2864
+## 2236 10 TRUE 1 FALSE 1505175315 2864
+## 2237 36 TRUE 1 FALSE 1505175790 2864
+## 2238 14 TRUE 1 FALSE 1505175368 2864
+## 2239 18 TRUE 1 FALSE 1505175499 2864
+## 2240 22 TRUE 1 FALSE 1505175575 2864
+## 2241 8 TRUE 1 FALSE 1505175307 2864
+## 2242 12 TRUE 1 FALSE 1505175329 2864
+## 2243 31 TRUE 1 FALSE 1505175717 2864
+## 2244 38 TRUE 1 FALSE 1505175818 2864
+## 2245 33 TRUE 1 FALSE 1505175754 2864
+## 2246 17 TRUE 2 FALSE 1505175482 2864
+## 2247 11 TRUE 1 FALSE 1505175324 2864
+## 2248 3 TRUE 1 FALSE 1505175263 2864
+## 2249 23 TRUE 1 FALSE 1505175584 2864
+## 2250 16 TRUE 1 FALSE 1505175433 2864
+## 2251 27 TRUE 1 FALSE 1505175658 2864
+## 2252 40 TRUE 1 FALSE 1505175831 2864
+## 2253 15 TRUE 2 FALSE 1505175424 2864
+## 2254 26 TRUE 1 FALSE 1505175653 2864
+## 2255 25 TRUE 1 FALSE 1505175621 2864
+## 2256 39 TRUE 1 FALSE 1505175825 2864
+## 2257 25 TRUE 1 FALSE 1505180426 34068
+## 2258 36 TRUE 1 FALSE 1505180611 34068
+## 2259 21 TRUE 1 FALSE 1505180336 34068
+## 2260 3 TRUE 1 FALSE 1505180045 34068
+## 2261 22 TRUE 1 FALSE 1505180360 34068
+## 2262 17 TRUE 1 FALSE 1505180233 34068
+## 2263 33 TRUE 1 FALSE 1505180557 34068
+## 2264 23 TRUE 1 FALSE 1505180371 34068
+## 2265 31 TRUE 1 FALSE 1505180527 34068
+## 2266 12 TRUE 1 FALSE 1505180118 34068
+## 2267 14 TRUE 1 FALSE 1505180178 34068
+## 2268 40 TRUE 1 FALSE 1505180659 34068
+## 2269 16 TRUE 1 FALSE 1505180198 34068
+## 2270 38 TRUE 1 FALSE 1505180642 34068
+## 2271 18 TRUE 1 FALSE 1505180259 34068
+## 2272 39 TRUE 1 FALSE 1505180649 34068
+## 2273 27 TRUE 1 FALSE 1505180456 34068
+## 2274 8 TRUE 1 FALSE 1505180083 34068
+## 2275 10 TRUE 1 FALSE 1505180098 34068
+## 2276 15 TRUE 1 FALSE 1505180188 34068
+## 2277 26 TRUE 1 FALSE 1505180445 34068
+## 2278 11 TRUE 1 FALSE 1505180115 34068
+## 2279 16 TRUE 2 FALSE 1502408365 76966
+## 2280 17 TRUE 1 FALSE 1502409052 76966
+## 2281 18 TRUE 3 FALSE 1502409329 76966
+## 2282 38 TRUE 1 FALSE 1502411179 76966
+## 2283 33 TRUE 1 FALSE 1502410633 76966
+## 2284 34 TRUE 2 FALSE 1502411135 76966
+## 2285 35 TRUE 1 FALSE 1502411141 76966
+## 2286 37 TRUE 1 FALSE 1502411166 76966
+## 2287 3 TRUE 1 FALSE 1502388489 76966
+## 2288 21 TRUE 3 FALSE 1502410318 76966
+## 2289 22 TRUE 1 FALSE 1502410425 76966
+## 2290 26 TRUE 1 FALSE 1502410486 76966
+## 2291 27 TRUE 1 FALSE 1502410498 76966
+## 2292 30 TRUE 1 FALSE 1502410523 76966
+## 2293 13 TRUE 1 FALSE 1502408160 76966
+## 2294 14 TRUE 1 FALSE 1502408314 76966
+## 2295 4 TRUE 1 FALSE 1502388497 76966
+## 2296 5 TRUE 1 FALSE 1502388508 76966
+## 2297 6 TRUE 1 FALSE 1502388672 76966
+## 2298 7 TRUE 1 FALSE 1502388705 76966
+## 2299 9 TRUE 1 FALSE 1502388726 76966
+## 2300 10 TRUE 1 FALSE 1502388746 76966
+## 2301 12 TRUE 1 FALSE 1502388793 76966
+## 2302 3 TRUE 1 FALSE 1499366294 4807
+## 2303 8 TRUE 1 FALSE 1499366325 4807
+## 2304 10 TRUE 1 FALSE 1499366341 4807
+## 2305 11 TRUE 2 FALSE 1499366546 4807
+## 2306 12 TRUE 1 FALSE 1499366549 4807
+## 2307 14 TRUE 4 FALSE 1499366778 4807
+## 2308 15 TRUE 2 FALSE 1499367393 4807
+## 2309 16 TRUE 1 FALSE 1499367401 4807
+## 2310 17 TRUE 2 FALSE 1499368142 4807
+## 2311 18 TRUE 1 FALSE 1499368185 4807
+## 2312 21 TRUE 3 FALSE 1499368318 4807
+## 2313 22 TRUE 2 FALSE 1499368356 4807
+## 2314 23 TRUE 2 FALSE 1499368404 4807
+## 2315 25 TRUE 2 FALSE 1499368659 4807
+## 2316 26 TRUE 1 FALSE 1499368673 4807
+## 2317 27 TRUE 1 FALSE 1499368680 4807
+## 2318 31 TRUE 1 FALSE 1499368797 4807
+## 2319 33 TRUE 1 FALSE 1499368821 4807
+## 2320 36 TRUE 1 FALSE 1499368868 4807
+## 2321 38 TRUE 1 FALSE 1499368891 4807
+## 2322 39 TRUE 1 FALSE 1499368902 4807
+## 2323 40 TRUE 1 FALSE 1499368906 4807
+## 2324 5 TRUE 1 FALSE 1499368998 4807
+## 2325 6 TRUE 1 FALSE 1499369005 4807
+## 2326 8 TRUE 1 FALSE 1499369036 4807
+## 2327 9 TRUE 1 FALSE 1499369040 4807
+## 2328 10 TRUE 1 FALSE 1499369050 4807
+## 2329 11 TRUE 1 FALSE 1499370381 4807
+## 2330 14 TRUE 1 FALSE 1499370430 4807
+## 2331 15 TRUE 2 FALSE 1499370499 4807
+## 2332 17 TRUE 1 FALSE 1499370533 4807
+## 2333 19 TRUE 1 FALSE 1499370573 4807
+## 2334 21 TRUE 1 FALSE 1499370622 4807
+## 2335 22 TRUE 2 FALSE 1499370650 4807
+## 2336 23 TRUE 3 FALSE 1499370781 4807
+## 2337 25 TRUE 1 FALSE 1499370808 4807
+## 2338 27 TRUE 2 FALSE 1499370959 4807
+## 2339 29 TRUE 1 FALSE 1499371025 4807
+## 2340 31 TRUE 2 FALSE 1499371094 4807
+## 2341 32 TRUE 1 FALSE 1499371248 4807
+## 2342 33 TRUE 1 FALSE 1499371284 4807
+## 2343 34 TRUE 2 FALSE 1499371565 4807
+## 2344 35 TRUE 1 FALSE 1499371585 4807
+## 2345 40 TRUE 1 FALSE 1499371651 4807
+## 2346 41 TRUE 1 FALSE 1499371655 4807
+## 2347 5 TRUE 1 FALSE 1499377896 4807
+## 2348 6 TRUE 2 FALSE 1499378009 4807
+## 2349 7 TRUE 1 FALSE 1499378023 4807
+## 2350 8 TRUE 1 FALSE 1499378032 4807
+## 2351 11 TRUE 1 FALSE 1499378097 4807
+## 2352 17 TRUE 3 FALSE 1499378329 4807
+## 2353 18 TRUE 2 FALSE 1499378420 4807
+## 2354 19 TRUE 1 FALSE 1499378496 4807
+## 2355 22 TRUE 1 FALSE 1499378561 4807
+## 2356 23 TRUE 1 FALSE 1499378567 4807
+## 2357 25 TRUE 2 FALSE 1499378924 4807
+## 2358 28 TRUE 1 FALSE 1499379089 4807
+## 2359 29 TRUE 1 FALSE 1499379097 4807
+## 2360 30 TRUE 1 FALSE 1499379307 4807
+## 2361 32 TRUE 2 FALSE 1499379460 4807
+## 2362 33 TRUE 2 FALSE 1499379696 4807
+## 2363 35 TRUE 1 FALSE 1499379958 4807
+## 2364 39 TRUE 1 FALSE 1499380006 4807
+## 2365 40 TRUE 1 FALSE 1499380013 4807
+## 2366 30 TRUE 2 FALSE 1500767835 4807
+## 2367 33 TRUE 1 FALSE 1500768120 4807
+## 2368 34 TRUE 2 FALSE 1500768238 4807
+## 2369 35 TRUE 1 FALSE 1500768247 4807
+## 2370 37 TRUE 1 FALSE 1500768320 4807
+## 2371 38 TRUE 1 FALSE 1500768324 4807
+## 2372 3 TRUE 1 FALSE 1499914640 4807
+## 2373 4 TRUE 1 FALSE 1499914653 4807
+## 2374 5 TRUE 2 FALSE 1499914675 4807
+## 2375 7 TRUE 1 FALSE 1499914898 4807
+## 2376 8 TRUE 2 FALSE 1499914953 4807
+## 2377 9 TRUE 1 FALSE 1499914960 4807
+## 2378 11 TRUE 1 FALSE 1499915028 4807
+## 2379 12 TRUE 1 FALSE 1499915032 4807
+## 2380 13 TRUE 1 FALSE 1499915053 4807
+## 2381 14 TRUE 1 FALSE 1499915087 4807
+## 2382 15 TRUE 1 FALSE 1499915168 4807
+## 2383 16 TRUE 1 FALSE 1499915177 4807
+## 2384 17 TRUE 1 FALSE 1499915197 4807
+## 2385 3 TRUE 2 FALSE 1499816686 4807
+## 2386 4 TRUE 1 FALSE 1499816698 4807
+## 2387 6 TRUE 1 FALSE 1499816726 4807
+## 2388 7 TRUE 1 FALSE 1499816756 4807
+## 2389 8 TRUE 1 FALSE 1499816802 4807
+## 2390 9 TRUE 1 FALSE 1499816871 4807
+## 2391 10 TRUE 1 FALSE 1499816878 4807
+## 2392 12 TRUE 1 FALSE 1499816969 4807
+## 2393 17 TRUE 2 FALSE 1499817174 4807
+## 2394 18 TRUE 1 FALSE 1499817222 4807
+## 2395 19 TRUE 1 FALSE 1499817252 4807
+## 2396 20 TRUE 1 FALSE 1499817295 4807
+## 2397 21 TRUE 1 FALSE 1499817336 4807
+## 2398 22 TRUE 1 FALSE 1499817340 4807
+## 2399 3 TRUE 1 FALSE 1499904135 4807
+## 2400 5 TRUE 1 FALSE 1499904169 4807
+## 2401 8 TRUE 1 FALSE 1499904364 4807
+## 2402 9 TRUE 1 FALSE 1499904382 4807
+## 2403 10 TRUE 1 FALSE 1499904495 4807
+## 2404 11 TRUE 1 FALSE 1499904498 4807
+## 2405 13 TRUE 2 FALSE 1499904601 4807
+## 2406 14 TRUE 1 FALSE 1499904646 4807
+## 2407 15 TRUE 1 FALSE 1499904713 4807
+## 2408 17 TRUE 1 FALSE 1499904793 4807
+## 2409 21 TRUE 2 FALSE 1499906000 4807
+## 2410 22 TRUE 1 FALSE 1499906037 4807
+## 2411 23 TRUE 1 FALSE 1499906056 4807
+## 2412 26 TRUE 1 FALSE 1499906133 4807
+## 2413 27 TRUE 1 FALSE 1499906166 4807
+## 2414 29 TRUE 1 FALSE 1499906215 4807
+## 2415 30 TRUE 1 FALSE 1499906225 4807
+## 2416 31 TRUE 1 FALSE 1499906250 4807
+## 2417 32 TRUE 2 FALSE 1499906339 4807
+## 2418 33 TRUE 1 FALSE 1499906394 4807
+## 2419 34 TRUE 1 FALSE 1499907077 4807
+## 2420 36 TRUE 2 FALSE 1499907284 4807
+## 2421 37 TRUE 1 FALSE 1499907300 4807
+## 2422 38 TRUE 1 FALSE 1499907338 4807
+## 2423 40 TRUE 1 FALSE 1499907372 4807
+## 2424 41 TRUE 1 FALSE 1499907374 4807
+## 2425 4 TRUE 1 FALSE 1499908616 4807
+## 2426 6 TRUE 1 FALSE 1499908709 4807
+## 2427 7 TRUE 1 FALSE 1499908731 4807
+## 2428 9 TRUE 1 FALSE 1499908806 4807
+## 2429 10 TRUE 1 FALSE 1499908820 4807
+## 2430 12 TRUE 1 FALSE 1499908853 4807
+## 2431 13 TRUE 1 FALSE 1499908899 4807
+## 2432 14 TRUE 1 FALSE 1499908930 4807
+## 2433 15 TRUE 4 FALSE 1499909165 4807
+## 2434 17 TRUE 3 FALSE 1499909273 4807
+## 2435 18 TRUE 2 FALSE 1499909311 4807
+## 2436 20 TRUE 1 FALSE 1499909349 4807
+## 2437 21 TRUE 1 FALSE 1499909379 4807
+## 2438 23 TRUE 1 FALSE 1499909422 4807
+## 2439 27 TRUE 1 FALSE 1499910378 4807
+## 2440 28 TRUE 1 FALSE 1499910400 4807
+## 2441 30 TRUE 1 FALSE 1499910473 4807
+## 2442 32 TRUE 2 FALSE 1499910546 4807
+## 2443 33 TRUE 2 FALSE 1499910603 4807
+## 2444 35 TRUE 1 FALSE 1499910661 4807
+## 2445 36 TRUE 3 FALSE 1499910782 4807
+## 2446 37 TRUE 1 FALSE 1499910820 4807
+## 2447 38 TRUE 1 FALSE 1499910839 4807
+## 2448 39 TRUE 1 FALSE 1499910875 4807
+## 2449 41 TRUE 4 FALSE 1499911294 4807
+## 2450 42 TRUE 1 FALSE 1499911474 4807
+## 2451 43 TRUE 1 FALSE 1499911482 4807
+## 2452 44 TRUE 1 FALSE 1499913399 4807
+## 2453 46 TRUE 1 FALSE 1499913459 4807
+## 2454 47 TRUE 1 FALSE 1499913818 4807
+## 2455 49 TRUE 2 FALSE 1499913873 4807
+## 2456 50 TRUE 9 FALSE 1499914027 4807
+## 2457 51 TRUE 1 FALSE 1499914054 4807
+## 2458 53 TRUE 1 FALSE 1499914067 4807
+## 2459 54 TRUE 1 FALSE 1499914074 4807
+## 2460 3 TRUE 4 FALSE 1500766032 4807
+## 2461 4 TRUE 1 FALSE 1500766040 4807
+## 2462 18 TRUE 1 FALSE 1499915217 4807
+## 2463 19 TRUE 1 FALSE 1499915371 4807
+## 2464 20 TRUE 1 FALSE 1499915470 4807
+## 2465 22 TRUE 1 FALSE 1499924270 4807
+## 2466 23 TRUE 2 FALSE 1499924308 4807
+## 2467 24 TRUE 1 FALSE 1499924366 4807
+## 2468 27 TRUE 5 FALSE 1499924620 4807
+## 2469 28 TRUE 2 FALSE 1499924724 4807
+## 2470 29 TRUE 1 FALSE 1499924727 4807
+## 2471 30 TRUE 1 FALSE 1499924747 4807
+## 2472 32 TRUE 1 FALSE 1499924807 4807
+## 2473 33 TRUE 1 FALSE 1499924845 4807
+## 2474 35 TRUE 1 FALSE 1499924900 4807
+## 2475 37 TRUE 1 FALSE 1499924944 4807
+## 2476 38 TRUE 1 FALSE 1499924948 4807
+## 2477 16 TRUE 2 FALSE 1500767055 4807
+## 2478 17 TRUE 2 FALSE 1500767367 4807
+## 2479 5 TRUE 1 FALSE 1500766055 4807
+## 2480 6 TRUE 1 FALSE 1500766091 4807
+## 2481 7 TRUE 1 FALSE 1500766234 4807
+## 2482 9 TRUE 1 FALSE 1500766271 4807
+## 2483 10 TRUE 1 FALSE 1500766294 4807
+## 2484 12 TRUE 1 FALSE 1500766347 4807
+## 2485 13 TRUE 1 FALSE 1500766412 4807
+## 2486 14 TRUE 2 FALSE 1500766485 4807
+## 2487 21 TRUE 1 FALSE 1500767561 4807
+## 2488 22 TRUE 1 FALSE 1500767604 4807
+## 2489 26 TRUE 1 FALSE 1500767725 4807
+## 2490 18 TRUE 1 FALSE 1500767391 4807
+## 2491 27 TRUE 1 FALSE 1500767733 4807
+## 2492 23 TRUE 1 FALSE 1505252526 6487
+## 2493 18 TRUE 1 FALSE 1505252392 6487
+## 2494 11 TRUE 1 FALSE 1505252088 6487
+## 2495 16 TRUE 1 FALSE 1505252333 6487
+## 2496 15 TRUE 1 FALSE 1505252312 6487
+## 2497 39 TRUE 1 FALSE 1505253186 6487
+## 2498 21 TRUE 1 FALSE 1505252497 6487
+## 2499 17 TRUE 1 FALSE 1505252375 6487
+## 2500 33 TRUE 1 FALSE 1505252944 6487
+## 2501 14 TRUE 1 FALSE 1505252297 6487
+## 2502 40 TRUE 1 FALSE 1505253190 6487
+## 2503 3 TRUE 1 FALSE 1505251861 6487
+## 2504 12 TRUE 2 FALSE 1505252106 6487
+## 2505 25 TRUE 1 FALSE 1505252568 6487
+## 2506 26 TRUE 1 FALSE 1505252586 6487
+## 2507 22 TRUE 1 FALSE 1505252519 6487
+## 2508 38 TRUE 1 FALSE 1505253173 6487
+## 2509 31 TRUE 1 FALSE 1505252811 6487
+## 2510 36 TRUE 1 FALSE 1505253059 6487
+## 2511 10 TRUE 1 FALSE 1505252078 6487
+## 2512 8 TRUE 1 FALSE 1505252047 6487
+## 2513 27 TRUE 1 FALSE 1505252590 6487
+## 2514 6 TRUE 1 FALSE 1506210439 8766
+## 2515 5 TRUE 1 FALSE 1506210407 8766
+## 2516 11 TRUE 1 FALSE 1506210616 8766
+## 2517 8 TRUE 1 FALSE 1506210477 8766
+## 2518 9 TRUE 1 FALSE 1506210483 8766
+## 2519 10 TRUE 1 FALSE 1506210501 8766
+## 2520 17 TRUE 2 FALSE 1506210932 8766
+## 2521 19 TRUE 1 FALSE 1506211021 8766
+## 2522 21 TRUE 1 FALSE 1506211065 8766
+## 2523 22 TRUE 2 FALSE 1506211108 8766
+## 2524 23 TRUE 1 FALSE 1506211133 8766
+## 2525 25 TRUE 1 FALSE 1506211212 8766
+## 2526 27 TRUE 1 FALSE 1506211241 8766
+## 2527 29 TRUE 1 FALSE 1506211334 8766
+## 2528 14 TRUE 1 FALSE 1506210650 8766
+## 2529 15 TRUE 2 FALSE 1506210749 8766
+## 2530 32 TRUE 2 FALSE 1506211444 8766
+## 2531 33 TRUE 1 FALSE 1506211488 8766
+## 2532 34 TRUE 3 FALSE 1506211691 8766
+## 2533 35 TRUE 1 FALSE 1506211760 8766
+## 2534 40 TRUE 1 FALSE 1506211831 8766
+## 2535 41 TRUE 1 FALSE 1506211833 8766
+## 2536 31 TRUE 2 FALSE 1506211401 8766
+## 2537 8 TRUE 1 FALSE 1506212217 8766
+## 2538 11 TRUE 1 FALSE 1506212271 8766
+## 2539 17 TRUE 1 FALSE 1506212393 8766
+## 2540 18 TRUE 1 FALSE 1506212398 8766
+## 2541 19 TRUE 1 FALSE 1506212435 8766
+## 2542 22 TRUE 1 FALSE 1506212468 8766
+## 2543 23 TRUE 1 FALSE 1506212473 8766
+## 2544 25 TRUE 2 FALSE 1506212545 8766
+## 2545 28 TRUE 2 FALSE 1506212625 8766
+## 2546 29 TRUE 1 FALSE 1506212633 8766
+## 2547 30 TRUE 2 FALSE 1506212830 8766
+## 2548 32 TRUE 1 FALSE 1506212886 8766
+## 2549 33 TRUE 1 FALSE 1506212966 8766
+## 2550 35 TRUE 1 FALSE 1506212997 8766
+## 2551 39 TRUE 1 FALSE 1506213064 8766
+## 2552 40 TRUE 1 FALSE 1506213067 8766
+## 2553 3 TRUE 1 FALSE 1506213777 8766
+## 2554 4 TRUE 1 FALSE 1506213785 8766
+## 2555 6 TRUE 1 FALSE 1506213826 8766
+## 2556 7 TRUE 1 FALSE 1506213883 8766
+## 2557 8 TRUE 1 FALSE 1506213972 8766
+## 2558 9 TRUE 1 FALSE 1506213998 8766
+## 2559 10 TRUE 1 FALSE 1506214004 8766
+## 2560 12 TRUE 1 FALSE 1506214063 8766
+## 2561 17 TRUE 1 FALSE 1506214112 8766
+## 2562 18 TRUE 1 FALSE 1506214169 8766
+## 2563 19 TRUE 1 FALSE 1506214189 8766
+## 2564 20 TRUE 3 FALSE 1506214264 8766
+## 2565 21 TRUE 1 FALSE 1506214267 8766
+## 2566 22 TRUE 1 FALSE 1506214270 8766
+## 2567 5 TRUE 2 FALSE 1506212127 8766
+## 2568 6 TRUE 1 FALSE 1506212150 8766
+## 2569 7 TRUE 1 FALSE 1506212211 8766
+## 2570 11 TRUE 1 FALSE 1506135629 70464
+## 2571 12 TRUE 1 FALSE 1506135632 70464
+## 2572 14 TRUE 1 FALSE 1506135745 70464
+## 2573 16 TRUE 1 FALSE 1506135811 70464
+## 2574 17 TRUE 1 FALSE 1506135858 70464
+## 2575 3 TRUE 1 FALSE 1506135551 70464
+## 2576 15 TRUE 1 FALSE 1506135755 70464
+## 2577 10 TRUE 1 FALSE 1506135616 70464
+## 2578 41 TRUE 4 FALSE 1506187821 70464
+## 2579 42 TRUE 1 FALSE 1506187994 70464
+## 2580 43 TRUE 1 FALSE 1506187999 70464
+## 2581 44 TRUE 1 FALSE 1506188065 70464
+## 2582 46 TRUE 1 FALSE 1506188171 70464
+## 2583 47 TRUE 1 FALSE 1506188203 70464
+## 2584 49 TRUE 1 FALSE 1506188288 70464
+## 2585 50 TRUE 1 FALSE 1506188295 70464
+## 2586 51 TRUE 1 FALSE 1506188305 70464
+## 2587 53 TRUE 1 FALSE 1506188320 70464
+## 2588 8 TRUE 1 FALSE 1506135610 70464
+## 2589 3 TRUE 1 FALSE 1506193173 70464
+## 2590 4 TRUE 1 FALSE 1506193189 70464
+## 2591 5 TRUE 1 FALSE 1506193202 70464
+## 2592 7 TRUE 1 FALSE 1506193243 70464
+## 2593 8 TRUE 1 FALSE 1506193274 70464
+## 2594 9 TRUE 1 FALSE 1506193279 70464
+## 2595 11 TRUE 1 FALSE 1506193319 70464
+## 2596 12 TRUE 1 FALSE 1506193322 70464
+## 2597 18 TRUE 1 FALSE 1506135868 70464
+## 2598 21 TRUE 2 FALSE 1506136028 70464
+## 2599 54 TRUE 1 FALSE 1506188328 70464
+## 2600 27 TRUE 10 TRUE 1506195744 70464
+## 2601 28 TRUE 1 FALSE 1506195911 70464
+## 2602 29 TRUE 1 FALSE 1506195919 70464
+## 2603 30 TRUE 1 FALSE 1506196096 70464
+## 2604 32 TRUE 1 FALSE 1506196132 70464
+## 2605 33 TRUE 1 FALSE 1506196150 70464
+## 2606 35 TRUE 1 FALSE 1506196194 70464
+## 2607 37 TRUE 1 FALSE 1506196220 70464
+## 2608 22 TRUE 1 FALSE 1506136045 70464
+## 2609 23 TRUE 1 FALSE 1506136050 70464
+## 2610 3 TRUE 1 FALSE 1506198130 70464
+## 2611 5 TRUE 1 FALSE 1506198206 70464
+## 2612 8 TRUE 1 FALSE 1506198439 70464
+## 2613 9 TRUE 1 FALSE 1506198480 70464
+## 2614 11 TRUE 1 FALSE 1506198649 70464
+## 2615 13 TRUE 1 FALSE 1506198827 70464
+## 2616 14 TRUE 1 FALSE 1506198844 70464
+## 2617 16 TRUE 1 FALSE 1506199211 70464
+## 2618 17 TRUE 1 FALSE 1506199221 70464
+## 2619 19 TRUE 1 FALSE 1506199242 70464
+## 2620 21 TRUE 1 FALSE 1506199264 70464
+## 2621 38 TRUE 1 FALSE 1506196227 70464
+## 2622 25 TRUE 1 FALSE 1506136071 70464
+## 2623 26 TRUE 1 FALSE 1506136079 70464
+## 2624 27 TRUE 1 FALSE 1506136092 70464
+## 2625 31 TRUE 1 FALSE 1506136148 70464
+## 2626 33 TRUE 1 FALSE 1506136164 70464
+## 2627 36 TRUE 1 FALSE 1506136294 70464
+## 2628 38 TRUE 1 FALSE 1506136314 70464
+## 2629 39 TRUE 1 FALSE 1506136320 70464
+## 2630 40 TRUE 1 FALSE 1506136326 70464
+## 2631 23 TRUE 1 FALSE 1506199410 70464
+## 2632 25 TRUE 1 FALSE 1506199452 70464
+## 2633 31 TRUE 1 FALSE 1506185691 70464
+## 2634 32 TRUE 1 FALSE 1506185708 70464
+## 2635 33 TRUE 1 FALSE 1506185747 70464
+## 2636 34 TRUE 1 FALSE 1506185770 70464
+## 2637 36 TRUE 3 FALSE 1506185842 70464
+## 2638 37 TRUE 1 FALSE 1506185855 70464
+## 2639 38 TRUE 1 FALSE 1506185893 70464
+## 2640 40 TRUE 1 FALSE 1506185907 70464
+## 2641 41 TRUE 1 FALSE 1506185911 70464
+## 2642 4 TRUE 1 FALSE 1506186378 70464
+## 2643 6 TRUE 1 FALSE 1506186406 70464
+## 2644 7 TRUE 1 FALSE 1506186421 70464
+## 2645 9 TRUE 1 FALSE 1506186463 70464
+## 2646 10 TRUE 1 FALSE 1506186474 70464
+## 2647 12 TRUE 1 FALSE 1506186493 70464
+## 2648 13 TRUE 1 FALSE 1506186498 70464
+## 2649 14 TRUE 1 FALSE 1506186518 70464
+## 2650 15 TRUE 2 FALSE 1506186580 70464
+## 2651 17 TRUE 1 FALSE 1506186705 70464
+## 2652 18 TRUE 1 FALSE 1506186726 70464
+## 2653 20 TRUE 1 FALSE 1506186795 70464
+## 2654 21 TRUE 1 FALSE 1506186845 70464
+## 2655 23 TRUE 1 FALSE 1506186866 70464
+## 2656 27 TRUE 2 FALSE 1506187018 70464
+## 2657 28 TRUE 1 FALSE 1506187037 70464
+## 2658 30 TRUE 1 FALSE 1506187203 70464
+## 2659 32 TRUE 1 FALSE 1506187279 70464
+## 2660 33 TRUE 1 FALSE 1506187330 70464
+## 2661 35 TRUE 1 FALSE 1506187358 70464
+## 2662 36 TRUE 1 FALSE 1506187397 70464
+## 2663 37 TRUE 1 FALSE 1506187415 70464
+## 2664 38 TRUE 3 FALSE 1506187465 70464
+## 2665 39 TRUE 1 FALSE 1506187580 70464
+## 2666 5 TRUE 1 FALSE 1506178473 70464
+## 2667 6 TRUE 2 FALSE 1506178574 70464
+## 2668 7 TRUE 1 FALSE 1506178599 70464
+## 2669 8 TRUE 1 FALSE 1506178604 70464
+## 2670 11 TRUE 1 FALSE 1506178693 70464
+## 2671 17 TRUE 1 FALSE 1506178955 70464
+## 2672 18 TRUE 1 FALSE 1506178971 70464
+## 2673 19 TRUE 1 FALSE 1506179020 70464
+## 2674 22 TRUE 1 FALSE 1506179220 70464
+## 2675 23 TRUE 1 FALSE 1506179232 70464
+## 2676 25 TRUE 1 FALSE 1506179326 70464
+## 2677 28 TRUE 1 FALSE 1506179501 70464
+## 2678 29 TRUE 1 FALSE 1506179507 70464
+## 2679 30 TRUE 1 FALSE 1506179629 70464
+## 2680 32 TRUE 2 FALSE 1506179733 70464
+## 2681 33 TRUE 1 FALSE 1506179820 70464
+## 2682 35 TRUE 1 FALSE 1506179931 70464
+## 2683 39 TRUE 1 FALSE 1506179988 70464
+## 2684 40 TRUE 1 FALSE 1506179990 70464
+## 2685 13 TRUE 1 FALSE 1506193336 70464
+## 2686 14 TRUE 1 FALSE 1506193399 70464
+## 2687 15 TRUE 1 FALSE 1506193452 70464
+## 2688 16 TRUE 2 FALSE 1506193475 70464
+## 2689 17 TRUE 1 FALSE 1506193484 70464
+## 2690 18 TRUE 1 FALSE 1506193506 70464
+## 2691 19 TRUE 1 FALSE 1506193554 70464
+## 2692 20 TRUE 1 FALSE 1506193606 70464
+## 2693 22 TRUE 1 FALSE 1506193642 70464
+## 2694 23 TRUE 1 FALSE 1506193662 70464
+## 2695 24 TRUE 1 FALSE 1506193688 70464
+## 2696 6 TRUE 2 FALSE 1506136519 70464
+## 2697 8 TRUE 1 FALSE 1506136553 70464
+## 2698 9 TRUE 1 FALSE 1506136558 70464
+## 2699 10 TRUE 1 FALSE 1506136599 70464
+## 2700 11 TRUE 1 FALSE 1506136648 70464
+## 2701 14 TRUE 2 FALSE 1506136808 70464
+## 2702 15 TRUE 1 FALSE 1506136846 70464
+## 2703 17 TRUE 1 FALSE 1506136944 70464
+## 2704 19 TRUE 1 FALSE 1506137069 70464
+## 2705 21 TRUE 1 FALSE 1506137165 70464
+## 2706 22 TRUE 1 FALSE 1506137214 70464
+## 2707 23 TRUE 1 FALSE 1506137230 70464
+## 2708 25 TRUE 1 FALSE 1506137364 70464
+## 2709 27 TRUE 3 FALSE 1506137735 70464
+## 2710 29 TRUE 2 FALSE 1506137957 70464
+## 2711 31 TRUE 1 FALSE 1506138006 70464
+## 2712 32 TRUE 1 FALSE 1506138158 70464
+## 2713 33 TRUE 1 FALSE 1506138355 70464
+## 2714 34 TRUE 1 FALSE 1506138547 70464
+## 2715 35 TRUE 1 FALSE 1506138654 70464
+## 2716 40 TRUE 1 FALSE 1506138827 70464
+## 2717 41 TRUE 1 FALSE 1506138834 70464
+## 2718 27 TRUE 3 FALSE 1506201417 70464
+## 2719 28 TRUE 1 FALSE 1506201461 70464
+## 2720 32 TRUE 1 FALSE 1506201561 70464
+## 2721 34 TRUE 1 FALSE 1506201772 70464
+## 2722 35 TRUE 2 FALSE 1506201870 70464
+## 2723 36 TRUE 1 FALSE 1506201887 70464
+## 2724 38 TRUE 1 FALSE 1506201992 70464
+## 2725 40 TRUE 1 FALSE 1506202262 70464
+## 2726 41 TRUE 1 FALSE 1506202303 70464
+## 2727 42 TRUE 1 FALSE 1506202581 70464
+## 2728 43 TRUE 1 FALSE 1506202661 70464
+## 2729 47 TRUE 1 FALSE 1506202941 70464
+## 2730 48 TRUE 3 FALSE 1506203030 70464
+## 2731 50 TRUE 1 FALSE 1506203057 70464
+## 2732 51 TRUE 1 FALSE 1506203061 70464
+## 2733 9 TRUE 2 FALSE 1506182879 70464
+## 2734 10 TRUE 1 FALSE 1506182885 70464
+## 2735 12 TRUE 1 FALSE 1506182922 70464
+## 2736 17 TRUE 1 FALSE 1506183313 70464
+## 2737 18 TRUE 1 FALSE 1506183332 70464
+## 2738 19 TRUE 1 FALSE 1506183386 70464
+## 2739 20 TRUE 3 FALSE 1506183424 70464
+## 2740 21 TRUE 1 FALSE 1506183486 70464
+## 2741 22 TRUE 1 FALSE 1506183488 70464
+## 2742 3 TRUE 1 FALSE 1506184009 70464
+## 2743 5 TRUE 1 FALSE 1506184047 70464
+## 2744 8 TRUE 4 FALSE 1506184271 70464
+## 2745 9 TRUE 1 FALSE 1506184281 70464
+## 2746 10 TRUE 2 FALSE 1506184385 70464
+## 2747 11 TRUE 1 FALSE 1506184388 70464
+## 2748 13 TRUE 1 FALSE 1506184630 70464
+## 2749 14 TRUE 1 FALSE 1506184640 70464
+## 2750 15 TRUE 1 FALSE 1506184649 70464
+## 2751 17 TRUE 1 FALSE 1506184964 70464
+## 2752 21 TRUE 2 FALSE 1506185218 70464
+## 2753 22 TRUE 1 FALSE 1506185237 70464
+## 2754 23 TRUE 1 FALSE 1506185250 70464
+## 2755 26 TRUE 1 FALSE 1506185373 70464
+## 2756 5 TRUE 1 FALSE 1506136440 70464
+## 2757 3 TRUE 2 FALSE 1506180371 70464
+## 2758 4 TRUE 2 FALSE 1506180400 70464
+## 2759 6 TRUE 1 FALSE 1506180436 70464
+## 2760 7 TRUE 1 FALSE 1506180483 70464
+## 2761 8 TRUE 1 FALSE 1506182819 70464
+## 2762 30 TRUE 1 FALSE 1506185676 70464
+## 2763 27 TRUE 1 FALSE 1506185409 70464
+## 2764 29 TRUE 1 FALSE 1506185665 70464
+## 2765 16 TRUE 2 FALSE 1505338706 11801
+## 2766 19 TRUE 1 FALSE 1506126571 11801
+## 2767 5 TRUE 1 FALSE 1505338545 11801
+## 2768 7 TRUE 1 FALSE 1505338558 11801
+## 2769 14 TRUE 1 FALSE 1505338660 11801
+## 2770 15 TRUE 1 FALSE 1505338682 11801
+## 2771 8 TRUE 1 FALSE 1506125918 11801
+## 2772 6 TRUE 1 FALSE 1506132057 11801
+## 2773 11 TRUE 1 FALSE 1506126006 11801
+## 2774 6 TRUE 5 FALSE 1506125893 11801
+## 2775 15 TRUE 1 FALSE 1506126402 11801
+## 2776 3 TRUE 1 FALSE 1505338525 11801
+## 2777 27 TRUE 1 FALSE 15051 11801
+## 2778 13 TRUE 1 FALSE 1505338634 11801
+## 2779 15 TRUE 2 FALSE 1505337494 11801
+## 2780 3 TRUE 1 FALSE 1505335967 11801
+## 2781 26 TRUE 1 FALSE 1505173441 11801
+## 2782 7 TRUE 1 FALSE 1506132080 11801
+## 2783 20 TRUE 1 FALSE 1505338777 11801
+## 2784 20 TRUE 1 FALSE 1506126602 11801
+## 2785 13 TRUE 1 FALSE 1505336560 11801
+## 2786 4 TRUE 1 FALSE 1505338534 11801
+## 2787 29 TRUE 1 FALSE 1505306881 11801
+## 2788 17 TRUE 1 FALSE 1505338717 11801
+## 2789 8 TRUE 1 FALSE 1505338582 11801
+## 2790 8 TRUE 1 FALSE 1506132086 11801
+## 2791 9 TRUE 1 FALSE 1505338591 11801
+## 2792 11 TRUE 1 FALSE 1505338623 11801
+## 2793 23 TRUE 1 FALSE 1505335586 11801
+## 2794 9 TRUE 1 FALSE 1505336481 11801
+## 2795 12 TRUE 1 FALSE 1506126259 11801
+## 2796 10 TRUE 1 FALSE 1506132176 11801
+## 2797 32 TRUE 1 FALSE 1505337824 11801
+## 2798 11 TRUE 1 FALSE 1506132186 11801
+## 2799 18 TRUE 1 FALSE 1506126566 11801
+## 2800 19 TRUE 1 FALSE 1505336262 11801
+## 2801 17 TRUE 1 FALSE 1506132471 11801
+## 2802 19 TRUE 1 FALSE 1505338753 11801
+## 2803 22 TRUE 1 FALSE 1506133638 11801
+## 2804 12 TRUE 1 FALSE 1505338627 11801
+## 2805 9 TRUE 1 FALSE 1506132109 11801
+## 2806 11 TRUE 1 FALSE 1505336521 11801
+## 2807 22 TRUE 1 FALSE 1506117792 11801
+## 2808 27 TRUE 1 FALSE 1505306822 11801
+## 2809 14 TRUE 1 FALSE 1506132328 11801
+## 2810 16 TRUE 1 FALSE 1506132457 11801
+## 2811 12 TRUE 1 FALSE 1505337366 11801
+## 2812 13 TRUE 1 FALSE 1505337371 11801
+## 2813 17 TRUE 1 FALSE 1505337535 11801
+## 2814 18 TRUE 1 FALSE 1505335469 11801
+## 2815 19 TRUE 1 FALSE 1505335489 11801
+## 2816 10 TRUE 1 FALSE 1505336518 11801
+## 2817 21 TRUE 1 FALSE 1506117770 11801
+## 2818 30 TRUE 1 FALSE 1505337749 11801
+## 2819 5 TRUE 1 FALSE 1505334705 11801
+## 2820 25 TRUE 1 FALSE 1505306754 11801
+## 2821 13 TRUE 1 FALSE 1506180109 11801
+## 2822 10 TRUE 1 FALSE 1505172619 11801
+## 2823 16 TRUE 2 FALSE 1506025214 11801
+## 2824 3 TRUE 1 FALSE 1506125691 11801
+## 2825 21 TRUE 1 FALSE 1505336295 11801
+## 2826 22 TRUE 1 FALSE 1505336297 11801
+## 2827 25 TRUE 1 FALSE 1505173415 11801
+## 2828 28 TRUE 1 FALSE 1505337709 11801
+## 2829 8 TRUE 1 FALSE 1505336471 11801
+## 2830 22 TRUE 1 FALSE 1505306545 11801
+## 2831 23 TRUE 1 FALSE 1505306566 11801
+## 2832 27 TRUE 1 FALSE 1506180480 11801
+## 2833 6 TRUE 2 FALSE 1505334963 11801
+## 2834 7 TRUE 1 FALSE 1505334983 11801
+## 2835 8 TRUE 1 FALSE 1505334988 11801
+## 2836 11 TRUE 1 FALSE 1505335039 11801
+## 2837 18 TRUE 1 FALSE 1505338727 11801
+## 2838 17 TRUE 1 FALSE 1505335455 11801
+## 2839 22 TRUE 1 FALSE 1505336917 11801
+## 2840 5 TRUE 1 FALSE 1506131989 11801
+## 2841 5 TRUE 1 FALSE 1505336396 11801
+## 2842 25 TRUE 1 FALSE 1505335618 11801
+## 2843 18 TRUE 1 FALSE 1506117740 11801
+## 2844 23 TRUE 1 FALSE 1506117822 11801
+## 2845 30 TRUE 1 FALSE 1505335708 11801
+## 2846 32 TRUE 1 FALSE 1505335771 11801
+## 2847 33 TRUE 1 FALSE 1505335838 11801
+## 2848 35 TRUE 1 FALSE 1505335871 11801
+## 2849 39 TRUE 1 FALSE 1505335905 11801
+## 2850 14 TRUE 1 FALSE 1505337388 11801
+## 2851 8 TRUE 1 FALSE 1505306152 11801
+## 2852 18 TRUE 1 FALSE 1505337567 11801
+## 2853 23 TRUE 1 FALSE 1505336935 11801
+## 2854 22 TRUE 1 FALSE 1505335571 11801
+## 2855 27 TRUE 1 FALSE 1505337703 11801
+## 2856 21 TRUE 1 FALSE 1505306526 11801
+## 2857 19 TRUE 1 FALSE 1505306493 11801
+## 2858 10 TRUE 1 FALSE 1505336104 11801
+## 2859 18 TRUE 1 FALSE 1505336238 11801
+## 2860 17 TRUE 1 FALSE 1505336225 11801
+## 2861 11 TRUE 1 FALSE 1506180082 11801
+## 2862 11 TRUE 1 FALSE 1505172631 11801
+## 2863 20 TRUE 2 FALSE 1505336289 11801
+## 2864 17 TRUE 1 FALSE 1506025282 11801
+## 2865 18 TRUE 1 FALSE 1506025300 11801
+## 2866 3 TRUE 1 FALSE 1505336366 11801
+## 2867 21 TRUE 1 FALSE 1505173332 11801
+## 2868 22 TRUE 1 FALSE 1505173367 11801
+## 2869 23 TRUE 1 FALSE 1505173375 11801
+## 2870 26 TRUE 1 FALSE 1506180478 11801
+## 2871 6 TRUE 1 FALSE 1505337317 11801
+## 2872 7 TRUE 1 FALSE 1505337325 11801
+## 2873 14 TRUE 1 FALSE 1505336571 11801
+## 2874 15 TRUE 1 FALSE 1505336583 11801
+## 2875 21 TRUE 1 FALSE 1506133597 11801
+## 2876 21 TRUE 1 FALSE 1505336799 11801
+## 2877 9 TRUE 1 FALSE 1505306157 11801
+## 2878 10 TRUE 1 FALSE 1505306169 11801
+## 2879 26 TRUE 1 FALSE 1505336974 11801
+## 2880 27 TRUE 1 FALSE 1505336998 11801
+## 2881 28 TRUE 1 FALSE 1505335669 11801
+## 2882 29 TRUE 1 FALSE 1505335679 11801
+## 2883 4 TRUE 1 FALSE 1505337298 11801
+## 2884 12 TRUE 1 FALSE 1505336140 11801
+## 2885 10 TRUE 1 FALSE 1506180068 11801
+## 2886 9 TRUE 1 FALSE 1505337344 11801
+## 2887 10 TRUE 1 FALSE 1505337355 11801
+## 2888 5 TRUE 1 FALSE 1505306128 11801
+## 2889 4 TRUE 1 FALSE 1505335979 11801
+## 2890 14 TRUE 1 FALSE 1505172981 11801
+## 2891 20 TRUE 1 FALSE 1505337594 11801
+## 2892 21 TRUE 1 FALSE 1505337629 11801
+## 2893 23 TRUE 1 FALSE 1505337652 11801
+## 2894 17 TRUE 1 FALSE 1505306457 11801
+## 2895 8 TRUE 1 FALSE 1506180049 11801
+## 2896 4 TRUE 1 FALSE 1506180010 11801
+## 2897 9 TRUE 1 FALSE 1506180054 11801
+## 2898 6 TRUE 1 FALSE 1506025006 11801
+## 2899 10 TRUE 1 FALSE 1506025063 11801
+## 2900 12 TRUE 1 FALSE 1505172637 11801
+## 2901 15 TRUE 1 FALSE 1506180242 11801
+## 2902 6 TRUE 1 FALSE 1505306138 11801
+## 2903 13 TRUE 1 FALSE 1506025126 11801
+## 2904 18 TRUE 1 FALSE 1505173282 11801
+## 2905 17 TRUE 1 FALSE 1505173268 11801
+## 2906 11 TRUE 1 FALSE 1506117575 11801
+## 2907 12 TRUE 1 FALSE 1506117593 11801
+## 2908 16 TRUE 1 FALSE 1506117695 11801
+## 2909 22 TRUE 1 FALSE 1506180438 11801
+## 2910 5 TRUE 1 FALSE 1506024983 11801
+## 2911 4 TRUE 1 FALSE 1506024969 11801
+## 2912 7 TRUE 1 FALSE 1506025029 11801
+## 2913 17 TRUE 1 FALSE 1505336612 11801
+## 2914 3 TRUE 1 FALSE 1505172367 11801
+## 2915 29 TRUE 1 FALSE 1505337038 11801
+## 2916 6 TRUE 1 FALSE 1505336012 11801
+## 2917 11 TRUE 1 FALSE 1505306207 11801
+## 2918 14 TRUE 1 FALSE 1505306305 11801
+## 2919 6 TRUE 1 FALSE 1506180033 11801
+## 2920 8 TRUE 1 FALSE 1505336064 11801
+## 2921 20 TRUE 1 FALSE 1506180416 11801
+## 2922 9 TRUE 1 FALSE 1506025047 11801
+## 2923 3 TRUE 2 FALSE 1506024960 11801
+## 2924 15 TRUE 1 FALSE 1505173232 11801
+## 2925 12 TRUE 1 FALSE 1506025100 11801
+## 2926 7 TRUE 1 FALSE 1506117520 11801
+## 2927 15 TRUE 1 FALSE 1505306372 11801
+## 2928 9 TRUE 1 FALSE 1505336097 11801
+## 2929 16 TRUE 1 FALSE 1505173242 11801
+## 2930 3 TRUE 2 FALSE 1506179983 11801
+## 2931 6 TRUE 1 FALSE 1506117457 11801
+## 2932 8 TRUE 1 FALSE 1506117534 11801
+## 2933 17 TRUE 1 FALSE 1506180283 11801
+## 2934 14 TRUE 1 FALSE 1506025149 11801
+## 2935 16 TRUE 1 FALSE 1506180263 11801
+## 2936 8 TRUE 1 FALSE 1505172601 11801
+## 2937 10 TRUE 1 FALSE 1506117564 11801
+## 2938 7 TRUE 1 FALSE 1505336031 11801
+## 2939 4 TRUE 1 FALSE 1506117435 11801
+## 2940 5 TRUE 1 FALSE 1506117446 11801
+## 2941 11 TRUE 1 FALSE 1505351615 75323
+## 2942 28 TRUE 1 FALSE 1505353246 75323
+## 2943 3 TRUE 1 FALSE 1505351276 75323
+## 2944 25 TRUE 1 FALSE 1505352999 75323
+## 2945 32 TRUE 1 FALSE 1505353299 75323
+## 2946 5 TRUE 1 FALSE 1505351291 75323
+## 2947 13 TRUE 1 FALSE 1505351931 75323
+## 2948 21 TRUE 1 FALSE 1505352944 75323
+## 2949 16 TRUE 1 FALSE 1505352898 75323
+## 2950 27 TRUE 1 FALSE 1505353220 75323
+## 2951 34 TRUE 1 FALSE 1505353380 75323
+## 2952 23 TRUE 1 FALSE 1505352959 75323
+## 2953 14 TRUE 1 FALSE 1505351945 75323
+## 2954 9 TRUE 1 FALSE 1505351495 75323
+## 2955 8 TRUE 2 FALSE 1505351364 75323
+## 2956 19 TRUE 1 FALSE 1505352922 75323
+## 2957 17 TRUE 1 FALSE 1505352907 75323
+## 2958 19 TRUE 1 FALSE 1499717174 27264
+## 2959 18 TRUE 1 FALSE 1499717162 27264
+## 2960 32 TRUE 2 FALSE 1499717772 27264
+## 2961 22 TRUE 1 FALSE 1499717426 27264
+## 2962 3 TRUE 1 FALSE 1499972100 27264
+## 2963 4 TRUE 1 FALSE 1499972111 27264
+## 2964 6 TRUE 1 FALSE 1499972192 27264
+## 2965 7 TRUE 1 FALSE 1499972248 27264
+## 2966 8 TRUE 1 FALSE 1499972334 27264
+## 2967 23 TRUE 1 FALSE 1499717448 27264
+## 2968 25 TRUE 1 FALSE 1499717503 27264
+## 2969 28 TRUE 1 FALSE 1499717569 27264
+## 2970 29 TRUE 1 FALSE 1499717575 27264
+## 2971 30 TRUE 1 FALSE 1499717635 27264
+## 2972 20 TRUE 1 FALSE 1499972952 27264
+## 2973 21 TRUE 1 FALSE 1499973007 27264
+## 2974 33 TRUE 1 FALSE 1499717894 27264
+## 2975 35 TRUE 1 FALSE 1499717971 27264
+## 2976 39 TRUE 1 FALSE 1499718035 27264
+## 2977 40 TRUE 1 FALSE 1499718040 27264
+## 2978 9 TRUE 1 FALSE 1499972580 27264
+## 2979 10 TRUE 1 FALSE 1499972591 27264
+## 2980 12 TRUE 1 FALSE 1499972689 27264
+## 2981 17 TRUE 1 FALSE 1499972855 27264
+## 2982 18 TRUE 1 FALSE 1499972894 27264
+## 2983 19 TRUE 1 FALSE 1499972928 27264
+## 2984 34 TRUE 1 FALSE 1499975281 27264
+## 2985 36 TRUE 1 FALSE 1499975358 27264
+## 2986 37 TRUE 1 FALSE 1499975367 27264
+## 2987 38 TRUE 1 FALSE 1499975403 27264
+## 2988 40 TRUE 1 FALSE 1499975514 27264
+## 2989 41 TRUE 1 FALSE 1499975517 27264
+## 2990 4 TRUE 1 FALSE 1500128995 27264
+## 2991 6 TRUE 1 FALSE 1500129038 27264
+## 2992 7 TRUE 1 FALSE 1500129051 27264
+## 2993 9 TRUE 1 FALSE 1500129078 27264
+## 2994 10 TRUE 1 FALSE 1500129100 27264
+## 2995 12 TRUE 1 FALSE 1500129114 27264
+## 2996 13 TRUE 1 FALSE 1500129123 27264
+## 2997 14 TRUE 1 FALSE 1500129169 27264
+## 2998 15 TRUE 1 FALSE 1500129290 27264
+## 2999 22 TRUE 1 FALSE 1499973011 27264
+## 3000 3 TRUE 1 FALSE 1499973169 27264
+## 3001 5 TRUE 1 FALSE 1499973203 27264
+## 3002 8 TRUE 2 FALSE 1499973595 27264
+## 3003 9 TRUE 1 FALSE 1499973678 27264
+## 3004 10 TRUE 1 FALSE 1499973705 27264
+## 3005 11 TRUE 1 FALSE 1499973708 27264
+## 3006 13 TRUE 2 FALSE 1499973957 27264
+## 3007 14 TRUE 1 FALSE 1499974030 27264
+## 3008 15 TRUE 1 FALSE 1499974053 27264
+## 3009 17 TRUE 1 FALSE 1499974112 27264
+## 3010 21 TRUE 1 FALSE 1499974474 27264
+## 3011 22 TRUE 1 FALSE 1499974710 27264
+## 3012 23 TRUE 1 FALSE 1499974780 27264
+## 3013 26 TRUE 1 FALSE 1499974854 27264
+## 3014 27 TRUE 1 FALSE 1499974945 27264
+## 3015 29 TRUE 1 FALSE 1499975006 27264
+## 3016 30 TRUE 1 FALSE 1499975017 27264
+## 3017 31 TRUE 1 FALSE 1499975156 27264
+## 3018 32 TRUE 1 FALSE 1499975203 27264
+## 3019 33 TRUE 1 FALSE 1499975246 27264
+## 3020 53 TRUE 1 FALSE 1500131026 27264
+## 3021 54 TRUE 1 FALSE 1500131030 27264
+## 3022 3 TRUE 1 FALSE 1500476968 27264
+## 3023 4 TRUE 1 FALSE 1500476979 27264
+## 3024 5 TRUE 1 FALSE 1500476995 27264
+## 3025 7 TRUE 1 FALSE 1500477044 27264
+## 3026 8 TRUE 1 FALSE 1500477117 27264
+## 3027 9 TRUE 1 FALSE 1500477134 27264
+## 3028 11 TRUE 1 FALSE 1500477181 27264
+## 3029 12 TRUE 1 FALSE 1500477186 27264
+## 3030 13 TRUE 1 FALSE 1500477196 27264
+## 3031 14 TRUE 1 FALSE 1500477283 27264
+## 3032 15 TRUE 1 FALSE 1500477385 27264
+## 3033 16 TRUE 1 FALSE 1500477400 27264
+## 3034 17 TRUE 1 FALSE 1500477405 27264
+## 3035 18 TRUE 1 FALSE 1500477428 27264
+## 3036 19 TRUE 1 FALSE 1500477470 27264
+## 3037 20 TRUE 1 FALSE 1500477491 27264
+## 3038 22 TRUE 1 FALSE 1500477553 27264
+## 3039 23 TRUE 1 FALSE 1500477576 27264
+## 3040 24 TRUE 1 FALSE 1500477597 27264
+## 3041 27 TRUE 1 FALSE 1500477666 27264
+## 3042 28 TRUE 1 FALSE 1500477854 27264
+## 3043 29 TRUE 1 FALSE 1500477859 27264
+## 3044 30 TRUE 1 FALSE 1500477962 27264
+## 3045 32 TRUE 1 FALSE 1500478001 27264
+## 3046 33 TRUE 1 FALSE 1500478026 27264
+## 3047 35 TRUE 1 FALSE 1500478108 27264
+## 3048 37 TRUE 1 FALSE 1500478133 27264
+## 3049 38 TRUE 1 FALSE 1500478135 27264
+## 3050 3 TRUE 1 FALSE 1500687956 27264
+## 3051 5 TRUE 2 FALSE 1500688097 27264
+## 3052 8 TRUE 1 FALSE 1500688406 27264
+## 3053 9 TRUE 1 FALSE 1500688459 27264
+## 3054 11 TRUE 1 FALSE 1500688504 27264
+## 3055 13 TRUE 1 FALSE 1500688816 27264
+## 3056 14 TRUE 1 FALSE 1500689032 27264
+## 3057 16 TRUE 3 FALSE 1500689728 27264
+## 3058 17 TRUE 1 FALSE 1500689798 27264
+## 3059 19 TRUE 1 FALSE 1500689859 27264
+## 3060 21 TRUE 1 FALSE 1500689959 27264
+## 3061 23 TRUE 1 FALSE 1500690029 27264
+## 3062 25 TRUE 1 FALSE 1500690068 27264
+## 3063 27 TRUE 1 FALSE 1500690409 27264
+## 3064 28 TRUE 1 FALSE 1500690564 27264
+## 3065 32 TRUE 1 FALSE 1500690755 27264
+## 3066 34 TRUE 2 FALSE 1500691825 27264
+## 3067 35 TRUE 2 FALSE 1500692069 27264
+## 3068 36 TRUE 1 FALSE 1500692193 27264
+## 3069 38 TRUE 1 FALSE 1500692275 27264
+## 3070 40 TRUE 1 FALSE 1500692671 27264
+## 3071 41 TRUE 1 FALSE 1500692745 27264
+## 3072 42 TRUE 4 FALSE 1500694004 27264
+## 3073 43 TRUE 1 FALSE 1500694208 27264
+## 3074 47 TRUE 3 FALSE 1500694841 27264
+## 3075 48 TRUE 1 FALSE 1500695054 27264
+## 3076 50 TRUE 1 FALSE 1500695062 27264
+## 3077 51 TRUE 1 FALSE 1500695069 27264
+## 3078 3 TRUE 2 FALSE 1500731293 27264
+## 3079 4 TRUE 1 FALSE 1500731315 27264
+## 3080 5 TRUE 1 FALSE 1500731332 27264
+## 3081 6 TRUE 1 FALSE 1500731351 27264
+## 3082 7 TRUE 1 FALSE 1500731380 27264
+## 3083 9 TRUE 1 FALSE 1500731409 27264
+## 3084 10 TRUE 1 FALSE 1500731428 27264
+## 3085 12 TRUE 1 FALSE 1500731474 27264
+## 3086 13 TRUE 1 FALSE 1500731489 27264
+## 3087 14 TRUE 1 FALSE 1500731587 27264
+## 3088 16 TRUE 1 FALSE 1500731709 27264
+## 3089 17 TRUE 1 FALSE 1500731829 27264
+## 3090 18 TRUE 1 FALSE 1500731862 27264
+## 3091 21 TRUE 1 FALSE 1500731929 27264
+## 3092 22 TRUE 1 FALSE 1500731967 27264
+## 3093 26 TRUE 1 FALSE 1500732030 27264
+## 3094 27 TRUE 1 FALSE 1500732036 27264
+## 3095 30 TRUE 1 FALSE 1500732124 27264
+## 3096 33 TRUE 1 FALSE 1500732222 27264
+## 3097 34 TRUE 2 FALSE 1500732498 27264
+## 3098 35 TRUE 1 FALSE 1500732632 27264
+## 3099 37 TRUE 1 FALSE 1500732647 27264
+## 3100 38 TRUE 1 FALSE 1500732650 27264
+## 3101 17 TRUE 1 FALSE 1500129334 27264
+## 3102 18 TRUE 1 FALSE 1500129354 27264
+## 3103 20 TRUE 1 FALSE 1500129395 27264
+## 3104 21 TRUE 1 FALSE 1500129464 27264
+## 3105 23 TRUE 1 FALSE 1500129490 27264
+## 3106 27 TRUE 1 FALSE 1500129597 27264
+## 3107 28 TRUE 1 FALSE 1500129616 27264
+## 3108 30 TRUE 1 FALSE 1500129725 27264
+## 3109 32 TRUE 1 FALSE 1500129804 27264
+## 3110 33 TRUE 1 FALSE 1500129878 27264
+## 3111 35 TRUE 1 FALSE 1500129924 27264
+## 3112 36 TRUE 1 FALSE 1500129972 27264
+## 3113 37 TRUE 1 FALSE 1500130016 27264
+## 3114 38 TRUE 1 FALSE 1500130040 27264
+## 3115 39 TRUE 1 FALSE 1500130142 27264
+## 3116 41 TRUE 1 FALSE 1500130260 27264
+## 3117 42 TRUE 1 FALSE 1500130309 27264
+## 3118 43 TRUE 1 FALSE 1500130314 27264
+## 3119 44 TRUE 1 FALSE 1500130405 27264
+## 3120 46 TRUE 1 FALSE 1500130833 27264
+## 3121 47 TRUE 1 FALSE 1500130880 27264
+## 3122 49 TRUE 1 FALSE 1500130938 27264
+## 3123 50 TRUE 1 FALSE 1500130952 27264
+## 3124 51 TRUE 1 FALSE 1500131012 27264
+## 3125 5 TRUE 2 FALSE 1499716767 27264
+## 3126 6 TRUE 1 FALSE 1499716848 27264
+## 3127 7 TRUE 2 FALSE 1499716944 27264
+## 3128 8 TRUE 1 FALSE 1499716958 27264
+## 3129 11 TRUE 1 FALSE 1499716989 27264
+## 3130 17 TRUE 1 FALSE 1499717154 27264
+## 3131 5 TRUE 1 FALSE 1500996298 27264
+## 3132 7 TRUE 2 FALSE 1500996449 27264
+## 3133 9 TRUE 1 FALSE 1500997090 27264
+## 3134 11 TRUE 1 FALSE 1500997234 27264
+## 3135 16 TRUE 1 FALSE 1500998294 27264
+## 3136 17 TRUE 1 FALSE 1500998391 27264
+## 3137 19 TRUE 2 FALSE 1500998924 27264
+## 3138 20 TRUE 1 FALSE 1500999208 27264
+## 3139 21 TRUE 1 FALSE 1500999223 27264
+## 3140 25 TRUE 1 FALSE 1500999734 27264
+## 3141 26 TRUE 1 FALSE 1500999780 27264
+## 3142 27 TRUE 1 FALSE 1500999825 27264
+## 3143 28 TRUE 1 FALSE 1500999954 27264
+## 3144 31 TRUE 1 FALSE 1501000263 27264
+## 3145 32 TRUE 1 FALSE 1501000273 27264
+## 3146 33 TRUE 1 FALSE 1501000278 27264
+## 3147 34 TRUE 1 FALSE 1501000285 27264
+## 3148 35 TRUE 1 FALSE 1501000297 27264
+## 3149 36 TRUE 1 FALSE 1501000371 27264
+## 3150 38 TRUE 1 FALSE 1501000392 27264
+## 3151 39 TRUE 1 FALSE 1501000395 27264
+## 3152 4 TRUE 1 FALSE 1501379160 27264
+## 3153 5 TRUE 1 FALSE 1501379178 27264
+## 3154 6 TRUE 1 FALSE 1501379189 27264
+## 3155 7 TRUE 1 FALSE 1501379227 27264
+## 3156 8 TRUE 1 FALSE 1501379247 27264
+## 3157 10 TRUE 3 FALSE 1501379391 27264
+## 3158 11 TRUE 1 FALSE 1501379410 27264
+## 3159 12 TRUE 1 FALSE 1501379443 27264
+## 3160 16 TRUE 1 FALSE 1501379606 27264
+## 3161 18 TRUE 1 FALSE 1501379647 27264
+## 3162 21 TRUE 1 FALSE 1501379724 27264
+## 3163 22 TRUE 1 FALSE 1501379750 27264
+## 3164 23 TRUE 1 FALSE 1501379780 27264
+## 3165 24 TRUE 1 FALSE 1501379796 27264
+## 3166 25 TRUE 1 FALSE 1501379817 27264
+## 3167 26 TRUE 1 FALSE 1501379856 27264
+## 3168 27 TRUE 1 FALSE 1501379928 27264
+## 3169 28 TRUE 1 FALSE 1501379958 27264
+## 3170 30 TRUE 1 FALSE 1501380037 27264
+## 3171 33 TRUE 1 FALSE 1501380125 27264
+## 3172 34 TRUE 1 FALSE 1501380153 27264
+## 3173 35 TRUE 1 FALSE 1501380212 27264
+## 3174 36 TRUE 1 FALSE 1501380280 27264
+## 3175 37 TRUE 2 FALSE 1501380424 27264
+## 3176 39 TRUE 1 FALSE 1501380520 27264
+## 3177 40 TRUE 1 FALSE 1501380543 27264
+## 3178 41 TRUE 1 FALSE 1501380667 27264
+## 3179 44 TRUE 1 FALSE 1501380759 27264
+## 3180 45 TRUE 1 FALSE 1501380819 27264
+## 3181 46 TRUE 1 FALSE 1501380858 27264
+## 3182 47 TRUE 1 FALSE 1501380905 27264
+## 3183 48 TRUE 1 FALSE 1501380950 27264
+## 3184 49 TRUE 1 FALSE 1501381011 27264
+## 3185 50 TRUE 1 FALSE 1501381017 27264
+## 3186 53 TRUE 1 FALSE 1501381258 27264
+## 3187 55 TRUE 1 FALSE 1501381398 27264
+## 3188 56 TRUE 1 FALSE 1501381500 27264
+## 3189 57 TRUE 1 FALSE 1501381573 27264
+## 3190 61 TRUE 1 FALSE 1501381652 27264
+## 3191 62 TRUE 1 FALSE 1501381657 27264
+## 3192 54 TRUE 1 FALSE 1504671231 27264
+## 3193 56 TRUE 1 FALSE 1504671286 27264
+## 3194 58 TRUE 1 FALSE 1504671411 27264
+## 3195 60 TRUE 3 FALSE 1504671477 27264
+## 3196 62 TRUE 1 FALSE 1504671506 27264
+## 3197 64 TRUE 1 FALSE 1504671568 27264
+## 3198 67 TRUE 1 FALSE 1504671587 27264
+## 3199 68 TRUE 1 FALSE 1504671590 27264
+## 3200 34 TRUE 2 FALSE 1504204701 27264
+## 3201 35 TRUE 1 FALSE 1504204710 27264
+## 3202 39 TRUE 1 FALSE 1504204995 27264
+## 3203 42 TRUE 1 FALSE 1504205194 27264
+## 3204 43 TRUE 1 FALSE 1504205289 27264
+## 3205 45 TRUE 1 FALSE 1504205316 27264
+## 3206 48 TRUE 1 FALSE 1504205407 27264
+## 3207 49 TRUE 3 FALSE 1504205605 27264
+## 3208 50 TRUE 1 FALSE 1504205672 27264
+## 3209 51 TRUE 1 FALSE 1504205735 27264
+## 3210 53 TRUE 1 FALSE 1504205767 27264
+## 3211 54 TRUE 1 FALSE 1504205772 27264
+## 3212 3 TRUE 2 FALSE 1504655935 27264
+## 3213 4 TRUE 1 FALSE 1504656031 27264
+## 3214 6 TRUE 1 FALSE 1504656063 27264
+## 3215 5 TRUE 1 FALSE 1504202427 27264
+## 3216 6 TRUE 1 FALSE 1504202466 27264
+## 3217 7 TRUE 1 FALSE 1504202479 27264
+## 3218 8 TRUE 1 FALSE 1504202525 27264
+## 3219 9 TRUE 1 FALSE 1504202583 27264
+## 3220 10 TRUE 1 FALSE 1504202866 27264
+## 3221 11 TRUE 1 FALSE 1504203036 27264
+## 3222 14 TRUE 1 FALSE 1504203271 27264
+## 3223 16 TRUE 1 FALSE 1504203642 27264
+## 3224 17 TRUE 1 FALSE 1504203657 27264
+## 3225 21 TRUE 1 FALSE 1504203861 27264
+## 3226 22 TRUE 1 FALSE 1504204016 27264
+## 3227 23 TRUE 1 FALSE 1504204038 27264
+## 3228 25 TRUE 1 FALSE 1504204102 27264
+## 3229 26 TRUE 2 FALSE 1504204283 27264
+## 3230 27 TRUE 1 FALSE 1504204310 27264
+## 3231 31 TRUE 1 FALSE 1504204534 27264
+## 3232 32 TRUE 1 FALSE 1504204571 27264
+## 3233 33 TRUE 1 FALSE 1504204584 27264
+## 3234 18 TRUE 1 FALSE 1504657836 27264
+## 3235 19 TRUE 1 FALSE 1504657907 27264
+## 3236 20 TRUE 2 FALSE 1504667739 27264
+## 3237 22 TRUE 1 FALSE 1504667788 27264
+## 3238 23 TRUE 2 FALSE 1504667886 27264
+## 3239 24 TRUE 1 FALSE 1504668069 27264
+## 3240 25 TRUE 1 FALSE 1504668171 27264
+## 3241 26 TRUE 1 FALSE 1504668224 27264
+## 3242 27 TRUE 1 FALSE 1504668276 27264
+## 3243 28 TRUE 1 FALSE 1504668293 27264
+## 3244 30 TRUE 1 FALSE 1504668381 27264
+## 3245 31 TRUE 1 FALSE 1504668407 27264
+## 3246 32 TRUE 1 FALSE 1504668468 27264
+## 3247 33 TRUE 1 FALSE 1504668477 27264
+## 3248 36 TRUE 1 FALSE 1504668519 27264
+## 3249 40 TRUE 1 FALSE 1504669284 27264
+## 3250 8 TRUE 1 FALSE 1504656091 27264
+## 3251 9 TRUE 1 FALSE 1504656101 27264
+## 3252 10 TRUE 1 FALSE 1504656116 27264
+## 3253 11 TRUE 1 FALSE 1504656134 27264
+## 3254 13 TRUE 1 FALSE 1504656217 27264
+## 3255 15 TRUE 1 FALSE 1504656301 27264
+## 3256 16 TRUE 1 FALSE 1504656312 27264
+## 3257 17 TRUE 1 FALSE 1504656351 27264
+## 3258 20 TRUE 2 FALSE 1504656553 27264
+## 3259 22 TRUE 1 FALSE 1504656625 27264
+## 3260 26 TRUE 1 FALSE 1504656666 27264
+## 3261 27 TRUE 1 FALSE 1504656670 27264
+## 3262 6 TRUE 1 FALSE 1504657001 27264
+## 3263 11 TRUE 1 FALSE 1504657135 27264
+## 3264 12 TRUE 1 FALSE 1504657234 27264
+## 3265 13 TRUE 1 FALSE 1504657368 27264
+## 3266 14 TRUE 1 FALSE 1504657393 27264
+## 3267 15 TRUE 1 FALSE 1504657447 27264
+## 3268 16 TRUE 1 FALSE 1504657629 27264
+## 3269 12 TRUE 1 FALSE 1505189928 27264
+## 3270 13 TRUE 1 FALSE 1505190286 27264
+## 3271 14 TRUE 1 FALSE 1505190367 27264
+## 3272 16 TRUE 1 FALSE 1505190510 27264
+## 3273 17 TRUE 1 FALSE 1505190519 27264
+## 3274 18 TRUE 1 FALSE 1505190562 27264
+## 3275 19 TRUE 1 FALSE 1505190714 27264
+## 3276 21 TRUE 1 FALSE 1505190811 27264
+## 3277 23 TRUE 1 FALSE 1505191100 27264
+## 3278 24 TRUE 1 FALSE 1505191186 27264
+## 3279 25 TRUE 1 FALSE 1505191247 27264
+## 3280 28 TRUE 1 FALSE 1505191383 27264
+## 3281 29 TRUE 1 FALSE 1505191449 27264
+## 3282 30 TRUE 1 FALSE 1505191495 27264
+## 3283 31 TRUE 1 FALSE 1505191530 27264
+## 3284 33 TRUE 1 FALSE 1505191630 27264
+## 3285 34 TRUE 2 FALSE 1505191836 27264
+## 3286 35 TRUE 1 FALSE 1505191902 27264
+## 3287 43 TRUE 2 FALSE 1504669498 27264
+## 3288 44 TRUE 1 FALSE 1504669528 27264
+## 3289 45 TRUE 2 FALSE 1504669765 27264
+## 3290 46 TRUE 1 FALSE 1504670157 27264
+## 3291 47 TRUE 1 FALSE 1504670312 27264
+## 3292 48 TRUE 1 FALSE 1504670366 27264
+## 3293 49 TRUE 1 FALSE 1504670600 27264
+## 3294 50 TRUE 1 FALSE 1504670789 27264
+## 3295 51 TRUE 1 FALSE 1504671104 27264
+## 3296 52 TRUE 1 FALSE 1504671170 27264
+## 3297 55 TRUE 1 FALSE 1505193537 27264
+## 3298 5 TRUE 1 FALSE 1505188765 27264
+## 3299 8 TRUE 2 FALSE 1505188931 27264
+## 3300 9 TRUE 1 FALSE 1505189040 27264
+## 3301 10 TRUE 3 FALSE 1505189736 27264
+## 3302 11 TRUE 2 FALSE 1505189897 27264
+## 3303 48 TRUE 1 FALSE 1505193043 27264
+## 3304 50 TRUE 1 FALSE 1505193213 27264
+## 3305 51 TRUE 1 FALSE 1505193226 27264
+## 3306 53 TRUE 1 FALSE 1505193419 27264
+## 3307 41 TRUE 1 FALSE 1505192603 27264
+## 3308 56 TRUE 1 FALSE 1505193591 27264
+## 3309 40 TRUE 2 FALSE 1505192527 27264
+## 3310 47 TRUE 1 FALSE 1505192927 27264
+## 3311 42 TRUE 1 FALSE 1505192627 27264
+## 3312 43 TRUE 1 FALSE 1505192649 27264
+## 3313 45 TRUE 1 FALSE 1505192694 27264
+## 3314 59 TRUE 1 FALSE 1505193703 27264
+## 3315 60 TRUE 1 FALSE 1505193726 27264
+## 3316 65 TRUE 1 FALSE 1505193796 27264
+## 3317 57 TRUE 1 FALSE 1505193664 27264
+## 3318 66 TRUE 1 FALSE 1505193799 27264
+## 3319 15 TRUE 1 FALSE 1505070029 94880
+## 3320 12 TRUE 1 FALSE 1505069987 94880
+## 3321 37 TRUE 1 FALSE 1505078720 94880
+## 3322 38 TRUE 1 FALSE 1505081631 94880
+## 3323 27 TRUE 5 FALSE 1505079604 94880
+## 3324 14 TRUE 1 FALSE 1505070016 94880
+## 3325 40 TRUE 1 TRUE 1505082035 94880
+## 3326 38 TRUE 1 FALSE 1505078732 94880
+## 3327 11 TRUE 1 FALSE 1505069985 94880
+## 3328 36 TRUE 1 FALSE 1505081610 94880
+## 3329 10 TRUE 1 FALSE 1505069958 94880
+## 3330 16 TRUE 1 FALSE 1505070038 94880
+## 3331 39 TRUE 1 FALSE 1505078743 94880
+## 3332 15 TRUE 1 FALSE 1505077243 94880
+## 3333 8 TRUE 1 FALSE 1505069954 94880
+## 3334 38 TRUE 1 FALSE 1505079704 94880
+## 3335 13 TRUE 1 FALSE 1505077218 94880
+## 3336 22 TRUE 2 FALSE 1505072942 94880
+## 3337 14 TRUE 2 FALSE 1505070661 94880
+## 3338 14 TRUE 1 FALSE 1505077225 94880
+## 3339 8 TRUE 1 FALSE 1505079013 94880
+## 3340 17 TRUE 2 FALSE 1505072811 94880
+## 3341 11 TRUE 1 FALSE 1505077202 94880
+## 3342 35 TRUE 2 FALSE 1505081596 94880
+## 3343 15 TRUE 2 FALSE 1505070741 94880
+## 3344 11 TRUE 1 FALSE 1505070620 94880
+## 3345 7 TRUE 1 FALSE 1505076206 94880
+## 3346 13 TRUE 4 TRUE 1505080714 94880
+## 3347 10 TRUE 1 FALSE 1505077200 94880
+## 3348 29 TRUE 1 FALSE 1505079647 94880
+## 3349 30 TRUE 1 FALSE 1505079657 94880
+## 3350 8 TRUE 1 FALSE 1505076210 94880
+## 3351 28 TRUE 1 FALSE 1505079644 94880
+## 3352 37 TRUE 1 FALSE 1505079702 94880
+## 3353 3 TRUE 1 FALSE 1505069929 94880
+## 3354 8 TRUE 2 FALSE 1505077179 94880
+## 3355 9 TRUE 1 FALSE 1505077187 94880
+## 3356 10 TRUE 1 FALSE 1505070604 94880
+## 3357 51 TRUE 1 FALSE 1505078902 94880
+## 3358 53 TRUE 1 FALSE 1505078907 94880
+## 3359 54 TRUE 1 FALSE 1505078908 94880
+## 3360 19 TRUE 1 FALSE 1505072841 94880
+## 3361 21 TRUE 1 FALSE 1505072870 94880
+## 3362 7 TRUE 1 FALSE 1505078992 94880
+## 3363 23 TRUE 1 FALSE 1505077831 94880
+## 3364 26 TRUE 1 FALSE 1505077893 94880
+## 3365 27 TRUE 1 FALSE 1505077912 94880
+## 3366 3 TRUE 1 FALSE 1505079740 94880
+## 3367 6 TRUE 1 FALSE 1505076194 94880
+## 3368 33 TRUE 1 FALSE 1505078684 94880
+## 3369 35 TRUE 1 FALSE 1505078695 94880
+## 3370 36 TRUE 1 FALSE 1505078710 94880
+## 3371 41 TRUE 1 FALSE 1505082060 94880
+## 3372 32 TRUE 1 FALSE 1505079666 94880
+## 3373 33 TRUE 1 FALSE 1505079680 94880
+## 3374 35 TRUE 1 FALSE 1505079696 94880
+## 3375 40 TRUE 1 FALSE 1505070381 94880
+## 3376 14 TRUE 1 FALSE 1505080738 94880
+## 3377 5 TRUE 1 FALSE 1505079760 94880
+## 3378 35 TRUE 1 FALSE 1505076783 94880
+## 3379 39 TRUE 1 FALSE 1505076809 94880
+## 3380 40 TRUE 1 FALSE 1505076811 94880
+## 3381 17 TRUE 1 FALSE 1505077255 94880
+## 3382 21 TRUE 2 FALSE 1505077581 94880
+## 3383 22 TRUE 1 FALSE 1505077801 94880
+## 3384 5 TRUE 1 FALSE 1505070533 94880
+## 3385 6 TRUE 1 FALSE 1505070541 94880
+## 3386 8 TRUE 1 FALSE 1505070577 94880
+## 3387 9 TRUE 1 FALSE 1505070588 94880
+## 3388 32 TRUE 1 FALSE 1505078631 94880
+## 3389 24 TRUE 1 FALSE 1505079333 94880
+## 3390 50 TRUE 1 FALSE 1505078892 94880
+## 3391 27 TRUE 1 FALSE 1505073097 94880
+## 3392 8 TRUE 5 TRUE 1505080342 94880
+## 3393 3 TRUE 1 FALSE 1505078937 94880
+## 3394 4 TRUE 1 FALSE 1505078946 94880
+## 3395 5 TRUE 1 FALSE 1505078959 94880
+## 3396 41 TRUE 2 FALSE 1505078814 94880
+## 3397 42 TRUE 1 FALSE 1505078823 94880
+## 3398 43 TRUE 1 FALSE 1505078829 94880
+## 3399 44 TRUE 1 FALSE 1505078838 94880
+## 3400 46 TRUE 1 FALSE 1505078855 94880
+## 3401 47 TRUE 1 FALSE 1505078866 94880
+## 3402 49 TRUE 1 FALSE 1505078881 94880
+## 3403 17 TRUE 1 FALSE 1505081027 94880
+## 3404 19 TRUE 1 FALSE 1505081038 94880
+## 3405 11 TRUE 1 FALSE 1505076227 94880
+## 3406 17 TRUE 1 FALSE 1505076462 94880
+## 3407 18 TRUE 1 FALSE 1505076469 94880
+## 3408 34 TRUE 2 FALSE 1505073511 94880
+## 3409 35 TRUE 1 FALSE 1505073548 94880
+## 3410 40 TRUE 1 FALSE 1505073582 94880
+## 3411 41 TRUE 1 FALSE 1505073584 94880
+## 3412 9 TRUE 1 FALSE 1505078245 94880
+## 3413 23 TRUE 1 FALSE 1505079318 94880
+## 3414 33 TRUE 1 FALSE 1505076764 94880
+## 3415 29 TRUE 1 FALSE 1505073157 94880
+## 3416 31 TRUE 1 FALSE 1505073239 94880
+## 3417 32 TRUE 1 FALSE 1505073398 94880
+## 3418 33 TRUE 1 FALSE 1505073416 94880
+## 3419 20 TRUE 1 FALSE 1505078462 94880
+## 3420 32 TRUE 1 FALSE 1505081325 94880
+## 3421 34 TRUE 2 TRUE 1505081484 94880
+## 3422 28 TRUE 1 FALSE 1505078538 94880
+## 3423 30 TRUE 1 FALSE 1505078548 94880
+## 3424 5 TRUE 1 FALSE 1505076163 94880
+## 3425 32 TRUE 1 FALSE 1505076688 94880
+## 3426 16 TRUE 2 TRUE 1505081016 94880
+## 3427 26 TRUE 1 FALSE 1505070233 94880
+## 3428 27 TRUE 1 FALSE 1505070241 94880
+## 3429 31 TRUE 1 FALSE 1505070293 94880
+## 3430 33 TRUE 1 FALSE 1505070306 94880
+## 3431 19 TRUE 1 FALSE 1505076483 94880
+## 3432 22 TRUE 1 FALSE 1505076549 94880
+## 3433 23 TRUE 1 FALSE 1505076558 94880
+## 3434 25 TRUE 1 FALSE 1505076587 94880
+## 3435 28 TRUE 1 FALSE 1505076639 94880
+## 3436 29 TRUE 1 FALSE 1505076646 94880
+## 3437 30 TRUE 1 FALSE 1505076666 94880
+## 3438 23 TRUE 1 FALSE 1505070163 94880
+## 3439 17 TRUE 1 FALSE 1505077033 94880
+## 3440 18 TRUE 1 FALSE 1505077044 94880
+## 3441 21 TRUE 1 FALSE 1505081049 94880
+## 3442 17 TRUE 1 FALSE 1505078421 94880
+## 3443 9 TRUE 1 FALSE 1505080389 94880
+## 3444 11 TRUE 1 FALSE 1505080406 94880
+## 3445 8 TRUE 1 FALSE 1505076912 94880
+## 3446 9 TRUE 2 FALSE 1505076962 94880
+## 3447 10 TRUE 1 FALSE 1505076969 94880
+## 3448 22 TRUE 1 FALSE 1505079305 94880
+## 3449 6 TRUE 1 FALSE 1505078217 94880
+## 3450 25 TRUE 1 FALSE 1505070219 94880
+## 3451 25 TRUE 1 FALSE 1505073005 94880
+## 3452 31 TRUE 1 FALSE 1505077986 94880
+## 3453 32 TRUE 1 FALSE 1505078007 94880
+## 3454 18 TRUE 1 FALSE 1505078436 94880
+## 3455 27 TRUE 1 TRUE 1505081192 94880
+## 3456 21 TRUE 1 FALSE 1505078470 94880
+## 3457 23 TRUE 1 FALSE 1505078483 94880
+## 3458 27 TRUE 1 FALSE 1505078527 94880
+## 3459 20 TRUE 1 FALSE 1505079292 94880
+## 3460 22 TRUE 1 FALSE 1505070154 94880
+## 3461 51 TRUE 1 FALSE 1505082347 94880
+## 3462 7 TRUE 1 FALSE 1505078224 94880
+## 3463 12 TRUE 1 FALSE 1505079045 94880
+## 3464 10 TRUE 1 FALSE 1505078256 94880
+## 3465 12 TRUE 1 FALSE 1505078267 94880
+## 3466 33 TRUE 1 FALSE 1505078039 94880
+## 3467 42 TRUE 1 TRUE 1505082186 94880
+## 3468 43 TRUE 1 FALSE 1505082232 94880
+## 3469 17 TRUE 2 FALSE 1505070073 94880
+## 3470 18 TRUE 1 FALSE 1505070088 94880
+## 3471 21 TRUE 1 FALSE 1505070140 94880
+## 3472 4 TRUE 1 FALSE 1505078206 94880
+## 3473 13 TRUE 1 FALSE 1505079053 94880
+## 3474 23 TRUE 1 FALSE 1505072977 94880
+## 3475 30 TRUE 1 FALSE 1505077958 94880
+## 3476 39 TRUE 1 FALSE 1505070376 94880
+## 3477 23 TRUE 1 FALSE 1505081065 94880
+## 3478 36 TRUE 1 FALSE 1505070341 94880
+## 3479 38 TRUE 1 FALSE 1505070367 94880
+## 3480 50 TRUE 1 FALSE 1505082339 94880
+## 3481 40 TRUE 1 FALSE 1505078132 94880
+## 3482 41 TRUE 1 FALSE 1505078136 94880
+## 3483 7 TRUE 1 FALSE 1505076897 94880
+## 3484 29 TRUE 1 FALSE 1505077948 94880
+## 3485 28 TRUE 1 TRUE 1505081303 94880
+## 3486 9 TRUE 1 FALSE 1505079020 94880
+## 3487 11 TRUE 1 FALSE 1505079043 94880
+## 3488 15 TRUE 1 FALSE 1505078409 94880
+## 3489 18 TRUE 1 FALSE 1505079272 94880
+## 3490 14 TRUE 1 FALSE 1505079070 94880
+## 3491 25 TRUE 1 FALSE 1505081080 94880
+## 3492 19 TRUE 1 FALSE 1505079282 94880
+## 3493 34 TRUE 1 FALSE 1505078055 94880
+## 3494 3 TRUE 1 FALSE 1505077139 94880
+## 3495 5 TRUE 1 FALSE 1505077153 94880
+## 3496 13 TRUE 1 FALSE 1505078275 94880
+## 3497 48 TRUE 1 FALSE 1505082332 94880
+## 3498 12 TRUE 1 FALSE 1505076989 94880
+## 3499 47 TRUE 1 TRUE 1505082292 94880
+## 3500 4 TRUE 1 FALSE 1505076870 94880
+## 3501 14 TRUE 1 FALSE 1505078303 94880
+## 3502 3 TRUE 1 FALSE 1505076860 94880
+## 3503 21 TRUE 1 FALSE 1505077107 94880
+## 3504 36 TRUE 1 FALSE 1505078088 94880
+## 3505 6 TRUE 1 FALSE 1505076885 94880
+## 3506 16 TRUE 2 FALSE 1505079257 94880
+## 3507 17 TRUE 1 FALSE 1505079263 94880
+## 3508 22 TRUE 1 FALSE 1505077110 94880
+## 3509 19 TRUE 1 FALSE 1505077072 94880
+## 3510 38 TRUE 1 FALSE 1505078106 94880
+## 3511 20 TRUE 2 FALSE 1505077102 94880
+## 3512 37 TRUE 1 FALSE 1505078097 94880
+## 3513 15 TRUE 1 FALSE 1505079242 94880
+## 3514 32 TRUE 1 FALSE 1505429062 46250
+## 3515 29 TRUE 1 FALSE 1505428531 46250
+## 3516 23 TRUE 1 FALSE 1505443634 46250
+## 3517 10 TRUE 1 FALSE 1505433466 46250
+## 3518 20 TRUE 1 FALSE 1505443584 46250
+## 3519 22 TRUE 1 FALSE 1505438543 46250
+## 3520 31 TRUE 1 FALSE 1505428637 46250
+## 3521 9 TRUE 1 FALSE 1505433459 46250
+## 3522 27 TRUE 2 FALSE 1505428464 46250
+## 3523 21 TRUE 1 FALSE 1505443611 46250
+## 3524 14 TRUE 1 FALSE 1505445126 46250
+## 3525 17 TRUE 1 FALSE 1505443522 46250
+## 3526 12 TRUE 1 FALSE 1505434127 46250
+## 3527 18 TRUE 1 FALSE 1505443540 46250
+## 3528 32 TRUE 1 TRUE 1505786752 46250
+## 3529 39 TRUE 1 FALSE 1505433073 46250
+## 3530 5 TRUE 1 FALSE 1505434799 46250
+## 3531 25 TRUE 1 FALSE 1505153044 46250
+## 3532 8 TRUE 1 FALSE 1505438255 46250
+## 3533 9 TRUE 1 FALSE 1505438266 46250
+## 3534 23 TRUE 2 FALSE 1505406032 46250
+## 3535 25 TRUE 1 FALSE 1505406198 46250
+## 3536 15 TRUE 3 FALSE 1505443478 46250
+## 3537 6 TRUE 1 FALSE 1505153843 46250
+## 3538 15 TRUE 1 FALSE 1505438346 46250
+## 3539 33 TRUE 1 FALSE 1505429073 46250
+## 3540 21 TRUE 1 FALSE 1505438519 46250
+## 3541 38 TRUE 1 FALSE 1505153307 46250
+## 3542 39 TRUE 1 FALSE 1505153314 46250
+## 3543 34 TRUE 2 FALSE 1505429450 46250
+## 3544 3 TRUE 1 FALSE 1505434734 46250
+## 3545 9 TRUE 1 FALSE 1505443363 46250
+## 3546 10 TRUE 1 FALSE 1505438285 46250
+## 3547 11 TRUE 1 FALSE 1505438287 46250
+## 3548 31 TRUE 2 FALSE 1505153195 46250
+## 3549 14 TRUE 1 FALSE 1505438335 46250
+## 3550 17 TRUE 1 FALSE 1505438386 46250
+## 3551 13 TRUE 1 FALSE 1505445065 46250
+## 3552 7 TRUE 2 FALSE 1505431589 46250
+## 3553 8 TRUE 1 FALSE 1505431594 46250
+## 3554 40 TRUE 1 FALSE 1505153317 46250
+## 3555 27 TRUE 1 FALSE 1505443692 46250
+## 3556 35 TRUE 1 FALSE 1505429574 46250
+## 3557 40 TRUE 1 FALSE 1505429650 46250
+## 3558 26 TRUE 2 FALSE 1505153106 46250
+## 3559 27 TRUE 1 FALSE 1505153112 46250
+## 3560 3 TRUE 1 FALSE 1505785852 46250
+## 3561 5 TRUE 1 FALSE 1505785912 46250
+## 3562 13 TRUE 1 FALSE 1505438327 46250
+## 3563 12 TRUE 1 FALSE 1505445054 46250
+## 3564 36 TRUE 1 FALSE 1505153263 46250
+## 3565 41 TRUE 1 FALSE 1505439974 46250
+## 3566 11 TRUE 1 FALSE 1505786079 46250
+## 3567 13 TRUE 1 FALSE 1505786139 46250
+## 3568 40 TRUE 1 FALSE 1505433079 46250
+## 3569 16 TRUE 2 FALSE 1505786317 46250
+## 3570 19 TRUE 1 FALSE 1505402599 46250
+## 3571 21 TRUE 1 FALSE 1505402659 46250
+## 3572 33 TRUE 1 FALSE 1505153223 46250
+## 3573 28 TRUE 1 FALSE 1505786722 46250
+## 3574 11 TRUE 1 FALSE 1505445051 46250
+## 3575 9 TRUE 1 FALSE 1505445031 46250
+## 3576 11 TRUE 1 FALSE 1505431630 46250
+## 3577 28 TRUE 1 FALSE 1505443705 46250
+## 3578 30 TRUE 1 FALSE 1505443742 46250
+## 3579 41 TRUE 1 FALSE 1505429656 46250
+## 3580 22 TRUE 3 FALSE 1505402946 46250
+## 3581 8 TRUE 1 FALSE 1505153890 46250
+## 3582 40 TRUE 1 FALSE 1505439971 46250
+## 3583 6 TRUE 2 FALSE 1505431573 46250
+## 3584 35 TRUE 1 FALSE 1505432941 46250
+## 3585 42 TRUE 1 FALSE 1505444119 46250
+## 3586 17 TRUE 1 FALSE 1505432036 46250
+## 3587 18 TRUE 1 FALSE 1505432041 46250
+## 3588 43 TRUE 1 FALSE 1505444124 46250
+## 3589 19 TRUE 1 FALSE 1505432092 46250
+## 3590 23 TRUE 1 FALSE 1505432333 46250
+## 3591 25 TRUE 1 FALSE 1505432391 46250
+## 3592 8 TRUE 3 FALSE 1505786022 46250
+## 3593 9 TRUE 1 FALSE 1505786052 46250
+## 3594 33 TRUE 1 FALSE 1505432892 46250
+## 3595 8 TRUE 2 FALSE 1505445018 46250
+## 3596 18 TRUE 1 FALSE 1505152849 46250
+## 3597 21 TRUE 1 FALSE 1505152974 46250
+## 3598 22 TRUE 1 FALSE 1505152995 46250
+## 3599 23 TRUE 1 FALSE 1505153008 46250
+## 3600 10 TRUE 1 FALSE 1505443371 46250
+## 3601 12 TRUE 1 FALSE 1505443389 46250
+## 3602 13 TRUE 1 FALSE 1505443397 46250
+## 3603 28 TRUE 1 FALSE 1505432509 46250
+## 3604 27 TRUE 1 TRUE 1505786532 46250
+## 3605 7 TRUE 1 FALSE 1505433385 46250
+## 3606 8 TRUE 1 FALSE 1505433422 46250
+## 3607 39 TRUE 1 FALSE 1505444022 46250
+## 3608 41 TRUE 4 FALSE 1505444100 46250
+## 3609 34 TRUE 1 FALSE 1505786808 46250
+## 3610 23 TRUE 1 FALSE 1505438559 46250
+## 3611 17 TRUE 1 FALSE 1505434218 46250
+## 3612 32 TRUE 2 FALSE 1505443884 46250
+## 3613 33 TRUE 1 FALSE 1505443930 46250
+## 3614 14 TRUE 1 FALSE 1505443408 46250
+## 3615 37 TRUE 1 FALSE 1505443981 46250
+## 3616 38 TRUE 1 FALSE 1505443996 46250
+## 3617 9 TRUE 1 FALSE 1505153898 46250
+## 3618 10 TRUE 1 FALSE 1505153915 46250
+## 3619 18 TRUE 1 FALSE 1505432041 46250
+## 3620 34 TRUE 1 FALSE 1505438938 46250
+## 3621 36 TRUE 2 FALSE 1505438977 46250
+## 3622 5 TRUE 1 FALSE 1505153790 46250
+## 3623 37 TRUE 2 FALSE 1505439921 46250
+## 3624 38 TRUE 1 FALSE 1505439950 46250
+## 3625 28 TRUE 1 FALSE 1505432509 46250
+## 3626 4 TRUE 1 FALSE 1505443316 46250
+## 3627 6 TRUE 1 FALSE 1505443338 46250
+## 3628 7 TRUE 1 FALSE 1505443345 46250
+## 3629 15 TRUE 2 FALSE 1505402130 46250
+## 3630 17 TRUE 1 FALSE 1505786324 46250
+## 3631 19 TRUE 1 FALSE 1505786341 46250
+## 3632 21 TRUE 1 FALSE 1505786360 46250
+## 3633 23 TRUE 1 FALSE 1505786385 46250
+## 3634 25 TRUE 1 FALSE 1505786406 46250
+## 3635 6 TRUE 1 FALSE 1505433362 46250
+## 3636 7 TRUE 1 FALSE 1505444938 46250
+## 3637 29 TRUE 1 FALSE 1505432514 46250
+## 3638 32 TRUE 3 FALSE 1505438776 46250
+## 3639 8 TRUE 1 FALSE 1505431594 46250
+## 3640 20 TRUE 2 FALSE 1505434497 46250
+## 3641 35 TRUE 1 FALSE 1505443952 46250
+## 3642 5 TRUE 2 FALSE 1505431519 46250
+## 3643 36 TRUE 1 FALSE 1505443969 46250
+## 3644 31 TRUE 1 FALSE 1505438719 46250
+## 3645 29 TRUE 1 FALSE 1505432514 46250
+## 3646 5 TRUE 2 FALSE 1505431519 46250
+## 3647 30 TRUE 1 FALSE 1505432742 46250
+## 3648 32 TRUE 1 FALSE 1505432813 46250
+## 3649 14 TRUE 1 FALSE 1505786150 46250
+## 3650 33 TRUE 5 FALSE 1505438898 46250
+## 3651 8 TRUE 1 FALSE 1505152636 46250
+## 3652 44 TRUE 1 FALSE 1505444139 46250
+## 3653 46 TRUE 1 FALSE 1505444240 46250
+## 3654 22 TRUE 1 FALSE 1505432327 46250
+## 3655 23 TRUE 1 FALSE 1505432333 46250
+## 3656 25 TRUE 1 FALSE 1505432391 46250
+## 3657 30 TRUE 1 FALSE 1505438665 46250
+## 3658 50 TRUE 1 FALSE 1505444283 46250
+## 3659 6 TRUE 2 FALSE 1505431573 46250
+## 3660 7 TRUE 2 FALSE 1505431589 46250
+## 3661 39 TRUE 1 FALSE 1505433073 46250
+## 3662 11 TRUE 1 FALSE 1505431630 46250
+## 3663 17 TRUE 1 FALSE 1505402521 46250
+## 3664 3 TRUE 1 FALSE 1505433309 46250
+## 3665 4 TRUE 1 FALSE 1505433315 46250
+## 3666 5 TRUE 1 FALSE 1505444919 46250
+## 3667 14 TRUE 1 FALSE 1505152748 46250
+## 3668 30 TRUE 1 FALSE 1505432742 46250
+## 3669 32 TRUE 1 FALSE 1505432813 46250
+## 3670 17 TRUE 2 FALSE 1505152830 46250
+## 3671 11 TRUE 1 FALSE 1505153964 46250
+## 3672 48 TRUE 1 FALSE 1505788538 46250
+## 3673 15 TRUE 1 FALSE 1505445196 46250
+## 3674 18 TRUE 1 FALSE 1505434432 46250
+## 3675 21 TRUE 1 FALSE 1505434502 46250
+## 3676 22 TRUE 1 FALSE 1505434503 46250
+## 3677 29 TRUE 1 FALSE 1505438658 46250
+## 3678 49 TRUE 1 FALSE 1505444275 46250
+## 3679 40 TRUE 1 FALSE 1505787177 46250
+## 3680 41 TRUE 1 TRUE 1505787203 46250
+## 3681 42 TRUE 1 TRUE 1505788018 46250
+## 3682 43 TRUE 1 TRUE 1505788244 46250
+## 3683 14 TRUE 1 FALSE 1505154128 46250
+## 3684 24 TRUE 1 FALSE 1505445327 46250
+## 3685 17 TRUE 1 FALSE 1505432036 46250
+## 3686 19 TRUE 1 FALSE 1505432092 46250
+## 3687 22 TRUE 1 FALSE 1505432327 46250
+## 3688 11 TRUE 1 FALSE 1505152663 46250
+## 3689 12 TRUE 1 FALSE 1505152667 46250
+## 3690 27 TRUE 1 FALSE 1505438630 46250
+## 3691 38 TRUE 1 FALSE 1505445870 46250
+## 3692 51 TRUE 1 FALSE 1505444301 46250
+## 3693 53 TRUE 1 FALSE 1505444305 46250
+## 3694 54 TRUE 1 FALSE 1505444307 46250
+## 3695 47 TRUE 1 TRUE 1505788464 46250
+## 3696 33 TRUE 1 FALSE 1505432892 46250
+## 3697 50 TRUE 1 FALSE 1505788547 46250
+## 3698 40 TRUE 1 FALSE 1505433079 46250
+## 3699 3 TRUE 1 FALSE 1505152256 46250
+## 3700 3 TRUE 1 FALSE 1505444896 46250
+## 3701 4 TRUE 1 FALSE 1505444906 46250
+## 3702 35 TRUE 2 FALSE 1505786858 46250
+## 3703 47 TRUE 1 FALSE 1505444255 46250
+## 3704 38 TRUE 1 FALSE 1505786924 46250
+## 3705 19 TRUE 1 FALSE 1505445262 46250
+## 3706 20 TRUE 1 FALSE 1505445273 46250
+## 3707 22 TRUE 1 FALSE 1505445296 46250
+## 3708 23 TRUE 2 FALSE 1505445317 46250
+## 3709 35 TRUE 1 FALSE 1505432941 46250
+## 3710 51 TRUE 1 FALSE 1505788549 46250
+## 3711 27 TRUE 2 TRUE 1505445747 46250
+## 3712 19 TRUE 1 FALSE 1505434448 46250
+## 3713 26 TRUE 1 FALSE 1505438601 46250
+## 3714 32 TRUE 1 FALSE 1505445826 46250
+## 3715 37 TRUE 1 FALSE 1505445868 46250
+## 3716 18 TRUE 1 FALSE 1505445249 46250
+## 3717 15 TRUE 1 FALSE 1505152763 46250
+## 3718 16 TRUE 1 FALSE 1505152774 46250
+## 3719 35 TRUE 1 FALSE 1505445860 46250
+## 3720 10 TRUE 1 FALSE 1505152653 46250
+## 3721 30 TRUE 1 FALSE 1505445799 46250
+## 3722 36 TRUE 1 FALSE 1505786886 46250
+## 3723 17 TRUE 2 FALSE 1505445214 46250
+## 3724 29 TRUE 1 FALSE 1505445790 46250
+## 3725 16 TRUE 1 FALSE 1505445201 46250
+## 3726 28 TRUE 1 FALSE 1505445787 46250
+## 3727 33 TRUE 1 FALSE 1505445842 46250
+## 3728 47 TRUE 1 FALSE 1505145039 92108
+## 3729 26 TRUE 1 FALSE 1505090765 92108
+## 3730 46 TRUE 1 FALSE 1505145021 92108
+## 3731 50 TRUE 1 FALSE 1505145077 92108
+## 3732 25 TRUE 1 FALSE 1505090735 92108
+## 3733 51 TRUE 1 FALSE 1505145096 92108
+## 3734 49 TRUE 1 FALSE 1505145066 92108
+## 3735 44 TRUE 1 FALSE 1505144936 92108
+## 3736 17 TRUE 2 FALSE 1505092230 92108
+## 3737 21 TRUE 1 FALSE 1505092298 92108
+## 3738 11 TRUE 1 FALSE 1505091626 92108
+## 3739 14 TRUE 1 FALSE 1505091868 92108
+## 3740 39 TRUE 1 FALSE 1505140406 92108
+## 3741 27 TRUE 1 FALSE 1505090771 92108
+## 3742 42 TRUE 1 FALSE 1505144897 92108
+## 3743 43 TRUE 1 FALSE 1505144908 92108
+## 3744 19 TRUE 1 FALSE 1505092260 92108
+## 3745 53 TRUE 1 FALSE 1505145101 92108
+## 3746 54 TRUE 1 FALSE 1505145102 92108
+## 3747 33 TRUE 1 FALSE 1505091060 92108
+## 3748 3 TRUE 1 FALSE 1505145388 92108
+## 3749 10 TRUE 1 FALSE 1505091584 92108
+## 3750 33 TRUE 2 FALSE 1505139741 92108
+## 3751 35 TRUE 1 FALSE 1505139981 92108
+## 3752 15 TRUE 1 FALSE 1505092052 92108
+## 3753 21 TRUE 1 FALSE 1505090641 92108
+## 3754 22 TRUE 1 FALSE 1505090664 92108
+## 3755 40 TRUE 1 FALSE 1505140411 92108
+## 3756 32 TRUE 1 FALSE 1505143044 92108
+## 3757 3 TRUE 1 FALSE 1505141123 92108
+## 3758 31 TRUE 1 FALSE 1505090991 92108
+## 3759 12 TRUE 1 FALSE 1505090382 92108
+## 3760 36 TRUE 1 FALSE 1505091273 92108
+## 3761 38 TRUE 1 FALSE 1505146411 92108
+## 3762 35 TRUE 1 FALSE 1505146395 92108
+## 3763 23 TRUE 1 FALSE 1505090697 92108
+## 3764 5 TRUE 1 FALSE 1505145501 92108
+## 3765 7 TRUE 1 FALSE 1505145522 92108
+## 3766 41 TRUE 1 FALSE 1505144883 92108
+## 3767 9 TRUE 1 FALSE 1505145560 92108
+## 3768 33 TRUE 1 FALSE 1505143095 92108
+## 3769 34 TRUE 1 FALSE 1505143126 92108
+## 3770 4 TRUE 1 FALSE 1505141146 92108
+## 3771 38 TRUE 1 FALSE 1505091319 92108
+## 3772 37 TRUE 1 FALSE 1505146408 92108
+## 3773 39 TRUE 1 FALSE 1505091327 92108
+## 3774 4 TRUE 2 FALSE 1505145411 92108
+## 3775 9 TRUE 1 FALSE 1505091571 92108
+## 3776 18 TRUE 1 FALSE 1505090588 92108
+## 3777 8 TRUE 1 FALSE 1505091564 92108
+## 3778 8 TRUE 1 FALSE 1505145553 92108
+## 3779 39 TRUE 1 FALSE 1505144750 92108
+## 3780 12 TRUE 1 FALSE 1505145597 92108
+## 3781 13 TRUE 1 FALSE 1505145605 92108
+## 3782 11 TRUE 1 FALSE 1505090376 92108
+## 3783 22 TRUE 2 FALSE 1505092503 92108
+## 3784 33 TRUE 1 FALSE 1505146363 92108
+## 3785 32 TRUE 1 FALSE 1505139610 92108
+## 3786 17 TRUE 1 FALSE 1505090565 92108
+## 3787 4 TRUE 1 FALSE 1505143392 92108
+## 3788 38 TRUE 1 FALSE 1505144724 92108
+## 3789 7 TRUE 1 FALSE 1505143418 92108
+## 3790 9 TRUE 1 FALSE 1505143480 92108
+## 3791 11 TRUE 1 FALSE 1505145594 92108
+## 3792 8 TRUE 1 FALSE 1505090346 92108
+## 3793 37 TRUE 1 FALSE 1505143241 92108
+## 3794 38 TRUE 1 FALSE 1505143251 92108
+## 3795 40 TRUE 1 FALSE 1505143264 92108
+## 3796 40 TRUE 1 FALSE 1505091330 92108
+## 3797 18 TRUE 1 FALSE 1505145719 92108
+## 3798 19 TRUE 1 FALSE 1505145737 92108
+## 3799 6 TRUE 1 FALSE 1505143408 92108
+## 3800 22 TRUE 1 FALSE 1505145897 92108
+## 3801 31 TRUE 1 FALSE 1505143014 92108
+## 3802 29 TRUE 1 FALSE 1505092743 92108
+## 3803 31 TRUE 1 FALSE 1505092784 92108
+## 3804 10 TRUE 1 FALSE 1505090359 92108
+## 3805 27 TRUE 2 FALSE 1505146228 92108
+## 3806 14 TRUE 1 FALSE 1505090450 92108
+## 3807 15 TRUE 1 FALSE 1505090465 92108
+## 3808 16 TRUE 1 FALSE 1505090475 92108
+## 3809 30 TRUE 2 FALSE 1505139384 92108
+## 3810 6 TRUE 1 FALSE 1505091447 92108
+## 3811 37 TRUE 1 FALSE 1505144676 92108
+## 3812 30 TRUE 1 FALSE 1505142873 92108
+## 3813 27 TRUE 2 FALSE 1505092676 92108
+## 3814 18 TRUE 1 FALSE 1505138935 92108
+## 3815 24 TRUE 1 FALSE 1505145924 92108
+## 3816 10 TRUE 1 FALSE 1505143498 92108
+## 3817 12 TRUE 1 FALSE 1505143596 92108
+## 3818 14 TRUE 1 FALSE 1505145626 92108
+## 3819 36 TRUE 4 FALSE 1505143205 92108
+## 3820 6 TRUE 2 FALSE 1505141252 92108
+## 3821 7 TRUE 1 FALSE 1505141263 92108
+## 3822 23 TRUE 1 FALSE 1505092538 92108
+## 3823 25 TRUE 1 FALSE 1505092565 92108
+## 3824 17 TRUE 1 FALSE 1505138928 92108
+## 3825 9 TRUE 2 FALSE 1505141666 92108
+## 3826 10 TRUE 1 FALSE 1505141700 92108
+## 3827 22 TRUE 2 FALSE 1505139023 92108
+## 3828 15 TRUE 1 FALSE 1505143685 92108
+## 3829 15 TRUE 1 FALSE 1505145693 92108
+## 3830 16 TRUE 2 FALSE 1505145702 92108
+## 3831 17 TRUE 1 FALSE 1505145711 92108
+## 3832 8 TRUE 1 FALSE 1505137768 92108
+## 3833 20 TRUE 1 FALSE 1505145763 92108
+## 3834 8 TRUE 1 FALSE 1505142212 92108
+## 3835 9 TRUE 1 FALSE 1505142237 92108
+## 3836 12 TRUE 1 FALSE 1505141887 92108
+## 3837 17 TRUE 1 FALSE 1505141948 92108
+## 3838 32 TRUE 1 FALSE 1505092842 92108
+## 3839 28 TRUE 1 FALSE 1505146272 92108
+## 3840 29 TRUE 1 FALSE 1505146277 92108
+## 3841 30 TRUE 1 FALSE 1505146286 92108
+## 3842 32 TRUE 1 FALSE 1505146350 92108
+## 3843 35 TRUE 1 FALSE 1505144640 92108
+## 3844 36 TRUE 1 FALSE 1505144660 92108
+## 3845 29 TRUE 1 FALSE 1505142866 92108
+## 3846 11 TRUE 1 FALSE 1505137785 92108
+## 3847 5 TRUE 1 FALSE 1505142096 92108
+## 3848 23 TRUE 1 FALSE 1505145914 92108
+## 3849 3 TRUE 1 FALSE 1505090265 92108
+## 3850 30 TRUE 1 FALSE 1505144142 92108
+## 3851 13 TRUE 1 FALSE 1505143609 92108
+## 3852 14 TRUE 1 FALSE 1505143628 92108
+## 3853 17 TRUE 2 FALSE 1505143748 92108
+## 3854 18 TRUE 1 FALSE 1505143769 92108
+## 3855 20 TRUE 1 FALSE 1505143809 92108
+## 3856 41 TRUE 1 FALSE 1505143268 92108
+## 3857 8 TRUE 1 FALSE 1505141371 92108
+## 3858 23 TRUE 1 FALSE 1505143934 92108
+## 3859 7 TRUE 1 FALSE 1505137765 92108
+## 3860 3 TRUE 1 FALSE 1505142077 92108
+## 3861 25 TRUE 1 FALSE 1505139049 92108
+## 3862 27 TRUE 1 FALSE 1505144000 92108
+## 3863 15 TRUE 1 FALSE 1505142330 92108
+## 3864 32 TRUE 2 FALSE 1505144374 92108
+## 3865 21 TRUE 1 FALSE 1505143886 92108
+## 3866 33 TRUE 3 FALSE 1505144603 92108
+## 3867 6 TRUE 1 FALSE 1505137761 92108
+## 3868 22 TRUE 1 FALSE 1505142018 92108
+## 3869 33 TRUE 1 FALSE 1505092863 92108
+## 3870 34 TRUE 2 FALSE 1505093719 92108
+## 3871 19 TRUE 1 FALSE 1505138940 92108
+## 3872 40 TRUE 1 FALSE 1505094722 92108
+## 3873 5 TRUE 1 FALSE 1505091438 92108
+## 3874 27 TRUE 1 FALSE 1505142823 92108
+## 3875 35 TRUE 1 FALSE 1505094471 92108
+## 3876 10 TRUE 1 FALSE 1505142262 92108
+## 3877 13 TRUE 1 FALSE 1505142293 92108
+## 3878 23 TRUE 1 FALSE 1505139029 92108
+## 3879 23 TRUE 1 FALSE 1505142689 92108
+## 3880 28 TRUE 1 FALSE 1505139161 92108
+## 3881 29 TRUE 1 FALSE 1505139167 92108
+## 3882 5 TRUE 1 FALSE 1505137743 92108
+## 3883 18 TRUE 1 FALSE 1505141958 92108
+## 3884 21 TRUE 1 FALSE 1505142017 92108
+## 3885 19 TRUE 1 FALSE 1505141980 92108
+## 3886 28 TRUE 1 FALSE 1505144025 92108
+## 3887 41 TRUE 1 FALSE 1505094724 92108
+## 3888 14 TRUE 1 FALSE 1505142305 92108
+## 3889 21 TRUE 1 FALSE 1505142639 92108
+## 3890 11 TRUE 1 FALSE 1505142265 92108
+## 3891 22 TRUE 1 FALSE 1505142669 92108
+## 3892 26 TRUE 1 FALSE 1505142746 92108
+## 3893 20 TRUE 2 FALSE 1505142014 92108
+## 3894 17 TRUE 1 FALSE 1505142357 92108
+## 3895 24 TRUE 1 FALSE 1506008641 12264
+## 3896 25 TRUE 1 FALSE 1506008667 12264
+## 3897 16 TRUE 2 FALSE 1505158699 12264
+## 3898 33 TRUE 6 TRUE 1506302433 12264
+## 3899 26 TRUE 3 TRUE 1506008869 12264
+## 3900 49 TRUE 2 TRUE 1506094840 12264
+## 3901 3 TRUE 3 FALSE 1505939024 12264
+## 3902 23 TRUE 1 FALSE 1506008619 12264
+## 3903 22 TRUE 1 FALSE 1506008498 12264
+## 3904 28 TRUE 2 FALSE 1506301497 12264
+## 3905 29 TRUE 1 FALSE 1506301699 12264
+## 3906 39 TRUE 1 FALSE 1506093876 12264
+## 3907 21 TRUE 1 FALSE 1506008458 12264
+## 3908 61 TRUE 1 FALSE 1506096166 12264
+## 3909 18 TRUE 1 FALSE 1506008351 12264
+## 3910 62 TRUE 1 FALSE 1506096169 12264
+## 3911 32 TRUE 1 FALSE 1505158903 12264
+## 3912 4 TRUE 1 FALSE 1505939129 12264
+## 3913 5 TRUE 1 FALSE 1505939142 12264
+## 3914 24 TRUE 1 FALSE 1506266384 12264
+## 3915 16 TRUE 1 FALSE 1506008227 12264
+## 3916 11 TRUE 1 FALSE 1506007974 12264
+## 3917 57 TRUE 2 FALSE 1506096114 12264
+## 3918 28 TRUE 1 FALSE 1505158892 12264
+## 3919 34 TRUE 2 FALSE 1505159127 12264
+## 3920 21 TRUE 1 FALSE 1506265621 12264
+## 3921 37 TRUE 1 TRUE 1506093701 12264
+## 3922 25 TRUE 1 FALSE 1506266438 12264
+## 3923 4 TRUE 2 FALSE 1506007758 12264
+## 3924 5 TRUE 1 FALSE 1506007769 12264
+## 3925 10 TRUE 1 FALSE 1506007957 12264
+## 3926 12 TRUE 1 FALSE 1506008120 12264
+## 3927 8 TRUE 1 FALSE 1506007851 12264
+## 3928 34 TRUE 1 FALSE 1506010908 12264
+## 3929 27 TRUE 1 FALSE 1505158845 12264
+## 3930 36 TRUE 1 FALSE 1506011434 12264
+## 3931 46 TRUE 1 FALSE 1506094525 12264
+## 3932 18 TRUE 1 TRUE 1505957595 12264
+## 3933 21 TRUE 1 FALSE 1505957867 12264
+## 3934 35 TRUE 3 FALSE 1505159231 12264
+## 3935 32 TRUE 1 FALSE 1506302021 12264
+## 3936 9 TRUE 1 FALSE 1505158462 12264
+## 3937 33 TRUE 1 FALSE 1506010563 12264
+## 3938 19 TRUE 1 FALSE 1506265326 12264
+## 3939 13 TRUE 1 FALSE 1505158549 12264
+## 3940 35 TRUE 2 FALSE 1506011413 12264
+## 3941 47 TRUE 1 FALSE 1506094685 12264
+## 3942 48 TRUE 1 FALSE 1506094759 12264
+## 3943 36 TRUE 1 FALSE 1505159244 12264
+## 3944 27 TRUE 1 FALSE 1506008914 12264
+## 3945 6 TRUE 1 FALSE 1506007790 12264
+## 3946 7 TRUE 1 FALSE 1506007830 12264
+## 3947 18 TRUE 4 FALSE 1506265322 12264
+## 3948 30 TRUE 5 TRUE 1506301984 12264
+## 3949 31 TRUE 1 FALSE 1506302000 12264
+## 3950 56 TRUE 2 FALSE 1506095938 12264
+## 3951 20 TRUE 1 FALSE 1506265351 12264
+## 3952 17 TRUE 1 FALSE 1505957518 12264
+## 3953 6 TRUE 2 FALSE 1506264257 12264
+## 3954 38 TRUE 1 FALSE 1505958402 12264
+## 3955 14 TRUE 1 FALSE 1505158564 12264
+## 3956 6 TRUE 1 FALSE 1505939185 12264
+## 3957 17 TRUE 1 FALSE 1505158710 12264
+## 3958 10 TRUE 1 FALSE 1505939585 12264
+## 3959 12 TRUE 1 FALSE 1505939652 12264
+## 3960 13 TRUE 1 FALSE 1505939676 12264
+## 3961 42 TRUE 1 FALSE 1506302883 12264
+## 3962 34 TRUE 2 FALSE 1505958382 12264
+## 3963 35 TRUE 1 FALSE 1505958387 12264
+## 3964 8 TRUE 1 FALSE 1506264277 12264
+## 3965 11 TRUE 1 FALSE 1506264475 12264
+## 3966 15 TRUE 1 FALSE 1506265203 12264
+## 3967 28 TRUE 1 FALSE 1506008932 12264
+## 3968 30 TRUE 1 FALSE 1506008962 12264
+## 3969 3 TRUE 1 FALSE 1505158388 12264
+## 3970 5 TRUE 1 FALSE 1505158405 12264
+## 3971 11 TRUE 1 FALSE 1505158513 12264
+## 3972 8 TRUE 1 FALSE 1505158433 12264
+## 3973 14 TRUE 2 FALSE 1505939900 12264
+## 3974 37 TRUE 1 FALSE 1505958400 12264
+## 3975 51 TRUE 1 FALSE 1505160286 12264
+## 3976 12 TRUE 1 FALSE 1506265075 12264
+## 3977 26 TRUE 1 FALSE 1505958109 12264
+## 3978 21 TRUE 1 FALSE 1505158729 12264
+## 3979 23 TRUE 1 FALSE 1505158771 12264
+## 3980 25 TRUE 1 FALSE 1505158783 12264
+## 3981 45 TRUE 1 FALSE 1506094463 12264
+## 3982 16 TRUE 2 FALSE 1505957110 12264
+## 3983 48 TRUE 1 FALSE 1506303433 12264
+## 3984 38 TRUE 1 FALSE 1505159262 12264
+## 3985 19 TRUE 1 FALSE 1505158720 12264
+## 3986 38 TRUE 1 FALSE 1506302706 12264
+## 3987 39 TRUE 1 FALSE 1506302781 12264
+## 3988 30 TRUE 1 FALSE 1505958159 12264
+## 3989 44 TRUE 2 FALSE 1506094360 12264
+## 3990 43 TRUE 1 FALSE 1506302887 12264
+## 3991 48 TRUE 1 FALSE 1505160278 12264
+## 3992 50 TRUE 1 FALSE 1505160283 12264
+## 3993 47 TRUE 1 FALSE 1506303127 12264
+## 3994 40 TRUE 2 FALSE 1506094024 12264
+## 3995 7 TRUE 1 FALSE 1505939264 12264
+## 3996 9 TRUE 1 FALSE 1505939571 12264
+## 3997 27 TRUE 1 FALSE 1505958126 12264
+## 3998 41 TRUE 2 FALSE 1506094193 12264
+## 3999 3 TRUE 1 FALSE 1506263855 12264
+## 4000 22 TRUE 1 FALSE 1505957951 12264
+## 4001 52 TRUE 1 FALSE 1506303477 12264
+## 4002 55 TRUE 1 FALSE 1506095699 12264
+## 4003 40 TRUE 1 FALSE 1505159301 12264
+## 4004 50 TRUE 3 FALSE 1506094870 12264
+## 4005 53 TRUE 1 FALSE 1506094890 12264
+## 4006 47 TRUE 5 FALSE 1505160247 12264
+## 4007 46 TRUE 2 FALSE 1506303032 12264
+## 4008 33 TRUE 1 FALSE 1505958321 12264
+## 4009 41 TRUE 1 FALSE 1505159322 12264
+## 4010 37 TRUE 1 FALSE 1506302606 12264
+## 4011 54 TRUE 1 FALSE 1506304448 12264
+## 4012 43 TRUE 1 FALSE 1505159792 12264
+## 4013 42 TRUE 7 FALSE 1505159714 12264
+## 4014 57 TRUE 1 FALSE 1506304459 12264
+## 4015 56 TRUE 1 FALSE 1506304456 12264
+## 4016 53 TRUE 4 TRUE 1506304331 12264
+## 4017 34 TRUE 1 FALSE 1506302512 12264
+## 4018 7 TRUE 1 FALSE 1505662449 77484
+## 4019 29 TRUE 1 FALSE 1505933352 77484
+## 4020 12 TRUE 1 FALSE 1505620711 77484
+## 4021 28 TRUE 7 TRUE 1505933336 77484
+## 4022 16 TRUE 2 FALSE 1505658665 77484
+## 4023 3 TRUE 1 FALSE 1505662375 77484
+## 4024 6 TRUE 1 FALSE 1505662418 77484
+## 4025 11 TRUE 1 FALSE 1505620655 77484
+## 4026 22 TRUE 1 FALSE 1505658800 77484
+## 4027 18 TRUE 1 FALSE 1505658716 77484
+## 4028 22 TRUE 1 FALSE 1505663220 77484
+## 4029 21 TRUE 1 FALSE 1505658751 77484
+## 4030 32 TRUE 1 FALSE 1506109530 77484
+## 4031 8 TRUE 1 FALSE 1505620513 77484
+## 4032 10 TRUE 1 FALSE 1505620638 77484
+## 4033 26 TRUE 1 FALSE 1505663649 77484
+## 4034 33 TRUE 1 FALSE 1506109538 77484
+## 4035 4 TRUE 1 FALSE 1505662391 77484
+## 4036 5 TRUE 1 FALSE 1505662399 77484
+## 4037 53 TRUE 1 FALSE 1506110081 77484
+## 4038 27 TRUE 1 FALSE 1505663660 77484
+## 4039 30 TRUE 2 FALSE 1505933677 77484
+## 4040 51 TRUE 1 FALSE 1506110075 77484
+## 4041 35 TRUE 1 FALSE 1506109594 77484
+## 4042 54 TRUE 1 FALSE 1506110084 77484
+## 4043 34 TRUE 1 FALSE 1506109584 77484
+## 4044 10 TRUE 1 FALSE 1505662493 77484
+## 4045 56 TRUE 1 FALSE 1505938576 77484
+## 4046 57 TRUE 1 FALSE 1505938577 77484
+## 4047 9 TRUE 1 FALSE 1505662471 77484
+## 4048 7 TRUE 1 FALSE 1505620499 77484
+## 4049 61 TRUE 1 FALSE 1505661565 77484
+## 4050 62 TRUE 1 FALSE 1505661566 77484
+## 4051 11 TRUE 1 FALSE 1505755390 77484
+## 4052 12 TRUE 1 FALSE 1505755431 77484
+## 4053 15 TRUE 1 FALSE 1505755605 77484
+## 4054 39 TRUE 1 FALSE 1506109662 77484
+## 4055 42 TRUE 1 FALSE 1506109895 77484
+## 4056 43 TRUE 1 FALSE 1506109907 77484
+## 4057 45 TRUE 1 FALSE 1506109919 77484
+## 4058 31 TRUE 1 FALSE 1505933696 77484
+## 4059 32 TRUE 1 FALSE 1505934001 77484
+## 4060 6 TRUE 1 FALSE 1505620438 77484
+## 4061 21 TRUE 2 FALSE 1505756415 77484
+## 4062 24 TRUE 1 FALSE 1505926825 77484
+## 4063 25 TRUE 1 FALSE 1505926865 77484
+## 4064 18 TRUE 4 FALSE 1505755825 77484
+## 4065 19 TRUE 1 FALSE 1505755831 77484
+## 4066 20 TRUE 1 FALSE 1505756324 77484
+## 4067 37 TRUE 3 FALSE 1505660376 77484
+## 4068 33 TRUE 1 FALSE 1505934654 77484
+## 4069 34 TRUE 1 FALSE 1505934668 77484
+## 4070 37 TRUE 1 FALSE 1505934805 77484
+## 4071 38 TRUE 1 FALSE 1505934870 77484
+## 4072 30 TRUE 1 FALSE 1505659399 77484
+## 4073 33 TRUE 1 FALSE 1505660136 77484
+## 4074 34 TRUE 1 FALSE 1505660153 77484
+## 4075 35 TRUE 1 FALSE 1505660199 77484
+## 4076 36 TRUE 1 FALSE 1505660228 77484
+## 4077 4 TRUE 1 FALSE 1505620388 77484
+## 4078 3 TRUE 1 FALSE 1505754718 77484
+## 4079 6 TRUE 1 FALSE 1505755287 77484
+## 4080 8 TRUE 1 FALSE 1505755315 77484
+## 4081 53 TRUE 5 FALSE 1505937820 77484
+## 4082 54 TRUE 1 FALSE 1505938564 77484
+## 4083 17 TRUE 1 FALSE 1506109310 77484
+## 4084 21 TRUE 1 FALSE 1506109343 77484
+## 4085 12 TRUE 1 FALSE 1505662530 77484
+## 4086 13 TRUE 1 FALSE 1505662545 77484
+## 4087 14 TRUE 1 FALSE 1505662570 77484
+## 4088 16 TRUE 1 FALSE 1505662588 77484
+## 4089 17 TRUE 3 FALSE 1505663033 77484
+## 4090 18 TRUE 1 FALSE 1505663053 77484
+## 4091 21 TRUE 1 FALSE 1505663166 77484
+## 4092 3 TRUE 3 TRUE 1506107780 77484
+## 4093 30 TRUE 1 FALSE 1505663738 77484
+## 4094 33 TRUE 1 FALSE 1505663803 77484
+## 4095 34 TRUE 2 FALSE 1505663836 77484
+## 4096 35 TRUE 1 FALSE 1505663848 77484
+## 4097 37 TRUE 1 FALSE 1505663856 77484
+## 4098 38 TRUE 1 FALSE 1505663858 77484
+## 4099 39 TRUE 3 FALSE 1505935095 77484
+## 4100 42 TRUE 1 FALSE 1505935144 77484
+## 4101 43 TRUE 1 FALSE 1505935150 77484
+## 4102 46 TRUE 2 FALSE 1505935796 77484
+## 4103 47 TRUE 1 FALSE 1505936230 77484
+## 4104 48 TRUE 1 FALSE 1505936416 77484
+## 4105 52 TRUE 1 FALSE 1505936509 77484
+## 4106 9 TRUE 2 FALSE 1506109069 77484
+## 4107 10 TRUE 1 FALSE 1506109090 77484
+## 4108 11 TRUE 1 FALSE 1506109096 77484
+## 4109 14 TRUE 1 FALSE 1506109211 77484
+## 4110 16 TRUE 1 FALSE 1506109298 77484
+## 4111 35 TRUE 1 FALSE 1506308161 77484
+## 4112 36 TRUE 1 FALSE 1506308182 77484
+## 4113 38 TRUE 1 FALSE 1506308188 77484
+## 4114 22 TRUE 2 FALSE 1506109393 77484
+## 4115 23 TRUE 1 FALSE 1506109397 77484
+## 4116 25 TRUE 1 FALSE 1506109407 77484
+## 4117 26 TRUE 1 FALSE 1506109440 77484
+## 4118 27 TRUE 1 FALSE 1506109471 77484
+## 4119 31 TRUE 1 FALSE 1506109501 77484
+## 4120 25 TRUE 1 FALSE 1505659111 77484
+## 4121 26 TRUE 1 FALSE 1505659140 77484
+## 4122 27 TRUE 1 FALSE 1505659206 77484
+## 4123 28 TRUE 1 FALSE 1505659365 77484
+## 4124 16 TRUE 1 FALSE 1506307451 77484
+## 4125 17 TRUE 1 FALSE 1506307522 77484
+## 4126 19 TRUE 2 FALSE 1506307728 77484
+## 4127 4 TRUE 1 FALSE 1506108154 77484
+## 4128 48 TRUE 1 FALSE 1506109954 77484
+## 4129 49 TRUE 1 FALSE 1506109988 77484
+## 4130 50 TRUE 1 FALSE 1506110033 77484
+## 4131 5 TRUE 2 FALSE 1506306338 77484
+## 4132 7 TRUE 1 TRUE 1506306399 77484
+## 4133 9 TRUE 1 FALSE 1506306770 77484
+## 4134 11 TRUE 1 FALSE 1506306922 77484
+## 4135 34 TRUE 2 FALSE 1506308153 77484
+## 4136 46 TRUE 1 FALSE 1505661064 77484
+## 4137 47 TRUE 1 FALSE 1505661098 77484
+## 4138 48 TRUE 1 FALSE 1505661140 77484
+## 4139 20 TRUE 1 FALSE 1506307745 77484
+## 4140 21 TRUE 1 FALSE 1506307765 77484
+## 4141 25 TRUE 1 FALSE 1506307896 77484
+## 4142 5 TRUE 1 FALSE 1505620428 77484
+## 4143 28 TRUE 1 FALSE 1506308045 77484
+## 4144 31 TRUE 1 FALSE 1506308102 77484
+## 4145 32 TRUE 1 FALSE 1506308109 77484
+## 4146 33 TRUE 1 FALSE 1506308115 77484
+## 4147 45 TRUE 1 FALSE 1505661011 77484
+## 4148 16 TRUE 1 FALSE 1506108798 77484
+## 4149 17 TRUE 1 FALSE 1506108814 77484
+## 4150 20 TRUE 1 FALSE 1506108880 77484
+## 4151 39 TRUE 1 FALSE 1506308189 77484
+## 4152 23 TRUE 3 FALSE 1505659083 77484
+## 4153 24 TRUE 1 FALSE 1505659097 77484
+## 4154 40 TRUE 1 FALSE 1505660420 77484
+## 4155 41 TRUE 1 FALSE 1505660488 77484
+## 4156 44 TRUE 1 FALSE 1505660956 77484
+## 4157 15 TRUE 1 FALSE 1506108785 77484
+## 4158 50 TRUE 1 FALSE 1505661181 77484
+## 4159 6 TRUE 1 FALSE 1506108182 77484
+## 4160 8 TRUE 1 FALSE 1506108196 77484
+## 4161 49 TRUE 1 FALSE 1505661177 77484
+## 4162 39 TRUE 1 FALSE 1505660409 77484
+## 4163 57 TRUE 1 FALSE 1505661510 77484
+## 4164 9 TRUE 1 FALSE 1506108225 77484
+## 4165 22 TRUE 1 FALSE 1506108905 77484
+## 4166 26 TRUE 1 FALSE 1506108938 77484
+## 4167 53 TRUE 1 FALSE 1505661289 77484
+## 4168 13 TRUE 1 FALSE 1506108387 77484
+## 4169 56 TRUE 2 FALSE 1505661446 77484
+## 4170 10 TRUE 1 FALSE 1506108269 77484
+## 4171 55 TRUE 1 FALSE 1505661365 77484
+## 4172 27 TRUE 1 FALSE 1506307929 77484
+## 4173 5 TRUE 1 FALSE 1506108980 77484
+## 4174 6 TRUE 1 FALSE 1506109008 77484
+## 4175 11 TRUE 1 FALSE 1506108350 77484
+## 4176 26 TRUE 1 FALSE 1506307910 77484
+## 4177 27 TRUE 1 FALSE 1506108940 77484
+## 4178 8 TRUE 1 FALSE 1506109018 77484
+## 4179 7 TRUE 1 FALSE 1506109016 77484
+## 4180 3 TRUE 1 FALSE 1505148695 24042
+## 4181 50 TRUE 1 FALSE 1505174460 24042
+## 4182 4 TRUE 1 FALSE 1505142875 24042
+## 4183 7 TRUE 1 FALSE 1505142909 24042
+## 4184 48 TRUE 1 FALSE 1505174452 24042
+## 4185 8 TRUE 2 FALSE 1505150098 24042
+## 4186 47 TRUE 1 FALSE 1505174333 24042
+## 4187 6 TRUE 1 FALSE 1505142901 24042
+## 4188 5 TRUE 1 FALSE 1505148724 24042
+## 4189 9 TRUE 1 FALSE 1505098173 24042
+## 4190 13 TRUE 1 FALSE 1505098242 24042
+## 4191 5 TRUE 1 FALSE 1505097967 24042
+## 4192 9 TRUE 1 FALSE 1505150131 24042
+## 4193 8 TRUE 1 FALSE 1505098164 24042
+## 4194 10 TRUE 2 FALSE 1505098212 24042
+## 4195 40 TRUE 1 FALSE 1505091065 24042
+## 4196 11 TRUE 1 FALSE 1505098215 24042
+## 4197 19 TRUE 1 FALSE 1505091605 24042
+## 4198 3 TRUE 1 FALSE 1505097939 24042
+## 4199 17 TRUE 1 FALSE 1505091585 24042
+## 4200 40 TRUE 2 FALSE 1505153481 24042
+## 4201 41 TRUE 1 FALSE 1505153537 24042
+## 4202 18 TRUE 1 FALSE 1505091590 24042
+## 4203 10 TRUE 1 FALSE 1505097625 24042
+## 4204 14 TRUE 2 FALSE 1505098285 24042
+## 4205 21 TRUE 2 FALSE 1505098627 24042
+## 4206 42 TRUE 5 FALSE 1505154198 24042
+## 4207 11 TRUE 1 FALSE 1505091361 24042
+## 4208 22 TRUE 1 FALSE 1505098970 24042
+## 4209 23 TRUE 1 FALSE 1505098987 24042
+## 4210 40 TRUE 1 FALSE 1505087947 24042
+## 4211 43 TRUE 2 FALSE 1505173726 24042
+## 4212 29 TRUE 1 FALSE 1505089948 24042
+## 4213 35 TRUE 1 FALSE 1505090824 24042
+## 4214 28 TRUE 3 FALSE 1505091998 24042
+## 4215 29 TRUE 1 FALSE 1505092006 24042
+## 4216 30 TRUE 1 FALSE 1505092054 24042
+## 4217 27 TRUE 1 FALSE 1505089874 24042
+## 4218 31 TRUE 2 FALSE 1505090050 24042
+## 4219 15 TRUE 1 FALSE 1505098298 24042
+## 4220 17 TRUE 1 FALSE 1505098394 24042
+## 4221 34 TRUE 2 FALSE 1505090731 24042
+## 4222 36 TRUE 1 FALSE 1505087885 24042
+## 4223 38 TRUE 1 FALSE 1505087934 24042
+## 4224 39 TRUE 1 FALSE 1505087942 24042
+## 4225 54 TRUE 1 FALSE 1505144344 24042
+## 4226 5 TRUE 1 FALSE 1505088043 24042
+## 4227 6 TRUE 1 FALSE 1505088054 24042
+## 4228 8 TRUE 1 FALSE 1505088076 24042
+## 4229 11 TRUE 1 FALSE 1505150243 24042
+## 4230 20 TRUE 2 FALSE 1505097845 24042
+## 4231 14 TRUE 1 FALSE 1505088343 24042
+## 4232 15 TRUE 1 FALSE 1505089113 24042
+## 4233 51 TRUE 1 FALSE 1505174462 24042
+## 4234 19 TRUE 1 FALSE 1505089284 24042
+## 4235 5 TRUE 2 FALSE 1505091254 24042
+## 4236 6 TRUE 1 FALSE 1505091305 24042
+## 4237 7 TRUE 1 FALSE 1505091325 24042
+## 4238 8 TRUE 1 FALSE 1505091330 24042
+## 4239 23 TRUE 2 FALSE 1505147434 24042
+## 4240 9 TRUE 1 FALSE 1505088082 24042
+## 4241 11 TRUE 1 FALSE 1505088122 24042
+## 4242 33 TRUE 1 FALSE 1505090376 24042
+## 4243 18 TRUE 1 FALSE 1505087453 24042
+## 4244 21 TRUE 1 FALSE 1505087495 24042
+## 4245 6 TRUE 1 FALSE 1505097302 24042
+## 4246 7 TRUE 1 FALSE 1505097321 24042
+## 4247 8 TRUE 1 FALSE 1505097550 24042
+## 4248 9 TRUE 1 FALSE 1505097618 24042
+## 4249 28 TRUE 1 FALSE 1505152664 24042
+## 4250 12 TRUE 1 FALSE 1505097654 24042
+## 4251 17 TRUE 1 FALSE 1505097763 24042
+## 4252 24 TRUE 1 FALSE 1505147445 24042
+## 4253 32 TRUE 1 FALSE 1505090285 24042
+## 4254 21 TRUE 1 FALSE 1505097851 24042
+## 4255 22 TRUE 1 FALSE 1505097854 24042
+## 4256 50 TRUE 1 FALSE 1505144309 24042
+## 4257 51 TRUE 1 FALSE 1505144326 24042
+## 4258 53 TRUE 1 FALSE 1505144340 24042
+## 4259 22 TRUE 2 FALSE 1505089423 24042
+## 4260 3 TRUE 1 FALSE 1505146706 24042
+## 4261 4 TRUE 1 FALSE 1505146718 24042
+## 4262 5 TRUE 1 FALSE 1505146764 24042
+## 4263 7 TRUE 1 FALSE 1505146773 24042
+## 4264 10 TRUE 1 FALSE 1505088103 24042
+## 4265 11 TRUE 1 FALSE 1505146939 24042
+## 4266 9 TRUE 1 FALSE 1505142927 24042
+## 4267 21 TRUE 1 FALSE 1505089363 24042
+## 4268 41 TRUE 1 FALSE 1505091068 24042
+## 4269 23 TRUE 1 FALSE 1505089466 24042
+## 4270 25 TRUE 1 FALSE 1505089567 24042
+## 4271 11 TRUE 1 FALSE 1505087201 24042
+## 4272 12 TRUE 1 FALSE 1505087202 24042
+## 4273 27 TRUE 4 FALSE 1505147788 24042
+## 4274 28 TRUE 1 FALSE 1505147843 24042
+## 4275 29 TRUE 1 FALSE 1505147848 24042
+## 4276 30 TRUE 1 FALSE 1505147878 24042
+## 4277 37 TRUE 1 FALSE 1505148556 24042
+## 4278 38 TRUE 1 FALSE 1505148558 24042
+## 4279 18 TRUE 1 FALSE 1505097776 24042
+## 4280 19 TRUE 1 FALSE 1505097822 24042
+## 4281 35 TRUE 1 FALSE 1505092351 24042
+## 4282 36 TRUE 1 FALSE 1505153082 24042
+## 4283 38 TRUE 1 FALSE 1505153138 24042
+## 4284 33 TRUE 1 FALSE 1505087800 24042
+## 4285 49 TRUE 1 FALSE 1505144300 24042
+## 4286 17 TRUE 2 FALSE 1505089237 24042
+## 4287 37 TRUE 1 FALSE 1505143853 24042
+## 4288 38 TRUE 1 FALSE 1505143890 24042
+## 4289 3 TRUE 1 FALSE 1505087082 24042
+## 4290 8 TRUE 1 FALSE 1505087168 24042
+## 4291 10 TRUE 1 FALSE 1505087191 24042
+## 4292 27 TRUE 1 FALSE 1505099070 24042
+## 4293 29 TRUE 1 FALSE 1505099151 24042
+## 4294 8 TRUE 1 FALSE 1505146807 24042
+## 4295 9 TRUE 1 FALSE 1505146815 24042
+## 4296 12 TRUE 1 FALSE 1505146942 24042
+## 4297 13 TRUE 1 FALSE 1505146950 24042
+## 4298 12 TRUE 1 FALSE 1505142947 24042
+## 4299 32 TRUE 1 FALSE 1505092135 24042
+## 4300 22 TRUE 5 FALSE 1505087585 24042
+## 4301 23 TRUE 1 FALSE 1505087594 24042
+## 4302 14 TRUE 1 FALSE 1505087368 24042
+## 4303 15 TRUE 1 FALSE 1505087385 24042
+## 4304 22 TRUE 1 FALSE 1505091720 24042
+## 4305 23 TRUE 1 FALSE 1505091726 24042
+## 4306 25 TRUE 1 FALSE 1505091821 24042
+## 4307 10 TRUE 1 FALSE 1505142936 24042
+## 4308 36 TRUE 1 FALSE 1505143839 24042
+## 4309 36 TRUE 1 FALSE 1505100176 24042
+## 4310 16 TRUE 2 FALSE 1505147010 24042
+## 4311 17 TRUE 1 FALSE 1505147090 24042
+## 4312 18 TRUE 1 FALSE 1505147193 24042
+## 4313 26 TRUE 1 FALSE 1505099046 24042
+## 4314 33 TRUE 2 FALSE 1505092316 24042
+## 4315 26 TRUE 1 FALSE 1505087637 24042
+## 4316 39 TRUE 1 FALSE 1505092396 24042
+## 4317 40 TRUE 1 FALSE 1505092400 24042
+## 4318 35 TRUE 2 FALSE 1505153072 24042
+## 4319 17 TRUE 2 FALSE 1505087440 24042
+## 4320 33 TRUE 1 FALSE 1505100071 24042
+## 4321 14 TRUE 1 FALSE 1505146968 24042
+## 4322 37 TRUE 1 FALSE 1505100183 24042
+## 4323 32 TRUE 1 FALSE 1505148220 24042
+## 4324 33 TRUE 1 FALSE 1505148260 24042
+## 4325 30 TRUE 1 FALSE 1505099161 24042
+## 4326 31 TRUE 1 FALSE 1505099202 24042
+## 4327 16 TRUE 1 FALSE 1505087396 24042
+## 4328 47 TRUE 1 FALSE 1505144112 24042
+## 4329 13 TRUE 12 FALSE 1505151039 24042
+## 4330 34 TRUE 1 FALSE 1505100139 24042
+## 4331 13 TRUE 1 FALSE 1505143077 24042
+## 4332 14 TRUE 1 FALSE 1505143226 24042
+## 4333 15 TRUE 1 FALSE 1505143319 24042
+## 4334 17 TRUE 1 FALSE 1505143347 24042
+## 4335 18 TRUE 1 FALSE 1505143373 24042
+## 4336 27 TRUE 1 FALSE 1505152490 24042
+## 4337 25 TRUE 1 FALSE 1505087626 24042
+## 4338 32 TRUE 1 FALSE 1505152697 24042
+## 4339 27 TRUE 1 FALSE 1505087643 24042
+## 4340 31 TRUE 1 FALSE 1505087759 24042
+## 4341 32 TRUE 2 FALSE 1505100034 24042
+## 4342 46 TRUE 1 FALSE 1505144098 24042
+## 4343 14 TRUE 1 FALSE 1505151072 24042
+## 4344 3 TRUE 1 FALSE 1505096812 24042
+## 4345 4 TRUE 1 FALSE 1505096821 24042
+## 4346 19 TRUE 1 FALSE 1505151564 24042
+## 4347 21 TRUE 1 FALSE 1505151585 24042
+## 4348 35 TRUE 1 FALSE 1505148510 24042
+## 4349 19 TRUE 1 FALSE 1505147346 24042
+## 4350 20 TRUE 1 FALSE 1505147380 24042
+## 4351 27 TRUE 1 FALSE 1505143514 24042
+## 4352 28 TRUE 1 FALSE 1505143527 24042
+## 4353 15 TRUE 1 FALSE 1505146992 24042
+## 4354 16 TRUE 2 FALSE 1505151538 24042
+## 4355 17 TRUE 1 FALSE 1505151551 24042
+## 4356 38 TRUE 1 FALSE 1505100194 24042
+## 4357 25 TRUE 1 FALSE 1505151649 24042
+## 4358 41 TRUE 1 FALSE 1505143996 24042
+## 4359 43 TRUE 1 FALSE 1505144028 24042
+## 4360 22 TRUE 1 FALSE 1505147405 24042
+## 4361 34 TRUE 1 FALSE 1505152972 24042
+## 4362 41 TRUE 1 FALSE 1505100206 24042
+## 4363 20 TRUE 1 FALSE 1505143419 24042
+## 4364 30 TRUE 1 FALSE 1505143681 24042
+## 4365 33 TRUE 1 FALSE 1505143775 24042
+## 4366 44 TRUE 1 FALSE 1505144043 24042
+## 4367 40 TRUE 1 FALSE 1505100205 24042
+## 4368 35 TRUE 1 FALSE 1505143800 24042
+## 4369 23 TRUE 1 FALSE 1505151599 24042
+## 4370 32 TRUE 1 FALSE 1505143720 24042
+## 4371 23 TRUE 1 FALSE 1505143462 24042
+## 4372 42 TRUE 1 FALSE 1505144022 24042
+## 4373 21 TRUE 1 FALSE 1505143437 24042
+## 4374 39 TRUE 1 FALSE 1505143941 24042
+## 4375 3 TRUE 1 FALSE 1504839912 64610
+## 4376 8 TRUE 1 FALSE 1504840037 64610
+## 4377 23 TRUE 1 FALSE 1504840960 64610
+## 4378 40 TRUE 1 FALSE 1504841449 64610
+## 4379 10 TRUE 1 FALSE 1504840061 64610
+## 4380 11 TRUE 1 FALSE 1504840087 64610
+## 4381 25 TRUE 1 FALSE 1504841020 64610
+## 4382 26 TRUE 1 FALSE 1504841054 64610
+## 4383 15 TRUE 1 FALSE 1504840305 64610
+## 4384 16 TRUE 1 FALSE 1504840316 64610
+## 4385 17 TRUE 1 FALSE 1504840367 64610
+## 4386 18 TRUE 1 FALSE 1504840398 64610
+## 4387 21 TRUE 1 FALSE 1504840486 64610
+## 4388 22 TRUE 1 FALSE 1504840913 64610
+## 4389 12 TRUE 1 FALSE 1504840095 64610
+## 4390 14 TRUE 1 FALSE 1504840262 64610
+## 4391 27 TRUE 1 FALSE 1504841063 64610
+## 4392 33 TRUE 1 FALSE 1504841311 64610
+## 4393 36 TRUE 1 FALSE 1504841395 64610
+## 4394 38 TRUE 1 FALSE 1504841435 64610
+## 4395 31 TRUE 2 FALSE 1504841253 64610
+## 4396 39 TRUE 1 FALSE 1504841445 64610
+## 4397 40 TRUE 1 FALSE 1504888964 34362
+## 4398 41 TRUE 2 FALSE 1506118825 34362
+## 4399 34 TRUE 2 TRUE 1504888707 34362
+## 4400 32 TRUE 2 FALSE 1504888209 34362
+## 4401 33 TRUE 1 FALSE 1504888294 34362
+## 4402 35 TRUE 1 FALSE 1504888888 34362
+## 4403 38 TRUE 3 FALSE 1506117762 34362
+## 4404 9 TRUE 1 FALSE 1506136575 34362
+## 4405 42 TRUE 1 FALSE 1506118837 34362
+## 4406 39 TRUE 1 FALSE 1506118744 34362
+## 4407 31 TRUE 1 FALSE 1504888015 34362
+## 4408 11 TRUE 3 FALSE 1504886090 34362
+## 4409 14 TRUE 1 TRUE 1504886933 34362
+## 4410 15 TRUE 2 FALSE 1504886997 34362
+## 4411 17 TRUE 1 TRUE 1504887286 34362
+## 4412 19 TRUE 1 FALSE 1504887532 34362
+## 4413 21 TRUE 1 FALSE 1504887572 34362
+## 4414 22 TRUE 2 FALSE 1504887595 34362
+## 4415 23 TRUE 1 FALSE 1504887646 34362
+## 4416 25 TRUE 1 FALSE 1504887680 34362
+## 4417 27 TRUE 1 TRUE 1504887845 34362
+## 4418 29 TRUE 1 FALSE 1504887910 34362
+## 4419 27 TRUE 8 FALSE 1506138777 34362
+## 4420 28 TRUE 2 FALSE 1506139211 34362
+## 4421 32 TRUE 1 FALSE 1506139348 34362
+## 4422 34 TRUE 4 TRUE 1506139898 34362
+## 4423 41 TRUE 1 FALSE 1504889009 34362
+## 4424 12 TRUE 1 FALSE 1506119495 34362
+## 4425 13 TRUE 1 FALSE 1506119507 34362
+## 4426 14 TRUE 1 FALSE 1506119536 34362
+## 4427 15 TRUE 1 FALSE 1506119620 34362
+## 4428 16 TRUE 2 FALSE 1506119648 34362
+## 4429 17 TRUE 1 FALSE 1506119657 34362
+## 4430 18 TRUE 1 FALSE 1506132322 34362
+## 4431 19 TRUE 1 FALSE 1506132357 34362
+## 4432 20 TRUE 1 FALSE 1506132406 34362
+## 4433 22 TRUE 1 FALSE 1506132426 34362
+## 4434 23 TRUE 1 FALSE 1506132512 34362
+## 4435 24 TRUE 1 FALSE 1506132524 34362
+## 4436 11 TRUE 1 FALSE 1506136592 34362
+## 4437 13 TRUE 2 FALSE 1506136666 34362
+## 4438 14 TRUE 1 FALSE 1506136682 34362
+## 4439 16 TRUE 1 FALSE 1506136712 34362
+## 4440 17 TRUE 1 FALSE 1506136717 34362
+## 4441 19 TRUE 1 FALSE 1506136723 34362
+## 4442 21 TRUE 1 FALSE 1506136737 34362
+## 4443 23 TRUE 1 FALSE 1506136748 34362
+## 4444 25 TRUE 1 FALSE 1506136760 34362
+## 4445 30 TRUE 1 FALSE 1506117151 34362
+## 4446 32 TRUE 1 FALSE 1506117472 34362
+## 4447 33 TRUE 1 FALSE 1506117582 34362
+## 4448 35 TRUE 1 FALSE 1506117600 34362
+## 4449 36 TRUE 1 FALSE 1506117677 34362
+## 4450 37 TRUE 1 FALSE 1506117706 34362
+## 4451 27 TRUE 1 FALSE 1506114680 34362
+## 4452 29 TRUE 1 FALSE 1506114712 34362
+## 4453 30 TRUE 2 FALSE 1506114816 34362
+## 4454 31 TRUE 1 FALSE 1506114859 34362
+## 4455 32 TRUE 1 FALSE 1506114893 34362
+## 4456 33 TRUE 1 FALSE 1506114953 34362
+## 4457 43 TRUE 1 FALSE 1506118853 34362
+## 4458 44 TRUE 1 FALSE 1506118889 34362
+## 4459 46 TRUE 1 FALSE 1506118936 34362
+## 4460 47 TRUE 1 FALSE 1506118958 34362
+## 4461 49 TRUE 2 FALSE 1506119005 34362
+## 4462 50 TRUE 1 FALSE 1506119019 34362
+## 4463 51 TRUE 1 FALSE 1506119032 34362
+## 4464 53 TRUE 1 FALSE 1506119039 34362
+## 4465 54 TRUE 1 FALSE 1506119041 34362
+## 4466 19 TRUE 1 FALSE 1506112971 34362
+## 4467 20 TRUE 1 FALSE 1506113006 34362
+## 4468 21 TRUE 1 FALSE 1506113015 34362
+## 4469 22 TRUE 1 FALSE 1506113019 34362
+## 4470 3 TRUE 1 FALSE 1506113278 34362
+## 4471 5 TRUE 1 FALSE 1506113324 34362
+## 4472 8 TRUE 1 FALSE 1506113760 34362
+## 4473 9 TRUE 1 FALSE 1506113769 34362
+## 4474 10 TRUE 1 FALSE 1506113810 34362
+## 4475 11 TRUE 1 FALSE 1506113812 34362
+## 4476 13 TRUE 1 FALSE 1506113916 34362
+## 4477 14 TRUE 1 FALSE 1506113926 34362
+## 4478 15 TRUE 1 FALSE 1506113938 34362
+## 4479 17 TRUE 1 FALSE 1506113970 34362
+## 4480 21 TRUE 4 FALSE 1506114287 34362
+## 4481 22 TRUE 1 FALSE 1506114375 34362
+## 4482 23 TRUE 2 FALSE 1506114468 34362
+## 4483 26 TRUE 1 FALSE 1506114663 34362
+## 4484 33 TRUE 4 FALSE 1506111119 34362
+## 4485 35 TRUE 1 FALSE 1506111166 34362
+## 4486 39 TRUE 1 FALSE 1506111231 34362
+## 4487 40 TRUE 1 FALSE 1506111233 34362
+## 4488 34 TRUE 2 FALSE 1506115001 34362
+## 4489 36 TRUE 1 FALSE 1506115038 34362
+## 4490 37 TRUE 2 FALSE 1506115062 34362
+## 4491 38 TRUE 1 FALSE 1506115083 34362
+## 4492 40 TRUE 1 FALSE 1506115222 34362
+## 4493 41 TRUE 1 FALSE 1506115225 34362
+## 4494 4 TRUE 1 FALSE 1506115908 34362
+## 4495 6 TRUE 2 FALSE 1506116001 34362
+## 4496 7 TRUE 1 FALSE 1506116063 34362
+## 4497 9 TRUE 1 FALSE 1506116101 34362
+## 4498 10 TRUE 1 FALSE 1506116112 34362
+## 4499 12 TRUE 1 FALSE 1506116129 34362
+## 4500 13 TRUE 1 FALSE 1506116143 34362
+## 4501 14 TRUE 1 FALSE 1506116182 34362
+## 4502 15 TRUE 3 FALSE 1506116401 34362
+## 4503 17 TRUE 1 FALSE 1506116527 34362
+## 4504 18 TRUE 1 FALSE 1506116542 34362
+## 4505 20 TRUE 1 FALSE 1506116948 34362
+## 4506 21 TRUE 1 FALSE 1506116972 34362
+## 4507 23 TRUE 1 FALSE 1506117021 34362
+## 4508 27 TRUE 1 FALSE 1506117051 34362
+## 4509 28 TRUE 1 FALSE 1506117065 34362
+## 4510 30 TRUE 4 FALSE 1506110484 34362
+## 4511 32 TRUE 2 FALSE 1506110591 34362
+## 4512 3 TRUE 1 FALSE 1506119115 34362
+## 4513 4 TRUE 1 FALSE 1506119126 34362
+## 4514 5 TRUE 1 FALSE 1506119137 34362
+## 4515 7 TRUE 1 FALSE 1506119259 34362
+## 4516 8 TRUE 1 FALSE 1506119448 34362
+## 4517 9 TRUE 2 FALSE 1506119458 34362
+## 4518 3 TRUE 1 FALSE 1506111521 34362
+## 4519 4 TRUE 1 FALSE 1506111528 34362
+## 4520 6 TRUE 1 FALSE 1506111608 34362
+## 4521 7 TRUE 1 FALSE 1506111636 34362
+## 4522 8 TRUE 1 FALSE 1506111683 34362
+## 4523 9 TRUE 1 FALSE 1506111716 34362
+## 4524 10 TRUE 1 FALSE 1506111720 34362
+## 4525 12 TRUE 1 FALSE 1506111759 34362
+## 4526 17 TRUE 1 FALSE 1506112837 34362
+## 4527 18 TRUE 1 FALSE 1506112865 34362
+## 4528 5 TRUE 1 TRUE 1504885877 34362
+## 4529 5 TRUE 1 FALSE 1506109084 34362
+## 4530 6 TRUE 1 TRUE 1506109339 34362
+## 4531 7 TRUE 1 FALSE 1506109387 34362
+## 4532 8 TRUE 1 FALSE 1506109391 34362
+## 4533 11 TRUE 1 FALSE 1506109755 34362
+## 4534 17 TRUE 1 FALSE 1506109906 34362
+## 4535 18 TRUE 1 FALSE 1506109918 34362
+## 4536 19 TRUE 1 FALSE 1506109951 34362
+## 4537 22 TRUE 2 FALSE 1506110152 34362
+## 4538 23 TRUE 1 FALSE 1506110158 34362
+## 4539 25 TRUE 1 FALSE 1506110209 34362
+## 4540 28 TRUE 2 FALSE 1506110315 34362
+## 4541 29 TRUE 1 FALSE 1506110320 34362
+## 4542 25 TRUE 1 FALSE 1506107547 34362
+## 4543 27 TRUE 1 FALSE 1506107860 34362
+## 4544 29 TRUE 1 FALSE 1506107992 34362
+## 4545 31 TRUE 2 FALSE 1506108034 34362
+## 4546 10 TRUE 1 FALSE 1506104895 34362
+## 4547 11 TRUE 1 FALSE 1506104920 34362
+## 4548 12 TRUE 1 FALSE 1506104924 34362
+## 4549 14 TRUE 1 FALSE 1506105185 34362
+## 4550 15 TRUE 1 FALSE 1506105211 34362
+## 4551 16 TRUE 1 FALSE 1506105226 34362
+## 4552 17 TRUE 1 FALSE 1506105951 34362
+## 4553 11 TRUE 2 FALSE 1506119491 34362
+## 4554 35 TRUE 4 TRUE 1506140241 34362
+## 4555 36 TRUE 2 FALSE 1506140327 34362
+## 4556 38 TRUE 1 FALSE 1506140378 34362
+## 4557 40 TRUE 2 FALSE 1506140983 34362
+## 4558 41 TRUE 1 FALSE 1506141096 34362
+## 4559 6 TRUE 1 TRUE 1504885915 34362
+## 4560 8 TRUE 1 FALSE 1504885972 34362
+## 4561 9 TRUE 1 FALSE 1504885986 34362
+## 4562 10 TRUE 1 FALSE 1504886007 34362
+## 4563 11 TRUE 2 FALSE 1506106797 34362
+## 4564 14 TRUE 1 FALSE 1506106940 34362
+## 4565 15 TRUE 1 FALSE 1506107201 34362
+## 4566 17 TRUE 1 FALSE 1506107296 34362
+## 4567 19 TRUE 1 FALSE 1506107336 34362
+## 4568 21 TRUE 1 FALSE 1506107362 34362
+## 4569 22 TRUE 1 FALSE 1506107383 34362
+## 4570 23 TRUE 2 FALSE 1506107463 34362
+## 4571 21 TRUE 1 FALSE 1506106018 34362
+## 4572 22 TRUE 1 FALSE 1506106043 34362
+## 4573 23 TRUE 1 FALSE 1506106055 34362
+## 4574 3 TRUE 1 FALSE 1506104741 34362
+## 4575 8 TRUE 1 FALSE 1506104870 34362
+## 4576 27 TRUE 1 FALSE 1506106117 34362
+## 4577 32 TRUE 1 FALSE 1506108350 34362
+## 4578 33 TRUE 1 FALSE 1506108369 34362
+## 4579 34 TRUE 2 FALSE 1506108577 34362
+## 4580 35 TRUE 2 FALSE 1506108820 34362
+## 4581 18 TRUE 1 FALSE 1506105962 34362
+## 4582 43 TRUE 1 TRUE 1506142792 34362
+## 4583 27 TRUE 1 TRUE 1506132695 34362
+## 4584 25 TRUE 1 FALSE 1506106088 34362
+## 4585 26 TRUE 1 FALSE 1506106112 34362
+## 4586 30 TRUE 1 FALSE 1506132845 34362
+## 4587 31 TRUE 1 FALSE 1506106207 34362
+## 4588 33 TRUE 1 FALSE 1506106233 34362
+## 4589 36 TRUE 1 FALSE 1506106320 34362
+## 4590 38 TRUE 1 FALSE 1506106358 34362
+## 4591 39 TRUE 1 FALSE 1506106366 34362
+## 4592 42 TRUE 4 TRUE 1506142686 34362
+## 4593 40 TRUE 1 FALSE 1506108879 34362
+## 4594 41 TRUE 1 FALSE 1506108883 34362
+## 4595 28 TRUE 2 FALSE 1506132825 34362
+## 4596 29 TRUE 1 FALSE 1506132831 34362
+## 4597 10 TRUE 1 FALSE 1506106670 34362
+## 4598 32 TRUE 1 FALSE 1506132908 34362
+## 4599 33 TRUE 1 FALSE 1506132929 34362
+## 4600 35 TRUE 1 FALSE 1506132958 34362
+## 4601 37 TRUE 1 FALSE 1506132975 34362
+## 4602 38 TRUE 1 FALSE 1506132977 34362
+## 4603 40 TRUE 1 FALSE 1506106370 34362
+## 4604 5 TRUE 1 FALSE 1506106592 34362
+## 4605 6 TRUE 1 FALSE 1506106606 34362
+## 4606 9 TRUE 1 FALSE 1506106656 34362
+## 4607 47 TRUE 2 TRUE 1506143157 34362
+## 4608 48 TRUE 5 TRUE 1506143300 34362
+## 4609 50 TRUE 1 FALSE 1506143310 34362
+## 4610 51 TRUE 1 FALSE 1506143312 34362
+## 4611 3 TRUE 1 FALSE 1506136516 34362
+## 4612 8 TRUE 1 FALSE 1506106648 34362
+## 4613 5 TRUE 1 FALSE 1506136526 34362
+## 4614 8 TRUE 1 FALSE 1506136538 34362
+## 4615 40 TRUE 1 FALSE 1505233830 35235
+## 4616 14 TRUE 1 FALSE 1505159998 35235
+## 4617 25 TRUE 1 FALSE 1505233569 35235
+## 4618 8 TRUE 1 FALSE 1505159873 35235
+## 4619 3 TRUE 1 FALSE 1505159831 35235
+## 4620 23 TRUE 1 FALSE 1505228886 35235
+## 4621 39 TRUE 1 FALSE 1505233824 35235
+## 4622 11 TRUE 2 FALSE 1505159957 35235
+## 4623 16 TRUE 1 FALSE 1505160038 35235
+## 4624 22 TRUE 1 FALSE 1505228880 35235
+## 4625 15 TRUE 1 FALSE 1505160013 35235
+## 4626 27 TRUE 1 FALSE 1505233585 35235
+## 4627 31 TRUE 1 FALSE 1505233657 35235
+## 4628 36 TRUE 1 FALSE 1505233766 35235
+## 4629 18 TRUE 1 FALSE 1505160064 35235
+## 4630 38 TRUE 1 FALSE 1505233815 35235
+## 4631 33 TRUE 1 FALSE 1505233722 35235
+## 4632 21 TRUE 2 FALSE 1505228867 35235
+## 4633 26 TRUE 1 FALSE 1505233578 35235
+## 4634 12 TRUE 2 FALSE 1505159969 35235
+## 4635 17 TRUE 1 FALSE 1505160053 35235
+## 4636 10 TRUE 1 FALSE 1505159886 35235
+## datetime2
+## 1 2017-09-17 12:08:16
+## 2 2017-09-17 12:20:20
+## 3 2017-09-11 12:21:23
+## 4 2017-09-17 12:08:06
+## 5 2017-09-17 12:09:05
+## 6 2017-09-11 19:48:35
+## 7 2017-09-17 12:19:43
+## 8 2017-09-17 12:07:59
+## 9 2017-09-17 12:07:18
+## 10 2017-09-17 12:08:04
+## 11 2017-09-11 12:21:36
+## 12 2017-09-11 20:40:07
+## 13 2017-09-11 12:20:12
+## 14 2017-09-11 20:34:41
+## 15 2017-09-11 19:56:47
+## 16 2017-09-15 14:58:17
+## 17 2017-09-17 12:08:47
+## 18 2017-09-15 14:56:07
+## 19 2017-09-17 12:09:32
+## 20 2017-09-15 14:57:19
+## 21 2017-09-17 12:09:14
+## 22 2017-09-17 12:08:29
+## 23 2017-09-15 14:55:53
+## 24 2017-09-17 12:17:17
+## 25 2017-09-15 14:56:49
+## 26 2017-09-11 12:20:07
+## 27 2017-09-11 20:40:19
+## 28 2017-09-15 15:52:48
+## 29 2017-09-11 12:21:43
+## 30 2017-09-11 19:57:05
+## 31 2017-09-11 19:57:13
+## 32 2017-09-15 14:59:12
+## 33 2017-09-17 12:10:34
+## 34 2017-09-11 19:58:16
+## 35 2017-09-17 12:12:08
+## 36 2017-09-17 12:12:12
+## 37 2017-09-11 20:33:27
+## 38 2017-09-15 14:58:01
+## 39 2017-09-15 14:58:07
+## 40 2017-09-11 12:19:50
+## 41 2017-09-17 12:15:05
+## 42 2017-09-11 12:22:16
+## 43 2017-09-15 14:58:44
+## 44 2017-09-15 15:53:56
+## 45 2017-09-11 19:57:28
+## 46 2017-09-15 14:59:45
+## 47 2017-09-15 15:51:26
+## 48 2017-09-15 14:55:34
+## 49 2017-09-17 12:19:23
+## 50 2017-09-15 15:52:18
+## 51 2017-09-17 12:15:02
+## 52 2017-09-11 20:33:16
+## 53 2017-09-11 12:18:34
+## 54 2017-09-15 15:53:37
+## 55 2017-09-15 15:53:52
+## 56 2017-09-15 14:42:56
+## 57 2017-09-15 15:49:56
+## 58 2017-09-11 20:11:59
+## 59 2017-09-15 15:00:16
+## 60 2017-09-11 20:01:00
+## 61 2017-09-17 12:06:35
+## 62 2017-09-15 15:51:50
+## 63 2017-09-11 12:19:36
+## 64 2017-09-17 12:14:39
+## 65 2017-09-15 14:34:31
+## 66 2017-09-15 14:41:51
+## 67 2017-09-15 14:42:04
+## 68 2017-09-15 14:50:17
+## 69 2017-09-15 15:54:47
+## 70 2017-09-15 15:50:19
+## 71 2017-09-17 12:05:45
+## 72 2017-09-17 12:05:52
+## 73 2017-09-17 12:06:31
+## 74 2017-09-17 12:16:35
+## 75 2017-09-17 12:13:06
+## 76 2017-09-15 15:45:14
+## 77 2017-09-17 12:12:50
+## 78 2017-09-15 14:34:22
+## 79 2017-09-11 20:08:16
+## 80 2017-09-11 20:08:33
+## 81 2017-09-17 12:22:29
+## 82 2017-09-11 12:22:33
+## 83 2017-09-11 12:23:47
+## 84 2017-09-11 12:25:59
+## 85 2017-09-15 15:00:22
+## 86 2017-09-17 12:06:28
+## 87 2017-09-15 14:54:03
+## 88 2017-09-11 20:28:35
+## 89 2017-09-11 20:31:20
+## 90 2017-09-11 20:23:07
+## 91 2017-09-15 15:45:23
+## 92 2017-09-11 20:08:57
+## 93 2017-09-11 20:15:02
+## 94 2017-09-15 14:43:28
+## 95 2017-09-11 20:20:29
+## 96 2017-09-11 20:22:25
+## 97 2017-09-15 15:00:38
+## 98 2017-09-11 20:04:24
+## 99 2017-09-11 20:07:00
+## 100 2017-09-17 12:12:21
+## 101 2017-09-11 20:07:23
+## 102 2017-09-11 20:07:56
+## 103 2017-09-15 15:38:18
+## 104 2017-09-15 15:46:16
+## 105 2017-09-15 15:48:39
+## 106 2017-09-17 12:05:01
+## 107 2017-09-15 14:51:02
+## 108 2017-09-15 14:52:48
+## 109 2017-09-15 14:52:58
+## 110 2017-09-15 14:53:18
+## 111 2017-09-11 20:28:24
+## 112 2017-09-15 15:00:59
+## 113 2017-09-11 20:23:04
+## 114 2017-09-15 14:45:38
+## 115 2017-09-15 14:45:50
+## 116 2017-09-15 14:46:05
+## 117 2017-09-15 15:38:26
+## 118 2017-09-15 15:38:50
+## 119 2017-09-11 20:40:56
+## 120 2017-09-15 15:54:10
+## 121 2017-09-15 15:55:01
+## 122 2017-09-11 12:26:11
+## 123 2017-09-11 12:27:35
+## 124 2017-09-15 15:00:56
+## 125 2017-09-15 15:42:54
+## 126 2017-09-11 12:31:05
+## 127 2017-09-11 12:31:13
+## 128 2017-09-11 12:33:28
+## 129 2017-09-15 15:37:49
+## 130 2017-09-15 14:46:10
+## 131 2017-09-11 20:10:17
+## 132 2017-09-11 20:11:31
+## 133 2017-09-15 15:39:49
+## 134 2017-09-11 20:14:53
+## 135 2017-09-15 15:42:07
+## 136 2017-09-15 15:42:26
+## 137 2017-09-15 14:45:14
+## 138 2017-09-15 14:45:25
+## 139 2017-09-15 15:43:27
+## 140 2017-09-15 15:44:06
+## 141 2017-09-17 12:39:17
+## 142 2017-09-15 14:47:40
+## 143 2017-09-15 14:50:59
+## 144 2017-09-17 12:04:42
+## 145 2017-09-17 12:29:37
+## 146 2017-09-11 20:26:48
+## 147 2017-09-11 20:27:45
+## 148 2017-09-15 14:44:11
+## 149 2017-09-17 12:30:40
+## 150 2017-09-17 12:31:10
+## 151 2017-09-17 12:31:34
+## 152 2017-09-17 12:37:21
+## 153 2017-09-15 15:44:36
+## 154 2017-09-17 13:18:16
+## 155 2017-09-17 12:47:30
+## 156 2017-09-15 15:39:03
+## 157 2017-09-17 12:22:51
+## 158 2017-09-15 15:39:32
+## 159 2017-09-17 12:29:46
+## 160 2017-09-17 12:30:11
+## 161 2017-09-15 15:55:29
+## 162 2017-09-17 13:04:28
+## 163 2017-09-17 13:07:14
+## 164 2017-09-17 13:10:52
+## 165 2017-09-15 15:56:24
+## 166 2017-09-17 12:38:38
+## 167 2017-09-11 20:47:14
+## 168 2017-09-17 13:18:18
+## 169 2017-09-17 12:04:07
+## 170 2017-09-15 15:39:19
+## 171 2017-09-15 14:50:05
+## 172 2017-09-17 12:53:32
+## 173 2017-09-15 14:43:35
+## 174 2017-09-11 20:43:04
+## 175 2017-09-11 20:43:43
+## 176 2017-09-11 12:34:04
+## 177 2017-09-17 13:13:53
+## 178 2017-09-17 13:17:27
+## 179 2017-09-11 20:42:01
+## 180 2017-09-17 12:04:33
+## 181 2017-09-11 20:41:55
+## 182 2017-09-17 13:18:08
+## 183 2017-09-11 12:35:47
+## 184 2017-09-17 12:54:06
+## 185 2017-09-17 12:53:19
+## 186 2017-09-15 15:56:27
+## 187 2017-09-11 20:46:46
+## 188 2017-09-11 20:47:10
+## 189 2017-09-15 14:47:12
+## 190 2017-09-11 12:34:40
+## 191 2017-09-11 12:35:24
+## 192 2017-09-11 12:35:42
+## 193 2017-09-11 20:46:21
+## 194 2017-09-15 15:55:34
+## 195 2017-09-15 15:56:14
+## 196 2017-09-11 12:05:30
+## 197 2017-09-12 08:13:05
+## 198 2017-09-12 08:08:40
+## 199 2017-09-11 12:04:22
+## 200 2017-09-19 13:49:20
+## 201 2017-09-19 13:49:46
+## 202 2017-09-12 08:09:28
+## 203 2017-09-12 08:07:47
+## 204 2017-09-19 15:55:33
+## 205 2017-09-12 08:41:53
+## 206 2017-09-12 08:42:00
+## 207 2017-09-12 08:10:38
+## 208 2017-09-19 14:02:33
+## 209 2017-09-19 13:52:40
+## 210 2017-09-19 16:02:04
+## 211 2017-09-12 08:07:09
+## 212 2017-09-19 13:46:08
+## 213 2017-09-12 08:41:40
+## 214 2017-09-12 08:06:04
+## 215 2017-09-13 14:21:18
+## 216 2017-09-12 08:25:22
+## 217 2017-09-13 14:21:57
+## 218 2017-09-19 13:54:41
+## 219 2017-09-13 14:22:12
+## 220 2017-09-12 08:13:32
+## 221 2017-09-12 08:06:48
+## 222 2017-09-11 12:04:01
+## 223 2017-09-13 19:29:58
+## 224 2017-09-12 08:41:22
+## 225 2017-09-12 08:05:54
+## 226 2017-09-20 20:52:49
+## 227 2017-09-20 20:31:34
+## 228 2017-09-12 08:26:34
+## 229 2017-09-13 14:17:00
+## 230 2017-09-11 11:56:45
+## 231 2017-09-19 14:19:25
+## 232 2017-09-19 14:19:28
+## 233 2017-09-19 15:50:29
+## 234 2017-09-20 20:51:55
+## 235 2017-09-20 20:52:19
+## 236 2017-09-12 08:15:43
+## 237 2017-09-12 08:15:45
+## 238 2017-09-12 09:46:15
+## 239 2017-09-13 14:23:01
+## 240 2017-09-12 08:41:07
+## 241 2017-09-12 08:40:41
+## 242 2017-09-19 15:47:20
+## 243 2017-09-12 08:15:31
+## 244 2017-09-13 19:22:57
+## 245 2017-09-12 09:46:02
+## 246 2017-09-19 14:35:21
+## 247 2017-09-13 19:30:49
+## 248 2017-09-20 20:14:16
+## 249 2017-09-19 16:02:12
+## 250 2017-09-13 14:23:08
+## 251 2017-09-12 08:14:53
+## 252 2017-09-12 08:40:10
+## 253 2017-09-11 12:00:29
+## 254 2017-09-11 12:02:14
+## 255 2017-09-19 14:22:28
+## 256 2017-09-19 14:28:13
+## 257 2017-09-19 14:29:09
+## 258 2017-09-13 14:20:35
+## 259 2017-09-12 09:47:05
+## 260 2017-09-12 08:37:00
+## 261 2017-09-12 09:47:49
+## 262 2017-09-19 16:02:13
+## 263 2017-09-19 14:20:50
+## 264 2017-09-13 14:25:14
+## 265 2017-09-19 15:46:17
+## 266 2017-09-13 19:22:10
+## 267 2017-09-12 09:45:17
+## 268 2017-09-12 05:21:30
+## 269 2017-09-13 14:20:53
+## 270 2017-09-19 14:55:37
+## 271 2017-09-12 09:47:29
+## 272 2017-09-12 08:28:16
+## 273 2017-09-12 05:16:15
+## 274 2017-09-12 05:16:48
+## 275 2017-09-12 05:17:09
+## 276 2017-09-11 11:59:54
+## 277 2017-09-12 08:39:34
+## 278 2017-09-12 05:19:22
+## 279 2017-09-12 05:20:01
+## 280 2017-09-12 05:20:25
+## 281 2017-09-20 20:12:15
+## 282 2017-09-12 05:23:29
+## 283 2017-09-20 20:14:00
+## 284 2017-09-12 08:36:08
+## 285 2017-09-13 14:12:47
+## 286 2017-09-11 11:57:58
+## 287 2017-09-11 11:58:27
+## 288 2017-09-11 11:58:47
+## 289 2017-09-13 14:23:15
+## 290 2017-09-13 14:24:14
+## 291 2017-09-13 14:17:45
+## 292 2017-09-12 07:13:49
+## 293 2017-09-13 14:20:22
+## 294 2017-09-20 20:50:00
+## 295 2017-09-12 05:11:43
+## 296 2017-09-15 13:47:54
+## 297 2017-09-15 13:48:36
+## 298 2017-09-15 13:48:43
+## 299 2017-09-11 12:06:12
+## 300 2017-09-11 11:58:51
+## 301 2017-09-13 14:17:31
+## 302 2017-09-11 12:07:31
+## 303 2017-09-13 14:17:47
+## 304 2017-09-11 12:09:24
+## 305 2017-09-11 12:10:08
+## 306 2017-09-12 05:23:45
+## 307 2017-09-11 12:13:38
+## 308 2017-09-12 08:28:27
+## 309 2017-09-11 12:06:22
+## 310 2017-09-11 12:07:10
+## 311 2017-09-12 07:11:10
+## 312 2017-09-11 12:07:38
+## 313 2017-09-12 07:13:18
+## 314 2017-09-20 20:07:19
+## 315 2017-09-20 20:10:52
+## 316 2017-09-20 20:12:29
+## 317 2017-09-13 14:11:51
+## 318 2017-09-13 14:12:09
+## 319 2017-09-19 15:32:07
+## 320 2017-09-13 14:14:25
+## 321 2017-09-13 14:16:23
+## 322 2017-09-15 13:41:40
+## 323 2017-09-13 14:17:12
+## 324 2017-09-12 08:38:40
+## 325 2017-09-13 19:21:34
+## 326 2017-09-20 20:50:37
+## 327 2017-09-12 05:10:44
+## 328 2017-09-15 13:47:01
+## 329 2017-09-12 05:13:32
+## 330 2017-09-20 20:56:14
+## 331 2017-09-20 20:56:58
+## 332 2017-09-13 20:09:25
+## 333 2017-09-13 20:11:31
+## 334 2017-09-13 20:30:23
+## 335 2017-09-13 20:31:27
+## 336 2017-09-13 20:31:39
+## 337 2017-09-13 20:31:41
+## 338 2017-09-11 12:13:34
+## 339 2017-09-12 07:07:52
+## 340 2017-09-12 07:09:14
+## 341 2017-09-12 07:10:09
+## 342 2017-09-12 07:10:16
+## 343 2017-09-12 08:28:56
+## 344 2017-09-12 07:13:10
+## 345 2017-09-12 08:31:29
+## 346 2017-09-12 08:31:43
+## 347 2017-09-12 08:32:23
+## 348 2017-09-12 08:34:52
+## 349 2017-09-12 08:35:31
+## 350 2017-09-15 12:10:00
+## 351 2017-09-19 15:34:39
+## 352 2017-09-12 08:37:28
+## 353 2017-09-12 08:37:59
+## 354 2017-09-12 08:38:10
+## 355 2017-09-12 05:09:37
+## 356 2017-09-12 05:09:43
+## 357 2017-09-12 05:10:02
+## 358 2017-09-12 05:10:08
+## 359 2017-09-12 05:10:26
+## 360 2017-09-12 07:25:24
+## 361 2017-09-15 12:22:07
+## 362 2017-09-15 12:23:20
+## 363 2017-09-15 12:25:31
+## 364 2017-09-12 05:14:03
+## 365 2017-09-12 05:14:27
+## 366 2017-09-12 05:15:33
+## 367 2017-09-22 08:24:11
+## 368 2017-09-22 08:25:19
+## 369 2017-09-22 08:29:03
+## 370 2017-09-12 05:17:41
+## 371 2017-09-12 05:18:38
+## 372 2017-09-22 08:41:13
+## 373 2017-09-22 08:44:54
+## 374 2017-09-22 08:53:49
+## 375 2017-09-11 12:12:30
+## 376 2017-09-11 12:13:26
+## 377 2017-09-13 14:27:24
+## 378 2017-09-13 14:28:38
+## 379 2017-09-12 08:28:52
+## 380 2017-09-20 20:03:55
+## 381 2017-09-12 08:31:12
+## 382 2017-09-20 20:05:19
+## 383 2017-09-20 20:06:58
+## 384 2017-09-22 09:38:21
+## 385 2017-09-12 07:15:36
+## 386 2017-09-12 07:15:43
+## 387 2017-09-12 07:16:43
+## 388 2017-09-12 07:18:01
+## 389 2017-09-12 07:18:08
+## 390 2017-09-12 07:18:37
+## 391 2017-09-12 07:19:45
+## 392 2017-09-12 07:22:16
+## 393 2017-09-12 07:23:39
+## 394 2017-09-12 07:25:20
+## 395 2017-09-19 15:45:15
+## 396 2017-09-20 20:31:15
+## 397 2017-09-20 20:31:27
+## 398 2017-09-22 08:14:45
+## 399 2017-09-15 12:25:35
+## 400 2017-09-15 12:26:34
+## 401 2017-09-15 12:28:11
+## 402 2017-09-15 13:49:45
+## 403 2017-09-15 13:50:55
+## 404 2017-09-15 13:53:11
+## 405 2017-09-15 13:54:18
+## 406 2017-09-15 13:54:59
+## 407 2017-09-13 14:25:37
+## 408 2017-09-22 08:57:08
+## 409 2017-09-12 05:23:48
+## 410 2017-09-20 19:54:10
+## 411 2017-09-20 19:54:16
+## 412 2017-09-20 19:56:54
+## 413 2017-09-13 14:29:21
+## 414 2017-09-20 20:04:06
+## 415 2017-09-19 15:11:48
+## 416 2017-09-22 09:38:45
+## 417 2017-09-19 15:14:16
+## 418 2017-09-19 15:25:07
+## 419 2017-09-13 14:35:47
+## 420 2017-09-13 19:05:18
+## 421 2017-09-13 19:06:04
+## 422 2017-09-13 19:10:10
+## 423 2017-09-13 19:10:47
+## 424 2017-09-13 19:12:25
+## 425 2017-09-13 19:18:06
+## 426 2017-09-15 12:20:07
+## 427 2017-09-20 20:49:43
+## 428 2017-09-22 08:14:34
+## 429 2017-09-15 13:46:25
+## 430 2017-09-22 08:15:47
+## 431 2017-09-22 08:17:02
+## 432 2017-09-22 08:19:02
+## 433 2017-09-20 20:57:55
+## 434 2017-09-21 09:40:25
+## 435 2017-09-21 09:41:18
+## 436 2017-09-21 09:51:49
+## 437 2017-09-21 09:54:44
+## 438 2017-09-21 09:57:44
+## 439 2017-09-13 14:25:49
+## 440 2017-09-13 14:26:00
+## 441 2017-09-13 14:26:45
+## 442 2017-09-22 09:24:07
+## 443 2017-09-22 09:30:18
+## 444 2017-09-21 10:09:46
+## 445 2017-09-22 09:34:50
+## 446 2017-09-21 10:16:03
+## 447 2017-09-21 10:17:08
+## 448 2017-09-19 15:13:29
+## 449 2017-09-15 12:09:08
+## 450 2017-09-15 12:09:21
+## 451 2017-09-15 12:09:32
+## 452 2017-09-21 10:17:40
+## 453 2017-09-15 12:10:33
+## 454 2017-09-15 12:10:58
+## 455 2017-09-15 12:11:28
+## 456 2017-09-15 12:13:50
+## 457 2017-09-15 12:15:39
+## 458 2017-09-15 12:16:30
+## 459 2017-09-15 12:17:26
+## 460 2017-09-15 12:19:17
+## 461 2017-09-20 20:30:46
+## 462 2017-09-15 13:45:06
+## 463 2017-09-15 13:46:00
+## 464 2017-09-20 19:46:47
+## 465 2017-09-20 19:47:02
+## 466 2017-09-22 08:57:37
+## 467 2017-09-12 09:48:07
+## 468 2017-09-12 09:48:18
+## 469 2017-09-20 19:43:12
+## 470 2017-09-20 19:45:15
+## 471 2017-09-20 19:45:27
+## 472 2017-09-20 19:45:30
+## 473 2017-09-20 19:45:43
+## 474 2017-09-19 13:24:31
+## 475 2017-09-19 13:24:37
+## 476 2017-09-19 13:24:48
+## 477 2017-09-19 13:24:52
+## 478 2017-09-21 10:02:57
+## 479 2017-09-21 10:03:35
+## 480 2017-09-22 09:33:43
+## 481 2017-09-22 09:34:19
+## 482 2017-09-13 14:29:36
+## 483 2017-09-22 09:36:15
+## 484 2017-09-22 09:36:19
+## 485 2017-09-19 13:23:41
+## 486 2017-09-19 13:24:13
+## 487 2017-09-12 10:05:32
+## 488 2017-09-15 13:55:01
+## 489 2017-09-21 09:58:27
+## 490 2017-09-20 20:19:02
+## 491 2017-09-20 20:22:03
+## 492 2017-09-20 20:24:50
+## 493 2017-09-20 20:25:12
+## 494 2017-09-20 20:28:56
+## 495 2017-09-20 20:29:50
+## 496 2017-09-20 20:49:30
+## 497 2017-09-13 14:32:47
+## 498 2017-09-13 14:33:48
+## 499 2017-09-13 14:34:08
+## 500 2017-09-13 14:35:14
+## 501 2017-09-22 08:20:41
+## 502 2017-09-20 20:57:57
+## 503 2017-09-15 12:30:23
+## 504 2017-09-12 10:03:32
+## 505 2017-09-12 10:04:05
+## 506 2017-09-12 10:04:52
+## 507 2017-09-22 08:34:33
+## 508 2017-09-22 08:34:43
+## 509 2017-09-12 10:06:30
+## 510 2017-09-12 10:07:34
+## 511 2017-09-13 14:35:44
+## 512 2017-09-20 19:49:36
+## 513 2017-09-19 13:12:11
+## 514 2017-09-21 10:05:08
+## 515 2017-09-21 10:08:43
+## 516 2017-09-21 10:08:57
+## 517 2017-09-13 14:30:47
+## 518 2017-09-13 14:32:20
+## 519 2017-09-13 14:32:29
+## 520 2017-09-19 13:16:35
+## 521 2017-09-21 10:17:17
+## 522 2017-09-21 10:17:22
+## 523 2017-09-13 13:59:02
+## 524 2017-09-13 19:03:48
+## 525 2017-09-13 19:04:26
+## 526 2017-09-19 15:37:13
+## 527 2017-09-19 15:38:28
+## 528 2017-09-19 15:41:33
+## 529 2017-09-19 15:41:41
+## 530 2017-09-15 13:43:42
+## 531 2017-09-20 20:49:22
+## 532 2017-09-15 12:30:49
+## 533 2017-09-19 13:09:53
+## 534 2017-09-19 13:10:24
+## 535 2017-09-21 10:17:27
+## 536 2017-09-19 13:11:04
+## 537 2017-09-19 13:11:24
+## 538 2017-09-19 13:11:31
+## 539 2017-09-22 08:24:06
+## 540 2017-09-19 13:14:17
+## 541 2017-09-19 13:15:00
+## 542 2017-09-15 12:30:30
+## 543 2017-09-19 13:09:42
+## 544 2017-09-13 18:45:08
+## 545 2017-09-13 14:08:50
+## 546 2017-09-13 14:09:41
+## 547 2017-09-19 13:10:38
+## 548 2017-09-15 13:19:40
+## 549 2017-09-21 10:18:43
+## 550 2017-09-19 13:13:35
+## 551 2017-09-21 10:18:55
+## 552 2017-09-19 13:15:42
+## 553 2017-09-19 13:16:29
+## 554 2017-09-20 20:48:29
+## 555 2017-09-13 14:07:11
+## 556 2017-09-13 14:07:46
+## 557 2017-09-13 18:46:05
+## 558 2017-09-13 14:11:12
+## 559 2017-09-19 13:10:49
+## 560 2017-09-15 13:05:06
+## 561 2017-09-15 13:05:47
+## 562 2017-09-21 10:18:50
+## 563 2017-09-19 13:12:00
+## 564 2017-09-13 14:04:49
+## 565 2017-09-15 13:42:11
+## 566 2017-09-15 13:42:34
+## 567 2017-09-15 13:08:50
+## 568 2017-09-15 13:12:03
+## 569 2017-09-15 13:13:45
+## 570 2017-09-19 13:10:09
+## 571 2017-09-15 13:18:09
+## 572 2017-09-13 18:57:30
+## 573 2017-09-15 13:24:22
+## 574 2017-09-15 13:06:27
+## 575 2017-09-15 13:26:34
+## 576 2017-09-15 13:27:51
+## 577 2017-09-13 14:06:08
+## 578 2017-09-13 14:06:47
+## 579 2017-09-15 13:07:54
+## 580 2017-09-15 13:04:45
+## 581 2017-09-15 13:04:55
+## 582 2017-09-15 13:17:40
+## 583 2017-09-13 18:50:17
+## 584 2017-09-13 19:02:46
+## 585 2017-09-13 13:59:41
+## 586 2017-09-22 09:47:53
+## 587 2017-09-15 13:25:01
+## 588 2017-09-22 09:47:50
+## 589 2017-09-13 18:50:57
+## 590 2017-09-13 18:52:14
+## 591 2017-09-20 20:46:20
+## 592 2017-09-22 09:40:41
+## 593 2017-09-13 19:03:22
+## 594 2017-09-15 13:16:43
+## 595 2017-09-13 18:57:51
+## 596 2017-09-15 13:15:40
+## 597 2017-09-15 12:30:53
+## 598 2017-09-13 14:01:06
+## 599 2017-09-15 13:08:20
+## 600 2017-09-20 20:45:46
+## 601 2017-09-15 13:15:27
+## 602 2017-09-22 09:43:52
+## 603 2017-09-22 09:41:06
+## 604 2017-09-22 09:46:15
+## 605 2017-09-15 13:14:59
+## 606 2017-09-15 13:15:58
+## 607 2017-09-15 13:14:33
+## 608 2017-09-17 13:26:41
+## 609 2017-09-09 15:19:30
+## 610 2017-09-09 15:20:35
+## 611 2017-09-14 08:58:27
+## 612 <NA>
+## 613 2017-09-09 15:19:40
+## 614 2017-09-09 15:22:38
+## 615 2017-09-14 09:15:38
+## 616 2017-09-09 15:17:28
+## 617 2017-09-09 15:18:46
+## 618 2017-09-14 08:58:07
+## 619 2017-09-13 19:16:37
+## 620 2017-09-13 19:17:38
+## 621 2017-09-13 19:15:12
+## 622 2017-09-13 19:18:54
+## 623 2017-09-13 19:20:21
+## 624 2017-09-09 15:16:03
+## 625 2017-09-09 15:16:16
+## 626 2017-09-09 15:16:58
+## 627 2017-09-14 09:14:59
+## 628 2017-09-13 15:14:34
+## 629 2017-09-14 09:03:01
+## 630 2017-09-14 09:21:26
+## 631 2017-09-13 22:17:19
+## 632 2017-09-13 19:17:44
+## 633 2017-09-09 14:53:54
+## 634 2017-09-09 14:55:22
+## 635 2017-09-09 14:55:40
+## 636 2017-09-09 14:56:00
+## 637 2017-09-09 14:56:06
+## 638 2017-09-09 15:15:40
+## 639 2017-09-14 09:45:38
+## 640 2017-09-16 17:38:17
+## 641 2017-09-13 15:13:28
+## 642 2017-09-14 09:03:22
+## 643 2017-09-14 09:03:42
+## 644 2017-09-14 09:04:06
+## 645 1969-12-31 19:25:05
+## 646 2017-09-17 12:44:22
+## 647 2017-09-17 12:45:48
+## 648 2017-09-17 12:45:58
+## 649 2017-09-17 12:47:25
+## 650 2017-09-14 09:00:41
+## 651 2017-09-14 09:00:53
+## 652 2017-09-17 13:25:11
+## 653 2017-09-13 15:12:33
+## 654 2017-09-14 09:02:57
+## 655 2017-09-14 08:22:27
+## 656 2017-09-14 08:22:45
+## 657 2017-09-14 09:21:55
+## 658 2017-09-14 08:58:50
+## 659 2017-09-14 08:59:07
+## 660 2017-09-14 08:59:39
+## 661 2017-09-14 08:59:54
+## 662 2017-09-14 09:00:37
+## 663 2017-09-14 08:28:52
+## 664 2017-09-13 19:21:06
+## 665 2017-09-14 09:01:48
+## 666 2017-09-14 09:02:49
+## 667 2017-09-13 20:37:09
+## 668 2017-09-14 08:23:11
+## 669 2017-09-14 08:25:43
+## 670 2017-09-14 08:26:21
+## 671 <NA>
+## 672 2017-09-17 13:14:24
+## 673 2017-09-17 13:24:38
+## 674 2017-09-13 15:12:11
+## 675 2017-09-17 12:51:17
+## 676 2017-09-17 12:51:21
+## 677 2017-09-17 12:52:05
+## 678 2017-09-13 20:38:18
+## 679 2017-09-13 20:39:17
+## 680 2017-09-14 09:22:30
+## 681 2017-09-13 20:35:51
+## 682 2017-09-13 20:36:00
+## 683 2017-09-13 20:36:41
+## 684 2017-09-17 12:54:24
+## 685 2017-09-17 12:56:32
+## 686 2017-09-17 12:42:20
+## 687 2017-09-16 20:50:08
+## 688 2017-09-16 20:50:43
+## 689 2017-09-16 20:50:53
+## 690 2017-09-16 20:51:17
+## 691 2017-09-16 20:51:32
+## 692 2017-09-17 12:49:50
+## 693 2017-09-16 20:54:57
+## 694 2017-09-16 20:55:18
+## 695 2017-09-16 20:55:39
+## 696 2017-09-14 08:17:11
+## 697 2017-09-13 22:25:30
+## 698 2017-09-13 19:29:41
+## 699 2017-09-17 13:13:48
+## 700 2017-09-13 15:11:30
+## 701 2017-09-16 21:03:28
+## 702 2017-09-14 08:12:39
+## 703 2017-09-14 08:13:30
+## 704 2017-09-13 19:21:32
+## 705 2017-09-13 19:25:28
+## 706 2017-09-13 22:25:53
+## 707 2017-09-13 20:39:25
+## 708 2017-09-13 22:18:10
+## 709 2017-09-13 22:23:08
+## 710 2017-09-13 22:23:19
+## 711 2017-09-14 08:35:10
+## 712 2017-09-13 15:02:04
+## 713 2017-09-13 15:02:25
+## 714 2017-09-13 22:25:01
+## 715 2017-09-13 19:25:37
+## 716 2017-09-13 19:26:28
+## 717 2017-09-13 20:40:13
+## 718 2017-09-13 20:41:53
+## 719 2017-09-13 20:42:08
+## 720 2017-09-13 20:42:30
+## 721 2017-09-13 20:42:48
+## 722 2017-09-13 20:42:57
+## 723 2017-09-13 15:02:57
+## 724 2017-09-13 15:03:16
+## 725 2017-09-13 15:03:35
+## 726 2017-09-13 15:02:48
+## 727 2017-09-13 19:28:07
+## 728 2017-09-13 19:28:35
+## 729 2017-09-17 13:13:17
+## 730 2017-09-13 19:28:00
+## 731 2017-09-13 15:10:43
+## 732 2017-09-13 22:24:14
+## 733 2017-09-17 12:48:41
+## 734 2017-09-13 22:24:11
+## 735 2017-09-17 12:42:59
+## 736 2017-09-13 22:26:44
+## 737 2017-09-13 15:06:29
+## 738 2017-09-17 12:48:30
+## 739 2017-09-17 12:43:09
+## 740 2017-09-17 12:43:14
+## 741 2017-09-13 20:43:05
+## 742 2017-09-17 13:10:28
+## 743 2017-09-14 08:29:33
+## 744 2017-09-17 13:09:57
+## 745 2017-09-17 13:11:11
+## 746 2017-09-17 13:11:37
+## 747 2017-09-16 21:03:37
+## 748 2017-09-17 13:09:08
+## 749 2017-09-16 20:56:15
+## 750 2017-09-16 20:57:53
+## 751 2017-09-13 22:29:15
+## 752 2017-09-17 13:12:55
+## 753 2017-09-14 08:30:53
+## 754 2017-09-17 13:09:18
+## 755 2017-09-14 08:30:05
+## 756 2017-09-14 08:32:53
+## 757 2017-09-16 21:03:17
+## 758 2017-09-13 15:05:21
+## 759 2017-09-17 13:09:35
+## 760 2017-09-14 08:31:31
+## 761 2017-09-13 21:12:11
+## 762 2017-09-11 19:23:18
+## 763 2017-09-13 21:12:28
+## 764 2017-09-13 21:10:40
+## 765 2017-09-13 19:49:32
+## 766 2017-09-13 19:49:51
+## 767 2017-09-13 19:50:16
+## 768 2017-09-11 19:22:06
+## 769 2017-09-13 19:43:57
+## 770 2017-09-11 19:21:51
+## 771 2017-09-13 21:10:12
+## 772 2017-09-13 19:01:37
+## 773 2017-09-13 19:51:05
+## 774 2017-09-13 18:54:56
+## 775 2017-09-13 22:12:41
+## 776 2017-09-13 21:10:44
+## 777 2017-09-13 19:49:18
+## 778 2017-09-11 19:21:28
+## 779 2017-09-13 19:31:54
+## 780 2017-09-13 21:12:06
+## 781 2017-09-13 19:19:35
+## 782 2017-09-13 21:12:51
+## 783 2017-09-13 19:50:23
+## 784 2017-09-13 19:50:39
+## 785 2017-09-13 19:54:47
+## 786 2017-09-13 21:10:02
+## 787 2017-09-13 19:48:52
+## 788 2017-09-13 22:12:27
+## 789 2017-09-13 21:11:37
+## 790 2017-09-13 20:05:11
+## 791 2017-09-13 20:05:22
+## 792 2017-09-13 18:52:01
+## 793 2017-09-13 19:19:57
+## 794 2017-09-13 19:00:35
+## 795 2017-09-13 19:51:02
+## 796 2017-09-13 21:08:47
+## 797 2017-09-13 19:59:56
+## 798 2017-09-13 18:48:41
+## 799 2017-09-13 18:49:06
+## 800 2017-09-11 19:20:54
+## 801 2017-09-13 21:11:16
+## 802 2017-09-13 19:43:44
+## 803 2017-09-13 20:02:18
+## 804 2017-09-13 21:54:40
+## 805 2017-09-13 19:45:24
+## 806 2017-09-13 19:45:44
+## 807 2017-09-13 19:02:15
+## 808 2017-09-13 21:13:11
+## 809 2017-09-13 19:46:34
+## 810 2017-09-13 19:47:59
+## 811 2017-09-13 19:48:29
+## 812 2017-09-13 21:10:53
+## 813 2017-09-13 22:11:17
+## 814 2017-09-13 19:31:01
+## 815 2017-09-13 19:32:13
+## 816 2017-09-13 19:32:48
+## 817 2017-09-13 19:20:11
+## 818 2017-09-13 21:07:33
+## 819 2017-09-13 21:07:43
+## 820 2017-09-13 21:08:20
+## 821 2017-09-13 18:48:31
+## 822 2017-09-13 19:48:37
+## 823 2017-09-11 19:27:57
+## 824 2017-09-13 19:55:03
+## 825 2017-09-13 19:55:17
+## 826 2017-09-13 19:56:20
+## 827 2017-09-13 19:56:33
+## 828 2017-09-13 19:56:48
+## 829 2017-09-13 19:57:01
+## 830 2017-09-13 19:57:19
+## 831 2017-09-13 21:13:46
+## 832 2017-09-13 21:14:04
+## 833 2017-09-11 19:27:09
+## 834 2017-09-13 19:43:22
+## 835 2017-09-13 19:08:07
+## 836 2017-09-13 19:08:22
+## 837 2017-09-13 19:44:22
+## 838 2017-09-13 19:10:32
+## 839 2017-09-11 19:17:39
+## 840 2017-09-13 19:46:01
+## 841 2017-09-13 19:17:42
+## 842 2017-09-13 19:17:46
+## 843 2017-09-13 19:18:20
+## 844 2017-09-11 19:20:38
+## 845 2017-09-13 20:04:54
+## 846 2017-09-13 21:22:17
+## 847 2017-09-13 19:30:05
+## 848 2017-09-11 19:29:12
+## 849 2017-09-13 20:05:51
+## 850 2017-09-13 22:12:43
+## 851 2017-09-11 19:23:50
+## 852 2017-09-11 19:24:00
+## 853 2017-09-13 19:34:54
+## 854 2017-09-11 19:25:49
+## 855 2017-09-13 19:35:10
+## 856 2017-09-13 19:35:14
+## 857 2017-09-11 19:28:40
+## 858 2017-09-11 19:29:05
+## 859 2017-09-13 19:06:42
+## 860 2017-09-11 19:29:15
+## 861 2017-09-13 21:52:56
+## 862 2017-09-13 21:54:53
+## 863 2017-09-13 19:40:46
+## 864 2017-09-13 20:00:19
+## 865 2017-09-13 20:01:31
+## 866 2017-09-13 19:38:41
+## 867 2017-09-13 21:15:16
+## 868 2017-09-13 21:15:19
+## 869 2017-09-13 19:10:10
+## 870 2017-09-13 21:16:38
+## 871 2017-09-13 19:11:22
+## 872 2017-09-11 19:18:50
+## 873 2017-09-11 19:19:04
+## 874 2017-09-11 19:19:21
+## 875 2017-09-11 19:19:28
+## 876 2017-09-13 22:09:38
+## 877 2017-09-13 19:30:11
+## 878 2017-09-13 22:09:12
+## 879 2017-09-13 19:39:13
+## 880 2017-09-13 19:34:28
+## 881 2017-09-13 19:34:41
+## 882 2017-09-13 20:07:06
+## 883 2017-09-13 19:35:06
+## 884 2017-09-11 19:25:19
+## 885 2017-09-11 19:25:40
+## 886 2017-09-13 22:07:11
+## 887 2017-09-13 21:14:53
+## 888 2017-09-13 21:56:28
+## 889 2017-09-13 19:40:11
+## 890 2017-09-13 19:40:19
+## 891 2017-09-13 19:40:42
+## 892 2017-09-13 21:53:18
+## 893 2017-09-13 21:55:17
+## 894 2017-09-13 19:03:07
+## 895 2017-09-13 19:03:34
+## 896 2017-09-13 20:00:45
+## 897 2017-09-13 19:05:59
+## 898 2017-09-13 21:46:58
+## 899 2017-09-13 21:47:32
+## 900 2017-09-13 18:49:13
+## 901 2017-09-13 20:01:48
+## 902 2017-09-13 21:16:13
+## 903 2017-09-13 19:11:30
+## 904 2017-09-13 19:16:51
+## 905 2017-09-13 19:17:28
+## 906 2017-09-13 20:04:25
+## 907 2017-09-13 21:21:19
+## 908 2017-09-13 21:14:20
+## 909 2017-09-13 21:56:04
+## 910 2017-09-13 18:49:27
+## 911 2017-09-13 18:49:51
+## 912 2017-09-13 20:06:42
+## 913 2017-09-13 20:07:01
+## 914 2017-09-13 20:07:25
+## 915 2017-09-13 19:23:35
+## 916 2017-09-13 21:48:02
+## 917 2017-09-13 19:27:57
+## 918 2017-09-13 19:58:19
+## 919 2017-09-13 19:03:53
+## 920 2017-09-13 19:05:23
+## 921 2017-09-13 22:06:15
+## 922 2017-09-13 19:24:35
+## 923 2017-09-13 21:59:07
+## 924 2017-09-13 21:59:51
+## 925 2017-09-13 19:32:56
+## 926 2017-09-13 20:03:31
+## 927 2017-09-13 20:04:01
+## 928 2017-09-13 19:59:22
+## 929 2017-09-13 19:24:44
+## 930 2017-09-13 19:33:25
+## 931 2017-09-13 19:27:17
+## 932 2017-09-13 19:27:54
+## 933 2017-09-13 19:21:23
+## 934 2017-09-13 20:10:55
+## 935 2017-09-13 21:17:15
+## 936 2017-09-13 20:10:31
+## 937 2017-09-13 19:58:55
+## 938 2017-09-13 22:03:14
+## 939 2017-09-13 19:26:59
+## 940 2017-09-13 21:55:36
+## 941 2017-09-13 20:10:52
+## 942 2017-09-13 22:00:29
+## 943 2017-09-13 19:25:45
+## 944 2017-09-13 21:16:49
+## 945 2017-09-13 19:25:08
+## 946 2017-09-13 20:09:54
+## 947 2017-09-13 20:10:19
+## 948 2017-09-13 22:02:41
+## 949 2017-09-13 22:02:26
+## 950 2017-09-13 21:17:32
+## 951 2017-09-13 20:10:44
+## 952 2017-09-13 21:17:38
+## 953 2017-09-13 19:21:13
+## 954 2017-09-13 20:09:26
+## 955 2017-09-13 22:01:50
+## 956 2017-09-13 14:57:41
+## 957 2017-09-13 14:42:25
+## 958 2017-09-13 14:34:18
+## 959 2017-09-13 14:33:43
+## 960 2017-09-13 14:54:56
+## 961 2017-09-13 14:31:04
+## 962 2017-09-13 14:26:06
+## 963 2017-09-13 14:57:27
+## 964 2017-09-13 14:57:38
+## 965 2017-09-13 14:56:11
+## 966 2017-09-13 14:31:12
+## 967 2017-09-13 14:27:02
+## 968 2017-09-13 14:51:33
+## 969 2017-09-13 14:27:13
+## 970 2017-09-13 14:53:46
+## 971 2017-09-13 14:27:24
+## 972 2017-09-13 14:27:27
+## 973 2017-09-13 14:44:09
+## 974 2017-09-13 14:51:42
+## 975 2017-09-13 14:50:03
+## 976 2017-09-13 14:30:18
+## 977 2017-09-13 14:44:18
+## 978 2017-09-15 14:42:44
+## 979 2017-09-15 13:40:47
+## 980 2017-09-15 12:43:03
+## 981 2017-09-15 13:41:16
+## 982 2017-09-15 12:32:25
+## 983 2017-09-15 13:09:40
+## 984 2017-09-15 12:32:21
+## 985 2017-09-15 13:35:59
+## 986 2017-09-15 17:00:17
+## 987 2017-09-15 13:30:24
+## 988 2017-09-15 12:40:14
+## 989 2017-09-15 12:36:50
+## 990 2017-09-15 12:31:19
+## 991 2017-09-15 13:32:27
+## 992 2017-09-15 15:51:46
+## 993 2017-09-15 17:00:15
+## 994 2017-09-15 15:25:24
+## 995 2017-09-15 15:51:18
+## 996 2017-09-15 15:22:17
+## 997 2017-09-15 12:31:12
+## 998 2017-09-15 13:32:04
+## 999 2017-09-15 16:18:13
+## 1000 2017-09-15 16:01:56
+## 1001 2017-09-08 11:32:27
+## 1002 2017-09-09 15:23:38
+## 1003 2017-09-09 15:23:50
+## 1004 2017-09-09 15:24:14
+## 1005 1969-12-31 23:10:49
+## 1006 2017-09-08 11:33:58
+## 1007 2017-09-08 11:36:09
+## 1008 2017-09-08 11:37:33
+## 1009 2017-09-08 11:39:17
+## 1010 2017-09-09 15:23:27
+## 1011 2017-09-08 11:29:57
+## 1012 2017-09-08 11:30:35
+## 1013 2017-09-09 07:39:35
+## 1014 2017-09-09 07:39:44
+## 1015 2017-09-09 07:42:05
+## 1016 2017-09-09 07:42:18
+## 1017 2017-09-09 07:43:09
+## 1018 2017-09-09 07:44:24
+## 1019 2017-09-09 07:44:33
+## 1020 2017-09-09 07:45:31
+## 1021 2017-09-09 07:47:50
+## 1022 2017-09-09 07:48:08
+## 1023 2017-09-09 07:48:36
+## 1024 2017-09-09 07:48:50
+## 1025 2017-09-09 07:48:59
+## 1026 2017-09-09 07:49:05
+## 1027 <NA>
+## 1028 2017-09-09 08:45:27
+## 1029 2017-09-09 08:58:35
+## 1030 2017-09-09 08:58:54
+## 1031 2017-09-09 08:59:06
+## 1032 2017-09-09 13:09:24
+## 1033 2017-09-09 13:09:34
+## 1034 2017-09-09 13:09:52
+## 1035 2017-09-09 13:09:59
+## 1036 2017-09-09 13:10:08
+## 1037 2017-09-09 13:10:41
+## 1038 2017-09-09 13:11:24
+## 1039 2017-09-09 13:11:40
+## 1040 2017-09-09 13:12:32
+## 1041 2017-09-09 13:14:02
+## 1042 2017-09-09 13:14:30
+## 1043 2017-09-09 13:15:24
+## 1044 2017-09-08 11:28:50
+## 1045 2017-09-08 11:29:02
+## 1046 2017-09-08 11:29:23
+## 1047 2017-09-08 11:29:34
+## 1048 2017-09-09 13:17:45
+## 1049 2017-09-09 13:26:30
+## 1050 2017-09-09 13:26:37
+## 1051 2017-09-09 13:26:47
+## 1052 2017-09-09 13:27:17
+## 1053 2017-09-09 13:27:46
+## 1054 2017-09-09 13:27:53
+## 1055 2017-09-09 15:21:43
+## 1056 2017-09-09 15:21:47
+## 1057 2017-09-09 15:21:53
+## 1058 2017-09-09 15:22:03
+## 1059 2017-09-09 15:22:49
+## 1060 2017-09-08 09:13:36
+## 1061 2017-09-08 09:13:47
+## 1062 2017-09-08 09:13:59
+## 1063 2017-09-08 09:14:26
+## 1064 2017-09-08 09:14:39
+## 1065 2017-09-08 18:14:07
+## 1066 2017-09-08 18:15:20
+## 1067 2017-09-08 18:15:28
+## 1068 2017-09-09 08:45:55
+## 1069 2017-09-09 08:47:06
+## 1070 2017-09-09 08:47:14
+## 1071 2017-09-09 08:47:41
+## 1072 2017-09-08 18:12:56
+## 1073 2017-09-08 18:13:17
+## 1074 2017-09-08 18:13:34
+## 1075 2017-09-08 18:13:41
+## 1076 2017-09-08 09:08:54
+## 1077 2017-09-08 09:09:12
+## 1078 2017-09-08 09:09:21
+## 1079 2017-09-08 18:15:46
+## 1080 2017-09-08 18:16:34
+## 1081 2017-09-09 13:15:32
+## 1082 2017-09-09 13:16:30
+## 1083 2017-09-09 13:17:18
+## 1084 2017-09-08 18:18:22
+## 1085 2017-09-08 18:18:44
+## 1086 2017-09-08 19:26:30
+## 1087 2017-09-08 09:08:05
+## 1088 2017-09-09 08:50:54
+## 1089 2017-09-09 08:51:21
+## 1090 2017-09-09 08:51:38
+## 1091 2017-09-08 09:09:24
+## 1092 2017-09-08 09:11:43
+## 1093 2017-09-08 09:11:58
+## 1094 2017-09-08 09:12:03
+## 1095 2017-09-08 09:12:30
+## 1096 2017-09-08 09:12:49
+## 1097 2017-09-09 08:48:27
+## 1098 2017-09-09 08:48:37
+## 1099 2017-09-09 08:48:51
+## 1100 2017-09-09 08:49:42
+## 1101 2017-09-09 08:53:08
+## 1102 2017-09-09 08:53:26
+## 1103 2017-09-09 08:47:44
+## 1104 2017-09-08 18:18:13
+## 1105 2017-09-08 18:16:39
+## 1106 2017-09-08 18:17:19
+## 1107 2017-09-19 16:50:43
+## 1108 2017-09-24 20:05:21
+## 1109 2017-09-19 16:43:44
+## 1110 2017-09-24 05:16:59
+## 1111 2017-09-24 04:52:14
+## 1112 2017-09-24 20:04:47
+## 1113 2017-09-19 17:21:49
+## 1114 2017-09-24 20:04:15
+## 1115 2017-09-24 04:51:10
+## 1116 2017-09-24 05:20:55
+## 1117 2017-09-24 05:17:15
+## 1118 2017-09-24 04:52:22
+## 1119 2017-09-24 20:03:20
+## 1120 2017-09-24 20:02:26
+## 1121 2017-09-19 16:35:12
+## 1122 2017-09-19 16:36:29
+## 1123 2017-09-20 02:41:13
+## 1124 2017-09-19 16:35:23
+## 1125 2017-09-20 02:42:55
+## 1126 2017-09-24 05:18:25
+## 1127 2017-09-24 05:17:58
+## 1128 2017-09-24 20:02:13
+## 1129 2017-09-24 04:50:39
+## 1130 2017-09-24 04:50:45
+## 1131 2017-09-20 12:03:41
+## 1132 2017-09-19 16:44:14
+## 1133 2017-09-19 16:49:10
+## 1134 2017-09-20 11:21:48
+## 1135 2017-09-19 17:14:39
+## 1136 2017-09-19 17:15:56
+## 1137 2017-09-19 17:18:59
+## 1138 2017-09-19 17:20:05
+## 1139 2017-09-19 17:21:44
+## 1140 2017-09-20 12:25:36
+## 1141 2017-09-20 12:25:51
+## 1142 2017-09-20 12:26:11
+## 1143 2017-09-20 12:26:58
+## 1144 2017-09-19 16:50:16
+## 1145 2017-09-20 11:21:09
+## 1146 2017-09-20 12:34:35
+## 1147 2017-09-20 12:37:39
+## 1148 2017-09-20 12:40:20
+## 1149 2017-09-20 12:40:39
+## 1150 2017-09-19 16:34:02
+## 1151 2017-09-19 16:34:26
+## 1152 2017-09-19 16:35:05
+## 1153 2017-09-20 13:01:11
+## 1154 2017-09-20 13:09:31
+## 1155 2017-09-20 13:11:21
+## 1156 2017-09-20 12:27:47
+## 1157 2017-09-20 12:32:24
+## 1158 2017-09-24 05:40:48
+## 1159 2017-09-24 19:57:50
+## 1160 2017-09-24 20:01:18
+## 1161 2017-09-24 20:01:45
+## 1162 2017-09-24 20:01:58
+## 1163 2017-09-19 16:41:43
+## 1164 2017-09-19 16:43:01
+## 1165 2017-09-20 11:49:47
+## 1166 2017-09-15 21:01:27
+## 1167 2017-09-15 21:06:25
+## 1168 2017-09-15 21:06:42
+## 1169 2017-09-15 21:06:45
+## 1170 2017-09-24 04:58:33
+## 1171 2017-09-24 05:03:14
+## 1172 2017-09-24 05:03:26
+## 1173 2017-09-24 05:06:14
+## 1174 2017-09-24 05:08:57
+## 1175 2017-09-24 05:09:05
+## 1176 2017-09-24 05:10:07
+## 1177 2017-09-24 05:13:26
+## 1178 2017-09-24 05:13:38
+## 1179 2017-09-24 05:15:14
+## 1180 2017-09-25 09:32:10
+## 1181 2017-09-25 09:33:21
+## 1182 2017-09-25 09:33:34
+## 1183 2017-09-25 09:34:36
+## 1184 2017-09-25 09:35:05
+## 1185 2017-09-25 09:35:38
+## 1186 2017-09-24 05:26:34
+## 1187 2017-09-24 05:27:49
+## 1188 2017-09-24 05:28:42
+## 1189 2017-09-24 05:31:51
+## 1190 2017-09-19 16:36:58
+## 1191 2017-09-19 16:38:05
+## 1192 2017-09-19 16:38:57
+## 1193 2017-09-19 16:39:47
+## 1194 2017-09-24 04:50:21
+## 1195 2017-09-15 20:49:06
+## 1196 2017-09-15 20:51:39
+## 1197 2017-09-15 21:24:06
+## 1198 2017-09-15 21:24:55
+## 1199 2017-09-15 21:25:09
+## 1200 2017-09-15 21:25:40
+## 1201 2017-09-15 21:25:54
+## 1202 2017-09-20 11:22:34
+## 1203 2017-09-20 11:22:43
+## 1204 2017-09-20 11:23:21
+## 1205 2017-09-20 11:23:29
+## 1206 2017-09-20 11:23:34
+## 1207 2017-09-20 11:31:49
+## 1208 2017-09-20 11:32:03
+## 1209 2017-09-20 11:33:08
+## 1210 2017-09-20 11:33:27
+## 1211 2017-09-20 11:35:54
+## 1212 2017-09-20 11:36:03
+## 1213 2017-09-20 02:43:14
+## 1214 2017-09-20 02:43:26
+## 1215 2017-09-20 02:43:52
+## 1216 2017-09-20 02:44:57
+## 1217 2017-09-20 02:45:06
+## 1218 2017-09-20 02:45:38
+## 1219 2017-09-24 05:33:50
+## 1220 2017-09-24 05:35:22
+## 1221 2017-09-24 05:40:19
+## 1222 2017-09-24 05:40:41
+## 1223 2017-09-15 21:22:36
+## 1224 2017-09-15 21:22:47
+## 1225 2017-09-15 21:22:59
+## 1226 2017-09-15 21:23:09
+## 1227 2017-09-15 21:23:40
+## 1228 2017-09-15 22:31:21
+## 1229 2017-09-20 12:03:46
+## 1230 2017-09-20 12:03:53
+## 1231 2017-09-20 12:05:50
+## 1232 2017-09-20 12:06:36
+## 1233 2017-09-20 12:09:09
+## 1234 2017-09-20 12:12:27
+## 1235 2017-09-20 12:13:16
+## 1236 2017-09-20 12:14:46
+## 1237 2017-09-20 12:15:11
+## 1238 2017-09-20 12:25:25
+## 1239 2017-09-15 19:47:01
+## 1240 2017-09-15 20:00:45
+## 1241 2017-09-15 20:05:12
+## 1242 2017-09-15 20:13:34
+## 1243 2017-09-15 20:14:47
+## 1244 2017-09-15 20:15:30
+## 1245 2017-09-20 12:40:52
+## 1246 2017-09-20 12:55:05
+## 1247 2017-09-20 13:00:23
+## 1248 2017-09-15 20:27:32
+## 1249 2017-09-15 20:27:58
+## 1250 2017-09-15 20:31:06
+## 1251 2017-09-20 13:16:56
+## 1252 2017-09-20 13:18:50
+## 1253 2017-09-20 13:19:02
+## 1254 2017-09-20 13:19:04
+## 1255 2017-09-24 04:49:32
+## 1256 2017-09-20 03:23:19
+## 1257 2017-09-20 03:23:51
+## 1258 2017-09-20 03:24:10
+## 1259 2017-09-20 03:24:53
+## 1260 2017-09-20 03:25:00
+## 1261 2017-09-20 03:26:18
+## 1262 2017-09-20 03:27:00
+## 1263 2017-09-20 03:27:31
+## 1264 2017-09-20 03:28:55
+## 1265 2017-09-20 03:29:41
+## 1266 2017-09-20 03:29:52
+## 1267 2017-09-25 06:05:42
+## 1268 2017-09-25 06:06:41
+## 1269 2017-09-25 09:20:54
+## 1270 2017-09-25 09:23:42
+## 1271 2017-09-25 09:26:09
+## 1272 2017-09-25 09:26:57
+## 1273 2017-09-20 11:00:42
+## 1274 2017-09-20 11:00:50
+## 1275 2017-09-20 11:00:55
+## 1276 2017-09-20 11:01:10
+## 1277 2017-09-20 11:04:04
+## 1278 2017-09-20 11:04:28
+## 1279 2017-09-20 11:04:52
+## 1280 2017-09-25 09:38:37
+## 1281 2017-09-25 09:39:09
+## 1282 2017-09-25 09:39:50
+## 1283 2017-09-25 09:39:58
+## 1284 2017-09-25 09:40:02
+## 1285 2017-09-25 09:40:14
+## 1286 2017-09-25 09:40:30
+## 1287 2017-09-25 09:40:38
+## 1288 2017-09-25 09:40:41
+## 1289 2017-09-20 11:16:39
+## 1290 2017-09-20 11:18:08
+## 1291 2017-09-20 11:18:37
+## 1292 2017-09-20 11:18:43
+## 1293 2017-09-20 11:20:16
+## 1294 2017-09-20 02:57:53
+## 1295 2017-09-20 02:58:03
+## 1296 2017-09-15 21:29:11
+## 1297 2017-09-15 21:29:22
+## 1298 2017-09-15 21:30:37
+## 1299 2017-09-15 21:30:48
+## 1300 2017-09-15 21:31:18
+## 1301 2017-09-15 21:31:30
+## 1302 2017-09-20 11:32:18
+## 1303 2017-09-20 11:32:32
+## 1304 2017-09-15 21:33:22
+## 1305 2017-09-15 21:33:50
+## 1306 2017-09-15 21:34:53
+## 1307 2017-09-15 21:36:16
+## 1308 2017-09-20 11:36:29
+## 1309 2017-09-20 11:37:30
+## 1310 2017-09-20 11:38:14
+## 1311 2017-09-20 11:38:23
+## 1312 2017-09-20 11:38:48
+## 1313 2017-09-20 11:39:53
+## 1314 2017-09-20 11:40:30
+## 1315 2017-09-20 02:47:03
+## 1316 2017-09-20 02:47:13
+## 1317 2017-09-20 02:48:11
+## 1318 2017-09-20 02:50:15
+## 1319 2017-09-20 02:50:29
+## 1320 2017-09-20 02:50:58
+## 1321 2017-09-20 02:52:13
+## 1322 2017-09-20 02:54:29
+## 1323 2017-09-20 02:55:37
+## 1324 2017-09-20 02:56:24
+## 1325 2017-09-20 02:56:28
+## 1326 2017-09-14 21:37:39
+## 1327 2017-09-15 19:16:07
+## 1328 2017-09-20 02:58:52
+## 1329 2017-09-20 02:59:09
+## 1330 2017-09-20 03:00:15
+## 1331 2017-09-20 03:01:18
+## 1332 2017-09-20 03:01:29
+## 1333 2017-09-20 03:02:06
+## 1334 2017-09-20 03:04:15
+## 1335 2017-09-20 03:08:04
+## 1336 2017-09-20 03:08:58
+## 1337 2017-09-20 03:09:15
+## 1338 2017-09-20 03:09:23
+## 1339 2017-09-20 03:09:25
+## 1340 2017-09-20 03:17:34
+## 1341 2017-09-20 03:17:42
+## 1342 2017-09-20 03:18:06
+## 1343 2017-09-15 20:32:15
+## 1344 2017-09-15 20:35:39
+## 1345 2017-09-15 20:37:06
+## 1346 2017-09-15 20:37:11
+## 1347 2017-09-15 20:46:13
+## 1348 2017-09-15 20:46:51
+## 1349 2017-09-20 03:23:02
+## 1350 2017-09-20 11:15:05
+## 1351 2017-09-20 11:15:17
+## 1352 2017-09-20 11:49:38
+## 1353 2017-09-14 21:30:10
+## 1354 2017-09-14 21:32:20
+## 1355 2017-09-14 21:33:08
+## 1356 2017-09-14 21:34:51
+## 1357 2017-09-15 19:18:17
+## 1358 2017-09-20 03:30:11
+## 1359 2017-09-20 03:30:20
+## 1360 2017-09-20 03:30:23
+## 1361 2017-09-20 10:59:51
+## 1362 2017-09-20 11:00:06
+## 1363 2017-09-20 11:00:14
+## 1364 2017-09-20 11:00:32
+## 1365 2017-09-15 21:32:43
+## 1366 2017-09-20 11:10:57
+## 1367 2017-09-20 11:43:44
+## 1368 2017-09-20 11:13:29
+## 1369 2017-09-15 21:38:46
+## 1370 2017-09-15 21:40:36
+## 1371 2017-09-20 11:06:56
+## 1372 2017-09-20 11:07:23
+## 1373 2017-09-20 11:08:25
+## 1374 2017-09-20 11:09:16
+## 1375 2017-09-20 11:09:33
+## 1376 2017-09-20 11:09:53
+## 1377 2017-09-20 11:43:09
+## 1378 2017-09-20 03:18:09
+## 1379 2017-09-20 11:44:30
+## 1380 2017-09-20 11:14:00
+## 1381 2017-09-20 11:14:26
+## 1382 2017-09-20 11:47:35
+## 1383 2017-09-20 11:48:24
+## 1384 2017-09-15 22:31:05
+## 1385 2017-09-15 22:31:16
+## 1386 2017-09-15 21:32:03
+## 1387 2017-09-20 11:44:44
+## 1388 2017-09-15 19:18:21
+## 1389 2017-09-20 03:18:26
+## 1390 2017-09-20 03:18:34
+## 1391 2017-09-24 20:10:10
+## 1392 2017-09-24 20:10:42
+## 1393 2017-09-24 20:05:38
+## 1394 2017-09-24 20:08:56
+## 1395 2017-09-15 21:48:44
+## 1396 2017-09-20 03:18:48
+## 1397 2017-09-24 20:10:45
+## 1398 2017-09-15 21:48:27
+## 1399 2017-09-15 22:01:20
+## 1400 2017-09-15 21:43:24
+## 1401 2017-09-20 11:46:04
+## 1402 2017-09-20 03:16:48
+## 1403 2017-09-20 11:47:26
+## 1404 2017-09-15 21:43:43
+## 1405 2017-09-15 21:46:27
+## 1406 2017-09-15 19:46:31
+## 1407 2017-09-15 22:01:33
+## 1408 2017-09-20 03:17:06
+## 1409 2017-09-15 22:29:16
+## 1410 2017-09-15 22:30:53
+## 1411 2017-09-15 22:26:32
+## 1412 2017-09-15 19:19:43
+## 1413 2017-09-15 22:25:03
+## 1414 2017-09-15 22:26:09
+## 1415 2017-09-20 03:21:03
+## 1416 2017-09-15 19:26:27
+## 1417 2017-09-20 03:22:06
+## 1418 2017-09-15 22:26:16
+## 1419 2017-09-11 20:11:46
+## 1420 2017-09-11 19:59:33
+## 1421 2017-09-11 20:18:46
+## 1422 2017-09-11 20:07:02
+## 1423 2017-09-11 20:20:28
+## 1424 2017-09-11 20:22:35
+## 1425 2017-09-11 20:20:05
+## 1426 2017-09-11 20:11:39
+## 1427 2017-09-11 20:11:07
+## 1428 2017-09-11 20:37:46
+## 1429 2017-09-11 20:18:35
+## 1430 2017-09-11 20:39:51
+## 1431 2017-09-11 20:08:46
+## 1432 2017-09-11 19:59:30
+## 1433 2017-09-11 20:17:17
+## 1434 2017-09-11 19:58:18
+## 1435 2017-09-11 20:04:49
+## 1436 2017-09-11 20:00:53
+## 1437 2017-09-11 20:11:35
+## 1438 2017-09-11 20:22:05
+## 1439 2017-09-11 20:05:48
+## 1440 2017-09-11 19:59:20
+## 1441 2017-09-11 20:22:51
+## 1442 2017-09-11 20:19:10
+## 1443 2017-09-11 20:21:26
+## 1444 2017-09-11 20:00:24
+## 1445 2017-09-11 20:00:39
+## 1446 2017-09-11 20:44:01
+## 1447 2017-09-11 20:36:52
+## 1448 2017-09-11 20:35:56
+## 1449 2017-09-11 20:44:17
+## 1450 2017-09-11 20:39:06
+## 1451 2017-09-11 20:05:40
+## 1452 2017-09-11 19:59:06
+## 1453 2017-09-11 20:04:05
+## 1454 2017-09-11 20:43:57
+## 1455 2017-09-11 20:32:26
+## 1456 2017-09-11 20:21:52
+## 1457 2017-09-11 20:43:36
+## 1458 2017-09-11 20:02:07
+## 1459 2017-09-11 20:02:32
+## 1460 2017-09-11 20:03:27
+## 1461 2017-09-11 20:44:19
+## 1462 2017-09-11 20:04:14
+## 1463 2017-09-11 20:31:46
+## 1464 2017-09-18 20:49:23
+## 1465 2017-09-11 20:38:24
+## 1466 2017-09-18 20:49:57
+## 1467 2017-09-11 20:29:51
+## 1468 2017-09-11 20:28:27
+## 1469 2017-09-11 20:36:42
+## 1470 2017-09-11 20:37:37
+## 1471 2017-09-15 21:11:02
+## 1472 2017-09-11 20:26:44
+## 1473 2017-09-18 20:49:16
+## 1474 2017-09-11 20:38:28
+## 1475 2017-09-11 20:27:51
+## 1476 2017-09-15 21:30:05
+## 1477 2017-09-18 20:47:10
+## 1478 2017-09-11 20:28:20
+## 1479 2017-09-15 21:10:25
+## 1480 2017-09-15 21:11:50
+## 1481 2017-09-11 20:38:12
+## 1482 2017-09-15 20:53:55
+## 1483 2017-09-11 20:28:09
+## 1484 2017-09-11 20:36:01
+## 1485 2017-09-11 20:34:43
+## 1486 2017-09-18 20:45:56
+## 1487 2017-09-15 21:28:48
+## 1488 2017-09-15 21:30:10
+## 1489 2017-09-11 20:31:25
+## 1490 2017-09-15 21:07:59
+## 1491 2017-09-15 20:53:34
+## 1492 2017-09-15 20:53:43
+## 1493 2017-09-15 21:13:30
+## 1494 2017-09-15 21:20:06
+## 1495 2017-09-15 20:54:28
+## 1496 2017-09-18 20:54:36
+## 1497 2017-09-15 20:57:54
+## 1498 2017-09-15 21:29:19
+## 1499 2017-09-11 20:30:26
+## 1500 2017-09-11 20:30:12
+## 1501 2017-09-15 21:09:23
+## 1502 2017-09-18 20:35:55
+## 1503 2017-09-15 21:12:40
+## 1504 2017-09-18 20:53:32
+## 1505 2017-09-15 20:54:00
+## 1506 2017-09-15 20:54:07
+## 1507 2017-09-15 21:19:49
+## 1508 2017-09-18 21:01:23
+## 1509 2017-09-18 20:45:47
+## 1510 2017-09-18 20:37:34
+## 1511 2017-09-18 20:38:28
+## 1512 2017-09-15 21:06:59
+## 1513 2017-09-15 21:07:26
+## 1514 2017-09-11 20:31:40
+## 1515 2017-09-11 20:32:38
+## 1516 2017-09-18 21:00:58
+## 1517 2017-09-18 20:54:12
+## 1518 2017-09-11 20:34:32
+## 1519 2017-09-18 20:57:57
+## 1520 2017-09-18 20:54:39
+## 1521 2017-09-18 20:37:38
+## 1522 2017-09-18 20:51:59
+## 1523 2017-09-18 20:40:57
+## 1524 2017-09-18 20:58:51
+## 1525 2017-09-15 21:02:48
+## 1526 2017-09-18 21:00:21
+## 1527 2017-09-18 20:37:05
+## 1528 2017-09-18 20:59:18
+## 1529 2017-09-18 20:56:11
+## 1530 2017-09-18 20:56:22
+## 1531 2017-09-11 20:34:11
+## 1532 2017-09-18 21:00:12
+## 1533 2017-09-11 20:32:55
+## 1534 2017-09-18 20:58:43
+## 1535 2017-09-18 21:01:30
+## 1536 2017-09-18 21:01:33
+## 1537 2017-09-11 20:33:04
+## 1538 2017-09-18 20:43:41
+## 1539 2017-09-18 20:42:19
+## 1540 2017-09-18 20:57:01
+## 1541 2017-09-18 20:57:17
+## 1542 2017-09-11 22:00:26
+## 1543 2017-09-12 09:45:44
+## 1544 2017-09-12 20:39:11
+## 1545 2017-09-12 09:45:33
+## 1546 2017-09-11 21:47:49
+## 1547 2017-09-11 22:01:26
+## 1548 2017-09-12 09:50:03
+## 1549 2017-09-10 22:18:58
+## 1550 2017-09-10 22:38:22
+## 1551 2017-09-10 22:20:12
+## 1552 2017-09-10 22:41:48
+## 1553 2017-09-10 22:18:44
+## 1554 2017-09-11 12:08:15
+## 1555 2017-09-10 22:38:59
+## 1556 2017-09-10 22:34:34
+## 1557 2017-09-10 22:33:57
+## 1558 2017-09-10 22:34:08
+## 1559 2017-09-10 22:34:19
+## 1560 2017-09-10 22:19:41
+## 1561 2017-09-11 12:14:20
+## 1562 2017-09-10 22:20:03
+## 1563 2017-09-11 23:53:55
+## 1564 2017-09-10 22:38:38
+## 1565 2017-09-11 22:01:34
+## 1566 2017-09-11 21:47:09
+## 1567 2017-09-12 09:53:03
+## 1568 2017-09-11 22:23:15
+## 1569 2017-09-10 22:34:52
+## 1570 2017-09-11 22:02:04
+## 1571 2017-09-10 22:37:32
+## 1572 2017-09-11 12:08:01
+## 1573 2017-09-11 23:53:48
+## 1574 2017-09-11 22:29:52
+## 1575 2017-09-11 22:24:21
+## 1576 2017-09-11 23:54:44
+## 1577 2017-09-10 22:16:29
+## 1578 2017-09-11 22:02:16
+## 1579 2017-09-11 22:23:33
+## 1580 2017-09-11 22:23:37
+## 1581 2017-09-14 10:18:45
+## 1582 2017-09-11 12:14:36
+## 1583 2017-09-14 10:16:42
+## 1584 2017-09-11 21:47:01
+## 1585 2017-09-11 22:29:03
+## 1586 2017-09-12 20:34:43
+## 1587 2017-09-11 23:58:40
+## 1588 2017-09-11 23:54:03
+## 1589 2017-09-11 12:10:26
+## 1590 2017-09-11 12:50:47
+## 1591 2017-09-10 22:16:17
+## 1592 2017-09-12 09:54:10
+## 1593 2017-09-12 09:56:17
+## 1594 2017-09-14 10:16:20
+## 1595 2017-09-10 22:37:03
+## 1596 2017-09-11 22:24:06
+## 1597 2017-09-11 22:24:12
+## 1598 2017-09-11 12:47:53
+## 1599 2017-09-11 12:09:28
+## 1600 2017-09-11 23:54:15
+## 1601 2017-09-10 22:15:19
+## 1602 2017-09-11 23:54:50
+## 1603 2017-09-10 22:42:12
+## 1604 2017-09-11 12:47:06
+## 1605 2017-09-10 22:35:11
+## 1606 2017-09-10 22:17:42
+## 1607 2017-09-10 22:17:45
+## 1608 2017-09-11 22:23:56
+## 1609 2017-09-11 23:58:20
+## 1610 2017-09-11 21:29:51
+## 1611 2017-09-11 12:48:45
+## 1612 2017-09-11 12:50:28
+## 1613 2017-09-11 12:50:36
+## 1614 2017-09-10 22:16:09
+## 1615 2017-09-14 10:11:16
+## 1616 2017-09-10 22:16:26
+## 1617 2017-09-11 12:47:43
+## 1618 2017-09-11 22:23:47
+## 1619 2017-09-11 12:07:36
+## 1620 2017-09-12 20:32:27
+## 1621 2017-09-11 21:30:35
+## 1622 2017-09-11 23:58:47
+## 1623 1969-12-31 19:02:30
+## 1624 2017-09-12 10:03:40
+## 1625 2017-09-11 12:52:14
+## 1626 2017-09-11 12:52:20
+## 1627 2017-09-14 10:12:02
+## 1628 2017-09-10 22:17:21
+## 1629 2017-09-14 10:13:19
+## 1630 2017-09-14 10:13:28
+## 1631 2017-09-12 09:56:33
+## 1632 2017-09-11 12:07:31
+## 1633 2017-09-12 10:03:22
+## 1634 2017-09-14 10:10:44
+## 1635 2017-09-11 21:43:09
+## 1636 2017-09-11 12:53:12
+## 1637 2017-09-11 13:10:09
+## 1638 2017-09-11 13:10:13
+## 1639 <NA>
+## 1640 2017-09-11 12:13:54
+## 1641 2017-09-11 22:28:15
+## 1642 2017-09-11 22:28:38
+## 1643 2017-09-12 10:03:29
+## 1644 2017-09-14 10:09:37
+## 1645 2017-09-14 10:09:44
+## 1646 2017-09-14 10:11:50
+## 1647 2017-09-14 10:12:38
+## 1648 2017-09-14 10:12:46
+## 1649 2017-09-11 21:44:59
+## 1650 2017-09-11 21:46:55
+## 1651 2017-09-11 22:26:24
+## 1652 2017-09-11 22:26:45
+## 1653 2017-09-11 12:47:50
+## 1654 2017-09-11 23:57:59
+## 1655 2017-09-11 21:30:40
+## 1656 2017-09-12 10:05:45
+## 1657 2017-09-11 22:25:07
+## 1658 2017-09-11 22:25:25
+## 1659 2017-09-11 23:57:08
+## 1660 2017-09-11 12:06:16
+## 1661 2017-09-11 12:06:52
+## 1662 2017-09-11 21:44:57
+## 1663 2017-09-12 20:32:09
+## 1664 2017-09-11 23:57:27
+## 1665 2017-09-12 20:24:40
+## 1666 2017-09-12 20:25:23
+## 1667 2017-09-11 21:30:39
+## 1668 2017-09-14 10:10:21
+## 1669 2017-09-12 20:29:53
+## 1670 2017-09-11 12:12:12
+## 1671 2017-09-11 12:13:04
+## 1672 2017-09-12 10:14:53
+## 1673 2017-09-11 23:57:10
+## 1674 2017-09-11 23:57:15
+## 1675 2017-09-12 20:21:43
+## 1676 2017-09-12 20:24:54
+## 1677 2017-09-11 21:27:04
+## 1678 2017-09-11 21:25:00
+## 1679 2017-09-11 21:42:42
+## 1680 2017-09-12 20:29:47
+## 1681 2017-09-12 10:06:28
+## 1682 2017-09-11 22:25:45
+## 1683 2017-09-11 22:26:09
+## 1684 2017-09-12 20:30:13
+## 1685 2017-09-12 20:30:21
+## 1686 2017-09-12 20:30:31
+## 1687 2017-09-12 20:22:00
+## 1688 2017-09-12 10:06:13
+## 1689 2017-09-12 20:26:16
+## 1690 2017-09-12 20:26:27
+## 1691 2017-09-11 21:23:10
+## 1692 2017-09-11 21:23:20
+## 1693 2017-09-11 21:44:23
+## 1694 2017-09-11 21:44:32
+## 1695 2017-09-11 21:24:26
+## 1696 2017-09-11 21:29:37
+## 1697 2017-09-11 21:24:56
+## 1698 2017-09-11 21:29:27
+## 1699 2017-09-12 10:11:26
+## 1700 2017-09-12 20:30:00
+## 1701 2017-09-11 21:22:54
+## 1702 2017-09-11 21:22:48
+## 1703 2017-09-13 23:03:46
+## 1704 2017-09-14 08:52:15
+## 1705 2017-09-14 08:52:12
+## 1706 2017-09-14 09:06:31
+## 1707 2017-09-14 08:51:29
+## 1708 2017-09-14 08:53:21
+## 1709 2017-09-14 09:06:10
+## 1710 2017-09-13 23:02:25
+## 1711 2017-09-14 08:50:41
+## 1712 2017-09-14 08:52:19
+## 1713 2017-09-14 08:52:38
+## 1714 2017-09-14 08:52:47
+## 1715 2017-09-14 08:53:11
+## 1716 2017-09-14 12:21:24
+## 1717 2017-09-13 23:02:22
+## 1718 2017-09-13 23:01:54
+## 1719 2017-09-14 09:37:32
+## 1720 2017-09-14 09:05:56
+## 1721 2017-09-14 09:08:01
+## 1722 2017-09-13 15:10:39
+## 1723 2017-09-14 09:23:10
+## 1724 2017-09-14 08:36:54
+## 1725 2017-09-13 22:55:24
+## 1726 2017-09-14 08:53:24
+## 1727 2017-09-14 08:50:30
+## 1728 2017-09-14 12:33:08
+## 1729 2017-09-14 12:33:40
+## 1730 2017-09-14 09:07:50
+## 1731 2017-09-13 22:59:01
+## 1732 2017-09-14 12:46:02
+## 1733 2017-09-13 15:32:17
+## 1734 2017-09-14 09:23:53
+## 1735 2017-09-14 09:27:43
+## 1736 2017-09-13 15:08:04
+## 1737 2017-09-13 15:08:20
+## 1738 2017-09-13 15:09:09
+## 1739 2017-09-14 08:49:22
+## 1740 2017-09-13 22:54:54
+## 1741 2017-09-14 09:23:28
+## 1742 2017-09-13 23:01:39
+## 1743 2017-09-14 09:37:08
+## 1744 2017-09-14 09:03:19
+## 1745 2017-09-13 15:07:49
+## 1746 2017-09-14 08:48:39
+## 1747 2017-09-13 22:58:59
+## 1748 2017-09-14 08:36:19
+## 1749 2017-09-14 12:21:02
+## 1750 2017-09-14 08:34:10
+## 1751 2017-09-14 08:18:48
+## 1752 2017-09-14 08:19:14
+## 1753 2017-09-13 15:09:43
+## 1754 2017-09-14 12:45:59
+## 1755 2017-09-14 08:44:38
+## 1756 2017-09-14 09:23:15
+## 1757 2017-09-14 09:23:41
+## 1758 2017-09-14 09:24:30
+## 1759 2017-09-14 08:47:16
+## 1760 2017-09-14 09:32:00
+## 1761 2017-09-14 09:32:17
+## 1762 2017-09-13 22:57:29
+## 1763 2017-09-13 22:57:58
+## 1764 2017-09-14 08:49:18
+## 1765 2017-09-13 22:58:21
+## 1766 2017-09-14 08:49:25
+## 1767 2017-09-13 22:59:39
+## 1768 2017-09-13 23:00:23
+## 1769 2017-09-14 08:49:53
+## 1770 2017-09-14 08:50:17
+## 1771 2017-09-14 08:57:30
+## 1772 2017-09-13 15:07:42
+## 1773 2017-09-14 08:33:43
+## 1774 2017-09-11 23:25:34
+## 1775 2017-09-11 23:25:53
+## 1776 2017-09-14 08:35:20
+## 1777 2017-09-14 08:35:54
+## 1778 2017-09-11 23:27:05
+## 1779 2017-09-11 23:29:11
+## 1780 2017-09-13 23:04:29
+## 1781 2017-09-13 15:13:07
+## 1782 2017-09-13 15:16:11
+## 1783 2017-09-14 12:45:54
+## 1784 2017-09-13 15:22:16
+## 1785 2017-09-13 15:28:21
+## 1786 2017-09-13 23:06:45
+## 1787 2017-09-14 08:44:50
+## 1788 2017-09-14 08:47:07
+## 1789 2017-09-11 23:21:30
+## 1790 2017-09-13 22:55:27
+## 1791 2017-09-13 22:56:28
+## 1792 2017-09-13 22:56:59
+## 1793 2017-09-14 08:48:15
+## 1794 2017-09-14 08:48:17
+## 1795 2017-09-13 22:58:02
+## 1796 2017-09-11 23:23:44
+## 1797 2017-09-14 08:49:31
+## 1798 2017-09-14 08:49:41
+## 1799 2017-09-14 09:36:50
+## 1800 2017-09-14 09:37:02
+## 1801 2017-09-11 23:24:33
+## 1802 2017-09-14 08:32:48
+## 1803 2017-09-14 08:30:44
+## 1804 2017-09-14 08:31:41
+## 1805 2017-09-14 08:18:01
+## 1806 2017-09-11 23:26:12
+## 1807 2017-09-11 23:26:16
+## 1808 2017-09-14 08:19:22
+## 1809 2017-09-11 23:29:56
+## 1810 2017-09-13 15:11:38
+## 1811 2017-09-14 08:38:50
+## 1812 2017-09-14 08:39:01
+## 1813 2017-09-14 12:45:29
+## 1814 2017-09-13 15:22:09
+## 1815 2017-09-14 08:12:03
+## 1816 2017-09-14 08:43:57
+## 1817 2017-09-14 08:44:07
+## 1818 2017-09-14 08:23:53
+## 1819 2017-09-14 08:44:52
+## 1820 2017-09-11 23:22:25
+## 1821 2017-09-13 22:55:43
+## 1822 2017-09-14 08:48:01
+## 1823 2017-09-11 23:22:44
+## 1824 2017-09-11 23:22:46
+## 1825 2017-09-14 08:48:22
+## 1826 2017-09-14 08:40:13
+## 1827 2017-09-13 15:07:10
+## 1828 2017-09-13 15:07:25
+## 1829 2017-09-11 23:23:54
+## 1830 2017-09-11 23:24:24
+## 1831 2017-09-14 08:29:00
+## 1832 2017-09-11 23:24:55
+## 1833 2017-09-11 23:25:16
+## 1834 2017-09-14 08:39:16
+## 1835 2017-09-14 08:39:40
+## 1836 2017-09-14 08:18:34
+## 1837 2017-09-14 08:11:56
+## 1838 2017-09-13 23:06:27
+## 1839 2017-09-13 23:06:38
+## 1840 2017-09-14 08:19:40
+## 1841 2017-09-11 23:30:15
+## 1842 2017-09-13 15:12:11
+## 1843 2017-09-13 15:12:29
+## 1844 2017-09-14 08:39:05
+## 1845 2017-09-14 08:47:55
+## 1846 2017-09-13 15:17:42
+## 1847 2017-09-14 08:26:17
+## 1848 2017-09-13 23:06:43
+## 1849 2017-09-14 08:23:28
+## 1850 2017-09-14 08:24:06
+## 1851 2017-09-13 15:29:14
+## 1852 2017-09-13 15:29:50
+## 1853 2017-09-14 08:46:55
+## 1854 2017-09-14 08:47:31
+## 1855 2017-09-14 08:30:35
+## 1856 2017-09-13 23:05:27
+## 1857 2017-09-13 23:06:09
+## 1858 2017-09-14 08:15:23
+## 1859 2017-09-14 08:15:30
+## 1860 2017-09-14 08:29:22
+## 1861 2017-09-14 08:29:47
+## 1862 2017-09-13 15:12:49
+## 1863 2017-09-11 23:22:36
+## 1864 2017-09-13 15:17:24
+## 1865 2017-09-14 08:21:20
+## 1866 2017-09-13 23:05:41
+## 1867 2017-09-13 23:06:15
+## 1868 2017-09-14 08:19:45
+## 1869 2017-09-14 08:20:00
+## 1870 2017-09-13 23:03:50
+## 1871 2017-09-13 23:04:17
+## 1872 2017-09-14 08:24:46
+## 1873 2017-09-14 08:24:26
+## 1874 2017-09-14 08:21:49
+## 1875 2017-09-14 08:23:47
+## 1876 2017-09-14 08:22:24
+## 1877 2017-09-11 23:23:35
+## 1878 2017-09-14 08:13:58
+## 1879 2017-09-14 08:15:52
+## 1880 2017-09-14 08:08:32
+## 1881 2017-09-13 15:29:53
+## 1882 2017-09-14 08:24:36
+## 1883 2017-09-13 23:04:43
+## 1884 2017-09-13 23:05:22
+## 1885 2017-09-14 08:20:57
+## 1886 2017-09-14 08:13:56
+## 1887 2017-09-14 08:27:30
+## 1888 2017-09-14 08:21:59
+## 1889 2017-09-14 08:22:26
+## 1890 2017-09-14 08:15:38
+## 1891 2017-09-14 08:28:22
+## 1892 2017-09-14 08:22:14
+## 1893 2017-09-11 23:30:27
+## 1894 2017-09-14 08:08:51
+## 1895 2017-09-11 23:30:21
+## 1896 2017-09-14 08:24:14
+## 1897 2017-09-14 08:20:39
+## 1898 2017-09-19 08:58:14
+## 1899 2017-09-19 09:05:57
+## 1900 2017-09-19 09:06:27
+## 1901 2017-09-19 08:58:08
+## 1902 2017-09-19 09:06:41
+## 1903 2017-09-19 09:04:46
+## 1904 2017-09-19 08:59:08
+## 1905 2017-09-19 09:06:36
+## 1906 2017-09-19 09:05:35
+## 1907 2017-09-19 08:59:51
+## 1908 2017-09-19 09:00:06
+## 1909 2017-09-19 08:59:15
+## 1910 2017-09-19 08:59:43
+## 1911 2017-09-19 08:58:39
+## 1912 2017-09-19 08:58:51
+## 1913 2017-09-19 09:00:15
+## 1914 2017-09-19 08:58:26
+## 1915 2017-09-19 09:05:09
+## 1916 2017-09-19 09:04:43
+## 1917 2017-09-19 09:03:33
+## 1918 2017-09-19 09:03:50
+## 1919 2017-09-19 09:01:46
+## 1920 2017-09-19 09:02:16
+## 1921 2017-09-17 22:01:19
+## 1922 2017-09-17 22:09:15
+## 1923 2017-09-17 22:00:56
+## 1924 2017-09-17 22:08:43
+## 1925 2017-09-17 21:59:16
+## 1926 2017-09-17 22:03:19
+## 1927 2017-09-17 22:04:11
+## 1928 2017-09-17 22:07:12
+## 1929 2017-09-17 22:05:53
+## 1930 2017-09-17 22:01:33
+## 1931 2017-09-17 22:06:41
+## 1932 2017-09-17 22:04:52
+## 1933 2017-09-17 22:01:39
+## 1934 2017-09-17 22:04:22
+## 1935 2017-09-12 12:01:40
+## 1936 2017-09-21 12:57:31
+## 1937 2017-09-21 12:41:59
+## 1938 2017-09-12 11:59:27
+## 1939 2017-09-12 11:59:04
+## 1940 2017-09-12 12:01:17
+## 1941 2017-09-21 14:33:03
+## 1942 2017-09-21 12:39:48
+## 1943 2017-09-21 14:28:39
+## 1944 2017-09-12 12:01:45
+## 1945 2017-09-12 11:59:02
+## 1946 2017-09-22 18:31:03
+## 1947 2017-09-21 12:42:24
+## 1948 2017-09-12 12:00:04
+## 1949 2017-09-21 14:07:30
+## 1950 2017-09-12 12:00:34
+## 1951 2017-09-21 14:05:11
+## 1952 2017-09-21 14:05:26
+## 1953 2017-09-21 14:13:04
+## 1954 2017-09-21 14:27:09
+## 1955 2017-09-22 19:22:59
+## 1956 2017-09-21 14:31:31
+## 1957 2017-09-22 18:29:12
+## 1958 2017-09-21 12:54:25
+## 1959 2017-09-21 12:54:29
+## 1960 2017-09-21 12:31:01
+## 1961 2017-09-12 12:00:06
+## 1962 2017-09-12 12:00:26
+## 1963 2017-09-21 12:31:53
+## 1964 2017-09-22 18:23:18
+## 1965 2017-09-21 12:38:26
+## 1966 2017-09-22 19:20:11
+## 1967 2017-09-22 18:23:24
+## 1968 2017-09-21 12:41:57
+## 1969 2017-09-21 12:25:10
+## 1970 2017-09-21 12:25:36
+## 1971 2017-09-21 12:25:38
+## 1972 2017-09-21 12:26:30
+## 1973 2017-09-21 17:35:00
+## 1974 2017-09-21 15:32:26
+## 1975 2017-09-21 12:34:02
+## 1976 2017-09-21 12:38:23
+## 1977 2017-09-21 13:16:38
+## 1978 2017-09-22 19:22:00
+## 1979 2017-09-22 19:22:52
+## 1980 2017-09-22 18:26:11
+## 1981 2017-09-21 13:32:43
+## 1982 2017-09-21 13:34:11
+## 1983 2017-09-22 18:31:07
+## 1984 2017-09-21 14:42:31
+## 1985 2017-09-21 14:50:17
+## 1986 2017-09-21 12:46:20
+## 1987 2017-09-21 14:04:44
+## 1988 2017-09-21 13:14:03
+## 1989 2017-09-21 12:51:23
+## 1990 2017-09-21 13:16:47
+## 1991 2017-09-12 12:28:58
+## 1992 2017-09-21 15:10:59
+## 1993 2017-09-21 12:52:36
+## 1994 2017-09-22 18:45:21
+## 1995 2017-09-21 15:14:58
+## 1996 2017-09-21 15:16:24
+## 1997 2017-09-21 15:27:06
+## 1998 2017-09-21 15:27:47
+## 1999 2017-09-22 19:18:59
+## 2000 2017-09-21 15:37:10
+## 2001 2017-09-21 15:37:12
+## 2002 2017-09-21 15:37:35
+## 2003 2017-09-21 12:24:53
+## 2004 2017-09-21 17:31:37
+## 2005 2017-09-21 17:32:43
+## 2006 2017-09-21 17:34:50
+## 2007 2017-09-21 17:34:58
+## 2008 2017-09-21 13:57:25
+## 2009 2017-09-21 13:58:28
+## 2010 2017-09-21 13:59:53
+## 2011 2017-09-21 14:01:56
+## 2012 2017-09-12 12:20:09
+## 2013 2017-09-12 12:22:13
+## 2014 2017-09-12 12:22:16
+## 2015 2017-09-21 13:24:00
+## 2016 2017-09-21 13:30:05
+## 2017 2017-09-21 12:52:13
+## 2018 2017-09-12 12:04:56
+## 2019 2017-09-21 13:34:32
+## 2020 2017-09-21 13:36:38
+## 2021 2017-09-21 12:43:56
+## 2022 2017-09-21 14:51:06
+## 2023 2017-09-21 14:55:04
+## 2024 2017-09-21 15:05:18
+## 2025 2017-09-21 12:52:04
+## 2026 2017-09-21 17:27:18
+## 2027 2017-09-21 17:28:41
+## 2028 2017-09-12 12:05:00
+## 2029 2017-09-21 13:03:35
+## 2030 2017-09-22 19:12:52
+## 2031 2017-09-21 15:37:00
+## 2032 2017-09-21 13:04:20
+## 2033 2017-09-21 13:04:26
+## 2034 2017-09-21 13:04:29
+## 2035 2017-09-12 12:24:38
+## 2036 2017-09-22 18:41:47
+## 2037 2017-09-12 11:58:27
+## 2038 2017-09-12 11:58:45
+## 2039 2017-09-12 11:58:57
+## 2040 2017-09-21 13:11:45
+## 2041 2017-09-21 13:11:54
+## 2042 2017-09-21 13:13:47
+## 2043 2017-09-21 12:49:15
+## 2044 2017-09-12 12:03:45
+## 2045 2017-09-12 12:23:26
+## 2046 2017-09-22 18:40:48
+## 2047 2017-09-22 19:17:11
+## 2048 2017-09-22 18:42:53
+## 2049 2017-09-12 12:29:02
+## 2050 2017-09-12 12:29:23
+## 2051 2017-09-22 18:32:22
+## 2052 2017-09-21 12:45:32
+## 2053 2017-09-12 12:02:58
+## 2054 2017-09-21 12:49:12
+## 2055 2017-09-21 13:03:41
+## 2056 2017-09-21 13:04:13
+## 2057 2017-09-21 12:51:46
+## 2058 2017-09-22 19:16:34
+## 2059 2017-09-21 13:45:02
+## 2060 2017-09-12 12:13:24
+## 2061 2017-09-12 12:04:47
+## 2062 2017-09-21 13:47:08
+## 2063 2017-09-12 12:15:58
+## 2064 2017-09-22 18:47:09
+## 2065 2017-09-22 18:47:30
+## 2066 2017-09-12 12:19:37
+## 2067 2017-09-22 18:39:40
+## 2068 2017-09-22 19:16:31
+## 2069 2017-09-22 18:40:30
+## 2070 2017-09-12 12:11:58
+## 2071 2017-09-21 13:45:30
+## 2072 2017-09-21 13:09:41
+## 2073 2017-09-21 13:08:03
+## 2074 2017-09-12 12:14:08
+## 2075 2017-09-21 13:39:07
+## 2076 2017-09-12 12:17:28
+## 2077 2017-09-22 18:34:42
+## 2078 2017-09-12 12:10:21
+## 2079 2017-09-22 18:40:01
+## 2080 2017-09-12 12:11:46
+## 2081 2017-09-21 13:44:36
+## 2082 2017-09-12 12:13:10
+## 2083 2017-09-12 12:04:34
+## 2084 2017-09-21 13:47:05
+## 2085 2017-09-12 12:09:24
+## 2086 2017-09-12 12:14:42
+## 2087 2017-09-22 18:32:24
+## 2088 2017-09-22 18:32:47
+## 2089 2017-09-21 13:44:26
+## 2090 2017-09-12 12:02:54
+## 2091 2017-09-21 13:43:13
+## 2092 2017-09-12 12:10:48
+## 2093 2017-09-12 12:02:31
+## 2094 2017-09-12 12:29:26
+## 2095 2017-09-12 12:09:18
+## 2096 2017-09-21 13:44:01
+## 2097 2017-09-21 13:42:58
+## 2098 2017-09-12 12:09:34
+## 2099 2017-09-12 12:03:22
+## 2100 2017-09-21 13:46:27
+## 2101 2017-09-21 13:43:03
+## 2102 2017-09-08 20:18:09
+## 2103 2017-09-08 20:11:16
+## 2104 2017-09-08 20:23:19
+## 2105 2017-09-08 20:24:52
+## 2106 2017-09-08 20:22:20
+## 2107 2017-09-08 20:22:30
+## 2108 2017-09-08 20:13:57
+## 2109 2017-09-08 20:18:00
+## 2110 2017-09-08 20:16:48
+## 2111 2017-09-08 11:32:49
+## 2112 2017-09-08 11:33:56
+## 2113 2017-09-09 18:21:51
+## 2114 2017-09-09 18:22:53
+## 2115 <NA>
+## 2116 2017-09-09 11:10:08
+## 2117 2017-09-14 08:32:50
+## 2118 2017-09-08 20:15:36
+## 2119 2017-09-08 20:15:57
+## 2120 2017-09-12 15:10:58
+## 2121 2017-09-12 15:11:24
+## 2122 2017-09-12 15:11:43
+## 2123 2017-09-12 15:11:54
+## 2124 2017-09-12 15:12:21
+## 2125 2017-09-12 15:12:34
+## 2126 2017-09-09 11:10:43
+## 2127 2017-09-09 11:10:57
+## 2128 2017-09-08 11:28:58
+## 2129 2017-09-08 11:31:03
+## 2130 2017-09-19 16:38:33
+## 2131 2017-09-19 16:39:00
+## 2132 2017-09-19 16:39:49
+## 2133 2017-09-19 16:39:52
+## 2134 2017-09-08 11:34:28
+## 2135 2017-09-08 11:35:06
+## 2136 2017-09-19 16:29:33
+## 2137 2017-09-19 16:29:46
+## 2138 2017-09-19 16:31:50
+## 2139 2017-09-09 12:02:50
+## 2140 2017-09-19 16:34:31
+## 2141 2017-09-09 18:27:29
+## 2142 2017-09-09 18:27:45
+## 2143 2017-09-09 18:32:47
+## 2144 2017-09-09 18:35:16
+## 2145 2017-09-09 18:36:23
+## 2146 2017-09-09 18:37:30
+## 2147 2017-09-19 11:05:57
+## 2148 2017-09-14 08:32:46
+## 2149 2017-09-13 12:11:48
+## 2150 2017-09-19 16:34:16
+## 2151 2017-09-09 12:04:10
+## 2152 2017-09-09 12:06:02
+## 2153 2017-09-09 12:07:13
+## 2154 2017-09-12 15:11:05
+## 2155 2017-09-19 16:28:00
+## 2156 2017-09-19 16:28:23
+## 2157 2017-09-19 16:29:14
+## 2158 2017-09-19 16:29:22
+## 2159 2017-09-09 12:19:18
+## 2160 1970-06-23 23:29:35
+## 2161 2017-09-19 16:32:19
+## 2162 2017-09-09 18:26:47
+## 2163 2017-09-10 13:41:51
+## 2164 2017-09-10 13:43:06
+## 2165 2017-09-10 13:44:29
+## 2166 2017-09-10 13:44:43
+## 2167 2017-09-10 10:29:24
+## 2168 2017-09-10 10:29:43
+## 2169 2017-09-09 18:25:48
+## 2170 2017-09-09 18:26:33
+## 2171 2017-09-14 08:33:28
+## 2172 2017-09-19 16:27:02
+## 2173 2017-09-09 11:08:50
+## 2174 2017-09-09 11:09:35
+## 2175 2017-09-13 12:13:20
+## 2176 1970-01-18 05:01:28
+## 2177 2017-09-09 18:26:04
+## 2178 2017-09-10 13:41:19
+## 2179 2017-09-10 13:41:30
+## 2180 2017-09-09 11:04:35
+## 2181 2017-09-09 12:14:21
+## 2182 2017-09-09 12:18:53
+## 2183 2017-09-09 12:19:01
+## 2184 2017-09-10 10:31:20
+## 2185 2017-09-08 11:36:45
+## 2186 2017-09-19 11:02:41
+## 2187 2017-09-10 14:39:52
+## 2188 2017-09-10 13:40:48
+## 2189 2017-09-10 14:41:49
+## 2190 2017-09-09 11:05:16
+## 2191 2017-09-09 11:06:20
+## 2192 2017-09-10 14:48:37
+## 2193 2017-09-19 11:02:35
+## 2194 2017-09-10 14:31:10
+## 2195 2017-09-13 12:08:44
+## 2196 2017-09-10 10:32:11
+## 2197 2017-09-10 10:33:21
+## 2198 2017-09-10 14:45:13
+## 2199 2017-09-10 14:45:30
+## 2200 2017-09-09 12:12:33
+## 2201 2017-09-13 12:07:19
+## 2202 2017-09-13 12:07:57
+## 2203 2017-09-10 14:47:20
+## 2204 2017-09-19 11:01:21
+## 2205 2017-09-10 14:42:34
+## 2206 2017-09-19 10:26:35
+## 2207 2017-09-19 10:27:33
+## 2208 2017-09-19 11:01:06
+## 2209 2017-09-19 11:01:09
+## 2210 2017-09-13 12:05:54
+## 2211 2017-09-07 18:32:37
+## 2212 2017-09-07 18:32:15
+## 2213 2017-09-07 18:32:28
+## 2214 2017-09-07 18:38:03
+## 2215 2017-09-08 10:58:41
+## 2216 2017-09-08 10:59:16
+## 2217 2017-09-08 10:57:06
+## 2218 2017-09-07 18:33:07
+## 2219 2017-09-07 18:33:21
+## 2220 2017-09-07 18:33:53
+## 2221 2017-09-07 18:34:11
+## 2222 2017-09-07 18:34:27
+## 2223 2017-09-07 18:35:49
+## 2224 2017-09-07 18:37:20
+## 2225 2017-09-08 10:58:20
+## 2226 2017-09-08 10:58:25
+## 2227 2017-09-08 10:57:11
+## 2228 2017-09-08 10:57:19
+## 2229 2017-09-08 10:59:24
+## 2230 2017-09-08 10:57:51
+## 2231 2017-09-08 10:57:58
+## 2232 2017-09-08 10:57:37
+## 2233 2017-09-08 10:58:16
+## 2234 2017-09-08 10:59:27
+## 2235 2017-09-11 19:19:14
+## 2236 2017-09-11 19:15:14
+## 2237 2017-09-11 19:23:09
+## 2238 2017-09-11 19:16:08
+## 2239 2017-09-11 19:18:18
+## 2240 2017-09-11 19:19:35
+## 2241 2017-09-11 19:15:07
+## 2242 2017-09-11 19:15:28
+## 2243 2017-09-11 19:21:57
+## 2244 2017-09-11 19:23:37
+## 2245 2017-09-11 19:22:34
+## 2246 2017-09-11 19:18:01
+## 2247 2017-09-11 19:15:24
+## 2248 2017-09-11 19:14:22
+## 2249 2017-09-11 19:19:44
+## 2250 2017-09-11 19:17:13
+## 2251 2017-09-11 19:20:57
+## 2252 2017-09-11 19:23:50
+## 2253 2017-09-11 19:17:03
+## 2254 2017-09-11 19:20:52
+## 2255 2017-09-11 19:20:20
+## 2256 2017-09-11 19:23:44
+## 2257 2017-09-11 20:40:25
+## 2258 2017-09-11 20:43:30
+## 2259 2017-09-11 20:38:55
+## 2260 2017-09-11 20:34:04
+## 2261 2017-09-11 20:39:19
+## 2262 2017-09-11 20:37:12
+## 2263 2017-09-11 20:42:37
+## 2264 2017-09-11 20:39:31
+## 2265 2017-09-11 20:42:06
+## 2266 2017-09-11 20:35:18
+## 2267 2017-09-11 20:36:17
+## 2268 2017-09-11 20:44:18
+## 2269 2017-09-11 20:36:37
+## 2270 2017-09-11 20:44:01
+## 2271 2017-09-11 20:37:39
+## 2272 2017-09-11 20:44:09
+## 2273 2017-09-11 20:40:56
+## 2274 2017-09-11 20:34:43
+## 2275 2017-09-11 20:34:58
+## 2276 2017-09-11 20:36:28
+## 2277 2017-09-11 20:40:44
+## 2278 2017-09-11 20:35:15
+## 2279 2017-08-10 18:39:25
+## 2280 2017-08-10 18:50:52
+## 2281 2017-08-10 18:55:29
+## 2282 2017-08-10 19:26:18
+## 2283 2017-08-10 19:17:12
+## 2284 2017-08-10 19:25:35
+## 2285 2017-08-10 19:25:41
+## 2286 2017-08-10 19:26:06
+## 2287 2017-08-10 13:08:09
+## 2288 2017-08-10 19:11:58
+## 2289 2017-08-10 19:13:44
+## 2290 2017-08-10 19:14:45
+## 2291 2017-08-10 19:14:57
+## 2292 2017-08-10 19:15:22
+## 2293 2017-08-10 18:35:59
+## 2294 2017-08-10 18:38:33
+## 2295 2017-08-10 13:08:17
+## 2296 2017-08-10 13:08:28
+## 2297 2017-08-10 13:11:12
+## 2298 2017-08-10 13:11:44
+## 2299 2017-08-10 13:12:06
+## 2300 2017-08-10 13:12:26
+## 2301 2017-08-10 13:13:12
+## 2302 2017-07-06 13:38:14
+## 2303 2017-07-06 13:38:44
+## 2304 2017-07-06 13:39:00
+## 2305 2017-07-06 13:42:25
+## 2306 2017-07-06 13:42:29
+## 2307 2017-07-06 13:46:17
+## 2308 2017-07-06 13:56:33
+## 2309 2017-07-06 13:56:40
+## 2310 2017-07-06 14:09:01
+## 2311 2017-07-06 14:09:45
+## 2312 2017-07-06 14:11:58
+## 2313 2017-07-06 14:12:36
+## 2314 2017-07-06 14:13:23
+## 2315 2017-07-06 14:17:38
+## 2316 2017-07-06 14:17:52
+## 2317 2017-07-06 14:17:59
+## 2318 2017-07-06 14:19:56
+## 2319 2017-07-06 14:20:20
+## 2320 2017-07-06 14:21:07
+## 2321 2017-07-06 14:21:30
+## 2322 2017-07-06 14:21:42
+## 2323 2017-07-06 14:21:46
+## 2324 2017-07-06 14:23:18
+## 2325 2017-07-06 14:23:24
+## 2326 2017-07-06 14:23:55
+## 2327 2017-07-06 14:24:00
+## 2328 2017-07-06 14:24:09
+## 2329 2017-07-06 14:46:21
+## 2330 2017-07-06 14:47:09
+## 2331 2017-07-06 14:48:18
+## 2332 2017-07-06 14:48:52
+## 2333 2017-07-06 14:49:32
+## 2334 2017-07-06 14:50:22
+## 2335 2017-07-06 14:50:49
+## 2336 2017-07-06 14:53:00
+## 2337 2017-07-06 14:53:28
+## 2338 2017-07-06 14:55:58
+## 2339 2017-07-06 14:57:04
+## 2340 2017-07-06 14:58:13
+## 2341 2017-07-06 15:00:48
+## 2342 2017-07-06 15:01:24
+## 2343 2017-07-06 15:06:04
+## 2344 2017-07-06 15:06:24
+## 2345 2017-07-06 15:07:31
+## 2346 2017-07-06 15:07:35
+## 2347 2017-07-06 16:51:35
+## 2348 2017-07-06 16:53:29
+## 2349 2017-07-06 16:53:42
+## 2350 2017-07-06 16:53:52
+## 2351 2017-07-06 16:54:56
+## 2352 2017-07-06 16:58:49
+## 2353 2017-07-06 17:00:19
+## 2354 2017-07-06 17:01:35
+## 2355 2017-07-06 17:02:40
+## 2356 2017-07-06 17:02:47
+## 2357 2017-07-06 17:08:44
+## 2358 2017-07-06 17:11:28
+## 2359 2017-07-06 17:11:37
+## 2360 2017-07-06 17:15:06
+## 2361 2017-07-06 17:17:40
+## 2362 2017-07-06 17:21:36
+## 2363 2017-07-06 17:25:58
+## 2364 2017-07-06 17:26:46
+## 2365 2017-07-06 17:26:52
+## 2366 2017-07-22 18:57:15
+## 2367 2017-07-22 19:02:00
+## 2368 2017-07-22 19:03:58
+## 2369 2017-07-22 19:04:07
+## 2370 2017-07-22 19:05:19
+## 2371 2017-07-22 19:05:23
+## 2372 2017-07-12 21:57:20
+## 2373 2017-07-12 21:57:32
+## 2374 2017-07-12 21:57:54
+## 2375 2017-07-12 22:01:37
+## 2376 2017-07-12 22:02:32
+## 2377 2017-07-12 22:02:40
+## 2378 2017-07-12 22:03:48
+## 2379 2017-07-12 22:03:51
+## 2380 2017-07-12 22:04:12
+## 2381 2017-07-12 22:04:46
+## 2382 2017-07-12 22:06:08
+## 2383 2017-07-12 22:06:16
+## 2384 2017-07-12 22:06:36
+## 2385 2017-07-11 18:44:46
+## 2386 2017-07-11 18:44:58
+## 2387 2017-07-11 18:45:26
+## 2388 2017-07-11 18:45:56
+## 2389 2017-07-11 18:46:41
+## 2390 2017-07-11 18:47:50
+## 2391 2017-07-11 18:47:58
+## 2392 2017-07-11 18:49:28
+## 2393 2017-07-11 18:52:53
+## 2394 2017-07-11 18:53:41
+## 2395 2017-07-11 18:54:12
+## 2396 2017-07-11 18:54:54
+## 2397 2017-07-11 18:55:35
+## 2398 2017-07-11 18:55:39
+## 2399 2017-07-12 19:02:15
+## 2400 2017-07-12 19:02:49
+## 2401 2017-07-12 19:06:03
+## 2402 2017-07-12 19:06:22
+## 2403 2017-07-12 19:08:14
+## 2404 2017-07-12 19:08:17
+## 2405 2017-07-12 19:10:00
+## 2406 2017-07-12 19:10:45
+## 2407 2017-07-12 19:11:52
+## 2408 2017-07-12 19:13:12
+## 2409 2017-07-12 19:33:20
+## 2410 2017-07-12 19:33:57
+## 2411 2017-07-12 19:34:16
+## 2412 2017-07-12 19:35:32
+## 2413 2017-07-12 19:36:06
+## 2414 2017-07-12 19:36:54
+## 2415 2017-07-12 19:37:04
+## 2416 2017-07-12 19:37:30
+## 2417 2017-07-12 19:38:59
+## 2418 2017-07-12 19:39:53
+## 2419 2017-07-12 19:51:16
+## 2420 2017-07-12 19:54:44
+## 2421 2017-07-12 19:54:59
+## 2422 2017-07-12 19:55:38
+## 2423 2017-07-12 19:56:11
+## 2424 2017-07-12 19:56:13
+## 2425 2017-07-12 20:16:55
+## 2426 2017-07-12 20:18:28
+## 2427 2017-07-12 20:18:51
+## 2428 2017-07-12 20:20:05
+## 2429 2017-07-12 20:20:19
+## 2430 2017-07-12 20:20:52
+## 2431 2017-07-12 20:21:38
+## 2432 2017-07-12 20:22:09
+## 2433 2017-07-12 20:26:05
+## 2434 2017-07-12 20:27:53
+## 2435 2017-07-12 20:28:30
+## 2436 2017-07-12 20:29:09
+## 2437 2017-07-12 20:29:39
+## 2438 2017-07-12 20:30:22
+## 2439 2017-07-12 20:46:17
+## 2440 2017-07-12 20:46:39
+## 2441 2017-07-12 20:47:52
+## 2442 2017-07-12 20:49:05
+## 2443 2017-07-12 20:50:02
+## 2444 2017-07-12 20:51:00
+## 2445 2017-07-12 20:53:02
+## 2446 2017-07-12 20:53:40
+## 2447 2017-07-12 20:53:59
+## 2448 2017-07-12 20:54:34
+## 2449 2017-07-12 21:01:33
+## 2450 2017-07-12 21:04:33
+## 2451 2017-07-12 21:04:41
+## 2452 2017-07-12 21:36:39
+## 2453 2017-07-12 21:37:39
+## 2454 2017-07-12 21:43:38
+## 2455 2017-07-12 21:44:33
+## 2456 2017-07-12 21:47:06
+## 2457 2017-07-12 21:47:33
+## 2458 2017-07-12 21:47:47
+## 2459 2017-07-12 21:47:54
+## 2460 2017-07-22 18:27:11
+## 2461 2017-07-22 18:27:19
+## 2462 2017-07-12 22:06:57
+## 2463 2017-07-12 22:09:31
+## 2464 2017-07-12 22:11:10
+## 2465 2017-07-13 00:37:49
+## 2466 2017-07-13 00:38:28
+## 2467 2017-07-13 00:39:25
+## 2468 2017-07-13 00:43:40
+## 2469 2017-07-13 00:45:23
+## 2470 2017-07-13 00:45:27
+## 2471 2017-07-13 00:45:46
+## 2472 2017-07-13 00:46:47
+## 2473 2017-07-13 00:47:25
+## 2474 2017-07-13 00:48:20
+## 2475 2017-07-13 00:49:04
+## 2476 2017-07-13 00:49:08
+## 2477 2017-07-22 18:44:14
+## 2478 2017-07-22 18:49:27
+## 2479 2017-07-22 18:27:35
+## 2480 2017-07-22 18:28:10
+## 2481 2017-07-22 18:30:34
+## 2482 2017-07-22 18:31:10
+## 2483 2017-07-22 18:31:33
+## 2484 2017-07-22 18:32:27
+## 2485 2017-07-22 18:33:32
+## 2486 2017-07-22 18:34:44
+## 2487 2017-07-22 18:52:40
+## 2488 2017-07-22 18:53:24
+## 2489 2017-07-22 18:55:24
+## 2490 2017-07-22 18:49:51
+## 2491 2017-07-22 18:55:33
+## 2492 2017-09-12 16:42:06
+## 2493 2017-09-12 16:39:52
+## 2494 2017-09-12 16:34:47
+## 2495 2017-09-12 16:38:52
+## 2496 2017-09-12 16:38:31
+## 2497 2017-09-12 16:53:06
+## 2498 2017-09-12 16:41:36
+## 2499 2017-09-12 16:39:34
+## 2500 2017-09-12 16:49:04
+## 2501 2017-09-12 16:38:17
+## 2502 2017-09-12 16:53:09
+## 2503 2017-09-12 16:31:01
+## 2504 2017-09-12 16:35:06
+## 2505 2017-09-12 16:42:48
+## 2506 2017-09-12 16:43:05
+## 2507 2017-09-12 16:41:58
+## 2508 2017-09-12 16:52:53
+## 2509 2017-09-12 16:46:51
+## 2510 2017-09-12 16:50:58
+## 2511 2017-09-12 16:34:37
+## 2512 2017-09-12 16:34:07
+## 2513 2017-09-12 16:43:10
+## 2514 2017-09-23 18:47:19
+## 2515 2017-09-23 18:46:47
+## 2516 2017-09-23 18:50:16
+## 2517 2017-09-23 18:47:56
+## 2518 2017-09-23 18:48:02
+## 2519 2017-09-23 18:48:20
+## 2520 2017-09-23 18:55:31
+## 2521 2017-09-23 18:57:00
+## 2522 2017-09-23 18:57:45
+## 2523 2017-09-23 18:58:28
+## 2524 2017-09-23 18:58:53
+## 2525 2017-09-23 19:00:12
+## 2526 2017-09-23 19:00:41
+## 2527 2017-09-23 19:02:13
+## 2528 2017-09-23 18:50:50
+## 2529 2017-09-23 18:52:28
+## 2530 2017-09-23 19:04:03
+## 2531 2017-09-23 19:04:47
+## 2532 2017-09-23 19:08:11
+## 2533 2017-09-23 19:09:19
+## 2534 2017-09-23 19:10:31
+## 2535 2017-09-23 19:10:33
+## 2536 2017-09-23 19:03:21
+## 2537 2017-09-23 19:16:57
+## 2538 2017-09-23 19:17:50
+## 2539 2017-09-23 19:19:53
+## 2540 2017-09-23 19:19:58
+## 2541 2017-09-23 19:20:35
+## 2542 2017-09-23 19:21:08
+## 2543 2017-09-23 19:21:13
+## 2544 2017-09-23 19:22:25
+## 2545 2017-09-23 19:23:45
+## 2546 2017-09-23 19:23:53
+## 2547 2017-09-23 19:27:09
+## 2548 2017-09-23 19:28:06
+## 2549 2017-09-23 19:29:26
+## 2550 2017-09-23 19:29:56
+## 2551 2017-09-23 19:31:03
+## 2552 2017-09-23 19:31:06
+## 2553 2017-09-23 19:42:57
+## 2554 2017-09-23 19:43:05
+## 2555 2017-09-23 19:43:46
+## 2556 2017-09-23 19:44:42
+## 2557 2017-09-23 19:46:12
+## 2558 2017-09-23 19:46:38
+## 2559 2017-09-23 19:46:44
+## 2560 2017-09-23 19:47:43
+## 2561 2017-09-23 19:48:31
+## 2562 2017-09-23 19:49:28
+## 2563 2017-09-23 19:49:49
+## 2564 2017-09-23 19:51:03
+## 2565 2017-09-23 19:51:07
+## 2566 2017-09-23 19:51:09
+## 2567 2017-09-23 19:15:27
+## 2568 2017-09-23 19:15:49
+## 2569 2017-09-23 19:16:50
+## 2570 2017-09-22 22:00:29
+## 2571 2017-09-22 22:00:31
+## 2572 2017-09-22 22:02:24
+## 2573 2017-09-22 22:03:31
+## 2574 2017-09-22 22:04:17
+## 2575 2017-09-22 21:59:11
+## 2576 2017-09-22 22:02:34
+## 2577 2017-09-22 22:00:16
+## 2578 2017-09-23 12:30:21
+## 2579 2017-09-23 12:33:14
+## 2580 2017-09-23 12:33:18
+## 2581 2017-09-23 12:34:25
+## 2582 2017-09-23 12:36:10
+## 2583 2017-09-23 12:36:42
+## 2584 2017-09-23 12:38:07
+## 2585 2017-09-23 12:38:15
+## 2586 2017-09-23 12:38:24
+## 2587 2017-09-23 12:38:39
+## 2588 2017-09-22 22:00:09
+## 2589 2017-09-23 13:59:32
+## 2590 2017-09-23 13:59:48
+## 2591 2017-09-23 14:00:01
+## 2592 2017-09-23 14:00:42
+## 2593 2017-09-23 14:01:14
+## 2594 2017-09-23 14:01:18
+## 2595 2017-09-23 14:01:59
+## 2596 2017-09-23 14:02:02
+## 2597 2017-09-22 22:04:27
+## 2598 2017-09-22 22:07:08
+## 2599 2017-09-23 12:38:48
+## 2600 2017-09-23 14:42:23
+## 2601 2017-09-23 14:45:10
+## 2602 2017-09-23 14:45:19
+## 2603 2017-09-23 14:48:15
+## 2604 2017-09-23 14:48:51
+## 2605 2017-09-23 14:49:10
+## 2606 2017-09-23 14:49:54
+## 2607 2017-09-23 14:50:20
+## 2608 2017-09-22 22:07:24
+## 2609 2017-09-22 22:07:30
+## 2610 2017-09-23 15:22:09
+## 2611 2017-09-23 15:23:26
+## 2612 2017-09-23 15:27:19
+## 2613 2017-09-23 15:28:00
+## 2614 2017-09-23 15:30:48
+## 2615 2017-09-23 15:33:46
+## 2616 2017-09-23 15:34:03
+## 2617 2017-09-23 15:40:11
+## 2618 2017-09-23 15:40:21
+## 2619 2017-09-23 15:40:41
+## 2620 2017-09-23 15:41:03
+## 2621 2017-09-23 14:50:26
+## 2622 2017-09-22 22:07:50
+## 2623 2017-09-22 22:07:58
+## 2624 2017-09-22 22:08:12
+## 2625 2017-09-22 22:09:08
+## 2626 2017-09-22 22:09:23
+## 2627 2017-09-22 22:11:34
+## 2628 2017-09-22 22:11:54
+## 2629 2017-09-22 22:12:00
+## 2630 2017-09-22 22:12:06
+## 2631 2017-09-23 15:43:29
+## 2632 2017-09-23 15:44:12
+## 2633 2017-09-23 11:54:51
+## 2634 2017-09-23 11:55:08
+## 2635 2017-09-23 11:55:46
+## 2636 2017-09-23 11:56:09
+## 2637 2017-09-23 11:57:21
+## 2638 2017-09-23 11:57:34
+## 2639 2017-09-23 11:58:13
+## 2640 2017-09-23 11:58:27
+## 2641 2017-09-23 11:58:30
+## 2642 2017-09-23 12:06:18
+## 2643 2017-09-23 12:06:46
+## 2644 2017-09-23 12:07:00
+## 2645 2017-09-23 12:07:42
+## 2646 2017-09-23 12:07:53
+## 2647 2017-09-23 12:08:13
+## 2648 2017-09-23 12:08:18
+## 2649 2017-09-23 12:08:38
+## 2650 2017-09-23 12:09:39
+## 2651 2017-09-23 12:11:44
+## 2652 2017-09-23 12:12:05
+## 2653 2017-09-23 12:13:15
+## 2654 2017-09-23 12:14:04
+## 2655 2017-09-23 12:14:25
+## 2656 2017-09-23 12:16:57
+## 2657 2017-09-23 12:17:17
+## 2658 2017-09-23 12:20:02
+## 2659 2017-09-23 12:21:18
+## 2660 2017-09-23 12:22:10
+## 2661 2017-09-23 12:22:38
+## 2662 2017-09-23 12:23:17
+## 2663 2017-09-23 12:23:35
+## 2664 2017-09-23 12:24:25
+## 2665 2017-09-23 12:26:20
+## 2666 2017-09-23 09:54:33
+## 2667 2017-09-23 09:56:13
+## 2668 2017-09-23 09:56:39
+## 2669 2017-09-23 09:56:44
+## 2670 2017-09-23 09:58:12
+## 2671 2017-09-23 10:02:35
+## 2672 2017-09-23 10:02:50
+## 2673 2017-09-23 10:03:40
+## 2674 2017-09-23 10:07:00
+## 2675 2017-09-23 10:07:11
+## 2676 2017-09-23 10:08:45
+## 2677 2017-09-23 10:11:40
+## 2678 2017-09-23 10:11:47
+## 2679 2017-09-23 10:13:49
+## 2680 2017-09-23 10:15:32
+## 2681 2017-09-23 10:16:59
+## 2682 2017-09-23 10:18:51
+## 2683 2017-09-23 10:19:47
+## 2684 2017-09-23 10:19:50
+## 2685 2017-09-23 14:02:15
+## 2686 2017-09-23 14:03:18
+## 2687 2017-09-23 14:04:12
+## 2688 2017-09-23 14:04:35
+## 2689 2017-09-23 14:04:44
+## 2690 2017-09-23 14:05:06
+## 2691 2017-09-23 14:05:54
+## 2692 2017-09-23 14:06:45
+## 2693 2017-09-23 14:07:21
+## 2694 2017-09-23 14:07:41
+## 2695 2017-09-23 14:08:08
+## 2696 2017-09-22 22:15:18
+## 2697 2017-09-22 22:15:52
+## 2698 2017-09-22 22:15:57
+## 2699 2017-09-22 22:16:38
+## 2700 2017-09-22 22:17:27
+## 2701 2017-09-22 22:20:08
+## 2702 2017-09-22 22:20:46
+## 2703 2017-09-22 22:22:24
+## 2704 2017-09-22 22:24:28
+## 2705 2017-09-22 22:26:04
+## 2706 2017-09-22 22:26:53
+## 2707 2017-09-22 22:27:09
+## 2708 2017-09-22 22:29:24
+## 2709 2017-09-22 22:35:34
+## 2710 2017-09-22 22:39:17
+## 2711 2017-09-22 22:40:05
+## 2712 2017-09-22 22:42:37
+## 2713 2017-09-22 22:45:54
+## 2714 2017-09-22 22:49:06
+## 2715 2017-09-22 22:50:54
+## 2716 2017-09-22 22:53:46
+## 2717 2017-09-22 22:53:53
+## 2718 2017-09-23 16:16:57
+## 2719 2017-09-23 16:17:40
+## 2720 2017-09-23 16:19:21
+## 2721 2017-09-23 16:22:52
+## 2722 2017-09-23 16:24:30
+## 2723 2017-09-23 16:24:46
+## 2724 2017-09-23 16:26:31
+## 2725 2017-09-23 16:31:02
+## 2726 2017-09-23 16:31:42
+## 2727 2017-09-23 16:36:21
+## 2728 2017-09-23 16:37:40
+## 2729 2017-09-23 16:42:20
+## 2730 2017-09-23 16:43:49
+## 2731 2017-09-23 16:44:17
+## 2732 2017-09-23 16:44:20
+## 2733 2017-09-23 11:07:59
+## 2734 2017-09-23 11:08:04
+## 2735 2017-09-23 11:08:41
+## 2736 2017-09-23 11:15:13
+## 2737 2017-09-23 11:15:32
+## 2738 2017-09-23 11:16:26
+## 2739 2017-09-23 11:17:04
+## 2740 2017-09-23 11:18:05
+## 2741 2017-09-23 11:18:08
+## 2742 2017-09-23 11:26:49
+## 2743 2017-09-23 11:27:27
+## 2744 2017-09-23 11:31:11
+## 2745 2017-09-23 11:31:20
+## 2746 2017-09-23 11:33:04
+## 2747 2017-09-23 11:33:07
+## 2748 2017-09-23 11:37:10
+## 2749 2017-09-23 11:37:19
+## 2750 2017-09-23 11:37:29
+## 2751 2017-09-23 11:42:44
+## 2752 2017-09-23 11:46:58
+## 2753 2017-09-23 11:47:16
+## 2754 2017-09-23 11:47:30
+## 2755 2017-09-23 11:49:33
+## 2756 2017-09-22 22:13:59
+## 2757 2017-09-23 10:26:11
+## 2758 2017-09-23 10:26:40
+## 2759 2017-09-23 10:27:16
+## 2760 2017-09-23 10:28:03
+## 2761 2017-09-23 11:06:59
+## 2762 2017-09-23 11:54:35
+## 2763 2017-09-23 11:50:08
+## 2764 2017-09-23 11:54:24
+## 2765 2017-09-13 16:38:26
+## 2766 2017-09-22 19:29:31
+## 2767 2017-09-13 16:35:45
+## 2768 2017-09-13 16:35:58
+## 2769 2017-09-13 16:37:39
+## 2770 2017-09-13 16:38:01
+## 2771 2017-09-22 19:18:38
+## 2772 2017-09-22 21:00:56
+## 2773 2017-09-22 19:20:06
+## 2774 2017-09-22 19:18:13
+## 2775 2017-09-22 19:26:41
+## 2776 2017-09-13 16:35:24
+## 2777 1969-12-31 23:10:51
+## 2778 2017-09-13 16:37:14
+## 2779 2017-09-13 16:18:13
+## 2780 2017-09-13 15:52:46
+## 2781 2017-09-11 18:44:01
+## 2782 2017-09-22 21:01:19
+## 2783 2017-09-13 16:39:36
+## 2784 2017-09-22 19:30:02
+## 2785 2017-09-13 16:02:40
+## 2786 2017-09-13 16:35:34
+## 2787 2017-09-13 07:48:00
+## 2788 2017-09-13 16:38:36
+## 2789 2017-09-13 16:36:21
+## 2790 2017-09-22 21:01:26
+## 2791 2017-09-13 16:36:30
+## 2792 2017-09-13 16:37:03
+## 2793 2017-09-13 15:46:25
+## 2794 2017-09-13 16:01:20
+## 2795 2017-09-22 19:24:19
+## 2796 2017-09-22 21:02:56
+## 2797 2017-09-13 16:23:44
+## 2798 2017-09-22 21:03:06
+## 2799 2017-09-22 19:29:25
+## 2800 2017-09-13 15:57:41
+## 2801 2017-09-22 21:07:50
+## 2802 2017-09-13 16:39:12
+## 2803 2017-09-22 21:27:17
+## 2804 2017-09-13 16:37:06
+## 2805 2017-09-22 21:01:48
+## 2806 2017-09-13 16:02:01
+## 2807 2017-09-22 17:03:12
+## 2808 2017-09-13 07:47:02
+## 2809 2017-09-22 21:05:28
+## 2810 2017-09-22 21:07:37
+## 2811 2017-09-13 16:16:05
+## 2812 2017-09-13 16:16:11
+## 2813 2017-09-13 16:18:54
+## 2814 2017-09-13 15:44:28
+## 2815 2017-09-13 15:44:49
+## 2816 2017-09-13 16:01:58
+## 2817 2017-09-22 17:02:50
+## 2818 2017-09-13 16:22:29
+## 2819 2017-09-13 15:31:44
+## 2820 2017-09-13 07:45:54
+## 2821 2017-09-23 10:21:49
+## 2822 2017-09-11 18:30:18
+## 2823 2017-09-21 15:20:14
+## 2824 2017-09-22 19:14:51
+## 2825 2017-09-13 15:58:14
+## 2826 2017-09-13 15:58:17
+## 2827 2017-09-11 18:43:35
+## 2828 2017-09-13 16:21:49
+## 2829 2017-09-13 16:01:11
+## 2830 2017-09-13 07:42:25
+## 2831 2017-09-13 07:42:46
+## 2832 2017-09-23 10:28:00
+## 2833 2017-09-13 15:36:03
+## 2834 2017-09-13 15:36:23
+## 2835 2017-09-13 15:36:27
+## 2836 2017-09-13 15:37:19
+## 2837 2017-09-13 16:38:46
+## 2838 2017-09-13 15:44:15
+## 2839 2017-09-13 16:08:37
+## 2840 2017-09-22 20:59:49
+## 2841 2017-09-13 15:59:56
+## 2842 2017-09-13 15:46:57
+## 2843 2017-09-22 17:02:19
+## 2844 2017-09-22 17:03:42
+## 2845 2017-09-13 15:48:28
+## 2846 2017-09-13 15:49:30
+## 2847 2017-09-13 15:50:38
+## 2848 2017-09-13 15:51:11
+## 2849 2017-09-13 15:51:44
+## 2850 2017-09-13 16:16:27
+## 2851 2017-09-13 07:35:52
+## 2852 2017-09-13 16:19:27
+## 2853 2017-09-13 16:08:55
+## 2854 2017-09-13 15:46:10
+## 2855 2017-09-13 16:21:42
+## 2856 2017-09-13 07:42:06
+## 2857 2017-09-13 07:41:32
+## 2858 2017-09-13 15:55:03
+## 2859 2017-09-13 15:57:17
+## 2860 2017-09-13 15:57:05
+## 2861 2017-09-23 10:21:22
+## 2862 2017-09-11 18:30:31
+## 2863 2017-09-13 15:58:09
+## 2864 2017-09-21 15:21:21
+## 2865 2017-09-21 15:21:40
+## 2866 2017-09-13 15:59:25
+## 2867 2017-09-11 18:42:12
+## 2868 2017-09-11 18:42:47
+## 2869 2017-09-11 18:42:54
+## 2870 2017-09-23 10:27:58
+## 2871 2017-09-13 16:15:17
+## 2872 2017-09-13 16:15:25
+## 2873 2017-09-13 16:02:50
+## 2874 2017-09-13 16:03:03
+## 2875 2017-09-22 21:26:37
+## 2876 2017-09-13 16:06:39
+## 2877 2017-09-13 07:35:56
+## 2878 2017-09-13 07:36:08
+## 2879 2017-09-13 16:09:34
+## 2880 2017-09-13 16:09:58
+## 2881 2017-09-13 15:47:49
+## 2882 2017-09-13 15:47:58
+## 2883 2017-09-13 16:14:57
+## 2884 2017-09-13 15:55:39
+## 2885 2017-09-23 10:21:08
+## 2886 2017-09-13 16:15:43
+## 2887 2017-09-13 16:15:54
+## 2888 2017-09-13 07:35:28
+## 2889 2017-09-13 15:52:58
+## 2890 2017-09-11 18:36:20
+## 2891 2017-09-13 16:19:54
+## 2892 2017-09-13 16:20:29
+## 2893 2017-09-13 16:20:52
+## 2894 2017-09-13 07:40:56
+## 2895 2017-09-23 10:20:48
+## 2896 2017-09-23 10:20:10
+## 2897 2017-09-23 10:20:54
+## 2898 2017-09-21 15:16:45
+## 2899 2017-09-21 15:17:42
+## 2900 2017-09-11 18:30:36
+## 2901 2017-09-23 10:24:02
+## 2902 2017-09-13 07:35:38
+## 2903 2017-09-21 15:18:46
+## 2904 2017-09-11 18:41:21
+## 2905 2017-09-11 18:41:07
+## 2906 2017-09-22 16:59:34
+## 2907 2017-09-22 16:59:52
+## 2908 2017-09-22 17:01:35
+## 2909 2017-09-23 10:27:17
+## 2910 2017-09-21 15:16:23
+## 2911 2017-09-21 15:16:08
+## 2912 2017-09-21 15:17:08
+## 2913 2017-09-13 16:03:32
+## 2914 2017-09-11 18:26:06
+## 2915 2017-09-13 16:10:38
+## 2916 2017-09-13 15:53:31
+## 2917 2017-09-13 07:36:47
+## 2918 2017-09-13 07:38:25
+## 2919 2017-09-23 10:20:32
+## 2920 2017-09-13 15:54:24
+## 2921 2017-09-23 10:26:56
+## 2922 2017-09-21 15:17:26
+## 2923 2017-09-21 15:16:00
+## 2924 2017-09-11 18:40:32
+## 2925 2017-09-21 15:18:19
+## 2926 2017-09-22 16:58:40
+## 2927 2017-09-13 07:39:32
+## 2928 2017-09-13 15:54:56
+## 2929 2017-09-11 18:40:42
+## 2930 2017-09-23 10:19:43
+## 2931 2017-09-22 16:57:36
+## 2932 2017-09-22 16:58:54
+## 2933 2017-09-23 10:24:43
+## 2934 2017-09-21 15:19:08
+## 2935 2017-09-23 10:24:23
+## 2936 2017-09-11 18:30:01
+## 2937 2017-09-22 16:59:23
+## 2938 2017-09-13 15:53:50
+## 2939 2017-09-22 16:57:14
+## 2940 2017-09-22 16:57:26
+## 2941 2017-09-13 20:13:34
+## 2942 2017-09-13 20:40:45
+## 2943 2017-09-13 20:07:56
+## 2944 2017-09-13 20:36:39
+## 2945 2017-09-13 20:41:38
+## 2946 2017-09-13 20:08:10
+## 2947 2017-09-13 20:18:50
+## 2948 2017-09-13 20:35:44
+## 2949 2017-09-13 20:34:58
+## 2950 2017-09-13 20:40:19
+## 2951 2017-09-13 20:43:00
+## 2952 2017-09-13 20:35:59
+## 2953 2017-09-13 20:19:04
+## 2954 2017-09-13 20:11:34
+## 2955 2017-09-13 20:09:24
+## 2956 2017-09-13 20:35:21
+## 2957 2017-09-13 20:35:07
+## 2958 2017-07-10 15:06:14
+## 2959 2017-07-10 15:06:01
+## 2960 2017-07-10 15:16:12
+## 2961 2017-07-10 15:10:26
+## 2962 2017-07-13 13:55:00
+## 2963 2017-07-13 13:55:11
+## 2964 2017-07-13 13:56:31
+## 2965 2017-07-13 13:57:28
+## 2966 2017-07-13 13:58:54
+## 2967 2017-07-10 15:10:47
+## 2968 2017-07-10 15:11:42
+## 2969 2017-07-10 15:12:48
+## 2970 2017-07-10 15:12:55
+## 2971 2017-07-10 15:13:55
+## 2972 2017-07-13 14:09:12
+## 2973 2017-07-13 14:10:07
+## 2974 2017-07-10 15:18:13
+## 2975 2017-07-10 15:19:30
+## 2976 2017-07-10 15:20:34
+## 2977 2017-07-10 15:20:40
+## 2978 2017-07-13 14:03:00
+## 2979 2017-07-13 14:03:10
+## 2980 2017-07-13 14:04:48
+## 2981 2017-07-13 14:07:35
+## 2982 2017-07-13 14:08:13
+## 2983 2017-07-13 14:08:47
+## 2984 2017-07-13 14:48:00
+## 2985 2017-07-13 14:49:18
+## 2986 2017-07-13 14:49:26
+## 2987 2017-07-13 14:50:03
+## 2988 2017-07-13 14:51:53
+## 2989 2017-07-13 14:51:56
+## 2990 2017-07-15 09:29:55
+## 2991 2017-07-15 09:30:38
+## 2992 2017-07-15 09:30:50
+## 2993 2017-07-15 09:31:17
+## 2994 2017-07-15 09:31:39
+## 2995 2017-07-15 09:31:54
+## 2996 2017-07-15 09:32:02
+## 2997 2017-07-15 09:32:49
+## 2998 2017-07-15 09:34:49
+## 2999 2017-07-13 14:10:11
+## 3000 2017-07-13 14:12:48
+## 3001 2017-07-13 14:13:22
+## 3002 2017-07-13 14:19:55
+## 3003 2017-07-13 14:21:18
+## 3004 2017-07-13 14:21:45
+## 3005 2017-07-13 14:21:48
+## 3006 2017-07-13 14:25:56
+## 3007 2017-07-13 14:27:09
+## 3008 2017-07-13 14:27:32
+## 3009 2017-07-13 14:28:32
+## 3010 2017-07-13 14:34:33
+## 3011 2017-07-13 14:38:30
+## 3012 2017-07-13 14:39:39
+## 3013 2017-07-13 14:40:54
+## 3014 2017-07-13 14:42:24
+## 3015 2017-07-13 14:43:26
+## 3016 2017-07-13 14:43:36
+## 3017 2017-07-13 14:45:55
+## 3018 2017-07-13 14:46:42
+## 3019 2017-07-13 14:47:25
+## 3020 2017-07-15 10:03:46
+## 3021 2017-07-15 10:03:49
+## 3022 2017-07-19 10:09:27
+## 3023 2017-07-19 10:09:38
+## 3024 2017-07-19 10:09:55
+## 3025 2017-07-19 10:10:43
+## 3026 2017-07-19 10:11:57
+## 3027 2017-07-19 10:12:14
+## 3028 2017-07-19 10:13:01
+## 3029 2017-07-19 10:13:06
+## 3030 2017-07-19 10:13:16
+## 3031 2017-07-19 10:14:42
+## 3032 2017-07-19 10:16:24
+## 3033 2017-07-19 10:16:40
+## 3034 2017-07-19 10:16:45
+## 3035 2017-07-19 10:17:08
+## 3036 2017-07-19 10:17:49
+## 3037 2017-07-19 10:18:10
+## 3038 2017-07-19 10:19:12
+## 3039 2017-07-19 10:19:36
+## 3040 2017-07-19 10:19:57
+## 3041 2017-07-19 10:21:06
+## 3042 2017-07-19 10:24:14
+## 3043 2017-07-19 10:24:18
+## 3044 2017-07-19 10:26:02
+## 3045 2017-07-19 10:26:41
+## 3046 2017-07-19 10:27:06
+## 3047 2017-07-19 10:28:27
+## 3048 2017-07-19 10:28:53
+## 3049 2017-07-19 10:28:55
+## 3050 2017-07-21 20:45:55
+## 3051 2017-07-21 20:48:16
+## 3052 2017-07-21 20:53:25
+## 3053 2017-07-21 20:54:18
+## 3054 2017-07-21 20:55:04
+## 3055 2017-07-21 21:00:15
+## 3056 2017-07-21 21:03:52
+## 3057 2017-07-21 21:15:28
+## 3058 2017-07-21 21:16:37
+## 3059 2017-07-21 21:17:38
+## 3060 2017-07-21 21:19:18
+## 3061 2017-07-21 21:20:29
+## 3062 2017-07-21 21:21:08
+## 3063 2017-07-21 21:26:49
+## 3064 2017-07-21 21:29:23
+## 3065 2017-07-21 21:32:35
+## 3066 2017-07-21 21:50:25
+## 3067 2017-07-21 21:54:28
+## 3068 2017-07-21 21:56:32
+## 3069 2017-07-21 21:57:55
+## 3070 2017-07-21 22:04:31
+## 3071 2017-07-21 22:05:44
+## 3072 2017-07-21 22:26:44
+## 3073 2017-07-21 22:30:07
+## 3074 2017-07-21 22:40:41
+## 3075 2017-07-21 22:44:14
+## 3076 2017-07-21 22:44:22
+## 3077 2017-07-21 22:44:29
+## 3078 2017-07-22 08:48:13
+## 3079 2017-07-22 08:48:35
+## 3080 2017-07-22 08:48:52
+## 3081 2017-07-22 08:49:10
+## 3082 2017-07-22 08:49:39
+## 3083 2017-07-22 08:50:08
+## 3084 2017-07-22 08:50:28
+## 3085 2017-07-22 08:51:14
+## 3086 2017-07-22 08:51:29
+## 3087 2017-07-22 08:53:07
+## 3088 2017-07-22 08:55:09
+## 3089 2017-07-22 08:57:09
+## 3090 2017-07-22 08:57:42
+## 3091 2017-07-22 08:58:49
+## 3092 2017-07-22 08:59:26
+## 3093 2017-07-22 09:00:30
+## 3094 2017-07-22 09:00:35
+## 3095 2017-07-22 09:02:04
+## 3096 2017-07-22 09:03:42
+## 3097 2017-07-22 09:08:17
+## 3098 2017-07-22 09:10:31
+## 3099 2017-07-22 09:10:46
+## 3100 2017-07-22 09:10:49
+## 3101 2017-07-15 09:35:33
+## 3102 2017-07-15 09:35:53
+## 3103 2017-07-15 09:36:35
+## 3104 2017-07-15 09:37:44
+## 3105 2017-07-15 09:38:10
+## 3106 2017-07-15 09:39:56
+## 3107 2017-07-15 09:40:16
+## 3108 2017-07-15 09:42:05
+## 3109 2017-07-15 09:43:23
+## 3110 2017-07-15 09:44:37
+## 3111 2017-07-15 09:45:23
+## 3112 2017-07-15 09:46:11
+## 3113 2017-07-15 09:46:56
+## 3114 2017-07-15 09:47:20
+## 3115 2017-07-15 09:49:01
+## 3116 2017-07-15 09:51:00
+## 3117 2017-07-15 09:51:49
+## 3118 2017-07-15 09:51:54
+## 3119 2017-07-15 09:53:25
+## 3120 2017-07-15 10:00:33
+## 3121 2017-07-15 10:01:19
+## 3122 2017-07-15 10:02:18
+## 3123 2017-07-15 10:02:32
+## 3124 2017-07-15 10:03:31
+## 3125 2017-07-10 14:59:26
+## 3126 2017-07-10 15:00:48
+## 3127 2017-07-10 15:02:24
+## 3128 2017-07-10 15:02:38
+## 3129 2017-07-10 15:03:08
+## 3130 2017-07-10 15:05:53
+## 3131 2017-07-25 10:24:58
+## 3132 2017-07-25 10:27:28
+## 3133 2017-07-25 10:38:10
+## 3134 2017-07-25 10:40:34
+## 3135 2017-07-25 10:58:14
+## 3136 2017-07-25 10:59:51
+## 3137 2017-07-25 11:08:43
+## 3138 2017-07-25 11:13:27
+## 3139 2017-07-25 11:13:43
+## 3140 2017-07-25 11:22:14
+## 3141 2017-07-25 11:22:59
+## 3142 2017-07-25 11:23:45
+## 3143 2017-07-25 11:25:54
+## 3144 2017-07-25 11:31:02
+## 3145 2017-07-25 11:31:12
+## 3146 2017-07-25 11:31:18
+## 3147 2017-07-25 11:31:25
+## 3148 2017-07-25 11:31:36
+## 3149 2017-07-25 11:32:51
+## 3150 2017-07-25 11:33:11
+## 3151 2017-07-25 11:33:14
+## 3152 2017-07-29 20:45:59
+## 3153 2017-07-29 20:46:18
+## 3154 2017-07-29 20:46:29
+## 3155 2017-07-29 20:47:07
+## 3156 2017-07-29 20:47:27
+## 3157 2017-07-29 20:49:50
+## 3158 2017-07-29 20:50:10
+## 3159 2017-07-29 20:50:43
+## 3160 2017-07-29 20:53:25
+## 3161 2017-07-29 20:54:07
+## 3162 2017-07-29 20:55:23
+## 3163 2017-07-29 20:55:50
+## 3164 2017-07-29 20:56:19
+## 3165 2017-07-29 20:56:36
+## 3166 2017-07-29 20:56:56
+## 3167 2017-07-29 20:57:36
+## 3168 2017-07-29 20:58:48
+## 3169 2017-07-29 20:59:17
+## 3170 2017-07-29 21:00:36
+## 3171 2017-07-29 21:02:05
+## 3172 2017-07-29 21:02:32
+## 3173 2017-07-29 21:03:31
+## 3174 2017-07-29 21:04:40
+## 3175 2017-07-29 21:07:04
+## 3176 2017-07-29 21:08:40
+## 3177 2017-07-29 21:09:03
+## 3178 2017-07-29 21:11:07
+## 3179 2017-07-29 21:12:38
+## 3180 2017-07-29 21:13:38
+## 3181 2017-07-29 21:14:17
+## 3182 2017-07-29 21:15:04
+## 3183 2017-07-29 21:15:49
+## 3184 2017-07-29 21:16:51
+## 3185 2017-07-29 21:16:57
+## 3186 2017-07-29 21:20:57
+## 3187 2017-07-29 21:23:18
+## 3188 2017-07-29 21:24:59
+## 3189 2017-07-29 21:26:13
+## 3190 2017-07-29 21:27:31
+## 3191 2017-07-29 21:27:37
+## 3192 2017-09-05 23:13:51
+## 3193 2017-09-05 23:14:46
+## 3194 2017-09-05 23:16:51
+## 3195 2017-09-05 23:17:57
+## 3196 2017-09-05 23:18:25
+## 3197 2017-09-05 23:19:27
+## 3198 2017-09-05 23:19:46
+## 3199 2017-09-05 23:19:49
+## 3200 2017-08-31 13:38:20
+## 3201 2017-08-31 13:38:29
+## 3202 2017-08-31 13:43:15
+## 3203 2017-08-31 13:46:33
+## 3204 2017-08-31 13:48:09
+## 3205 2017-08-31 13:48:35
+## 3206 2017-08-31 13:50:07
+## 3207 2017-08-31 13:53:25
+## 3208 2017-08-31 13:54:32
+## 3209 2017-08-31 13:55:34
+## 3210 2017-08-31 13:56:06
+## 3211 2017-08-31 13:56:11
+## 3212 2017-09-05 18:58:55
+## 3213 2017-09-05 19:00:31
+## 3214 2017-09-05 19:01:02
+## 3215 2017-08-31 13:00:26
+## 3216 2017-08-31 13:01:05
+## 3217 2017-08-31 13:01:18
+## 3218 2017-08-31 13:02:05
+## 3219 2017-08-31 13:03:03
+## 3220 2017-08-31 13:07:45
+## 3221 2017-08-31 13:10:35
+## 3222 2017-08-31 13:14:30
+## 3223 2017-08-31 13:20:41
+## 3224 2017-08-31 13:20:57
+## 3225 2017-08-31 13:24:20
+## 3226 2017-08-31 13:26:55
+## 3227 2017-08-31 13:27:17
+## 3228 2017-08-31 13:28:21
+## 3229 2017-08-31 13:31:23
+## 3230 2017-08-31 13:31:50
+## 3231 2017-08-31 13:35:33
+## 3232 2017-08-31 13:36:11
+## 3233 2017-08-31 13:36:23
+## 3234 2017-09-05 19:30:35
+## 3235 2017-09-05 19:31:47
+## 3236 2017-09-05 22:15:38
+## 3237 2017-09-05 22:16:27
+## 3238 2017-09-05 22:18:06
+## 3239 2017-09-05 22:21:09
+## 3240 2017-09-05 22:22:50
+## 3241 2017-09-05 22:23:43
+## 3242 2017-09-05 22:24:36
+## 3243 2017-09-05 22:24:53
+## 3244 2017-09-05 22:26:20
+## 3245 2017-09-05 22:26:47
+## 3246 2017-09-05 22:27:47
+## 3247 2017-09-05 22:27:57
+## 3248 2017-09-05 22:28:38
+## 3249 2017-09-05 22:41:23
+## 3250 2017-09-05 19:01:31
+## 3251 2017-09-05 19:01:41
+## 3252 2017-09-05 19:01:56
+## 3253 2017-09-05 19:02:14
+## 3254 2017-09-05 19:03:37
+## 3255 2017-09-05 19:05:00
+## 3256 2017-09-05 19:05:11
+## 3257 2017-09-05 19:05:51
+## 3258 2017-09-05 19:09:13
+## 3259 2017-09-05 19:10:25
+## 3260 2017-09-05 19:11:06
+## 3261 2017-09-05 19:11:09
+## 3262 2017-09-05 19:16:40
+## 3263 2017-09-05 19:18:55
+## 3264 2017-09-05 19:20:34
+## 3265 2017-09-05 19:22:48
+## 3266 2017-09-05 19:23:13
+## 3267 2017-09-05 19:24:06
+## 3268 2017-09-05 19:27:08
+## 3269 2017-09-11 23:18:48
+## 3270 2017-09-11 23:24:46
+## 3271 2017-09-11 23:26:07
+## 3272 2017-09-11 23:28:30
+## 3273 2017-09-11 23:28:39
+## 3274 2017-09-11 23:29:22
+## 3275 2017-09-11 23:31:53
+## 3276 2017-09-11 23:33:30
+## 3277 2017-09-11 23:38:20
+## 3278 2017-09-11 23:39:46
+## 3279 2017-09-11 23:40:47
+## 3280 2017-09-11 23:43:02
+## 3281 2017-09-11 23:44:08
+## 3282 2017-09-11 23:44:55
+## 3283 2017-09-11 23:45:30
+## 3284 2017-09-11 23:47:10
+## 3285 2017-09-11 23:50:35
+## 3286 2017-09-11 23:51:42
+## 3287 2017-09-05 22:44:57
+## 3288 2017-09-05 22:45:27
+## 3289 2017-09-05 22:49:25
+## 3290 2017-09-05 22:55:57
+## 3291 2017-09-05 22:58:31
+## 3292 2017-09-05 22:59:25
+## 3293 2017-09-05 23:03:19
+## 3294 2017-09-05 23:06:28
+## 3295 2017-09-05 23:11:43
+## 3296 2017-09-05 23:12:49
+## 3297 2017-09-12 00:18:56
+## 3298 2017-09-11 22:59:25
+## 3299 2017-09-11 23:02:10
+## 3300 2017-09-11 23:03:59
+## 3301 2017-09-11 23:15:35
+## 3302 2017-09-11 23:18:17
+## 3303 2017-09-12 00:10:43
+## 3304 2017-09-12 00:13:32
+## 3305 2017-09-12 00:13:45
+## 3306 2017-09-12 00:16:58
+## 3307 2017-09-12 00:03:23
+## 3308 2017-09-12 00:19:50
+## 3309 2017-09-12 00:02:07
+## 3310 2017-09-12 00:08:46
+## 3311 2017-09-12 00:03:46
+## 3312 2017-09-12 00:04:08
+## 3313 2017-09-12 00:04:54
+## 3314 2017-09-12 00:21:43
+## 3315 2017-09-12 00:22:05
+## 3316 2017-09-12 00:23:16
+## 3317 2017-09-12 00:21:04
+## 3318 2017-09-12 00:23:19
+## 3319 2017-09-10 14:00:29
+## 3320 2017-09-10 13:59:47
+## 3321 2017-09-10 16:25:20
+## 3322 2017-09-10 17:13:51
+## 3323 2017-09-10 16:40:04
+## 3324 2017-09-10 14:00:16
+## 3325 2017-09-10 17:20:35
+## 3326 2017-09-10 16:25:31
+## 3327 2017-09-10 13:59:44
+## 3328 2017-09-10 17:13:30
+## 3329 2017-09-10 13:59:18
+## 3330 2017-09-10 14:00:37
+## 3331 2017-09-10 16:25:43
+## 3332 2017-09-10 16:00:43
+## 3333 2017-09-10 13:59:14
+## 3334 2017-09-10 16:41:43
+## 3335 2017-09-10 16:00:17
+## 3336 2017-09-10 14:49:01
+## 3337 2017-09-10 14:11:01
+## 3338 2017-09-10 16:00:25
+## 3339 2017-09-10 16:30:12
+## 3340 2017-09-10 14:46:51
+## 3341 2017-09-10 16:00:01
+## 3342 2017-09-10 17:13:15
+## 3343 2017-09-10 14:12:20
+## 3344 2017-09-10 14:10:19
+## 3345 2017-09-10 15:43:25
+## 3346 2017-09-10 16:58:34
+## 3347 2017-09-10 15:59:59
+## 3348 2017-09-10 16:40:47
+## 3349 2017-09-10 16:40:56
+## 3350 2017-09-10 15:43:29
+## 3351 2017-09-10 16:40:43
+## 3352 2017-09-10 16:41:42
+## 3353 2017-09-10 13:58:49
+## 3354 2017-09-10 15:59:39
+## 3355 2017-09-10 15:59:46
+## 3356 2017-09-10 14:10:03
+## 3357 2017-09-10 16:28:21
+## 3358 2017-09-10 16:28:26
+## 3359 2017-09-10 16:28:27
+## 3360 2017-09-10 14:47:21
+## 3361 2017-09-10 14:47:50
+## 3362 2017-09-10 16:29:51
+## 3363 2017-09-10 16:10:30
+## 3364 2017-09-10 16:11:32
+## 3365 2017-09-10 16:11:51
+## 3366 2017-09-10 16:42:20
+## 3367 2017-09-10 15:43:13
+## 3368 2017-09-10 16:24:43
+## 3369 2017-09-10 16:24:54
+## 3370 2017-09-10 16:25:09
+## 3371 2017-09-10 17:21:00
+## 3372 2017-09-10 16:41:06
+## 3373 2017-09-10 16:41:19
+## 3374 2017-09-10 16:41:36
+## 3375 2017-09-10 14:06:20
+## 3376 2017-09-10 16:58:58
+## 3377 2017-09-10 16:42:40
+## 3378 2017-09-10 15:53:02
+## 3379 2017-09-10 15:53:29
+## 3380 2017-09-10 15:53:31
+## 3381 2017-09-10 16:00:54
+## 3382 2017-09-10 16:06:21
+## 3383 2017-09-10 16:10:00
+## 3384 2017-09-10 14:08:52
+## 3385 2017-09-10 14:09:01
+## 3386 2017-09-10 14:09:36
+## 3387 2017-09-10 14:09:47
+## 3388 2017-09-10 16:23:51
+## 3389 2017-09-10 16:35:32
+## 3390 2017-09-10 16:28:11
+## 3391 2017-09-10 14:51:36
+## 3392 2017-09-10 16:52:22
+## 3393 2017-09-10 16:28:56
+## 3394 2017-09-10 16:29:06
+## 3395 2017-09-10 16:29:18
+## 3396 2017-09-10 16:26:53
+## 3397 2017-09-10 16:27:03
+## 3398 2017-09-10 16:27:08
+## 3399 2017-09-10 16:27:17
+## 3400 2017-09-10 16:27:34
+## 3401 2017-09-10 16:27:46
+## 3402 2017-09-10 16:28:00
+## 3403 2017-09-10 17:03:47
+## 3404 2017-09-10 17:03:58
+## 3405 2017-09-10 15:43:47
+## 3406 2017-09-10 15:47:42
+## 3407 2017-09-10 15:47:48
+## 3408 2017-09-10 14:58:31
+## 3409 2017-09-10 14:59:07
+## 3410 2017-09-10 14:59:41
+## 3411 2017-09-10 14:59:44
+## 3412 2017-09-10 16:17:24
+## 3413 2017-09-10 16:35:18
+## 3414 2017-09-10 15:52:43
+## 3415 2017-09-10 14:52:37
+## 3416 2017-09-10 14:53:59
+## 3417 2017-09-10 14:56:38
+## 3418 2017-09-10 14:56:55
+## 3419 2017-09-10 16:21:01
+## 3420 2017-09-10 17:08:44
+## 3421 2017-09-10 17:11:24
+## 3422 2017-09-10 16:22:17
+## 3423 2017-09-10 16:22:28
+## 3424 2017-09-10 15:42:43
+## 3425 2017-09-10 15:51:28
+## 3426 2017-09-10 17:03:36
+## 3427 2017-09-10 14:03:52
+## 3428 2017-09-10 14:04:00
+## 3429 2017-09-10 14:04:53
+## 3430 2017-09-10 14:05:05
+## 3431 2017-09-10 15:48:02
+## 3432 2017-09-10 15:49:09
+## 3433 2017-09-10 15:49:18
+## 3434 2017-09-10 15:49:46
+## 3435 2017-09-10 15:50:39
+## 3436 2017-09-10 15:50:46
+## 3437 2017-09-10 15:51:05
+## 3438 2017-09-10 14:02:43
+## 3439 2017-09-10 15:57:12
+## 3440 2017-09-10 15:57:24
+## 3441 2017-09-10 17:04:08
+## 3442 2017-09-10 16:20:21
+## 3443 2017-09-10 16:53:08
+## 3444 2017-09-10 16:53:26
+## 3445 2017-09-10 15:55:11
+## 3446 2017-09-10 15:56:01
+## 3447 2017-09-10 15:56:08
+## 3448 2017-09-10 16:35:04
+## 3449 2017-09-10 16:16:56
+## 3450 2017-09-10 14:03:38
+## 3451 2017-09-10 14:50:04
+## 3452 2017-09-10 16:13:06
+## 3453 2017-09-10 16:13:27
+## 3454 2017-09-10 16:20:35
+## 3455 2017-09-10 17:06:31
+## 3456 2017-09-10 16:21:10
+## 3457 2017-09-10 16:21:22
+## 3458 2017-09-10 16:22:07
+## 3459 2017-09-10 16:34:52
+## 3460 2017-09-10 14:02:33
+## 3461 2017-09-10 17:25:47
+## 3462 2017-09-10 16:17:04
+## 3463 2017-09-10 16:30:45
+## 3464 2017-09-10 16:17:35
+## 3465 2017-09-10 16:17:46
+## 3466 2017-09-10 16:13:58
+## 3467 2017-09-10 17:23:06
+## 3468 2017-09-10 17:23:52
+## 3469 2017-09-10 14:01:12
+## 3470 2017-09-10 14:01:27
+## 3471 2017-09-10 14:02:20
+## 3472 2017-09-10 16:16:46
+## 3473 2017-09-10 16:30:52
+## 3474 2017-09-10 14:49:36
+## 3475 2017-09-10 16:12:38
+## 3476 2017-09-10 14:06:16
+## 3477 2017-09-10 17:04:24
+## 3478 2017-09-10 14:05:41
+## 3479 2017-09-10 14:06:06
+## 3480 2017-09-10 17:25:38
+## 3481 2017-09-10 16:15:31
+## 3482 2017-09-10 16:15:36
+## 3483 2017-09-10 15:54:56
+## 3484 2017-09-10 16:12:28
+## 3485 2017-09-10 17:08:22
+## 3486 2017-09-10 16:30:20
+## 3487 2017-09-10 16:30:42
+## 3488 2017-09-10 16:20:08
+## 3489 2017-09-10 16:34:31
+## 3490 2017-09-10 16:31:10
+## 3491 2017-09-10 17:04:40
+## 3492 2017-09-10 16:34:42
+## 3493 2017-09-10 16:14:15
+## 3494 2017-09-10 15:58:58
+## 3495 2017-09-10 15:59:12
+## 3496 2017-09-10 16:17:54
+## 3497 2017-09-10 17:25:31
+## 3498 2017-09-10 15:56:29
+## 3499 2017-09-10 17:24:51
+## 3500 2017-09-10 15:54:29
+## 3501 2017-09-10 16:18:22
+## 3502 2017-09-10 15:54:19
+## 3503 2017-09-10 15:58:26
+## 3504 2017-09-10 16:14:47
+## 3505 2017-09-10 15:54:44
+## 3506 2017-09-10 16:34:17
+## 3507 2017-09-10 16:34:22
+## 3508 2017-09-10 15:58:29
+## 3509 2017-09-10 15:57:52
+## 3510 2017-09-10 16:15:05
+## 3511 2017-09-10 15:58:22
+## 3512 2017-09-10 16:14:56
+## 3513 2017-09-10 16:34:02
+## 3514 2017-09-14 17:44:21
+## 3515 2017-09-14 17:35:30
+## 3516 2017-09-14 21:47:14
+## 3517 2017-09-14 18:57:46
+## 3518 2017-09-14 21:46:23
+## 3519 2017-09-14 20:22:22
+## 3520 2017-09-14 17:37:17
+## 3521 2017-09-14 18:57:38
+## 3522 2017-09-14 17:34:23
+## 3523 2017-09-14 21:46:51
+## 3524 2017-09-14 22:12:05
+## 3525 2017-09-14 21:45:22
+## 3526 2017-09-14 19:08:46
+## 3527 2017-09-14 21:45:40
+## 3528 2017-09-18 21:05:52
+## 3529 2017-09-14 18:51:13
+## 3530 2017-09-14 19:19:59
+## 3531 2017-09-11 13:04:04
+## 3532 2017-09-14 20:17:35
+## 3533 2017-09-14 20:17:45
+## 3534 2017-09-14 11:20:32
+## 3535 2017-09-14 11:23:18
+## 3536 2017-09-14 21:44:37
+## 3537 2017-09-11 13:17:22
+## 3538 2017-09-14 20:19:06
+## 3539 2017-09-14 17:44:33
+## 3540 2017-09-14 20:21:59
+## 3541 2017-09-11 13:08:27
+## 3542 2017-09-11 13:08:34
+## 3543 2017-09-14 17:50:49
+## 3544 2017-09-14 19:18:53
+## 3545 2017-09-14 21:42:42
+## 3546 2017-09-14 20:18:04
+## 3547 2017-09-14 20:18:07
+## 3548 2017-09-11 13:06:35
+## 3549 2017-09-14 20:18:54
+## 3550 2017-09-14 20:19:45
+## 3551 2017-09-14 22:11:04
+## 3552 2017-09-14 18:26:29
+## 3553 2017-09-14 18:26:33
+## 3554 2017-09-11 13:08:36
+## 3555 2017-09-14 21:48:12
+## 3556 2017-09-14 17:52:54
+## 3557 2017-09-14 17:54:09
+## 3558 2017-09-11 13:05:05
+## 3559 2017-09-11 13:05:11
+## 3560 2017-09-18 20:50:51
+## 3561 2017-09-18 20:51:51
+## 3562 2017-09-14 20:18:47
+## 3563 2017-09-14 22:10:53
+## 3564 2017-09-11 13:07:43
+## 3565 2017-09-14 20:46:13
+## 3566 2017-09-18 20:54:39
+## 3567 2017-09-18 20:55:38
+## 3568 2017-09-14 18:51:18
+## 3569 2017-09-18 20:58:36
+## 3570 2017-09-14 10:23:19
+## 3571 2017-09-14 10:24:18
+## 3572 2017-09-11 13:07:02
+## 3573 2017-09-18 21:05:21
+## 3574 2017-09-14 22:10:51
+## 3575 2017-09-14 22:10:31
+## 3576 2017-09-14 18:27:09
+## 3577 2017-09-14 21:48:24
+## 3578 2017-09-14 21:49:01
+## 3579 2017-09-14 17:54:16
+## 3580 2017-09-14 10:29:06
+## 3581 2017-09-11 13:18:10
+## 3582 2017-09-14 20:46:10
+## 3583 2017-09-14 18:26:13
+## 3584 2017-09-14 18:49:00
+## 3585 2017-09-14 21:55:19
+## 3586 2017-09-14 18:33:56
+## 3587 2017-09-14 18:34:00
+## 3588 2017-09-14 21:55:24
+## 3589 2017-09-14 18:34:52
+## 3590 2017-09-14 18:38:53
+## 3591 2017-09-14 18:39:50
+## 3592 2017-09-18 20:53:41
+## 3593 2017-09-18 20:54:12
+## 3594 2017-09-14 18:48:12
+## 3595 2017-09-14 22:10:18
+## 3596 2017-09-11 13:00:49
+## 3597 2017-09-11 13:02:54
+## 3598 2017-09-11 13:03:15
+## 3599 2017-09-11 13:03:27
+## 3600 2017-09-14 21:42:51
+## 3601 2017-09-14 21:43:08
+## 3602 2017-09-14 21:43:17
+## 3603 2017-09-14 18:41:48
+## 3604 2017-09-18 21:02:11
+## 3605 2017-09-14 18:56:25
+## 3606 2017-09-14 18:57:02
+## 3607 2017-09-14 21:53:41
+## 3608 2017-09-14 21:55:00
+## 3609 2017-09-18 21:06:48
+## 3610 2017-09-14 20:22:38
+## 3611 2017-09-14 19:10:17
+## 3612 2017-09-14 21:51:24
+## 3613 2017-09-14 21:52:09
+## 3614 2017-09-14 21:43:27
+## 3615 2017-09-14 21:53:01
+## 3616 2017-09-14 21:53:15
+## 3617 2017-09-11 13:18:18
+## 3618 2017-09-11 13:18:34
+## 3619 2017-09-14 18:34:00
+## 3620 2017-09-14 20:28:58
+## 3621 2017-09-14 20:29:36
+## 3622 2017-09-11 13:16:30
+## 3623 2017-09-14 20:45:21
+## 3624 2017-09-14 20:45:50
+## 3625 2017-09-14 18:41:48
+## 3626 2017-09-14 21:41:55
+## 3627 2017-09-14 21:42:18
+## 3628 2017-09-14 21:42:25
+## 3629 2017-09-14 10:15:29
+## 3630 2017-09-18 20:58:44
+## 3631 2017-09-18 20:59:00
+## 3632 2017-09-18 20:59:20
+## 3633 2017-09-18 20:59:44
+## 3634 2017-09-18 21:00:06
+## 3635 2017-09-14 18:56:01
+## 3636 2017-09-14 22:08:57
+## 3637 2017-09-14 18:41:53
+## 3638 2017-09-14 20:26:15
+## 3639 2017-09-14 18:26:33
+## 3640 2017-09-14 19:14:56
+## 3641 2017-09-14 21:52:31
+## 3642 2017-09-14 18:25:19
+## 3643 2017-09-14 21:52:49
+## 3644 2017-09-14 20:25:19
+## 3645 2017-09-14 18:41:53
+## 3646 2017-09-14 18:25:19
+## 3647 2017-09-14 18:45:41
+## 3648 2017-09-14 18:46:52
+## 3649 2017-09-18 20:55:49
+## 3650 2017-09-14 20:28:18
+## 3651 2017-09-11 12:57:15
+## 3652 2017-09-14 21:55:39
+## 3653 2017-09-14 21:57:19
+## 3654 2017-09-14 18:38:46
+## 3655 2017-09-14 18:38:53
+## 3656 2017-09-14 18:39:50
+## 3657 2017-09-14 20:24:24
+## 3658 2017-09-14 21:58:02
+## 3659 2017-09-14 18:26:13
+## 3660 2017-09-14 18:26:29
+## 3661 2017-09-14 18:51:13
+## 3662 2017-09-14 18:27:09
+## 3663 2017-09-14 10:22:00
+## 3664 2017-09-14 18:55:09
+## 3665 2017-09-14 18:55:15
+## 3666 2017-09-14 22:08:38
+## 3667 2017-09-11 12:59:07
+## 3668 2017-09-14 18:45:41
+## 3669 2017-09-14 18:46:52
+## 3670 2017-09-11 13:00:29
+## 3671 2017-09-11 13:19:24
+## 3672 2017-09-18 21:35:38
+## 3673 2017-09-14 22:13:15
+## 3674 2017-09-14 19:13:51
+## 3675 2017-09-14 19:15:01
+## 3676 2017-09-14 19:15:03
+## 3677 2017-09-14 20:24:17
+## 3678 2017-09-14 21:57:55
+## 3679 2017-09-18 21:12:57
+## 3680 2017-09-18 21:13:23
+## 3681 2017-09-18 21:26:58
+## 3682 2017-09-18 21:30:43
+## 3683 2017-09-11 13:22:07
+## 3684 2017-09-14 22:15:27
+## 3685 2017-09-14 18:33:56
+## 3686 2017-09-14 18:34:52
+## 3687 2017-09-14 18:38:46
+## 3688 2017-09-11 12:57:43
+## 3689 2017-09-11 12:57:46
+## 3690 2017-09-14 20:23:49
+## 3691 2017-09-14 22:24:29
+## 3692 2017-09-14 21:58:20
+## 3693 2017-09-14 21:58:25
+## 3694 2017-09-14 21:58:26
+## 3695 2017-09-18 21:34:24
+## 3696 2017-09-14 18:48:12
+## 3697 2017-09-18 21:35:47
+## 3698 2017-09-14 18:51:18
+## 3699 2017-09-11 12:50:55
+## 3700 2017-09-14 22:08:16
+## 3701 2017-09-14 22:08:26
+## 3702 2017-09-18 21:07:38
+## 3703 2017-09-14 21:57:35
+## 3704 2017-09-18 21:08:43
+## 3705 2017-09-14 22:14:22
+## 3706 2017-09-14 22:14:33
+## 3707 2017-09-14 22:14:55
+## 3708 2017-09-14 22:15:17
+## 3709 2017-09-14 18:49:00
+## 3710 2017-09-18 21:35:48
+## 3711 2017-09-14 22:22:27
+## 3712 2017-09-14 19:14:07
+## 3713 2017-09-14 20:23:20
+## 3714 2017-09-14 22:23:46
+## 3715 2017-09-14 22:24:27
+## 3716 2017-09-14 22:14:09
+## 3717 2017-09-11 12:59:23
+## 3718 2017-09-11 12:59:33
+## 3719 2017-09-14 22:24:20
+## 3720 2017-09-11 12:57:32
+## 3721 2017-09-14 22:23:19
+## 3722 2017-09-18 21:08:06
+## 3723 2017-09-14 22:13:33
+## 3724 2017-09-14 22:23:10
+## 3725 2017-09-14 22:13:20
+## 3726 2017-09-14 22:23:06
+## 3727 2017-09-14 22:24:01
+## 3728 2017-09-11 10:50:39
+## 3729 2017-09-10 19:46:04
+## 3730 2017-09-11 10:50:21
+## 3731 2017-09-11 10:51:17
+## 3732 2017-09-10 19:45:35
+## 3733 2017-09-11 10:51:36
+## 3734 2017-09-11 10:51:05
+## 3735 2017-09-11 10:48:55
+## 3736 2017-09-10 20:10:30
+## 3737 2017-09-10 20:11:38
+## 3738 2017-09-10 20:00:26
+## 3739 2017-09-10 20:04:28
+## 3740 2017-09-11 09:33:26
+## 3741 2017-09-10 19:46:11
+## 3742 2017-09-11 10:48:16
+## 3743 2017-09-11 10:48:27
+## 3744 2017-09-10 20:10:59
+## 3745 2017-09-11 10:51:40
+## 3746 2017-09-11 10:51:42
+## 3747 2017-09-10 19:51:00
+## 3748 2017-09-11 10:56:28
+## 3749 2017-09-10 19:59:43
+## 3750 2017-09-11 09:22:20
+## 3751 2017-09-11 09:26:20
+## 3752 2017-09-10 20:07:32
+## 3753 2017-09-10 19:44:00
+## 3754 2017-09-10 19:44:24
+## 3755 2017-09-11 09:33:30
+## 3756 2017-09-11 10:17:23
+## 3757 2017-09-11 09:45:23
+## 3758 2017-09-10 19:49:50
+## 3759 2017-09-10 19:39:42
+## 3760 2017-09-10 19:54:32
+## 3761 2017-09-11 11:13:31
+## 3762 2017-09-11 11:13:14
+## 3763 2017-09-10 19:44:57
+## 3764 2017-09-11 10:58:20
+## 3765 2017-09-11 10:58:41
+## 3766 2017-09-11 10:48:02
+## 3767 2017-09-11 10:59:20
+## 3768 2017-09-11 10:18:14
+## 3769 2017-09-11 10:18:45
+## 3770 2017-09-11 09:45:45
+## 3771 2017-09-10 19:55:18
+## 3772 2017-09-11 11:13:28
+## 3773 2017-09-10 19:55:27
+## 3774 2017-09-11 10:56:50
+## 3775 2017-09-10 19:59:30
+## 3776 2017-09-10 19:43:08
+## 3777 2017-09-10 19:59:24
+## 3778 2017-09-11 10:59:12
+## 3779 2017-09-11 10:45:50
+## 3780 2017-09-11 10:59:57
+## 3781 2017-09-11 11:00:05
+## 3782 2017-09-10 19:39:36
+## 3783 2017-09-10 20:15:03
+## 3784 2017-09-11 11:12:42
+## 3785 2017-09-11 09:20:09
+## 3786 2017-09-10 19:42:45
+## 3787 2017-09-11 10:23:11
+## 3788 2017-09-11 10:45:23
+## 3789 2017-09-11 10:23:37
+## 3790 2017-09-11 10:24:39
+## 3791 2017-09-11 10:59:54
+## 3792 2017-09-10 19:39:05
+## 3793 2017-09-11 10:20:40
+## 3794 2017-09-11 10:20:50
+## 3795 2017-09-11 10:21:04
+## 3796 2017-09-10 19:55:30
+## 3797 2017-09-11 11:01:59
+## 3798 2017-09-11 11:02:17
+## 3799 2017-09-11 10:23:27
+## 3800 2017-09-11 11:04:56
+## 3801 2017-09-11 10:16:53
+## 3802 2017-09-10 20:19:03
+## 3803 2017-09-10 20:19:43
+## 3804 2017-09-10 19:39:19
+## 3805 2017-09-11 11:10:27
+## 3806 2017-09-10 19:40:50
+## 3807 2017-09-10 19:41:05
+## 3808 2017-09-10 19:41:15
+## 3809 2017-09-11 09:16:24
+## 3810 2017-09-10 19:57:27
+## 3811 2017-09-11 10:44:36
+## 3812 2017-09-11 10:14:33
+## 3813 2017-09-10 20:17:56
+## 3814 2017-09-11 09:08:54
+## 3815 2017-09-11 11:05:24
+## 3816 2017-09-11 10:24:57
+## 3817 2017-09-11 10:26:35
+## 3818 2017-09-11 11:00:26
+## 3819 2017-09-11 10:20:05
+## 3820 2017-09-11 09:47:32
+## 3821 2017-09-11 09:47:42
+## 3822 2017-09-10 20:15:37
+## 3823 2017-09-10 20:16:04
+## 3824 2017-09-11 09:08:48
+## 3825 2017-09-11 09:54:25
+## 3826 2017-09-11 09:55:00
+## 3827 2017-09-11 09:10:22
+## 3828 2017-09-11 10:28:04
+## 3829 2017-09-11 11:01:33
+## 3830 2017-09-11 11:01:41
+## 3831 2017-09-11 11:01:50
+## 3832 2017-09-11 08:49:27
+## 3833 2017-09-11 11:02:42
+## 3834 2017-09-11 10:03:32
+## 3835 2017-09-11 10:03:56
+## 3836 2017-09-11 09:58:06
+## 3837 2017-09-11 09:59:08
+## 3838 2017-09-10 20:20:42
+## 3839 2017-09-11 11:11:11
+## 3840 2017-09-11 11:11:16
+## 3841 2017-09-11 11:11:26
+## 3842 2017-09-11 11:12:30
+## 3843 2017-09-11 10:43:59
+## 3844 2017-09-11 10:44:20
+## 3845 2017-09-11 10:14:25
+## 3846 2017-09-11 08:49:45
+## 3847 2017-09-11 10:01:35
+## 3848 2017-09-11 11:05:13
+## 3849 2017-09-10 19:37:44
+## 3850 2017-09-11 10:35:42
+## 3851 2017-09-11 10:26:49
+## 3852 2017-09-11 10:27:07
+## 3853 2017-09-11 10:29:08
+## 3854 2017-09-11 10:29:29
+## 3855 2017-09-11 10:30:09
+## 3856 2017-09-11 10:21:07
+## 3857 2017-09-11 09:49:30
+## 3858 2017-09-11 10:32:13
+## 3859 2017-09-11 08:49:24
+## 3860 2017-09-11 10:01:17
+## 3861 2017-09-11 09:10:48
+## 3862 2017-09-11 10:33:19
+## 3863 2017-09-11 10:05:30
+## 3864 2017-09-11 10:39:33
+## 3865 2017-09-11 10:31:26
+## 3866 2017-09-11 10:43:22
+## 3867 2017-09-11 08:49:21
+## 3868 2017-09-11 10:00:17
+## 3869 2017-09-10 20:21:02
+## 3870 2017-09-10 20:35:18
+## 3871 2017-09-11 09:09:00
+## 3872 2017-09-10 20:52:01
+## 3873 2017-09-10 19:57:18
+## 3874 2017-09-11 10:13:42
+## 3875 2017-09-10 20:47:50
+## 3876 2017-09-11 10:04:22
+## 3877 2017-09-11 10:04:52
+## 3878 2017-09-11 09:10:29
+## 3879 2017-09-11 10:11:29
+## 3880 2017-09-11 09:12:41
+## 3881 2017-09-11 09:12:46
+## 3882 2017-09-11 08:49:02
+## 3883 2017-09-11 09:59:18
+## 3884 2017-09-11 10:00:17
+## 3885 2017-09-11 09:59:39
+## 3886 2017-09-11 10:33:44
+## 3887 2017-09-10 20:52:04
+## 3888 2017-09-11 10:05:05
+## 3889 2017-09-11 10:10:39
+## 3890 2017-09-11 10:04:24
+## 3891 2017-09-11 10:11:08
+## 3892 2017-09-11 10:12:26
+## 3893 2017-09-11 10:00:14
+## 3894 2017-09-11 10:05:56
+## 3895 2017-09-21 10:44:00
+## 3896 2017-09-21 10:44:26
+## 3897 2017-09-11 14:38:18
+## 3898 2017-09-24 20:20:33
+## 3899 2017-09-21 10:47:49
+## 3900 2017-09-22 10:40:39
+## 3901 2017-09-20 15:23:44
+## 3902 2017-09-21 10:43:39
+## 3903 2017-09-21 10:41:37
+## 3904 2017-09-24 20:04:57
+## 3905 2017-09-24 20:08:19
+## 3906 2017-09-22 10:24:36
+## 3907 2017-09-21 10:40:57
+## 3908 2017-09-22 11:02:45
+## 3909 2017-09-21 10:39:11
+## 3910 2017-09-22 11:02:49
+## 3911 2017-09-11 14:41:43
+## 3912 2017-09-20 15:25:28
+## 3913 2017-09-20 15:25:41
+## 3914 2017-09-24 10:19:43
+## 3915 2017-09-21 10:37:06
+## 3916 2017-09-21 10:32:53
+## 3917 2017-09-22 11:01:54
+## 3918 2017-09-11 14:41:31
+## 3919 2017-09-11 14:45:27
+## 3920 2017-09-24 10:07:01
+## 3921 2017-09-22 10:21:40
+## 3922 2017-09-24 10:20:37
+## 3923 2017-09-21 10:29:18
+## 3924 2017-09-21 10:29:28
+## 3925 2017-09-21 10:32:36
+## 3926 2017-09-21 10:35:20
+## 3927 2017-09-21 10:30:51
+## 3928 2017-09-21 11:21:47
+## 3929 2017-09-11 14:40:45
+## 3930 2017-09-21 11:30:34
+## 3931 2017-09-22 10:35:25
+## 3932 2017-09-20 20:33:15
+## 3933 2017-09-20 20:37:47
+## 3934 2017-09-11 14:47:10
+## 3935 2017-09-24 20:13:41
+## 3936 2017-09-11 14:34:21
+## 3937 2017-09-21 11:16:02
+## 3938 2017-09-24 10:02:05
+## 3939 2017-09-11 14:35:49
+## 3940 2017-09-21 11:30:12
+## 3941 2017-09-22 10:38:04
+## 3942 2017-09-22 10:39:19
+## 3943 2017-09-11 14:47:23
+## 3944 2017-09-21 10:48:33
+## 3945 2017-09-21 10:29:49
+## 3946 2017-09-21 10:30:30
+## 3947 2017-09-24 10:02:01
+## 3948 2017-09-24 20:13:03
+## 3949 2017-09-24 20:13:20
+## 3950 2017-09-22 10:58:57
+## 3951 2017-09-24 10:02:30
+## 3952 2017-09-20 20:31:57
+## 3953 2017-09-24 09:44:16
+## 3954 2017-09-20 20:46:41
+## 3955 2017-09-11 14:36:03
+## 3956 2017-09-20 15:26:24
+## 3957 2017-09-11 14:38:29
+## 3958 2017-09-20 15:33:04
+## 3959 2017-09-20 15:34:11
+## 3960 2017-09-20 15:34:35
+## 3961 2017-09-24 20:28:02
+## 3962 2017-09-20 20:46:22
+## 3963 2017-09-20 20:46:27
+## 3964 2017-09-24 09:44:36
+## 3965 2017-09-24 09:47:55
+## 3966 2017-09-24 10:00:03
+## 3967 2017-09-21 10:48:52
+## 3968 2017-09-21 10:49:22
+## 3969 2017-09-11 14:33:08
+## 3970 2017-09-11 14:33:24
+## 3971 2017-09-11 14:35:13
+## 3972 2017-09-11 14:33:53
+## 3973 2017-09-20 15:38:20
+## 3974 2017-09-20 20:46:40
+## 3975 2017-09-11 15:04:46
+## 3976 2017-09-24 09:57:54
+## 3977 2017-09-20 20:41:49
+## 3978 2017-09-11 14:38:49
+## 3979 2017-09-11 14:39:30
+## 3980 2017-09-11 14:39:43
+## 3981 2017-09-22 10:34:22
+## 3982 2017-09-20 20:25:09
+## 3983 2017-09-24 20:37:12
+## 3984 2017-09-11 14:47:41
+## 3985 2017-09-11 14:38:40
+## 3986 2017-09-24 20:25:05
+## 3987 2017-09-24 20:26:20
+## 3988 2017-09-20 20:42:38
+## 3989 2017-09-22 10:32:39
+## 3990 2017-09-24 20:28:07
+## 3991 2017-09-11 15:04:37
+## 3992 2017-09-11 15:04:43
+## 3993 2017-09-24 20:32:06
+## 3994 2017-09-22 10:27:04
+## 3995 2017-09-20 15:27:44
+## 3996 2017-09-20 15:32:51
+## 3997 2017-09-20 20:42:05
+## 3998 2017-09-22 10:29:53
+## 3999 2017-09-24 09:37:34
+## 4000 2017-09-20 20:39:11
+## 4001 2017-09-24 20:37:56
+## 4002 2017-09-22 10:54:59
+## 4003 2017-09-11 14:48:20
+## 4004 2017-09-22 10:41:10
+## 4005 2017-09-22 10:41:30
+## 4006 2017-09-11 15:04:06
+## 4007 2017-09-24 20:30:32
+## 4008 2017-09-20 20:45:20
+## 4009 2017-09-11 14:48:41
+## 4010 2017-09-24 20:23:26
+## 4011 2017-09-24 20:54:08
+## 4012 2017-09-11 14:56:32
+## 4013 2017-09-11 14:55:14
+## 4014 2017-09-24 20:54:18
+## 4015 2017-09-24 20:54:16
+## 4016 2017-09-24 20:52:10
+## 4017 2017-09-24 20:21:51
+## 4018 2017-09-17 10:34:09
+## 4019 2017-09-20 13:49:12
+## 4020 2017-09-16 22:58:31
+## 4021 2017-09-20 13:48:56
+## 4022 2017-09-17 09:31:05
+## 4023 2017-09-17 10:32:55
+## 4024 2017-09-17 10:33:38
+## 4025 2017-09-16 22:57:35
+## 4026 2017-09-17 09:33:20
+## 4027 2017-09-17 09:31:55
+## 4028 2017-09-17 10:46:59
+## 4029 2017-09-17 09:32:31
+## 4030 2017-09-22 14:45:29
+## 4031 2017-09-16 22:55:13
+## 4032 2017-09-16 22:57:18
+## 4033 2017-09-17 10:54:09
+## 4034 2017-09-22 14:45:37
+## 4035 2017-09-17 10:33:11
+## 4036 2017-09-17 10:33:19
+## 4037 2017-09-22 14:54:41
+## 4038 2017-09-17 10:54:20
+## 4039 2017-09-20 13:54:37
+## 4040 2017-09-22 14:54:34
+## 4041 2017-09-22 14:46:33
+## 4042 2017-09-22 14:54:44
+## 4043 2017-09-22 14:46:24
+## 4044 2017-09-17 10:34:53
+## 4045 2017-09-20 15:16:15
+## 4046 2017-09-20 15:16:16
+## 4047 2017-09-17 10:34:30
+## 4048 2017-09-16 22:54:59
+## 4049 2017-09-17 10:19:24
+## 4050 2017-09-17 10:19:26
+## 4051 2017-09-18 12:23:10
+## 4052 2017-09-18 12:23:50
+## 4053 2017-09-18 12:26:45
+## 4054 2017-09-22 14:47:42
+## 4055 2017-09-22 14:51:34
+## 4056 2017-09-22 14:51:46
+## 4057 2017-09-22 14:51:58
+## 4058 2017-09-20 13:54:56
+## 4059 2017-09-20 14:00:01
+## 4060 2017-09-16 22:53:58
+## 4061 2017-09-18 12:40:14
+## 4062 2017-09-20 12:00:24
+## 4063 2017-09-20 12:01:05
+## 4064 2017-09-18 12:30:24
+## 4065 2017-09-18 12:30:30
+## 4066 2017-09-18 12:38:43
+## 4067 2017-09-17 09:59:36
+## 4068 2017-09-20 14:10:54
+## 4069 2017-09-20 14:11:08
+## 4070 2017-09-20 14:13:25
+## 4071 2017-09-20 14:14:29
+## 4072 2017-09-17 09:43:19
+## 4073 2017-09-17 09:55:36
+## 4074 2017-09-17 09:55:52
+## 4075 2017-09-17 09:56:38
+## 4076 2017-09-17 09:57:07
+## 4077 2017-09-16 22:53:07
+## 4078 2017-09-18 12:11:58
+## 4079 2017-09-18 12:21:26
+## 4080 2017-09-18 12:21:54
+## 4081 2017-09-20 15:03:40
+## 4082 2017-09-20 15:16:04
+## 4083 2017-09-22 14:41:49
+## 4084 2017-09-22 14:42:22
+## 4085 2017-09-17 10:35:30
+## 4086 2017-09-17 10:35:44
+## 4087 2017-09-17 10:36:09
+## 4088 2017-09-17 10:36:28
+## 4089 2017-09-17 10:43:53
+## 4090 2017-09-17 10:44:13
+## 4091 2017-09-17 10:46:05
+## 4092 2017-09-22 14:16:19
+## 4093 2017-09-17 10:55:38
+## 4094 2017-09-17 10:56:42
+## 4095 2017-09-17 10:57:16
+## 4096 2017-09-17 10:57:28
+## 4097 2017-09-17 10:57:36
+## 4098 2017-09-17 10:57:38
+## 4099 2017-09-20 14:18:14
+## 4100 2017-09-20 14:19:03
+## 4101 2017-09-20 14:19:10
+## 4102 2017-09-20 14:29:56
+## 4103 2017-09-20 14:37:09
+## 4104 2017-09-20 14:40:16
+## 4105 2017-09-20 14:41:49
+## 4106 2017-09-22 14:37:48
+## 4107 2017-09-22 14:38:09
+## 4108 2017-09-22 14:38:15
+## 4109 2017-09-22 14:40:11
+## 4110 2017-09-22 14:41:37
+## 4111 2017-09-24 21:56:01
+## 4112 2017-09-24 21:56:21
+## 4113 2017-09-24 21:56:27
+## 4114 2017-09-22 14:43:12
+## 4115 2017-09-22 14:43:17
+## 4116 2017-09-22 14:43:27
+## 4117 2017-09-22 14:43:59
+## 4118 2017-09-22 14:44:30
+## 4119 2017-09-22 14:45:01
+## 4120 2017-09-17 09:38:31
+## 4121 2017-09-17 09:39:00
+## 4122 2017-09-17 09:40:05
+## 4123 2017-09-17 09:42:44
+## 4124 2017-09-24 21:44:11
+## 4125 2017-09-24 21:45:21
+## 4126 2017-09-24 21:48:48
+## 4127 2017-09-22 14:22:34
+## 4128 2017-09-22 14:52:33
+## 4129 2017-09-22 14:53:08
+## 4130 2017-09-22 14:53:53
+## 4131 2017-09-24 21:25:38
+## 4132 2017-09-24 21:26:39
+## 4133 2017-09-24 21:32:50
+## 4134 2017-09-24 21:35:22
+## 4135 2017-09-24 21:55:53
+## 4136 2017-09-17 10:11:03
+## 4137 2017-09-17 10:11:38
+## 4138 2017-09-17 10:12:20
+## 4139 2017-09-24 21:49:04
+## 4140 2017-09-24 21:49:24
+## 4141 2017-09-24 21:51:36
+## 4142 2017-09-16 22:53:48
+## 4143 2017-09-24 21:54:05
+## 4144 2017-09-24 21:55:02
+## 4145 2017-09-24 21:55:09
+## 4146 2017-09-24 21:55:14
+## 4147 2017-09-17 10:10:10
+## 4148 2017-09-22 14:33:17
+## 4149 2017-09-22 14:33:33
+## 4150 2017-09-22 14:34:39
+## 4151 2017-09-24 21:56:28
+## 4152 2017-09-17 09:38:03
+## 4153 2017-09-17 09:38:16
+## 4154 2017-09-17 10:00:19
+## 4155 2017-09-17 10:01:27
+## 4156 2017-09-17 10:09:15
+## 4157 2017-09-22 14:33:05
+## 4158 2017-09-17 10:13:01
+## 4159 2017-09-22 14:23:01
+## 4160 2017-09-22 14:23:16
+## 4161 2017-09-17 10:12:57
+## 4162 2017-09-17 10:00:08
+## 4163 2017-09-17 10:18:30
+## 4164 2017-09-22 14:23:45
+## 4165 2017-09-22 14:35:05
+## 4166 2017-09-22 14:35:38
+## 4167 2017-09-17 10:14:49
+## 4168 2017-09-22 14:26:26
+## 4169 2017-09-17 10:17:26
+## 4170 2017-09-22 14:24:29
+## 4171 2017-09-17 10:16:04
+## 4172 2017-09-24 21:52:09
+## 4173 2017-09-22 14:36:19
+## 4174 2017-09-22 14:36:48
+## 4175 2017-09-22 14:25:50
+## 4176 2017-09-24 21:51:50
+## 4177 2017-09-22 14:35:39
+## 4178 2017-09-22 14:36:58
+## 4179 2017-09-22 14:36:55
+## 4180 2017-09-11 11:51:35
+## 4181 2017-09-11 19:00:59
+## 4182 2017-09-11 10:14:35
+## 4183 2017-09-11 10:15:08
+## 4184 2017-09-11 19:00:51
+## 4185 2017-09-11 12:14:57
+## 4186 2017-09-11 18:58:53
+## 4187 2017-09-11 10:15:00
+## 4188 2017-09-11 11:52:04
+## 4189 2017-09-10 21:49:33
+## 4190 2017-09-10 21:50:42
+## 4191 2017-09-10 21:46:06
+## 4192 2017-09-11 12:15:30
+## 4193 2017-09-10 21:49:23
+## 4194 2017-09-10 21:50:12
+## 4195 2017-09-10 19:51:04
+## 4196 2017-09-10 21:50:15
+## 4197 2017-09-10 20:00:05
+## 4198 2017-09-10 21:45:39
+## 4199 2017-09-10 19:59:44
+## 4200 2017-09-11 13:11:21
+## 4201 2017-09-11 13:12:16
+## 4202 2017-09-10 19:59:49
+## 4203 2017-09-10 21:40:25
+## 4204 2017-09-10 21:51:24
+## 4205 2017-09-10 21:57:06
+## 4206 2017-09-11 13:23:17
+## 4207 2017-09-10 19:56:00
+## 4208 2017-09-10 22:02:49
+## 4209 2017-09-10 22:03:06
+## 4210 2017-09-10 18:59:06
+## 4211 2017-09-11 18:48:46
+## 4212 2017-09-10 19:32:28
+## 4213 2017-09-10 19:47:03
+## 4214 2017-09-10 20:06:37
+## 4215 2017-09-10 20:06:45
+## 4216 2017-09-10 20:07:33
+## 4217 2017-09-10 19:31:14
+## 4218 2017-09-10 19:34:10
+## 4219 2017-09-10 21:51:37
+## 4220 2017-09-10 21:53:14
+## 4221 2017-09-10 19:45:30
+## 4222 2017-09-10 18:58:05
+## 4223 2017-09-10 18:58:53
+## 4224 2017-09-10 18:59:02
+## 4225 2017-09-11 10:39:03
+## 4226 2017-09-10 19:00:42
+## 4227 2017-09-10 19:00:54
+## 4228 2017-09-10 19:01:15
+## 4229 2017-09-11 12:17:23
+## 4230 2017-09-10 21:44:04
+## 4231 2017-09-10 19:05:42
+## 4232 2017-09-10 19:18:33
+## 4233 2017-09-11 19:01:01
+## 4234 2017-09-10 19:21:24
+## 4235 2017-09-10 19:54:14
+## 4236 2017-09-10 19:55:04
+## 4237 2017-09-10 19:55:25
+## 4238 2017-09-10 19:55:30
+## 4239 2017-09-11 11:30:33
+## 4240 2017-09-10 19:01:21
+## 4241 2017-09-10 19:02:02
+## 4242 2017-09-10 19:39:36
+## 4243 2017-09-10 18:50:52
+## 4244 2017-09-10 18:51:35
+## 4245 2017-09-10 21:35:01
+## 4246 2017-09-10 21:35:20
+## 4247 2017-09-10 21:39:10
+## 4248 2017-09-10 21:40:18
+## 4249 2017-09-11 12:57:43
+## 4250 2017-09-10 21:40:54
+## 4251 2017-09-10 21:42:43
+## 4252 2017-09-11 11:30:45
+## 4253 2017-09-10 19:38:04
+## 4254 2017-09-10 21:44:10
+## 4255 2017-09-10 21:44:14
+## 4256 2017-09-11 10:38:28
+## 4257 2017-09-11 10:38:46
+## 4258 2017-09-11 10:38:59
+## 4259 2017-09-10 19:23:42
+## 4260 2017-09-11 11:18:25
+## 4261 2017-09-11 11:18:38
+## 4262 2017-09-11 11:19:23
+## 4263 2017-09-11 11:19:33
+## 4264 2017-09-10 19:01:43
+## 4265 2017-09-11 11:22:18
+## 4266 2017-09-11 10:15:27
+## 4267 2017-09-10 19:22:43
+## 4268 2017-09-10 19:51:08
+## 4269 2017-09-10 19:24:26
+## 4270 2017-09-10 19:26:07
+## 4271 2017-09-10 18:46:40
+## 4272 2017-09-10 18:46:42
+## 4273 2017-09-11 11:36:28
+## 4274 2017-09-11 11:37:23
+## 4275 2017-09-11 11:37:28
+## 4276 2017-09-11 11:37:58
+## 4277 2017-09-11 11:49:15
+## 4278 2017-09-11 11:49:17
+## 4279 2017-09-10 21:42:55
+## 4280 2017-09-10 21:43:41
+## 4281 2017-09-10 20:12:30
+## 4282 2017-09-11 13:04:41
+## 4283 2017-09-11 13:05:38
+## 4284 2017-09-10 18:56:40
+## 4285 2017-09-11 10:38:20
+## 4286 2017-09-10 19:20:37
+## 4287 2017-09-11 10:30:52
+## 4288 2017-09-11 10:31:30
+## 4289 2017-09-10 18:44:42
+## 4290 2017-09-10 18:46:08
+## 4291 2017-09-10 18:46:31
+## 4292 2017-09-10 22:04:29
+## 4293 2017-09-10 22:05:50
+## 4294 2017-09-11 11:20:06
+## 4295 2017-09-11 11:20:15
+## 4296 2017-09-11 11:22:22
+## 4297 2017-09-11 11:22:30
+## 4298 2017-09-11 10:15:47
+## 4299 2017-09-10 20:08:54
+## 4300 2017-09-10 18:53:04
+## 4301 2017-09-10 18:53:13
+## 4302 2017-09-10 18:49:28
+## 4303 2017-09-10 18:49:45
+## 4304 2017-09-10 20:01:59
+## 4305 2017-09-10 20:02:05
+## 4306 2017-09-10 20:03:41
+## 4307 2017-09-11 10:15:35
+## 4308 2017-09-11 10:30:39
+## 4309 2017-09-10 22:22:56
+## 4310 2017-09-11 11:23:29
+## 4311 2017-09-11 11:24:49
+## 4312 2017-09-11 11:26:32
+## 4313 2017-09-10 22:04:05
+## 4314 2017-09-10 20:11:55
+## 4315 2017-09-10 18:53:56
+## 4316 2017-09-10 20:13:16
+## 4317 2017-09-10 20:13:19
+## 4318 2017-09-11 13:04:31
+## 4319 2017-09-10 18:50:39
+## 4320 2017-09-10 22:21:10
+## 4321 2017-09-11 11:22:47
+## 4322 2017-09-10 22:23:02
+## 4323 2017-09-11 11:43:39
+## 4324 2017-09-11 11:44:19
+## 4325 2017-09-10 22:06:00
+## 4326 2017-09-10 22:06:41
+## 4327 2017-09-10 18:49:56
+## 4328 2017-09-11 10:35:12
+## 4329 2017-09-11 12:30:39
+## 4330 2017-09-10 22:22:18
+## 4331 2017-09-11 10:17:56
+## 4332 2017-09-11 10:20:26
+## 4333 2017-09-11 10:21:59
+## 4334 2017-09-11 10:22:27
+## 4335 2017-09-11 10:22:52
+## 4336 2017-09-11 12:54:50
+## 4337 2017-09-10 18:53:46
+## 4338 2017-09-11 12:58:16
+## 4339 2017-09-10 18:54:02
+## 4340 2017-09-10 18:55:58
+## 4341 2017-09-10 22:20:34
+## 4342 2017-09-11 10:34:57
+## 4343 2017-09-11 12:31:12
+## 4344 2017-09-10 21:26:52
+## 4345 2017-09-10 21:27:01
+## 4346 2017-09-11 12:39:24
+## 4347 2017-09-11 12:39:44
+## 4348 2017-09-11 11:48:30
+## 4349 2017-09-11 11:29:05
+## 4350 2017-09-11 11:29:39
+## 4351 2017-09-11 10:25:14
+## 4352 2017-09-11 10:25:27
+## 4353 2017-09-11 11:23:11
+## 4354 2017-09-11 12:38:57
+## 4355 2017-09-11 12:39:10
+## 4356 2017-09-10 22:23:14
+## 4357 2017-09-11 12:40:48
+## 4358 2017-09-11 10:33:15
+## 4359 2017-09-11 10:33:47
+## 4360 2017-09-11 11:30:04
+## 4361 2017-09-11 13:02:51
+## 4362 2017-09-10 22:23:26
+## 4363 2017-09-11 10:23:39
+## 4364 2017-09-11 10:28:00
+## 4365 2017-09-11 10:29:34
+## 4366 2017-09-11 10:34:03
+## 4367 2017-09-10 22:23:24
+## 4368 2017-09-11 10:30:00
+## 4369 2017-09-11 12:39:59
+## 4370 2017-09-11 10:28:40
+## 4371 2017-09-11 10:24:21
+## 4372 2017-09-11 10:33:41
+## 4373 2017-09-11 10:23:56
+## 4374 2017-09-11 10:32:21
+## 4375 2017-09-07 22:05:11
+## 4376 2017-09-07 22:07:16
+## 4377 2017-09-07 22:22:40
+## 4378 2017-09-07 22:30:49
+## 4379 2017-09-07 22:07:41
+## 4380 2017-09-07 22:08:07
+## 4381 2017-09-07 22:23:40
+## 4382 2017-09-07 22:24:13
+## 4383 2017-09-07 22:11:45
+## 4384 2017-09-07 22:11:56
+## 4385 2017-09-07 22:12:46
+## 4386 2017-09-07 22:13:18
+## 4387 2017-09-07 22:14:46
+## 4388 2017-09-07 22:21:52
+## 4389 2017-09-07 22:08:14
+## 4390 2017-09-07 22:11:02
+## 4391 2017-09-07 22:24:22
+## 4392 2017-09-07 22:28:30
+## 4393 2017-09-07 22:29:55
+## 4394 2017-09-07 22:30:34
+## 4395 2017-09-07 22:27:32
+## 4396 2017-09-07 22:30:44
+## 4397 2017-09-08 11:42:43
+## 4398 2017-09-22 17:20:24
+## 4399 2017-09-08 11:38:27
+## 4400 2017-09-08 11:30:09
+## 4401 2017-09-08 11:31:33
+## 4402 2017-09-08 11:41:28
+## 4403 2017-09-22 17:02:41
+## 4404 2017-09-22 22:16:14
+## 4405 2017-09-22 17:20:36
+## 4406 2017-09-22 17:19:04
+## 4407 2017-09-08 11:26:54
+## 4408 2017-09-08 10:54:50
+## 4409 2017-09-08 11:08:52
+## 4410 2017-09-08 11:09:57
+## 4411 2017-09-08 11:14:46
+## 4412 2017-09-08 11:18:51
+## 4413 2017-09-08 11:19:31
+## 4414 2017-09-08 11:19:55
+## 4415 2017-09-08 11:20:46
+## 4416 2017-09-08 11:21:20
+## 4417 2017-09-08 11:24:04
+## 4418 2017-09-08 11:25:09
+## 4419 2017-09-22 22:52:56
+## 4420 2017-09-22 23:00:11
+## 4421 2017-09-22 23:02:27
+## 4422 2017-09-22 23:11:38
+## 4423 2017-09-08 11:43:28
+## 4424 2017-09-22 17:31:34
+## 4425 2017-09-22 17:31:46
+## 4426 2017-09-22 17:32:15
+## 4427 2017-09-22 17:33:40
+## 4428 2017-09-22 17:34:08
+## 4429 2017-09-22 17:34:17
+## 4430 2017-09-22 21:05:21
+## 4431 2017-09-22 21:05:57
+## 4432 2017-09-22 21:06:46
+## 4433 2017-09-22 21:07:06
+## 4434 2017-09-22 21:08:32
+## 4435 2017-09-22 21:08:43
+## 4436 2017-09-22 22:16:31
+## 4437 2017-09-22 22:17:46
+## 4438 2017-09-22 22:18:02
+## 4439 2017-09-22 22:18:31
+## 4440 2017-09-22 22:18:36
+## 4441 2017-09-22 22:18:43
+## 4442 2017-09-22 22:18:56
+## 4443 2017-09-22 22:19:08
+## 4444 2017-09-22 22:19:19
+## 4445 2017-09-22 16:52:30
+## 4446 2017-09-22 16:57:52
+## 4447 2017-09-22 16:59:42
+## 4448 2017-09-22 17:00:00
+## 4449 2017-09-22 17:01:17
+## 4450 2017-09-22 17:01:46
+## 4451 2017-09-22 16:11:19
+## 4452 2017-09-22 16:11:52
+## 4453 2017-09-22 16:13:36
+## 4454 2017-09-22 16:14:19
+## 4455 2017-09-22 16:14:52
+## 4456 2017-09-22 16:15:52
+## 4457 2017-09-22 17:20:52
+## 4458 2017-09-22 17:21:29
+## 4459 2017-09-22 17:22:15
+## 4460 2017-09-22 17:22:37
+## 4461 2017-09-22 17:23:25
+## 4462 2017-09-22 17:23:38
+## 4463 2017-09-22 17:23:52
+## 4464 2017-09-22 17:23:59
+## 4465 2017-09-22 17:24:01
+## 4466 2017-09-22 15:42:51
+## 4467 2017-09-22 15:43:25
+## 4468 2017-09-22 15:43:35
+## 4469 2017-09-22 15:43:38
+## 4470 2017-09-22 15:47:57
+## 4471 2017-09-22 15:48:44
+## 4472 2017-09-22 15:55:59
+## 4473 2017-09-22 15:56:08
+## 4474 2017-09-22 15:56:50
+## 4475 2017-09-22 15:56:52
+## 4476 2017-09-22 15:58:36
+## 4477 2017-09-22 15:58:46
+## 4478 2017-09-22 15:58:57
+## 4479 2017-09-22 15:59:29
+## 4480 2017-09-22 16:04:46
+## 4481 2017-09-22 16:06:14
+## 4482 2017-09-22 16:07:47
+## 4483 2017-09-22 16:11:02
+## 4484 2017-09-22 15:11:58
+## 4485 2017-09-22 15:12:45
+## 4486 2017-09-22 15:13:50
+## 4487 2017-09-22 15:13:53
+## 4488 2017-09-22 16:16:41
+## 4489 2017-09-22 16:17:18
+## 4490 2017-09-22 16:17:41
+## 4491 2017-09-22 16:18:03
+## 4492 2017-09-22 16:20:21
+## 4493 2017-09-22 16:20:25
+## 4494 2017-09-22 16:31:48
+## 4495 2017-09-22 16:33:20
+## 4496 2017-09-22 16:34:23
+## 4497 2017-09-22 16:35:00
+## 4498 2017-09-22 16:35:11
+## 4499 2017-09-22 16:35:28
+## 4500 2017-09-22 16:35:42
+## 4501 2017-09-22 16:36:21
+## 4502 2017-09-22 16:40:01
+## 4503 2017-09-22 16:42:07
+## 4504 2017-09-22 16:42:21
+## 4505 2017-09-22 16:49:08
+## 4506 2017-09-22 16:49:31
+## 4507 2017-09-22 16:50:21
+## 4508 2017-09-22 16:50:50
+## 4509 2017-09-22 16:51:05
+## 4510 2017-09-22 15:01:24
+## 4511 2017-09-22 15:03:10
+## 4512 2017-09-22 17:25:15
+## 4513 2017-09-22 17:25:25
+## 4514 2017-09-22 17:25:36
+## 4515 2017-09-22 17:27:38
+## 4516 2017-09-22 17:30:47
+## 4517 2017-09-22 17:30:57
+## 4518 2017-09-22 15:18:41
+## 4519 2017-09-22 15:18:47
+## 4520 2017-09-22 15:20:08
+## 4521 2017-09-22 15:20:35
+## 4522 2017-09-22 15:21:22
+## 4523 2017-09-22 15:21:56
+## 4524 2017-09-22 15:22:00
+## 4525 2017-09-22 15:22:38
+## 4526 2017-09-22 15:40:37
+## 4527 2017-09-22 15:41:04
+## 4528 2017-09-08 10:51:17
+## 4529 2017-09-22 14:38:04
+## 4530 2017-09-22 14:42:18
+## 4531 2017-09-22 14:43:06
+## 4532 2017-09-22 14:43:10
+## 4533 2017-09-22 14:49:14
+## 4534 2017-09-22 14:51:45
+## 4535 2017-09-22 14:51:58
+## 4536 2017-09-22 14:52:31
+## 4537 2017-09-22 14:55:52
+## 4538 2017-09-22 14:55:58
+## 4539 2017-09-22 14:56:49
+## 4540 2017-09-22 14:58:34
+## 4541 2017-09-22 14:58:40
+## 4542 2017-09-22 14:12:26
+## 4543 2017-09-22 14:17:40
+## 4544 2017-09-22 14:19:51
+## 4545 2017-09-22 14:20:33
+## 4546 2017-09-22 13:28:14
+## 4547 2017-09-22 13:28:39
+## 4548 2017-09-22 13:28:44
+## 4549 2017-09-22 13:33:05
+## 4550 2017-09-22 13:33:31
+## 4551 2017-09-22 13:33:45
+## 4552 2017-09-22 13:45:51
+## 4553 2017-09-22 17:31:31
+## 4554 2017-09-22 23:17:21
+## 4555 2017-09-22 23:18:46
+## 4556 2017-09-22 23:19:37
+## 4557 2017-09-22 23:29:42
+## 4558 2017-09-22 23:31:35
+## 4559 2017-09-08 10:51:54
+## 4560 2017-09-08 10:52:51
+## 4561 2017-09-08 10:53:06
+## 4562 2017-09-08 10:53:27
+## 4563 2017-09-22 13:59:56
+## 4564 2017-09-22 14:02:20
+## 4565 2017-09-22 14:06:41
+## 4566 2017-09-22 14:08:16
+## 4567 2017-09-22 14:08:56
+## 4568 2017-09-22 14:09:22
+## 4569 2017-09-22 14:09:42
+## 4570 2017-09-22 14:11:02
+## 4571 2017-09-22 13:46:58
+## 4572 2017-09-22 13:47:23
+## 4573 2017-09-22 13:47:34
+## 4574 2017-09-22 13:25:40
+## 4575 2017-09-22 13:27:50
+## 4576 2017-09-22 13:48:37
+## 4577 2017-09-22 14:25:50
+## 4578 2017-09-22 14:26:09
+## 4579 2017-09-22 14:29:36
+## 4580 2017-09-22 14:33:40
+## 4581 2017-09-22 13:46:02
+## 4582 2017-09-22 23:59:51
+## 4583 2017-09-22 21:11:35
+## 4584 2017-09-22 13:48:07
+## 4585 2017-09-22 13:48:32
+## 4586 2017-09-22 21:14:04
+## 4587 2017-09-22 13:50:07
+## 4588 2017-09-22 13:50:32
+## 4589 2017-09-22 13:52:00
+## 4590 2017-09-22 13:52:38
+## 4591 2017-09-22 13:52:45
+## 4592 2017-09-22 23:58:06
+## 4593 2017-09-22 14:34:38
+## 4594 2017-09-22 14:34:42
+## 4595 2017-09-22 21:13:45
+## 4596 2017-09-22 21:13:50
+## 4597 2017-09-22 13:57:50
+## 4598 2017-09-22 21:15:08
+## 4599 2017-09-22 21:15:28
+## 4600 2017-09-22 21:15:58
+## 4601 2017-09-22 21:16:14
+## 4602 2017-09-22 21:16:17
+## 4603 2017-09-22 13:52:49
+## 4604 2017-09-22 13:56:32
+## 4605 2017-09-22 13:56:45
+## 4606 2017-09-22 13:57:36
+## 4607 2017-09-23 00:05:56
+## 4608 2017-09-23 00:08:20
+## 4609 2017-09-23 00:08:29
+## 4610 2017-09-23 00:08:32
+## 4611 2017-09-22 22:15:16
+## 4612 2017-09-22 13:57:27
+## 4613 2017-09-22 22:15:26
+## 4614 2017-09-22 22:15:37
+## 4615 2017-09-12 11:30:30
+## 4616 2017-09-11 14:59:57
+## 4617 2017-09-12 11:26:09
+## 4618 2017-09-11 14:57:52
+## 4619 2017-09-11 14:57:10
+## 4620 2017-09-12 10:08:05
+## 4621 2017-09-12 11:30:23
+## 4622 2017-09-11 14:59:16
+## 4623 2017-09-11 15:00:37
+## 4624 2017-09-12 10:08:00
+## 4625 2017-09-11 15:00:12
+## 4626 2017-09-12 11:26:24
+## 4627 2017-09-12 11:27:36
+## 4628 2017-09-12 11:29:26
+## 4629 2017-09-11 15:01:03
+## 4630 2017-09-12 11:30:14
+## 4631 2017-09-12 11:28:42
+## 4632 2017-09-12 10:07:46
+## 4633 2017-09-12 11:26:18
+## 4634 2017-09-11 14:59:28
+## 4635 2017-09-11 15:00:52
+## 4636 2017-09-11 14:58:05
+#install.packages("lubridate")
+library(lubridate)
+##
+## Attaching package: 'lubridate'
+## The following objects are masked from 'package:base':
+##
+## date, intersect, setdiff, union
+DF5 %>%
+ mutate(datetime2 = floor_date(datetime2)) %>%
+ group_by(datetime2) %>%
+ summarize(attempt = sum(attempt)) #because all attemps where true, meaning a point.
+## `summarise()` ungrouping output (override with `.groups` argument)
+## # A tibble: 4,597 x 2
+## datetime2 attempt
+## <dttm> <int>
+## 1 1969-12-31 19:02:30 1
+## 2 1969-12-31 19:25:05 1
+## 3 1969-12-31 23:10:49 1
+## 4 1969-12-31 23:10:51 1
+## 5 1970-01-18 05:01:28 1
+## 6 1970-06-23 23:29:35 2
+## 7 2017-07-06 13:38:14 1
+## 8 2017-07-06 13:38:44 1
+## 9 2017-07-06 13:39:00 1
+## 10 2017-07-06 13:42:25 2
+## # … with 4,587 more rows
+DF6 <- DF5 %>% group_by(month = month(datetime2), day = day(datetime2))
+
+
+DF6$month = as.factor(DF6$month)
+DF6$day = as.factor(DF6$day)
+
+ggplot(DF6, aes(day, attempt, group=month, col=month)) +
+ geom_boxplot() +
+ geom_point()
+## Warning: Removed 4 rows containing non-finite values (stat_boxplot).
+## Warning: Removed 4 rows containing missing values (geom_point).
+#I did something different. Did not get the mean but i got the attempts per day and
+#month that were true (meaning they got a point) and summed by day.
+Finally use the knitr function to generate an html document from your work. Commit, Push and Pull Request your work back to the main branch of the repository. Make sure you include both the .Rmd file and the .html file.
+