tamnd commited on
Commit
fd34538
·
verified ·
1 Parent(s): 9a274e2

Add 2014-09-15 — 444.4K events, 11 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,288 days), totaling **217,995,508 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 12.5 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.8M
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,098,434 | 215,576 | 23.1 GB | 4.8 GB | 2h47m | 9h09m | 2h57m |
148
- | 2014 | 244 | 80,815,225 | 331,209 | 28.9 GB | 7.4 GB | 2h42m | 16h27m | 3h46m |
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.9M
160
- 2014 ██████████████████████████████ 41.0M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -223,7 +223,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ████████████████░░░░░░░░░░░░░░ 4.0M
225
  2013 ████████████████████████████░░ 7.1M
226
- 2014 ██████████████████████████████ 7.4M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
@@ -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,442,214 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 12,087,643 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 19,039,616 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,837,940 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,084,715 | 1.0% | Line-level PR comments |
645
- | `stars` | WatchEvent | 20,466,217 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,766,829 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 27,610,835 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,840,219 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 277,909 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 2,021,024 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,508,232 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 200,497 | 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,289 days), totaling **218,447,061 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.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 ███████████████░░░░░░░░░░░░░░░ 42.5M
138
  2013 ████████████████████████████░░ 76.1M
139
+ 2014 ██████████████████████████████ 81.3M
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,105,538 | 215,596 | 23.1 GB | 4.7 GB | 2h45m | 9h11m | 2h53m |
148
+ | 2014 | 245 | 81,259,674 | 331,672 | 29.2 GB | 7.5 GB | 2h42m | 16h34m | 3h46m |
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.9M
160
+ 2014 ██████████████████████████████ 41.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ████████████████░░░░░░░░░░░░░░ 4.0M
225
  2013 ████████████████████████████░░ 7.1M
226
+ 2014 ██████████████████████████████ 7.5M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 109,671,384 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 12,110,772 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 19,086,095 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,858,213 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,091,860 | 1.0% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 20,506,331 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,781,246 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 27,661,676 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,848,270 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 279,081 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 2,024,118 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,513,070 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 200,962 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec005fb9833a6fb486548f5a3484c7086aa57c91b3222aeccd4c97baa9219d29
3
+ size 107833
data/creates/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45406599c8ff2dde67a036437ba93ca0ef79df28ad7b0af1d0383e62a36840d1
3
+ size 2432465
data/deletes/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17ce659c8cec14536376fb1d7e226748f5d33da99c9725e85245990ef6350ee1
3
+ size 224040
data/forks/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bde6529f25fa9085353f2c47f1eab84f36dda85f97a3e6699161b7eb6e513d5
3
+ size 377296
data/issue_comments/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c197b8a3045546d32687342aac068fef3e6ca23956dda9799b566d7c5fd9e53
3
+ size 1064358
data/issues/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bff38281250721def5b896e3ed6dcfca05c43fd0b26a8379e7f2ff0d83efef14
3
+ size 573436
data/public_events/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49e722bd4bcdfd218d27d23e3cea10551514eefb0243ab248294bba4f4080b3a
3
+ size 17911
data/pull_requests/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a707a097a090783d610ab008ee638cb5968fce28c1518e98fe237b33af4f647
3
+ size 3632838
data/pushes/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61682ad6ab0536239a5c1d4d528c2e7dad51e7985ac2b43eb4895b5982285e3a
3
+ size 35445679
data/stars/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a25290dd2c2832995719e2095a84556b0289301cb65cd0889fe14ce51587ea21
3
+ size 1723644
data/wiki_pages/2014/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70b8b94921c71362b923eb11235bf6668b3c28731f037743a6e40dfe12455e8c
3
+ size 249685
stats.csv CHANGED
@@ -818,20 +818,20 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
818
  2013-05-08,232848,1519,117995,14406,21774,9103,0,2416,22236,8662,26675,1883,0,2346,3574,0,259,0,78207146,49.4,966495,11.3,49.4,6.9
819
  2013-05-09,222321,1381,118872,11230,18905,8641,0,2287,20597,8112,24366,1737,0,2163,3737,0,293,0,82924801,49.6,919724,32.1,49.6,6.9
820
  2013-05-10,198543,1163,104335,10153,17791,7970,0,1964,17748,7416,22697,1718,0,2067,3332,0,189,0,65488249,37.5,804200,14.9,37.5,6.9
821
- 2013-05-11,141780,604,77554,7278,10963,4508,0,808,13160,4996,16979,1030,0,1331,2429,0,140,0,43904815,23.1,623796,9.7,23.1,0.0
822
- 2013-05-12,155316,627,86060,7850,11936,4599,0,845,15063,5555,17234,1211,0,1151,3051,0,134,0,48252777,33.6,683562,25.8,33.7,0.0
823
- 2013-05-13,234530,1312,121252,12937,22725,9252,0,2244,22925,8379,25035,2034,0,2288,3908,0,239,0,77317163,53.2,991749,21.1,53.2,0.0
824
- 2013-05-14,235831,1267,123820,12733,21141,9267,0,2372,21551,8635,26221,1907,0,2568,4137,0,212,0,79814170,53.6,994312,21.0,53.6,0.0
825
- 2013-05-15,227361,1177,118857,11565,20710,9524,0,2313,20547,8436,25861,1872,0,2382,3894,0,223,0,75675872,53.4,920315,13.5,53.4,0.0
826
- 2013-05-16,215151,1082,112371,11183,19593,8694,0,2363,20353,7607,24502,1719,0,2161,3324,0,199,0,73420371,42.7,919229,19.6,42.7,0.0
827
- 2013-05-17,202817,941,107241,10281,17559,8198,0,2148,18930,7076,23454,1638,0,2023,3136,0,192,0,74020045,47.6,829325,28.3,47.6,0.0
828
  2013-05-18,139471,667,76643,6996,10409,4752,0,823,12949,5231,16525,1079,0,1098,2148,0,151,0,46549752,27.9,621963,12.5,28.0,0.0
829
  2013-05-19,161438,747,88398,7891,11447,5216,0,1205,16325,5758,18363,1757,0,1663,2530,0,138,0,59378561,37.8,736589,25.4,37.8,0.0
830
- 2013-05-20,221617,956,115240,13272,20369,8581,0,2157,19742,7793,26335,1765,0,2164,3018,0,225,0,75941516,44.3,23505154,42.7,44.3,46.4
831
- 2013-05-21,232608,1179,119986,14323,21060,9544,0,2214,22019,8833,25756,1892,0,2016,3577,0,209,0,78334622,46.3,24263366,49.5,46.3,68.6
832
- 2013-05-22,232362,1153,119862,14839,21710,9538,0,2502,21025,8626,25045,1845,0,2238,3741,0,238,0,79889165,40.6,24266430,28.2,40.6,50.1
833
- 2013-05-23,229190,1208,119918,12465,20832,9547,0,2376,21265,8466,25448,1851,0,2025,3572,0,217,0,75883535,32.6,23515581,27.0,32.6,62.8
834
- 2013-05-24,205849,999,106282,16066,17432,8422,0,1767,18540,7150,22119,1802,0,1886,3203,0,181,0,69192593,33.5,21179914,50.6,33.5,32.3
835
  2013-05-25,137552,599,76569,6925,10280,4524,0,758,12632,5008,15833,1125,0,1016,2148,0,135,0,44954441,22.4,14950164,42.6,22.4,40.0
836
  2013-05-26,161823,499,85138,10896,17475,4456,0,784,14562,5464,17078,1117,0,1125,3113,0,116,0,48290919,23.0,15657153,25.7,23.0,35.0
837
  2013-05-27,217251,952,110645,17990,23139,7319,0,1608,18617,7428,22498,1563,0,1977,3325,0,190,0,72273637,35.2,23239285,48.6,35.2,46.6
@@ -1285,5 +1285,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,19.7
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,28.2
 
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
 
818
  2013-05-08,232848,1519,117995,14406,21774,9103,0,2416,22236,8662,26675,1883,0,2346,3574,0,259,0,78207146,49.4,966495,11.3,49.4,6.9
819
  2013-05-09,222321,1381,118872,11230,18905,8641,0,2287,20597,8112,24366,1737,0,2163,3737,0,293,0,82924801,49.6,919724,32.1,49.6,6.9
820
  2013-05-10,198543,1163,104335,10153,17791,7970,0,1964,17748,7416,22697,1718,0,2067,3332,0,189,0,65488249,37.5,804200,14.9,37.5,6.9
821
+ 2013-05-11,141780,604,77554,7278,10963,4508,0,808,13160,4996,16979,1030,0,1331,2429,0,140,0,43904815,23.1,623796,9.7,23.1,7.2
822
+ 2013-05-12,155316,627,86060,7850,11936,4599,0,845,15063,5555,17234,1211,0,1151,3051,0,134,0,48252777,33.6,683562,25.8,33.7,7.2
823
+ 2013-05-13,234530,1312,121252,12937,22725,9252,0,2244,22925,8379,25035,2034,0,2288,3908,0,239,0,77317163,53.2,991749,21.1,53.2,7.2
824
+ 2013-05-14,235831,1267,123820,12733,21141,9267,0,2372,21551,8635,26221,1907,0,2568,4137,0,212,0,79814170,53.6,994312,21.0,53.6,7.2
825
+ 2013-05-15,227361,1177,118857,11565,20710,9524,0,2313,20547,8436,25861,1872,0,2382,3894,0,223,0,75675872,53.4,920315,13.5,53.4,7.2
826
+ 2013-05-16,215151,1082,112371,11183,19593,8694,0,2363,20353,7607,24502,1719,0,2161,3324,0,199,0,73420371,42.7,919229,19.6,42.7,7.2
827
+ 2013-05-17,202817,941,107241,10281,17559,8198,0,2148,18930,7076,23454,1638,0,2023,3136,0,192,0,74020045,47.6,829325,28.3,47.6,7.2
828
  2013-05-18,139471,667,76643,6996,10409,4752,0,823,12949,5231,16525,1079,0,1098,2148,0,151,0,46549752,27.9,621963,12.5,28.0,0.0
829
  2013-05-19,161438,747,88398,7891,11447,5216,0,1205,16325,5758,18363,1757,0,1663,2530,0,138,0,59378561,37.8,736589,25.4,37.8,0.0
830
+ 2013-05-20,221617,956,115240,13272,20369,8581,0,2157,19742,7793,26335,1765,0,2164,3018,0,225,0,75941516,57.9,962479,13.9,57.9,0.0
831
+ 2013-05-21,232608,1179,119986,14323,21060,9544,0,2214,22019,8833,25756,1892,0,2016,3577,0,209,0,78334622,65.9,983343,19.1,65.9,0.0
832
+ 2013-05-22,239466,1198,123473,15178,22279,9801,0,2571,21809,8931,25942,1896,0,2285,3857,0,246,0,82261694,64.1,979463,15.0,64.1,0.0
833
+ 2013-05-23,229190,1208,119918,12465,20832,9547,0,2376,21265,8466,25448,1851,0,2025,3572,0,217,0,75883535,57.8,975915,23.2,57.8,0.0
834
+ 2013-05-24,205849,999,106282,16066,17432,8422,0,1767,18540,7150,22119,1802,0,1886,3203,0,181,0,69192593,52.7,829538,14.5,52.7,0.0
835
  2013-05-25,137552,599,76569,6925,10280,4524,0,758,12632,5008,15833,1125,0,1016,2148,0,135,0,44954441,22.4,14950164,42.6,22.4,40.0
836
  2013-05-26,161823,499,85138,10896,17475,4456,0,784,14562,5464,17078,1117,0,1125,3113,0,116,0,48290919,23.0,15657153,25.7,23.0,35.0
837
  2013-05-27,217251,952,110645,17990,23139,7319,0,1608,18617,7428,22498,1563,0,1977,3325,0,190,0,72273637,35.2,23239285,48.6,35.2,46.6
 
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,19.7
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,28.2
1288
+ 2014-09-15,444449,2320,225559,22790,45910,20010,0,7076,39330,14112,49944,8000,1172,3047,4722,0,457,0,256201177,415.1,45849185,28.1,415.1,0.0
1289
  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
1290
  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