tamnd commited on
Commit
09e8cb9
·
verified ·
1 Parent(s): 2724a16

Add 2012-02-18 to 2012-02-24 — 7 days, 860.9K events, 7 files

Browse files
README.md CHANGED
@@ -61,9 +61,9 @@ configs:
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
- The archive currently spans from **2011-02-12** to **2015-01-03** (1,175 days), totaling **194,223,616 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
65
 
66
- We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 56.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.0 GB of Zstd-compressed Parquet. Every nested JSON field is expanded into typed columns — no JSON parsing needed downstream. The data is partitioned as `data/TABLE/YYYY/MM/DD.parquet`, making it straightforward to query with DuckDB, load with the `datasets` library, or process with any tool that reads Parquet.
67
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
@@ -136,16 +136,16 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ██████████████░░░░░░░░░░░░░░░░ 35.2M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ██████████████████████████░░░░ 66.0M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
- | 2012 | 303 | 35,221,023 | 116,241 | 9.4 GB | 2.9 GB | 2h07m | 3h14m | 2h33m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 203 | 65,974,849 | 324,999 | 21.0 GB | 6.0 GB | 2h13m | 11h56m | 3h04m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -157,7 +157,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.9M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ██████████████████████████░░░░ 33.5M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -200,8 +200,8 @@ Pull request events cover the full review cycle: opened, merged, closed, review
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ████████████████░░░░░░░░░░░░░░ 1.6M
203
- 2013 █████████████████████████████ 2.9M
204
- 2014 █████████████████████████████ 2.9M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
@@ -221,7 +221,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
221
 
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
- 2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ██████████████████████████░░░░ 6.1M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 97,485,143 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,758,569 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,866,787 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,860,756 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,798,243 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,275,120 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,953,534 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 24,624,638 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,508,678 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 236,789 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,812,641 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,184,289 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 134,444 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 179,194 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
 
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
+ The archive currently spans from **2011-02-12** to **2015-01-03** (1,176 days), totaling **194,637,563 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
65
 
66
+ We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 57.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.0 GB of Zstd-compressed Parquet. Every nested JSON field is expanded into typed columns — no JSON parsing needed downstream. The data is partitioned as `data/TABLE/YYYY/MM/DD.parquet`, making it straightforward to query with DuckDB, load with the `datasets` library, or process with any tool that reads Parquet.
67
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
 
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ██████████████░░░░░░░░░░░░░░░░ 35.2M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ██████████████████████████░░░░ 66.4M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
+ | 2012 | 303 | 35,233,561 | 116,282 | 9.4 GB | 2.8 GB | 2h05m | 3h15m | 2h30m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 204 | 66,376,258 | 325,373 | 21.2 GB | 6.1 GB | 2h13m | 12h04m | 3h04m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.9M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ██████████████████████████░░░░ 33.7M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ████████████████░░░░░░░░░░░░░░ 1.6M
203
+ 2013 █████████████████████████████ 2.9M
204
+ 2014 █████████████████████████████ 2.9M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
 
221
 
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
+ 2012 ██████████████░░░░░░░░░░░░░░░░ 3.4M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ██████████████████████████░░░░ 6.1M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 97,684,803 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,781,982 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,912,040 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,882,346 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,805,278 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,313,447 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,967,887 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 24,671,828 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,515,492 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 237,890 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,815,596 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,188,324 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 179,615 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/02/18.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5d1d38cb662dc91d8b938b7aa279b21eb51ab404a60202a70fe1bf304ad82f0c
3
- size 205222
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd8d0ebbbcaab7e6b125eec264e1c2aee4d82fb87ec67005e238ea8a1c72bf8a
3
+ size 299221
data/stars/2012/02/19.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:03e85de6e6c2c19a887ec9e56d488389d083a23a56265b0d16e7e4afba1e4fca
3
- size 222256
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caaea8ad52485b94be96f251f3621163d1197120c20355f035b89f452f449a3e
3
+ size 324968
data/stars/2012/02/20.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e3ee29d953839b8b7692a620d2c616e30763f3315d50c7fc93d8c1b72aa2c841
3
- size 249596
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03d14e4aba445809b630c1b2f4a6486515dba3e0babd881a0f7408749df2916b
3
+ size 393918
data/stars/2012/02/21.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1eaaa6ee16a914470145a242c749a204dd89a4e54e85e8a7a01f8623fa435b01
3
- size 317425
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aee5a0dfd0f9c05d46458e2f9caaf5aad84bfd00ab881845dadeeaf60d50b51c
3
+ size 478860
data/stars/2012/02/22.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f272fc2939496614b4d79f53ccb08a2cc8c0077baae038aedabd974c88313a58
3
- size 349262
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7afb528c2bf6c6d1ba9a1db3b128076216898b765c9b993ce4afdd5e57008c70
3
+ size 509240
data/stars/2012/02/23.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b35107f829e0e1d916f1fca18d0323eea62dca632101e880a5c5485371669b5c
3
- size 363479
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d5b47c97047a41e36d9c5df9ae50395d434367363a04842eb3282109d2a485c
3
+ size 521605
data/stars/2012/02/24.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7ae1518ed8fa6a3823a1f8f359afc432ccf3748425abd74dc6ad4a440ffcef34
3
- size 338579
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:163afb05cf5def2989a1c903a21a535faa9356a9196325b0c8d55395605aa0f5
3
+ size 486923
stats.csv CHANGED
@@ -363,20 +363,20 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
363
  2012-02-08,93511,0,40416,4431,6400,2607,0,0,9739,2646,22947,861,0,1008,1976,397,83,0,24684634,18.0,415670,20.6,18.0,11.8
364
  2012-02-09,92143,0,41608,4532,6955,2695,0,0,9764,2828,19041,1418,0,952,1725,539,86,0,24563625,17.3,420838,6.5,17.3,11.8
365
  2012-02-10,84780,0,37883,5343,6646,2354,0,0,8024,2425,18261,875,0,862,1662,376,69,0,22645001,16.2,351762,20.8,16.2,11.8
366
- 2012-02-11,67519,0,31166,3062,3940,1587,0,0,6277,1813,16577,602,0,532,1536,374,53,0,16505576,12.3,277671,21.8,12.3,0.0
367
- 2012-02-12,75709,0,35698,3130,4642,1752,0,0,6842,1891,17890,1056,0,751,1629,364,64,0,18560969,14.7,296881,21.9,14.7,0.0
368
- 2012-02-13,71696,0,33960,4671,5671,2194,0,0,7320,2011,12429,658,0,791,1522,398,71,0,19535334,15.5,326945,4.9,15.5,0.0
369
- 2012-02-14,90537,0,41573,4384,6901,2581,0,0,9231,2605,18750,958,0,1033,1986,452,83,0,24531385,18.5,399652,7.1,18.5,0.0
370
- 2012-02-15,72763,0,33990,3841,6001,2058,0,47,7871,2194,13079,733,0,855,1610,363,121,0,21050466,17.3,348276,7.5,17.3,0.0
371
- 2012-02-16,93342,0,42061,4445,7203,2653,0,434,9493,2690,19754,900,0,999,2159,469,82,0,25355997,20.6,415230,12.7,20.6,0.0
372
- 2012-02-17,103625,0,42872,4350,7133,11471,0,511,9900,2889,19607,1274,0,1140,1914,479,85,0,30986496,29.3,424347,22.4,29.3,0.0
373
  2012-02-18,96090,0,32991,3214,4847,20964,0,223,6822,2096,21570,527,0,651,1739,375,71,0,30093950,31.8,299221,10.9,31.8,0.0
374
- 2012-02-19,97314,0,38618,3451,5213,17933,0,288,7463,2116,18617,640,0,707,1788,380,100,0,30842576,24.3,11858980,23.2,24.3,36.4
375
- 2012-02-20,106293,0,40708,4649,6664,19749,0,361,8433,2422,19125,873,0,906,1831,481,91,0,33501533,23.8,13311814,22.8,23.8,29.6
376
- 2012-02-21,134873,0,50271,6095,9925,26398,0,657,10832,3250,22382,1060,0,1186,2109,590,118,0,43643652,27.4,16886281,48.4,27.4,33.3
377
- 2012-02-22,145291,0,55257,5910,10207,29270,0,653,12027,3821,22310,1380,0,1301,2451,595,109,0,48190956,27.3,18627388,41.0,27.3,32.9
378
- 2012-02-23,136504,0,54245,5406,9202,20621,0,792,11735,3812,24712,1277,0,1461,2507,609,125,0,43233758,26.8,17470172,36.8,26.8,42.9
379
- 2012-02-24,131985,0,51380,5084,8339,23371,0,807,11131,3404,23639,981,0,1137,2045,563,104,0,41953829,32.3,16904278,52.6,32.3,34.6
380
  2012-02-25,106359,0,38833,4646,6021,22345,0,481,7885,2532,19731,751,0,892,1713,458,71,0,32901704,29.9,12828855,40.0,29.9,40.9
381
  2012-02-26,108680,0,41624,3782,5697,23647,0,349,7584,2288,20145,574,0,894,1735,274,87,0,33755867,31.2,13068885,29.5,31.2,56.4
382
  2012-02-27,140378,0,54127,5609,8665,28455,0,810,11535,3464,22724,1091,0,1276,2018,509,95,0,46246995,31.7,18026211,51.9,31.7,34.0
@@ -1172,5 +1172,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1172
  2014-08-01,366106,1311,172446,16873,32989,17009,0,6125,31875,11145,61860,6561,933,2985,3670,0,324,0,215629842,406.0,37932947,45.9,406.0,61.6
1173
  2014-08-02,239501,853,121428,10201,16897,8661,0,1554,21146,8287,42179,3200,683,1599,2642,0,171,0,128360903,246.9,23603017,42.6,247.0,68.5
1174
  2014-08-03,264364,816,139153,12005,20039,10323,0,2289,28152,9216,32666,4024,800,1667,3011,0,203,0,144290418,265.3,25821455,38.1,265.3,51.5
 
1175
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1176
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
 
363
  2012-02-08,93511,0,40416,4431,6400,2607,0,0,9739,2646,22947,861,0,1008,1976,397,83,0,24684634,18.0,415670,20.6,18.0,11.8
364
  2012-02-09,92143,0,41608,4532,6955,2695,0,0,9764,2828,19041,1418,0,952,1725,539,86,0,24563625,17.3,420838,6.5,17.3,11.8
365
  2012-02-10,84780,0,37883,5343,6646,2354,0,0,8024,2425,18261,875,0,862,1662,376,69,0,22645001,16.2,351762,20.8,16.2,11.8
366
+ 2012-02-11,67519,0,31166,3062,3940,1587,0,0,6277,1813,16577,602,0,532,1536,374,53,0,16505576,12.3,277671,21.8,12.3,5.6
367
+ 2012-02-12,75709,0,35698,3130,4642,1752,0,0,6842,1891,17890,1056,0,751,1629,364,64,0,18560969,14.7,296881,21.9,14.7,5.6
368
+ 2012-02-13,71696,0,33960,4671,5671,2194,0,0,7320,2011,12429,658,0,791,1522,398,71,0,19535334,15.5,326945,4.9,15.5,5.6
369
+ 2012-02-14,90537,0,41573,4384,6901,2581,0,0,9231,2605,18750,958,0,1033,1986,452,83,0,24531385,18.5,399652,7.1,18.5,5.6
370
+ 2012-02-15,72763,0,33990,3841,6001,2058,0,47,7871,2194,13079,733,0,855,1610,363,121,0,21050466,17.3,348276,7.5,17.3,5.6
371
+ 2012-02-16,93342,0,42061,4445,7203,2653,0,434,9493,2690,19754,900,0,999,2159,469,82,0,25355997,20.6,415230,12.7,20.6,5.6
372
+ 2012-02-17,103625,0,42872,4350,7133,11471,0,511,9900,2889,19607,1274,0,1140,1914,479,85,0,30986496,29.3,424347,22.4,29.3,5.6
373
  2012-02-18,96090,0,32991,3214,4847,20964,0,223,6822,2096,21570,527,0,651,1739,375,71,0,30093950,31.8,299221,10.9,31.8,0.0
374
+ 2012-02-19,97314,0,38618,3451,5213,17933,0,288,7463,2116,18617,640,0,707,1788,380,100,0,30842576,34.2,324968,14.4,34.2,0.0
375
+ 2012-02-20,112272,0,43333,4928,7153,20639,0,386,9033,2610,19716,929,0,968,1970,512,95,0,35636187,34.4,393918,12.9,34.4,0.0
376
+ 2012-02-21,141432,0,51928,7360,11116,27735,0,669,11186,3342,22833,1076,0,1227,2199,641,120,0,45552109,44.5,478860,16.5,44.5,0.0
377
+ 2012-02-22,145291,0,55257,5910,10207,29270,0,653,12027,3821,22310,1380,0,1301,2451,595,109,0,48190956,45.8,509240,13.8,45.8,0.0
378
+ 2012-02-23,136504,0,54245,5406,9202,20621,0,792,11735,3812,24712,1277,0,1461,2507,609,125,0,43233758,39.4,521605,20.3,39.4,0.0
379
+ 2012-02-24,131985,0,51380,5084,8339,23371,0,807,11131,3404,23639,981,0,1137,2045,563,104,0,41953829,37.4,486923,23.0,37.4,0.0
380
  2012-02-25,106359,0,38833,4646,6021,22345,0,481,7885,2532,19731,751,0,892,1713,458,71,0,32901704,29.9,12828855,40.0,29.9,40.9
381
  2012-02-26,108680,0,41624,3782,5697,23647,0,349,7584,2288,20145,574,0,894,1735,274,87,0,33755867,31.2,13068885,29.5,31.2,56.4
382
  2012-02-27,140378,0,54127,5609,8665,28455,0,810,11535,3464,22724,1091,0,1276,2018,509,95,0,46246995,31.7,18026211,51.9,31.7,34.0
 
1172
  2014-08-01,366106,1311,172446,16873,32989,17009,0,6125,31875,11145,61860,6561,933,2985,3670,0,324,0,215629842,406.0,37932947,45.9,406.0,61.6
1173
  2014-08-02,239501,853,121428,10201,16897,8661,0,1554,21146,8287,42179,3200,683,1599,2642,0,171,0,128360903,246.9,23603017,42.6,247.0,68.5
1174
  2014-08-03,264364,816,139153,12005,20039,10323,0,2289,28152,9216,32666,4024,800,1667,3011,0,203,0,144290418,265.3,25821455,38.1,265.3,51.5
1175
+ 2014-08-04,401409,1718,195378,21869,43573,19363,0,6998,37373,14073,46148,6742,1101,2852,3806,0,415,0,232502272,466.5,40240092,53.6,466.5,0.0
1176
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1177
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0