tamnd commited on
Commit
a9ef286
·
verified ·
1 Parent(s): 974cd65

Add 2014-08-17 — 283.7K 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,222 days), totaling **202,394,585 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 60.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.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 ███████████████░░░░░░░░░░░░░░░ 38.8M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ████████████████████████████░░ 70.6M
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 | 337 | 38,799,237 | 115,131 | 10.4 GB | 1.8 GB | 1h51m | 3h00m | 1h45m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 216 | 70,567,604 | 326,701 | 23.5 GB | 6.5 GB | 2h23m | 13h21m | 3h18m |
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 ██████████████░░░░░░░░░░░░░░░░ 18.7M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ████████████████████████████░░ 35.8M
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 | 101,526,184 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,169,367 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 17,572,339 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,184,743 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,888,118 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,054,799 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,225,426 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 25,803,569 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,616,378 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 249,734 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,886,573 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,299,610 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 186,794 | 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,223 days), totaling **202,678,296 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 60.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.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 ███████████████░░░░░░░░░░░░░░░ 38.8M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ████████████████████████████░░ 70.9M
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 | 337 | 38,799,237 | 115,131 | 10.4 GB | 1.8 GB | 1h50m | 2h56m | 1h41m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 217 | 70,851,315 | 326,503 | 23.6 GB | 6.5 GB | 2h23m | 13h26m | 3h19m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ██████████████░░░░░░░░░░░░░░░░ 18.7M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ████████████████████████████░░ 36.0M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 101,676,118 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,183,179 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 17,595,394 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,195,201 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,890,689 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,082,194 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,235,122 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 25,839,265 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,620,797 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 250,555 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,888,388 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,302,390 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 187,031 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c49ee28a648329a683b94490aa0caca66773d4143f0a858897d2edcb9d612059
3
+ size 72151
data/creates/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7cbf17efed812ad26f2fff4e26cfe202e7a716b651ffce119e23d2a64342902
3
+ size 1162083
data/deletes/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ad8f1902a3980707181d5f4a828cd94d2c24ad1904792514c7ce743b276a3f3
3
+ size 117597
data/forks/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c293291ae9671c5fdc93d1d597d2e6db8630724a8d80553b5e904ddcc68dc8c3
3
+ size 258412
data/issue_comments/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f29f75fae27772f902ea1944e982fe918e5e7db20e5b27bbe806ea1e4cd3ee4c
3
+ size 601590
data/issues/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:882ec6e626efd5d13841fcbfecf0c56d86a164c12eec5d9bd404ad6d4ca6206c
3
+ size 365589
data/public_events/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69d6067525a325625326ed82d4106d51efcf937645727d72bc01b4fe0ba093cd
3
+ size 9943
data/pull_requests/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:051acb79585582c614703c1f65bde29d78e8adcc9469eda179765825e74353f5
3
+ size 1882217
data/pushes/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9806bd746e854a2bcc425fe4ada369bfeb6b166dc76bd22fb21551a33df4999
3
+ size 22260422
data/stars/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e71a204b81db7178b95941a9c0968b3641d3c8446be662a8d338a07f34f46032
3
+ size 1230232
data/wiki_pages/2014/08/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:110ae82e28754887fef4a3ffa17e7cac4274416d1edc1f840b1316de7a3ee4fe
3
+ size 160926
stats.csv CHANGED
@@ -503,22 +503,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
503
  2012-06-27,127384,556,61550,9475,10339,4560,0,1268,12925,4455,17410,816,0,1318,2578,0,134,0,35926118,27.5,511928,8.2,27.5,4.4
504
  2012-06-28,138567,522,59436,15584,14027,4387,0,1131,12635,4234,22119,823,0,1269,2291,0,109,0,34858166,21.8,496793,20.2,21.8,4.4
505
  2012-06-29,124141,414,52512,9443,16452,3714,0,841,10987,3878,22038,673,0,1347,1722,0,120,0,30791085,18.7,443760,7.7,18.7,4.4
506
- 2012-06-30,83493,305,37967,3385,5354,1966,0,369,8425,2944,20343,403,0,696,1251,0,85,0,20432316,11.8,344261,6.5,11.8,0.0
507
- 2012-07-01,87214,263,42264,3844,5590,2139,0,361,8394,2804,18698,428,0,915,1456,0,58,0,22331367,15.0,351789,11.4,15.0,0.0
508
- 2012-07-02,125323,490,59870,5833,9842,4231,0,850,12333,4349,22961,741,0,1533,2194,0,96,0,34372429,23.1,501774,21.7,23.1,0.0
509
- 2012-07-03,133666,535,61323,5810,9934,4433,0,1077,12441,4450,28828,791,0,1554,2359,0,131,0,35635629,23.4,505040,21.1,23.4,0.0
510
- 2012-07-04,129397,7294,59924,5458,8293,3390,0,792,11359,3846,25054,710,0,1192,1985,0,100,0,32454586,23.2,468233,20.0,23.2,0.0
511
- 2012-07-05,144953,7991,66115,5618,9619,4272,0,936,13113,4250,28184,742,0,1595,2368,0,150,0,37288427,25.7,515849,21.1,25.7,0.0
512
- 2012-07-06,119404,3259,58048,5313,9287,4318,0,980,12162,4259,17578,718,0,1307,2087,0,88,0,33626370,25.1,476853,26.6,25.1,0.0
513
  2012-07-07,79765,1522,40609,3678,5277,2708,0,286,8531,3022,11081,405,0,696,1886,0,64,0,22335815,17.0,353790,11.3,17.0,0.0
514
  2012-07-08,90507,1461,47302,4400,6155,2201,0,432,10075,2890,12123,533,0,1009,1828,0,98,0,25088560,17.0,412654,0.1,17.0,0.0
515
- 2012-07-09,135616,3284,65182,7659,10889,4504,0,1014,14059,4597,19488,727,0,1616,2504,0,93,0,38006553,62.3,12478273,5.5,62.3,49.9
516
- 2012-07-10,140271,1795,67414,8845,12986,4773,0,1092,14546,4967,18307,998,0,1624,2785,0,139,0,39546302,66.7,12881554,20.1,66.7,39.2
517
- 2012-07-11,128951,1353,65376,6688,10884,4715,0,1217,13274,4672,15566,880,0,1549,2622,0,155,0,38411009,62.0,12937648,22.3,62.0,47.1
518
- 2012-07-12,132300,2418,66434,6639,10554,4781,0,1001,12586,4578,18029,868,0,1617,2652,0,143,0,38418210,68.6,12883792,26.7,68.6,34.0
519
- 2012-07-13,151328,1485,57661,22603,10639,4546,0,1150,12174,4250,32215,737,0,1357,2403,0,108,0,36218711,73.7,11932132,22.0,73.7,46.7
520
  2012-07-14,272634,909,36391,3349,5337,2212,0,462,7208,2533,211381,501,0,761,1539,0,51,0,25496194,84.2,8463234,26.7,84.2,41.1
521
- 2012-07-15,85659,782,45190,3983,5779,2319,0,714,8839,3387,11467,426,0,828,1875,0,70,0,24605505,40.2,8516150,21.3,40.2,37.3
522
  2012-07-16,123849,1257,61189,6490,10724,4659,0,1132,13322,4707,15370,832,0,1561,2485,0,121,0,36655202,64.4,11998706,29.5,64.4,39.2
523
  2012-07-17,128909,1305,64030,6688,11157,4869,0,1115,13633,4870,15844,817,0,1725,2718,0,138,0,38356755,61.7,12892450,24.2,61.7,29.8
524
  2012-07-18,124007,1047,62235,6344,10663,4457,0,1308,13807,4464,14824,817,0,1439,2491,0,111,0,37056256,58.0,12357709,22.5,58.0,29.5
@@ -1218,6 +1218,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1218
  2014-08-13,366082,1358,182898,17995,35264,17829,0,5915,33327,12440,43713,6941,1016,2936,4140,0,310,0,213817751,388.6,37930595,47.0,388.6,43.7
1219
  2014-08-14,363843,1325,176612,21919,36688,17801,0,6023,32553,12294,43463,7384,971,2826,3681,0,303,0,216328381,410.7,40779884,42.0,410.7,75.4
1220
  2014-08-15,346228,1297,171111,19495,35158,16458,0,5219,30425,10999,41224,6681,1056,3084,3718,0,303,0,198626039,378.3,35205278,42.8,378.3,70.4
1221
- 2014-08-16,241046,816,126225,11714,17976,8706,0,1631,22383,8058,33881,4622,696,1655,2484,0,199,0,127618138,244.4,23092121,34.5,244.4,0.0
 
1222
  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
1223
  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
 
503
  2012-06-27,127384,556,61550,9475,10339,4560,0,1268,12925,4455,17410,816,0,1318,2578,0,134,0,35926118,27.5,511928,8.2,27.5,4.4
504
  2012-06-28,138567,522,59436,15584,14027,4387,0,1131,12635,4234,22119,823,0,1269,2291,0,109,0,34858166,21.8,496793,20.2,21.8,4.4
505
  2012-06-29,124141,414,52512,9443,16452,3714,0,841,10987,3878,22038,673,0,1347,1722,0,120,0,30791085,18.7,443760,7.7,18.7,4.4
506
+ 2012-06-30,83493,305,37967,3385,5354,1966,0,369,8425,2944,20343,403,0,696,1251,0,85,0,20432316,11.8,344261,6.5,11.8,5.2
507
+ 2012-07-01,87214,263,42264,3844,5590,2139,0,361,8394,2804,18698,428,0,915,1456,0,58,0,22331367,15.0,351789,11.4,15.0,5.2
508
+ 2012-07-02,125323,490,59870,5833,9842,4231,0,850,12333,4349,22961,741,0,1533,2194,0,96,0,34372429,23.1,501774,21.7,23.1,5.2
509
+ 2012-07-03,133666,535,61323,5810,9934,4433,0,1077,12441,4450,28828,791,0,1554,2359,0,131,0,35635629,23.4,505040,21.1,23.4,5.2
510
+ 2012-07-04,129397,7294,59924,5458,8293,3390,0,792,11359,3846,25054,710,0,1192,1985,0,100,0,32454586,23.2,468233,20.0,23.2,5.2
511
+ 2012-07-05,144953,7991,66115,5618,9619,4272,0,936,13113,4250,28184,742,0,1595,2368,0,150,0,37288427,25.7,515849,21.1,25.7,5.2
512
+ 2012-07-06,119404,3259,58048,5313,9287,4318,0,980,12162,4259,17578,718,0,1307,2087,0,88,0,33626370,25.1,476853,26.6,25.1,5.2
513
  2012-07-07,79765,1522,40609,3678,5277,2708,0,286,8531,3022,11081,405,0,696,1886,0,64,0,22335815,17.0,353790,11.3,17.0,0.0
514
  2012-07-08,90507,1461,47302,4400,6155,2201,0,432,10075,2890,12123,533,0,1009,1828,0,98,0,25088560,17.0,412654,0.1,17.0,0.0
515
+ 2012-07-09,135616,3284,65182,7659,10889,4504,0,1014,14059,4597,19488,727,0,1616,2504,0,93,0,38006553,26.2,552681,8.9,26.2,0.0
516
+ 2012-07-10,140271,1795,67414,8845,12986,4773,0,1092,14546,4967,18307,998,0,1624,2785,0,139,0,39546302,30.2,582897,22.5,30.2,0.0
517
+ 2012-07-11,128951,1353,65376,6688,10884,4715,0,1217,13274,4672,15566,880,0,1549,2622,0,155,0,38411009,27.9,533851,14.2,27.9,0.0
518
+ 2012-07-12,132300,2418,66434,6639,10554,4781,0,1001,12586,4578,18029,868,0,1617,2652,0,143,0,38418210,28.5,562381,20.5,28.5,0.0
519
+ 2012-07-13,151328,1485,57661,22603,10639,4546,0,1150,12174,4250,32215,737,0,1357,2403,0,108,0,36218711,25.7,489973,19.8,25.7,0.0
520
  2012-07-14,272634,909,36391,3349,5337,2212,0,462,7208,2533,211381,501,0,761,1539,0,51,0,25496194,84.2,8463234,26.7,84.2,41.1
521
+ 2012-07-15,85659,782,45190,3983,5779,2319,0,714,8839,3387,11467,426,0,828,1875,0,70,0,24605505,12.9,371447,5.5,12.9,0.0
522
  2012-07-16,123849,1257,61189,6490,10724,4659,0,1132,13322,4707,15370,832,0,1561,2485,0,121,0,36655202,64.4,11998706,29.5,64.4,39.2
523
  2012-07-17,128909,1305,64030,6688,11157,4869,0,1115,13633,4870,15844,817,0,1725,2718,0,138,0,38356755,61.7,12892450,24.2,61.7,29.8
524
  2012-07-18,124007,1047,62235,6344,10663,4457,0,1308,13807,4464,14824,817,0,1439,2491,0,111,0,37056256,58.0,12357709,22.5,58.0,29.5
 
1218
  2014-08-13,366082,1358,182898,17995,35264,17829,0,5915,33327,12440,43713,6941,1016,2936,4140,0,310,0,213817751,388.6,37930595,47.0,388.6,43.7
1219
  2014-08-14,363843,1325,176612,21919,36688,17801,0,6023,32553,12294,43463,7384,971,2826,3681,0,303,0,216328381,410.7,40779884,42.0,410.7,75.4
1220
  2014-08-15,346228,1297,171111,19495,35158,16458,0,5219,30425,10999,41224,6681,1056,3084,3718,0,303,0,198626039,378.3,35205278,42.8,378.3,70.4
1221
+ 2014-08-16,241046,816,126225,11714,17976,8706,0,1631,22383,8058,33881,4622,696,1655,2484,0,199,0,127618138,244.4,23092121,34.5,244.4,64.0
1222
+ 2014-08-17,283711,1022,149934,13812,23055,10458,0,2571,27395,9696,35696,4419,821,1815,2780,0,237,0,154592166,290.3,28121162,35.4,290.3,0.0
1223
  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
1224
  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