tamnd commited on
Commit
ff25391
·
verified ·
1 Parent(s): 6310445

Add 2011-12-10 to 2011-12-16 — 7 days, 548.4K 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,159 days), totaling **192,018,247 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 55.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.4 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 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ██████████████████████████░░░░ 64.7M
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 | 241.9 MB | 52m01s | 51m39s | 42m06s |
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 | 199 | 64,733,662 | 325,294 | 20.3 GB | 5.9 GB | 2h10m | 11h34m | 3h00m |
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.5M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 █████████████████████████░░░░ 32.9M
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 █████████████░��░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
- 2014 ███████████████████████░░░░░░ 3.4M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
@@ -201,7 +201,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
- 2014 █████████████████████████████░ 2.8M
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 | 96,432,385 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,653,559 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,687,793 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,779,135 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,781,901 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,063,354 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,885,000 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 24,233,882 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,477,360 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 233,270 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,791,842 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,151,123 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 129,956 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 177,249 | 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,160 days), totaling **192,389,463 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.4 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 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ██████████████████████████░░░░ 65.1M
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 | 171.0 MB | 49m55s | 51m58s | 38m43s |
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 | 200 | 65,104,878 | 325,524 | 20.5 GB | 5.9 GB | 2h10m | 11h41m | 3h00m |
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.5M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 █████████████████████████░░░░ 33.1M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 █████████████░��░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
+ 2014 ███████████████████████░░░░░░ 3.4M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
 
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
+ 2014 █████████████████████████████░ 2.9M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 96,614,770 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,673,205 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,726,126 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,797,283 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,788,275 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,098,468 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,897,327 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 24,276,568 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,484,010 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 234,373 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,794,935 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,154,729 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 129,956 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 177,627 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/12/10.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:80c48a3b36f713e0c15a8d8cf4b63e9b60ba2ab0e4bff456888d8ab0926dbeae
3
- size 166624
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e39e42f71a267308c22c8a65d16efc61743ee2a15e77567dc853866388ef28cc
3
+ size 243108
data/stars/2011/12/11.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b1eff4878d3e8fcb59dbdb46c765346a1ab7d6c165c23aa45fc5971de2f70de3
3
- size 164544
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:345503ecd4773dc73296a316996ca4e0dffbd5ec6da4899258325c79a5288b51
3
+ size 240615
data/stars/2011/12/12.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5e3d2aec0e9a9762c5bcda5644aff8c2f440f095c56c486f4bde86becd22f737
3
- size 242167
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea0e758f2beefa78d418b74e6069c1b28859a2414020a1ec362cb5c7cf7e1234
3
+ size 356571
data/stars/2011/12/13.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1b860d7ce4df73015afc405008d28e3b436c54650058cd53ee9218fe9a5ec6eb
3
- size 220930
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06816efe3678d1369e5062be73ffa91f93192cf726467bb802b49e426f67dd97
3
+ size 329426
data/stars/2011/12/14.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2e2872d4719b41f781a631da16458b6cf6e4183d0c1fd6dfd92c3304f943146b
3
- size 230700
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96f4ec616aa02cd7d325b6dfd3ff62e454f76636e951af8fe69344eb4471785b
3
+ size 339030
data/stars/2011/12/15.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a2742bda08c8b059a13c1889e6c90e32aaf164e5b7661ba64c9e2550530466b3
3
- size 230684
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:150a0375564e778c08e032e45d67868783824e841545cfc9e99a7b631501e392
3
+ size 337472
data/stars/2011/12/16.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f129dfd1af5575574bead8393c21e3c774f1f2140b9c87f1fd2e9537ff17263e
3
- size 263692
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4424f3e624e20cf1bc139ba1e6d1e8170785424587ddbe08e4581e4aeafa7eb7
3
+ size 369955
stats.csv CHANGED
@@ -293,22 +293,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
293
  2011-11-30,78831,0,38026,5076,6064,2400,0,0,7511,2361,13601,730,0,907,1599,483,73,0,21758401,18.3,331876,9.6,18.3,5.2
294
  2011-12-01,90051,0,42363,4201,6255,2941,0,0,8927,2438,18559,822,0,1020,1896,552,77,0,24307839,19.5,383956,30.6,19.5,5.2
295
  2011-12-02,85270,0,37777,3527,5376,2372,0,0,7654,2325,22306,1042,0,907,1504,418,62,0,21154484,17.2,360718,6.4,17.2,5.2
296
- 2011-12-03,62894,0,28797,3054,3701,1437,0,0,5535,1784,15588,593,0,545,1345,464,51,0,14982780,12.5,240346,7.3,12.5,0.0
297
- 2011-12-04,66025,0,31852,2820,3612,1464,0,0,5435,1697,15965,657,0,813,1362,299,49,0,15690212,13.0,238853,11.1,13.0,0.0
298
- 2011-12-05,86332,0,39184,4243,7502,2308,0,0,9036,2287,17695,919,0,968,1681,442,67,0,22063483,17.1,386131,17.2,17.1,0.0
299
- 2011-12-06,88479,0,39498,3634,5650,2438,0,0,8422,2408,22250,1063,0,1022,1599,426,69,0,22059348,15.4,361995,18.7,15.4,0.0
300
- 2011-12-07,74789,0,36999,3576,5446,2493,0,0,7629,2233,12994,606,0,975,1358,413,67,0,20936943,13.8,360764,7.5,13.8,0.0
301
- 2011-12-08,74620,0,35150,5282,6974,2396,0,0,7517,2136,11890,779,0,769,1296,358,73,0,20299164,16.9,331605,24.2,16.9,0.0
302
- 2011-12-09,85900,0,37621,4200,5944,2509,0,0,7779,2274,21959,873,0,865,1417,376,83,0,21363304,17.0,337548,11.3,17.0,0.0
303
- 2011-12-10,61871,0,27284,3524,4389,1400,0,0,5670,1548,15422,813,0,559,953,260,49,0,14574716,8.3,7581923,18.9,8.3,35.3
304
  2011-12-11,58190,0,26871,2350,3316,1147,0,0,5455,1453,15055,644,0,661,1014,191,33,0,13702958,10.4,240615,7.7,10.4,0.0
305
- 2011-12-12,86786,0,38739,4019,5991,2333,0,0,8102,2196,21445,849,0,1076,1495,454,87,0,21823651,11.8,11037967,24.2,11.8,28.6
306
- 2011-12-13,82669,0,35649,3531,5617,2439,0,0,7551,2153,19479,3431,0,800,1573,389,57,0,20503814,13.2,10079974,19.8,13.2,26.8
307
- 2011-12-14,82177,0,36694,4543,7093,2455,0,0,7882,2087,17630,733,0,968,1660,352,80,0,21610285,12.6,10771978,24.3,12.6,31.4
308
- 2011-12-15,87146,0,38644,4039,6057,2483,0,0,7753,2151,22060,780,0,1069,1591,451,68,0,22389131,13.9,11010747,30.3,13.9,23.2
309
- 2011-12-16,89523,0,38686,4011,6301,2730,0,0,7749,2464,23300,986,0,1009,1824,372,91,0,22741485,13.1,11165675,21.6,13.1,32.1
310
- 2011-12-17,57846,0,25237,2511,3441,1390,0,0,4750,1737,16148,443,0,671,1247,234,37,0,13868251,7.9,7374948,20.3,7.9,30.3
311
- 2011-12-18,61955,0,28149,3104,3633,1486,0,0,5269,1716,15805,745,0,583,1239,175,51,0,14773645,10.3,7704091,32.5,10.3,26.7
312
  2011-12-19,76919,0,37706,3782,5856,2578,0,0,7586,2408,13193,889,0,984,1506,328,103,0,21639337,12.7,10652793,21.5,12.7,30.3
313
  2011-12-20,86961,0,35812,3891,5928,2446,0,0,7971,2403,22158,3619,0,916,1383,366,68,0,21150099,14.7,10229485,37.3,14.7,31.4
314
  2011-12-21,74548,0,33484,3263,5199,2390,0,0,7301,2184,17267,894,0,888,1269,334,75,0,19581301,12.7,9589768,26.9,12.7,32.8
@@ -1156,5 +1156,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1156
  2014-07-28,361726,1481,178286,18228,36321,17158,0,6189,36579,12028,41587,6280,992,2737,3513,0,347,0,211443298,394.3,38705018,60.6,394.3,51.6
1157
  2014-07-29,382885,1380,182055,19301,37346,17721,0,6180,36943,12340,54130,6980,1112,3202,3906,0,289,0,220264018,419.1,38801822,53.6,419.1,52.3
1158
  2014-07-30,412506,1451,196632,20964,41677,19382,0,6507,37818,13122,59686,6583,1165,3016,4164,0,339,0,238023214,446.9,41774622,54.7,446.9,54.5
 
1159
  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
1160
  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
 
293
  2011-11-30,78831,0,38026,5076,6064,2400,0,0,7511,2361,13601,730,0,907,1599,483,73,0,21758401,18.3,331876,9.6,18.3,5.2
294
  2011-12-01,90051,0,42363,4201,6255,2941,0,0,8927,2438,18559,822,0,1020,1896,552,77,0,24307839,19.5,383956,30.6,19.5,5.2
295
  2011-12-02,85270,0,37777,3527,5376,2372,0,0,7654,2325,22306,1042,0,907,1504,418,62,0,21154484,17.2,360718,6.4,17.2,5.2
296
+ 2011-12-03,62894,0,28797,3054,3701,1437,0,0,5535,1784,15588,593,0,545,1345,464,51,0,14982780,12.5,240346,7.3,12.5,4.4
297
+ 2011-12-04,66025,0,31852,2820,3612,1464,0,0,5435,1697,15965,657,0,813,1362,299,49,0,15690212,13.0,238853,11.1,13.0,4.4
298
+ 2011-12-05,86332,0,39184,4243,7502,2308,0,0,9036,2287,17695,919,0,968,1681,442,67,0,22063483,17.1,386131,17.2,17.1,4.4
299
+ 2011-12-06,88479,0,39498,3634,5650,2438,0,0,8422,2408,22250,1063,0,1022,1599,426,69,0,22059348,15.4,361995,18.7,15.4,4.4
300
+ 2011-12-07,74789,0,36999,3576,5446,2493,0,0,7629,2233,12994,606,0,975,1358,413,67,0,20936943,13.8,360764,7.5,13.8,4.4
301
+ 2011-12-08,74620,0,35150,5282,6974,2396,0,0,7517,2136,11890,779,0,769,1296,358,73,0,20299164,16.9,331605,24.2,16.9,4.4
302
+ 2011-12-09,85900,0,37621,4200,5944,2509,0,0,7779,2274,21959,873,0,865,1417,376,83,0,21363304,17.0,337548,11.3,17.0,4.4
303
+ 2011-12-10,61871,0,27284,3524,4389,1400,0,0,5670,1548,15422,813,0,559,953,260,49,0,14574716,12.3,243108,15.8,12.3,0.0
304
  2011-12-11,58190,0,26871,2350,3316,1147,0,0,5455,1453,15055,644,0,661,1014,191,33,0,13702958,10.4,240615,7.7,10.4,0.0
305
+ 2011-12-12,86786,0,38739,4019,5991,2333,0,0,8102,2196,21445,849,0,1076,1495,454,87,0,21823651,17.0,356571,6.6,17.0,0.0
306
+ 2011-12-13,82669,0,35649,3531,5617,2439,0,0,7551,2153,19479,3431,0,800,1573,389,57,0,20503814,15.4,329426,5.9,15.4,0.0
307
+ 2011-12-14,82177,0,36694,4543,7093,2455,0,0,7882,2087,17630,733,0,968,1660,352,80,0,21610285,16.3,339030,4.9,16.3,0.0
308
+ 2011-12-15,87146,0,38644,4039,6057,2483,0,0,7753,2151,22060,780,0,1069,1591,451,68,0,22389131,17.0,337472,6.6,17.0,0.0
309
+ 2011-12-16,89523,0,38686,4011,6301,2730,0,0,7749,2464,23300,986,0,1009,1824,372,91,0,22741485,14.5,369955,17.4,14.5,0.0
310
+ 2011-12-17,57846,0,25237,2511,3441,1390,0,0,4750,1737,16148,443,0,671,1247,234,37,0,13868251,8.8,211418,4.1,8.8,0.0
311
+ 2011-12-18,61955,0,28149,3104,3633,1486,0,0,5269,1716,15805,745,0,583,1239,175,51,0,14773645,8.7,229945,5.0,8.7,0.0
312
  2011-12-19,76919,0,37706,3782,5856,2578,0,0,7586,2408,13193,889,0,984,1506,328,103,0,21639337,12.7,10652793,21.5,12.7,30.3
313
  2011-12-20,86961,0,35812,3891,5928,2446,0,0,7971,2403,22158,3619,0,916,1383,366,68,0,21150099,14.7,10229485,37.3,14.7,31.4
314
  2011-12-21,74548,0,33484,3263,5199,2390,0,0,7301,2184,17267,894,0,888,1269,334,75,0,19581301,12.7,9589768,26.9,12.7,32.8
 
1156
  2014-07-28,361726,1481,178286,18228,36321,17158,0,6189,36579,12028,41587,6280,992,2737,3513,0,347,0,211443298,394.3,38705018,60.6,394.3,51.6
1157
  2014-07-29,382885,1380,182055,19301,37346,17721,0,6180,36943,12340,54130,6980,1112,3202,3906,0,289,0,220264018,419.1,38801822,53.6,419.1,52.3
1158
  2014-07-30,412506,1451,196632,20964,41677,19382,0,6507,37818,13122,59686,6583,1165,3016,4164,0,339,0,238023214,446.9,41774622,54.7,446.9,54.5
1159
+ 2014-07-31,371216,1373,182385,19646,38333,18148,0,6374,35114,12327,42686,6650,1103,3093,3606,0,378,0,217788307,414.2,37813021,52.3,414.2,0.0
1160
  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
1161
  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