tamnd commited on
Commit
f2f3102
·
verified ·
1 Parent(s): 183cd93

Add 2011-04-30 to 2011-05-06 — 7 days, 313.6K 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,097 days), totaling **186,251,704 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 53.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.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,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,372,794 events in 3833 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
@@ -84,7 +84,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
84
  07:00 █████████████████░░░░░░░░░░░░░ 165.7K
85
  08:00 ███████████████████████████░░░ 262.4K
86
  09:00 ██████████████████████████████ 284.7K
87
- 10:00 ██████████████░░░░░░░░░░░░░░░░ 136.0K
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -133,7 +133,7 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.1M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ████████████████████████░░░░░░ 61.9M
@@ -142,7 +142,7 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 269 | 15,079,673 | 56,058 | 2.9 GB | 1.2 GB | 1h07m | 51m41s | 1h43m |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 191 | 61,920,029 | 324,188 | 19.0 GB | 5.6 GB | 2h03m | 10h44m | 2h52m |
@@ -154,7 +154,7 @@ duckdb.sql("""
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 7.2M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 ████████████████████████░░░░░░ 31.5M
@@ -175,7 +175,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 781.9K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ██████████████████████░░░░░░░░ 3.3M
@@ -198,7 +198,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
- 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 394.7K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
@@ -220,7 +220,7 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.5M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ████████████████████████░░░░░░ 5.7M
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 93,593,229 | 50.3% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,315,745 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,220,687 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,571,827 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,505,168 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,703,153 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,373,049 | 12.5% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,395,257 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,731,692 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,060,733 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 112,229 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 172,195 | 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,106 days), totaling **186,646,407 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 54.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.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,432,547 events in 3834 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
 
84
  07:00 █████████████████░░░░░░░░░░░░░ 165.7K
85
  08:00 ███████████████████████████░░░ 262.4K
86
  09:00 ██████████████████████████████ 284.7K
87
+ 10:00 ████████████████████░░░░░░░░░░ 195.8K
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.5M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ████████████████████████░░░░░░ 61.9M
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 278 | 15,474,376 | 55,663 | 3.0 GB | 1.2 GB | 1h07m | 53m10s | 1h44m |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 191 | 61,920,029 | 324,188 | 19.0 GB | 5.6 GB | 2h03m | 10h44m | 2h52m |
 
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 7.4M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 ████████████████████████░░░░░░ 31.5M
 
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 803.6K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ██████████████████████░░░░░░░░ 3.3M
 
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
+ 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 404.9K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
 
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.6M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ████████████████████████░░░░░░ 5.7M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 93,803,513 | 50.3% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,337,447 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,247,467 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,582,033 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,547,717 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,714,723 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,422,916 | 12.5% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,399,466 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,737,402 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,069,552 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 114,887 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 172,544 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/04/30.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:752f0ff1cdc187e43a1778b268315a03449258092a1fce994b2d0081bcefaccc
3
- size 110783
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91ee45a9f87a06759f3792a9566ec213c7efbd18e536fbfec948c940fda0aaa6
3
+ size 155014
data/stars/2011/05/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:eca1db9a4b3ceb978dacd531e13f2dd4639093ab6237f4e281835edde7077099
3
- size 111769
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:283069e09d0717937ee2c36aa262b26e4d03b5edbd939ae91fc473a8604496dc
3
+ size 160011
data/stars/2011/05/02.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:18e7d8453dfbf2c364518d37a717a8e0f28af3cdfa4e99cda5ed2152e5958f50
3
- size 132014
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:611a5139527f5733fab0de5b7e741bc8fdc0289d5537f5b535d64445ffa59fab
3
+ size 193877
data/stars/2011/05/03.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:defcb4cbc0fe904408dae71a1676c49c80dc262878d0b423e9578c674d66f346
3
- size 165449
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e8f29613912f91a7081edce8c5a4d01b6a3c15cb6628182b1abce8a99b4c7ac
3
+ size 243690
data/stars/2011/05/04.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a2e3b764a9c19e1148abf43052f00a2cadfd787ca85e6abb9e79b759b59254be
3
- size 180093
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b97b37fc79f7de4a2841706d53685b902cd6f2fba652d3f4b9426c4290ea4574
3
+ size 261310
data/stars/2011/05/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bef97d2d006b873b6fa320b7583aa8a958cdd05f59e9d6ac6f86a5ac658c9cc2
3
- size 178435
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47e0d30fb536898ae948c113a43c3a2cf2822435df9272f8dca3afc9d1e3665a
3
+ size 261035
data/stars/2011/05/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b262f96606c7263e8a0ba4b046855f7deefbf03d89798cb2d500c154d6dd7545
3
- size 145510
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dea0536d09d4b33653aae838baa1835819e2225358660495a6bd46936ea6808
3
+ size 213741
stats.csv CHANGED
@@ -69,14 +69,23 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
69
  2011-04-20,50137,0,25412,3213,4257,1098,0,0,5779,1412,6087,470,0,655,1302,407,45,0,9656219,9.1,253282,15.0,9.1,6.7
70
  2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,10.0,264628,7.3,10.0,6.7
71
  2011-04-22,40832,0,22042,1936,2466,903,0,0,4977,1171,5123,463,0,635,834,255,27,0,8101358,8.4,247009,9.1,8.4,6.7
72
- 2011-04-23,31746,0,17207,1532,1876,720,0,0,3721,857,4121,367,0,418,768,134,25,0,6192449,8.8,162413,5.9,8.8,0.0
73
- 2011-04-24,32786,0,18268,1495,1782,569,0,0,3604,826,4429,456,0,418,802,102,35,0,6254774,9.1,157716,5.8,9.1,0.0
74
- 2011-04-25,39853,0,21398,1793,2464,961,0,0,4642,1151,4807,827,0,590,795,386,39,0,7764517,9.9,205523,5.5,10.0,0.0
75
- 2011-04-26,48797,0,25623,2202,3003,1375,0,0,5939,2115,5810,653,0,596,1083,356,42,0,9643112,11.5,258153,6.1,11.5,0.0
76
- 2011-04-27,43925,0,23493,2170,2867,1278,0,0,4914,1395,5252,429,0,706,1047,322,52,0,8761524,6.8,218228,8.3,6.8,0.0
77
- 2011-04-28,40793,0,21963,1937,2620,1086,0,0,4297,1305,5283,603,0,646,768,243,42,0,8116302,9.3,194452,5.1,9.3,0.0
78
- 2011-04-29,49068,0,25164,2234,2816,1231,0,0,4918,1397,8634,528,0,720,1019,370,37,0,9335401,11.3,220181,4.8,11.3,0.0
 
79
  2011-05-01,35929,0,19009,2287,2711,758,0,0,3606,877,5060,358,0,466,633,135,29,0,6730672,9.2,160011,4.4,9.2,0.0
 
 
 
 
 
 
 
 
80
  2011-05-10,51454,0,24086,4081,4177,1280,0,0,5028,1381,8982,397,0,810,875,302,55,0,9085660,18.1,4544296,6.9,18.1,34.5
81
  2011-05-11,58354,0,28529,3906,4774,1540,0,0,6173,1584,7901,1467,0,839,1280,327,34,0,10903560,21.4,5295076,6.2,21.4,35.5
82
  2011-05-12,49491,0,26164,2686,3433,1384,0,0,5518,1562,5949,552,0,875,982,335,51,0,9942744,19.4,5087676,14.1,19.4,28.1
 
69
  2011-04-20,50137,0,25412,3213,4257,1098,0,0,5779,1412,6087,470,0,655,1302,407,45,0,9656219,9.1,253282,15.0,9.1,6.7
70
  2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,10.0,264628,7.3,10.0,6.7
71
  2011-04-22,40832,0,22042,1936,2466,903,0,0,4977,1171,5123,463,0,635,834,255,27,0,8101358,8.4,247009,9.1,8.4,6.7
72
+ 2011-04-23,31746,0,17207,1532,1876,720,0,0,3721,857,4121,367,0,418,768,134,25,0,6192449,8.8,162413,5.9,8.8,8.0
73
+ 2011-04-24,32786,0,18268,1495,1782,569,0,0,3604,826,4429,456,0,418,802,102,35,0,6254774,9.1,157716,5.8,9.1,8.0
74
+ 2011-04-25,39853,0,21398,1793,2464,961,0,0,4642,1151,4807,827,0,590,795,386,39,0,7764517,9.9,205523,5.5,10.0,8.0
75
+ 2011-04-26,48797,0,25623,2202,3003,1375,0,0,5939,2115,5810,653,0,596,1083,356,42,0,9643112,11.5,258153,6.1,11.5,8.0
76
+ 2011-04-27,43925,0,23493,2170,2867,1278,0,0,4914,1395,5252,429,0,706,1047,322,52,0,8761524,6.8,218228,8.3,6.8,8.0
77
+ 2011-04-28,40793,0,21963,1937,2620,1086,0,0,4297,1305,5283,603,0,646,768,243,42,0,8116302,9.3,194452,5.1,9.3,8.0
78
+ 2011-04-29,49068,0,25164,2234,2816,1231,0,0,4918,1397,8634,528,0,720,1019,370,37,0,9335401,11.3,220181,4.8,11.3,8.0
79
+ 2011-04-30,34818,0,17310,3290,3181,702,0,0,3746,911,4018,339,0,392,672,225,32,0,6197402,9.0,155014,12.2,9.0,0.0
80
  2011-05-01,35929,0,19009,2287,2711,758,0,0,3606,877,5060,358,0,466,633,135,29,0,6730672,9.2,160011,4.4,9.2,0.0
81
+ 2011-05-02,39410,0,21498,1827,2485,1042,0,0,4279,1149,5058,344,0,630,739,318,41,0,7907584,9.6,193877,4.6,9.6,0.0
82
+ 2011-05-03,49670,0,26744,2796,3392,1221,0,0,5554,1425,6029,473,0,730,931,331,44,0,9978951,11.7,243690,6.2,11.7,0.0
83
+ 2011-05-04,53373,0,27769,2666,3551,1489,0,0,5820,1725,6936,642,0,922,1485,337,31,0,10505273,10.5,261310,4.8,10.5,0.0
84
+ 2011-05-05,53887,0,28684,2699,3556,1462,0,0,6009,1647,6687,581,0,780,1305,423,54,0,10725872,12.5,261035,5.9,12.5,0.0
85
+ 2011-05-06,46488,0,25242,2836,2927,1310,0,0,4825,1507,5428,433,0,605,1020,299,56,0,9335572,10.0,213741,0.0,10.0,0.0
86
+ 2011-05-07,31453,0,17176,1494,1727,771,0,0,3361,882,4175,436,0,438,755,211,27,0,6135632,6.7,149246,0.1,6.7,0.0
87
+ 2011-05-08,35201,0,19256,1583,2802,806,0,0,3675,908,4290,377,0,476,830,175,23,0,6739101,8.1,161645,0.0,8.1,0.0
88
+ 2011-05-09,50403,0,26605,2511,3159,1403,0,0,5280,1416,7246,584,0,737,1082,339,41,0,9901986,11.2,235048,0.0,11.2,0.0
89
  2011-05-10,51454,0,24086,4081,4177,1280,0,0,5028,1381,8982,397,0,810,875,302,55,0,9085660,18.1,4544296,6.9,18.1,34.5
90
  2011-05-11,58354,0,28529,3906,4774,1540,0,0,6173,1584,7901,1467,0,839,1280,327,34,0,10903560,21.4,5295076,6.2,21.4,35.5
91
  2011-05-12,49491,0,26164,2686,3433,1384,0,0,5518,1562,5949,552,0,875,982,335,51,0,9942744,19.4,5087676,14.1,19.4,28.1