tamnd commited on
Commit
8411e37
·
verified ·
1 Parent(s): 509e984

Add 2013-04-06 to 2013-04-12 — 7 days, 1.5M 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,286 days), totaling **217,306,992 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 66.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.3 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,7 +136,7 @@ duckdb.sql("""
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ███████████████░░░░░░░░░░░░░░░ 42.5M
138
  2013 ████████████████████████████░░ 76.1M
139
- 2014 ██████████████████████████████ 80.2M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
@@ -144,8 +144,8 @@ duckdb.sql("""
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 | 353 | 76,074,924 | 215,509 | 23.1 GB | 5.6 GB | 3h02m | 9h45m | 3h39m |
148
- | 2014 | 242 | 80,150,219 | 331,199 | 28.6 GB | 7.4 GB | 2h40m | 16h16m | 3h45m |
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 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
  2013 ████████████████████████████░░ 38.9M
160
- 2014 ██████████████████████████████ 40.6M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -178,7 +178,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ████████████████░░░░░░░░░░░░░░ 2.4M
180
  2013 ���█████████████████████████████ 4.4M
181
- 2014 ████████████████████████████░ 4.2M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
@@ -198,10 +198,10 @@ 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 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.8M
203
  2013 ████████████████████████░░░░░░ 3.0M
204
- 2014 ██████████████████████████████ 3.5M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 109,080,170 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 12,055,533 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,979,947 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,808,682 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,075,119 | 1.0% | Line-level PR comments |
645
- | `stars` | WatchEvent | 20,405,582 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,743,145 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 27,529,607 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,829,051 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 276,154 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 2,016,401 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,500,157 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 199,899 | 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,288 days), totaling **217,971,998 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 67.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
 
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ███████████████░░░░░░░░░░░░░░░ 42.5M
138
  2013 ████████████████████████████░░ 76.1M
139
+ 2014 ██████████████████████████████ 80.8M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
 
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 | 353 | 76,074,924 | 215,509 | 23.1 GB | 5.4 GB | 3h01m | 9h35m | 3h34m |
148
+ | 2014 | 244 | 80,815,225 | 331,209 | 28.9 GB | 7.4 GB | 2h42m | 16h27m | 3h45m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
  2013 ████████████████████████████░░ 38.9M
160
+ 2014 ██████████████████████████████ 41.0M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ████████████████░░░░░░░░░░░░░░ 2.4M
180
  2013 ���█████████████████████████████ 4.4M
181
+ 2014 ████████████████████████████░ 4.3M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
 
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 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.8M
203
  2013 ████████████████████████░░░░░░ 3.0M
204
+ 2014 ██████████████████████████████ 3.6M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 109,430,080 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 12,086,317 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 19,037,537 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,837,111 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,084,503 | 1.0% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 20,463,871 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,765,880 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 27,608,122 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,840,038 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 277,909 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 2,020,815 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,507,829 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 200,485 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2013/04/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b974074d2b9b3f8e773e461aadf8001e14a3b48f461bd2e2403e9bb943af9f51
3
- size 366143
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c042700968abdfb14ec3f39f6eb58827557fd56c0cafc8a6803ffb0c4c81c56a
3
+ size 714952
data/stars/2013/04/07.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ee06ad602b056cd7363870d33661dfbd8e2d53c499df244c2695341e585ff920
3
- size 391185
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9968bb3b2b90490edaaf05b39e4d389e8aaad6366c5c3e9bded9f72e3f3ec2d0
3
+ size 775371
data/stars/2013/04/08.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e8fa7e322cb50887c35020f54515046400c3a6236eb92167b0a30a21ed6175d6
3
- size 493615
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:810e6e421d49ec61569e3d2e6706b784760a11bf2e73839f7c2462294c027263
3
+ size 991725
data/stars/2013/04/09.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3b413b87119bea93d21d366cf2fe24298feb4cea3f93efd6a24420f779aefa0d
3
- size 508508
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b67b0df81a2deed17296420934a2eb0cf4e3f289fb44996968de188d34428a2f
3
+ size 1007798
data/stars/2013/04/10.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:44a2fd15877663c08f90465b6c4206e3b0e0b71201dacb340746207520137336
3
- size 567392
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d269eedbdce6ba9605634423aeaf9fc52e1924fe49c4e1d761df1d07c109566
3
+ size 1060885
data/stars/2013/04/11.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:748cc60a23d87953c63e5a48b926db8642ccfb0beb6df51aa6ace204fc568b77
3
- size 484884
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c350bea6a7a63b5e611abd752d6481ba294f05e8f777324e51ff3d2521dba5ae
3
+ size 983348
data/stars/2013/04/12.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cda2965ea5d8fb4d3896d61d27740d90e122d6be9bbd600e546f0d14d702332d
3
- size 444450
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab9842e4acdd47a0934621ff009c062505e3cc38337ce3c7b8c2c9cc5550eca5
3
+ size 901733
stats.csv CHANGED
@@ -776,20 +776,20 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
776
  2013-03-27,239110,1606,115132,23776,21887,9368,0,2483,22379,9092,25110,1825,0,2301,3942,0,209,0,75471826,56.6,962070,17.0,56.6,5.8
777
  2013-03-28,218204,1244,111273,12669,20535,8687,0,2092,21143,8503,24044,1758,0,2282,3783,0,191,0,70699737,52.3,923329,8.4,52.3,5.8
778
  2013-03-29,190885,1102,101918,9762,16475,6957,0,1773,18499,7516,20164,1517,0,1895,3124,0,183,0,61919488,41.1,818159,8.1,41.1,5.8
779
- 2013-03-30,144345,876,80029,7393,10817,4470,0,801,13515,5228,16271,932,0,1212,2699,0,102,0,44552812,29.2,627645,8.8,29.2,0.0
780
- 2013-03-31,153506,789,84632,6796,9997,4351,0,761,16286,6146,16829,1028,0,3239,2539,0,113,0,51668647,35.4,735547,27.7,35.4,0.0
781
- 2013-04-01,215826,1396,110984,12553,17821,7397,0,1814,20355,7814,26512,2859,0,2222,3912,0,187,0,69196437,48.2,899668,10.1,48.2,0.0
782
- 2013-04-02,231704,1643,115707,13067,21944,9209,0,1978,24761,9020,25937,1797,0,2224,4239,0,178,0,75311914,50.8,1038967,17.7,50.8,0.0
783
- 2013-04-03,227314,1727,112590,13328,22506,9066,0,2290,22965,8692,25908,1837,0,2094,4101,0,210,0,74490637,50.1,985388,15.4,50.1,0.0
784
- 2013-04-04,221301,1835,112315,12683,21058,8888,0,1720,20827,8096,25669,1878,0,2323,3804,0,205,0,72773418,42.2,921144,25.1,42.2,0.0
785
- 2013-04-05,205743,1402,106550,11503,19054,8144,0,1662,18955,7515,23338,1784,0,2010,3652,0,174,0,72094927,39.9,844588,24.8,39.9,0.0
786
- 2013-04-06,156761,1002,83029,10562,11252,4956,0,815,15534,6205,18184,1120,0,1275,2715,0,112,0,47760471,89.2,15351364,40.2,89.2,51.3
787
- 2013-04-07,175194,1068,94924,9328,13745,5409,0,949,17305,6368,19984,1562,0,1409,2986,0,157,0,54492998,96.0,17865186,28.8,96.0,41.3
788
- 2013-04-08,235253,1769,120960,12471,21932,9320,0,2069,22517,9187,26582,2069,0,2445,3733,0,199,0,77297494,141.4,23652399,31.6,141.4,49.1
789
- 2013-04-09,238395,1739,119813,12632,22693,9508,0,2178,23378,9572,28223,1971,0,2516,3945,0,227,0,77510004,149.8,23826159,29.6,149.8,44.7
790
- 2013-04-10,234908,1695,119697,12812,21974,9422,0,2518,22691,9020,26112,1922,0,2212,4619,0,214,0,76725905,145.7,23444612,41.5,145.7,49.1
791
- 2013-04-11,229728,1656,117153,11983,21458,9248,0,2385,22128,8754,26198,2016,0,2193,4375,0,181,0,75685271,150.3,23220400,31.0,150.3,43.1
792
- 2013-04-12,213058,1527,108192,11738,19637,8623,0,2360,20417,7863,24341,2612,0,1978,3608,0,162,0,70771713,138.0,21934689,31.8,138.0,61.8
793
  2013-04-13,148504,1075,77963,9712,10692,4483,0,784,14216,5356,18911,1284,0,1099,2795,0,134,0,46046787,98.3,14816892,27.6,98.3,42.2
794
  2013-04-14,161316,993,86696,8158,12444,4912,0,918,15902,5816,19521,1315,0,1319,3156,0,166,0,49784072,110.0,16109745,44.8,110.0,42.4
795
  2013-04-15,227181,1865,114752,12275,21603,8945,0,2275,22403,8455,26554,1930,0,2060,3840,0,224,0,74401440,166.6,23095168,43.6,166.6,98.7
@@ -1283,6 +1283,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1283
  2014-09-09,431793,2165,215272,21451,44255,20470,0,7860,38439,14247,49998,8373,1092,3163,4644,0,364,0,251008448,471.0,44371276,44.5,471.0,71.4
1284
  2014-09-10,436350,2410,220800,20071,42031,21476,0,7452,36490,15120,52301,8549,1222,3330,4697,0,401,0,254952149,485.4,45026221,39.5,485.4,71.0
1285
  2014-09-11,430774,2134,218038,20907,39562,20621,0,7845,38131,14551,51564,7673,1134,3454,4754,0,406,0,253956874,487.8,45195726,46.2,487.8,46.8
 
1286
  2014-09-13,279220,1639,153966,12502,20954,10128,0,3466,24392,9753,32676,4387,708,1630,2779,0,240,0,154523497,282.5,27570852,37.1,282.5,0.0
1287
  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
1288
  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
 
776
  2013-03-27,239110,1606,115132,23776,21887,9368,0,2483,22379,9092,25110,1825,0,2301,3942,0,209,0,75471826,56.6,962070,17.0,56.6,5.8
777
  2013-03-28,218204,1244,111273,12669,20535,8687,0,2092,21143,8503,24044,1758,0,2282,3783,0,191,0,70699737,52.3,923329,8.4,52.3,5.8
778
  2013-03-29,190885,1102,101918,9762,16475,6957,0,1773,18499,7516,20164,1517,0,1895,3124,0,183,0,61919488,41.1,818159,8.1,41.1,5.8
779
+ 2013-03-30,144345,876,80029,7393,10817,4470,0,801,13515,5228,16271,932,0,1212,2699,0,102,0,44552812,29.2,627645,8.8,29.2,4.1
780
+ 2013-03-31,153506,789,84632,6796,9997,4351,0,761,16286,6146,16829,1028,0,3239,2539,0,113,0,51668647,35.4,735547,27.7,35.4,4.1
781
+ 2013-04-01,215826,1396,110984,12553,17821,7397,0,1814,20355,7814,26512,2859,0,2222,3912,0,187,0,69196437,48.2,899668,10.1,48.2,4.1
782
+ 2013-04-02,231704,1643,115707,13067,21944,9209,0,1978,24761,9020,25937,1797,0,2224,4239,0,178,0,75311914,50.8,1038967,17.7,50.8,4.1
783
+ 2013-04-03,227314,1727,112590,13328,22506,9066,0,2290,22965,8692,25908,1837,0,2094,4101,0,210,0,74490637,50.1,985388,15.4,50.1,4.1
784
+ 2013-04-04,221301,1835,112315,12683,21058,8888,0,1720,20827,8096,25669,1878,0,2323,3804,0,205,0,72773418,42.2,921144,25.1,42.2,4.1
785
+ 2013-04-05,205743,1402,106550,11503,19054,8144,0,1662,18955,7515,23338,1784,0,2010,3652,0,174,0,72094927,39.9,844588,24.8,39.9,4.1
786
+ 2013-04-06,156761,1002,83029,10562,11252,4956,0,815,15534,6205,18184,1120,0,1275,2715,0,112,0,47760471,28.9,714952,27.4,28.9,0.0
787
+ 2013-04-07,175194,1068,94924,9328,13745,5409,0,949,17305,6368,19984,1562,0,1409,2986,0,157,0,54492998,29.6,775371,7.0,29.6,0.0
788
+ 2013-04-08,235253,1769,120960,12471,21932,9320,0,2069,22517,9187,26582,2069,0,2445,3733,0,199,0,77297494,47.9,991725,32.7,47.9,0.0
789
+ 2013-04-09,238395,1739,119813,12632,22693,9508,0,2178,23378,9572,28223,1971,0,2516,3945,0,227,0,77510004,46.7,1007798,36.5,46.7,0.0
790
+ 2013-04-10,234908,1695,119697,12812,21974,9422,0,2518,22691,9020,26112,1922,0,2212,4619,0,214,0,76725905,44.4,1060885,12.2,44.4,0.0
791
+ 2013-04-11,229728,1656,117153,11983,21458,9248,0,2385,22128,8754,26198,2016,0,2193,4375,0,181,0,75685271,44.3,983348,18.1,44.3,0.0
792
+ 2013-04-12,213058,1527,108192,11738,19637,8623,0,2360,20417,7863,24341,2612,0,1978,3608,0,162,0,70771713,38.2,901733,6.5,38.2,0.0
793
  2013-04-13,148504,1075,77963,9712,10692,4483,0,784,14216,5356,18911,1284,0,1099,2795,0,134,0,46046787,98.3,14816892,27.6,98.3,42.2
794
  2013-04-14,161316,993,86696,8158,12444,4912,0,918,15902,5816,19521,1315,0,1319,3156,0,166,0,49784072,110.0,16109745,44.8,110.0,42.4
795
  2013-04-15,227181,1865,114752,12275,21603,8945,0,2275,22403,8455,26554,1930,0,2060,3840,0,224,0,74401440,166.6,23095168,43.6,166.6,98.7
 
1283
  2014-09-09,431793,2165,215272,21451,44255,20470,0,7860,38439,14247,49998,8373,1092,3163,4644,0,364,0,251008448,471.0,44371276,44.5,471.0,71.4
1284
  2014-09-10,436350,2410,220800,20071,42031,21476,0,7452,36490,15120,52301,8549,1222,3330,4697,0,401,0,254952149,485.4,45026221,39.5,485.4,71.0
1285
  2014-09-11,430774,2134,218038,20907,39562,20621,0,7845,38131,14551,51564,7673,1134,3454,4754,0,406,0,253956874,487.8,45195726,46.2,487.8,46.8
1286
+ 2014-09-12,385786,2317,195944,18282,36636,18301,0,5918,33897,12982,45839,6600,1047,2784,4893,0,346,0,225022288,405.8,40439589,45.5,405.8,0.0
1287
  2014-09-13,279220,1639,153966,12502,20954,10128,0,3466,24392,9753,32676,4387,708,1630,2779,0,240,0,154523497,282.5,27570852,37.1,282.5,0.0
1288
  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
1289
  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