diff --git a/README.md b/README.md index e08d01b..05f7508 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ R 은 단순한 통계프로그램이 아닌 데이터분석 전 과정을 포 |회차| 날짜 | 주제 | |---|---|---| -|1| 2월 21일 | 강의계획안내, 깃허브(github), [공공의료빅데이터 소개](lecture/공단데이터소개.pdf) | -|2| 2월 28일 | R 데이터 매니지먼트 [base](https://blog.zarathu.com/posts/2020-02-16-rdatamanagement-basic) | +|1| 2월 21일 | 강의계획안내, [깃허브(github)](https://carpentries.github.io/sandpaper-docs/github-pat.html), [공공의료빅데이터 소개](lecture/공단데이터소개.pdf) | +|2| 2월 28일 | R 데이터 매니지먼트 [base](https://blog.zarathu.com/posts/2020-02-16-rdatamanagement-basic), [code](code/base.R) | |3| 3월 7일| R 데이터 매니지먼트 최근: [tidyverse](https://jinseob2kim.github.io/lecture-snuhlab/tidyverse) | |4| 3월 14일| R 데이터 매니지먼트: [data.table](https://cran.r-project.org/web/packages/data.table/vignettes/datatable-intro.html) | |5| 3월 21일 | R 데이터 매니지먼트: [data.table 실전](code/) | diff --git a/code/base.R b/code/base.R new file mode 100644 index 0000000..ed60401 --- /dev/null +++ b/code/base.R @@ -0,0 +1,332 @@ +## Vector +x <- c(1, 2, 3, 4, 5, 6) ## vector of variable +y <- c(7, 8, 9, 10, 11, 12) +x + y +x * y +sqrt(x) ## root +sum(x) +diff(x) ## difference +mean(x) ## mean +var(x) ## variance +sd(x) ## standard deviation +median(x) ## median +IQR(x) ## inter-quantile range +max(x) ## max value +which.max(x) ## order of max value +max(x, y) ## max value among x & y +length(x) + + + +## Slice +x[2] ## 2 번째 +x[-2] ## 2 번째만 빼고 +x[1:3] ## 1-3 번째 +x[c(1, 2, 3)] ## 동일 +x[c(1, 3, 4, 5, 6)] ## 1, 3, 4, 5, 6 번째 +x >= 4 ## 각 항목이 4 이상인지 TRUE/FALSE +sum(x >= 4) ## TRUE 1, FALSE 0 인식 +x[x >= 4] ## TRUE 인 것들만, 즉 4 이상인 것들 +sum(x[x >= 4]) ## 4 이상인 것들만 더하기. +x %in% c(1, 3, 5) ## 1, 3, 5 중 하나에 속하는지 TRUE/FALSE +x[x %in% c(1, 3, 5)] + + + +## Make vector +v1 <- seq(-5, 5, by = .2); v1 ## Sequence +v2 <- rep(1, 3); v2 ## Repeat +v3 <- rep(c(1, 2, 3), 2); v3 ## Repeat for vector +v4 <- rep(c(1, 2, 3), each = 2); v4 ## Repeat for vector : each + + + +## for +for (i in 1:3){ + print(i) +} + +i <- 0 +for (j in c(1, 2, 4, 5, 6)){ + i <- i + j +} +i + + +## if/else +x <- 5 +if (x >= 3 ){ + x <- x + 3 +} +x + +x <- 5 +if (x >= 10){ + print("High") +} else if (x >= 5){ + print("Medium") +} else { + print("Low") +} + + +## ifelse +x <- 1:6 +y <- ifelse(x >= 4, "Yes", "No") ## ifelse (조건,참일때,거짓일때) +y + + + +## function +x <- c(1:10, 12, 13, NA, NA, 15, 17) ## 결측치가 포함되어 있다면.. +mean(x) +mean0 <- function(x){ + mean(x, na.rm = T) +} ## mean함수의 na.rm 옵션을 TRUE로 바꿈. default는 F + +mean0 <- function(x){mean(x, na.rm = T)} ## 한줄에 쓸 수도 있다. +mean0(x) + + +twomean <- function(x1, x2){ + a <- (x1 + x2)/2 + a +} +twomean(4, 6) + + + +## Apply: apply, sapply, lapply +mat <- matrix(1:20, nrow = 4, byrow = T) ## 4행 5열, byrow = T : 행부터 채운다. +mat + +out <- NULL ## 빈 벡터, 여기에 하나씩 붙여넣는다. +for (i in 1:nrow(mat)){ + out <- c(out, mean(mat[i, ])) +} +out + +sapply(1:nrow(mat), function(x){mean(mat[x, ])}) ## Return vector +lapply(1:nrow(mat), function(x){mean(mat[x, ])}) ## Return list type +unlist(lapply(1:nrow(mat), function(x){mean(mat[x, ])})) ## Same to sapply + + +apply(mat, 1, mean) ## 1: 행 +rowMeans(mat) ## 동일 +rowSums(mat) ## 행별로 합 + +apply(mat, 2, mean) ## 2: 열 +colMeans(mat) ## 열별로 합 + + + +## Practice 1 +x <- 1:6 +y <- 7:12 + + + + +## With data +getwd() ## 현재 디렉토리 +setwd("data") ## 디렉토리 설정 +## 동일 +setwd("/cloud/project/data") +getwd() + +ex <- read.csv("example_g1e.csv") +head(ex) + +ex <- read.csv("https://raw.githubusercontent.com/jinseob2kim/lecture-snuhlab/master/data/example_g1e.csv") +head(ex) + + +#install.packages(c("readxl", "haven")) ## install packages +library(readxl) ## for xlsx +ex.excel <- read_excel("example_g1e.xlsx", sheet = 1) ## 1st sheet + +library(haven) ## for SAS/SPSS/STATA +ex.sas <- read_sas("example_g1e.sas7bdat") ## SAS +ex.spss <- read_sav("example_g1e.sav") ## SPSS +head(ex.spss) + +write.csv(ex, "example_g1e_ex.csv", row.names = F) +#write_sas(ex.sas, "example_g1e_ex.sas7bdat") +#write_sav(ex.spss, "example_g1e_ex.sav") + + +## See data +head(ex) ## 처음 6행 +tail(ex) ## 마지막 6행 +head(ex, 10) ## 처음 10행 +str(ex) +names(ex) +dim(ex) ## row, column +nrow(ex) ## row +ncol(ex) ## column + +class(ex) +class(ex.spss) +summary(ex) + + + +## See variables +ex$EXMD_BZ_YYYY ## data.frame style +ex[, "EXMD_BZ_YYYY"] ## matrix style +ex[["EXMD_BZ_YYYY"]] ## list style +ex[, 1] ## matrix style with order +ex[[1]] ## list style with order + +ex[, c("EXMD_BZ_YYYY", "RN_INDI", "BMI")] ## matrix syle with names +ex[, c(1, 2, 16)] ## matrix syle with names +ex[, names(ex)[c(1, 2, 16)]] ## same + +ex$EXMD_BZ_YYYY[1:50] ## data.frame style +ex[1:50, 1] ## matrix style +ex[[1]][1:50] ## list style + +unique(ex$EXMD_BZ_YYYY) ## unique value +length(unique(ex$EXMD_BZ_YYYY)) ## number of unique value +table(ex$EXMD_BZ_YYYY) ## table + + + +## New variable +mean(ex$BMI) ## mean +BMI_cat <- (ex$BMI >= 25) ## TRUE of FALSE +table(BMI_cat) +rows <- which(ex$BMI >= 25) ## row numbers +head(rows) +values <- ex$BMI[ex$BMI >= 25] ## values +head(values) +length(values) +BMI_HGHT_and <- (ex$BMI >= 25 & ex$HGHT >= 175) ## and +BMI_HGHT_or <- (ex$BMI >= 25 | ex$HGHT >= 175) ## or + +ex$zero <- 0 ## variable with 0 +ex$BMI_cat <- (ex$BMI >= 25) ## T/F +ex$BMI_cat <- as.integer(ex$BMI >= 25) ## 0, 1 +ex$BMI_cat <- as.character(ex$BMI >= 25) ## "0", "1" +ex$BMI_cat <- ifelse(ex$BMI >= 25, "1", "0") ## same +table(ex$BMI_cat) +ex[, "BMI_cat"] <- (ex$BMI >= 25) ## matrix style +ex[["BMI_cat"]] <- (ex$BMI >= 25) ## list style + + + +## Set class +vars.cat <- c("RN_INDI", "Q_PHX_DX_STK", "Q_PHX_DX_HTDZ", "Q_PHX_DX_HTN", "Q_PHX_DX_DM", "Q_PHX_DX_DLD", "Q_PHX_DX_PTB", + "Q_HBV_AG", "Q_SMK_YN", "Q_DRK_FRQ_V09N") +vars.cat <- names(ex)[c(2, 4:12)] ## same +vars.cat <- c("RN_INDI", grep("Q_", names(ex), value = T)) ## same: extract variables starting with "Q_" + +vars.conti <- setdiff(names(ex), vars.cat) ## Exclude categorical variables +vars.conti <- names(ex)[!(names(ex) %in% vars.cat)] ## same: !- not, %in%- including + +for (vn in vars.cat){ ## for loop: as.factor + ex[, vn] <- as.factor(ex[, vn]) +} + +for (vn in vars.conti){ ## for loop: as.numeric + ex[, vn] <- as.numeric(ex[, vn]) +} + +summary(ex) + +table(as.numeric(ex$Q_PHX_DX_STK)) +table(as.numeric(as.character(ex$Q_PHX_DX_STK))) + + +## Date +addDate <- paste(ex$HME_YYYYMM, "01", sep = "") ## add day- use `paste` +ex$HME_YYYYMM <- as.Date(addDate, format = "%Y%m%d") ## set format +head(ex$HME_YYYYMM) +class(ex$HME_YYYYMM) + + + +## NA +tapply(ex$LDL, ex$EXMD_BZ_YYYY, mean) ## measure/group/function + +tapply(ex$LDL, ex$EXMD_BZ_YYYY, + function(x){ + mean(x, na.rm = T) + }) + + +summary(lm(LDL ~ HDL, data = ex)) + + +## Practice 2 +ex.naomit <- na.omit(ex) +nrow(ex.naomit) + +getmode <- function(v){ + uniqv <- unique(v) + uniqv[which.max(tabulate(match(v, uniqv)))] +} + +getmode(ex$Q_PHX_DX_STK) + + + +## Subset +ex1 <- ex.naomit ## simple name +ex1.2012 <- ex1[ex1$EXMD_BZ_YYYY >= 2012, ] +table(ex1.2012$EXMD_BZ_YYYY) + +ex1.2012 <- subset(ex1, EXMD_BZ_YYYY >= 2012) ## subset +table(ex1.2012$EXMD_BZ_YYYY) + + +## Group by +aggregate(ex1[, c("WSTC", "BMI")], list(ex1$Q_PHX_DX_HTN), mean) +aggregate(cbind(WSTC, BMI) ~ Q_PHX_DX_HTN, data = ex1, mean) ## same + +aggregate(cbind(WSTC, BMI) ~ Q_PHX_DX_HTN, data = ex, mean) + +aggregate(ex1[, c("WSTC", "BMI")], list(ex1$Q_PHX_DX_HTN, ex1$Q_PHX_DX_DM), mean) +aggregate(cbind(WSTC, BMI) ~ Q_PHX_DX_HTN + Q_PHX_DX_DM, data = ex1, mean) + +aggregate(cbind(WSTC, BMI) ~ Q_PHX_DX_HTN + Q_PHX_DX_DM, data = ex1, function(x){c(mean = mean(x), sd = sd(x))}) + +aggregate(. ~ Q_PHX_DX_HTN + Q_PHX_DX_DM, data = ex1, function(x){c(mean = mean(x), sd = sd(x))}) + + +## Sort +ord <- order(ex1$HGHT) ## 작은 순서대로 순위 +head(ord) +head(ex1$HGHT[ord]) ## Sort + +ord.desc <- order(-ex1$HGHT) ## descending +head(ex1$HGHT[ord.desc]) + +ex1.sort <- ex1[ord, ] +head(ex1.sort) + + +## Wide to long, long to wide format +library(reshape2) +long <- melt(ex1, id = c("EXMD_BZ_YYYY", "RN_INDI"), measure.vars = c("BP_SYS", "BP_DIA"), variable.name = "BP_type", value.name = "BP") +long + +library(reshape2) +long <- melt(ex1, id = c("EXMD_BZ_YYYY", "RN_INDI"), measure.vars = c("BP_SYS", "BP_DIA"), variable.name = "BP_type", value.name = "BP") +long %>% paged_table(options = list(rownames.print = F)) + +wide <- dcast(long, EXMD_BZ_YYYY + RN_INDI ~ BP_type, value.var = "BP") +head(wide) + + +## Merge +ex1.Q <- ex1[, c(1:3, 4:12)] +ex1.measure <- ex1[, c(1:3, 13:ncol(ex1))] +head(ex1.Q) +head(ex1.measure) + +# all = T: Full, all.x = T: Left, all.y: Right, all = F: inner join +ex1.merge <- merge(ex1.Q, ex1.measure, by = c("EXMD_BZ_YYYY", "RN_INDI", "HME_YYYYMM"), all = T) +head(ex1.merge) + + diff --git a/data/example_g1e.csv b/data/example_g1e.csv new file mode 100644 index 0000000..e1da1ce --- /dev/null +++ b/data/example_g1e.csv @@ -0,0 +1,1645 @@ +EXMD_BZ_YYYY,RN_INDI,HME_YYYYMM,Q_PHX_DX_STK,Q_PHX_DX_HTDZ,Q_PHX_DX_HTN,Q_PHX_DX_DM,Q_PHX_DX_DLD,Q_PHX_DX_PTB,Q_HBV_AG,Q_SMK_YN,Q_DRK_FRQ_V09N,HGHT,WGHT,WSTC,BMI,VA_LT,VA_RT,BP_SYS,BP_DIA,URN_PROT,HGB,FBS,TOT_CHOL,TG,HDL,LDL,CRTN,SGOT,SGPT,GGT,GFR +2009,562083,200909,0,0,1,0,0,,3,1,0,144,61,90,29.4,0.7,0.8,120,80,1,12.6,117,264,128,60,179,0.9,25,20,25,59 +2009,334536,200911,0,0,0,0,0,,2,1,0,162,51,63,19.4,0.8,1,120,80,1,13.8,96,169,92,70,80,0.9,18,15,28,74 +2009,911867,200903,0,0,0,0,0,,3,1,0,163,65,82,24.5,0.7,0.6,130,80,1,15,118,216,132,55,134,0.8,26,30,30,79 +2009,183321,200908,,,,,,,3,1,0,152,51,70,22.1,0.8,0.9,101,62,1,13.1,90,199,100,65,114,0.9,18,14,11,61 +2009,942671,200909,,,,,,,3,1,0,159,50,73,19.8,0.7,0.8,132,78,1,13,92,162,58,40,111,0.9,24,23,15,49 +2009,979358,200912,,,,,,,2,1,0,157,55,73,22.3,1.5,1.5,110,70,1,11.9,100,192,109,53,117,0.7,15,12,14,83 +2009,554112,200911,,,,,,,2,1,0,160,56,67,21.9,1.5,1.5,119,78,1,11.2,84,152,38,43,101,0.8,8,6,10,97 +2009,487160,200908,,,,,,,3,1,0,159,54,66,21.4,1.2,1.5,111,60,1,12.2,88,166,42,58,99,1,16,11,12,65 +2009,793017,200906,,,,,,,3,1,0,156,53,67,21.8,1.2,1,138,72,1,11,74,155,86,52,85,0.6,15,13,13,96 +2009,219397,200912,0,0,1,0,0,,3,1,0,146,48,78,22.5,1.5,1.5,138,84,1,12.8,107,178,87,35,125,0.7,21,21,23,70 +2009,831349,200912,0,0,0,0,0,,2,1,0,164,66,85,24.5,1.2,1,130,90,1,16.3,108,209,57,59,138,0.8,32,38,16,98 +2009,480569,200901,0,1,1,0,0,,3,1,0,154,58,84,24.5,0.1,0.8,140,70,1,10.4,84,242,134,53,162,1.1,15,10,10,37 +2009,559370,200912,,,,,,,3,1,0,155,51,75,21.2,1,1,93,53,1,11.1,92,212,44,69,134,1,20,10,10,59 +2009,318669,200904,,,,,,,2,1,0,155,66,78,27.5,0.8,0.6,95,58,1,13.6,101,294,119,50,220,0.6,22,22,22,116 +2009,395781,200907,,,,,,,3,1,0,165,60,71,22,0.6,0.4,120,70,1,15.3,85,237,112,56,158,1,24,20,18,70 +2009,122776,200909,,,,,,,3,1,0,180,69,80,21.3,0.9,0.7,110,70,1,16,100,138,249,40,48,1,23,17,50,84 +2009,663811,200908,,,,,,,3,1,0,149,53,89,23.9,1.2,1,124,70,1,12.5,115,190,190,39,113,0.6,18,19,19,93 +2009,668438,200904,,,,,,,3,1,0,160,71,94,27.7,0.7,0.2,100,60,1,13,104,195,123,63,107,0.7,27,22,43,79 +2009,627341,200912,0,0,0,0,0,,2,1,0,162,42,59,16,0.7,0.7,117,85,1,12.6,102,160,36,51,101,0.8,26,14,11,66 +2009,559420,200909,,,,,,,2,1,0,154,57,72,24,0.7,0.6,135,75,1,12.7,95,226,314,35,128,0.6,22,23,17,104 +2009,560878,200903,,,,,,,2,1,0,144,58,93,28,1,1,110,60,1,13.2,74,178,177,49,93,0.7,15,17,7,86 +2009,688532,200912,,,,,,,2,1,0,155,51,78,21.2,1.5,1.5,125,80,1,12.2,97,192,85,66,109,0.7,27,25,18,73 +2009,375694,200906,0,0,1,1,1,,2,1,0,151,70,94,30.7,1,1,119,71,1,13,129,173,100,58,95,1,14,10,12,64 +2009,446652,200909,,,,,,,2,1,0,158,64,80,25.6,0.3,0.8,100,70,1,11.6,96,236,344,50,117,1,33,32,24,64 +2009,948405,200906,0,0,0,0,0,,1,1,0,165,50,70,18.4,0.5,0.5,110,70,1,12.6,88,159,59,59,88,0.9,19,16,18,68 +2009,4664,200910,0,0,0,0,0,,2,1,0,160,53,63,20.7,0.9,0.9,110,80,1,12.7,84,192,74,57,120,0.9,17,9,9,70 +2009,138307,200903,0,0,1,0,0,,2,1,0,154,87,99,36.7,0.9,0.9,130,80,1,14.4,84,215,169,47,134,0.6,25,31,29,143 +2009,391933,200910,0,0,0,0,0,,2,1,0,177,84,90,26.8,0.3,0.5,120,80,1,14,82,172,89,72,82,1,25,21,27,112 +2009,491031,200906,0,0,0,0,0,,2,1,0,156,50,70,20.5,1.5,1.5,100,70,1,12,74,169,48,75,84,0.8,13,10,12,76 +2009,317148,200908,0,0,0,0,0,,2,1,0,145,51,90,24.3,0.2,0.4,132,84,1,13.9,96,260,126,58,176,0.7,20,12,12,59 +2009,701404,200909,,,,,,,1,1,0,156,61,77,25.1,1,0.9,107,71,1,13.1,86,237,84,39,181,0.7,31,20,12,88 +2009,186069,200911,0,0,1,0,0,,3,1,0,165,60,77,22,0.6,0.5,179,92,1,11.7,85,228,116,44,160,0.8,14,17,22,73 +2009,720544,200912,,,,,,,2,1,0,172,80,91,27,1,1,111,78,1,16.7,95,212,654,60,21,1.1,54,69,92,91 +2009,839897,200910,0,0,0,0,0,,2,1,0,148,54,80,24.7,1.2,0.6,160,90,1,11.4,87,167,221,45,78,0.9,22,26,25,66 +2009,979151,200906,0,0,0,0,0,,2,1,0,148,58,89,26.5,0.5,0.7,140,76,1,12,107,247,116,50,174,0.4,23,29,33,129 +2009,422663,200912,,,,,,,2,1,0,158,66,76,26.4,0.6,0.8,115,70,1,13.8,96,213,168,39,140,1.2,19,20,35,61 +2009,118108,200911,,,,,,,2,1,0,158,61,76,24.4,1,1.2,122,69,1,12.8,76,275,154,36,208,0.9,21,21,13,80 +2009,226594,200903,,,,,,,3,1,0,162,64,74,24.4,1.2,1.5,110,80,1,13.3,125,185,82,46,122,0.7,14,10,17,107 +2009,763384,200904,0,0,0,0,1,,3,1,0,168,73,86,25.9,0.5,0.9,120,70,1,14.3,106,157,211,49,65,0.9,32,30,10,70 +2009,492570,200906,0,0,0,0,0,,2,1,0,164,56,68,20.8,1,1,100,60,1,13.7,77,143,69,40,89,0.8,14,14,19,99 +2009,9866,200912,,,,,,,3,1,0,158,76,82,30.4,1,0.5,121,63,1,12,101,112,116,48,40,0.7,21,24,20,133 +2009,661154,200911,,,,,,,2,1,0,169,57,74,20,0.8,0.5,119,79,1,13,113,190,42,62,119,1,21,16,11,55 +2009,326432,200912,,,,,,,2,1,0,160,52,68,20.3,1,1,120,90,1,11.6,87,214,121,68,121,0.8,32,30,16,82 +2009,204278,200909,0,0,0,0,0,,2,1,0,157,53,78,21.5,0.6,0.6,100,70,1,12.7,77,197,52,61,126,0.7,20,11,11,77 +2009,887943,200912,,,,,,,2,1,0,173,80,87,26.7,1.5,1.2,130,80,1,13.1,104,236,407,42,112,1.3,37,67,61,88 +2009,316400,200905,0,0,0,0,0,,2,1,0,163,58,63,21.8,1.2,1.2,100,60,1,12.8,89,170,52,67,93,1,14,17,10,76 +2009,992522,200910,,,,,,,2,1,0,151,40,60,17.5,0.8,1,120,80,1,8.6,83,217,56,105,100,1.1,32,20,26,42 +2009,394061,200910,,,,,,,2,1,0,156,57,70,23.4,1.2,1.2,135,79,1,12.3,85,177,55,66,100,0.8,28,31,43,79 +2009,888234,200911,,,,,,,2,1,0,154,47,66,19.8,0.6,0.6,120,80,1,13.2,87,218,88,77,123,0.8,29,21,10,62 +2009,79250,200901,0,0,0,0,0,,1,1,0,141,40,69,20.1,0.1,0.7,100,60,1,11.8,86,160,144,37,94,0.6,14,16,11,59 +2009,459837,200911,,,1,,,,3,1,0,160,50,63,19.5,1.2,1,123,84,1,14.3,108,158,61,55,91,1,17,13,14,56 +2009,680010,200909,,,,,,,2,1,0,163,57,72,21.5,1.2,1,110,70,1,14.8,82,178,26,81,91,1,16,13,13,79 +2009,778228,200911,0,0,0,0,0,,2,1,0,170,75,84,26,1,1,128,80,1,10.7,97,205,94,51,135,0.8,28,23,11,110 +2009,27226,200908,0,0,0,0,0,,2,1,0,149,56,73,25.2,1.2,1.2,103,65,1,12.7,77,206,44,101,96,0.6,16,10,15,106 +2009,344905,200905,0,0,0,0,0,,3,1,0,144,38,67,18.3,0.5,9.9,120,70,1,13.4,103,193,64,90,90,1,29,17,23,29 +2009,79207,200905,,,,,,,2,1,0,145,50,81,23.8,0.6,0.4,120,70,1,10.2,95,149,80,45,88,0.6,18,20,32,94 +2009,306589,200911,,,,,,,3,1,0,163,63,76,23.7,0.9,0.6,120,70,1,12.9,106,208,98,64,124,0.9,24,22,26,73 +2009,674294,200912,0,0,0,1,0,,2,1,0,154,67,90,28.3,0.6,0.6,116,80,1,12.7,196,203,117,91,88,0.9,57,72,71,77 +2009,370738,200906,,,,,,,2,1,0,160,56,73,21.9,1,1,110,70,1,11.6,110,239,200,45,154,0.9,12,8,13,74 +2009,211452,200909,,,,,,,3,1,0,169,52,67,18.2,1.5,1.2,110,70,1,13.7,77,147,56,80,55,0.8,18,16,14,64 +2009,714509,200907,,,,,,,1,1,0,170,69,81,23.9,1.5,1.2,108,73,1,14.4,89,126,35,83,36,1,50,79,21,113 +2009,642899,200911,0,0,0,0,0,,2,1,0,151,48,66,21.1,1.2,0.8,114,71,1,13.3,85,162,47,76,77,0.7,65,96,243,63 +2009,917270,200906,0,0,1,1,0,,2,1,0,152,63,89,27.3,0.5,0.7,148,72,1,13.4,111,255,122,49,182,0.9,31,34,28,61 +2009,138407,200907,,,,,,,3,1,0,175,88,102,28.7,0.8,0.8,120,80,2,15.3,97,182,144,56,97,1.4,17,13,12,64 +2009,900114,200910,0,0,0,0,0,,2,1,0,160,49,66,19.1,1.5,1.2,110,60,2,11,98,180,68,81,85,0.7,13,10,14,81 +2009,925523,200908,0,0,1,0,0,,2,1,0,157,61,76,24.7,0.9,0.8,120,80,3,13.9,85,195,70,48,133,1,28,23,19,52 +2009,669498,200902,0,0,0,0,0,,2,2,1,139,47,86,24.3,0.1,0.1,143,83,1,14.2,114,225,189,53,134,0.5,49,55,32,73 +2009,554585,200904,0,0,0,0,0,,2,1,,163,65,79,24.5,0.9,1.5,118,70,1,12.6,87,228,80,61,151,0.7,20,16,40,100 +2009,418334,200911,0,0,0,0,0,,3,1,0,148,39,57,17.8,0.9,1.2,111,67,1,10.3,85,197,49,87,100,0.6,22,19,10,76 +2009,825387,200904,0,0,0,0,0,,,1,1,166,70,85,25.4,0.9,1,130,90,1,14.8,101,193,120,45,124,1,23,23,18,101 +2009,140568,200912,,,,,,,3,1,0,165,67,77,24.6,1.2,0.9,104,68,1,13.4,95,172,48,61,102,0.7,17,15,11,122 +2009,181909,200906,0,0,1,0,0,,2,1,0,150,69,88,30.7,0.5,0.5,136,69,1,11,98,192,93,75,98,0.6,23,19,14,84 +2009,663279,200912,,,,,,,3,1,0,157,51,68,20.7,1.2,0.3,100,68,1,12.2,71,132,80,52,64,0.7,27,17,15,88 +2009,322147,200908,,,,,,,2,1,0,150,55,78,24.4,1,0.1,120,80,1,11.6,96,247,141,78,140,0.6,22,14,19,81 +2009,484978,200909,0,0,1,0,1,,2,1,0,161,60,77,23.1,0.6,0.6,120,78,1,15,113,214,71,80,87,1,24,14,11,53 +2009,266165,200910,0,1,1,0,0,,2,1,0,158,62,79,24.8,0.5,0.9,130,80,1,10.2,137,232,140,59,145,1,56,91,70,62 +2009,848190,200908,0,0,0,0,0,,3,1,0,171,70,78,23.9,1.5,1.2,120,60,1,15.3,104,173,49,64,99,1,17,18,21,110 +2009,572493,200906,,,,,,,2,1,0,166,69,77,25,1.5,1.2,99,65,1,13.5,83,175,78,60,98,0.8,42,25,26,103 +2009,876492,200903,0,0,1,0,1,,2,1,1,165,60,84,22,1.2,0.8,124,80,1,15.4,121,214,124,83,106,1.2,18,21,19,48 +2009,874943,200912,0,0,0,0,0,,2,1,1,166,73,91,26.5,0.7,0.7,130,80,2,15.6,90,174,93,39,116,1,20,24,14,119 +2009,698245,200905,0,0,0,0,0,,2,1,3,165,49,64,18,0.2,0.4,100,60,1,12.3,81,169,68,60,95,0.9,20,15,13,68 +2009,976635,200909,0,0,0,0,0,,3,1,5,166,64,87,23.2,1,1.2,170,120,1,17,78,176,76,55,105,0.9,23,20,69,84 +2009,985608,200906,,,,,,,2,1,0,169,68,73,23.8,1,1,110,70,1,8.1,96,166,125,40,101,0.7,19,19,11,123 +2009,897251,200907,0,0,0,0,0,,2,1,0,156,47,66,19.3,0.4,0.4,100,60,1,10.7,95,157,72,47,96,0.8,16,15,11,82 +2009,302146,200908,0,0,0,0,0,,2,1,1,170,72,89,24.9,1.5,1.2,110,78,1,14,106,185,130,45,114,1.1,20,11,64,82 +2009,498848,200905,,,,,,,3,1,1,171,67,72,22.9,0.9,1,115,68,1,16.9,82,189,143,68,92,1.2,24,33,39,84 +2009,334101,200910,0,0,0,0,0,,1,1,2,179,92,88,28.7,0.9,1,135,80,1,15.9,90,175,52,51,114,1.2,30,78,19,127 +2009,872410,200912,0,0,0,0,0,,3,1,0,159,58,69,22.9,0.8,0.7,100,60,1,12,100,156,44,50,97,0.8,28,28,10,88 +2009,478840,200911,,,,,,,2,1,0,147,42,66,19.4,1,0.9,115,70,1,11.9,86,195,80,83,119,0.5,16,10,38,106 +2009,437237,200911,0,0,0,0,0,,2,1,2,159,53,78,21,0.9,0.9,150,100,1,13.3,129,198,103,88,89,0.9,27,26,47,63 +2009,599419,200907,0,0,0,0,0,,2,1,1,173,65,76,21.7,1.5,1.5,120,70,1,15.5,86,149,53,49,89,1,17,12,13,102 +2009,676313,200909,,,,,,,2,1,1,162,50,62,19.1,1.2,1.2,100,70,1,10.2,89,152,37,55,89,0.6,17,11,14,108 +2009,69398,200912,0,0,0,0,0,,2,1,1,150,58,76,25.8,0.9,1.2,122,69,1,14.1,93,205,73,67,123,0.9,17,15,16,81 +2009,802213,200912,,,,,,,2,1,1,157,50,67,20.3,1,1,130,90,1,9.6,87,189,46,55,124,0.7,21,13,13,79 +2009,860038,200907,0,0,0,0,0,,3,1,0,159,44,61,17.4,0.6,1,102,65,1,12.6,105,163,47,70,84,0.9,16,13,13,61 +2009,311226,200906,0,0,0,0,0,,1,,0,175,92,98,30,1.2,0.8,120,80,1,12.7,86,186,113,36,127,0.9,21,20,34,133 +2009,242807,200904,,,,,,,2,1,0,161,55,66,21.2,0.7,0.7,133,84,1,13.2,98,175,106,68,86,0.9,16,11,12,63 +2009,548365,200908,,,,,,,2,1,2,172,64,76,21.6,1.5,1.5,140,94,1,16.2,90,209,87,62,129,1,15,15,25,100 +2009,468872,200912,0,0,0,0,0,,2,1,1,159,60,80,23.7,2,1.5,120,70,1,12.1,96,161,57,64,85,0.8,17,14,17,105 +2009,203673,200907,0,0,1,0,0,,2,1,2,167,66,80,23.7,0.8,0.7,126,77,1,14.2,102,198,96,47,132,0.9,40,48,55,92 +2009,633307,200906,,,,,,,3,1,2,176,82,86,26.5,0.9,0.6,139,89,4,14,87,243,270,59,130,1.2,37,49,114,98 +2009,237719,200910,1,1,1,1,1,,2,1,2,170,69,77,23.9,1.2,1.2,138,88,1,15.9,107,188,114,36,131,0.9,29,29,33,93 +2009,597659,200910,0,0,0,0,0,,3,1,1,167,78,77,28,1.2,1.2,125,69,1,13.4,105,198,101,47,131,0.8,27,36,62,116 +2009,944984,200907,,,,,,,2,1,3,166,63,82,22.9,1,1,110,70,1,14.3,80,216,60,70,134,1.2,22,16,19,52 +2009,674823,200910,0,0,0,0,0,,2,1,1,165,59,71,21.7,1.2,1.5,123,64,1,13.2,93,194,71,45,135,0.9,15,12,8,71 +2009,182208,200910,0,0,0,0,0,,3,1,2,178,69,80,21.8,1.5,1.5,139,89,1,16.1,86,202,73,53,135,0.9,23,14,20,115 +2009,17079,200911,0,0,0,0,0,,2,1,2,169,54,67,18.9,1,0.8,106,60,2,13.8,78,161,52,72,78,1,12,9,17,72 +2009,811603,200911,,,,,,,3,1,1,172,63,72,21.3,1.5,1.2,119,79,1,12,93,162,41,75,79,0.8,21,17,13,104 +2009,99917,200907,0,0,0,0,0,,3,1,0,161,56,74,21.6,0.7,0.8,110,70,1,12.8,84,217,102,61,136,0.9,25,19,14,73 +2009,332997,200906,,,,,,,2,1,1,164,64,74,23.8,1,0.9,141,82,1,11.6,98,171,86,79,74,0.5,18,13,19,136 +2009,325443,200909,0,0,0,0,0,,3,1,1,166,58,67,21,1,1.2,110,75,1,11.3,89,215,43,67,139,0.8,14,13,16,88 +2009,606567,200904,0,0,1,0,0,,2,1,2,150,69,81,30.7,0.8,0.8,130,80,1,13.6,87,175,169,69,72,0.7,13,19,30,108 +2009,611137,200910,0,0,0,0,0,,3,,,158,61,78,24.4,1,0.9,120,80,1,14.1,115,254,322,48,141,0.9,26,34,29,68 +2009,720792,200910,0,0,0,0,0,,2,1,0,165,60,81,22,1.2,1.2,110,70,1,13.2,86,252,85,94,141,1,22,16,67,74 +2009,262452,200912,,,,,,,2,1,1,159,50,69,19.8,1,1,100,60,1,11.9,89,160,61,77,70,0.8,22,14,16,73 +2009,430621,200907,0,0,0,0,0,,1,1,0,155,55,77,22.9,0.6,0.7,110,70,1,12,106,203,55,47,145,0.8,18,14,11,67 +2009,768249,200912,0,0,1,0,0,,2,1,0,170,69,89,23.9,0.5,0.4,116,78,1,12.3,98,147,94,55,73,1.2,113,95,37,56 +2009,154665,200906,,,,,,,3,1,3,154,48,70,20.2,1,1,100,60,1,13.3,74,132,90,46,68,0.7,18,11,12,97 +2009,53748,200906,0,0,0,0,0,,2,1,2,164,50,69,18.6,0.5,0.3,111,68,1,12.9,96,165,111,73,69,0.6,15,11,12,117 +2009,146621,200906,0,0,0,0,0,,2,1,1,170,72,88,24.9,1,0.8,118,73,1,16.1,84,242,184,50,155,11.4,24,35,87,78 +2009,58649,200910,0,0,0,0,0,,3,1,0,160,55,73,21.5,0.3,0.2,167,92,1,13.3,109,255,86,85,153,0.4,20,11,32,122 +2009,46621,200912,,,,,,,2,1,2,173,82,95,27.4,0.6,0.6,130,80,1,14.3,108,145,247,36,59,1.1,30,43,38,94 +2009,347907,200910,0,0,1,0,0,,3,1,0,159,59,84,23.3,0.8,1.2,120,89,1,15,81,300,158,67,201,1,20,18,16,61 +2009,986287,200910,,,,,,,3,1,1,150,66,82,29.3,1.2,1.2,132,72,1,12.5,86,282,202,40,201,0.4,19,29,24,167 +2009,875758,200912,,,,,,,2,1,1,151,52,81,22.8,1.5,1.5,121,78,1,13.7,84,140,83,74,49,0.6,33,28,29,98 +2009,530990,200908,,,,,,,3,1,2,164,63,83,23.4,1.2,2,110,70,1,14.6,108,144,308,34,48,1.3,66,107,257,55 +2009,318399,200907,0,0,0,0,1,,2,1,2,162,59,76,22.5,0.9,0.5,124,76,1,16.9,93,268,65,79,176,0.9,38,28,37,76 +2009,260923,200911,,,,,,,2,1,1,178,79,85,24.9,0.6,0.8,148,86,1,15.7,129,291,136,48,215,0.8,33,45,34,137 +2009,568865,200904,0,0,0,0,0,,2,3,0,176,64,69,20.7,1,1,132,74,3,14.7,98,183,92,62,103,1.1,18,31,38,91 +2009,519172,200905,0,0,0,0,0,,3,3,1,165,72,86,26.4,1.2,1.2,128,70,1,14.7,90,185,231,38,101,1.3,21,36,38,80 +2009,915731,200910,0,0,0,0,0,,2,3,3,169,65,83,22.8,1.2,1,115,85,1,16.2,120,185,150,51,104,1.2,27,29,90,75 +2009,390119,200910,,,,,,,2,3,3,163,62,83,23.3,1.2,1,100,70,1,15.2,135,207,273,53,99,0.8,46,54,135,112 +2009,889412,200912,0,0,0,0,0,,3,3,1,181,79,87,24.1,1,1,120,80,1,13.5,96,185,100,58,107,1.1,32,29,39,112 +2009,82470,200911,0,0,0,0,0,,3,3,1,180,71,78,21.9,1,1,130,80,1,17.7,90,197,231,41,109,1.3,30,44,37,87 +2009,447033,200911,0,0,0,0,0,,2,3,1,170,65,79,22.5,0.6,0.7,116,67,1,15.4,95,179,105,64,94,1,18,19,18,100 +2009,149741,200910,0,0,0,0,0,,2,3,1,180,72,81,22.2,1.5,1.2,126,86,1,17.3,116,170,115,45,102,11.6,21,19,21,92 +2009,115809,200905,0,0,0,0,0,,3,3,2,186,110,111,31.8,0.9,1,125,90,1,13.2,109,202,150,52,120,1.1,39,18,34,147 +2009,914480,200910,0,0,0,0,0,,3,3,1,167,51,67,18.3,1,1,106,66,1,14.9,89,172,58,46,114,1.1,17,14,24,64 +2009,387855,200912,,,,,,,2,3,3,175,76,82,24.8,0.7,0.8,165,97,1,15.2,96,182,94,43,120,1,19,26,33,95 +2009,535689,200906,0,0,0,0,0,,2,3,2,169,68,83,23.8,1,1.5,118,75,1,15.9,87,175,142,47,100,1,20,26,38,91 +2009,440295,200909,0,0,0,0,0,,2,3,1,176,79,86,25.5,1.5,1.5,123,70,1,16.7,79,199,173,54,110,0.9,32,38,93,129 +2009,231997,200908,0,0,0,0,0,,3,3,3,172,62,85,21,1,1,108,68,1,14.5,76,218,274,53,110,1,23,20,29,68 +2009,85219,200912,0,0,0,0,0,,2,3,2,167,61,76,21.9,1,1,105,57,1,16,92,185,74,59,111,1.2,27,26,20,73 +2009,84322,200904,0,0,0,0,0,,2,3,2,180,75,83,23.1,1,1.2,120,80,1,16,118,179,140,53,98,1,22,15,29,96 +2009,197894,200911,,,,,,,2,3,2,160,60,82,23.4,0.8,1.2,159,103,1,17.8,103,200,140,55,117,1,38,20,49,73 +2009,690677,200907,,,,,,,3,3,1,171,76,81,26,0.8,0.9,100,70,1,16.4,106,167,114,53,91,1,26,32,48,105 +2009,230178,200909,0,0,1,0,0,,2,3,1,170,77,95,26.6,0.9,1.2,146,96,1,14.6,115,194,126,44,124,1.2,26,15,30,73 +2009,750776,200905,,,,,,,3,3,2,159,54,75,21.4,0.4,0.6,109,67,1,12.1,89,173,105,66,86,0.7,19,15,17,108 +2009,921924,200911,0,0,0,0,0,,1,3,2,182,110,105,33.2,1.5,1.5,145,88,1,15.3,90,243,319,50,129,1.1,30,80,74,147 +2009,126561,200907,0,0,0,0,0,,2,3,1,181,101,104,30.8,1.2,1,110,70,1,18.3,87,198,157,38,129,1.1,52,123,67,128 +2009,641955,200910,0,0,0,0,0,,3,3,2,172,75,91,25.4,0.8,1.5,120,80,1,14.5,81,141,156,29,81,1,29,27,41,89 +2009,525200,200906,0,0,0,0,0,,2,3,3,160,50,78,19.5,0.7,0.3,130,80,1,13.9,86,163,115,60,80,1,34,20,73,54 +2009,884968,200911,,,,,,,2,3,2,172,82,91,27.7,1.2,1.2,130,88,1,16,78,199,99,45,134,1.1,27,20,33,102 +2009,161624,200908,0,0,1,0,0,,2,3,2,165,60,77,22,1.2,1.2,155,107,1,16.6,103,191,182,73,82,1,28,28,152,78 +2009,416133,200909,,,,,,,2,3,2,173,70,81,23.4,1,1,120,76,1,15.7,112,217,139,53,136,0.9,28,51,91,103 +2009,941551,200906,,,,,,,2,3,1,165,58,72,21.3,1.5,1.2,106,76,1,16.1,92,202,139,38,136,0.8,22,20,40,106 +2009,128799,200910,,,,,,,1,3,1,180,73,80,22.5,2,2,127,80,1,14.7,96,144,155,34,79,1.1,21,18,33,98 +2009,550255,200905,0,0,0,0,0,,1,3,1,184,95,92,28.1,0.6,0.7,130,70,1,15.3,92,226,171,54,138,1.1,17,8,53,124 +2009,688302,200903,,,,,,,2,3,1,163,63,70,23.7,0.7,0.7,107,64,1,16.5,93,220,97,61,140,1.1,19,14,29,74 +2009,98052,200910,,,,,,,2,3,0,165,74,78,27.2,1.5,1.5,130,85,1,16.1,112,202,100,42,140,0.8,21,19,28,115 +2009,835408,200910,,,,,,,2,3,5,170,76,95,26.3,1,1,120,80,1,16.2,88,208,181,32,139,0.9,18,20,20,106 +2009,353996,200912,0,0,0,1,0,,2,3,0,162,71,82,27.1,1.5,1,140,90,1,15.5,121,232,189,54,140,0.6,30,40,47,161 +2009,762129,200904,0,1,1,0,0,,2,3,0,160,67,83,26.2,0.1,0.1,129,79,1,5.9,125,130,96,32,78,1.3,21,12,23,52 +2009,995240,200912,0,0,0,0,0,,2,3,1,176,61,70,19.7,1.2,0.9,110,75,1,14.3,81,173,64,83,77,0.8,19,14,17,109 +2009,674034,200911,0,0,0,0,0,,2,3,1,168,61,76,21.6,1.2,1.2,110,70,1,13.8,84,153,63,62,78,1.1,14,15,15,77 +2009,490204,200912,0,0,0,1,0,,2,3,0,170,53,71,18.3,0.5,0.6,130,70,1,14,105,200,72,42,143,0.9,20,11,14,60 +2009,706602,200906,,,,,,,2,3,3,176,85,92,27.4,1.2,0.9,130,89,1,13.8,107,237,124,71,141,0.7,23,18,72,170 +2009,185597,200908,0,0,0,0,0,,3,3,3,171,78,91,26.7,0.6,0.6,110,80,1,15.3,93,216,138,45,143,1.2,28,42,42,90 +2009,798472,200912,0,0,0,0,0,,2,3,0,161,59,80,22.8,1.5,1.5,100,60,1,15.3,95,244,331,33,144,1.1,37,62,85,74 +2009,284267,200912,,,,,,,3,3,1,173,74,80,24.7,0.6,0.8,125,81,1,16.1,108,248,167,67,147,1.1,38,21,106,97 +2009,532261,200904,0,0,0,0,0,,2,3,1,171,78,92,26.7,0.9,0.6,120,70,1,16.5,105,214,137,37,149,0.9,26,31,32,120 +2009,925195,200903,,,,,,,2,3,4,172,90,100,30.4,0.7,0.7,138,93,3,16.2,123,174,301,44,69,1.2,20,16,71,89 +2009,486441,200902,0,0,1,0,0,,1,3,4,174,86,86,28.4,1,1.2,160,100,1,16.4,84,144,180,44,64,1.1,42,65,174,104 +2009,42231,200911,0,0,0,0,0,,3,3,2,173,65,78,21.7,1.2,1,130,80,1,14.6,78,123,92,39,66,1,24,14,17,98 +2009,365630,200904,0,0,0,0,0,,2,3,1,165,81,81,29.8,1,1.2,120,70,1,17,73,207,62,41,154,0.7,26,23,36,184 +2009,670343,200906,,,,,,,2,3,3,173,71,92,23.7,1.2,1.5,120,70,1,16.1,101,236,185,39,160,1,18,18,101,89 +2009,266734,200907,,,,,,,1,3,2,170,74,90,25.6,1.2,1.2,121,73,1,15.1,104,284,253,68,165,1,40,50,134,102 +2009,121496,200911,,,,,,,3,3,6,150,35,64,15.6,0.3,0.7,83,66,1,9,107,125,125,45,55,0.7,61,47,39,44 +2009,814115,200909,0,0,0,0,0,,2,3,2,166,68,80,24.7,1,1,120,78,1,15.4,86,236,102,52,164,1.3,30,33,26,68 +2009,163129,200904,0,0,0,0,0,,3,3,2,169,70,82,24.5,0.9,0.9,100,70,1,13.5,86,277,133,51,199,1.2,25,16,27,67 +2009,441816,200908,0,0,1,0,0,,3,3,0,162,72,91,27.4,0.7,0.8,130,80,4,14.5,99,254,143,34,191,2,19,14,54,41 +2009,483473,200911,0,0,1,0,0,,2,2,2,163,61,78,23,0.6,0.8,139,80,1,12.8,85,179,111,43,113,0.7,15,20,74,75 +2009,934772,200903,0,0,1,0,0,,3,2,6,167,76,87,27.3,0.8,0.8,140,100,1,14.6,133,196,134,54,115,1.1,21,20,72,78 +2009,26776,200902,,,,,,,2,2,2,172,78,86,26.4,0.8,1,118,73,1,15.6,86,189,62,59,117,0.9,19,16,44,111 +2009,808467,200911,0,0,0,0,0,,2,2,1,174,76,86,25.1,1.5,1.2,110,80,1,14.7,96,180,118,42,114,1.1,29,40,78,80 +2009,56250,200910,0,0,0,0,0,,3,2,1,172,68,76,23,1.2,1.2,120,80,1,15.9,84,200,88,68,114,1,18,13,23,103 +2009,105746,200912,0,0,0,0,0,,2,2,2,164,66,82,24.5,0.8,0.6,126,89,1,15.6,90,170,134,47,96,0.8,24,23,23,123 +2009,913247,200910,0,0,0,0,0,,3,2,0,166,56,78,20.3,0.7,0.7,107,73,1,14.5,90,199,147,48,122,0.9,17,14,14,64 +2009,324678,200905,0,0,0,0,0,,3,2,2,166,71,87,25.8,1.2,1.2,110,79,1,16.4,105,189,255,38,100,1.1,27,25,48,86 +2009,435246,200908,,,,,,,2,2,0,166,53,70,19.2,0.4,0.5,104,54,1,13,90,176,78,49,111,1.1,28,21,39,47 +2009,153851,200910,0,0,0,0,0,,2,2,1,174,81,88,26.8,0.8,0.5,136,93,1,16.5,98,209,303,38,111,1.2,26,26,39,84 +2009,660791,200904,0,0,0,0,0,,3,2,1,176,61,78,19.7,0.9,0.8,110,70,1,14.4,77,169,37,51,111,0.7,23,20,19,121 +2009,680897,200906,,,,,,,2,2,0,161,44,68,17,0.8,0.6,138,80,1,12.5,98,164,55,58,95,0.9,25,35,60,52 +2009,637115,200909,0,0,0,0,0,,2,2,1,164,62,82,23.1,0.8,0.9,135,85,1,15.6,103,194,139,50,116,8.1,23,28,57,92 +2009,924778,200912,,,,,,,2,2,1,159,74,84,29.3,0.8,0.8,139,79,1,15.4,93,183,189,50,95,0.8,21,26,22,119 +2009,934726,200907,0,0,1,0,0,,3,2,5,165,72,85,26.4,0.6,0.9,130,85,1,16,92,224,372,59,90,0.9,32,30,96,90 +2009,540586,200905,0,0,1,0,0,,1,2,2,161,64,84,24.7,1,1,141,95,1,14.2,82,224,95,73,132,1,21,16,16,71 +2009,127519,200911,0,0,1,0,0,,2,2,3,167,83,99,29.8,0.7,0.8,143,81,1,14.7,100,230,282,41,132,1.1,73,52,66,83 +2009,83553,200909,,,,,,,2,2,1,179,66,80,20.6,1.2,1,120,80,1,16,75,156,52,58,87,0.8,26,24,20,126 +2009,383109,200903,0,0,0,0,0,,3,2,2,164,60,82,22.3,0.6,0.7,134,80,1,16,97,260,284,60,143,10.2,28,27,68,72 +2009,412761,200902,0,0,1,0,0,,2,2,3,172,69,78,23.3,1.2,1.5,128,84,1,15.6,94,137,81,47,78,1.1,29,27,23,74 +2009,418137,200901,0,0,0,0,0,,,2,,176,64,80,20.7,0.7,0.6,100,60,1,16.8,75,137,54,48,78,0.9,17,15,17,105 +2009,637320,200903,0,0,1,1,0,,3,2,0,164,73,92,27.1,0.1,0.7,164,94,1,15.2,125,203,49,45,148,0.9,31,31,32,94 +2009,689889,200910,0,0,0,0,0,,3,2,2,174,71,83,23.5,0.7,0.7,150,100,1,13.8,104,134,145,32,73,1.1,26,35,31,80 +2009,393830,200909,1,1,1,0,0,,2,2,0,159,54,67,21.4,0.6,0.4,120,80,1,13.6,80,145,125,49,71,0.9,18,18,15,57 +2009,38967,200910,0,0,0,0,0,,3,2,2,174,80,91,26.4,1,0.9,131,75,3,15.4,98,241,149,47,164,1.2,51,49,134,85 +2009,166324,200907,0,0,0,0,0,,3,2,1,169,61,76,21.4,1,1,130,70,1,12.7,103,230,85,48,165,1,20,15,28,87 +2009,950911,200911,0,0,0,0,0,,3,2,1,167,73,84,26.2,0.9,1,120,70,1,14.8,72,185,450,43,52,1,28,34,23,92 +2009,1009573,200904,0,0,0,0,1,,2,2,2,170,74,88,25.6,1.2,1.2,110,70,1,13.8,70,185,46,117,58,1,21,31,24,89 +2009,793962,200904,0,0,0,0,0,,2,2,2,176,88,93,28.4,1.2,1.2,130,85,1,16.1,102,201,415,37,8100,1.2,24,17,12,104 +2009,518558,200908,0,0,1,0,1,,1,2,3,163,73,82,27.5,1.2,1.5,120,74,1,15.5,113,205,536,38,60,1,29,37,95,93 +2009,970458,200910,0,0,0,0,0,,2,2,2,159,65,88,25.7,0.7,1,117,81,1,14.4,93,239,174,39,165,1.1,23,51,46,73 +2009,4263,200910,,,,,,,2,2,1,175,66,78,21.6,1.5,2,110,70,1,13.5,79,264,54,81,172,1.2,15,15,17,77 +2009,126173,200912,0,0,0,0,0,,2,2,1,165,71,92,26.1,0.4,0.6,130,80,4,15.4,148,265,121,58,183,1,30,29,52,67 +2010,383603,201012,,,,,,,3,1,0,172,58,68,19.6,1.5,1.5,126,78,1,13,98,254,47,77,167,0.9,27,27,36, +2010,326432,201012,,,,,,,2,1,0,160,54,69,21.1,1,1,120,80,1,12.6,100,226,94,70,137,0.6,21,17,10, +2010,915731,201005,,,,,,,3,1,0,170,63,83,21.8,1.5,1.2,140,90,1,14.6,94,150,76,69,65,1.1,16,19,43, +2010,793017,201006,,,,,,,2,1,0,156,53,69,21.8,1.2,1.2,128,83,1,11,100,150,114,43,84,0.6,19,22,38, +2010,872410,201004,,,,,,,3,1,0,157,57,77,23.1,1.5,1.5,111,63,1,12.2,92,145,111,53,69,0.9,30,25,13, +2010,531439,201012,,,,,,,3,1,0,151,48,77,21.1,0.4,0.4,105,63,1,12,93,170,75,75,80,0.8,22,12,12, +2010,4664,201010,,,,,,,3,1,0,160,53,63,20.7,0.7,0.6,100,60,1,12.6,77,144,102,43,80,0.9,16,10,7, +2010,204278,201003,,,,,,,2,1,0,157,56,71,22.7,0.6,0.6,130,90,1,12.5,75,194,59,58,124,1,28,17,14, +2010,834975,201005,,,,,,,2,1,0,164,61,73,22.7,1.2,1.2,120,70,1,12.8,94,187,64,59,115,0.9,19,13,8, +2010,301124,201010,,,,,,,3,1,0,162,63,82,24,0.9,0.9,113,71,1,15.1,78,131,75,45,71,0.9,14,14,19, +2010,546772,201005,,,,,,,2,1,0,156,49,65,20.1,1,1,116,70,1,12.8,87,213,84,63,133,0.7,20,18,12, +2010,916515,201011,,,,,,,3,1,0,166,54,64,19.6,1,1,100,68,1,12.8,95,169,52,57,102,0.9,19,13,17, +2010,752655,201001,,,,,,,3,1,0,166,76,86,27.6,2,9.9,120,80,1,14.9,91,148,150,68,50,1.1,31,39,33, +2010,676313,201009,,,,,,,2,1,0,162,49,62,18.7,1.2,1.2,100,70,1,11.6,85,132,48,55,67,0.8,21,21,10, +2010,803990,201008,,,,,,,3,1,0,147,62,86,28.7,0.5,0.5,140,70,1,12.4,107,206,108,83,101,0.6,26,18,46, +2010,245849,201004,,,,,,,2,1,0,163,80,92,30.1,1.2,1,145,111,3,15.1,96,193,75,42,136,0.9,25,31,22, +2010,487160,201007,,,,,,,3,1,0,160,51,67,19.9,1.2,1.5,106,62,1,12.4,91,146,58,48,86,0.9,15,10,15, +2010,377375,201002,,,,,,,2,1,0,163,53,74,19.9,1.2,1.5,123,81,1,13.8,98,172,37,60,104,0.7,13,13,14, +2010,950911,201010,,,,,,,2,1,0,168,74,82,26.2,1.2,0.9,122,85,1,13.9,91,193,225,52,96,0.9,20,33,28, +2010,376332,201003,,,,,,,3,1,0,155,63,86,26.2,1,1,167,107,1,15.1,95,226,223,56,125,0.4,21,22,26, +2010,720544,201011,,,,,,,2,1,0,172,76,85,25.7,0.8,0.7,118,72,1,15.4,90,158,262,43,62,1.3,26,17,30, +2010,693283,201006,,,,,,,3,1,0,159,69,85,27.3,0.5,0.4,135,75,1,12.8,106,194,78,57,121,0.7,16,18,16, +2010,146593,201007,,,,,,,3,1,0,163,58,80,21.8,1.2,1.5,137,81,1,13.4,90,286,282,49,181,0.8,15,9,20, +2010,517447,201009,,,,,,,2,1,0,151,56,75,24.6,0.5,0.7,120,70,1,13.3,72,235,216,46,144,0.8,32,29,9, +2010,792082,201006,,,,,,,1,1,0,157,64,81,26,0.9,1.5,130,90,1,12.6,90,157,109,45,90,0.9,21,15,12, +2010,725720,201009,,,,,,,3,1,0,153,56,82,23.9,0.9,0.5,133,85,1,13.8,92,249,157,51,166,0.6,23,30,23, +2010,859599,201003,,,,,,,2,1,0,154,68,78,28.7,0.7,0.9,135,84,1,11.4,94,208,35,68,133,0.8,16,15,17, +2010,120410,201012,0,0,0,0,0,0,3,1,0,164,75,89,27.9,1.2,0.7,121,76,1,15.5,105,206,128,50,130,1.2,24,34,30, +2010,782896,201012,0,0,0,0,0,0,2,1,0,160,61,72,23.8,1.2,1.2,110,64,1,13.5,94,261,90,60,183,0.6,20,13,14, +2010,315140,201012,0,0,0,0,0,0,2,1,0,176,76,87,24.5,0.9,1,130,80,1,15.1,94,201,136,58,116,1.2,27,30,51, +2010,692726,201005,0,0,0,0,0,0,1,1,0,166,60,81,21.8,1,1,114,64,1,14.3,82,157,68,56,87,1.1,23,16,14, +2010,88450,201007,0,0,0,0,0,0,2,1,0,173,70,80,23.4,0.8,0.5,120,80,1,13.9,93,204,84,59,128,1.1,20,16,16, +2010,306589,201011,0,0,0,0,0,0,3,1,0,164,63,93,23.4,0.6,0.5,126,70,1,12.6,108,186,130,61,99,6.9,21,24,19, +2010,60216,201006,0,0,0,0,0,0,2,1,0,164,56,77,20.8,0.7,1,90,60,1,11.2,79,155,93,59,77,1,21,13,18, +2010,123714,201004,0,0,0,0,0,0,3,1,0,171,62,85,21.2,0.9,0.9,135,85,1,14.8,105,163,72,46,103,1.2,23,27,19, +2010,825387,201008,0,0,0,0,0,0,2,1,0,166,68,82,24.7,1,1,135,85,1,14.7,100,212,125,57,130,1,24,22,26, +2010,724414,201003,0,0,0,0,0,0,3,1,0,140,45,77,23,0.3,0.3,133,78,1,13.2,93,148,102,52,75,0.7,22,18,12, +2010,46233,201003,0,0,0,0,0,0,2,1,0,139,46,80,23.8,0.6,0.6,154,79,1,12,88,228,292,53,117,0.8,14,11,19, +2010,463902,201003,0,0,0,0,0,0,2,1,0,156,58,72,23.8,0.9,0.9,101,60,1,13,64,196,291,48,90,0.7,28,26,25, +2010,391933,201005,0,0,0,0,0,0,2,1,0,178,81,86,25.6,1.5,1.5,110,60,1,14.3,78,108,36,47,54,0.9,33,32,32, +2010,979151,201012,0,0,0,0,0,0,2,1,0,150,57,89,25.3,0.6,0.8,133,71,1,12.9,102,246,366,41,132,0.9,18,13,25, +2010,849556,201007,0,0,0,0,0,0,3,1,0,170,53,61,18.3,0.9,1.5,118,70,1,12.6,87,132,137,51,54,0.8,16,8,13, +2010,964637,201006,0,0,0,0,0,0,2,1,0,155,66,86,27.5,1,0.6,139,86,1,13.6,122,223,163,36,154,0.7,39,68,58, +2010,814279,201010,0,0,0,0,0,0,3,1,0,166,73,80,26.5,0.8,0.9,118,71,1,12.9,81,154,77,44,95,1,24,14,9, +2010,699142,201012,0,0,0,0,0,0,2,1,0,163,51,66,19.2,0.1,0.1,95,59,1,14,87,166,60,73,81,0.9,18,16,20, +2010,814600,201011,0,0,1,0,0,0,2,1,0,159,70,89,27.7,0.6,0.9,130,85,1,14.8,89,174,58,42,120,1.1,22,17,28, +2010,314169,201010,0,0,1,0,0,0,2,1,0,168,72,79,25.5,1,0.9,120,70,1,15.9,111,222,66,59,150,1.1,30,33,42, +2010,716799,201012,0,0,1,0,0,0,2,1,0,157,71,95,28.8,0.4,0.4,150,80,1,14.3,99,185,156,42,110,1,19,17,22, +2010,79379,201002,0,0,1,0,0,0,2,1,0,166,80,98,29,1.5,1.2,150,100,1,13.6,99,199,121,61,113,1.3,35,50,30, +2010,725112,201001,0,0,1,0,0,0,3,1,0,151,44,64,19.3,0.7,0.7,150,80,1,13.9,97,193,36,59,126,0.8,28,16,14, +2010,238542,201008,0,0,1,0,0,0,2,1,0,160,78,93,30.5,1.2,1.2,110,70,1,14.8,87,189,94,43,128,1,19,16,44, +2010,219397,201011,0,0,1,0,0,0,3,1,0,145,49,82,23.3,0.9,0.9,160,90,1,13.4,93,166,172,36,96,0.6,24,22,25, +2010,196293,201011,0,0,1,0,0,0,3,1,0,150,63,88,28,0.9,0.8,139,82,1,14.7,148,228,259,34,142,0.7,22,31,28, +2010,27490,201010,0,0,1,0,0,0,2,1,0,168,65,82,23,0.8,0.8,160,95,1,16.3,112,239,234,41,151,0.7,28,27,33, +2010,125422,201008,0,0,1,0,0,0,2,1,0,160,69,92,27,1,0.7,135,85,1,13.7,79,157,148,37,90,0.9,28,30,11, +2010,886653,201005,0,0,0,0,0,0,2,1,0,158,57,75,22.8,1,1,118,77,1,14.1,92,228,87,99,112,0.8,22,14,14, +2010,538038,201009,0,0,0,0,0,0,3,1,0,166,60,73,21.8,0.5,0.5,151,86,1,15.2,100,210,117,66,120,0.9,29,19,18, +2010,948365,201001,0,0,0,1,0,0,3,1,0,147,52,84,24.1,0.2,0.2,116,70,1,13.4,123,68,67,30,24,1.1,28,39,29, +2010,781445,201005,0,0,0,1,1,0,2,1,0,164,59,80,21.9,1,0.9,132,79,1,12,90,185,48,42,133,0.8,25,30,15, +2010,437139,201003,0,1,1,0,0,0,3,1,0,158,70,87,28,1.2,1,120,80,1,13.3,90,107,44,50,48,0.6,38,40,17, +2010,948405,201009,0,1,0,0,0,0,2,1,0,165,53,71,19.5,0.1,0.1,100,70,1,11.5,91,160,68,63,83,0.7,18,17,20, +2010,322147,201012,1,0,0,0,1,0,2,1,0,151,56,83,24.6,0.9,0.1,120,80,1,11.8,82,138,138,72,38,0.6,23,23,18, +2010,756414,201012,0,0,0,0,0,0,2,1,0,155,57,75,23.7,1,0.9,151,92,1,14.2,107,153,71,47,91,0.7,39,57,36, +2010,797920,201012,0,0,1,0,0,0,2,1,0,156,67,90,27.5,1.2,0.8,128,85,1,11.7,121,199,83,58,124,1,28,24,67, +2010,330466,201012,0,0,0,0,0,1,2,1,0,159,62,80,24.5,1.2,0.7,100,70,1,13.1,84,133,91,50,65,0.8,23,30,25, +2010,397613,201012,0,0,0,0,0,1,2,1,0,155,61,74,25.4,0.4,0.5,118,78,1,12.5,92,139,82,61,62,0.8,22,15,10, +2010,2270,201012,0,0,0,0,0,0,2,1,2,161,58,68,22.4,2,1.5,119,72,1,14.1,102,220,99,55,145,0.8,17,13,17, +2010,874800,201012,0,0,0,0,0,0,3,1,0,159,71,91,28.1,0.4,0.3,167,99,1,16.5,183,179,193,51,89,0.6,24,24,24, +2010,334101,201010,0,0,0,0,0,0,3,1,0,180,92,91,28.4,1,0.7,120,70,1,15.8,83,161,46,46,106,0.9,57,80,16, +2010,96484,201012,0,0,0,0,0,0,2,1,1,152,61,83,26.4,0.8,1.2,128,78,1,12.4,96,178,45,67,102,1,16,14,8, +2010,572384,201010,,,,,,,2,1,2,167,53,81,19,0.8,0.6,110,70,1,14,99,189,66,53,122,1,22,18,22, +2010,51442,201010,,,,,,,3,1,1,172,60,66,20.3,1.2,1.2,100,70,1,15.3,71,139,67,47,79,0.9,19,11,15, +2010,698594,201012,0,0,0,0,0,0,3,1,0,148,47,71,21.5,0.5,0.6,110,60,1,13.9,86,274,147,56,189,0.7,18,12,41, +2010,985972,201010,0,0,0,0,0,0,2,1,0,161,51,69,19.7,0.2,0.4,100,60,1,13.6,75,174,62,70,91,0.8,14,13,10, +2010,613708,201010,1,0,0,0,0,0,2,1,3,171,65,83,22.2,0.5,0.5,147,94,1,16.3,100,169,279,35,78,1.3,27,20,69, +2010,882980,201006,0,0,0,0,0,0,3,1,1,156,52,69,21.4,1.5,1,110,80,1,13,93,200,132,75,99,1,23,12,13, +2010,318399,201006,0,0,0,0,0,0,2,1,1,160,57,69,22.3,1,0.6,139,81,1,15.9,88,238,121,79,134,0.7,35,28,29, +2010,642807,201006,0,0,0,0,0,0,2,1,1,165,63,72,23.1,0.9,0.8,112,73,1,12.9,100,186,81,52,118,1,16,10,26, +2010,674823,201010,0,0,0,0,0,0,2,1,1,166,53,66,19.2,2,2,118,64,1,13.4,95,197,66,52,132,0.9,18,12,10, +2010,720792,201010,0,0,1,0,0,0,2,1,0,163,61,81,23,1.2,1,115,75,1,13.5,96,227,81,89,122,1,20,13,57, +2010,122296,201011,0,0,0,0,0,0,2,1,1,154,47,63,19.8,0.6,0.6,111,64,1,11.1,79,193,64,89,91,0.8,16,10,16, +2010,386280,201006,,,,,,,3,1,1,164,63,84,23.4,1,1.2,120,80,1,14.6,176,324,188,62,224,0.8,19,20,57, +2010,548365,201010,,,,,,,3,1,1,172,71,82,24,1.2,1,124,76,1,16.8,92,226,172,63,128,0.8,53,67,40, +2010,334536,201011,0,0,0,0,0,0,2,1,1,161,50,61,19.3,0.8,0.8,115,80,1,13.7,92,161,64,73,75,0.8,26,21,12, +2010,975124,201011,0,0,1,0,1,0,3,1,5,149,46,71,20.7,0.8,0.5,132,77,1,13.5,87,274,118,77,173,0.8,29,16,22, +2010,370738,201006,0,0,0,0,0,0,2,1,0,160,55,69,21.5,0.9,0.9,110,70,1,12.4,99,226,91,45,163,1,12,9,20, +2010,411180,201010,,,,,,,3,1,2,164,57,81,21.2,0.4,0.4,128,85,1,12.7,102,262,103,77,164,0.8,18,26,41, +2010,686497,201010,0,0,0,0,0,0,3,1,2,178,85,86,26.8,0.2,0.2,138,80,1,15.1,93,194,71,68,112,1.2,27,24,26, +2010,530990,201010,,,,,,,2,1,3,164,67,89,24.9,1.2,1.2,120,80,1,12.5,99,137,96,52,65,1,34,58,52, +2010,492570,201005,0,0,0,0,0,0,2,1,0,164,57,76,21.2,0.9,0.9,105,65,1,12.6,63,146,175,44,67,0.9,15,8,11, +2010,5707,201007,,,,,,,3,1,1,160,50,67,19.5,0.7,1,98,51,1,13.1,83,182,68,67,101,0.7,11,7,10, +2010,146621,201005,0,0,0,0,0,0,2,1,1,170,69,85,23.9,1,0.8,103,66,1,15.8,88,211,151,56,125,11.1,21,24,56, +2010,346335,201005,,,,,,,3,1,1,172,75,82,25.4,1,0.4,134,87,2,14.2,80,247,59,61,174,1.1,37,31,15, +2010,45461,201004,0,0,0,0,0,0,2,1,0,150,40,62,17.8,0.6,0.6,102,70,1,12.5,91,224,149,54,140,0.8,18,10,11, +2010,97785,201011,,,,,,,2,1,1,159,75,95,29.7,1.5,1.5,110,70,1,12.9,85,250,87,51,181,0.7,23,31,41, +2010,203673,201007,0,0,1,0,0,0,2,1,2,167,67,80,24,0.9,0.9,148,90,1,14.4,114,180,122,58,98,0.9,26,29,55, +2010,294913,201007,0,0,1,0,0,0,2,1,1,159,61,78,24.1,0.5,0.6,120,70,1,12.6,100,249,57,62,175,0.6,20,15,20, +2010,194080,201007,0,0,0,0,0,0,2,1,1,158,62,80,24.8,0.7,0.6,126,80,1,15.1,99,184,350,42,72,1,25,29,28, +2010,435405,201006,0,0,0,0,0,0,2,1,4,160,48,69,18.8,0.9,0.9,110,70,1,14.1,97,199,135,67,105,1,173,143,152, +2010,874943,201006,0,0,0,0,0,0,2,1,1,165,73,87,26.8,0.7,0.5,120,80,1,15.7,86,153,77,42,96,1,19,21,16, +2010,262452,201007,,,,,,,2,1,1,158,49,64,19.6,0.9,0.9,97,57,1,11.7,96,173,65,73,87,0.8,26,16,25, +2010,102141,201004,,,,,,,2,1,2,159,52,74,20.6,1.2,1.5,130,90,1,14.2,118,219,77,75,128,0.6,16,17,22, +2010,680010,201009,0,0,0,0,0,0,2,1,0,164,57,70,21.2,1.5,1.2,114,65,1,15.1,92,196,47,77,110,1.2,18,16,23, +2010,99917,201007,0,0,0,0,0,0,1,1,0,160,54,65,21.1,1.2,1.5,120,70,1,13.1,100,220,78,55,150,0.8,19,17,9, +2010,212433,201011,,,,,,,3,1,3,170,58,69,20.1,1.2,1.2,110,70,1,13.9,81,171,60,77,82,0.9,23,14,17, +2010,195513,201004,0,0,1,0,0,0,2,1,0,153,54,74,23.1,0.8,0.7,145,96,1,13.2,108,222,186,54,131,0.7,27,23,70, +2010,17079,201005,0,0,0,0,0,0,2,1,1,169,55,70,19.3,1,1,110,70,1,13.5,90,166,97,64,83,1,17,11,11, +2010,584556,201008,0,0,0,0,0,0,2,1,0,153,60,83,25.6,0.9,0.7,113,73,1,12.6,76,171,47,55,107,0.8,15,14,10, +2010,598598,201008,0,0,0,0,0,0,3,1,0,162,58,73,22.1,1.2,1.2,103,62,1,12,87,179,47,57,112,0.5,17,10,8, +2010,606567,201007,0,0,1,0,0,0,2,1,1,151,65,93,28.5,1,1,110,70,1,11.2,87,232,119,59,149,0.5,31,28,34, +2010,370314,201007,0,0,0,0,0,0,2,1,1,164,54,72,20.1,1,1,113,70,1,10,100,180,50,55,115,0.7,14,13,11, +2010,237719,201009,0,0,0,0,0,0,2,1,2,170,71,84,24.6,1.2,1.5,130,88,1,16,103,226,145,37,168,0.9,30,33,38, +2010,390119,201009,,,,,,,2,1,3,165,62,86,22.8,1,1.2,130,80,1,14.7,141,196,85,64,115,0.7,38,48,77, +2010,326639,201008,,,,,,,3,1,1,157,61,80,24.7,1.2,1.2,92,49,1,11.2,99,157,111,79,55,0.8,19,12,14, +2010,986287,201008,0,0,1,0,0,0,2,1,2,150,66,90,29.3,0.7,0.7,140,80,1,13.9,87,293,100,81,192,0.7,18,26,69, +2010,776098,201003,0,0,0,0,0,0,3,1,1,175,78,88,25.5,1.5,0.9,110,60,1,16.5,107,205,120,39,142,1,21,20,24, +2010,925523,201003,0,0,0,0,0,0,2,1,2,157,59,79,23.9,0.6,0.4,120,59,1,13.7,82,203,43,57,137,0.9,23,16,15, +2010,585046,201004,,,,,,,2,1,1,160,51,70,19.9,1,1,110,70,1,13.7,71,182,37,72,103,0.7,19,11,12, +2010,53748,201003,0,0,0,0,0,0,3,1,1,162,50,63,19.1,0.4,0.3,100,60,1,13.8,75,179,48,56,113,0.6,19,9,12, +2010,611137,201009,0,0,1,1,0,0,2,1,7,159,61,80,24.1,1,0.9,130,80,1,12.9,107,262,559,47,124,0.8,24,35,24, +2010,597659,201011,0,0,0,0,0,0,3,1,2,167,79,90,28.3,1.2,1,136,81,1,14.5,100,198,153,46,121,0.7,20,42,62, +2010,264628,201008,0,0,0,0,0,0,3,1,1,160,43,60,16.8,0.4,0.2,90,60,1,12.2,102,174,40,69,97,0.8,18,12,8, +2010,130119,201011,,,,,,,3,1,1,152,50,69,21.6,1.5,1.5,89,57,1,13,91,203,51,88,104,0.7,16,10,9, +2010,259727,201003,0,0,1,0,0,0,3,1,2,169,79,93,27.7,1,0.7,124,80,1,14.4,107,167,65,80,73,0.8,30,29,108, +2010,347108,201006,,,,,,,2,1,1,177,62,72,19.8,2,1,130,80,1,14.8,91,216,56,60,144,1.1,22,20,23, +2010,495650,201009,0,0,0,0,0,0,2,1,0,160,67,85,26.2,1.2,0.7,110,73,1,13.5,96,195,121,54,117,1.1,14,10,13, +2010,695991,201007,0,0,0,0,0,0,2,1,1,155,55,69,22.9,0.9,1,110,70,1,10.9,109,188,66,69,107,0.8,18,11,13, +2010,498848,201007,0,0,0,0,0,0,2,1,2,169,65,73,22.8,0.9,1.2,120,80,1,14.7,93,213,57,72,129,1.1,32,35,27, +2010,36714,201004,0,0,0,1,0,0,2,1,0,157,60,84,24.3,0.4,0.7,118,76,1,13.1,170,254,122,54,176,0.8,19,24,16, +2010,752067,201007,0,0,0,0,0,0,2,1,1,167,71,88,25.5,1,1.5,116,72,1,13.7,91,207,76,49,143,0.8,19,10,25, +2010,554585,201006,0,0,0,0,0,0,2,1,0,162,63,77,24,1.2,1.2,105,67,1,10.8,87,194,81,51,127,0.7,20,15,42, +2010,777889,201005,0,0,0,0,0,1,2,1,2,155,50,74,20.8,1.5,1.5,104,68,1,13.8,99,196,62,55,120,0.7,17,13,17, +2010,185597,201012,,,,,,,3,3,3,172,83,94,28.1,1,1.2,120,80,1,16.3,118,265,176,49,180,1.1,37,94,84, +2010,884968,201012,,,,,,,2,3,3,172,82,86,27.7,1,1.2,133,82,1,15.8,98,187,117,42,121,1.2,21,16,34, +2010,102206,201012,,,,,,,2,3,3,165,64,83,23.5,0.8,0.4,150,95,1,15.6,89,168,135,50,91,0.9,40,35,72, +2010,218649,201010,0,0,0,0,0,0,3,3,2,171,70,82,23.9,1.5,1.5,139,89,1,16.3,93,262,143,56,177,0.9,24,29,71, +2010,660791,201011,0,0,0,0,0,1,3,3,1,177,56,78,17.9,1,1,120,82,1,14.8,83,201,52,67,119,0.8,30,22,26, +2010,447033,201010,0,0,0,0,0,0,2,3,3,170,66,79,22.8,1,0.9,130,80,2,15.1,85,198,102,72,106,0.9,20,16,26, +2010,529690,201010,,,,,,,3,3,0,160,55,71,21.5,1.2,1.2,150,100,1,13.6,96,254,68,78,162,0.8,21,18,15, +2010,641955,201010,,,,,,,1,3,2,173,70,87,23.4,0.8,1.2,132,83,1,16.4,92,177,189,34,105,0.9,29,27,39, +2010,335948,201006,,,,,,,3,3,0,164,59,80,21.9,0.9,1,120,80,1,17.2,90,190,85,56,117,1.2,20,14,24, +2010,248846,201011,0,0,0,0,0,0,2,3,1,171,64,72,21.9,1.5,1.5,100,70,1,16.2,72,158,84,68,73,1.1,19,12,29, +2010,461601,201010,0,0,0,0,0,0,2,3,3,182,88,86,26.6,1.5,1.5,112,58,1,15.2,99,158,111,36,101,0.9,30,50,31, +2010,525200,201006,0,0,1,0,0,0,2,3,2,159,52,74,20.6,0.9,0.7,118,72,1,13,98,186,94,58,109,0.8,29,27,40, +2010,149741,201011,0,0,0,0,0,0,2,3,3,180,75,83,23.1,0.1,0.1,138,84,1,16.6,91,191,130,41,124,11.7,23,23,34, +2010,830306,201010,0,0,0,0,0,0,2,3,3,176,69,79,22.3,1.2,1.2,127,71,1,14.3,88,120,79,67,37,1.1,30,25,22, +2010,38967,201010,0,0,0,0,0,0,2,3,1,174,76,85,25.1,1.2,1.2,135,80,1,15.9,119,222,251,52,120,1,31,29,95, +2010,161624,201011,0,0,1,0,0,0,2,3,2,168,61,79,21.6,1.2,1.2,143,95,1,17,129,186,191,64,83,0.8,28,27,127, +2010,365630,201011,,,,,,,2,3,1,165,77,84,28.3,1,1,110,70,1,14.8,88,231,142,58,144,0.9,14,16,26, +2010,416133,201010,,,,,,,2,3,1,173,69,82,23.1,1.2,0.9,134,76,1,15,132,179,74,54,110,0.9,22,58,94, +2010,582676,201010,,,,,,,1,3,3,172,73,85,24.7,1,1,130,90,1,15.3,73,252,124,70,157,1.1,44,29,192, +2010,628127,201006,,,,,,,3,3,1,164,56,78,20.8,0.4,0.4,113,67,1,13.5,77,165,155,77,57,0.6,26,31,41, +2010,773168,201011,,,,,,,2,3,0,167,68,81,24.4,1.2,1.2,130,80,1,15.1,71,253,130,50,177,1.3,31,24,28, +2010,179785,201006,0,0,1,1,0,0,3,3,2,161,63,83,24.3,0.6,1,127,82,1,14.4,116,200,166,50,116,1,16,12,21, +2010,1010623,201005,0,0,0,0,0,0,3,3,1,173,80,86,26.7,0.6,0.9,110,72,1,15.5,92,234,427,52,,1.1,19,20,21, +2010,671580,201011,,,,,,,2,3,2,167,72,92,25.8,1,1,106,63,1,15.6,76,160,57,51,97,1.1,37,23,26, +2010,466014,201012,,,,,,,2,3,2,179,93,98,29,1.2,1.2,132,69,1,15.5,72,170,420,34,,0.9,27,52,53, +2010,995240,201011,,,,,,,2,3,0,176,58,65,18.7,1.5,1.5,110,70,1,14.9,74,212,45,102,101,0.9,23,15,20, +2010,914480,201010,0,0,0,0,0,0,3,3,0,167,49,70,17.6,1,1.2,120,80,1,14.2,79,152,77,45,92,0.9,21,15,21, +2010,532261,201005,0,0,0,0,0,0,2,3,0,171,77,92,26.3,1.5,1,127,82,1,17.1,102,159,264,36,70,0.9,19,24,34, +2010,720080,201005,0,0,0,0,1,0,2,3,3,163,61,76,23,0.9,1.2,113,68,1,13.5,86,248,347,47,131,1,23,25,32, +2010,321944,201005,0,0,0,0,0,0,2,3,2,163,62,77,23.3,1.2,1.5,120,80,1,14.3,96,193,300,54,79,1,32,23,23, +2010,490204,201011,0,0,0,1,0,0,2,3,0,168,53,87,18.8,0.6,0.7,168,79,2,14.6,184,185,40,75,102,0.9,25,20,15, +2010,706602,201005,,,,,,,2,3,1,175,88,89,28.7,1.2,0.8,139,102,1,14.3,100,208,239,51,109,1,28,32,67, +2010,42231,201012,0,0,0,0,0,0,3,3,1,176,68,78,22,1,1,110,70,1,15.8,84,145,100,60,75,0.9,23,18,18, +2010,115809,201006,0,0,0,0,0,0,3,3,1,186,114,111,33,0.8,0.9,130,80,1,14.6,90,194,297,32,103,1,22,13,32, +2010,412901,201007,,,,,,,2,3,2,162,68,83,25.9,1,0.7,120,72,3,15.3,131,204,119,41,139,1.1,39,66,56, +2010,550255,201005,0,0,0,0,0,0,3,3,1,183,90,95,26.9,0.9,0.5,136,86,1,16,99,256,176,52,175,1.2,17,6,48, +2010,107753,201005,0,0,0,0,0,0,3,3,1,184,72,76,21.3,1,0.8,115,60,1,14.7,89,186,121,48,126,0.9,25,38,33, +2010,889412,201009,0,0,0,0,0,0,2,3,2,181,81,87,24.7,1,0.9,125,85,1,14.2,94,179,100,53,106,0.9,67,36,44, +2010,979469,201006,0,0,0,0,0,0,3,3,3,174,72,89,23.8,1,1,99,69,1,14.1,76,184,141,61,94,0.9,26,25,32, +2010,441816,201004,0,0,1,0,0,0,2,3,0,161,72,92,27.8,0.8,0.8,160,100,1,13.9,91,282,148,34,218,2.2,21,19,49, +2010,568865,201004,0,0,0,0,0,0,2,3,0,175,65,73,21.2,1,1,123,72,1,14.2,88,169,148,63,77,0.9,32,27,41, +2010,432825,201009,0,0,0,0,0,0,2,3,2,164,71,94,26.4,1.2,1,130,90,1,16,105,152,127,51,76,1.2,17,18,35, +2010,3690,201005,0,0,0,0,0,0,2,3,1,159,51,77,20.2,1,0.9,110,60,1,13.3,89,145,101,47,78,0.6,20,13,22, +2010,670343,201005,,,,,,,3,3,4,171,75,91,25.6,0.9,1,120,80,1,14.7,122,243,322,40,138,1.3,24,29,199, +2010,230908,201005,0,0,0,0,0,0,2,3,2,177,83,91,26.5,1.2,1.5,110,63,1,14.2,90,160,129,47,88,0.9,20,19,43, +2010,479874,201007,0,0,0,0,0,0,2,3,0,166,68,82,24.7,0.9,0.9,137,82,1,15.3,96,184,266,29,102,1.1,23,34,37, +2010,121496,201008,0,0,0,0,0,0,2,3,0,151,31,59,13.6,0.7,0.6,120,70,2,10.1,119,184,122,69,91,0.8,17,13,20, +2010,231997,201004,0,0,0,0,0,0,2,3,5,172,61,80,20.6,1,0.9,110,70,1,14.7,91,215,164,64,118,1,35,21,11, +2010,122776,201009,,,,,,,2,3,2,180,66,80,20.4,1,1,120,80,1,15.9,110,163,248,42,71,1.1,33,32,104, +2010,737871,201004,0,0,1,0,0,0,2,3,0,169,66,79,23.1,0.9,0.9,105,72,1,17.4,86,277,131,66,184,1.1,21,24,21, +2010,628858,201008,,,,,,,3,3,1,178,79,87,24.9,0.8,1,121,73,1,16.6,85,218,191,55,124,1,25,27,30, +2010,835408,201007,0,0,0,0,0,0,2,3,3,170,78,92,27,1.2,1.2,130,80,1,17,98,218,282,32,130,1.1,21,21,18, +2010,126561,201007,0,0,0,0,0,0,2,3,0,183,99,103,29.6,1.2,1.2,125,80,1,15.8,81,164,186,38,89,1.3,20,35,40, +2010,182741,201007,0,0,0,0,0,0,3,3,1,177,65,77,20.7,1.5,1.5,125,90,4,16.8,96,196,45,52,115,1.2,20,17,16, +2010,781532,201004,0,0,0,0,0,0,3,3,2,172,80,86,27,0.6,0.6,148,89,1,14.6,91,179,293,35,102,1.1,14,19,40, +2010,39217,201003,0,0,0,1,0,0,2,3,6,171,83,104,28.4,1,1,120,70,1,15.7,120,185,303,26,98,0.7,23,29,84, +2010,637160,201003,0,0,1,0,0,0,2,3,3,174,95,102,31.4,0.7,0.7,131,83,1,15.3,103,159,378,60,23,1.3,44,50,99, +2010,633585,201005,0,0,0,1,0,0,3,3,1,163,77,97,29,1,1.5,135,84,1,15.6,107,181,205,58,82,1.2,18,33,59, +2010,13546,201010,0,0,1,1,0,1,3,3,3,171,59,79,20.2,0.9,0.8,137,73,1,15.3,154,238,530,61,71,0.9,78,75,279, +2010,9175,201006,,,,,,,2,3,2,174,69,85,22.8,1.2,1.2,129,85,1,16.3,117,188,106,45,121,1.1,33,36,37, +2010,84322,201004,0,0,0,0,0,0,2,3,3,179,75,82,23.4,1,0.8,124,74,1,14.8,95,137,41,50,79,0.9,45,26,34, +2010,300860,201003,0,0,0,0,0,0,2,3,7,162,60,72,22.9,0.8,1.2,131,75,1,15.6,108,255,168,59,162,0.8,32,25,143, +2010,749074,201012,0,0,0,0,0,0,3,2,2,165,76,92,27.9,1,1.2,130,100,1,14.3,95,201,465,48,,0.9,28,25,57, +2010,750632,201012,,,,,,,3,2,0,166,62,81,22.5,1,1,127,81,1,14.2,103,169,39,70,91,0.9,29,14,16, +2010,284267,201011,0,0,0,0,0,0,3,2,1,174,75,87,24.8,1,1,110,70,1,15.8,85,212,109,59,131,1,26,13,84, +2010,924778,201012,,,,,,,3,2,1,159,73,86,28.9,0.8,0.8,132,87,1,15.6,89,161,132,51,97,0.8,23,27,25, +2010,85219,201010,0,0,0,0,0,0,2,2,2,166,69,85,25,1,1,103,64,1,15.6,92,190,77,58,117,1,21,22,22, +2010,934726,201012,0,0,1,0,0,0,2,2,5,163,73,91,27.5,0.6,0.7,129,83,1,15.3,107,154,77,61,77,11.4,34,23,79, +2010,418137,201012,,,,,,,1,2,0,175,66,92,21.6,1,1.2,103,68,1,15.5,82,136,89,41,77,0.9,26,43,18, +2010,56250,201010,0,0,0,0,0,0,2,2,1,172,70,75,23.7,1.2,1.5,130,80,1,11.2,86,212,92,65,128,0.9,20,16,21, +2010,637115,201010,0,0,0,0,0,0,2,2,1,164,60,80,22.3,0.9,1,140,80,1,15.1,100,183,123,54,104,1,22,18,20, +2010,427754,201005,0,0,0,0,0,0,2,2,1,180,98,99,30.2,1.5,1.2,148,100,1,15.6,102,254,94,34,201,1,29,41,38, +2010,166324,201006,0,0,0,0,0,0,3,2,1,168,61,74,21.6,1.2,1,120,80,1,13.4,105,247,55,57,179,1,18,16,37, +2010,793962,201007,0,0,0,0,0,0,3,2,1,177,86,93,27.5,1.2,1.2,117,68,1,16.4,89,206,175,38,133,1.3,21,19,21, +2010,680897,201006,0,0,0,0,0,0,2,2,0,162,47,69,17.9,0.5,0.8,140,90,1,14.6,101,236,71,83,138,8.7,26,31,23, +2010,689889,201011,0,0,0,1,0,0,2,2,0,173,74,86,24.7,0.8,0.8,135,85,1,13,176,147,271,34,59,1.2,37,54,33, +2010,302146,201011,,,,,,,3,2,2,170,73,84,25.3,0.9,1.2,128,81,1,14.8,105,220,140,44,148,1.2,22,11,59, +2010,480668,201011,,,,,,,3,2,1,155,69,85,28.7,0.9,1.2,110,70,1,10.6,120,149,177,48,65,0.8,20,13,20, +2010,1009573,201004,0,0,0,0,1,0,2,2,2,171,71,84,24.3,0.2,0.2,110,70,1,14.4,115,249,246,41,158,1.2,20,18,38, +2010,395781,201006,,,,,,,3,2,0,166,53,69,19.2,1,1.2,110,80,1,13.5,94,183,77,45,122,0.9,20,21,18, +2010,887943,201006,0,0,0,0,0,0,2,2,1,174,80,86,26.4,2,1.5,130,90,1,14.9,99,175,233,43,85,0.9,16,25,98, +2010,898484,201012,0,0,0,0,0,0,3,2,2,179,102,100,31.8,1.5,1.5,130,80,1,15,124,181,454,29,61,11.5,24,32,17, +2010,518558,201005,0,0,1,0,0,0,2,2,3,163,73,89,27.5,1.2,1.5,138,82,1,16.4,116,198,284,37,104,1,26,34,53, +2010,203606,201011,0,0,0,0,0,0,2,2,2,153,52,74,22.2,0.9,0.9,110,70,1,11.9,130,220,64,87,120,0.8,21,15,19, +2010,808467,201011,0,0,0,0,0,0,2,2,1,169,75,92,26.3,1,1.2,104,80,1,14.9,96,196,56,48,137,1.1,22,26,53, +2010,753924,201012,,,,,,,2,2,0,177,66,82,21.1,0.4,0.6,124,80,1,17.9,104,220,137,51,141,0.9,17,19,16, +2010,127519,201007,0,0,1,0,0,0,2,2,3,168,81,103,28.7,0.9,0.8,130,80,1,15.2,120,199,347,46,83,1,54,70,65, +2010,194801,201006,0,0,0,0,0,0,3,2,2,168,68,79,24.1,1,0.7,110,70,1,15.1,106,209,109,52,135,1.2,25,26,35, +2010,230178,201007,0,0,1,0,0,0,2,2,1,172,82,86,27.7,1.2,1,156,97,1,14.6,111,204,254,42,111,1.3,22,20,37, +2010,87762,201007,,,,,,,2,2,3,172,80,86,27,1.2,0.7,130,80,1,14.9,87,159,106,69,68,0.9,39,26,31, +2010,153851,201010,0,0,0,0,0,0,2,2,1,175,84,91,27.4,0.9,0.3,130,80,1,17.4,98,199,133,38,134,1.3,27,32,34, +2010,999693,201003,0,0,0,0,0,0,2,2,1,167,70,92,25.1,1,1.2,127,79,1,14.8,97,289,685,45,,1,28,38,64, +2010,6374,201004,0,1,1,0,0,0,2,2,0,171,68,89,23.3,0.9,0.3,129,69,1,14.4,92,204,88,33,153,1.1,14,14,54, +2010,26776,201002,,,,,,,2,2,0,172,77,91,26,1,1,116,74,1,15.8,85,185,53,45,129,0.9,17,18,50, +2010,242976,201003,0,0,1,0,0,0,3,2,0,167,67,85,24,0.3,0.3,139,90,1,15.1,95,182,165,44,105,1,33,26,18, +2010,383109,201002,0,0,0,0,0,0,2,2,2,162,57,80,21.7,0.6,0.4,130,84,1,15.1,87,246,101,60,166,11.9,21,23,47, +2010,718591,201008,0,0,0,0,0,0,3,2,0,166,56,77,20.3,0.9,0.6,130,83,1,14.8,105,234,117,92,118,0.9,21,17,71, +2010,4263,201010,0,0,0,0,0,0,3,2,0,174,66,74,21.8,1.5,1.5,110,60,2,13.9,77,243,25,84,154,1,21,18,22, +2010,483546,201008,0,0,1,1,0,0,2,2,0,154,48,77,20.2,0.8,0.8,110,70,1,14.3,138,160,130,51,83,1,24,16,62, +2010,344905,201001,0,0,0,0,0,0,3,2,0,144,39,66,18.8,0.5,9.9,125,80,1,12.6,99,217,91,65,134,0.7,33,26,20, +2010,665633,201001,0,0,0,0,0,0,2,2,1,168,77,89,27.3,1.2,1.5,124,78,1,14.9,103,211,81,39,156,0.9,20,21,20, +2010,412761,201001,0,0,1,0,0,0,2,2,2,173,70,81,23.4,1,1,129,87,1,15.7,93,116,50,38,65,0.9,25,21,22, +2010,179714,201003,0,0,0,0,1,0,3,2,3,163,71,92,26.7,1,1,133,81,1,16.4,79,189,149,41,118,0.6,76,89,58, +2010,112523,201007,,,,,,,2,2,3,181,85,94,25.9,1.2,1,126,79,1,16.4,200,212,372,46,91,0.9,35,36,234, +2011,562083,201111,0,0,1,0,0,0,2,1,0,144,59,88,28.5,0.6,0.7,148,81,1,12,109,242,178,67,139,0.9,30,34,28, +2011,403607,201107,,,,,,,2,1,0,169,70,83,24.5,1.5,1.5,130,80,1,14.6,65,203,72,51,137,0.7,18,16,13, +2011,917270,201107,0,0,1,1,0,0,2,1,0,151,59,80,25.9,0.7,0.8,124,60,1,13,86,163,88,44,101,0.8,22,21,16, +2011,831349,201108,,,,,,,2,1,0,165,71,85,26.1,1.2,1.2,110,60,1,14.1,107,209,195,54,116,0.7,22,28,17, +2011,900114,201112,0,0,0,0,0,0,2,1,0,161,55,72,21.2,1.2,1.2,120,75,1,12.8,92,236,137,65,144,0.7,20,24,19, +2011,219397,201111,0,0,1,0,0,0,2,1,0,146,47,79,22,1.2,1.2,111,66,1,12.5,109,165,147,34,102,0.5,20,16,18, +2011,554112,201110,,,,,,,2,1,0,160,52,74,20.3,1.2,1,100,70,1,11.2,76,140,61,51,76,0.7,6,3,21, +2011,793017,201106,,,,,,,2,1,0,156,54,71,22.2,1.2,1.2,112,67,1,11.5,105,190,77,57,117,0.8,15,11,21, +2011,30622,201103,,,,,,,2,1,0,159,50,69,19.8,0.1,1.5,115,70,1,12.8,76,157,85,67,73,0.7,20,18,23, +2011,326432,201111,0,0,0,0,0,0,2,1,0,160,67,68,26.2,1,1,130,80,1,12.4,61,284,479,81,,0.6,23,7,8, +2011,986287,201110,0,0,1,0,0,0,2,1,0,150,66,88,29.3,1.5,1.2,128,70,1,13.1,103,261,149,72,159,0.8,20,19,34, +2011,716732,201108,,,,,,,3,1,0,172,52,63,17.6,0.4,0.4,120,70,1,15.4,82,156,66,69,74,0.8,19,10,14, +2011,446652,201109,,,,,,,3,1,0,156,63,84,25.9,0.4,0.6,120,80,1,12.5,82,219,104,57,141,0.7,15,17,14, +2011,138307,201102,0,0,1,0,1,0,2,1,0,152,84,101,36.4,0.9,0.8,130,90,1,13.8,109,205,158,57,116,0.6,31,45,42, +2011,335520,201111,,,,,,,3,1,0,153,54,78,23.1,0.6,0.6,110,70,1,13.2,95,181,78,61,104,0.8,19,25,16, +2011,79250,201105,0,0,0,0,0,0,3,1,0,139,40,67,20.7,0.1,0.5,120,80,1,12.9,94,193,54,67,115,0.6,26,19,12, +2011,559370,201112,0,0,0,0,0,1,3,1,0,154,53,65,22.3,0.9,0.9,92,59,1,12.6,86,233,41,89,136,0.6,17,11,12, +2011,674823,201110,0,0,0,0,0,0,3,1,0,166,55,77,20,1.2,1.2,110,70,1,13.1,91,238,58,44,182,0.9,18,18,11, +2011,979090,201112,0,0,0,0,0,0,1,1,0,154,56,73,23.6,0.8,1,110,70,1,12.5,92,181,80,65,100,0.8,14,9,19, +2011,827174,201112,0,0,0,0,0,0,3,1,0,170,60,74,20.8,1,1.2,125,76,1,15.2,80,201,85,65,119,1,19,14,18, +2011,860440,201105,0,0,0,0,0,0,3,1,0,154,48,71,20.2,0.9,0.9,135,90,1,12,93,199,108,68,109,0.6,19,10,10, +2011,584556,201103,,,,,,,3,1,0,152,63,87,27.3,1.2,0.9,110,70,1,14.2,96,184,96,52,112,0.8,18,15,9, +2011,992522,201112,,,,,,,3,1,0,150,43,64,19.1,1.2,1.2,110,70,1,7.9,89,171,48,86,75,0.6,23,16,19, +2011,248846,201109,0,0,0,0,0,0,3,1,0,171,63,75,21.5,1.2,1.5,120,80,1,16.7,73,168,65,72,83,0.9,18,13,32, +2011,897251,201112,,,,,,,2,1,0,153,50,64,21.4,0.4,0.5,110,75,1,9.7,86,171,83,47,107,0.6,20,15,10, +2011,68379,201111,0,0,0,0,0,0,2,1,0,162,56,76,21.3,0.4,0.6,115,73,1,13.6,95,158,63,59,82,0.7,19,13,13, +2011,487160,201108,,,,,,,2,1,0,159,53,69,21,1.5,1.5,107,61,1,11.8,85,121,88,42,61,0.8,16,12,13, +2011,892360,201111,,,,,,,3,1,0,157,64,74,26,0.8,0.5,130,80,1,13.8,95,199,56,60,128,0.6,22,7,32, +2011,701404,201104,,,,,,,3,1,0,155,63,76,26.2,1.2,1.2,117,72,1,12.2,79,224,52,49,164,6.3,7,29,13, +2011,160611,201112,,,1,,,,3,1,0,152,60,82,26,0.7,0.7,133,77,1,13.4,96,176,112,45,108,0.8,28,27,19, +2011,839897,201103,0,0,1,0,0,0,2,1,0,147,51,76,23.6,1,1,120,80,1,12,86,206,113,48,135,0.5,22,19,17, +2011,99917,201107,0,0,0,0,0,0,1,1,0,160,53,68,20.7,1.2,1,134,86,1,12,77,161,105,52,88,0.8,46,45,10, +2011,265168,201107,0,0,0,0,0,0,3,1,0,168,61,70,21.6,0.9,0.8,120,70,1,13.3,80,157,72,61,82,1.1,15,11,20, +2011,778228,201110,0,0,0,0,0,0,2,1,0,169,71,87,24.9,1,0.5,132,75,1,12.7,86,173,106,51,100,0.8,27,21,10, +2011,911867,201102,0,0,0,0,0,0,3,1,0,158,51,90,20.4,0.7,0.4,130,80,1,13.8,111,127,103,35,71,0.8,24,18,21, +2011,354989,201106,0,0,0,0,0,0,2,1,0,156,72,93,29.6,0.9,0.8,162,111,1,13.6,80,234,455,36,107,0.9,17,22,31, +2011,512815,201109,,,,,,,3,1,0,178,102,98,32.2,1.2,1,135,85,1,16.8,104,162,120,39,99,1.3,33,85,67, +2011,763384,201111,0,0,0,0,1,0,1,1,0,168,73,94,25.9,0.7,0.9,120,80,1,13.9,103,161,156,53,77,0.9,30,30,14, +2011,199298,201107,,,,,,,1,1,0,157,48,67,19.5,1.5,1.2,126,90,1,12.3,96,159,67,55,90,1.1,21,21,12, +2011,888234,201104,,,,,,,2,1,0,153,46,66,19.7,1,1,120,80,1,13.6,104,216,84,58,141,0.9,26,20,18, +2011,183321,201103,,,,,,,3,1,0,152,53,73,22.9,0.5,1,100,70,1,13.4,82,203,152,45,127,0.9,26,20,17, +2011,558657,201111,0,0,1,0,0,0,2,1,0,159,57,70,22.5,1.5,1.2,141,82,1,11.9,97,192,72,58,119,0.8,24,14,9, +2011,483473,201106,0,0,1,0,0,0,3,1,0,163,58,82,21.8,0.4,0.5,143,90,1,12.6,115,185,87,54,113,0.9,21,17,59, +2011,306589,201110,0,0,0,0,0,0,3,1,0,163,63,83,23.7,0.9,0.8,115,75,1,12,107,214,61,67,135,0.9,19,22,24, +2011,747424,201103,,,,,,,2,1,0,156,62,82,25.5,1,0.9,166,88,1,14,101,193,70,51,128,0.8,21,17,21, +2011,347014,201112,0,0,0,0,0,0,2,1,0,161,54,71,20.8,0.9,0.8,110,70,1,12.6,69,177,82,48,112,1.2,16,22,14, +2011,316400,201105,0,0,0,0,0,0,2,1,0,163,65,72,24.5,1,1.5,104,63,1,13.5,74,191,57,47,131,0.8,17,10,10, +2011,375694,201105,,,,,,,2,1,0,151,67,88,29.4,0.9,0.7,110,75,1,12.3,99,161,95,62,80,0.7,16,13,10, +2011,642899,201103,0,0,0,0,0,0,3,1,0,152,51,76,22.1,1,1,122,70,1,13,88,141,50,62,69,0.7,56,41,143, +2011,166015,201108,0,0,0,0,0,0,2,1,0,152,63,81,27.3,1.5,1.2,135,80,1,13.4,78,142,53,53,78,0.9,25,24,17, +2011,870692,201101,0,0,1,0,0,0,2,1,0,134,41,83,22.8,0.9,0.5,159,79,1,12,117,321,97,110,191,0.7,39,43,133, +2011,391933,201104,0,0,0,0,0,0,2,1,0,178,85,85,26.8,0.5,0.6,130,80,1,14.8,85,169,48,63,96,1.1,29,30,26, +2011,459837,201109,0,0,1,0,0,0,1,1,0,160,50,65,19.5,1,0.8,146,95,1,14.4,85,143,99,58,65,1,24,26,28, +2011,204278,201103,,,,,,,2,1,0,157,55,71,22.3,0.4,0.4,103,62,1,12.9,76,178,126,59,93,0.6,36,41,15, +2011,688532,201107,,,,,,,3,1,0,155,52,79,21.6,1.2,1.5,125,79,1,12.1,92,189,108,60,107,0.6,26,22,16, +2011,318669,201105,0,0,0,1,0,0,2,1,0,155,61,76,25.4,0.8,0.6,87,51,1,13.2,93,180,106,56,102,0.6,19,18,17, +2011,877959,201109,,,,,,,3,1,0,155,50,72,20.8,0.9,0.7,101,67,1,13.5,75,212,195,66,107,0.7,15,9,11, +2011,303645,201108,,,,,,,3,1,0,164,98,96,36.4,0.3,0.4,170,105,1,12.5,68,206,228,44,116,0.7,23,30,23, +2011,27490,201110,0,0,1,0,0,0,2,1,0,168,63,80,22.3,0.8,0.8,130,89,1,16.5,105,259,223,41,173,0.7,20,16,25, +2011,776098,201106,0,0,0,0,0,0,3,1,0,176,79,85,25.5,1.5,1,120,70,1,17.2,91,184,113,44,116,0.9,17,21,29, +2011,950911,201112,,,,,,,2,1,0,168,72,82,25.5,0.9,1.2,115,75,1,14.1,93,233,144,57,147,1,27,37,28, +2011,720792,201110,0,0,1,0,0,0,3,1,0,164,60,81,22.3,1.2,0.8,110,70,1,13.8,109,246,126,86,135,1,23,14,57, +2011,347907,201107,0,0,1,0,1,0,2,1,0,160,63,90,24.6,0.6,0.6,128,88,3,14.8,92,184,305,54,69,1.1,25,38,28, +2011,611279,201103,0,0,1,0,0,0,2,1,0,160,71,81,27.7,0.7,0.6,150,90,3,14,86,210,170,57,119,0.7,30,40,24, +2011,480569,201106,0,1,1,0,0,0,2,1,0,154,58,88,24.5,0.1,0.6,100,60,3,8.6,79,122,128,43,53,1.4,20,10,26, +2011,519824,201109,,,,,,,2,1,0,145,58,79,27.6,0.8,0.5,144,91,3,13.9,107,300,427,43,,0.5,31,32,36, +2011,79207,201108,,,,,,,2,1,0,144,47,68,22.7,0.9,1,130,80,,10.5,99,136,79,48,72,1.1,15,13,31, +2011,9866,201112,,,,,,,2,1,0,157,79,92,32,0.9,0.6,128,73,2,12.9,88,151,103,46,84,0.6,23,40,48, +2011,694083,201103,,,,,,,2,1,0,156,64,87,26.3,0.3,0.4,136,60,1,14,82,195,99,51,124,0.7,15,19,15, +2011,484978,201107,0,0,1,0,1,0,2,1,0,160,61,75,23.8,0.6,1,122,76,1,14.5,112,214,67,98,103,1.1,26,21,15, +2011,497301,201107,0,1,1,0,0,0,3,1,0,145,42,86,20,0.5,0.6,150,90,1,12.9,100,190,95,86,85,0.9,19,10,17, +2011,572384,201106,0,0,0,0,0,0,2,1,0,167,51,65,18.3,0.8,0.7,81,60,1,12.3,105,175,35,57,111,1,23,23,17, +2011,942671,201103,,,,,,,2,1,0,157,47,68,19.1,0.8,0.3,134,80,1,12,89,183,72,42,126,0.6,56,60,17, +2011,663279,201111,,,,,,,3,1,0,157,53,67,21.5,1,0.2,85,51,1,11.5,84,139,61,59,67,0.9,22,10,11, +2011,814600,201112,1,0,1,0,0,0,3,1,0,159,68,91,26.9,0.6,0.9,134,78,1,13.7,97,184,89,43,123,1.1,18,15,29, +2011,266165,201104,0,1,1,0,0,0,2,1,0,157,61,76,24.7,0.5,1,130,80,1,13.7,85,213,77,43,154,0.8,27,30,28, +2011,948365,201103,0,0,0,1,0,0,3,1,0,146,39,90,18.3,0.4,0.3,135,87,1,14,188,74,79,27,31,0.9,33,28,31, +2011,134307,201102,0,0,1,0,0,0,2,1,0,165,59,71,21.7,1,0.8,139,79,1,12.4,84,195,54,71,113,0.7,22,18,33, +2011,181909,201107,0,0,1,0,0,0,3,1,0,150,69,104,30.7,0.8,0.5,140,80,1,11.1,93,160,85,57,86,0.8,459,779,408, +2011,674294,201109,,,,,,,2,1,0,154,64,81,27,1.2,1.2,110,70,1,13.3,237,189,74,78,96,0.8,24,26,48, +2011,944984,201105,,,1,,,,2,1,3,167,62,80,22.2,0.8,0.8,120,70,1,13.3,105,203,50,71,122,1,25,14,40, +2011,573141,201111,,,,,,,2,1,2,159,54,68,21.4,0.5,0.6,106,69,1,13.6,80,224,66,58,152,0.6,19,15,24, +2011,941551,201107,,,,,,,2,1,1,164,55,75,20.4,1.2,1,106,72,1,15.4,99,203,63,54,136,0.9,20,15,36, +2011,318399,201106,0,0,0,0,0,0,2,1,1,161,58,73,22.4,0.9,0.9,129,74,1,15.5,88,234,78,74,144,0.9,31,22,27, +2011,775244,201112,,,,,,,2,1,2,155,74,90,30.8,0.7,0.5,110,76,1,12.8,93,183,65,39,131,1.3,23,28,21, +2011,695991,201110,0,0,0,0,0,0,2,1,1,155,58,77,24.1,1,1,110,80,2,11.3,91,181,78,62,105,0.7,18,18,18, +2011,334101,201110,0,0,0,0,0,0,2,1,0,179,96,95,30,0.9,0.7,120,80,1,16.5,84,188,71,55,119,0.8,55,156,21, +2011,294913,201109,0,0,1,0,0,0,2,1,1,158,61,87,24.4,0.8,0.9,89,59,1,11.9,85,214,57,53,149,0.6,27,17,18, +2011,69398,201111,0,0,0,0,0,0,2,1,1,149,58,81,26.1,0.7,1,129,87,1,13.4,87,173,53,66,96,0.9,20,23,17, +2011,802213,201108,,,,,,,3,1,1,157,48,73,19.5,1,1,137,78,1,8.9,75,169,59,51,106,0.7,31,13,10, +2011,948405,201110,0,0,0,0,0,0,2,1,5,163,53,75,19.9,0.1,0.4,100,60,1,11.3,80,153,53,58,84,6.9,19,14,20, +2011,492570,201105,0,0,0,0,0,0,2,1,0,163,56,69,21.1,1.2,1.2,100,60,1,12.9,75,162,90,46,98,1,16,9,13, +2011,332997,201104,0,0,0,0,0,0,2,1,1,164,64,75,23.8,0.8,0.7,135,89,1,12.8,88,166,51,69,87,0.8,14,16,11, +2011,85219,201105,0,0,0,0,0,0,2,1,3,166,66,83,24,1.2,1.2,110,61,1,16.3,103,200,77,74,111,1.1,27,28,20, +2011,570104,201106,0,0,0,0,0,0,2,1,0,163,52,69,19.6,1.2,1,110,70,1,12.5,74,178,79,63,109,0.9,22,18,14, +2011,370738,201106,0,0,0,0,0,0,2,1,0,160,55,72,21.5,0.9,0.9,120,70,1,12.3,79,252,79,49,187,0.9,12,4,18, +2011,874943,201106,0,0,0,0,0,0,2,1,1,165,78,85,28.7,1,0.6,120,80,1,15.6,87,185,81,49,120,1,23,31,20, +2011,554585,201103,0,0,0,0,0,0,2,1,0,163,65,82,24.5,1.2,1,104,70,1,10,97,163,84,49,97,0.7,17,13,44, +2011,875758,201112,,,,,,,2,1,1,151,51,71,22.4,1.5,1.5,110,70,1,11.3,89,193,81,56,120,0.9,19,16,21, +2011,819784,201111,,,,,,,2,1,2,167,67,84,24,0.6,0.5,126,64,1,13.2,111,196,81,39,140,1,22,23,42, +2011,491031,201106,,,,,,,3,1,0,155,52,64,21.6,1.5,1.5,136,86,1,13.5,86,165,49,68,87,0.8,17,8,18, +2011,212433,201110,,,,,,,2,1,1,171,63,75,21.5,0.6,0.6,100,60,1,13.8,88,153,48,63,80,0.5,18,13,15, +2011,587805,201106,0,0,0,0,0,0,2,1,1,165,65,76,23.9,1.2,1.2,113,74,1,14.3,103,213,95,88,106,0.7,17,15,17, +2011,548365,201110,,,,,,,3,1,1,172,71,77,24,1.2,1.2,120,80,1,16.2,92,238,91,62,157,0.8,21,27,37, +2011,979358,201105,0,0,0,0,0,0,2,1,0,157,60,76,24.3,1.2,1.5,124,82,1,12.9,93,184,101,50,114,0.8,16,11,14, +2011,623836,201111,,,,,,,2,1,3,158,57,73,22.8,0.9,0.8,100,67,1,13,88,234,101,72,141,0.8,22,17,11, +2011,661154,201111,0,0,0,0,0,0,2,1,1,170,58,78,20.1,0.6,0.4,130,80,1,15.5,119,209,45,86,113,1,28,16,37, +2011,71582,201112,0,0,0,0,0,0,2,1,1,158,56,73,22.4,1.5,1.5,105,66,1,12.8,88,133,45,49,75,1,19,16,53, +2011,498848,201110,0,0,0,0,0,0,2,1,1,169,69,82,24.2,1.2,1,118,72,1,16.3,85,186,105,57,107,1,36,46,46, +2011,764100,201110,0,0,0,0,0,0,2,1,0,157,47,69,19.1,1.2,1,110,70,1,12.8,70,134,105,55,58,0.8,15,9,21, +2011,87762,201106,,,,,,,2,1,4,171,78,92,26.7,0.7,0.5,110,70,1,13.9,99,184,109,48,114,0.9,31,21,26, +2011,56993,201112,,,1,,,,3,1,3,169,71,88,24.9,1.2,1.2,139,83,1,14.8,90,152,103,43,88,1,17,24,37, +2011,914987,201103,0,0,1,0,0,0,3,1,2,145,70,95,33.3,0.5,0.5,130,69,1,8,107,183,104,54,108,0.9,22,17,33, +2011,262452,201106,,,,,,,2,1,1,159,52,68,20.6,1.2,1.2,120,80,1,13,99,143,104,66,56,0.9,27,20,28, +2011,797920,201108,0,0,1,0,0,0,2,1,0,156,66,82,27.1,1.2,0.8,120,80,1,13.1,110,213,104,52,140,0.8,36,29,51, +2011,437237,201106,0,0,1,0,0,0,2,1,3,158,51,81,20.4,0.7,0.7,160,100,1,12.7,79,200,102,63,117,1,25,16,37, +2011,138407,201105,0,0,1,0,0,0,2,1,0,175,86,92,28.1,0.5,0.7,150,90,3,14.4,88,168,112,50,95,1.3,21,15,19, +2011,478840,201109,0,0,0,0,0,0,3,1,0,146,46,74,21.6,1.2,0.9,100,60,1,12.3,82,212,117,52,137,0.7,25,17,73, +2011,480668,201110,,,,,,,2,1,2,155,66,87,27.5,1.2,1,128,86,1,11.5,92,186,122,74,87,0.7,14,10,21, +2011,925523,201109,0,0,0,0,0,0,3,1,0,154,62,80,26.1,0.9,1,109,65,1,13.6,91,226,38,57,161,0.9,24,21,26, +2011,17079,201105,0,0,0,0,0,0,2,1,1,169,55,70,19.3,1.2,1.2,105,60,1,13.1,89,155,133,64,64,0.9,17,14,10, +2011,535689,201104,0,0,0,0,0,0,2,3,2,170,64,79,22.1,1.2,1.5,105,73,1,16.4,89,171,157,53,87,0.8,20,23,36, +2011,663811,201105,,,,,,,2,1,1,149,53,77,23.9,1.5,1,120,70,1,13,78,159,146,47,82,0.6,24,17,26, +2011,430621,201103,0,0,0,0,0,0,2,1,0,154,56,84,23.6,0.5,0.7,110,70,1,13,88,199,35,54,138,0.7,20,14,10, +2011,742999,201110,0,0,0,0,0,0,3,1,2,167,68,83,24.4,1,1.2,110,70,1,17.1,84,202,159,46,124,11.5,24,28,21, +2011,302146,201106,0,0,0,0,0,0,2,1,2,170,74,88,25.6,1.2,1,147,93,1,14.9,104,197,179,55,106,1.1,26,20,81, +2011,572549,201112,,,,,,,2,1,2,165,79,85,29,1,1,99,58,1,14.2,103,200,190,47,115,0.7,70,90,79, +2011,876492,201103,0,0,1,0,0,0,2,1,2,166,62,74,22.5,0.9,0.9,125,80,1,14.9,108,237,189,89,110,0.9,25,17,20, +2011,538038,201107,,,,,,,3,1,1,166,59,69,21.4,0.8,0.9,130,90,1,13.7,95,177,192,52,86,1,20,10,19, +2011,689889,201111,0,0,0,1,0,0,2,1,0,172,74,86,25,0.6,0.6,130,80,1,12.4,126,148,332,32,65,1.2,28,35,17, +2011,611137,201107,0,0,1,1,0,0,3,1,1,158,63,82,25.2,1.5,1.2,120,80,1,13.1,113,252,723,36,125,0.9,17,18,16, +2011,627341,201104,0,0,0,0,0,0,3,1,1,164,43,61,16,1.2,1.2,118,80,1,14.4,83,177,26,59,112,0.9,25,18,13, +2011,698245,201107,0,0,0,0,0,0,2,1,3,166,54,71,19.6,0.9,0.8,99,58,1,11.2,77,175,196,39,96,0.9,19,11,26, +2011,260923,201110,0,0,0,0,0,0,2,1,1,179,77,86,24,1,1,130,80,1,15.6,124,148,251,47,51,1.1,27,34,27, +2011,237719,201108,0,0,0,0,0,0,1,1,2,170,70,84,24.2,1.5,1.5,136,88,1,16.7,104,227,214,34,161,1.1,26,29,38, +2011,38967,201111,0,0,0,0,0,0,2,1,0,174,76,82,25.1,1.2,1.5,102,65,2,16.6,100,218,211,45,131,1,28,31,87, +2011,383109,201103,0,0,0,0,0,0,2,1,2,164,60,81,22.3,0.6,0.7,139,80,1,15.8,87,237,215,51,143,11.1,24,27,66, +2011,146621,201107,0,0,0,0,0,0,3,1,0,170,69,83,23.9,0.9,0.8,120,85,1,16.7,88,225,184,61,127,10.7,24,35,78, +2011,633307,201105,0,0,0,0,0,0,3,1,3,176,82,93,26.5,0.7,0.7,130,80,1,15,102,253,200,39,174,1.1,35,73,88, +2011,435405,201104,,,,,,,2,1,7,160,45,72,17.6,1,1.2,120,80,1,15.7,61,248,280,82,110,1.2,131,93,322, +2011,163650,201112,,,,,,,2,1,3,156,49,72,20.1,0.7,0.2,121,89,1,12.8,100,169,192,66,64,0.6,25,36,153, +2011,540586,201107,0,0,1,0,0,0,1,2,3,162,64,87,24.4,0.9,1.2,128,95,1,14.6,86,206,76,75,116,0.9,15,10,15, +2011,390119,201109,,,,,,,2,2,3,164,63,78,23.4,1.2,1,90,60,1,14.6,135,233,94,42,172,0.7,44,70,89, +2011,674034,201112,0,0,0,0,0,0,2,2,3,170,63,78,21.8,0.9,1.5,128,69,2,14.9,91,175,75,593,100,1,19,14,13, +2011,153851,201111,0,0,0,0,0,0,2,2,0,175,85,93,27.8,1,0.4,110,75,1,17,89,160,104,52,87,1.2,34,44,39, +2011,166324,201106,0,0,0,0,0,0,2,2,1,168,61,78,21.6,1,1,120,80,1,14,104,242,105,49,172,0.9,20,17,23, +2011,56250,201109,0,0,0,0,0,0,2,2,1,172,68,75,23,1.5,1.5,130,80,1,17,76,229,92,73,137,0.9,15,17,25, +2011,934772,201110,0,0,1,0,0,0,2,2,6,167,73,82,26.2,0.7,0.6,145,88,1,14.3,118,171,72,70,86,1,42,32,61, +2011,395781,201106,0,0,0,0,0,1,3,2,0,166,59,70,21.4,1.2,1.5,136,87,1,13.2,95,224,79,46,170,0.9,18,16,17, +2011,26776,201103,,,,,,,2,2,5,171,77,95,26.3,1,1,110,84,1,16.1,110,198,72,82,106,1,21,19,45, +2011,83553,201105,,,,,,,3,2,2,178,67,82,21.1,1.5,1.5,130,80,1,15.6,98,148,65,60,75,1,24,24,23, +2011,23682,201107,0,0,1,0,0,0,2,2,6,168,70,82,24.8,1.2,1.5,120,80,1,12.3,187,185,113,41,121,0.8,19,17,18, +2011,418137,201111,0,0,0,0,0,0,1,2,0,175,61,76,19.9,1,0.7,103,65,1,16.8,86,128,67,43,72,0.8,14,13,14, +2011,628858,201109,,,,,,,2,2,0,178,76,81,24,0.6,0.8,127,75,1,15.2,91,173,140,46,99,1,15,15,20, +2011,4263,201110,,,,,,,2,2,1,175,66,82,21.6,1.5,1.5,120,70,1,13.5,75,281,64,43,225,0.8,22,20,21, +2011,913247,201111,0,0,0,0,0,0,2,2,0,166,62,82,22.5,0.7,0.8,134,81,1,14.9,98,188,116,46,119,0.9,18,17,19, +2011,284267,201112,,,,,,,2,2,2,174,72,89,23.8,1,1,129,66,1,13.4,71,236,141,71,136,0.9,22,13,73, +2011,699907,201111,0,0,1,0,0,0,3,2,1,174,66,77,21.8,1,0.8,160,90,1,14.5,97,180,59,71,97,0.7,25,16,19, +2011,637320,201105,0,0,1,1,0,0,2,2,0,165,69,93,25.3,0.1,0.9,139,80,1,15,106,158,139,42,88,0.7,31,30,28, +2011,324678,201106,0,0,0,0,0,0,1,2,2,169,64,82,22.4,1.2,1.2,112,76,1,15.5,93,161,129,54,81,1,24,17,23, +2011,530990,201111,0,0,0,0,0,0,2,2,3,164,62,82,23.1,1.2,1.2,119,79,1,15.5,99,161,125,52,84,0.9,57,91,171, +2011,1009573,201104,0,0,0,0,0,1,2,2,2,171,71,87,24.3,1.2,1.2,100,60,1,14.4,94,219,143,44,146,1.2,18,11,32, +2011,346335,201105,,,,,,,3,2,3,171,75,81,25.6,1.2,0.5,120,70,1,12.8,85,277,169,49,194,0.9,47,36,16, +2011,123714,201103,0,0,0,0,0,0,3,2,7,168,65,82,23,1,1.2,130,88,1,16.1,105,212,187,45,129,0.9,27,30,22, +2011,637115,201109,0,0,0,0,0,0,2,2,1,165,62,80,22.8,0.7,0.9,150,90,1,16.5,107,208,196,58,111,1,18,20,32, +2011,163129,201102,,,,,,,3,2,1,169,73,82,25.6,0.6,1.2,120,70,1,13,92,219,314,37,119,1,25,22,40, +2011,775563,201106,,,,,,,2,2,1,170,77,86,26.6,1,1.2,130,88,1,15.3,114,202,583,23,,1.1,99,181,92, +2011,122776,201108,,,,,,,1,2,2,179,72,88,22.5,1.5,0.8,130,90,1,15.4,129,184,439,51,,1.2,26,29,240, +2011,925195,201110,,,,,,,2,2,4,173,84,95,28.1,1,1,124,88,1,15.2,245,187,261,43,91,1,29,29,71, +2011,354421,201103,,,,,,,2,2,3,172,69,88,23.3,0.6,0.7,122,83,1,13.7,98,166,191,65,62,1,36,31,96, +2011,127519,201112,,,1,,,,3,2,3,166,83,97,30.1,0.7,0.7,130,90,1,14.9,120,224,390,42,104,1.2,28,20,75, +2011,518558,201103,0,0,1,0,0,0,2,2,3,163,73,84,27.5,1.2,1.5,121,70,1,15.2,121,168,424,37,65,1,25,34,82, +2011,311226,201107,0,0,0,0,0,0,1,2,0,176,98,105,31.6,1,1,125,80,1,13.2,110,211,178,41,134,1.1,30,43,89, +2011,266734,201104,0,0,0,0,0,0,2,2,1,171,75,80,25.6,1.2,1.2,100,60,1,14.7,112,284,423,41,198,1.1,34,60,79, +2011,808467,201111,0,0,0,0,0,0,2,2,1,175,77,89,25.1,1.2,1.2,120,78,1,15.4,107,180,286,34,88,1.1,26,38,58, +2011,946687,201110,,,,,,,3,2,1,157,56,77,22.7,0.7,0.6,117,65,1,13.7,83,195,42,73,113,0.5,29,20,11, +2011,602007,201106,,,,,,,2,3,0,168,59,77,20.9,0.9,0.9,108,68,1,13.6,123,276,86,52,206,1,17,21,42, +2011,680897,201109,0,0,1,0,0,0,2,3,0,161,42,67,16.2,0.8,0.8,130,70,1,14,107,287,110,92,173,0.9,23,36,41, +2011,889412,201111,,,,,,,2,3,1,181,83,88,25.3,1.2,1.2,120,80,1,14.7,85,188,82,53,118,0.8,20,22,34, +2011,107753,201108,,,,,,,2,3,0,185,72,76,21,1,1,120,80,1,15.5,99,233,94,43,171,0.9,24,42,39, +2011,185597,201112,,,,,,,2,3,1,171,80,93,27.4,0.5,0.6,98,76,1,16.1,122,241,94,50,173,1,29,58,60, +2011,652416,201107,,,,,,,2,3,2,179,76,86,23.7,1.5,1.5,110,60,1,16.1,85,183,93,46,118,0.9,25,43,39, +2011,365630,201104,,,,,,,2,3,1,165,76,83,27.9,1,1,100,80,1,15,92,204,105,51,132,1,19,26,20, +2011,105746,201112,0,0,0,0,0,0,3,3,1,164,62,70,23.1,0.9,0.8,119,78,1,15.6,93,123,78,43,64,0.9,22,18,24, +2011,149741,201111,0,0,0,0,0,0,3,3,1,179,75,81,23.4,1.2,1.2,138,86,1,16.2,86,200,107,52,127,1.1,20,26,31, +2011,461601,201106,0,0,0,0,0,0,2,3,1,182,86,86,26,1.5,1.5,110,70,1,15,97,134,85,30,104,1,18,16,15, +2011,447033,201111,0,0,0,0,0,0,2,3,2,169,64,74,22.4,1.2,1,120,80,1,14.7,96,169,84,64,88,1,17,9,22, +2011,532261,201106,0,0,0,0,0,0,2,3,0,170,79,97,27.3,1.5,1.2,130,80,1,14.5,90,198,112,35,141,0.9,25,38,61, +2011,701869,201107,,,,,,,2,3,4,169,61,84,21.4,0.7,0.7,100,75,1,16,95,226,70,54,158,0.7,25,32,45, +2011,836494,201109,0,0,1,0,0,0,2,3,2,153,50,66,21.4,0.9,0.8,118,70,1,13,105,230,106,61,147,0.9,21,11,18, +2011,393421,201112,0,0,0,0,0,0,2,3,2,174,77,84,25.4,1.2,1.5,137,86,1,15.3,115,183,106,53,109,1,27,29,44, +2011,909278,201112,0,0,0,0,0,0,3,3,2,173,72,79,24.1,1.2,1.5,118,52,1,14.9,91,157,81,59,81,1.1,37,53,84, +2011,51442,201111,,,,,,,2,3,0,172,58,67,19.6,1,1,110,70,1,17.1,83,167,64,52,102,0.9,18,12,21, +2011,114537,201104,0,0,0,0,0,0,2,3,2,172,64,76,21.6,1,1.2,133,86,1,16.1,79,246,133,80,139,1.5,31,38,50, +2011,145918,201108,,,,,,,2,3,5,169,61,79,21.4,1.2,1.2,136,76,1,13.8,70,199,160,41,126,1.2,26,19,53, +2011,486441,201110,0,0,1,0,0,0,1,3,4,174,84,82,27.7,0.8,0.8,152,102,1,15.5,89,120,147,38,52,0.9,55,77,98, +2011,243053,201106,0,0,1,0,0,0,3,3,5,171,71,90,24.3,0.8,0.5,111,78,1,15.4,102,227,138,60,139,1,27,22,54, +2011,367481,201106,0,0,0,0,0,0,2,3,0,173,74,90,24.7,1.5,0.9,120,80,1,15.2,86,215,149,68,117,1.2,32,41,41, +2011,115809,201109,0,0,0,0,0,0,3,3,1,188,114,104,32.3,0.7,1,139,83,1,14.9,86,189,151,46,113,0.9,31,20,36, +2011,688302,201104,,,,,,,2,3,1,163,65,79,24.5,1.2,0.7,111,69,1,15.5,95,208,152,48,130,1.1,23,21,30, +2011,915731,201109,0,0,0,0,0,0,2,3,2,170,67,86,23.2,1.5,1,105,70,1,16.3,115,197,169,46,118,1.2,23,25,81, +2011,440295,201108,0,0,0,0,0,0,3,3,1,177,83,91,26.5,1.5,1.5,99,54,1,16.1,88,194,171,47,112,1.1,27,43,78, +2011,335484,201107,0,0,0,0,0,0,2,3,2,176,69,74,22.3,1.5,1.5,130,80,1,13.8,72,147,156,46,69,1,17,20,19, +2011,394639,201103,0,0,0,0,0,0,2,3,4,170,71,87,24.6,1,1.2,118,78,1,16.4,148,248,174,51,162,0.7,40,39,196, +2011,995240,201112,,,,,,,3,3,1,174,61,67,20.1,0.9,0.9,110,70,1,14.6,80,219,48,97,112,0.9,21,12,20, +2011,128799,201111,0,0,0,0,0,0,3,3,1,180,73,82,22.5,1.2,1.2,110,70,1,16.3,104,198,195,44,115,1,16,15,20, +2011,884968,201112,0,0,0,0,0,0,3,3,1,172,84,94,28.4,1,0.9,122,83,1,15.2,73,270,193,51,180,1.1,78,87,91, +2011,416133,201110,,,,,,,2,3,2,173,70,84,23.4,1,1,108,75,1,15.5,134,186,194,57,90,0.9,60,92,144, +2011,84322,201104,0,0,0,0,0,0,2,3,3,180,78,85,24.1,0.8,0.8,130,85,1,16.3,106,177,309,46,69,0.9,24,21,25, +2011,830306,201111,0,0,0,0,0,0,2,3,3,176,67,78,21.6,1.2,1.5,134,71,1,15.5,66,131,34,78,46,0.8,40,25,22, +2011,889062,201106,,,,,,,3,3,1,161,66,85,25.5,0.9,1.5,125,80,1,16.3,88,249,359,52,125,0.9,18,21,33, +2011,432825,201112,,,,,,,2,3,5,167,73,105,26.2,1.2,1.5,157,101,1,13.9,114,154,216,48,62,1,21,27,28, +2011,660791,201103,0,0,0,0,0,0,2,3,0,177,58,78,18.5,1,0.8,120,65,1,13.9,93,189,36,59,123,0.7,20,24,21, +2011,793962,201109,0,0,0,0,0,0,2,3,1,178,86,89,27.1,0.8,1.2,113,67,1,16,97,168,599,30,64,0.9,18,16,21, +2011,914480,201110,0,0,0,0,0,0,3,3,1,165,49,70,18,1,1,100,70,1,13.7,106,162,35,58,97,1,22,17,29, +2011,835408,201112,0,0,0,0,0,0,2,3,4,170,76,92,26.3,1.2,1.2,130,70,1,16.2,98,204,221,35,125,1.1,17,13,17, +2011,126561,201112,,,,,,,2,3,0,182,106,100,32,1.2,1.2,127,77,1,15.6,122,212,526,37,,1.2,43,106,68, +2011,798472,201111,0,0,0,0,0,0,2,3,0,162,60,77,22.9,1.5,1.5,125,75,1,14.6,96,248,391,34,136,1,40,56,73, +2011,908152,201109,0,0,0,0,0,0,2,3,1,172,86,98,29.1,1.2,1.2,120,80,1,17,103,195,312,42,90,1,30,51,74, +2011,670343,201105,,,,,,,2,3,2,173,71,82,23.7,2,1.5,130,70,1,14.3,95,199,221,37,117,1.1,22,12,62, +2011,550255,201104,0,0,0,0,0,0,2,3,1,184,94,94,27.8,0.9,0.7,140,100,1,16,100,277,285,51,188,1.1,16,8,58, +2011,720080,201110,,,,,,,2,3,1,163,69,85,26,1,0.9,134,85,1,12.8,86,274,262,54,167,1,51,98,111, +2011,921924,201112,,,,,,,3,3,1,182,112,106,33.8,2,1.5,130,80,1,15.7,121,185,255,55,79,1.2,42,77,98, +2012,84427,201210,,,,,,,2,1,0,145,46,68,21.9,0.7,0.6,120,80,1,13.2,86,240,190,70,132,0.6,21,27,18,111 +2012,102141,201205,,,,,,,2,1,0,159,51,67,20.2,1,1.2,129,80,1,14.5,88,198,68,65,119,0.6,19,15,23,114 +2012,306589,201212,0,0,0,0,0,0,2,1,0,163,63,76,23.7,1,0.9,123,80,1,12.8,107,188,180,47,104,0.9,24,24,25,69 +2012,330466,201208,0,0,0,0,0,1,2,1,0,159,65,87,25.7,0.9,1,118,81,1,12.3,89,181,73,45,121,0.7,20,17,17,94 +2012,626896,201211,,,,1,,,2,1,0,147,53,84,24.5,0.6,0.9,118,66,1,13.2,89,173,79,54,103,0.8,32,26,19,76 +2012,725112,201201,,,1,,,,2,1,0,151,45,65,19.7,0.3,0.1,112,70,1,12.7,99,199,76,53,130,0.9,23,14,23,60 +2012,183321,201207,,,,,,,2,1,0,153,52,72,22.2,1,1.2,101,77,1,13.8,87,229,157,65,132,0.9,30,30,24,70 +2012,720544,201207,,,,,,,2,1,0,172,81,93,27.4,1,1,108,71,1,16.2,99,176,122,38,113,1,23,16,25,83 +2012,46233,201205,1,0,0,0,0,0,2,1,0,140,46,79,23.5,0.4,0.4,94,60,1,13,99,239,134,65,147,0.5,25,28,30,119 +2012,776098,201205,0,0,0,0,0,0,2,1,0,176,78,87,25.2,1.2,1,116,86,1,17.3,110,213,79,64,133,1,17,19,32,91 +2012,550255,201205,0,0,0,0,0,0,2,1,0,183,95,92,28.4,0.5,0.5,140,90,1,15.1,84,235,165,41,157,1,19,8,47,87 +2012,97785,201211,,,,,,,2,1,0,158,78,78,31.2,1.5,1.5,126,89,1,12.5,91,196,121,44,127,0.6,26,22,41,116 +2012,300860,201202,,,,,,,2,1,0,161,62,82,23.9,0.8,1.2,130,90,1,15.7,114,252,164,77,142,1.2,26,23,164,66 +2012,483693,201206,0,0,0,0,0,0,3,1,0,158,54,63,21.6,1.2,1.2,98,66,1,13,72,199,31,64,129,0.8,20,15,14,94 +2012,716732,201207,0,0,0,0,0,0,3,1,0,174,55,63,18.2,0.3,0.2,120,80,1,16.5,113,161,58,73,76,1,15,11,14,92 +2012,487160,201208,,,,,,,3,1,0,159,53,72,21,1.2,1.5,91,52,1,12.5,88,156,50,62,84,0.9,18,14,14,73 +2012,985972,201212,0,0,0,0,0,0,3,1,0,161,53,62,20.4,1,1.2,100,70,1,12.5,86,188,89,73,97,0.9,15,9,10,76 +2012,219397,201211,0,0,1,0,0,0,3,1,0,146,49,81,23,1.2,1.2,148,82,1,12.7,100,185,98,46,142,0.6,23,16,18,109 +2012,259727,201203,,,1,,,,3,1,0,168,81,100,28.7,1.2,0.5,130,70,1,16.2,104,199,110,49,128,1,20,15,56,78 +2012,322147,201208,,,,,,,3,1,0,151,61,84,26.8,0.7,0.7,140,80,1,13,110,200,142,79,92,0.9,16,15,62,66 +2012,36714,201212,,,1,1,,,3,1,0,156,61,75,25.1,0.8,0.5,131,70,1,12.6,176,160,129,56,78,0.8,30,45,29,76 +2012,849556,201205,0,0,0,0,0,0,3,1,0,170,49,64,17,0.8,1.2,117,78,1,13.2,86,129,49,57,62,0.8,20,12,14,76 +2012,814279,201210,0,0,0,0,0,0,3,1,0,166,74,84,26.9,1,1,127,86,1,14.3,90,145,72,39,92,1.1,19,15,12,59 +2012,125422,201212,,,1,,,,2,1,0,160,67,81,26.2,0.7,0.6,120,80,1,14.4,95,164,287,42,64,0.9,24,25,14,66 +2012,699142,201210,,,,,,,2,1,0,162,50,67,19.1,1.5,1.5,96,56,1,12.9,83,150,95,58,73,0.6,29,28,14,106 +2012,979151,201205,0,0,1,0,0,0,2,1,0,149,56,88,25.2,0.5,0.6,120,70,1,13.4,107,261,164,57,171,0.5,18,15,16,123 +2012,45461,201206,,,,,,,2,1,0,150,39,65,17.3,1.2,1,121,77,1,12.6,90,228,127,51,152,0.9,21,11,15,66 +2012,741504,201212,0,0,0,0,0,0,2,1,0,169,61,78,21.4,1,0.9,125,68,1,12.5,104,173,84,73,83,0.7,23,22,19,95 +2012,480668,201212,0,0,0,0,0,0,2,1,0,155,62,83,25.8,0.8,0.9,100,50,1,11.7,92,208,163,62,113,0.6,16,6,18,114 +2012,377375,201202,0,0,0,0,0,0,2,1,0,163,53,69,19.9,1.2,1.5,104,72,1,13.7,90,177,41,68,101,0.7,19,22,18,97 +2012,444042,201211,,,1,,,,2,1,0,167,61,93,21.9,0.7,0.8,131,67,1,12.5,114,198,99,68,110,1.1,16,14,21,69 +2012,900114,201211,0,0,0,0,0,0,2,1,0,161,58,72,22.4,1.2,1.2,119,73,1,12.6,105,224,110,67,135,0.8,16,14,9,84 +2012,393830,201204,,,1,,,,2,1,0,160,56,76,21.9,0.6,0.6,122,80,1,12.4,79,136,77,49,71,0.8,29,36,26,100 +2012,693283,201202,0,0,0,0,0,0,2,1,0,158,71,94,28.4,0.5,0.6,130,82,1,12.9,128,254,117,43,176,0.5,30,47,26,132 +2012,376332,201202,,,,,,,2,1,0,156,62,81,25.5,1,0.9,150,90,1,14.7,106,247,175,54,158,0.5,20,18,26,131 +2012,245849,201204,,,,,,,2,1,0,163,85,98,32,1,1.2,148,103,1,15.6,100,202,82,37,148,1,36,47,26,83 +2012,196293,201211,,,1,1,,,2,1,0,149,64,90,28.8,0.5,0.5,123,84,1,14.5,164,229,215,47,139,0.6,24,35,29,101 +2012,892360,201212,,,,,,,2,1,0,157,61,73,24.7,0.5,0.5,140,70,1,14.7,93,176,40,80,88,0.7,24,16,32,96 +2012,797920,201210,0,0,1,0,0,0,2,1,0,157,69,84,28,1.2,0.8,110,70,1,13,98,209,94,50,140,0.7,29,27,71, +2012,314169,201207,0,0,1,0,0,0,3,1,0,164,70,86,26,1,0.2,122,78,1,15.6,88,239,77,54,169,1.1,27,32,40,69 +2012,964637,201209,0,0,0,0,0,0,2,1,0,154,65,82,27.4,1.2,0.9,140,90,1,13.5,128,200,169,36,130,0.9,18,39,41,69 +2012,491031,201206,0,0,0,0,0,0,1,1,0,155,52,67,21.6,2,1.5,118,77,1,13.1,76,180,36,68,105,0.8,21,14,14,84 +2012,326432,201212,0,0,0,0,0,0,2,1,0,160,60,71,23.4,0.8,0.8,90,60,1,12.7,112,219,118,56,139,0.8,23,14,10,87 +2012,560878,201208,,1,,,,,2,1,0,145,59,85,28.1,0.9,0.9,137,82,1,12.3,70,270,113,66,181,0.7,18,17,15,92 +2012,559420,201204,,,,,,,2,1,0,153,55,78,23.5,0.7,0.5,135,85,1,12,94,241,437,34,97,0.8,30,26,21,80 +2012,437139,201211,0,1,1,0,0,0,3,1,0,158,68,88,27.2,1.2,1.2,110,65,1,13.3,91,154,70,55,85,0.6,31,25,8,108 +2012,554585,201205,0,0,0,0,0,0,2,1,0,162,64,83,24.4,1,1.2,98,70,1,9.4,91,221,92,52,151,0.8,20,12,23,80 +2012,592434,201206,,,,,,,3,1,0,170,62,70,21.5,1,0.8,110,80,1,16.4,85,205,68,55,136,1.1,21,30,26,76 +2012,752655,201201,,,,,,,2,1,0,167,73,90,26.2,9.9,1,120,80,1,14.5,86,204,57,66,126,0.8,20,22,28,73 +2012,859599,201204,0,0,0,0,0,0,2,1,0,156,61,68,25.1,1,1.2,118,70,1,12.9,94,175,50,64,101,0.7,19,17,14,93 +2012,750632,201211,0,0,0,0,0,0,2,1,0,164,64,82,23.8,1,1.2,115,77,1,14.5,108,187,46,78,99,0.7,22,11,15,123 +2012,839037,201212,,,,,,,3,1,0,174,78,84,25.8,0.8,0.9,130,80,1,12.4,77,235,88,55,162,0.8,14,11,15,84 +2012,792082,201203,,,1,,,,1,1,0,156,71,86,29.2,1,1.2,120,70,1,12.3,84,203,99,49,134,0.8,22,13,12,80 +2012,204278,201203,,,,,,,2,1,0,158,56,73,22.4,0.5,0.4,101,68,1,12.5,78,147,66,44,89,0.7,23,12,12,92 +2012,96484,201206,,,,,,,2,1,0,151,60,75,26.3,0.7,1.2,112,72,1,10.6,96,223,45,76,138,0.9,19,12,16,71 +2012,676313,201210,,,,,,,2,1,0,162,47,58,17.9,1,1,110,70,1,13.4,88,128,36,51,69,0.8,18,16,10,87 +2012,606303,201202,0,0,0,0,0,0,2,1,0,160,57,78,22.3,1.5,1.5,120,80,1,12,96,211,50,54,147,0.8,20,16,17,78 +2012,60216,201204,0,0,0,0,0,0,2,1,0,165,55,77,20.2,0.9,1.5,100,60,1,12.2,83,163,89,61,84,0.9,19,9,10,69 +2012,145424,201205,0,0,1,0,0,0,2,1,0,166,82,92,29.8,1.5,1.2,150,100,1,14.4,91,164,64,43,107,1,17,30,21,82 +2012,4263,201209,0,0,0,0,0,0,2,1,0,175,65,76,21.2,1.5,1.5,110,75,1,13.4,87,242,41,86,147,1,20,14,21,87 +2012,27226,201204,0,0,0,0,0,0,2,1,0,148,59,77,26.9,1,1,110,70,1,13.3,97,197,56,57,129,0.7,17,12,20,91 +2012,752067,201206,0,0,0,0,0,0,2,1,0,166,70,81,25.4,0.8,0.8,96,68,1,14.4,94,166,64,35,118,0.9,19,9,21,100 +2012,734700,201212,,,,,,,3,1,0,158,65,87,26,0.9,0.5,118,82,1,12.5,92,159,37,70,81,0.9,23,16,9,67 +2012,27490,201210,0,0,1,0,0,0,2,1,0,169,64,80,22.4,0.7,0.8,160,90,1,16.1,118,175,108,42,111,0.8,23,22,26,103 +2012,123714,201203,0,0,0,0,0,0,3,1,0,168,63,77,22.3,1.2,1,110,80,1,15.4,108,224,119,51,149,1.1,29,25,27,66 +2012,793017,201206,,,,,,,2,1,0,156,53,70,21.8,1.2,1,113,78,1,12.2,101,216,77,57,143,0.8,21,21,29,80 +2012,391933,201204,0,0,0,0,0,0,2,1,0,177,86,86,27.5,0.7,0.7,120,80,1,14.2,92,195,61,68,115,1,28,32,34,85 +2012,195513,201206,0,0,1,0,0,0,2,1,0,152,53,77,22.9,0.7,0.7,138,80,1,13,114,195,108,54,119,0.7,23,26,94,91 +2012,720792,201203,,,1,,,,2,1,0,164,60,80,22.3,1.2,0.9,123,72,1,11.1,92,233,48,83,140,0.9,29,24,71,93 +2012,146593,201211,0,0,0,0,0,0,2,1,0,164,61,81,22.7,1,1,125,73,1,13.4,95,274,205,54,179,0.9,18,21,53,69 +2012,781445,201207,,,1,1,,,2,1,0,163,60,84,22.6,0.8,0.7,117,67,2,13.6,97,158,47,48,100,0.9,23,26,18,66 +2012,803990,201209,,,,,,,2,1,0,147,65,87,30.1,0.2,0.5,154,83,3,12.4,100,234,81,77,140,0.7,23,19,46,90 +2012,916515,201211,0,0,0,0,0,0,2,1,0,166,52,71,18.9,1,1,100,66,2,12,99,170,92,63,89,0.7,17,15,14,91 +2012,370738,201206,0,0,0,0,0,0,2,1,0,160,54,75,21.1,0.8,0.8,110,70,1,12.8,75,280,140,55,197,0.9,12,10,14,73 +2012,122296,201206,0,0,0,0,0,0,1,1,7,153,47,65,20.1,0.2,0.2,114,86,1,12.6,86,169,83,63,89,0.9,16,9,14,74 +2012,166015,201212,0,0,0,0,0,0,1,1,0,153,66,81,28.2,1.5,1.5,125,75,1,12.9,83,165,37,60,98,0.8,36,27,14,84 +2012,210270,201209,0,0,1,0,0,0,3,1,0,144,49,86,23.6,0.1,0.1,120,80,1,12.4,105,223,115,46,154,0.9,17,10,13,67 +2012,397613,201204,0,0,0,0,0,0,2,1,0,155,64,86,26.6,0.2,0.3,114,70,1,12.3,93,141,84,59,65,0.8,19,9,13,76 +2012,872410,201204,0,0,0,0,0,0,3,1,0,158,59,71,23.6,1.2,1,106,60,1,12.8,88,161,79,50,95,0.8,18,18,13,84 +2012,517447,201203,0,0,0,0,0,0,2,1,0,151,58,80,25.4,0.5,0.7,104,69,1,13.7,110,258,220,54,160,1.1,31,34,13,53 +2012,492570,201211,0,0,0,0,0,0,2,1,1,162,57,70,21.7,0.3,0.7,100,65,1,13.6,88,188,198,64,84,0.9,15,12,15,82 +2012,948405,201205,0,0,0,0,0,0,2,1,2,163,51,71,19.2,0.1,0.1,96,59,1,11.5,86,148,45,61,78,0.7,12,11,15,93 +2012,874754,201206,,,,,,,2,1,1,159,67,83,26.5,1,0.8,112,70,1,12.3,86,176,206,47,87,0.8,20,15,15,77 +2012,88450,201210,0,0,0,0,0,0,3,1,2,174,72,78,23.8,1,0.8,119,70,1,15.4,106,217,222,48,119,1.1,21,18,15,70 +2012,874943,201206,0,0,0,0,0,0,2,1,1,166,75,85,27.2,1.2,1.2,130,80,1,15.6,95,168,96,47,101,1,20,20,15,96 +2012,868027,201206,,,,,,,2,1,1,148,40,63,18.3,1.5,1.5,110,79,1,13,82,147,54,67,69,0.7,21,12,12,98 +2012,627341,201204,0,0,0,0,0,0,3,1,1,162,41,60,15.6,1.2,1.2,117,79,1,14.7,91,178,43,62,107,0.6,20,15,12,128 +2012,882980,201205,0,0,0,0,0,0,3,1,1,156,52,70,21.4,1,0.9,110,80,1,13.2,102,235,126,88,,0.9,22,14,16,71 +2012,463902,201204,0,0,0,0,0,0,2,1,0,156,60,80,24.7,0.5,0.6,114,76,1,14.2,87,230,212,60,128,0.5,20,14,16,139 +2012,680010,201206,0,0,0,0,0,0,2,1,1,163,55,66,20.7,1.5,1.5,102,62,1,14.1,79,194,45,69,116,1.1,17,13,16,78 +2012,599419,201209,0,0,0,0,0,0,3,1,1,175,75,78,24.5,1.2,1.2,110,80,1,15.7,104,169,149,35,104,1,20,18,16,93 +2012,198350,201212,0,0,0,0,0,0,3,1,1,167,65,84,23.3,1.5,1.2,105,63,1,12.2,90,214,120,41,149,0.8,17,17,16,84 +2012,793962,201209,0,0,0,0,0,0,3,1,1,177,84,88,26.8,1,1.2,120,71,1,15.9,81,211,51,46,154,1.4,19,18,16,59 +2012,334536,201212,,,,,,,2,1,1,161,52,69,20.1,0.6,0.8,110,70,1,14.3,86,183,43,96,78,0.6,16,13,11,123 +2012,570104,201201,0,0,0,0,0,0,2,1,0,163,54,69,20.3,0.8,0.8,110,70,1,12.4,75,146,83,59,88,0.6,17,15,11,103 +2012,585046,201204,,,,,,,2,1,1,159,50,63,19.8,1,0.9,100,70,2,13.1,73,162,50,60,92,0.7,16,14,11,105 +2012,41309,201203,0,0,0,0,0,0,2,1,0,161,51,69,19.7,1,1.2,96,68,1,13.3,94,167,45,64,94,0.7,23,16,11,99 +2012,611137,201207,0,0,1,1,0,0,2,1,0,158,61,81,24.4,0.9,1,130,80,1,13.1,146,270,572,45,143,1.2,19,22,19,49 +2012,777889,201208,0,0,0,0,0,1,2,1,3,155,50,65,20.8,1,0.8,108,79,1,12.8,104,180,72,61,105,0.9,17,10,19,74 +2012,345207,201203,0,0,1,0,0,0,1,1,1,161,61,81,23.5,1.5,1.5,145,90,1,12.7,103,234,91,73,142,0.8,22,19,20,81 +2012,925523,201211,0,0,1,0,0,0,2,1,0,155,62,81,25.8,0.7,0.8,117,62,1,14.2,95,168,41,44,116,0.8,37,36,20,75 +2012,572384,201204,0,0,0,0,0,0,2,1,1,169,51,70,17.9,0.7,0.7,98,60,1,12.2,103,180,67,53,114,0.9,22,17,21,89 +2012,79379,201212,,,1,,,,3,1,1,165,80,94,29.4,0.8,0.7,150,90,1,14.3,89,192,157,52,108,1.1,31,23,21,70 +2012,7386,201204,0,0,1,1,0,0,3,1,2,164,61,81,22.7,0.4,0.7,126,75,1,13.7,184,191,62,54,125,1.1,15,13,22,70 +2012,85219,201203,0,0,0,0,0,0,3,1,1,166,67,82,24.3,1.2,1.2,110,70,1,15.4,96,204,89,45,136,1,24,30,22,88 +2012,975124,201210,0,0,1,0,1,0,3,1,1,148,47,70,21.5,0.4,0.4,113,62,1,11.9,84,197,117,78,96,0.8,27,17,22,75 +2012,2270,201211,0,0,0,0,0,0,2,1,2,161,56,71,21.6,1.2,0.8,113,74,1,14.7,104,191,112,61,108,0.8,20,14,23,84 +2012,347108,201209,,,,,,,2,1,1,178,64,88,20.2,0.9,0.8,120,80,1,15.3,95,225,81,47,161,0.8,23,19,23,111 +2012,606567,201209,,,,,,,2,1,1,149,58,80,26.1,0.8,0.8,130,90,2,12.4,84,232,112,63,146,0.4,19,13,24,168 +2012,99917,201205,0,0,0,0,0,0,3,1,0,160,53,74,20.7,1.2,1,130,80,1,12.8,81,224,54,61,152,0.7,21,12,9,97 +2012,154665,201212,,,,,,,2,1,1,154,49,67,20.7,0.5,0.6,110,70,1,13.4,79,169,90,59,92,0.7,16,11,9,110 +2012,883814,201211,0,0,0,0,0,0,3,1,0,158,57,73,22.8,0.5,0.5,122,80,1,14,89,248,187,60,151,0.6,33,33,27,90 +2012,698594,201211,0,0,0,0,0,0,2,1,0,150,46,70,20.4,1,1.2,113,63,1,13.6,83,243,181,45,162,0.7,24,18,26,90 +2012,532905,201212,,,,,,,3,1,1,172,55,71,18.6,1.2,1.5,125,75,1,15.7,89,167,60,49,106,1.2,24,14,26,67 +2012,686497,201209,0,0,0,0,0,0,3,1,1,177,87,92,27.8,1.5,1.5,128,84,3,14.4,91,209,100,53,136,1.3,27,30,28,67 +2012,262452,201210,,,,,,,2,1,1,160,55,78,21.5,0.9,1.2,114,72,1,13.8,110,185,68,110,61,0.6,36,21,29,115 +2012,432825,201212,,,,,,,2,1,0,169,75,96,26.3,1.5,2,150,90,1,16,107,165,321,36,64,0.8,18,16,30,99 +2012,318399,201209,0,0,0,0,0,0,2,1,0,160,55,74,21.5,1,0.7,135,81,1,17,98,260,168,69,157,0.9,27,24,30,91 +2012,411180,201205,,,,,,,3,1,1,164,58,70,21.6,0.7,0.8,129,88,1,12.7,96,230,94,77,134,0.7,19,15,31,94 +2012,60147,201212,,,,,,,2,1,1,160,53,63,20.7,0.9,0.9,120,70,1,13.7,98,204,70,58,132,0.6,18,26,30,113 +2012,548365,201209,0,0,0,0,0,0,3,1,1,173,69,78,23.1,1.2,1,132,88,1,16.2,97,220,65,65,142,0.8,19,21,32,117 +2012,549602,201203,,,,,,,2,1,1,157,74,83,30,1.2,1,129,70,1,11.7,95,230,125,55,150,0.8,30,25,33,80 +2012,194080,201210,0,0,0,0,1,0,2,1,1,159,61,76,24.1,0.5,0.4,118,78,1,14.4,99,205,109,55,128,0.8,21,43,33,78 +2012,46621,201207,,,,,,,2,1,2,173,82,94,27.4,1.2,0.7,130,80,1,15.4,87,132,247,31,51,1,31,43,36,83 +2012,386280,201210,0,0,0,1,0,0,2,1,1,164,62,80,23.1,1.2,1.2,110,65,1,16,124,249,112,61,166,0.8,17,15,37,101 +2012,828529,201212,,,1,,,,2,1,1,161,64,84,24.7,1.2,1,150,100,1,14.1,110,147,119,44,79,0.8,22,28,40,85 +2012,364892,201211,0,0,1,0,0,0,2,1,1,180,93,99,28.7,0.5,0.7,180,120,2,15.8,100,190,191,61,91,0.9,27,26,41,89 +2012,848190,201210,0,0,0,0,0,0,2,1,0,169,79,94,27.7,1,1,118,66,1,15.1,92,220,94,61,140,0.9,17,18,39,105 +2012,597659,201210,0,0,0,0,0,0,2,1,2,167,63,65,22.6,1.5,1.2,136,79,1,14.6,98,215,117,71,120,0.8,16,14,42,83 +2012,562142,201206,0,0,0,1,0,0,2,1,1,169,72,89,25.2,0.8,0.5,133,79,1,16.6,156,193,169,39,120,0.9,43,48,42,94 +2012,238542,201205,0,0,1,0,0,0,2,1,2,160,77,96,30.1,1,1.5,130,85,1,16.1,98,173,107,51,101,1,20,17,45,82 +2012,315140,201212,0,0,0,0,0,0,2,1,2,176,75,89,24.2,1.2,1,120,80,1,17.1,121,232,118,62,146,1.4,29,28,44,55 +2012,613708,201210,1,0,0,0,0,0,2,1,3,170,65,81,22.5,0.7,0.9,159,101,1,16.4,92,203,244,53,101,1,46,36,44,80 +2012,38967,201210,0,0,0,0,0,0,2,1,0,173,77,82,25.7,1.2,1.2,111,62,1,16,103,221,211,44,160,1,23,22,55,83 +2012,383109,201202,0,0,0,0,0,0,3,1,3,163,61,80,23,0.8,0.7,108,76,1,16.2,82,231,186,53,141,1.3,21,21,53,63 +2012,237719,201207,0,0,0,0,0,0,1,1,3,170,71,83,24.6,1.5,1.5,141,86,1,15.6,114,251,128,52,188,0.9,30,34,60,96 +2012,976635,201211,0,0,1,0,0,0,2,1,3,164,66,84,24.5,0.7,0.8,146,90,1,16.5,104,196,128,52,118,1.1,21,21,61,73 +2012,642807,201210,0,0,0,0,0,0,3,1,1,165,64,71,23.5,0.7,0.6,128,68,1,13.1,104,187,46,60,118,0.9,32,30,65,71 +2012,756414,201211,0,0,0,0,0,0,2,1,0,156,57,77,23.4,1.2,0.9,139,78,1,13.7,106,174,81,42,116,0.8,50,89,62,81 +2012,909438,201204,,,,,,,2,1,0,160,70,90,27.3,0.5,0.6,120,80,1,11.8,86,189,339,34,87,0.8,17,16,63,109 +2012,182208,201203,0,0,0,0,0,0,2,1,2,177,70,86,22.3,0.8,0.9,137,88,1,15.5,95,170,58,58,100,0.8,29,18,74,116 +2012,227244,201211,0,0,0,0,0,0,3,1,2,168,68,83,24.1,1.5,1.5,114,76,1,13.5,95,181,163,64,83,0.6,28,34,98,117 +2012,146621,201209,0,0,0,0,0,0,3,1,0,170,70,86,24.2,1,0.8,108,60,1,16.3,89,203,65,59,131,1.1,28,32,72,71 +2012,498848,201212,0,0,0,0,0,0,2,1,1,170,69,86,23.9,1.2,1.5,120,77,1,17.8,87,201,102,60,119,1.1,34,49,103,81 +2012,311226,201209,0,0,0,0,0,0,1,1,0,175,103,104,33.6,0.4,0.5,140,70,1,12.2,97,191,171,45,111,1,19,23,68,68 +2012,478840,201209,0,0,0,0,0,0,2,1,0,145,45,71,21.4,1.2,1,100,60,1,12.4,93,213,123,68,120,0.5,18,11,73,147 +2012,674034,201212,0,0,0,0,0,0,3,2,1,171,63,74,21.5,0.4,0.5,120,70,1,15,81,153,77,57,80,1.3,20,15,18,64 +2012,242976,201207,,,1,,,,2,2,0,169,65,83,22.8,1.2,1.2,130,80,1,15,97,251,130,46,179,1,31,34,20,79 +2012,412761,201206,,,,,,,2,2,5,172,66,83,22.3,1,1,135,85,1,16.2,90,162,96,49,93,0.9,26,24,22,86 +2012,153851,201209,0,0,0,0,0,0,2,2,0,174,84,86,27.7,0.9,0.2,120,80,1,15.2,83,136,257,35,49,1.2,20,22,22,67 +2012,83553,201206,0,0,0,0,0,0,2,2,2,177,67,84,21.4,1.5,1.5,120,80,1,15.3,89,148,55,56,81,0.9,20,16,22,103 +2012,680897,201207,,,1,,,,2,2,0,160,44,69,17.2,0.8,0.8,120,70,4,13.1,82,251,68,73,164,0.9,24,19,16,89 +2012,6374,201203,,,1,,,,2,2,1,170,70,84,24.2,0.7,0.1,140,80,1,13.2,90,222,108,42,158,0.9,17,11,24,87 +2012,665633,201209,0,0,0,0,0,0,2,2,0,167,77,88,27.6,1.2,1,132,86,1,14.9,83,236,112,32,182,0.9,20,22,25,93 +2012,166324,201205,0,0,0,0,0,0,2,2,0,167,62,79,22.2,1.2,1.2,110,80,1,13.2,84,229,62,47,170,0.7,18,15,27,122 +2012,395781,201206,0,0,0,0,0,0,1,2,0,166,59,72,21.4,1.5,1.5,127,87,1,14,106,248,139,60,160,0.8,19,18,14,106 +2012,56250,201210,0,0,0,0,0,0,2,2,2,172,70,78,23.7,1,1.2,120,80,1,15.7,84,207,140,58,121,0.9,19,21,29,103 +2012,87762,201205,,,,,,,2,2,6,172,82,92,27.7,1.2,1,130,80,1,15.8,87,174,106,61,91,1,35,26,31,81 +2012,301124,201209,0,0,0,0,0,0,2,2,0,162,60,79,22.9,0.7,0.8,110,70,1,15,85,120,126,52,43,0.9,21,15,13,108 +2012,689889,201212,0,0,1,1,0,0,2,2,1,172,73,91,24.7,0.9,0.8,135,85,1,13,75,133,58,53,68,1.1,69,72,36,74 +2012,427754,201205,0,0,0,0,0,0,2,2,1,180,100,99,30.9,1,0.8,150,100,1,15.9,98,240,164,40,167,1.3,23,37,38,61 +2012,637115,201210,0,0,0,0,0,0,2,2,0,165,63,81,23.1,0.5,0.6,140,90,1,15.7,112,212,167,51,128,1,21,21,40,82 +2012,1009573,201203,0,0,0,0,0,1,2,2,1,169,75,87,26.3,1.2,1.2,115,82,1,14.2,97,237,215,38,156,1.2,22,21,43,66 +2012,26776,201202,,,,,,,2,2,4,172,77,98,26,0.4,0.3,127,77,1,15.6,117,192,43,71,112,0.9,19,19,44,94 +2012,84322,201202,0,0,0,0,0,0,2,2,2,179,78,88,24.3,1,0.8,138,79,1,15.8,111,208,131,61,121,1,24,26,48,84 +2012,383603,201212,0,0,0,0,0,1,2,2,3,172,59,68,19.9,1.5,1.5,135,85,1,15.6,94,249,120,77,148,1,27,25,50,87 +2012,422180,201206,,1,1,,,,2,2,1,169,72,90,25.2,0.2,0.3,140,80,1,12.9,126,190,207,48,100,0.9,35,39,57,91 +2012,127519,201211,,,1,,,,2,2,3,167,83,99,29.8,0.6,0.5,138,68,1,16.5,109,210,27,43,161,0.9,49,47,56,90 +2012,970458,201202,0,0,0,0,0,0,2,2,1,160,65,86,25.4,0.7,0.7,128,78,1,15.1,98,189,124,41,123,0.9,46,83,58,92 +2012,808467,201212,0,0,0,0,0,0,2,2,1,175,77,91,25.1,0.8,1.2,121,69,1,14.7,108,185,134,45,113,0.9,28,41,58,94 +2012,230178,201207,,,1,,,,3,2,3,172,83,94,28.1,1.2,1.2,146,90,1,13.2,119,181,218,70,67,1.1,30,33,62,72 +2012,718591,201211,0,0,0,0,0,0,2,2,2,167,60,83,21.5,0.5,0.5,145,76,1,13.9,93,264,138,84,152,0.9,31,28,72,90 +2012,518558,201203,0,0,1,0,0,0,2,2,3,163,74,84,27.9,0.9,1.5,121,78,1,16.1,118,185,518,37,75,1,29,27,77,83 +2012,749074,201212,,,,,,,2,2,2,165,79,90,29,1.5,1.2,120,80,1,15.5,99,180,260,49,79,0.7,30,31,78,130 +2012,999693,201201,0,0,0,0,0,0,2,2,5,166,70,92,25.4,1.2,1.2,115,72,1,14.9,91,248,223,40,163,0.9,32,48,82,95 +2012,606125,201206,0,0,0,1,0,0,2,2,1,172,79,91,26.7,0.7,0.9,135,90,1,14.3,156,191,181,41,113,0.9,39,38,79,90 +2012,720080,201211,0,0,0,0,1,0,3,2,1,163,68,88,25.6,0.9,1,110,70,1,14.5,84,272,251,51,171,1.1,54,109,102,86 +2012,530990,201207,0,0,0,0,0,0,2,2,2,164,61,84,22.7,1.2,1,119,78,1,15.6,110,136,61,70,54,0.8,63,66,113,98 +2012,483546,201208,,,1,1,,,3,2,0,156,50,75,20.5,1,9.9,130,80,1,14.9,123,120,69,56,50,1,33,35,94,73 +2012,179714,201211,,,,,,,2,2,2,163,68,85,25.6,0.7,0.8,132,75,1,17.2,81,263,159,47,184,1,47,46,96,81 +2012,421359,201212,0,0,0,0,0,0,2,2,0,178,89,90,28.1,1.5,1.2,120,89,1,17,122,227,110,88,117,1.3,40,57,119,68 +2012,122776,201208,0,0,0,0,0,0,1,2,2,179,72,83,22.5,1.5,0.8,120,80,1,14.9,113,150,467,33,44,1,22,24,87,82 +2012,1005250,201204,0,0,0,0,0,0,3,3,1,181,72,78,22,1.5,1.5,115,70,1,14,102,171,58,69,,1.2,21,18,19,80 +2012,914480,201210,0,0,0,0,0,0,3,3,1,167,50,68,17.9,1,1,110,70,1,13.8,86,174,97,48,106,0.8,19,13,20,112 +2012,715739,201211,0,0,0,0,0,0,2,3,0,176,81,94,26.1,0.6,0.9,110,70,1,15.6,95,179,103,33,125,0.9,24,27,20, +2012,660791,201206,0,0,0,0,0,0,2,3,0,176,56,74,18.1,1,1,122,82,1,14.4,88,153,45,49,95,0.9,19,15,21,96 +2012,479874,201205,0,0,0,0,0,0,3,3,0,166,62,75,22.5,0.9,1,115,68,1,14.7,95,147,102,37,90,1.1,12,15,20,77 +2012,302816,201210,0,0,0,0,0,0,3,3,0,171,62,72,21.2,1.5,1.5,115,75,1,16.2,92,190,69,52,124,1,24,17,21,87 +2012,149741,201211,0,0,0,0,0,0,3,3,2,180,75,81,23.1,1.5,1.5,138,86,1,16.7,98,197,100,49,128,1.3,22,24,24,66 +2012,835408,201207,,1,,,,1,2,3,4,170,75,95,26,0.9,1,110,70,1,16.1,87,214,133,47,140,1,18,15,24,83 +2012,42231,201206,0,0,0,0,0,0,2,3,2,176,73,79,23.6,0.7,1.2,118,72,1,15.9,79,160,89,45,97,1,19,9,23,85 +2012,149142,201212,0,0,0,0,0,0,2,3,2,151,75,96,32.9,0.6,0.3,116,72,1,12.9,89,215,73,41,159,0.8,17,13,23,77 +2012,326639,201206,,,,,,,3,3,3,157,67,89,27.2,1,1,119,79,1,12.1,103,188,140,57,103,0.9,19,15,23,72 +2012,750776,201208,0,0,0,0,0,0,3,3,0,161,55,63,21.2,0.2,0.4,120,70,1,12.1,75,185,43,71,107,0.7,21,16,25,109 +2012,1010623,201211,0,0,0,0,0,0,3,3,0,171,82,93,28,0.3,0.1,120,70,1,15.7,103,205,297,50,95,1.3,24,20,25,62 +2012,107753,201210,,,,,,,2,3,0,183,71,72,21.2,1.2,1.2,119,75,2,16,73,183,199,36,107,0.8,18,17,25,113 +2012,995240,201212,0,0,0,0,0,0,3,3,1,172,67,75,22.6,0.9,1,130,80,1,14.8,124,234,66,90,130,0.9,31,21,27,99 +2012,830306,201211,0,0,0,0,0,0,2,3,3,177,69,80,22,1,2,132,85,1,15,84,142,101,70,52,0.8,33,22,28,115 +2012,461601,201206,0,0,0,0,0,0,2,3,1,183,91,86,27.2,1.5,1.5,110,70,1,15.6,108,150,96,40,91,0.8,18,24,26,170 +2012,568865,201210,0,0,0,0,0,0,2,3,1,174,65,74,21.5,1.5,1.2,126,78,1,16.5,89,189,100,65,105,1,20,16,28,93 +2012,452930,201212,,,,,,,2,3,3,181,68,79,20.8,0.9,1,133,71,1,13.4,99,169,24,91,73,0.9,30,17,15,111 +2012,929195,201206,,,,,,,2,3,5,180,64,67,19.8,1,1,120,70,1,14.2,103,225,97,87,118,1.2,20,12,15,68 +2012,628127,201206,,,,,,,1,3,6,165,53,64,19.5,0.5,0.5,110,80,1,14,71,157,144,82,46,0.6,19,20,32,128 +2012,182741,201209,0,0,0,0,0,1,2,3,3,177,71,80,22.7,0.9,1,136,88,1,14.6,111,193,336,71,54,1.2,22,58,32,77 +2012,974726,201212,0,0,0,0,0,0,3,3,0,174,79,92,26.1,0.9,0.8,114,82,1,15.4,101,253,190,51,164,0.9,23,53,32,89 +2012,652416,201207,0,0,0,0,0,0,2,3,1,179,78,86,24.3,1.5,1.5,110,70,1,16.3,87,179,209,37,100,0.9,22,36,31,140 +2012,532261,201205,0,0,0,0,0,0,2,3,0,170,80,94,27.7,1.5,1.5,115,80,1,15,116,195,158,33,130,0.9,22,24,33,98 +2012,889412,201210,0,0,0,0,0,0,3,3,1,181,83,83,25.3,1,1.2,137,84,1,15.4,85,205,79,52,137,1.1,22,22,34,89 +2012,107142,201207,0,0,0,0,0,0,3,3,2,182,76,79,22.9,0.4,0.5,119,70,1,16.1,85,196,125,77,94,1,16,11,13,98 +2012,824794,201212,0,0,0,0,0,0,3,3,3,178,73,83,23,0.7,0.6,104,62,1,16.4,92,253,110,48,183,0.9,24,27,36,103 +2012,416462,201212,0,0,0,0,0,0,2,3,2,178,83,89,26.2,0.9,0.8,130,72,1,15,109,215,147,48,138,1.1,28,43,37,83 +2012,798472,201211,0,0,0,0,0,0,2,3,0,162,55,72,21,1.2,1.5,90,60,1,16.4,83,213,214,40,130,1,22,23,36,87 +2012,911766,201209,,,,,,,2,3,1,175,81,91,26.4,0.9,1.2,130,80,1,14.9,89,264,293,45,160,1.2,23,27,37,72 +2012,115809,201209,0,0,0,0,0,0,3,3,1,188,111,107,31.4,0.6,0.9,130,82,1,14.9,93,172,63,49,110,0.9,33,17,38,100 +2012,781532,201211,0,0,1,0,0,0,1,3,2,172,82,86,27.7,0.9,1.2,126,82,2,14.9,106,208,166,39,143,1,21,24,40, +2012,284267,201212,,,,,,,2,3,1,174,73,87,24.1,1.2,1.2,117,70,1,14.2,86,185,107,56,107,1.1,18,10,48,79 +2012,884968,201211,0,0,0,0,0,1,3,3,2,172,86,92,29.1,1.2,1,130,82,1,15.8,103,206,52,49,147,1,20,19,49,86 +2012,365630,201210,,,,,,,2,3,1,165,84,80,30.9,1.2,1.2,110,80,1,15.3,97,267,572,51,125,1,27,29,51,94 +2012,633585,201205,0,0,0,1,0,0,2,3,1,162,78,98,29.7,1,0.8,137,89,1,16.1,113,205,265,49,103,1.2,24,16,49,69 +2012,102206,201212,,,1,,,,3,3,3,163,64,86,24.1,1,0.8,130,90,1,15.4,101,186,50,71,105,0.9,110,45,52,92 +2012,817595,201211,0,0,0,0,0,0,3,3,3,161,60,79,23.1,1,1,125,70,1,16.5,113,245,260,59,134,1,19,29,54,82 +2012,915731,201210,0,0,0,0,0,0,2,3,3,170,67,80,23.2,1.5,1.5,115,80,1,16.4,105,171,70,56,101,1.1,24,24,59,81 +2012,218649,201207,0,0,0,0,0,0,3,3,3,170,68,85,23.5,1.5,1.5,130,85,1,15.8,91,233,168,49,150,0.9,21,32,66,101 +2012,582044,201210,0,0,0,0,0,0,3,3,2,158,69,90,27.6,1.2,1.2,132,98,1,16.1,84,166,193,48,79,0.8,36,49,69,137 +2012,126561,201210,0,0,0,0,0,0,2,3,1,183,103,108,30.8,1.2,1.2,139,89,1,16.6,83,175,264,44,78,0.9,40,74,68,98 +2012,197894,201202,,,,,,,2,3,2,161,58,84,22.4,1,1,120,80,1,17.3,91,157,151,46,80,1,34,29,70,80 +2012,266734,201204,,,,,,,1,3,1,170,78,90,27,1,1,134,86,1,15.5,93,300,287,50,192,1.1,40,65,85,77 +2012,525200,201210,0,0,1,0,0,0,2,3,2,159,49,75,19.4,0.7,0.3,120,70,1,12.6,106,206,102,62,123,0.9,26,22,100,90 +2012,942204,201209,0,0,0,0,0,0,2,3,7,176,86,91,27.8,1,1.5,128,76,1,16.4,94,179,158,47,100,0.9,48,48,95,98 +2012,913340,201210,,,,,,,2,3,1,162,56,78,21.3,0.8,0.7,139,79,1,16.6,81,233,205,78,114,0.9,56,30,103,94 +2012,161624,201210,0,0,1,0,0,0,2,3,2,166,60,80,21.8,1.2,1,120,80,1,16.1,104,187,299,67,60,0.8,32,30,149,109 +2012,670343,201207,0,0,0,0,0,0,2,3,4,172,69,89,23.3,1.2,1.2,138,89,1,16.5,110,188,186,54,97,1,29,25,145,83 +2012,416133,201207,,,,,,,2,3,2,173,69,87,23.1,1,0.9,119,81,1,15.4,95,202,130,54,122,0.9,62,148,213,96 +2012,637160,201209,0,0,0,0,0,0,3,3,3,175,95,101,31,0.9,0.7,115,69,1,15.4,100,214,412,53,127,1.5,58,70,97,53 +2013,487160,201309,,,,,,,2,1,0,159,52,73,20.6,1.5,2,97,59,1,12,86,181,38,53,120,0.8,15,7,14,84 +2013,347907,201304,,,1,,,,2,1,0,159,62,87,24.5,1.2,1.2,118,82,1,13.6,82,146,183,50,59,0.8,23,34,16,78 +2013,775244,201312,0,0,0,0,0,0,2,1,0,158,73,93,29.2,0.8,1,104,72,1,13.3,86,181,112,38,120,0.8,30,48,21,80 +2013,468010,201312,0,0,0,0,0,0,2,1,0,165,58,76,21.3,1.2,1,113,82,1,13.9,102,161,38,54,99,0.8,15,13,15,91 +2013,839897,201311,0,0,1,0,0,0,2,1,0,149,51,79,23,1.2,1,132,82,1,12.6,83,170,149,44,96,0.8,30,32,22,80 +2013,797920,201311,,,1,,,,2,1,0,156,69,92,28.4,1.2,0.9,130,80,1,12.3,85,214,126,56,132,0.8,26,21,55,77 +2013,778228,201309,0,0,0,0,0,0,2,1,0,170,74,83,25.6,1,0.9,137,83,1,12.7,90,192,78,64,112,0.7,20,13,13,122 +2013,814279,201310,,,,,,,2,1,0,166,74,87,26.9,1.2,1.5,125,70,1,14.1,90,177,85,39,121,1,29,18,13,65 +2013,720792,201303,,,1,,,,3,1,0,164,58,74,21.6,1,1,126,83,1,11.7,90,208,84,60,131,0.6,22,15,65,148 +2013,375694,201308,0,0,1,1,0,0,2,1,0,150,69,94,30.7,0.7,1,109,73,1,12.2,103,171,82,61,94,0.7,16,15,11,84 +2013,279031,201309,0,0,0,0,0,0,2,1,0,158,71,88,28.4,1,0.7,122,79,1,11.7,98,158,81,69,72,0.6,19,22,14,112 +2013,875758,201312,,,,,,,2,1,0,152,50,76,21.6,1.5,1.5,134,72,1,12.2,106,190,71,65,110,0.5,22,17,15,139 +2013,335520,201312,0,0,0,0,0,0,2,1,0,153,57,73,24.3,0.3,0.3,118,76,1,12.7,89,162,86,56,89,0.7,18,25,10,87 +2013,9866,201311,,,,,,,2,1,0,158,81,89,32.4,0.5,0.3,110,64,1,12.5,93,140,86,54,68,0.5,19,22,32,136 +2013,760226,201310,0,0,0,0,0,0,2,1,0,162,53,80,20.2,0.8,0.8,99,71,1,12.5,103,165,71,60,91,0.9,16,7,11,75 +2013,860440,201304,0,0,0,0,0,0,2,1,0,153,47,64,20.1,1.2,1,113,68,1,13.3,91,208,68,71,123,0.7,16,17,11,93 +2013,538038,201305,0,0,0,0,0,0,2,1,0,167,62,73,22.2,0.6,0.8,125,70,1,12.2,96,180,91,57,104,1.2,22,15,24,79 +2013,391933,201304,0,0,0,0,0,0,2,1,0,178,83,89,26.2,0.5,0.7,130,80,1,13.9,70,174,88,66,90,1.1,27,29,34,75 +2013,814600,201311,,,1,,,,2,1,0,159,66,92,26.1,0.8,1,140,80,1,13.9,92,123,100,41,62,1.1,24,16,20,68 +2013,948365,201302,,,,1,,,3,1,0,147,56,88,25.9,0.3,0.3,119,75,1,14.4,174,83,95,31,33,1,51,53,39,53 +2013,326432,201311,0,0,0,0,0,0,2,1,0,160,58,71,22.7,1,1,110,70,1,13,111,241,105,54,166,0.9,18,13,9,75 +2013,562142,201304,,,1,1,,,2,1,0,168,70,84,24.8,1.2,1,107,66,1,16,211,106,111,31,52,1,32,53,42,83 +2013,663811,201305,0,0,0,0,0,0,2,1,0,148,53,72,24.2,1.5,1.2,120,70,1,12.5,113,213,111,67,123,0.5,72,49,39,136 +2013,917270,201305,,,1,1,,,2,1,0,150,56,74,24.9,0.2,0.6,117,61,1,12.3,108,168,126,46,96,0.9,15,10,9,65 +2013,827174,201312,0,0,0,0,0,0,2,1,0,169,63,78,22.1,1.5,1.5,120,80,1,13.8,79,221,120,49,148,0.9,18,13,21,105 +2013,559370,201311,0,0,0,0,0,0,3,1,0,154,53,70,22.3,0.8,0.8,98,65,1,12.2,86,225,45,87,129,0.9,20,12,18,71 +2013,478840,201310,0,0,0,0,0,0,3,1,0,146,45,74,21.1,1,1.2,120,80,1,12.5,98,197,136,65,105,0.5,21,13,66,146 +2013,79250,201305,0,0,0,0,0,0,2,1,0,139,43,69,22.3,0.1,0.5,164,90,1,12.7,105,193,143,62,101,0.6,22,11,13,105 +2013,219397,201310,0,0,1,0,0,0,3,1,0,146,49,83,23,1.2,1.2,150,80,1,12.3,114,144,143,33,95,0.6,19,15,24,109 +2013,299704,201303,0,0,0,0,0,0,2,1,0,156,75,94,30.8,0.8,0.8,110,70,1,12.2,95,237,177,79,122,0.7,17,23,19,93 +2013,694083,201312,0,0,1,0,0,0,2,1,0,154,64,93,27,0.2,0.3,132,69,1,13.2,96,177,165,36,107,0.9,24,18,12,65 +2013,611279,201304,0,0,0,0,0,0,2,1,0,159,77,79,30.5,1.2,0.8,160,100,1,12.8,82,168,182,31,101,0.7,19,24,20,93 +2013,118108,201312,0,0,0,0,0,0,2,1,0,158,61,75,24.4,0.8,1,122,85,1,12.8,76,275,194,42,194,0.9,19,30,23,68 +2013,68379,201312,0,0,0,0,0,0,3,1,0,162,72,93,27.4,0.6,0.5,109,64,1,12.3,82,187,221,66,77,0.7,15,14,9,103 +2013,676313,201311,,,,,,,2,1,0,162,46,61,17.5,1,1.2,100,70,1,14,75,133,138,52,53,0.7,14,10,12,101 +2013,332997,201301,,,,,,,2,1,0,164,64,85,23.8,0.8,0.6,120,80,1,12.4,89,167,82,55,95,0.7,19,12,14,92 +2013,181909,201311,0,0,1,0,0,0,3,1,0,150,70,89,31.1,0.8,0.8,110,70,1,11.5,98,218,104,78,119,0.8,18,13,10,72 +2013,418334,201305,,,,,,,2,1,0,148,38,60,17.3,0.7,1,102,60,1,11.5,90,259,78,74,169,0.7,38,37,10,96 +2013,698245,201310,0,0,0,0,0,0,3,1,0,164,53,85,19.7,0.8,0.8,110,70,1,10.6,81,184,86,67,99,0.5,37,28,17,147 +2013,497301,201304,0,0,1,0,0,0,2,1,0,143,37,71,18.1,0.4,1.2,130,70,1,11.7,108,181,74,92,74,0.9,21,11,18,63 +2013,266165,201303,,,1,,,,1,1,0,156,59,86,24.2,0.3,1.2,138,76,1,12.6,83,202,134,46,129,0.9,21,25,20,68 +2013,802213,201309,,,,,,,2,1,0,157,51,74,20.7,1.5,1,137,80,1,10.6,79,170,72,49,106,0.7,17,9,9,94 +2013,376332,201303,0,0,0,0,0,0,2,1,0,155,60,95,25,1.2,0.6,139,86,1,14.1,105,212,69,55,143,0.5,20,22,24,134 +2013,572384,201305,0,0,0,0,0,0,2,1,0,171,53,70,18.1,0.6,0.7,84,54,1,12.7,103,177,89,48,111,0.8,25,18,24,102 +2013,224527,201305,0,0,0,0,0,0,2,1,0,158,49,61,19.6,1,1.5,110,60,1,9.2,87,113,76,47,51,0.7,15,16,34,97 +2013,463902,201309,,,,,,,2,1,0,157,58,74,23.5,1,1,110,70,1,13.4,88,210,250,60,100,0.8,20,20,36,81 +2013,318669,201307,,,,1,,,2,1,0,156,62,84,25.5,1,1,93,53,1,13.1,95,198,79,59,123,0.8,17,17,16,79 +2013,211452,201310,,,,,,,2,1,0,169,47,66,16.5,1.2,1,120,80,1,14,85,203,81,80,106,0.8,29,33,25,77 +2013,277202,201312,,,,,,,2,1,0,160,69,84,27,0.9,0.9,117,93,1,13.2,88,163,76,57,90,0.7,24,21,10,94 +2013,699907,201311,0,0,1,0,0,0,2,1,0,174,63,77,20.8,0.4,0.5,110,80,1,13.8,96,162,71,66,81,0.8,25,10,17,98 +2013,674294,201310,,,,1,,,2,1,0,153,65,86,27.8,0.9,1.2,110,70,1,14.4,290,202,86,79,105,0.7,35,55,61,86 +2013,215084,201312,,,,,,,2,1,0,161,53,70,20.4,1.2,1.5,99,68,1,11,110,167,55,63,93,0.9,25,17,14,71 +2013,183321,201303,,,,,,,2,1,0,153,51,71,21.8,0.9,1.5,105,85,1,13.9,85,181,95,68,94,0.9,17,21,17,69 +2013,199298,201312,,,,,,,1,1,0,157,49,69,19.9,1.2,1,138,72,1,12.7,96,170,56,61,97,0.7,22,19,15,97 +2013,657227,201309,0,0,0,0,0,0,2,1,0,169,66,78,23.1,1.2,1,110,70,1,11.4,84,175,100,49,106,0.6,18,9,35,117 +2013,430621,201307,,,,,,,2,1,0,154,59,80,24.9,0.5,0.7,130,74,1,12.6,91,202,49,56,136,0.8,27,20,17,77 +2013,120410,201310,0,0,0,0,0,0,3,1,0,163,73,87,27.5,1.2,0.8,118,70,1,15.3,99,204,107,42,141,1,24,31,32,84 +2013,225956,201312,,,,,,,2,1,0,164,56,85,20.8,0.8,0.5,120,60,1,14.5,103,232,139,56,148,0.8,27,10,17,100 +2013,136945,201312,,,,,,,2,1,0,169,58,70,20.3,1,1,130,80,1,9.6,97,164,37,54,102,0.8,19,12,15,83 +2013,584556,201312,0,0,0,0,0,0,2,1,0,153,64,80,27.3,0.8,0.8,113,64,1,13.6,102,196,38,59,129,0.8,16,18,13,79 +2013,782896,201303,0,0,0,0,0,0,2,1,0,159,63,75,24.9,1,1,108,64,1,14.3,95,238,156,61,145,0.6,21,19,15,110 +2013,160611,201312,,,1,,,,2,1,0,152,59,81,25.5,0.7,0.7,138,86,1,14.4,95,170,175,40,95,0.8,31,35,18,76 +2013,688532,201311,,,,,,,3,1,0,155,52,74,21.6,0.9,1.2,106,72,1,12.7,97,164,44,41,114,0.6,31,33,19,102 +2013,554585,201305,0,0,0,0,0,0,2,1,0,162,64,75,24.4,1,1.2,110,70,1,11.8,87,199,125,49,125,0.8,24,15,23,80 +2013,793962,201309,0,0,0,0,1,0,2,1,0,178,88,98,27.8,1,0.8,122,86,1,16.6,91,176,349,29,77,1.1,17,14,20,73 +2013,306589,201310,0,0,0,0,0,0,2,1,0,163,64,80,24.1,0.9,0.6,129,73,1,12.8,137,205,165,59,113,0.7,20,19,23,90 +2013,27490,201310,0,0,1,0,0,0,2,1,0,170,64,83,22.1,0.8,0.8,160,90,1,16.1,108,158,161,38,87,0.9,26,21,27,89 +2013,242807,201311,0,0,0,0,0,0,2,1,0,162,57,70,21.7,0.5,0.5,125,83,1,13.5,91,205,200,51,114,0.8,20,12,10,79 +2013,701404,201310,0,0,0,0,0,0,3,1,0,155,64,76,26.6,0.8,0.9,115,74,1,12.1,88,143,136,53,62,0.7,29,24,9,91 +2013,877959,201312,,,,,,,3,1,0,156,49,71,20.1,0.7,0.8,103,69,1,13.9,82,236,123,80,131,0.7,17,11,9,88 +2013,422663,201312,,,,,,,2,1,0,158,60,82,24,1,0.8,115,81,1,13.5,108,238,194,48,151,1,21,24,34,62 +2013,354989,201312,,,,,,,2,1,0,155,74,99,30.8,0.9,0.6,150,100,1,13.9,105,203,257,43,108,0.6,40,45,32,110 +2013,897251,201312,,,,,,,2,1,0,154,51,62,21.5,0.4,0.2,117,69,3,12.8,88,163,55,50,102,0.9,17,11,10,77 +2013,831349,201304,0,0,0,0,0,0,2,1,0,164,69,87,25.7,0.6,1,129,76,2,15,103,218,89,57,143,0.7,32,43,16,123 +2013,874800,201303,0,0,1,1,0,0,2,1,0,168,70,89,24.8,0.2,0.1,130,80,,15.2,193,185,109,40,123,1.1,23,19,17,71 +2013,126173,201312,0,1,1,0,0,0,3,1,0,165,65,90,23.9,0.5,0.5,130,85,4,14,139,169,96,59,90,1.1,25,20,33,65 +2013,611137,201306,0,0,1,1,0,0,2,1,1,159,60,78,23.7,0.7,0.9,116,74,1,12.2,182,225,229,58,121,0.9,16,12,15,68 +2013,554112,201302,,,,,,,3,1,1,160,55,74,21.5,1,1,110,70,1,12.6,80,189,59,70,107,0.9,14,9,18,80 +2013,4263,201310,0,0,0,0,0,0,2,1,0,174,64,75,21.1,1.5,1.5,105,60,1,13.1,86,212,64,71,128,0.9,18,12,17,92 +2013,727245,201312,0,0,0,0,0,0,2,1,1,161,47,66,18.1,0.2,0.5,108,67,,15.4,83,161,75,47,99,0.7,17,17,31,107 +2013,483473,201305,,,1,,,,3,1,3,164,57,76,21.2,0.9,1,135,78,1,11.5,97,173,68,65,94,1,29,27,65,76 +2013,492570,201305,0,0,0,0,0,0,2,1,1,164,57,70,21.2,0.8,0.9,100,50,1,13.4,80,172,69,62,96,0.8,26,19,21,94 +2013,586305,201304,0,0,0,0,0,0,2,1,2,174,73,83,24.1,1.5,1,126,68,1,16,91,227,69,85,128,1.1,18,13,25,84 +2013,692726,201305,,,,,,1,3,1,2,166,56,79,20.3,1.5,1.5,120,80,1,12.7,90,133,69,48,71,0.9,30,19,18,91 +2013,99917,201305,0,0,0,0,0,0,3,1,0,161,56,68,21.6,1,1,120,80,1,13.9,85,251,62,70,162,0.7,37,33,17,96 +2013,853696,201306,,,1,,,,2,1,0,155,58,100,24.1,0.6,0.8,130,92,1,9.9,80,107,61,37,57,1.3,24,15,28,40 +2013,874943,201312,0,0,0,0,0,0,2,1,2,165,78,90,28.7,1.2,1,120,88,1,15.5,99,185,56,53,120,0.7,20,25,22,144 +2013,570104,201303,0,0,0,0,0,0,2,1,0,163,56,59,21.1,1,1.2,116,76,2,12.4,69,190,76,58,106,0.7,22,18,14,104 +2013,512815,201311,0,0,0,0,0,0,2,1,1,180,92,91,28.4,1,1,137,72,1,15.1,84,144,80,44,84,0.9,25,24,17,105 +2013,163650,201312,,,,,,,2,1,3,156,45,66,18.5,0.7,0.5,122,89,1,12.5,90,175,77,140,19,0.9,24,16,130,70 +2013,642899,201309,0,0,0,0,0,0,3,1,0,151,48,66,21.1,0.6,0.7,118,82,1,13.3,78,151,53,62,78,0.7,54,35,108,88 +2013,978767,201301,,,,,,,2,1,3,156,59,80,24.2,1.2,0.6,150,100,1,14.1,133,196,79,63,117,0.8,28,22,15,103 +2013,414177,201306,0,0,0,0,0,0,2,1,,151,55,70,24.1,1,1,104,61,1,13.4,87,196,79,63,117,0.8,17,8,13,90 +2013,750776,201311,0,0,0,0,0,0,3,1,2,160,58,69,22.7,0.4,0.8,111,64,1,11.5,85,187,84,82,91,0.7,12,12,20,108 +2013,944984,201303,0,0,1,0,0,0,2,1,0,167,58,78,20.8,0.5,0.7,140,80,1,13.6,102,218,88,69,106,1,24,19,17,78 +2013,345207,201309,0,0,1,0,0,0,1,1,1,160,59,71,23,1.5,1.5,115,73,1,12.6,95,220,88,72,130,0.8,29,24,24,80 +2013,260923,201309,0,0,0,1,0,0,2,1,1,180,73,89,22.5,1,1,120,80,1,15.2,113,131,82,53,62,1.1,28,36,18,77 +2013,979358,201305,0,0,0,0,0,0,2,1,0,157,58,80,23.5,1,1.5,123,82,1,13.1,99,228,83,47,169,0.9,21,17,20,66 +2013,591253,201305,0,0,0,0,0,0,3,1,0,158,51,72,20.4,1.2,1.2,106,71,1,8,86,129,47,63,56,0.6,14,11,10,112 +2013,530990,201308,1,1,1,1,1,1,3,1,3,163,62,86,23.3,0.8,1,130,80,1,14.2,101,146,90,60,68,0.9,72,103,238,85 +2013,674823,201310,0,0,0,0,0,0,2,1,1,166,55,65,20,2,1.2,140,80,1,14,92,225,97,50,155,0.7,22,20,14,93 +2013,123714,201303,0,0,0,0,0,0,3,1,7,168,63,85,22.3,0.7,0.9,110,80,1,16.4,105,214,45,58,147,1,24,23,19,78 +2013,484978,201305,0,0,1,0,0,0,2,1,0,160,62,73,24.2,0.8,1,136,86,1,14.7,100,220,42,97,115,1,29,20,14,58 +2013,71582,201311,0,0,0,0,0,0,2,1,3,157,51,72,20.7,0.9,1.5,120,76,1,13.4,79,181,42,74,98,1,27,20,30,62 +2013,79207,201307,0,0,0,0,0,0,2,1,1,145,52,80,24.7,0.8,0.8,118,81,1,12.4,119,146,101,47,78,0.8,16,15,24,81 +2013,204278,201312,0,0,0,0,0,0,2,1,0,156,53,72,21.8,1.9,1.9,100,70,1,12.9,77,187,42,78,101,0.7,25,16,12,91 +2013,459837,201311,0,0,1,0,0,0,1,1,2,160,54,68,21.1,1,0.6,136,78,1,13.5,86,148,104,57,70,0.7,20,14,16,81 +2013,642807,201309,0,0,0,0,0,0,3,1,2,165,66,76,24.2,0.7,0.6,110,70,1,13,96,196,104,52,123,0.9,21,17,33,71 +2013,480569,201302,0,0,1,0,0,0,3,1,0,155,58,87,24.1,0.1,0.5,115,60,1,9.3,84,126,108,47,57,1.8,20,21,17,28 +2013,1009573,201304,0,0,0,0,0,1,2,1,2,171,75,87,25.6,0.6,0.6,105,80,1,15.2,101,248,114,39,186,1.3,19,21,42,60 +2013,53748,201307,0,0,0,0,0,0,3,1,1,161,48,61,18.5,0.5,0.5,122,69,1,14.3,73,165,41,72,85,0.8,20,13,12,98 +2013,203606,201307,0,0,0,0,0,0,2,1,0,153,52,74,22.2,0.8,0.9,118,70,1,12.4,110,175,41,76,91,0.8,16,12,20,82 +2013,294913,201302,,,1,,,,2,1,1,159,65,90,25.7,0.9,0.7,128,76,1,10.9,103,237,40,69,160,0.8,18,14,25,78 +2013,138407,201305,0,0,1,0,0,0,3,1,0,175,87,88,28.4,0.5,0.8,128,86,4,13.1,102,180,128,45,109,1.7,18,17,17,42 +2013,446652,201305,1,,,,,,2,1,0,157,63,81,25.6,0.6,1,114,70,1,13,99,140,117,57,59,1,26,18,24,56 +2013,153174,201309,0,0,0,0,0,0,2,1,1,178,84,90,26.5,1,1.2,121,82,1,15.3,87,232,118,52,156,1,25,36,44,97 +2013,316400,201305,0,0,0,0,0,0,2,1,1,163,65,75,24.5,1.2,1,92,55,1,12.9,79,156,119,46,86,0.8,13,7,9,88 +2013,370738,201306,0,0,0,0,0,0,2,1,0,160,54,76,21.1,1,1,110,80,1,13.4,101,230,138,52,150,0.5,15,11,16,142 +2013,637115,201310,0,0,0,0,0,0,2,1,1,165,61,73,22.4,1,1,140,80,1,16.3,112,194,134,51,116,1,17,15,30,79 +2013,146621,201307,0,0,0,0,0,0,2,1,1,171,73,90,25,0.8,0.7,127,76,1,16,90,223,126,58,140,1.2,26,37,78,67 +2013,992522,201308,,,,,,,2,1,2,149,42,86,18.9,0.9,0.7,114,73,1,9.8,80,160,132,85,48,1.7,29,18,25,34 +2013,237719,201306,0,0,0,0,0,0,2,1,3,170,73,86,25.3,1.2,1.2,138,84,1,15,105,202,137,36,162,0.9,30,34,37,95 +2013,318399,201302,0,0,0,0,1,0,2,1,1,160,57,74,22.3,1,0.8,130,80,1,16.2,96,258,140,51,179,1,33,29,39,81 +2013,30622,201311,0,0,0,0,0,0,2,1,0,160,50,66,19.5,9.9,1.2,96,62,1,13.9,98,211,141,50,133,0.7,40,91,34,93 +2013,267185,201307,,,,,,,2,1,2,163,47,69,17.7,1.5,1.5,110,70,1,12.4,81,137,35,66,64,0.4,17,13,33,182 +2013,138307,201303,0,0,1,0,0,0,2,1,0,152,82,87,35.5,1,0.7,110,70,3,14.6,90,157,150,43,84,0.7,29,37,41,91 +2013,548365,201310,0,0,0,0,0,0,2,1,2,173,74,83,24.7,1.5,1.2,140,100,1,16.1,106,227,156,80,115,0.8,22,23,49,129 +2013,995838,201312,0,0,0,0,0,0,2,1,0,156,44,66,18.1,1.2,1,100,60,1,13.6,118,242,170,62,146,0.9,17,13,11,73 +2013,386280,201312,,,,1,,,2,1,1,164,63,83,23.4,1.2,0.9,111,70,1,16.4,277,219,165,73,113,16.5,18,20,29,3 +2013,776098,201305,0,0,0,0,0,0,3,1,0,176,76,80,24.5,1.2,1.2,120,81,1,16.7,102,215,183,37,141,1.1,17,21,32,81 +2013,627341,201303,0,0,0,0,0,0,2,1,1,162,42,66,16,1,1,126,87,1,13.7,92,177,31,57,114,0.6,22,15,14,127 +2013,975124,201308,0,0,1,0,0,0,2,1,1,150,45,74,20,0.5,0.5,120,75,1,12.6,104,277,209,81,154,0.7,28,17,20,88 +2013,437237,201311,0,0,1,0,0,0,2,1,3,159,52,79,20.6,1,1,128,72,1,14.4,112,185,173,59,91,1,25,15,19,79 +2013,403607,201312,0,0,0,0,0,0,3,1,1,169,72,84,25.2,1.5,1.5,130,80,1,16,97,240,210,54,144,0.9,20,23,24,102 +2013,23682,201302,,,1,,,,2,1,2,168,72,85,25.5,0.9,0.9,120,90,1,14.7,72,201,234,51,103,1,24,23,22,81 +2013,739454,201308,0,0,0,0,0,0,3,1,1,160,58,74,22.7,1,1,100,60,1,14.2,97,205,192,58,108,1.3,21,15,14,59 +2013,742999,201309,0,0,0,0,0,0,3,1,1,166,69,83,25,1,1,110,70,1,16.2,79,216,446,47,,1,28,36,27,94 +2013,633307,201305,0,0,0,0,0,0,2,1,2,177,78,90,24.9,0.6,0.1,137,78,1,15,100,256,269,40,162,1.1,23,28,69,79 +2013,122776,201308,0,0,0,0,0,0,2,1,2,179,74,86,23.1,1,1,120,80,1,14.8,113,142,291,35,48,1,20,22,88,82 +2013,921924,201310,0,0,0,0,0,0,2,1,0,183,108,110,32.2,1,0.9,152,95,1,15.9,103,220,297,57,103,0.9,20,27,53,144 +2013,572549,201312,0,0,0,0,0,0,3,1,0,165,72,89,26.4,0.3,0.6,135,78,1,14.7,94,188,189,55,95,0.8,34,57,45,84 +2013,39217,201311,,,,,,,2,3,5,169,82,100,28.7,0.9,1,153,98,1,15.5,119,169,86,51,100,0.8,27,35,50,106 +2013,243053,201303,,,1,,,,3,3,6,168,68,83,24.1,0.8,0.9,126,92,1,14.8,110,166,79,66,84,1,25,30,87,82 +2013,814115,201312,,,,,,,3,3,0,166,68,85,24.7,0.8,0.7,114,63,1,14.8,77,171,96,42,109,1.2,176,361,70,68 +2013,356551,201312,0,0,1,0,0,0,2,3,0,166,68,83,24.7,1,0.9,126,68,1,13.7,120,222,109,48,152,0.7,21,14,16,106 +2013,77197,201312,0,0,0,0,0,0,3,3,3,180,68,77,21,0.9,0.8,129,86,1,16.5,83,221,104,67,133,1,23,25,22,92 +2013,652416,201307,,,,,,,2,3,2,178,71,86,22.4,1.5,1.2,120,70,1,16.3,86,186,94,49,118,0.9,21,20,29,128 +2013,302816,201310,0,0,0,0,0,0,2,3,0,171,60,73,20.5,2,1.5,125,80,1,14.7,86,192,69,63,115,1.1,24,14,17,77 +2013,177527,201312,,,,,,,3,3,1,164,50,71,18.6,0.7,0.8,132,86,1,13,159,158,87,70,70,1.1,22,21,15,75 +2013,461601,201307,0,0,0,0,0,0,2,3,2,183,89,90,26.6,1.5,1.5,135,80,1,15.5,107,148,72,41,93,0.9,18,21,25,106 +2013,284267,201312,,,,,,,3,3,1,174,72,86,23.8,1.5,1.2,123,75,1,14.1,91,243,110,72,149,1.1,23,11,54,78 +2013,623836,201312,,,,,,,2,3,2,158,59,73,23.6,0.9,0.9,100,70,1,13.1,80,228,81,64,147,0.7,25,25,8,97 +2013,671580,201310,,,,,,,3,3,3,168,74,87,26.2,1,1,136,76,1,15.7,81,199,81,70,112,0.9,36,42,66,97 +2013,357738,201310,0,0,0,0,0,0,2,3,3,172,73,85,24.7,0.6,1,115,74,1,16.1,91,135,100,42,73,0.8,24,46,110,122 +2013,701869,201303,0,0,0,0,0,0,2,3,5,169,58,85,20.3,0.7,0.7,120,80,1,14.6,97,165,100,35,110,0.7,30,24,77,112 +2013,995240,201311,0,0,0,0,0,0,2,3,1,174,66,73,21.8,1,1,110,70,1,14.9,88,234,83,73,144,0.9,23,18,24,99 +2013,447033,201309,0,0,0,0,0,0,2,3,1,169,62,78,21.7,1,1,130,80,1,15.5,93,193,70,63,116,0.9,22,19,17,104 +2013,161624,201312,0,0,1,0,0,0,2,3,2,167,62,77,22.2,1.5,1.5,153,111,1,15.5,130,178,115,66,89,0.8,23,30,149,98 +2013,440107,201312,0,0,0,0,0,0,3,3,0,174,70,79,23.1,1.2,0.9,110,70,1,14.8,91,182,115,48,111,0.7,22,25,26,132 +2013,212433,201311,0,0,0,0,0,0,3,3,1,171,63,73,21.5,0.8,0.9,110,70,1,14,85,167,74,65,88,0.5,15,12,15,136 +2013,114537,201310,0,0,0,0,0,0,3,3,2,173,69,83,23.1,1.2,1.2,128,76,1,17.1,91,254,118,72,170,1.4,35,37,66,59 +2013,145918,201312,0,0,0,0,0,0,2,3,5,169,62,80,21.7,0.8,1,136,88,1,16,92,227,134,43,156,1.1,26,17,98,73 +2013,149741,201311,0,0,0,0,0,0,3,3,2,179,76,81,23.7,1.2,1.5,134,86,1,16.1,75,191,123,44,122,1.1,27,35,40,82 +2013,432825,201312,,,,,,,2,3,7,169,72,85,25.2,1.5,1.5,149,97,1,13.3,108,150,120,46,80,1.1,17,12,18,68 +2013,824794,201312,0,0,0,0,0,0,2,3,2,178,74,84,23.4,1,1,110,70,1,13.9,102,249,58,53,184,0.9,28,20,28,102 +2013,177099,201301,,,1,,,,3,3,3,171,73,103,25,0.8,0.8,150,110,1,13,97,162,62,56,93,1.1,26,22,35,71 +2013,390119,201306,0,0,0,0,0,0,2,3,2,162,60,80,22.9,1.2,1,100,60,1,14.1,125,228,62,75,141,0.6,37,41,28,157 +2013,915731,201309,0,0,0,0,0,0,2,3,2,169,65,80,22.8,1.5,1.2,110,70,1,15.7,126,183,126,49,109,1.1,25,25,60,77 +2013,914480,201310,0,0,0,0,0,0,3,3,1,167,49,72,17.6,1,1,100,60,1,15.6,85,189,126,47,124,1,16,10,20,86 +2013,9175,201310,,,,,,,2,3,3,173,64,75,21.4,1,0.7,116,78,1,17.3,74,186,141,50,107,1.2,23,20,36,66 +2013,884968,201311,0,0,0,0,0,1,2,3,2,172,82,91,27.7,1.2,1.2,134,89,1,16,98,217,127,60,132,1.1,22,17,54,73 +2013,737871,201303,,,1,,,,2,3,0,167,66,93,23.7,0.6,0.7,146,96,1,15.7,71,230,127,56,148,1,16,9,17,78 +2013,670343,201304,0,0,0,0,0,0,3,3,4,173,70,82,23.4,1.5,1.5,110,70,1,14.5,89,200,149,61,109,1.1,17,22,178,74 +2013,105746,201312,0,0,0,0,0,0,2,3,1,165,62,74,22.8,1.2,0.9,118,78,1,14.8,82,177,139,54,95,1,28,29,26,99 +2013,660791,201308,0,0,0,0,0,1,2,3,0,174,58,69,19.2,1,1,110,70,1,14.2,93,159,139,45,86,0.8,24,28,21,111 +2013,185597,201307,,,,,,,2,3,7,172,83,96,28.1,1.2,0.9,113,80,1,16.6,118,233,159,39,176,1.2,44,88,66,69 +2013,1005250,201305,0,0,0,0,0,0,3,3,3,181,73,81,22.3,2,2,125,80,1,15,92,145,52,68,66,1.2,22,15,21,80 +2013,688302,201303,0,0,0,0,0,0,2,3,1,163,61,81,23,0.6,0.7,93,61,1,15.3,92,220,158,58,130,1,25,16,27,71 +2013,835408,201310,0,0,0,0,0,0,3,3,4,169,76,99,26.6,0.9,1,135,88,1,15.6,91,197,151,34,133,1,22,22,15,83 +2013,607439,201312,,,,,,,2,3,5,164,47,60,17.5,1.2,1.2,107,61,1,13.1,73,172,50,78,84,0.4,37,19,24,196 +2013,197894,201307,0,0,0,0,0,0,2,3,2,160,58,75,22.7,1,0.8,127,82,1,17,87,156,168,37,85,0.9,20,17,36,93 +2013,582044,201311,0,0,0,0,0,0,2,3,1,159,74,89,29.3,1.5,1.5,158,100,1,15.5,80,146,180,43,67,0.8,32,48,84,136 +2013,126561,201312,,,,,,,2,3,0,183,102,105,30.5,1,1,133,85,1,17.7,107,204,180,32,136,1,44,114,59,82 +2013,568865,201304,0,0,0,0,0,0,2,3,1,175,70,76,22.9,1.2,0.9,143,83,1,16.8,95,200,184,65,98,1.1,18,15,24,83 +2013,473250,201302,0,0,0,0,0,0,2,3,4,168,60,78,21.3,1.5,1.2,134,89,1,17.9,103,197,193,48,110,1.2,43,46,101,69 +2013,38967,201311,0,0,0,0,0,0,2,3,2,174,80,84,26.4,1.2,1.5,110,63,1,15.9,102,212,218,42,156,1,33,39,79,83 +2013,941551,201311,0,0,0,0,0,0,2,3,2,165,56,71,20.6,1.5,1.5,110,70,1,14.8,89,201,47,61,131,0.8,33,22,36,105 +2013,518792,201304,,,,,,1,3,3,6,173,52,69,17.4,0.8,0.6,101,74,1,12.6,103,201,212,51,107,0.9,15,7,120,94 +2013,1010623,201311,0,0,0,0,1,0,3,3,1,171,84,88,28.7,0.4,0.8,119,72,1,15.1,94,207,240,45,114,1.2,16,9,23,67 +2013,690677,201302,0,0,0,0,0,0,2,3,0,172,77,84,26,1.2,1.2,115,78,1,16.2,93,157,223,49,63,1,23,25,23,86 +2013,717196,201312,0,0,0,0,0,0,3,3,0,171,86,93,29.4,1.2,1,123,60,1,16.5,88,173,496,35,106,0.9,28,61,48,103 +2013,128799,201311,0,0,0,0,0,0,2,3,2,181,74,80,22.6,1.2,1.2,130,70,1,15.9,92,191,319,39,131,1,19,15,26,89 +2013,84322,201304,0,0,0,0,0,0,2,3,1,180,76,86,23.5,1,0.8,127,84,1,16.5,103,174,229,45,83,1.1,27,20,26,85 +2013,889062,201312,,1,,,,,3,3,1,160,66,89,25.8,0.7,1.2,105,65,1,16.7,79,233,369,42,117,1,17,17,25,81 +2013,904730,201310,,,,,,,2,3,1,177,67,85,21.4,0.8,1.2,142,80,1,15.1,86,190,394,39,72,1.1,28,55,20,86 +2013,830306,201306,0,0,0,0,0,0,2,3,3,177,69,79,22,1,1.2,120,80,1,14.2,80,143,216,57,42,1.1,50,30,24,80 +2013,365630,201311,,,,,,,2,3,1,165,85,96,31.2,1.5,1.5,120,80,1,16.4,99,219,329,52,101,0.9,24,21,40,106 +2013,85219,201302,0,0,0,0,0,0,3,3,2,167,61,77,21.9,1,1,110,70,1,16.8,96,200,13,64,133,1,20,20,17,88 +2013,452930,201311,,,,,,,2,3,3,181,67,78,20.5,1.5,1.5,119,70,1,12.5,95,168,36,79,81,0.8,27,19,16,126 +2013,550255,201305,0,0,0,0,0,0,2,3,1,183,97,94,29,0.4,0.5,120,80,1,15.1,99,218,263,38,125,1.1,17,8,68,78 +2013,416133,201305,,,,,,,2,3,2,173,71,84,23.7,1.2,1,117,82,1,15.3,104,196,230,63,87,0.9,80,111,249,95 +2013,218649,201308,0,0,0,0,0,0,3,3,3,170,69,88,23.9,1,1.2,135,85,1,15,89,245,330,40,139,0.9,30,39,97,100 +2013,798472,201311,0,0,0,0,0,0,2,3,0,162,58,75,22.1,1.5,1.5,110,70,1,17.4,89,256,283,37,162,0.9,29,46,76,97 +2013,353996,201310,,,,1,,,2,3,1,162,71,96,27.1,1.2,1.2,110,70,2,14.7,146,278,1017,30,,1.2,29,56,84,69 +2013,266734,201311,,,,,,,1,3,2,171,78,92,26.7,1.2,1.2,127,81,1,14.5,75,274,238,43,183,0.9,21,26,95,97 +2013,908152,201305,0,0,0,0,0,0,2,3,1,171,89,95,30.4,1.2,1.2,100,60,1,16.9,111,207,324,36,106,1,27,48,69,88 +2013,91351,201304,,,,,,,2,3,2,177,90,96,28.7,1.5,1.2,139,89,1,17.3,113,219,254,47,121,1,43,58,56,93 +2013,107142,201307,0,0,0,0,0,0,2,3,0,182,69,73,20.8,0.5,0.5,110,60,1,15.4,83,165,42,61,96,1.1,23,15,10,87 +2013,166324,201305,0,0,0,0,0,0,2,2,0,169,60,72,21,1,1,136,74,1,13.1,90,211,85,77,117,1.1,21,13,21,78 +2013,163129,201312,0,0,0,0,0,0,3,2,1,170,68,79,23.5,0.9,1.5,100,70,1,14.5,88,221,80,48,157,1,28,16,17,80 +2013,56250,201310,0,0,0,0,0,0,3,2,1,172,71,76,24,0.9,1,130,88,1,14.6,80,238,80,64,157,1,23,13,24,91 +2013,51442,201305,0,0,0,0,0,0,3,2,0,172,70,86,23.7,1.5,1.5,118,75,1,16.3,84,181,76,45,120,0.8,17,14,25,126 +2013,535689,201305,0,0,0,0,0,0,2,2,2,170,63,77,21.8,1.5,1.5,112,71,1,16.3,83,155,80,47,92,0.9,21,18,24,95 +2013,302146,201310,,,,,,,2,2,3,170,73,86,25.3,1.2,0.8,143,96,1,14.1,118,156,109,36,98,0.7,21,11,54,124 +2013,637320,201302,0,0,1,1,0,0,2,2,0,164,67,90,24.9,0.2,0.9,120,78,1,13.5,115,197,79,37,144,0.8,27,37,31,104 +2013,383109,201302,0,0,0,0,0,0,2,2,2,164,60,81,22.3,0.7,0.6,134,72,1,14.7,131,239,100,65,154,1,23,19,37,81 +2013,898484,201310,0,0,0,0,0,0,2,2,4,179,101,101,31.5,1,1.5,130,89,1,16.6,116,187,110,55,110,1,24,23,19,79 +2013,387855,201303,0,0,1,0,0,0,2,2,2,175,75,91,24.5,1.2,0.7,134,82,1,14.7,115,269,110,68,179,1.1,19,20,67,74 +2013,42231,201305,0,0,0,0,0,0,3,2,2,176,73,79,23.6,0.9,1,112,70,1,15.8,81,171,77,54,102,1,19,13,26,85 +2013,418137,201306,0,0,0,0,0,0,1,2,1,175,63,74,20.6,0.9,0.9,105,70,1,16.5,90,139,74,43,81,1,19,13,16,89 +2013,934772,201311,,,1,,,,3,2,6,167,69,80,24.7,0.9,0.5,120,92,1,16.8,92,233,65,70,150,1.1,22,18,54,72 +2013,231997,201301,0,0,0,0,0,0,3,2,4,172,65,90,22,0.9,0.9,120,80,1,12.5,88,191,105,75,95,0.8,18,12,26,103 +2013,674034,201312,0,0,0,0,0,0,3,2,1,169,61,76,21.4,0.6,0.6,122,80,1,14.3,77,145,58,62,71,0.8,17,15,13,111 +2013,553285,201311,0,0,0,0,0,0,3,2,1,168,73,89,25.9,0.2,1.2,133,88,1,15.9,115,199,64,46,140,0.9,23,31,33,103 +2013,876492,201304,,,1,,,,2,2,0,165,62,73,22.8,0.9,0.8,118,76,1,14.4,93,185,68,73,98,1.4,25,16,18,52 +2013,115809,201309,0,0,0,0,0,0,3,2,0,186,117,114,33.8,0.8,1.2,140,90,1,15.1,98,202,122,38,140,1,32,21,39,88 +2013,346335,201311,,,,,,,3,2,3,171,79,81,27,1.2,0.5,124,84,1,16.1,114,265,145,51,185,1.2,30,28,27,71 +2013,395781,201306,0,0,0,0,0,0,1,2,0,166,60,73,21.8,1.5,1.5,136,88,1,13.6,94,234,157,51,151,0.9,18,16,16,92 +2013,354421,201312,,,,,,,2,2,2,172,68,91,23,0.9,0.9,128,83,1,14.3,106,172,143,54,89,0.9,34,37,131,89 +2013,913247,201308,0,0,0,0,0,0,2,2,0,166,62,82,22.5,0.8,0.8,129,66,1,14.9,107,182,149,40,112,0.9,17,13,15,89 +2013,801526,201305,0,0,0,0,0,0,2,2,4,172,63,76,21.3,0.8,0.8,120,70,1,15.3,85,182,54,76,95,1.1,22,15,17,87 +2013,689889,201310,0,0,1,1,0,0,2,2,1,172,73,89,24.7,1,1,125,70,1,13.8,102,142,168,34,74,1,46,53,28,82 +2013,540586,201306,0,0,1,0,0,0,1,2,3,162,65,79,24.8,0.7,1,135,83,1,13.5,92,201,49,57,134,0.9,17,14,20,90 +2013,946687,201311,,,,,,,2,2,1,157,53,71,21.5,0.9,0.7,123,83,1,14,86,186,45,81,96,0.7,15,13,11,97 +2013,466014,201311,,,,,,,3,2,1,176,86,95,27.8,1.5,1.2,110,62,1,17.4,84,186,288,30,98,0.8,19,24,27,119 +2013,324678,201307,0,0,0,0,0,0,1,2,2,166,66,84,24,1.2,1.2,130,80,1,16.3,100,182,266,40,89,1,22,14,20,85 +2013,720080,201311,0,0,0,0,0,0,2,2,1,162,63,80,24,1.2,1.2,130,80,1,14.7,91,303,358,43,190,1.1,26,25,36,78 +2013,153851,201309,0,0,0,0,0,0,1,2,1,175,87,89,28.4,1,0.1,130,100,1,15.3,98,153,198,42,71,1.2,43,54,38,67 +2013,808467,201312,0,0,0,0,0,0,2,2,1,175,80,86,26.1,1.5,1.5,130,70,1,15.1,92,164,166,40,90,0.8,35,55,56,107 +2013,529690,201312,0,0,1,0,0,0,3,2,0,159,56,70,22.2,1,0.3,132,85,1,14.3,93,239,41,71,160,0.8,19,15,13,78 +2013,518558,201303,0,0,1,0,0,0,2,2,2,162,72,86,27.4,1,1.5,108,68,1,15,115,202,269,36,104,1,27,31,62,83 +2013,394639,201312,0,0,0,1,0,0,2,2,7,170,70,83,24.2,1.2,1.2,110,78,1,16.5,211,249,180,69,144,0.9,57,61,257, +2013,127519,201312,0,0,1,0,0,0,3,2,3,167,80,101,28.7,0.6,0.7,140,100,1,15.1,131,213,325,53,95,1.1,30,30,56,67 +2014,330466,201407,0,0,0,0,0,0,2,1,0,159,63,80,24.9,0.9,1,119,76,1,12.2,106,172,90,52,102,0.8,29,30,16,80 +2014,266165,201403,0,1,1,0,0,0,2,1,0,156,59,81,24.2,0.4,0.8,141,88,1,12.7,90,247,120,67,156,0.8,22,15,25,77 +2014,125422,201410,,,1,,,,2,1,0,160,67,81,26.2,0.6,0.4,130,80,1,15.9,100,178,123,48,105,0.8,45,41,18,75 +2014,322147,201406,,,1,,,,2,1,0,151,56,79,24.6,0.7,0.1,113,63,1,12.4,121,157,69,91,52,0.8,18,15,28,75 +2014,321692,201411,,,,,,,2,1,0,154,55,78,23.2,0.8,0.1,134,88,1,14.6,113,272,177,43,193,0.8,43,57,28,76 +2014,487160,201407,0,0,0,0,0,0,3,1,0,159,52,70,20.6,1.6,1.6,108,54,1,11.8,85,162,38,60,94,0.8,17,14,14,83 +2014,559420,201412,,,1,,,,3,1,0,154,55,76,23.2,1.2,0.5,150,80,1,13.1,106,229,211,50,136,0.8,24,27,21,80 +2014,621264,201404,,,1,,,,3,1,0,147,48,75,22.2,0.4,0.2,132,73,1,11.9,81,163,92,61,83,0.8,22,7,9,72 +2014,306589,201410,0,0,0,0,0,0,3,1,0,163,61,77,23,1,0.9,117,69,1,13.1,128,227,138,68,131,0.8,22,22,25,79 +2014,781445,201407,,,1,1,,,2,1,0,162,62,85,23.6,0.8,0.5,111,61,1,14.1,84,154,83,38,99,1,26,37,17,58 +2014,720544,201412,,1,1,,,,2,1,0,172,76,91,25.7,1.5,1.2,130,82,1,17,105,196,86,49,129,1.1,29,20,22,74 +2014,130119,201410,,,,,,,2,1,0,151,48,67,21.1,1.5,1.5,92,69,1,13,79,201,80,62,123,0.6,18,10,6,110 +2014,79379,201403,0,0,1,0,0,0,2,1,0,165,83,96,30.5,0.8,0.7,150,96,1,15.3,118,155,84,36,102,1.1,42,71,36,70 +2014,317148,201406,,,,,1,,3,1,0,144,49,78,23.6,0.3,0.1,126,79,1,12.1,103,201,84,67,117,0.6,20,12,17,103 +2014,985972,201411,0,0,0,0,0,0,3,1,0,162,56,69,21.3,0.6,0.8,110,70,1,12.1,86,184,66,75,95,0.6,16,12,11,120 +2014,725112,201402,,,1,,,,2,1,0,151,47,68,20.6,0.4,0.2,120,80,1,12.8,95,213,95,48,146,0.7,20,15,11,86 +2014,183321,201409,,,,,,,3,1,0,152,48,67,20.8,1,1,110,68,1,13.4,75,201,73,61,125,1,21,19,22,61 +2014,334536,201412,,,,,,,2,1,0,161,53,79,20.4,0.7,0.9,116,71,1,12.2,70,157,89,82,57,0.4,22,13,8,195 +2014,45461,201405,,,,,,,2,1,0,150,40,69,17.8,0.8,0.8,134,79,1,13.3,99,232,93,56,157,1.1,24,18,15,52 +2014,444042,201404,,,1,,,,2,1,0,167,62,86,22.2,0.5,0.4,136,78,1,11.9,101,171,81,63,91,1.2,32,35,29,62 +2014,394061,201405,,,,,,,2,1,0,157,57,72,23.1,1,1,120,70,1,13.3,98,199,98,66,113,0.6,22,15,30,112 +2014,82901,201412,,,,,,,2,1,0,158,64,80,25.6,1.2,1,130,80,1,12.8,95,166,85,66,83,0.7,19,19,13,96 +2014,204278,201405,,,,,,,2,1,0,157,54,71,21.9,0.6,0.3,120,80,1,12.7,83,172,55,75,86,0.7,22,12,11,91 +2014,964637,201401,0,0,0,0,0,0,2,1,0,155,63,85,26.2,0.8,0.7,120,60,1,13.6,121,216,110,34,160,0.7,26,44,57,92 +2014,797920,201409,0,0,1,0,0,0,2,1,0,157,70,89,28.4,0.9,1.2,110,70,1,12.9,99,200,108,49,129,0.7,23,20,75, +2014,238542,201412,0,0,1,0,0,0,2,1,0,158,69,96,27.6,1,0.9,110,80,1,13.3,101,189,108,41,126,1.1,16,11,33,73 +2014,834975,201407,,,,,,,2,1,0,165,61,72,22.4,0.8,0.8,104,77,1,14,87,207,124,48,134,0.7,21,18,12,95 +2014,336055,201412,0,0,0,0,0,0,3,1,0,153,67,78,28.6,1,1.2,139,97,1,10.5,77,193,125,46,122,0.5,23,21,63,142 +2014,529690,201412,,1,1,,,,2,1,0,160,56,76,21.9,0.8,0.9,143,89,1,14.1,94,169,45,78,82,0.6,18,16,11,102 +2014,915731,201404,,,,,,,2,1,0,168,63,82,22.3,1.2,0.7,120,80,1,15.2,106,176,122,50,101,0.9,23,23,68,91 +2014,102141,201406,,,,,,,2,1,0,159,52,70,20.6,1.5,1.2,130,88,1,13.5,83,205,122,65,115,0.5,18,15,18,139 +2014,356798,201412,,,,,,,2,1,0,164,61,80,22.7,1,1.2,108,75,1,11.3,89,206,132,54,125,0.5,29,46,44,145 +2014,27226,201412,,,,,,,3,1,0,149,57,82,25.7,1.2,1.2,109,70,1,13.2,92,199,40,69,122,0.7,26,23,21,94 +2014,676313,201410,,,,,,,2,1,0,163,56,93,21.1,1.2,1.2,90,60,1,12.9,68,196,140,72,96,0.5,18,7,10,149 +2014,979151,201411,0,0,1,1,0,0,2,1,0,149,55,88,24.8,0.9,1,136,79,1,13.1,106,192,144,44,119,0.7,20,27,22,87 +2014,444740,201412,0,0,0,0,0,0,3,1,0,151,61,86,26.8,1.2,1.2,121,93,1,13.9,118,214,183,58,119,0.5,21,26,19,142 +2014,663279,201408,0,0,0,0,0,0,2,1,0,158,48,65,19.2,0.9,0.1,89,65,1,13.1,81,163,41,60,95,0.9,25,15,11,73 +2014,549602,201410,,,,,,,3,1,0,155,78,95,32.5,1,1,149,90,1,13.3,104,255,439,44,123,1,35,26,29,61 +2014,752655,201401,,,,,,,3,1,0,165,77,88,28.3,0.1,0.9,150,80,1,15.9,102,193,159,52,109,1.1,30,30,28,68 +2014,219397,201411,0,0,1,0,0,0,2,1,0,146,49,79,23,0.8,0.9,160,90,1,13,115,165,161,35,118,0.6,26,20,26,109 +2014,950911,201411,,,,,,,2,1,0,168,73,80,25.9,1.5,1.5,126,87,1,14,93,186,212,73,70,0.7,38,40,34,117 +2014,146593,201410,0,0,0,0,0,0,2,1,0,164,60,84,22.3,1.5,1.2,129,70,1,14,105,290,169,59,197,0.7,16,11,40,92 +2014,46233,201410,1,0,0,0,0,0,2,1,0,140,45,73,23,0.4,1,110,66,1,13.1,84,157,180,61,60,0.7,20,24,32,85 +2014,84427,201409,0,0,0,0,0,0,2,1,0,148,49,81,22.4,0.8,0.8,140,87,1,12.1,80,220,397,71,69,0.7,58,94,48,92 +2014,892360,201405,,,,,,,2,1,0,157,61,83,24.7,0.5,0.8,130,90,1,14,97,210,33,92,111,0.6,18,7,44,114 +2014,793017,201407,,,,,,,2,1,0,156,54,78,22.2,1,1,111,72,1,12.7,99,202,163,53,116,0.7,19,20,31,93 +2014,134307,201401,,,,,,,2,1,0,167,64,76,22.9,1.5,1.2,135,76,1,12.9,89,214,167,47,133,1.1,36,19,34,55 +2014,669498,201409,,,1,,,,3,1,0,136,50,94,27,9.9,0.3,128,78,1,13.4,93,258,192,49,170,0.5,34,40,42,126 +2014,554112,201401,,,,,,,3,1,0,162,55,73,21,1.2,1.2,120,80,1,12.3,90,137,43,54,74,0.8,12,10,13,91 +2014,36714,201412,,,1,1,,,2,1,0,156,61,79,25.1,0.6,0.1,125,60,1,6.8,125,217,155,48,138,0.8,26,22,15,75 +2014,792082,201409,,,1,,,,1,1,0,157,71,94,28.8,1,1.2,119,71,1,12.1,94,144,189,38,68,0.8,23,27,15,79 +2014,364304,201412,0,0,0,0,0,0,2,1,0,159,31,62,12.3,0.8,0.8,112,73,1,11.4,71,144,25,70,69,0.9,50,27,17,67 +2014,491031,201406,0,0,0,0,0,0,2,1,0,154,55,66,23.2,1,1.2,119,79,1,13.8,102,191,88,77,96,0.8,17,11,16,83 +2014,495650,201412,,,,,,,2,1,0,159,82,98,32.4,1,1,130,82,1,12.1,130,177,133,39,111,0.9,37,39,19,72 +2014,60216,201404,0,0,0,0,0,0,2,1,0,163,51,81,19.2,0.8,1,90,65,1,13.5,98,192,82,73,102,0.9,25,22,22,69 +2014,437139,201412,0,1,1,0,1,0,2,1,0,156,71,93,29.2,1.2,1.2,130,70,1,13.1,87,128,67,57,57,0.7,20,24,9,90 +2014,562142,201406,,1,,1,,,3,1,0,168,70,83,24.8,0.6,0.6,132,77,1,15.2,171,131,163,38,60,0.9,23,25,21,93 +2014,5707,201411,0,0,0,0,0,0,2,1,0,161,63,74,24.3,1.5,1.5,125,79,1,13.5,92,236,88,70,148,0.7,13,10,8,101 +2014,4664,201403,,,,,,,2,1,0,162,54,73,20.6,0.9,0.9,105,70,1,13.2,83,193,87,48,127,1,14,6,6,64 +2014,952290,201411,,,,,,,2,1,0,158,54,81,21.6,0.7,1.5,120,80,1,14.2,290,285,212,58,184,0.7,24,33,52,95 +2014,196293,201404,,,1,1,,,2,1,0,149,62,87,27.9,0.9,0.9,119,80,1,13.8,182,214,403,48,126,0.9,15,12,33,66 +2014,517447,201407,0,0,0,0,0,0,2,1,0,150,59,80,26.2,0.8,0.7,124,85,1,14.3,119,219,216,53,122,0.7,79,116,50,85 +2014,995838,201412,0,0,0,0,0,0,2,1,0,155,44,65,18.3,0.8,1,115,68,1,13.3,93,245,74,66,164,0.7,19,9,16,97 +2014,532905,201407,0,0,0,0,0,0,2,1,0,172,54,67,18.3,1,1.2,128,72,1,15.1,94,184,66,54,117,1.1,33,14,16,74 +2014,741504,201412,0,0,0,0,0,0,3,1,0,170,61,67,21.1,1.2,1,115,68,1,13.8,91,195,78,78,101,0.8,21,23,16,81 +2014,41309,201405,0,0,0,0,0,0,2,1,0,162,48,66,18.3,1.2,1.2,104,65,1,12.7,96,168,62,73,82,0.7,25,12,13,98 +2014,558657,201410,,,1,,,,2,1,0,160,56,69,21.9,1.2,1.5,140,81,1,13.6,107,224,82,69,138,0.8,20,11,10,78 +2014,96484,201412,0,0,0,0,0,0,2,1,0,152,60,77,26,0.8,1.2,110,70,1,12.3,103,194,75,61,117,0.8,16,12,10,71 +2014,606303,201405,,,,,,,2,1,0,160,52,68,20.3,0.9,0.9,108,68,1,11.8,84,169,89,45,106,0.6,41,34,18,109 +2014,674823,201411,0,0,0,0,0,0,2,1,0,167,57,68,20.4,0.9,1.2,117,73,1,13.3,77,123,50,50,63,0.6,21,12,11,85 +2014,720792,201402,,,1,,,,2,1,0,165,62,78,22.8,1,0.9,155,98,1,12.9,91,230,86,70,142,0.8,20,14,57,106 +2014,782896,201412,0,0,0,0,0,0,2,1,0,160,63,81,24.6,1,1.2,109,69,1,14.8,104,264,99,77,166,0.6,16,15,15,109 +2014,80234,201410,,,1,1,1,,2,1,0,155,66,90,27.5,1.2,1.2,130,78,1,11.7,135,179,101,60,98,0.8,18,16,17,71 +2014,888234,201401,,,,,,,2,1,0,153,47,67,20.1,0.9,0.8,115,86,1,13.7,72,205,56,72,121,0.7,29,15,10,92 +2014,483546,201409,,,1,1,,,2,1,0,153,49,71,20.9,0.8,0.8,130,80,1,14.4,126,124,100,61,43,1,30,30,62,78 +2014,538038,201406,0,0,0,0,0,0,2,1,0,167,69,76,24.7,0.8,0.8,160,110,1,12.9,91,200,85,68,115,1.2,21,19,33,78 +2014,554585,201405,0,0,0,0,0,0,2,1,0,162,65,84,24.8,0.6,1,130,80,1,12.3,85,229,93,57,153,0.9,26,19,40,69 +2014,752067,201412,0,0,0,0,0,0,2,1,0,167,69,87,24.7,1.2,1.2,119,76,1,14.1,105,200,103,43,136,1,22,11,23,88 +2014,245849,201406,0,0,1,0,0,0,2,1,0,163,83,96,31.2,1,1,138,85,1,15.8,98,145,114,47,75,1.1,27,31,28,74 +2014,195513,201404,0,0,1,0,0,0,2,1,0,152,53,77,22.9,0.6,0.5,139,89,1,13.5,102,214,104,51,142,0.7,18,16,34,90 +2014,572384,201404,0,0,0,0,0,0,2,1,0,168,54,71,19.1,0.7,0.9,102,60,1,13.3,99,202,116,49,129,0.8,34,30,39,102 +2014,962008,201408,0,0,0,0,0,0,3,1,0,164,48,68,17.8,0.8,0.9,103,62,1,10.7,87,158,41,57,92,0.7,10,9,12,91 +2014,692726,201403,,,,,,,2,1,0,165,56,78,20.6,1.2,1,120,80,1,13.6,83,134,43,46,79,0.9,21,13,12,90 +2014,859599,201412,,,,,,,2,1,0,156,66,76,27.1,0.8,0.8,121,67,1,13.2,79,191,43,76,106,0.5,20,14,14,136 +2014,849556,201412,,,,,,,3,1,0,169,47,69,16.5,1,0.9,110,83,1,13.3,91,152,37,61,83,0.8,24,11,15,82 +2014,316695,201411,0,0,0,0,0,0,2,1,0,160,53,72,20.7,1.5,1.5,115,76,1,12.6,98,169,32,64,99,0.8,22,18,13,78 +2014,874754,201409,,,,,,,2,1,0,159,67,84,26.5,1.2,0.9,125,79,1,12.9,85,185,195,46,100,1,22,23,22,59 +2014,376332,201403,,,,,,,2,1,0,154,57,93,24,1,0.5,114,70,1,15.2,109,253,158,56,165,0.6,15,16,24,101 +2014,693283,201407,,,,,,,3,1,0,158,69,92,27.6,0.8,0.8,141,96,1,13.6,131,224,167,44,147,0.7,34,58,30,84 +2014,383109,201402,0,0,0,0,0,0,2,1,0,163,59,81,22.2,0.7,0.6,126,83,1,15.7,89,246,141,56,162,1,25,28,52,86 +2014,613708,201412,1,0,1,0,0,0,3,1,0,170,66,87,22.8,0.7,0.9,142,81,1,17.3,123,212,131,57,128,1.1,40,33,46,71 +2014,411180,201405,,,,,1,,3,1,0,164,58,71,21.6,0.8,0.8,133,87,1,12.8,91,178,168,70,74,0.8,16,21,38,80 +2014,606567,201403,,,,,,,2,1,0,149,62,86,27.9,0.6,0.6,140,80,3,13,94,268,164,58,177,0.6,24,18,15,104 +2014,326432,201401,0,0,0,0,0,0,2,1,0,159,59,75,23.3,0.3,0.3,106,87,3,13.6,98,208,103,48,139,0.8,24,22,12,86 +2014,265168,201412,,,,,,,3,1,0,169,61,71,21.4,1.2,0.8,129,78,5,12.7,82,172,49,64,98,0.8,34,14,11,93 +2014,900114,201409,0,0,0,0,0,0,2,1,0,161,59,71,22.8,1.2,1.2,110,70,2,12.8,97,230,107,57,152,0.8,17,16,20,83 +2014,680010,201406,0,0,0,0,0,0,3,1,,163,57,70,21.5,1.2,1.5,110,66,1,15.2,81,193,41,82,103,1,18,12,15,86 +2014,591253,201409,0,0,0,0,0,0,2,1,0,157,49,64,19.9,1.5,1.2,99,69,1,13.2,86,161,53,66,84,0.8,24,16,19,83 +2014,492570,201404,0,0,0,0,0,0,3,1,2,164,59,68,21.9,0.7,1.2,100,60,1,13.4,76,176,66,58,105,0.8,20,12,17,93 +2014,122296,201407,0,0,0,0,0,0,1,1,1,153,47,66,20.1,0.6,0.4,112,68,1,12.4,80,193,59,82,99,0.8,19,11,14,84 +2014,597659,201411,0,0,0,0,0,0,3,1,3,167,69,85,24.7,0.9,0.8,132,84,1,13.6,101,184,62,79,92,0.7,18,20,41,96 +2014,391933,201404,0,0,0,0,0,0,2,1,1,177,87,89,27.8,1,1,125,80,1,15.2,103,214,76,68,131,1.1,34,34,40,75 +2014,880016,201412,,,,,,,3,1,1,163,56,69,21.1,1,0.2,110,70,1,14,87,140,62,54,73,0.7,15,13,10,111 +2014,7386,201406,,,1,1,,,2,1,3,164,62,84,23.1,0.5,0.8,138,72,1,13.2,120,176,56,55,109,1.3,20,13,17,57 +2014,166015,201407,0,0,0,0,0,0,1,1,0,153,63,85,26.9,1.5,1.5,136,84,1,12.6,82,145,67,49,83,1,32,31,16,64 +2014,99917,201404,0,0,0,0,0,0,3,1,0,161,56,75,21.6,0.9,1.2,120,80,1,12.9,92,227,64,57,157,0.7,28,21,11,96 +2014,872410,201406,0,0,0,0,0,0,3,1,0,160,61,74,23.8,1,0.7,118,78,1,12.8,92,148,78,42,90,0.8,20,14,12,84 +2014,314169,201410,0,0,1,0,0,0,2,1,2,163,71,84,26.7,1.2,1.5,116,80,1,16.7,97,222,77,66,140,1,29,20,43,82 +2014,403607,201412,0,0,0,0,0,0,2,1,0,168,72,85,25.5,1.5,1.2,120,70,1,15.3,100,199,60,52,135,0.8,23,31,22,116 +2014,585046,201405,,,,,,,2,1,1,160,51,69,19.9,0.9,0.9,110,70,1,13.1,88,167,60,75,80,0.9,16,11,12,78 +2014,951170,201410,,,,,,,1,1,2,167,66,87,23.7,1.2,1.5,110,70,1,12.8,91,123,73,60,48,0.6,17,20,36,118 +2014,582270,201412,0,0,0,0,0,0,2,1,0,156,54,71,22.2,1,0.7,121,69,1,12.4,86,247,74,67,165,0.8,16,15,16,77 +2014,161754,201412,0,0,0,0,0,0,2,1,0,164,61,74,22.7,1.2,1.2,110,55,1,11.6,95,177,74,52,110,0.8,19,22,9,89 +2014,570215,201409,,,,,,,2,1,1,177,50,62,16,0.5,0.5,117,65,1,16.4,78,137,51,47,79,0.8,26,22,18,124 +2014,686497,201404,0,0,0,0,0,0,2,1,1,178,85,91,26.8,1,0.8,134,69,1,13.3,99,205,50,68,127,1.3,30,27,22,66 +2014,325443,201407,0,0,0,0,0,0,2,1,1,165,62,80,22.8,1,1.2,132,86,1,8.9,94,211,68,71,128,0.5,14,10,11,143 +2014,874943,201410,0,0,0,0,0,0,2,1,2,166,66,76,24,1,1.5,130,70,2,15.2,92,180,68,51,115,0.7,23,14,10,143 +2014,739454,201412,0,0,0,0,0,0,2,1,1,160,61,74,23.8,1,0.9,125,80,1,14.1,98,175,84,59,99,0.6,23,12,10,154 +2014,203606,201407,0,0,0,0,0,0,3,1,1,154,52,65,21.9,0.8,1.2,114,72,1,10.6,106,185,83,92,76,0.8,19,12,14,81 +2014,262452,201411,,,,,,,2,1,1,158,50,70,20,0.9,1.2,110,71,1,12,96,168,83,60,91,0.8,27,14,19,82 +2014,868027,201412,,,,,,,2,1,1,148,46,62,21,1.2,1.2,124,66,1,16.3,84,187,80,64,107,0.5,17,15,9,143 +2014,512815,201411,0,0,0,0,0,0,2,1,2,180,95,92,29.3,1,1,136,85,1,14.8,75,128,86,41,70,0.9,25,22,17,104 +2014,146621,201407,0,0,0,0,0,0,2,1,7,170,71,87,24.6,0.8,1,119,70,1,16.1,94,169,86,56,96,1,26,35,55,87 +2014,478840,201410,0,0,0,0,0,0,2,1,0,145,44,73,20.9,0.8,0.7,120,80,1,12.5,99,218,89,72,128,0.6,18,10,46,118 +2014,367840,201412,0,0,0,0,0,0,2,1,1,171,75,85,25.6,1.2,1.5,124,78,1,14.7,108,199,89,54,127,0.8,23,29,26,114 +2014,315140,201408,0,0,0,0,0,0,2,1,2,176,75,86,24.2,1.5,1.5,130,70,1,16.2,102,211,88,69,124,1.3,26,24,41,56 +2014,803990,201408,,,,,1,,2,1,1,147,59,92,27.3,0.6,0.4,150,70,1,12.8,85,217,100,75,122,0.5,20,15,35,124 +2014,777889,201409,0,0,0,0,0,0,2,1,3,155,53,75,22.1,1.2,0.9,109,67,1,12.7,104,178,45,55,114,0.7,13,13,20,98 +2014,397613,201404,0,0,0,0,0,0,2,1,0,153,54,80,23.1,0.3,0.3,108,72,1,12.2,95,119,99,51,48,0.9,23,7,12,66 +2014,925523,201402,0,0,1,0,0,0,2,1,0,155,63,75,26.2,0.8,0.7,129,67,1,14.6,86,178,99,42,116,0.8,25,18,17,75 +2014,642807,201405,0,0,0,0,0,0,3,1,1,165,64,72,23.5,0.5,0.5,105,77,1,13.5,99,227,103,58,148,0.8,21,13,36,81 +2014,860440,201403,0,0,0,0,0,0,2,1,0,151,52,73,22.8,1.2,2,120,70,1,12.2,98,241,112,81,138,0.6,22,13,16,111 +2014,570104,201402,0,0,0,0,0,0,2,1,0,164,54,69,20.1,1.2,1.2,120,80,1,12.5,74,171,112,64,85,0.6,19,15,13,105 +2014,17079,201408,0,0,0,0,0,0,2,1,1,169,55,69,19.3,0.8,0.8,110,70,1,13.1,79,173,112,62,89,0.8,14,8,10,88 +2014,599419,201407,0,0,0,0,0,0,2,1,1,175,80,89,26.1,1.5,1.5,136,82,1,15.9,91,176,115,35,118,0.8,24,32,19,122 +2014,326639,201405,0,0,0,0,0,0,2,1,1,156,65,88,26.7,1,1.2,108,70,1,13.3,88,175,116,51,100,0.6,22,15,17,111 +2014,698594,201412,0,0,0,0,0,0,2,1,0,149,48,77,21.6,1.2,1.2,115,71,1,13.3,86,258,125,52,181,0.8,23,17,23,76 +2014,153174,201408,0,0,0,0,0,0,2,1,1,178,85,93,26.8,1.2,1.2,120,80,1,14.8,92,233,129,47,160,1,33,43,50,96 +2014,347108,201406,,,,,,,2,1,1,177,64,83,20.4,0.9,0.9,121,63,1,16,96,220,129,52,142,0.9,36,26,32,96 +2014,27490,201405,0,0,1,0,0,0,3,1,1,169,63,78,22.1,1,0.8,137,65,3,15.2,112,170,122,35,110,0.9,20,15,18,89 +2014,975124,201403,0,0,1,0,0,0,2,1,4,149,48,74,21.6,0.4,0.2,119,72,1,12.8,88,190,134,70,92,0.8,24,14,18,75 +2014,515572,201412,0,0,0,0,0,0,1,1,1,156,51,65,21,1.2,1.2,138,89,1,10.5,80,145,133,49,70,0.5,31,32,17,145 +2014,318399,201410,0,0,0,0,0,0,1,1,1,161,54,72,20.8,1,0.6,110,70,1,16.3,86,238,140,63,147,0.9,39,33,33,91 +2014,506774,201407,0,0,0,0,0,0,2,1,0,152,54,74,23.4,1,1,110,80,1,12.8,95,172,152,48,94,0.8,16,12,11,93 +2014,88450,201405,0,0,0,0,0,0,3,1,1,175,70,82,22.9,0.4,0.5,123,79,1,14.4,99,231,152,51,150,1,24,19,17,83 +2014,548365,201408,0,0,0,0,0,0,2,1,2,172,75,84,25.4,0.9,0.9,134,89,1,15.7,94,268,157,59,177,1,21,26,43,92 +2014,259727,201411,0,0,1,0,0,0,2,1,4,168,82,100,29.1,1.5,0.8,151,92,1,17.7,107,216,173,43,138,1.1,24,20,91,70 +2014,815191,201410,,,,,,,2,1,1,146,58,89,27.2,0.7,1,120,80,1,14.4,76,154,187,54,62,0.6,40,51,127,115 +2014,122776,201410,0,0,0,0,0,0,2,1,3,179,73,82,22.8,0.9,0.7,110,70,1,15.7,101,179,187,48,93,1.1,23,20,97,73 +2014,432825,201412,,,,,,,2,1,0,168,69,92,24.4,1.2,1,130,80,1,16.6,99,136,325,38,33,1.2,19,19,22,61 +2014,883814,201403,,,1,,,,2,1,0,159,60,79,23.7,0.8,0.6,150,90,1,13.8,90,204,204,45,118,0.8,23,22,29,72 +2014,627341,201403,0,0,0,0,0,0,3,1,1,162,41,58,15.6,0.6,0.7,100,70,1,14.5,84,195,24,60,130,0.7,22,12,13,106 +2014,370738,201406,0,0,0,0,0,0,2,1,0,160,55,64,21.5,0.9,0.9,110,70,1,14.2,76,276,255,49,176,0.5,15,13,13,142 +2014,498848,201406,0,0,0,0,0,0,2,1,1,170,67,79,23.2,1.5,1.5,120,80,1,14.9,80,183,262,57,73,0.9,26,40,51,101 +2014,194080,201409,0,0,0,0,0,0,2,1,0,158,61,84,24.4,0.6,0.5,120,70,1,14.7,97,213,273,38,120,0.9,32,62,43,67 +2014,30622,201408,0,0,0,0,0,0,2,1,0,159,51,71,20.2,0.1,1,90,60,1,14.6,88,254,256,52,151,0.9,20,25,41,69 +2014,909438,201404,,,,,,,2,1,0,159,77,100,30.5,0.3,0.3,110,70,1,12.1,89,208,318,33,111,1.2,29,31,113,64 +2014,422180,201412,0,1,0,0,0,0,2,2,1,168,75,90,26.6,0.5,0.3,132,77,1,14.2,152,196,86,46,132,0.8,21,25,8,104 +2014,149741,201411,0,0,0,0,0,0,3,2,2,180,81,81,25,1.2,1.5,138,82,1,16.4,101,192,93,44,129,1.1,27,48,53,80 +2014,301124,201411,0,0,0,0,0,0,2,2,0,162,60,82,22.9,0.5,0.8,110,70,2,16.1,81,157,97,66,72,1.1,22,19,14,84 +2014,166324,201408,0,0,0,0,0,0,2,2,0,169,59,71,20.7,1.2,1.2,136,79,1,13.7,106,245,91,54,172,1.1,18,9,19,78 +2014,665633,201402,0,0,0,0,0,0,3,2,0,166,78,92,28.3,1.2,1,148,90,,15.1,89,229,106,34,174,0.9,17,17,20,93 +2014,924778,201412,,,,1,,,2,2,0,158,70,81,28,0.4,0.5,133,77,1,13.8,99,153,94,48,86,0.8,18,13,17,107 +2014,801526,201404,0,0,0,0,0,0,2,2,1,171,59,71,20.2,1.2,1.2,100,60,1,15.2,64,176,90,70,88,1.1,25,19,19,86 +2014,749074,201410,0,0,0,0,0,0,2,2,2,165,82,90,30.1,1.5,1.5,100,60,1,14.5,103,182,66,60,108,0.8,37,53,68,104 +2014,808467,201410,0,0,0,0,0,0,2,2,1,173,77,95,25.7,0.8,1.2,119,71,1,14.2,111,174,117,41,109,0.9,21,34,109,93 +2014,674034,201412,0,0,0,0,0,0,3,2,1,169,59,73,20.7,1.5,0.7,100,60,1,14.3,79,142,77,62,64,0.9,12,12,12,96 +2014,6374,201405,,,1,,,,2,2,1,169,66,85,23.1,1,1,125,66,1,13.4,90,214,75,51,148,1.2,19,15,20,62 +2014,831349,201411,0,0,0,0,0,0,2,2,0,164,67,87,24.9,0.9,1,130,80,1,15.8,96,207,71,56,136,0.8,33,47,19,105 +2014,590480,201401,0,0,0,0,0,0,2,2,5,174,68,89,22.5,0.9,1,111,70,1,14.2,108,220,112,69,128,1.2,48,46,271,67 +2014,824794,201412,0,0,0,0,0,0,2,2,1,177,74,79,23.6,1,1,120,80,1,16.2,93,235,125,65,145,1,24,17,29,90 +2014,66424,201411,,,1,,,,2,2,7,166,64,87,23.2,0.5,0.4,117,61,2,13.7,95,175,110,51,102,1.1,27,16,132,69 +2014,395781,201410,0,0,0,0,0,0,3,2,0,166,60,77,21.8,1.5,1.5,138,82,1,13.9,93,201,124,46,130,0.9,23,20,14,91 +2014,427754,201406,0,0,1,0,1,0,2,2,2,180,100,98,30.9,1.2,1.5,140,90,1,16,98,169,120,43,102,1.2,23,34,31,66 +2014,689889,201405,0,0,1,1,0,0,3,2,1,172,69,86,23.3,0.9,0.9,120,70,1,12.8,136,154,56,35,108,1,22,20,31,77 +2014,718591,201412,0,0,0,0,0,0,2,2,1,166,56,77,20.3,0.5,0.2,130,73,1,15.3,93,214,55,85,117,0.8,30,18,40,103 +2014,607439,201411,,,,,,,2,2,0,163,47,70,17.7,1.5,1.5,110,69,1,11.9,64,207,50,63,134,0.6,26,17,27,129 +2014,480668,201412,0,0,0,0,0,0,2,2,5,155,69,84,28.7,1,1,110,70,1,12.4,116,178,133,54,97,0.6,14,12,23,113 +2014,416133,201406,,,,,,,2,2,3,173,72,84,24.1,1.2,1,122,86,1,15.9,196,220,165,50,137,1,24,34,48,84 +2014,1009573,201404,0,0,0,0,0,1,2,2,2,170,75,88,26,1.2,1,124,80,4,14.3,90,240,155,38,171,1.1,23,15,37,71 +2014,637160,201405,0,0,1,0,1,0,2,2,2,175,92,102,30,0.8,1.2,129,80,1,14.9,119,145,160,47,66,1.2,37,27,51,63 +2014,637115,201410,0,0,0,0,0,0,2,2,2,165,62,81,22.8,0.4,1,150,90,1,16.3,117,192,164,54,105,0.9,19,17,32,86 +2014,750632,201412,0,0,0,0,0,0,3,2,,165,63,76,23.1,1,1.2,118,71,1,14.7,103,216,45,90,117,0.8,23,12,15,105 +2014,568865,201407,0,0,0,0,0,0,2,2,1,175,68,78,22.2,1.2,1.2,129,83,1,15.1,98,187,163,62,93,1.2,19,16,29,75 +2014,153851,201409,0,0,0,0,1,0,3,2,0,174,85,94,28.1,1.2,0.4,120,80,1,15.3,83,141,151,37,102,1.1,27,35,29,73 +2014,51442,201405,0,0,0,0,0,0,2,2,1,174,62,80,20.5,1.5,1.5,129,81,1,15.8,89,177,355,29,77,0.8,17,15,31,125 +2014,4263,201410,,,,,,,2,2,0,174,66,82,21.8,1.5,1.2,110,70,1,13.5,85,245,44,94,142,1,27,21,19,86 +2014,466014,201411,,,,,,,2,2,0,177,83,89,26.5,1.5,1.5,120,77,1,16.2,73,158,253,25,82,0.8,19,14,25,119 +2014,793962,201407,0,0,1,0,0,0,2,2,3,179,85,97,26.5,1,1,128,75,1,17.1,83,194,195,36,119,1.2,22,21,26,70 +2014,92313,201408,0,0,0,0,0,0,2,2,0,170,77,91,26.6,0.7,0.8,110,70,1,15.7,116,245,316,48,162,1.2,19,17,26,68 +2014,242976,201402,0,0,1,0,0,0,2,2,0,169,66,84,23.1,0.8,0.9,152,92,3,16.1,82,239,312,44,133,0.9,29,36,30,89 +2014,56250,201409,0,0,0,0,0,0,3,2,1,172,74,88,25,1.2,1.2,126,76,1,14.5,97,250,743,42,95,1,26,26,47,90 +2014,518558,201403,0,0,1,0,0,0,2,2,2,162,72,82,27.4,1.2,1.5,140,90,1,15.6,106,193,295,42,90,1.1,24,23,59,74 +2014,530990,201407,0,0,0,0,0,0,2,2,3,163,61,88,23,1,0.9,110,78,1,14.1,71,152,213,51,58,1.2,58,99,145,65 +2014,179714,201411,,,,,,,3,2,2,162,73,98,27.8,0.8,0.8,135,88,1,16.6,78,235,369,32,129,1,52,69,79,75 +2014,248846,201412,0,0,0,0,0,0,2,3,2,173,70,83,23.4,2,1.5,110,70,1,14.4,92,170,83,58,95,0.9,20,21,33,105 +2014,830306,201409,0,0,0,0,0,0,2,3,3,177,68,79,21.7,1.2,1.2,126,70,1,14.9,87,158,82,81,61,1,30,25,22,82 +2014,680897,201409,,,1,,,,2,3,0,160,43,67,16.8,0.6,0.9,140,90,4,13.8,91,237,94,92,126,0.9,19,15,30,88 +2014,115809,201409,0,0,0,0,0,0,3,3,1,185,111,112,32.4,1.2,1.2,132,76,1,14.4,96,181,94,45,117,1,22,16,34,88 +2014,447033,201409,0,0,0,0,0,0,2,3,2,169,66,79,23.1,1.2,1.2,130,80,1,15.7,91,185,81,66,1028,0.8,11,15,21,118 +2014,790184,201401,0,0,0,0,0,0,3,3,0,172,65,73,22,0.8,0.9,117,65,4,16.7,83,193,66,46,134,1,21,18,25,84 +2014,706602,201412,,,,,,,2,3,5,176,78,89,25.2,0.9,0.7,140,101,2,15.5,101,180,103,62,97,0.8,25,24,39,111 +2014,660791,201406,0,0,0,0,0,1,2,3,2,176,58,73,18.7,1,1,106,62,1,14,70,186,68,67,105,0.8,19,19,23,111 +2014,934726,201405,0,0,1,0,0,0,3,3,6,163,66,79,24.8,0.8,0.8,110,70,1,15.1,97,194,70,63,117,0.9,38,33,32,90 +2014,929195,201405,,,,,,,2,3,5,180,62,75,19.1,1,0.5,110,80,1,14,89,217,119,70,123,1.2,16,7,27,68 +2014,652416,201407,,,,,,,2,3,1,176,74,88,23.9,1,1.5,110,70,1,16,83,196,110,48,126,1,27,39,34,118 +2014,42231,201411,0,0,0,0,0,0,2,3,1,175,78,86,25.5,1.2,1,112,62,1,15.5,101,166,106,47,97,0.9,27,18,27,101 +2014,300860,201408,,,1,,,,2,3,7,162,60,80,22.9,0.8,1,140,100,1,16,96,238,117,54,160,0.6,20,23,167,147 +2014,914480,201410,0,0,0,0,0,0,2,3,1,168,53,73,18.8,1,0.7,100,60,1,15,94,197,118,50,123,0.9,19,20,18,97 +2014,149142,201412,0,0,0,0,0,0,2,3,0,149,73,100,32.9,0.6,0.6,130,80,1,13,94,232,125,42,165,0.9,22,15,22,67 +2014,284267,201412,,,,,,,3,3,1,173,68,77,22.7,0.9,0.4,106,69,1,15.8,82,195,96,65,110,0.9,17,10,30,98 +2014,781532,201405,0,0,1,0,0,0,1,3,2,171,81,86,27.7,0.9,1.2,141,100,1,14.3,82,160,120,30,114,0.7,18,17,32, +2014,884968,201412,0,0,0,0,0,1,2,3,2,172,84,91,28.4,1.2,1.2,143,93,1,16.9,99,217,126,55,137,1.1,16,13,45,77 +2014,593157,201411,,,,,,,3,3,0,166,59,75,21.4,1,1,120,73,1,14.5,75,174,111,36,115,1,16,14,32,81 +2014,91351,201404,0,0,0,0,0,0,2,3,1,176,83,89,26.8,0.9,1.5,120,80,1,16.3,93,189,134,39,123,1,45,43,30,92 +2014,266734,201405,,,,,,,1,3,2,171,77,90,26.3,1.5,1.5,111,76,1,14.3,82,250,150,50,170,0.8,23,26,64,111 +2014,161624,201408,,,1,,,,2,3,2,168,61,78,21.6,1.2,1.2,109,72,1,14.8,121,169,139,70,71,0.9,26,25,187,94 +2014,942204,201407,0,0,0,0,0,0,3,3,7,177,83,92,26.5,1.2,0.9,122,72,1,15.3,95,187,142,41,118,0.8,20,25,67,111 +2014,107142,201407,0,0,0,0,0,0,3,3,0,181,68,77,20.8,0.6,0.5,116,74,1,15.2,74,163,57,62,90,1.1,20,11,11,86 +2014,390119,201406,0,0,0,0,0,0,2,3,2,160,59,80,23,1.5,1.5,115,75,1,13.8,92,199,57,60,129,0.7,31,33,24,131 +2014,49567,201412,,,,,,,2,3,4,172,66,76,22.3,0.8,1,110,70,1,16,92,163,151,62,70,0.7,25,16,49,122 +2014,212433,201406,0,0,0,0,0,0,2,3,3,171,64,71,21.9,0.6,0.8,115,75,1,13.7,82,156,52,72,73,0.5,19,16,18,135 +2014,452930,201410,,,,,,,2,3,2,179,68,76,21.2,1,1.5,132,65,1,13,106,144,52,92,41,0.9,22,15,21,109 +2014,302816,201403,,,,,,,3,3,0,172,57,70,19.3,2,1.5,100,60,1,15.1,75,178,50,60,108,1.1,20,9,13,77 +2014,461601,201408,0,0,0,0,0,0,2,3,3,183,86,90,25.7,1.5,1.5,110,62,1,16.4,112,177,50,50,117,0.9,19,26,27,105 +2014,733109,201410,0,0,0,0,0,0,2,3,4,178,84,90,26.5,1.5,2,123,80,1,15.8,97,199,171,39,126,1,28,34,67,88 +2014,835408,201408,,,,,,,2,3,3,169,75,89,26.3,0.8,1.2,110,60,1,15.6,92,205,154,48,126,0.9,17,16,17,93 +2014,479874,201412,0,0,0,0,0,0,1,3,0,165,64,78,23.5,1,1,140,90,1,15.5,89,202,163,42,127,0.9,17,21,26,92 +2014,126561,201412,,,,,,,2,3,1,183,107,109,32,1,1,131,84,1,17.2,95,199,161,36,131,1,68,144,77,81 +2014,532261,201406,0,0,0,0,0,0,2,3,0,168,77,96,27.3,1,0.7,120,80,1,15.3,100,197,160,34,131,1,20,29,25,86 +2014,995240,201411,,,,,,,2,3,1,176,67,74,21.6,1.2,1.2,100,60,1,14.7,96,211,46,75,126,0.9,26,21,25,98 +2014,633585,201408,0,0,0,1,0,0,2,3,1,162,77,95,29.3,0.7,0.5,133,105,1,15.5,158,194,177,52,106,1.4,26,68,62,57 +2014,974726,201412,0,0,0,0,0,0,3,3,0,174,79,94,26.1,0.8,0.6,115,83,1,15.5,87,186,187,44,105,1,15,19,23,78 +2014,1005250,201404,0,0,0,0,0,0,3,3,2,181,74,77,22.6,1.5,1.5,110,70,1,14.6,87,157,45,61,87,1.2,20,11,15,79 +2014,582044,201411,0,0,0,0,0,0,2,3,2,158,76,91,30.4,1.5,1.5,138,88,1,16,77,169,199,43,86,0.9,31,36,113,111 +2014,753924,201402,0,0,0,0,0,0,2,3,1,175,64,81,20.9,0.5,0.5,128,78,1,15.6,108,226,196,61,126,0.9,17,20,15,93 +2014,344450,201409,0,0,0,0,0,0,2,3,1,175,83,90,27.1,1.6,1.2,130,80,1,15.9,72,216,201,38,137,1.2,17,14,27,73 +2014,829452,201406,0,0,0,0,0,0,3,3,0,164,54,66,20.1,0.3,0.3,90,58,1,12.5,79,143,43,76,58,0.6,17,11,15,138 +2014,913340,201411,,,,,,,2,3,3,162,62,81,23.6,0.8,0.7,127,90,2,11.2,101,183,211,48,92,0.8,29,20,39,107 +2014,84322,201402,0,0,0,0,0,0,2,3,2,180,76,86,23.5,0.8,0.7,129,80,1,15.8,102,195,210,44,109,1,34,34,72,83 +2014,889412,201408,0,0,0,0,0,0,2,3,2,180,91,97,28.1,0.8,0.8,130,90,1,15.5,92,224,203,54,129,1,27,25,47,98 +2014,83553,201405,,,,,,,2,3,2,178,63,75,19.9,1.5,1.5,130,85,1,15.2,79,165,36,55,102,1,27,28,29,90 +2014,128799,201412,0,0,0,0,0,0,3,3,2,180,80,86,24.7,1.5,1.2,120,70,1,15.6,94,175,457,33,97,1.1,27,34,30,80 +2014,911766,201405,,,,,,,2,3,2,174,81,87,26.8,1,1,130,80,2,16,102,282,295,45,178,1,35,56,36,87 +2014,738257,201410,,,,,,,2,3,2,176,72,81,23.2,0.8,1,100,70,1,16.1,92,209,433,36,,0.9,27,32,44,101 +2014,817595,201411,0,0,0,0,0,0,3,3,5,162,65,78,24.8,0.8,1,138,80,1,15.9,112,297,1210,45,103,1,26,29,45,81 +2014,38967,201404,0,0,0,0,0,0,2,3,2,173,74,91,24.7,1.5,1.5,120,75,1,15,95,219,318,37,118,0.9,30,31,78,91 +2014,321944,201412,,,,,,,2,3,2,162,73,81,27.8,1.2,1.5,160,88,1,15.5,89,171,295,60,52,1,33,29,85,90 +2014,670343,201404,0,0,0,0,0,0,2,3,2,173,69,82,23.1,1.5,1.5,119,79,1,15.2,86,175,294,52,64,1.1,12,30,201,74 +2014,218649,201406,0,0,0,0,0,0,2,3,3,170,71,91,24.6,1.5,1.5,110,85,1,16.2,94,256,288,45,153,0.9,23,38,141,100 +2014,550255,201405,0,0,0,0,0,0,3,3,1,184,93,87,27.5,0.9,0.7,130,80,1,15,93,187,220,42,101,1,23,13,72,87 +2014,82470,201411,0,0,0,0,0,0,2,3,0,179,79,86,24.7,0.6,0.8,130,87,2,17.5,91,231,277,39,136,1.1,52,116,65,83 +2014,183606,201411,0,0,0,0,0,0,2,3,3,176,80,86,25.8,1.2,1.2,115,79,1,15.9,131,341,1112,43,119,0.9,29,78,85,103 +2014,92198,201403,0,0,1,1,0,0,2,3,3,171,71,100,24.3,0.8,0.9,150,98,2,16,141,178,238,52,78,0.8,43,56,146,103 +2015,554452,201511,,,,,,,2,1,0,161,75,90,28.9,0.1,0.5,110,70,1,12,73,249,78,58,175,0.8,15,22,10,79 +2015,318669,201512,,,,1,,,2,1,0,155,63,76,26.2,0.6,0.7,94,56,1,13.7,92,172,130,63,83,0.8,21,19,16,78 +2015,68379,201512,0,0,0,0,0,0,2,1,0,163,65,75,24.5,1,1,124,75,1,13.3,93,170,65,50,107,0.8,23,16,15,87 +2015,204730,201508,0,0,0,0,0,0,2,1,0,153,50,68,21.4,1.5,1,107,64,1,12.6,84,165,39,58,98,0.8,19,11,13,92 +2015,242807,201511,0,0,0,0,0,0,2,1,0,162,56,70,21.3,0.5,0.7,135,86,1,13.1,103,213,156,63,119,0.8,22,13,10,78 +2015,828529,201512,0,0,1,0,0,0,2,1,0,162,61,80,23.2,1,0.9,138,86,1,13,99,145,122,48,72,0.8,21,20,22,84 +2015,183321,201503,,,,,,,3,1,0,151,47,68,20.6,0.6,1.5,110,69,1,14,73,190,41,66,115,0.8,116,30,22,79 +2015,701404,201504,0,0,0,0,0,0,2,1,0,153,65,76,27.8,0.7,0.7,116,70,1,13.4,95,252,66,63,175,0.7,28,19,12,90 +2015,760226,201510,,,,,,,2,1,0,161,57,71,22,1,0.8,110,70,1,11.6,87,187,75,54,118,0.7,16,10,10,91 +2015,497301,201510,0,1,1,0,0,0,2,1,0,141,36,62,18.1,0.6,0.6,121,69,1,12.4,102,193,71,95,83,1.2,31,17,14,45 +2015,334101,201510,0,0,0,0,0,0,1,1,0,178,118,106,37.2,1,0.9,135,85,1,16.6,101,195,85,51,127,1.1,38,79,31,85 +2015,888234,201503,,,,,,,2,1,0,153,48,67,20.5,0.7,0.8,132,97,1,13.6,70,229,76,83,130,0.7,24,13,11,92 +2015,874800,201511,,,,1,,,2,1,0,163,72,95,27.1,0.3,0.3,130,73,1,15.9,114,101,59,47,42,0.7,32,31,15,119 +2015,297087,201502,0,0,1,0,0,0,3,1,0,157,69,97,28,0.9,0.6,120,80,1,12.8,116,206,62,57,136,0.7,29,26,20,90 +2015,771097,201512,0,0,1,0,0,0,2,1,0,154,59,73,24.9,0.5,0.9,110,80,1,13.4,90,191,95,84,88,0.9,28,24,15,65 +2015,917270,201505,,,1,1,,,2,1,0,151,58,78,25.4,0.5,0.5,135,80,1,13,117,200,102,57,122,0.6,18,14,15,104 +2015,888305,201507,,,1,,,,2,1,0,154,56,87,23.6,0.7,0.9,120,70,1,11.4,84,193,102,67,105,1,26,20,37,57 +2015,326432,201512,,,,,,,3,1,0,159,60,78,23.7,0.5,0.7,108,75,1,11.9,103,209,103,43,145,0.7,19,18,19,99 +2015,181909,201512,0,0,1,0,0,0,2,1,0,151,70,94,30.7,0.7,0.5,147,78,1,11.2,97,163,105,63,79,0.6,22,18,13,101 +2015,674823,201512,0,0,0,0,0,0,2,1,0,166,56,64,20.3,1,1.2,130,73,1,13.9,88,218,50,53,155,0.9,22,15,12,69 +2015,657227,201512,0,0,0,0,0,0,2,1,0,168,73,92,25.9,1.2,1.2,122,76,1,10.3,82,203,112,52,128,0.7,24,8,38,97 +2015,160611,201510,,,1,,,,3,1,0,152,61,76,26.4,1,0.9,126,72,1,14.2,86,167,118,41,102,0.7,81,73,24,88 +2015,501161,201511,0,0,1,1,0,0,2,1,0,145,56,95,26.6,0.9,0.7,150,89,1,13.2,89,204,118,62,118,0.7,24,18,13,85 +2015,487160,201509,0,0,0,0,0,0,3,1,0,159,55,74,21.8,1.2,1.2,114,62,1,12.1,85,173,44,56,108,0.7,18,19,15,97 +2015,277202,201512,0,0,0,0,0,0,1,1,0,159,73,83,28.9,0.9,0.9,120,83,1,13.1,99,160,137,47,85,0.7,25,20,7,87 +2015,79207,201510,0,0,0,0,0,0,2,1,0,145,54,76,25.7,0.6,0.8,139,89,1,13.2,112,171,270,35,82,0.7,12,12,14,89 +2015,326742,201512,,,,,,,2,1,0,164,53,68,19.7,1.2,1.5,113,75,1,13.4,73,155,36,67,80,0.6,17,10,13,117 +2015,559370,201510,0,0,0,0,0,0,3,1,0,154,51,67,21.5,1,1,95,61,1,12.7,84,199,38,77,117,0.5,17,11,10,139 +2015,874754,201512,,,,,,,2,1,0,159,72,92,28.5,1,1.2,120,80,1,13.7,93,227,152,64,132,0.5,30,29,31,140 +2015,558657,201510,,,1,,,,2,1,0,160,56,76,21.9,1,1.5,135,90,1,13.3,103,232,59,68,152,0.7,21,13,12,91 +2015,674294,201508,,,,1,,,2,1,0,153,66,86,28.2,0.9,0.9,120,70,1,12.9,108,216,164,57,126,0.8,27,20,15,73 +2015,860440,201502,0,0,0,0,0,0,2,1,0,153,49,70,20.9,1.2,1.5,127,89,1,14.3,88,197,115,53,121,0.6,18,14,11,111 +2015,593325,201511,0,0,0,0,0,0,2,1,0,161,48,64,18.5,0.8,0.9,111,80,1,12.9,95,214,55,78,125,0.8,18,13,14,85 +2015,611137,201504,0,0,1,0,1,0,2,1,0,158,58,83,23.2,1,0.7,130,70,1,13.1,129,223,199,47,136,0.8,21,26,16,78 +2015,247493,201512,,,,,,,3,1,0,169,58,74,20.3,0.8,0.9,110,80,1,10.7,93,170,66,89,67,1,12,10,18,68 +2015,118108,201512,0,0,0,0,0,0,2,1,0,157,61,77,24.7,0.9,1,128,73,1,10.2,91,235,188,36,161,0.7,22,27,16,96 +2015,144786,201511,,,,,,,1,1,0,162,70,86,26.7,1,0.8,130,84,1,8.3,86,160,85,54,89,0.8,23,18,29,84 +2015,354989,201509,,,1,,1,,2,1,0,155,73,90,30.4,1,0.6,132,87,1,13.1,90,189,198,49,100,0.8,31,48,40,78 +2015,880016,201511,,,,,,,2,1,0,164,55,69,20.4,0.4,1,110,70,1,13.3,81,148,60,59,77,0.7,18,14,13,110 +2015,431791,201512,,,,,,,2,1,0,162,57,76,21.7,0.9,1.2,120,80,1,13.3,95,175,57,65,98,0.7,12,11,9,99 +2015,332997,201504,0,0,0,0,0,0,2,1,0,163,64,75,24.1,1.5,1.2,130,80,1,13.5,95,194,70,77,103,0.7,23,16,9,92 +2015,892360,201511,0,0,0,0,0,0,2,1,0,158,64,81,25.6,0.6,0.5,120,80,1,14.1,101,173,51,62,101,0.8,25,8,36,82 +2015,529690,201511,,,1,,,,2,1,0,160,57,76,22.3,0.8,0.8,130,80,1,14,90,178,55,80,87,0.7,19,15,12,85 +2015,394061,201504,,,,,,,2,1,0,157,56,71,22.7,1.2,1.2,125,80,1,13.8,83,177,71,69,93,0.7,32,33,69,93 +2015,215084,201511,,,,,,,2,1,0,161,52,77,20.1,1.2,1,103,67,1,10.8,110,201,69,80,107,0.8,35,14,12,80 +2015,335520,201509,0,0,0,0,0,0,2,1,0,152,57,71,24.7,0.3,0.3,108,66,1,12.7,86,175,93,54,102,0.7,21,37,16,95 +2015,4664,201512,,,,,,,2,1,0,160,51,64,19.9,1.2,1.2,118,74,1,13.5,99,193,90,62,113,0.8,17,9,14,82 +2015,692726,201505,,,,,,,2,1,0,164,56,78,20.8,1.2,0.9,100,70,1,11.6,87,137,48,57,70,1,21,15,16,80 +2015,211452,201504,,,,,,,2,1,0,170,50,69,17.3,1.2,1,120,80,1,14.4,99,260,92,117,124,1.2,33,25,18,48 +2015,962008,201510,,,,,,,2,1,0,164,47,62,17.5,0.5,0.5,110,70,1,11.7,72,143,52,47,85,0.6,12,10,10,110 +2015,872410,201511,,,,,,,3,1,0,158,60,80,24,1,1.2,100,65,1,11.8,86,144,87,46,80,0.7,18,15,12,97 +2015,430621,201505,,,,,,,3,1,0,155,59,84,24.6,0.5,0.7,134,73,1,12.7,100,189,46,54,125,0.7,31,23,15,89 +2015,584556,201507,0,0,0,0,0,0,2,1,0,153,67,88,28.6,1.5,1,123,77,1,13.3,105,189,97,49,120,0.7,28,31,10,92 +2015,572384,201504,0,0,0,0,0,0,2,1,0,170,53,71,18.3,0.5,0.7,98,60,1,12,95,175,101,49,106,0.8,25,22,29,102 +2015,979090,201512,0,0,0,0,0,0,2,1,0,153,58,75,24.8,1,1.5,140,95,1,13.3,94,201,109,69,110,0.9,20,17,21,71 +2015,318399,201507,0,0,0,0,0,0,2,1,0,161,52,74,20.1,1,0.5,112,70,1,16,91,221,118,60,137,1,33,24,27,80 +2015,688532,201511,,,,,,,3,1,0,155,55,85,22.9,0.7,1,117,65,1,14.4,85,202,108,48,132,0.8,30,31,22,77 +2015,9866,201507,,,,,,,2,1,0,159,72,93,28.5,0.6,0.5,114,64,1,11.1,89,141,120,47,70,0.8,27,37,21,78 +2015,225956,201504,,,,,,,2,1,0,163,54,75,20.3,0.9,0.8,120,80,1,14.6,96,262,126,63,173,1.2,29,23,20,62 +2015,136945,201511,,,,,,,2,1,0,168,59,67,20.9,1,1.2,120,76,1,11.6,100,161,37,62,91,0.8,14,9,13,82 +2015,839897,201511,,,1,,,,2,1,0,148,51,72,23.3,1.2,1,139,98,1,12.9,83,170,241,32,89,0.6,28,36,22,111 +2015,734700,201511,,,1,,,,3,1,0,158,62,76,24.8,1,0.7,137,84,1,12.6,88,166,35,87,72,0.8,34,23,10,76 +2015,299704,201503,,,,,,,2,1,0,156,78,94,32.1,0.8,1,110,80,1,11.2,85,221,207,64,115,0.8,38,53,32,79 +2015,391933,201504,0,0,0,0,0,0,2,1,0,179,83,86,25.9,0.6,0.7,120,80,1,15.5,85,162,37,62,92,1.1,30,28,35,71 +2015,952290,201511,,,,1,1,,2,1,0,159,60,80,23.7,0.9,1.5,137,84,1,14.5,149,174,299,55,59,0.7,29,53,53,89 +2015,793017,201507,,,,,,,2,1,0,156,55,73,22.6,0.9,0.9,120,70,1,12.1,106,189,148,48,111,0.8,23,26,46,79 +2015,554585,201505,0,0,0,0,0,0,3,1,0,162,64,83,24.4,0.5,0.7,140,100,1,12.2,88,236,131,52,157,0.7,25,16,33,92 +2015,138407,201505,0,0,1,0,0,0,2,1,0,174,88,91,29.1,0.7,0.9,130,85,2,13.2,99,116,63,48,55,1.9,24,17,14,37 +2015,538038,201509,0,0,0,0,0,0,3,1,0,167,73,79,26.2,0.3,0.3,178,109,1,13.6,99,206,200,48,118,1.2,22,15,38,77 +2015,79250,201505,0,0,0,0,0,0,2,1,0,138,42,72,22.1,0.1,0.5,142,82,2,13.9,92,167,75,50,102,0.6,27,13,12,105 +2015,163129,201501,0,0,0,0,0,0,2,1,0,169,69,81,24.2,0.8,0.9,100,60,4,15.8,109,223,131,53,143,1.2,29,15,23,65 +2015,146621,201507,0,0,0,0,0,0,2,1,0,169,67,84,23.5,0.8,1,104,61,2,15.6,93,169,89,59,92,0.9,35,38,54,88 +2015,219397,201510,0,0,1,0,0,0,3,1,0,145,49,78,23.3,0.8,1.2,140,90,3,12.1,156,185,133,37,131,0.6,30,33,54,108 +2015,211438,201511,,,,,,,2,1,0,181,97,104,29.6,0.5,0.4,125,80,4,16.1,121,253,250,57,146,1.2,31,37,157,61 +2015,819784,201510,0,0,0,0,0,0,3,1,3,166,63,81,22.9,0.6,0.4,125,76,1,14.9,108,243,65,66,164,0.9,32,19,39,93 +2015,166015,201510,0,0,0,0,0,0,1,1,0,152,64,81,27.7,1.2,1.2,136,78,1,12,84,151,63,51,87,0.8,21,19,14,83 +2015,591253,201504,0,0,0,0,0,0,1,1,0,158,51,75,20.4,1,1,90,58,1,12,82,165,62,68,85,0.7,19,17,16,97 +2015,99917,201504,0,0,0,0,0,0,3,1,0,160,52,70,20.3,1.2,1.2,128,80,1,12.7,82,203,68,44,145,0.6,20,11,11,114 +2015,623836,201512,,,,,,,2,1,3,159,60,86,23.7,0.2,0.7,104,73,1,14,84,244,64,79,152,0.7,22,20,11,96 +2015,260923,201511,0,0,0,1,0,0,2,1,1,178,72,85,22.7,0.8,0.7,133,89,1,15.5,125,116,64,50,53,1,21,24,16,86 +2015,267185,201512,,,,,,,2,1,2,163,47,67,17.7,1,0.8,120,75,1,14.2,91,132,65,67,52,0.7,27,11,16,94 +2015,69398,201504,0,0,0,0,0,0,2,1,0,150,58,83,25.8,1,1.2,133,82,1,14.4,95,213,78,63,134,0.8,20,14,12,78 +2015,166324,201508,0,0,0,0,0,0,2,1,0,168,60,75,21.3,0.9,0.9,130,73,1,13.7,88,240,78,56,168,1.1,22,16,21,77 +2015,484978,201504,0,0,1,0,0,0,2,1,0,161,65,81,25.1,0.5,0.6,142,80,1,15.1,108,217,53,107,99,0.9,22,19,15,65 +2015,914987,201501,0,0,1,0,0,0,2,1,0,144,61,99,29.4,0.4,0.6,130,90,1,9.2,98,140,53,41,88,0.7,25,21,18,83 +2015,403607,201512,0,0,0,0,0,0,2,1,1,169,69,81,24.2,1.2,1,110,70,1,14.7,91,179,61,60,107,0.8,21,18,16,115 +2015,985608,201512,,,,,,,2,1,2,171,64,74,21.9,1,1,117,70,1,8.9,88,189,61,70,106,0.9,14,14,12,74 +2015,468872,201512,0,0,0,0,0,0,3,1,1,159,63,74,24.9,1,0.8,118,78,1,14.6,99,181,55,60,110,0.9,15,17,20,78 +2015,897251,201504,0,0,0,0,0,0,2,1,1,153,49,62,20.9,0.8,0.6,122,75,1,13.5,86,185,57,58,116,1,21,20,14,67 +2015,811603,201511,,,,,,,3,1,2,172,70,75,23.7,1.2,1.2,119,73,1,13.8,94,180,75,68,97,0.6,18,14,15,114 +2015,642807,201511,0,0,0,0,0,0,3,1,1,165,65,73,23.9,0.7,0.5,110,60,1,13.3,92,233,66,63,157,0.7,26,22,68,94 +2015,814279,201512,0,0,0,0,0,0,3,1,1,166,75,82,27.2,1.2,1.5,136,95,1,15.6,76,174,76,50,108,1,22,21,17,65 +2015,23682,201510,,,,,,,2,1,6,168,70,84,24.8,1.2,1,130,80,1,12.5,89,186,83,92,77,1.3,32,21,21,59 +2015,572493,201505,0,0,0,0,0,0,3,1,1,165,68,72,25,1.5,1.5,116,71,1,12.6,103,200,50,66,122,0.8,15,10,9,82 +2015,285079,201501,0,0,0,0,0,0,2,1,1,167,98,99,35.1,1.5,1.5,130,76,1,12.6,80,177,79,53,108,0.7,25,31,26,111 +2015,802213,201504,,,,,,,2,1,1,157,51,74,20.7,1.2,1.2,124,82,1,10.6,83,180,82,56,107,0.8,20,13,11,80 +2015,414177,201510,0,0,0,0,0,0,2,1,0,152,52,69,22.5,0.3,1,109,69,1,14,86,179,81,69,93,0.7,15,7,13,103 +2015,992522,201512,0,0,0,0,0,0,2,1,2,149,40,62,18,0.7,0.5,116,67,1,9.2,84,180,81,105,59,0.7,27,19,29,95 +2015,642899,201511,0,0,0,0,0,0,2,1,0,151,50,68,21.9,0.8,0.7,128,79,1,13.7,71,173,48,73,90,0.6,95,59,180,105 +2015,882980,201511,0,0,0,0,0,0,3,1,1,156,54,70,22.2,1,1,115,69,1,13.3,87,212,87,85,110,0.6,18,14,19,107 +2015,315140,201509,0,0,0,0,0,0,2,1,0,177,70,84,22.3,1.5,1.5,135,83,1,15.5,96,218,92,74,125,1.3,19,18,25,60 +2015,47374,201511,0,0,0,0,0,0,3,1,0,166,78,82,28.3,1,1.2,124,68,1,13.5,83,204,86,49,137,0.7,22,27,17,102 +2015,204278,201512,0,0,0,0,0,0,2,1,0,156,54,78,22.2,0.9,1,90,60,1,12.9,89,170,89,66,86,0.7,23,16,10,91 +2015,875758,201512,,,,,,,2,1,1,151,51,79,22.4,0.8,1,105,78,1,12.9,90,188,47,51,127,0.6,20,17,13,112 +2015,203606,201507,0,0,0,0,0,0,2,1,1,154,52,68,21.9,1.2,0.9,120,90,1,12.6,125,218,90,74,126,0.6,21,16,18,113 +2015,492570,201504,0,0,0,0,0,0,3,1,1,164,57,68,21.2,0.5,0.4,110,70,1,13.9,84,173,45,72,93,0.9,22,15,14,80 +2015,572549,201512,,,,,,,3,1,2,165,74,86,27.2,0.5,0.8,126,73,1,13.5,105,189,100,48,121,0.9,34,68,50,72 +2015,739454,201512,0,0,0,0,0,0,2,1,0,160,61,74,23.8,1,1,120,80,1,15,82,202,98,59,123,0.8,32,21,11,107 +2015,316400,201504,0,0,0,0,0,0,2,1,1,163,66,79,24.8,1,1.2,108,66,1,13.3,86,166,110,51,93,0.8,15,10,12,87 +2015,570104,201508,0,0,0,0,0,0,2,1,0,162,56,69,21.3,1.2,1.2,104,67,1,12.7,83,149,104,46,86,0.6,16,13,8,114 +2015,498848,201509,0,0,0,0,0,0,2,1,1,170,69,80,23.9,1.2,1.2,120,80,1,17.1,68,225,111,52,150,1.1,34,66,76,75 +2015,686497,201504,0,0,0,0,0,0,1,1,1,178,87,89,27.5,1.2,1.2,128,81,1,14.5,96,218,111,71,124,1.2,29,20,26,72 +2015,390119,201506,0,0,0,0,0,0,2,1,4,163,63,84,23.7,1,1,100,60,1,14,116,211,109,65,125,0.8,36,44,34,112 +2015,948405,201510,0,0,0,0,0,0,2,1,3,165,52,71,19.1,0.2,0.1,98,56,1,10.7,80,141,41,56,77,0.7,16,10,15,97 +2015,120410,201512,0,0,0,0,0,0,3,1,0,163,75,89,28.2,1.2,1.2,120,72,1,15.6,111,226,123,44,157,1,30,42,35,83 +2015,502784,201511,0,0,0,0,0,0,3,1,3,181,83,87,25.3,1,0.9,119,70,1,14.7,103,169,118,37,108,0.9,21,23,30,105 +2015,347907,201509,,,1,,1,,2,1,1,158,62,85,24.8,0.9,1.2,140,90,1,13.9,95,212,120,63,125,0.9,40,41,20,68 +2015,383109,201503,0,0,0,0,0,0,3,1,1,164,60,81,22.3,0.6,0.8,134,72,1,15.1,91,239,117,64,152,1,21,19,31,83 +2015,334536,201512,,,,,,,2,1,1,162,58,72,22.1,0.6,1,114,65,1,13,98,193,117,75,94,0.7,26,21,11,101 +2015,446652,201507,1,0,0,0,1,0,3,1,1,156,69,91,28.4,0.2,0.8,120,80,5,13.5,102,154,124,64,65,0.8,34,25,30,78 +2015,784916,201512,,,,,,,1,1,1,166,67,80,24.3,1,0.4,115,67,1,12.4,100,223,121,52,147,0.5,14,7,11,145 +2015,56993,201512,,,1,,,,2,1,2,169,74,93,25.9,1,1,142,90,1,14.9,97,154,132,60,67,1,17,36,88,84 +2015,611279,201504,0,0,0,0,0,0,2,1,0,159,77,86,30.5,1.5,1.5,140,88,1,13.7,91,176,135,39,110,0.8,19,25,25,79 +2015,478840,201510,0,0,0,0,0,0,3,1,0,145,45,70,21.4,1.2,0.8,110,70,1,12,98,209,135,71,111,0.6,17,9,42,117 +2015,944984,201510,0,0,1,0,0,0,2,1,0,167,67,86,24,0.7,0.5,130,80,1,14.5,100,211,34,79,125,0.8,24,24,16,100 +2015,676313,201511,,,,,,,2,1,1,163,48,62,18.1,1,1.2,110,70,1,13.2,85,146,35,56,83,0.5,21,14,9,148 +2015,264628,201502,0,0,0,0,0,0,3,1,0,161,44,60,17,0.4,0.3,110,70,1,12.9,93,180,35,69,104,0.5,22,14,9, +2015,370738,201506,0,0,0,0,0,0,2,1,0,160,55,81,21.5,0.9,0.8,111,66,1,13.3,91,292,143,38,225,0.7,10,13,13,96 +2015,56250,201509,0,0,0,0,0,0,3,1,1,172,73,86,24.7,1.2,1.2,122,80,1,15.3,98,262,146,65,168,1,26,36,57,90 +2015,290774,201512,0,0,0,0,0,1,3,1,0,158,66,80,26.4,1.2,1,110,70,1,13.5,95,170,155,42,97,0.8,14,13,10,77 +2015,637115,201510,0,0,1,0,0,0,2,1,1,164,60,78,22.3,1,0.8,146,87,1,15.2,110,192,158,54,106,0.9,19,16,34,88 +2015,975124,201512,0,0,1,0,1,0,3,1,3,149,49,68,22.1,0.5,0.3,144,84,1,13.2,85,200,154,66,100,0.8,25,15,18,75 +2015,237719,201507,0,0,0,0,0,0,2,1,2,169,69,86,24.2,1.2,1.2,139,89,1,15.4,115,195,154,40,138,1,27,27,30,83 +2015,548365,201512,,,,,,,2,1,2,172,78,87,26.4,1.2,1.2,140,90,1,15.9,85,257,162,54,170,0.8,25,28,46,118 +2015,691082,201507,0,0,0,0,0,0,2,1,1,175,63,77,20.6,1,1.2,118,77,1,14.7,88,144,166,50,60,0.7,17,21,17,147 +2015,606567,201509,,,,,,,2,1,1,149,61,85,27.5,0.8,0.6,160,80,1,11.9,75,217,166,51,132,0.6,20,12,19,104 +2015,752067,201512,0,0,0,0,0,0,2,1,1,166,71,87,25.8,1,1,121,82,1,14.2,93,207,167,46,128,1.2,22,14,28,71 +2015,345207,201505,0,0,1,0,0,0,3,1,1,159,63,79,24.9,1.2,1,162,100,1,13.6,97,224,163,68,125,0.8,27,21,25,80 +2015,663811,201505,0,0,0,1,0,0,2,1,1,149,53,73,23.9,1,1,130,70,1,13.2,116,143,185,43,62,0.5,23,27,33,135 +2015,359531,201512,,,,,,,3,1,0,166,61,76,22.1,1.5,1.5,167,118,1,15.5,97,176,187,37,102,1,20,40,21,87 +2015,163650,201511,0,0,0,0,0,0,2,1,2,155,46,64,19.1,1.5,1.2,117,73,1,14.2,112,233,171,108,90,0.5,44,52,231,129 +2015,669498,201509,,,1,,,,2,1,1,138,50,98,26.3,9.9,0.3,126,81,1,13.9,84,208,196,48,120,0.7,30,26,31,85 +2015,481042,201512,0,0,0,0,0,0,2,1,1,160,50,71,19.5,0.9,1,87,60,1,13.2,96,200,192,57,104,0.6,17,19,19,110 +2015,742999,201509,0,0,0,0,0,0,3,1,2,167,68,81,24.4,1.2,1.2,110,70,1,15.6,82,185,225,45,95,1,28,37,21,93 +2015,512815,201512,0,0,0,0,0,0,2,1,2,180,98,96,30.2,1.2,1.2,139,81,1,14.8,84,125,188,31,56,1,21,20,18,92 +2015,519824,201509,,,,,,,3,1,2,144,58,94,28,0.7,0.6,120,80,2,13,145,277,213,63,171,0.7,37,28,31,90 +2015,422663,201512,,,,,,,2,1,2,158,60,76,24,0.9,0.7,117,73,1,14.5,120,219,199,48,131,0.9,17,15,31,69 +2015,776098,201504,0,0,0,0,0,0,3,1,0,174,79,90,26.1,1.5,1.5,116,76,1,15.9,149,188,678,27,87,0.7,27,44,33,135 +2015,386280,201511,,,,1,,,3,1,1,165,64,83,23.5,1.5,2,130,80,1,14.3,231,245,247,62,133,0.9,23,24,37,94 +2015,138307,201503,0,0,1,0,0,0,2,1,0,155,87,94,36.2,0.8,0.7,132,84,1,14.7,94,166,325,43,58,0.5,34,42,47,133 +2015,518558,201508,0,0,1,0,0,0,1,1,2,162,71,81,27.1,1.2,1.2,130,80,1,15.5,104,182,226,38,98,1.1,30,21,48,74 +2015,122776,201510,0,0,0,0,0,0,2,1,0,179,76,85,23.7,1,1,120,80,1,15.2,110,161,319,39,69,1,21,23,84,81 +2015,153174,201510,0,0,0,0,0,0,2,1,2,176,92,93,29.7,1.2,1.5,130,80,1,15.2,110,240,285,46,137,1,25,48,46,95 +2015,633307,201507,0,0,0,0,0,0,3,1,1,176,79,91,25.5,0.6,0.3,147,87,1,14.2,109,232,260,35,145,0.8,21,30,48,112 +2015,824794,201512,0,0,0,0,0,0,2,3,1,178,73,84,23,1.2,1,120,70,1,16.4,86,218,86,46,155,1,18,16,25,89 +2015,440107,201511,0,0,0,0,0,0,2,3,0,172,70,84,23.7,1.5,1,115,69,1,15.1,99,227,82,47,163,0.8,17,31,37,112 +2015,77197,201511,0,0,0,0,0,0,2,3,2,181,75,88,22.9,1,1.2,120,70,1,16.8,117,247,88,57,172,0.9,21,24,28,102 +2015,941551,201506,0,0,0,0,0,0,2,3,3,165,55,74,20.2,1.2,1.5,120,70,1,14.9,93,211,88,55,138,0.8,29,28,49,103 +2015,461601,201508,0,0,0,0,0,0,2,3,3,182,89,94,26.9,1,1,135,80,1,16,111,199,106,48,130,0.9,53,83,70,104 +2015,913340,201511,,,,,,,2,3,0,161,61,81,23.5,0.9,1.2,118,80,1,10.2,92,196,94,47,130,0.8,31,38,26,106 +2015,558741,201507,,,,,,,2,3,0,169,60,78,21,1,1.2,110,69,1,15.5,88,194,99,45,129,0.7,24,38,114,113 +2015,107142,201509,0,0,0,0,0,0,2,3,1,182,76,73,22.9,0.4,0.6,118,70,1,15.9,88,197,74,69,113,1.2,24,13,12,77 +2015,914480,201510,0,0,0,0,0,0,3,3,0,168,51,72,18.1,1,0.7,118,78,1,15.3,100,224,112,61,146,0.9,21,21,19,97 +2015,884968,201512,0,0,0,0,0,0,2,3,2,172,83,91,28.1,0.8,1,129,86,1,16.6,93,202,112,59,121,1,20,14,50,85 +2015,421359,201504,,,,,,,2,3,2,177,83,86,26.5,1.5,1.5,130,70,1,14.9,101,153,107,64,67,1.2,36,51,54,73 +2015,115809,201509,0,0,0,0,0,0,1,3,2,185,111,106,32.4,0.8,1.5,130,85,1,15.2,111,194,119,42,128,1,22,13,45,87 +2015,909278,201512,0,0,0,0,0,0,3,3,2,174,72,76,23.8,1.2,1.5,110,70,1,14.3,100,156,121,42,90,1.2,23,28,52,76 +2015,396870,201512,0,0,0,0,0,0,2,3,7,172,69,83,23.3,1.2,1,115,55,1,14.9,76,206,121,49,132,1,27,52,65,87 +2015,302816,201507,0,0,0,0,0,0,3,3,0,174,61,76,20.1,2,2,118,78,1,13.9,72,179,72,42,123,1,28,17,15,86 +2015,593157,201512,0,0,0,0,0,0,2,3,0,169,58,78,20.3,0.7,0.3,132,78,1,14,103,163,66,52,98,0.8,17,14,21,102 +2015,680897,201504,0,0,1,0,0,0,2,3,0,160,44,65,17.2,0.9,1,134,71,3,13.8,84,237,62,87,138,1,21,15,18,70 +2015,830306,201509,0,0,0,0,0,0,2,3,3,177,70,80,22.3,0.9,1.5,133,64,1,15.2,94,140,64,66,61,0.8,26,20,21,90 +2015,793962,201507,0,0,0,0,0,0,2,3,2,179,89,96,27.8,1.2,1.2,129,75,1,16.2,89,218,133,44,147,1.4,17,20,22,58 +2015,212433,201509,0,0,0,0,0,0,2,3,3,171,57,67,19.5,1,1.2,120,70,1,13.7,86,171,64,80,78,0.6,19,13,23,111 +2015,387855,201511,0,0,1,0,0,0,2,3,2,175,76,86,24.8,1.2,1,123,74,1,14.5,119,211,148,47,134,1.1,21,17,53,73 +2015,452930,201511,,,,,,,2,3,2,180,76,86,23.5,1.5,1.5,134,68,1,12.7,104,157,55,90,56,0.8,21,15,29,124 +2015,652416,201509,,,,,,,3,3,2,179,76,88,23.7,1.5,1.2,120,80,1,17.2,83,204,142,46,130,0.9,24,36,36,110 +2015,177527,201511,,,,,,,3,3,1,164,49,71,18.2,0.8,0.7,124,72,1,14,110,175,153,63,81,1,28,27,23,83 +2015,233974,201506,0,0,0,0,0,0,3,3,1,158,50,72,20,0.5,0.5,100,60,1,12.7,81,206,57,89,105,0.8,21,15,13,96 +2015,674034,201512,0,0,0,0,0,0,2,3,1,170,60,72,20.8,0.9,0.6,103,59,2,13.8,82,148,52,62,75,1,11,11,14,85 +2015,753924,201512,0,0,0,0,0,0,2,3,1,175,65,74,21.2,1.2,1,124,89,1,15.5,106,215,165,48,134,1.1,15,14,15,79 +2015,91351,201504,0,0,0,0,0,0,3,3,2,176,88,94,28.4,1.2,1,130,80,1,16.5,106,213,162,46,135,1,55,78,52,92 +2015,300860,201505,,,1,,,,3,3,6,161,62,83,23.9,1,1,140,80,1,15.4,77,244,164,57,154,0.7,29,24,170,123 +2015,126561,201512,0,0,0,0,0,0,2,3,1,183,105,109,31.4,0.8,1,132,88,1,18.2,116,213,171,39,140,0.9,41,76,50,91 +2015,532261,201504,0,0,0,0,0,0,3,3,0,169,78,95,27.3,1.2,0.8,120,85,1,16.6,111,231,168,35,162,0.9,23,27,33,97 +2015,466014,201510,0,0,0,0,0,0,2,3,1,178,83,88,26.2,1.5,1.5,126,76,1,15.6,92,167,169,33,100,0.8,20,21,25,118 +2015,671580,201509,,,,,,,2,3,4,168,74,90,26.2,0.7,1,120,71,1,16.4,91,202,167,59,109,0.8,21,21,51,111 +2015,9175,201507,,,,,,,2,3,2,173,61,73,20.4,1,0.7,96,72,3,17.4,79,179,201,38,100,1,37,47,37,81 +2015,995240,201511,,,,,,,3,3,1,176,65,76,21,1.5,1.5,130,80,1,15.3,103,222,319,74,84,1,26,19,22,86 +2015,690677,201502,0,0,0,0,0,0,2,3,1,171,75,86,25.6,1.2,0.9,110,70,1,15.7,71,196,243,59,88,1.1,36,49,32,76 +2015,1010623,201502,0,0,0,0,1,0,2,3,1,173,84,93,28.1,0.8,0.8,123,85,1,16.9,101,244,440,48,,1,27,21,20,76 +2015,908152,201511,0,0,0,0,0,0,2,3,2,172,88,94,29.7,1.2,0.9,129,79,1,16.6,90,171,442,33,93,0.8,31,48,51,112 +2015,921924,201510,0,0,0,0,0,0,1,3,7,182,109,110,32.9,1.5,1.5,135,80,1,16.4,102,266,256,58,157,1,46,88,53,87 +2015,934252,201511,,,,,,,2,3,5,171,62,74,21.2,1,0.8,168,111,1,14.5,98,182,269,64,64,1,48,48,334,82 +2015,114537,201504,,,,,,,2,3,2,174,68,75,22.5,1,0.8,120,80,1,17.2,93,224,234,56,121,1.2,53,37,57,65 +2015,670343,201504,0,0,0,0,0,0,3,3,3,173,72,87,24.1,1.2,1.5,119,79,1,15.7,99,201,279,48,97,1,25,34,209,82 +2015,486441,201512,0,0,1,0,0,0,3,3,4,173,85,90,28.4,0.8,1,136,96,1,17,93,155,279,39,60,1.3,30,45,92,62 +2015,365630,201510,,,,,,,2,3,2,164,93,100,34.6,1.2,1.5,110,70,1,15.4,101,268,878,43,99,0.8,28,33,76,119 +2015,38967,201511,0,0,0,0,0,0,2,3,2,173,83,94,27.7,1,1.2,135,80,1,15.5,109,203,303,41,101,0.9,26,28,107,92 +2015,218649,201509,0,0,0,0,0,1,2,3,2,171,73,87,25,1.2,1,142,85,1,16.3,79,220,259,38,130,0.7,19,29,115,133 +2015,161624,201511,0,0,1,0,0,0,2,3,2,167,62,82,22.2,1,1.2,141,100,1,16,131,184,227,66,72,0.8,29,29,164,100 +2015,39217,201512,,,,,,,2,3,6,170,85,103,29.4,0.7,0.9,129,76,1,17.7,137,214,325,46,103,0.8,38,53,128,105 +2015,185597,201511,0,0,0,0,0,0,3,3,2,173,85,97,28.4,0.5,0.5,122,88,1,16,139,253,250,44,159,0.9,34,75,72,97 +2015,416462,201503,0,0,0,0,0,0,2,3,1,178,88,93,27.8,0.7,0.5,118,76,1,15.7,158,236,270,33,149,1,38,56,58,93 +2015,876492,201503,,,1,,,,2,2,1,165,59,71,21.7,0.8,0.6,146,87,1,16.5,94,206,84,62,127,1.1,33,18,13,69 +2015,568865,201510,0,0,0,0,0,0,2,2,2,175,68,78,22.2,1.2,1.5,132,85,1,14.8,97,171,96,56,96,1,19,13,36,92 +2015,836494,201507,,1,1,,,,2,2,2,153,52,78,22.2,1,0.9,130,80,1,12.3,102,182,98,84,78,0.7,25,17,21,90 +2015,85219,201507,0,0,0,0,0,0,2,2,1,168,65,73,23,1.5,2,110,70,1,14.3,97,181,89,45,118,0.9,12,15,15,98 +2015,394639,201512,0,0,0,1,0,0,2,2,7,170,73,85,25.3,0.8,0.8,118,70,3,17.4,109,227,89,56,153,1,42,44,88, +2015,197894,201512,0,0,0,0,0,0,3,2,4,160,60,76,23.4,0.7,1,139,89,1,15.9,84,162,81,40,106,0.9,24,16,58,92 +2015,946687,201512,0,0,0,0,0,0,2,2,2,157,54,66,21.9,0.9,0.9,120,80,1,14.3,93,189,97,62,107,0.8,18,15,7,82 +2015,530990,201511,0,0,0,0,0,0,2,2,2,162,60,90,22.9,1,0.6,150,90,1,15.2,109,124,67,48,63,1,71,82,151,80 +2015,418137,201503,0,0,0,0,0,0,1,2,1,174,60,74,19.8,1,1,92,61,1,16.8,82,130,65,40,77,0.9,18,17,16,93 +2015,153851,201508,0,0,0,0,1,0,2,2,0,173,85,90,28.4,0.5,0.9,120,80,1,16.3,99,138,106,37,79,0.9,21,23,20,78 +2015,1005250,201504,0,0,0,0,0,0,3,2,1,182,76,76,22.9,1.2,1.5,110,75,1,13.4,99,159,105,60,78,1,23,22,22,96 +2015,540586,201505,0,0,1,0,0,0,1,2,2,161,65,85,25.1,0.9,1.2,133,100,1,14.5,96,173,119,53,96,0.9,17,13,12,90 +2015,483473,201510,,,1,,,,2,2,1,163,59,75,22.2,0.7,0.7,146,85,1,10.8,98,192,119,51,117,1,14,13,51,75 +2015,689889,201512,0,0,1,1,0,0,2,2,0,172,69,85,23.3,1,0.9,136,80,1,13.6,149,132,116,39,70,1,24,24,18,81 +2015,913247,201512,0,0,0,0,0,0,2,2,0,166,63,86,22.9,0.5,0.7,120,80,1,14.2,104,211,119,42,145,0.9,23,23,19,88 +2015,305256,201512,,,,,,,3,2,6,167,79,84,28.3,1.2,1.2,110,60,1,14.7,89,169,127,47,96,1,17,18,32,84 +2015,284267,201512,,,,,,,3,2,1,174,69,82,22.8,1.2,1.5,119,73,1,15.3,97,205,123,72,108,0.8,23,8,32,112 +2015,688302,201508,0,0,0,0,0,0,2,2,1,163,62,78,23.3,1,0.8,105,64,1,14.2,89,215,152,40,145,1.1,31,33,40,70 +2015,606125,201512,,,,1,,,2,2,2,171,87,98,29.8,0.8,1.5,130,88,1,15.3,134,235,144,48,158,1,24,23,40,78 +2015,535689,201507,0,0,0,0,0,0,2,2,2,170,62,79,21.5,1,1.2,115,66,1,15.8,85,152,46,59,84,1,22,22,20,84 +2015,970458,201509,0,0,0,0,0,0,2,2,1,160,67,87,26.2,0.6,1,118,76,1,15.9,110,218,490,40,115,1,21,29,27,82 +2015,346335,201510,0,0,0,0,1,0,2,2,2,172,80,85,27,0.9,0.4,137,86,1,17,112,272,285,51,164,1.2,30,30,30,70 +2015,324678,201511,0,0,0,0,0,0,1,2,3,167,72,90,25.8,1,1,117,78,2,17.4,91,195,350,43,82,0.8,23,20,30,111 +2015,356551,201512,0,0,1,0,0,0,3,2,0,166,73,89,26.5,1,1,139,77,1,13.4,110,223,198,58,125,0.7,22,27,20,102 +2015,4263,201512,0,0,0,0,0,0,3,2,0,174,67,79,22.1,1.5,1.2,115,70,1,13.6,86,217,38,71,138,1,18,18,28,80 +2015,128799,201503,,,,,,,3,2,1,181,79,85,24.1,1.5,1.2,139,93,1,15.8,80,175,307,37,76,0.9,26,34,33,93 +2015,808467,201511,0,0,0,0,0,0,2,2,1,175,79,98,25.8,1,1,100,60,1,15.9,101,171,187,46,87,0.9,29,46,98,93 +2015,230178,201502,,,1,,,,2,2,2,170,80,92,27.7,1.2,1.2,155,90,1,14.1,122,215,235,44,124,1,53,18,77,80 +2015,302146,201511,0,0,0,0,0,0,3,2,3,171,77,96,26.3,1,1,140,90,1,14.9,110,204,198,43,121,1.1,37,27,92,73 +2015,84322,201504,0,0,0,0,0,0,2,2,1,180,85,92,26.2,1,0.6,131,83,1,15.4,121,186,211,48,96,1,25,18,58,83 +2015,887943,201512,,,,,,,2,2,1,173,81,89,27.1,1.5,1.5,120,80,1,15.1,65,197,345,34,94,0.8,20,37,90,105 +2015,266734,201504,,,,,,,1,2,2,171,76,88,26,1.2,1.2,125,89,1,14.1,77,363,280,63,244,0.9,19,32,95,96 +2015,343874,201511,0,0,0,1,0,0,2,2,0,179,80,88,25,1,0.7,126,83,1,14.9,119,106,247,29,50,0.9,101,157,62,79 +2015,798472,201507,,,,,,,3,2,0,163,63,80,23.7,1.5,1.5,118,77,1,16.1,160,271,514,51,151,1,40,66,104,85 +2015,720080,201505,,,,,1,,2,2,1,165,70,92,25.7,0.6,0.8,120,80,1,13.6,81,289,810,52,,1,37,33,76,86 +2015,127519,201511,0,0,1,0,0,0,3,2,4,168,84,103,29.8,0.9,0.8,140,85,1,15.2,134,210,298,56,94,1.1,55,49,66,66 diff --git a/data/example_g1e.sas7bdat b/data/example_g1e.sas7bdat new file mode 100644 index 0000000..50dfadc Binary files /dev/null and b/data/example_g1e.sas7bdat differ diff --git a/data/example_g1e.sav b/data/example_g1e.sav new file mode 100644 index 0000000..038382b Binary files /dev/null and b/data/example_g1e.sav differ diff --git a/data/example_g1e.xlsx b/data/example_g1e.xlsx new file mode 100644 index 0000000..2326221 Binary files /dev/null and b/data/example_g1e.xlsx differ