tamnd commited on
Commit
5e8317f
·
verified ·
1 Parent(s): 40712f0

Add 2013-01-05 to 2013-01-11 — 7 days, 1.1M 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,266 days), totaling **211,537,542 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 64.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.2 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
 
@@ -71,7 +71,7 @@ The underlying data comes from [GH Archive](https://www.gharchive.org/), created
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
- **2026-03-28** — 2,805,175 events in 3851 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
@@ -86,7 +86,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
86
  09:00 ██████████████████████████████ 284.7K
87
  10:00 ███████████████████████████░░░ 257.5K
88
  11:00 ████████████████████████████░░ 267.1K
89
- 12:00 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 43.8K
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
91
  14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
92
  15:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -136,16 +136,16 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
  2013 █████████████████████████████░ 74.5M
139
- 2014 ██████████████████████████████ 76.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 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m00s |
147
- | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 6.9 GB | 3h25m | 10h51m | 4h25m |
148
- | 2014 | 231 | 75,972,281 | 328,884 | 26.3 GB | 7.0 GB | 2h32m | 14h59m | 3h32m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -155,9 +155,9 @@ Pushes are the most common event type, representing roughly half of all GitHub a
155
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
- 2012 ███████████████░░░░░░░░░░░░░░ 20.6M
159
  2013 █████████████████████████████░ 38.1M
160
- 2014 ██████████████████████████████ 38.5M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 106,156,809 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,730,841 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,429,661 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,557,326 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,995,934 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,887,425 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,546,994 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,856,170 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,743,645 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 264,906 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,968,861 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,427,825 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 194,541 | 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,267 days), totaling **211,901,832 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 64.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.1 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
 
 
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
+ **2026-03-28** — 2,824,440 events in 3852 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
 
86
  09:00 ██████████████████████████████ 284.7K
87
  10:00 ███████████████████████████░░░ 257.5K
88
  11:00 ████████████████████████████░░ 267.1K
89
+ 12:00 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 63.0K
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
91
  14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
92
  15:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
  2013 █████████████████████████████░ 74.5M
139
+ 2014 ██████████████████████████████ 76.3M
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 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
147
+ | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 6.8 GB | 3h24m | 10h48m | 4h21m |
148
+ | 2014 | 232 | 76,336,571 | 329,036 | 26.5 GB | 7.0 GB | 2h33m | 15h05m | 3h33m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
155
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
+ 2012 ███████████████░░░░░░░░░░░░░░ 20.6M
159
  2013 █████████████████████████████░ 38.1M
160
+ 2014 ██████████████████████████████ 38.7M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 106,344,376 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,748,479 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,461,335 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,573,129 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,000,168 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,923,309 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,559,660 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 26,899,534 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,749,709 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 265,882 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,971,218 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,432,195 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 194,843 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2013/01/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:637d717853d225c2b8e5403b5bfa4a9fca6b7d1c2b5301d939e66ac4f2da6c65
3
- size 277034
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b9952a75029003fd8fe1bc08e36d808ebea5928b2661b519d46b51f97e7e2b2
3
+ size 559110
data/stars/2013/01/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8827601c2b1a0f5d45315f7f00c0d9305fc25c44f72996f8b3147933d4463f9f
3
- size 284763
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf87f535b3baa12f35bd2eafe026674083d815893c47b79df9c05d4bd1b63192
3
+ size 580067
data/stars/2013/01/07.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:51a654164d2d12b05170da1ac57461fa21255fcfd6af3c4c2d8e9030e311ee48
3
- size 381303
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf437c439c0409064f0cfc2e956404e5b87da158a6856aa90e3f1e7f54f5427c
3
+ size 756516
data/stars/2013/01/08.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6637c1910980060ea827d51723eecff5802374c28799fdcabc36616e5aaac8b6
3
- size 387370
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:278bfa9717a04a7a9139d5a4d995b0372a3b81757490149709f5d08c71de0774
3
+ size 795971
data/stars/2013/01/09.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f1c8b56f5a406d0bdd37edc410921bc3c93a40a02f8f8270f7a38e0630d3d736
3
- size 383283
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b4096ad7eea288640b84800585f98f26593369015f07d16d64a8af18a6db707
3
+ size 764583
data/stars/2013/01/10.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cb3085f7024355548a795390055854d9139ccd48abb042f9eade41dad5dfe597
3
- size 362323
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5e68de96647023140612b985fec5ff178fee9c1071d8a6324fb52ca1b566648
3
+ size 727633
data/stars/2013/01/11.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f5cf000353d99cc690cd9ad77a8987da7a16e6aee3896aa4216b45e18f906633
3
- size 350058
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77393ea77edc4111b626681445acaf8e99288f6bb249bb5020cfdb424dee8beb
3
+ size 685036
stats.csv CHANGED
@@ -685,22 +685,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
685
  2012-12-26,110229,611,57145,5611,8439,3271,0,665,11489,4973,13778,749,0,1002,2413,0,83,0,34606925,25.4,537662,24.0,25.4,5.1
686
  2012-12-27,124799,671,63806,6545,10056,4072,0,809,13669,5561,15087,880,0,1135,2409,0,99,0,39957512,26.3,622862,9.2,26.3,5.1
687
  2012-12-28,119552,606,60629,7225,10678,3867,0,781,12386,4845,14138,837,0,1099,2377,0,84,0,37947284,25.7,566104,8.5,25.7,5.1
688
- 2012-12-29,97772,451,50689,4801,6901,2787,0,470,10555,3947,13628,672,0,909,1885,0,77,0,30253279,20.7,480897,9.3,20.7,0.0
689
- 2012-12-30,96094,436,52050,4859,6958,2774,0,574,10062,3739,10871,619,0,911,2150,0,91,0,30609943,22.0,463994,13.1,22.0,0.0
690
- 2012-12-31,87076,364,47518,3994,6618,2678,0,551,8543,3211,10316,597,0,953,1650,0,83,0,27923780,22.0,417815,8.1,22.0,0.0
691
- 2013-01-01,95705,441,47997,7176,9450,2472,0,396,9662,3712,10770,618,0,878,2046,0,87,0,28379686,20.8,467635,25.4,20.8,0.0
692
- 2013-01-02,145179,792,73343,8067,13098,5088,0,1246,15956,5765,16367,1088,0,1491,2738,0,140,0,47852624,30.5,744279,16.0,30.5,0.0
693
- 2013-01-03,166024,895,78656,8033,13720,5674,0,1410,15835,6490,29179,1112,0,1744,3117,0,159,0,52461276,36.1,698797,30.9,36.1,0.0
694
- 2013-01-04,152773,798,75899,9859,13955,5727,0,1260,15683,6063,17347,1168,0,1606,3268,0,140,0,50407881,33.4,684836,9.1,33.4,0.0
695
  2013-01-05,114543,614,59961,5928,8804,3303,0,720,12232,4829,13919,808,0,983,2345,0,97,0,36014176,26.8,559110,6.2,26.8,0.0
696
  2013-01-06,123807,647,65854,6587,9610,3480,0,812,12703,4992,14513,832,0,1269,2410,0,98,0,38992081,29.9,580067,7.2,29.9,0.0
697
- 2013-01-07,171712,1079,85555,9409,16556,6388,0,1803,16806,6983,20196,1299,0,1860,3587,0,191,0,57517723,32.6,17356064,34.7,32.6,42.0
698
- 2013-01-08,178666,1071,89946,10001,17261,6602,0,1375,17527,6954,20978,1464,0,1918,3397,0,172,0,59586924,47.9,17600305,28.2,47.9,43.1
699
- 2013-01-09,179459,1026,89753,10583,18350,6935,0,1736,16839,7271,20196,1374,0,2018,3208,0,170,0,60077997,68.2,18002188,38.9,68.3,33.8
700
- 2013-01-10,184111,1246,91523,11809,19520,7215,0,1626,16129,7190,21141,1542,0,1826,3169,0,175,0,60786257,80.6,18046006,30.9,80.6,25.4
701
- 2013-01-11,167858,1015,82633,14473,15506,6685,0,1516,14558,6512,18752,1272,0,1690,3083,0,163,0,55655751,87.4,16916953,36.9,87.4,41.4
702
- 2013-01-12,120793,726,63789,7301,10033,3660,0,778,10891,4669,14154,909,0,1147,2634,0,102,0,38395043,63.2,11805185,25.3,63.2,40.0
703
- 2013-01-13,138033,744,74826,7134,10460,4284,0,872,12295,5525,16764,1097,0,1183,2740,0,109,0,44012590,48.6,13793144,32.2,48.6,35.3
704
  2013-01-14,184892,1193,94519,9469,17259,7477,0,1804,17546,7389,21052,1465,0,1971,3571,0,177,0,63347392,39.7,19103940,37.7,39.7,31.2
705
  2013-01-15,190319,1274,96224,10846,18360,7286,0,1767,17908,7746,22091,1557,0,1763,3300,0,197,0,63405136,36.6,18837807,54.4,36.6,60.7
706
  2013-01-16,186721,1171,94451,9962,16781,7467,0,1899,18198,7498,22084,1532,0,1794,3730,0,154,0,63318925,54.0,18705415,53.0,54.0,33.5
@@ -1263,5 +1263,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1263
  2014-08-29,355703,1484,181670,18175,33951,17408,0,5464,32891,10924,39741,6292,1046,2390,3967,0,300,0,208205508,384.4,36619842,48.0,384.4,46.8
1264
  2014-08-30,239376,1002,131940,11173,17603,8868,0,1837,23440,7944,27145,3441,721,1508,2577,0,177,0,131322439,254.2,23892265,37.8,254.2,46.2
1265
  2014-08-31,273461,964,147715,12833,21023,10365,0,2286,27044,9241,31881,4163,765,1981,2980,0,220,0,150060794,277.6,27369801,45.0,277.6,61.3
 
1266
  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
1267
  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
 
685
  2012-12-26,110229,611,57145,5611,8439,3271,0,665,11489,4973,13778,749,0,1002,2413,0,83,0,34606925,25.4,537662,24.0,25.4,5.1
686
  2012-12-27,124799,671,63806,6545,10056,4072,0,809,13669,5561,15087,880,0,1135,2409,0,99,0,39957512,26.3,622862,9.2,26.3,5.1
687
  2012-12-28,119552,606,60629,7225,10678,3867,0,781,12386,4845,14138,837,0,1099,2377,0,84,0,37947284,25.7,566104,8.5,25.7,5.1
688
+ 2012-12-29,97772,451,50689,4801,6901,2787,0,470,10555,3947,13628,672,0,909,1885,0,77,0,30253279,20.7,480897,9.3,20.7,5.0
689
+ 2012-12-30,96094,436,52050,4859,6958,2774,0,574,10062,3739,10871,619,0,911,2150,0,91,0,30609943,22.0,463994,13.1,22.0,5.0
690
+ 2012-12-31,87076,364,47518,3994,6618,2678,0,551,8543,3211,10316,597,0,953,1650,0,83,0,27923780,22.0,417815,8.1,22.0,5.0
691
+ 2013-01-01,95705,441,47997,7176,9450,2472,0,396,9662,3712,10770,618,0,878,2046,0,87,0,28379686,20.8,467635,25.4,20.8,5.0
692
+ 2013-01-02,145179,792,73343,8067,13098,5088,0,1246,15956,5765,16367,1088,0,1491,2738,0,140,0,47852624,30.5,744279,16.0,30.5,5.0
693
+ 2013-01-03,166024,895,78656,8033,13720,5674,0,1410,15835,6490,29179,1112,0,1744,3117,0,159,0,52461276,36.1,698797,30.9,36.1,5.0
694
+ 2013-01-04,152773,798,75899,9859,13955,5727,0,1260,15683,6063,17347,1168,0,1606,3268,0,140,0,50407881,33.4,684836,9.1,33.4,5.0
695
  2013-01-05,114543,614,59961,5928,8804,3303,0,720,12232,4829,13919,808,0,983,2345,0,97,0,36014176,26.8,559110,6.2,26.8,0.0
696
  2013-01-06,123807,647,65854,6587,9610,3480,0,812,12703,4992,14513,832,0,1269,2410,0,98,0,38992081,29.9,580067,7.2,29.9,0.0
697
+ 2013-01-07,171712,1079,85555,9409,16556,6388,0,1803,16806,6983,20196,1299,0,1860,3587,0,191,0,57517723,41.5,756516,24.4,41.5,0.0
698
+ 2013-01-08,178666,1071,89946,10001,17261,6602,0,1375,17527,6954,20978,1464,0,1918,3397,0,172,0,59586924,45.0,795971,35.1,45.0,0.0
699
+ 2013-01-09,179459,1026,89753,10583,18350,6935,0,1736,16839,7271,20196,1374,0,2018,3208,0,170,0,60077997,43.2,764583,10.9,43.2,0.0
700
+ 2013-01-10,184111,1246,91523,11809,19520,7215,0,1626,16129,7190,21141,1542,0,1826,3169,0,175,0,60786257,45.7,727633,16.1,45.7,0.0
701
+ 2013-01-11,167858,1015,82633,14473,15506,6685,0,1516,14558,6512,18752,1272,0,1690,3083,0,163,0,55655751,40.1,685036,24.2,40.1,0.0
702
+ 2013-01-12,120793,726,63789,7301,10033,3660,0,778,10891,4669,14154,909,0,1147,2634,0,102,0,38395043,23.4,513562,6.5,23.4,0.0
703
+ 2013-01-13,138033,744,74826,7134,10460,4284,0,872,12295,5525,16764,1097,0,1183,2740,0,109,0,44012590,29.9,586246,6.8,29.9,0.0
704
  2013-01-14,184892,1193,94519,9469,17259,7477,0,1804,17546,7389,21052,1465,0,1971,3571,0,177,0,63347392,39.7,19103940,37.7,39.7,31.2
705
  2013-01-15,190319,1274,96224,10846,18360,7286,0,1767,17908,7746,22091,1557,0,1763,3300,0,197,0,63405136,36.6,18837807,54.4,36.6,60.7
706
  2013-01-16,186721,1171,94451,9962,16781,7467,0,1899,18198,7498,22084,1532,0,1794,3730,0,154,0,63318925,54.0,18705415,53.0,54.0,33.5
 
1263
  2014-08-29,355703,1484,181670,18175,33951,17408,0,5464,32891,10924,39741,6292,1046,2390,3967,0,300,0,208205508,384.4,36619842,48.0,384.4,46.8
1264
  2014-08-30,239376,1002,131940,11173,17603,8868,0,1837,23440,7944,27145,3441,721,1508,2577,0,177,0,131322439,254.2,23892265,37.8,254.2,46.2
1265
  2014-08-31,273461,964,147715,12833,21023,10365,0,2286,27044,9241,31881,4163,765,1981,2980,0,220,0,150060794,277.6,27369801,45.0,277.6,61.3
1266
+ 2014-09-01,364290,1391,187567,17638,31674,15803,0,4234,35884,12666,43364,6064,976,2357,4370,0,302,0,205500432,388.8,36506874,45.4,388.8,0.0
1267
  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
1268
  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