tamnd commited on
Commit
6844e00
·
verified ·
1 Parent(s): 1334f81

Add 2014-09-03 — 402.9K 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,268 days), totaling **212,327,484 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 64.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.0 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,824,440 events in 3852 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
@@ -86,7 +86,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
86
  09:00 ██████████████████████████████ 284.7K
87
  10:00 ███████████████████████████░░░ 257.5K
88
  11:00 ████████████████████████████░░ 267.1K
89
- 12:00 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 63.0K
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
91
  14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
92
  15:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -135,8 +135,8 @@ duckdb.sql("""
135
  ```
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
- 2013 ████████████████████████████░ 74.5M
139
- 2014 ██████████████████████████████ 76.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 | 344 | 74,483,412 | 216,521 | 22.7 GB | 6.6 GB | 3h19m | 10h46m | 4h15m |
148
- | 2014 | 233 | 76,762,223 | 329,451 | 26.7 GB | 7.0 GB | 2h34m | 15h13m | 3h35m |
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.1M
160
- 2014 ██████████████████████████████ 38.9M
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 | 106,557,040 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,769,239 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,502,207 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,593,663 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,007,087 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,962,399 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,574,364 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,950,172 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,757,125 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 267,087 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,975,096 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,436,865 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 195,193 | 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,269 days), totaling **212,697,150 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 64.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.0 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,845,201 events in 3853 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
 
86
  09:00 ██████████████████████████████ 284.7K
87
  10:00 ███████████████████████████░░░ 257.5K
88
  11:00 ████████████████████████████░░ 267.1K
89
+ 12:00 ████████░░░░░░░░░░░░░░░░░░░░░░ 83.8K
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
91
  14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
92
  15:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
135
  ```
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
+ 2013 ████████████████████████████░ 74.5M
139
+ 2014 ██████████████████████████████ 77.2M
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 | 344 | 74,450,128 | 216,424 | 22.7 GB | 6.6 GB | 3h18m | 10h45m | 4h14m |
148
+ | 2014 | 234 | 77,165,173 | 329,765 | 27.0 GB | 7.1 GB | 2h35m | 15h21m | 3h37m |
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.1M
160
+ 2014 ██████████████████████████████ 39.1M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 106,735,107 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,792,156 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,544,232 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,611,664 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,014,225 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,994,814 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,585,898 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 26,991,784 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,763,382 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 268,156 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,977,769 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,440,723 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 195,536 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ed4b957007bfe2fb999a76d9a582be948e237dfcbbce976386de117f891f102
3
+ size 105161
data/creates/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29713419b19cf61ca94477c34f3259a161eadc4e3fe3b28c56309d0a6d72ae41
3
+ size 1843263
data/deletes/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eae6ac0302b25a8a6d475674d14a8dac9445c3d9503662ae88cfd20e834e6a84
3
+ size 196642
data/forks/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33e39e1f4257dd160b1ac333ac489248904c652f602be2772de536c663148e0f
3
+ size 355872
data/issue_comments/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fff55162ac1846c0d89d371cdae576d7c2b656ba75d6e4603415031a958e2df
3
+ size 988651
data/issues/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb8c5a64b5fb5275ece71b8b32a4eedcd638e2c33a973cf93f4bfa862c09363c
3
+ size 592328
data/public_events/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0b8e8c52283263a9b25d43ade82ff889d6432621762532a1ce85ae14a0e4541
3
+ size 15478
data/pull_requests/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78435e3115ad8a3ed3cef71a70a3ff53dfa4024cbeabc97963073612f49251c7
3
+ size 3321424
data/pushes/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6875a655a6c8baff3b50a436a7a4629bd31f82286a127850575afee03a6d70b3
3
+ size 31069150
data/stars/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a391131abb534fc556290408899fd0cb1405c2efc3106c3eac45288f0dffc818
3
+ size 1633363
data/wiki_pages/2014/09/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4fc5883c674e5b4066f6794dda9b4c7398f08147c80e121a1d21b86f551f6fb
3
+ size 301621
stats.csv CHANGED
@@ -706,21 +706,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
706
  2013-01-16,186721,1171,94451,9962,16781,7467,0,1899,18198,7498,22084,1532,0,1794,3730,0,154,0,63318925,44.4,829859,10.0,44.4,6.0
707
  2013-01-17,196541,1183,94882,15381,21214,7031,0,1888,18501,7863,21674,1609,0,1883,3285,0,147,0,63033633,52.3,895500,32.9,52.3,6.0
708
  2013-01-18,166984,1227,84532,9677,15750,6386,0,1392,15975,6759,19140,1323,0,1741,2852,0,230,0,55786372,47.6,726771,12.4,47.6,6.0
709
- 2013-01-19,124976,877,67373,6376,9475,3731,0,845,12125,4820,14771,1000,0,1230,2257,0,96,0,39695357,33.9,565717,8.1,33.9,0.0
710
- 2013-01-20,138262,723,74158,7163,10804,4022,0,707,14102,5248,16492,971,0,1202,2563,0,107,0,43745352,36.9,628636,11.7,36.9,0.0
711
- 2013-01-21,182443,1195,93863,10073,16625,6875,0,1610,17307,7059,21034,1424,0,1897,3332,0,149,0,61733944,41.9,791856,18.4,41.9,0.0
712
- 2013-01-22,194352,1294,97702,11134,18068,7476,0,1560,18834,7870,23107,1563,0,1856,3703,0,185,0,64864724,45.3,845517,30.1,45.3,0.0
713
- 2013-01-23,201314,1370,99622,11099,18483,7859,0,1875,19787,8348,24710,1613,0,1937,4457,0,154,0,67353053,46.8,871168,13.0,46.8,0.0
714
- 2013-01-24,199064,1297,100069,9971,17884,7544,0,1856,20566,8568,23556,1451,0,2246,3860,0,196,0,66332904,42.7,888003,8.9,42.7,0.0
715
- 2013-01-25,175763,1459,89942,8933,15471,6862,0,1494,17532,6920,20661,1455,0,1602,3254,0,178,0,58971483,36.9,766597,6.7,37.0,0.0
716
- 2013-01-26,144468,995,76196,11529,11504,4280,0,640,13046,5321,16422,1076,0,1045,2310,0,104,0,44362972,57.9,13860302,23.7,57.9,34.5
717
- 2013-01-27,151477,852,81089,8661,12351,4371,0,854,14753,5690,17601,965,0,1412,2763,0,115,0,47315455,44.4,15104285,27.1,44.4,27.4
718
- 2013-01-28,197606,1419,98993,10942,18349,7553,0,1473,19777,8050,23273,1589,0,2146,3864,0,178,0,65880765,28.7,19900843,32.9,28.7,58.3
719
- 2013-01-29,204587,1620,102662,12287,19051,7790,0,1931,19886,8097,23889,1588,0,2001,3595,0,190,0,67803119,37.6,20606129,45.8,37.6,35.6
720
  2013-01-30,212989,1450,110315,11126,18957,8026,0,2084,20408,8086,24340,1707,0,2081,4222,0,187,0,69356874,43.8,21080450,36.0,43.8,42.5
721
- 2013-01-31,203659,1449,105665,11138,18716,7304,0,1862,19755,7174,23120,1509,0,1767,4061,0,139,0,65251284,58.8,19925569,41.8,58.8,29.6
722
- 2013-02-01,169686,1305,84928,8792,15435,6532,0,1290,17790,6243,20847,1380,0,1710,3272,0,162,0,56534479,53.5,16989376,40.8,53.5,30.8
723
- 2013-02-02,132268,880,69078,7993,11115,4086,0,642,12458,5251,16038,925,0,1334,2357,0,111,0,41092710,44.3,12892954,33.2,44.3,19.0
 
724
  2013-02-12,197523,1260,96991,12202,21246,7477,0,2093,17698,6987,24259,1645,0,2150,3327,0,188,0,68174371,90.3,19986553,0.0,90.3,32.3
725
  2013-02-13,199889,1395,97973,12370,22769,7540,0,2061,18171,6937,22958,1549,0,2199,3773,0,194,0,64342569,85.4,20727705,7.5,85.4,42.2
726
  2013-02-14,186628,1209,91717,11340,20105,7383,0,1877,17991,6876,20794,1472,0,2017,3671,0,176,0,60808459,82.7,18953414,25.7,82.7,35.7
@@ -1264,6 +1265,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1264
  2014-08-30,239376,1002,131940,11173,17603,8868,0,1837,23440,7944,27145,3441,721,1508,2577,0,177,0,131322439,254.2,23892265,37.8,254.2,46.2
1265
  2014-08-31,273461,964,147715,12833,21023,10365,0,2286,27044,9241,31881,4163,765,1981,2980,0,220,0,150060794,277.6,27369801,45.0,277.6,61.3
1266
  2014-09-01,364290,1391,187567,17638,31674,15803,0,4234,35884,12666,43364,6064,976,2357,4370,0,302,0,205500432,388.8,36506874,45.4,388.8,110.3
1267
- 2014-09-02,425652,1952,212664,20760,40872,20534,0,6919,39090,14704,50638,7416,1205,3878,4670,0,350,0,247970027,480.6,43535632,50.5,480.6,0.0
 
1268
  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
1269
  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
 
706
  2013-01-16,186721,1171,94451,9962,16781,7467,0,1899,18198,7498,22084,1532,0,1794,3730,0,154,0,63318925,44.4,829859,10.0,44.4,6.0
707
  2013-01-17,196541,1183,94882,15381,21214,7031,0,1888,18501,7863,21674,1609,0,1883,3285,0,147,0,63033633,52.3,895500,32.9,52.3,6.0
708
  2013-01-18,166984,1227,84532,9677,15750,6386,0,1392,15975,6759,19140,1323,0,1741,2852,0,230,0,55786372,47.6,726771,12.4,47.6,6.0
709
+ 2013-01-19,124976,877,67373,6376,9475,3731,0,845,12125,4820,14771,1000,0,1230,2257,0,96,0,39695357,33.9,565717,8.1,33.9,13.5
710
+ 2013-01-20,138262,723,74158,7163,10804,4022,0,707,14102,5248,16492,971,0,1202,2563,0,107,0,43745352,36.9,628636,11.7,36.9,13.5
711
+ 2013-01-21,182443,1195,93863,10073,16625,6875,0,1610,17307,7059,21034,1424,0,1897,3332,0,149,0,61733944,41.9,791856,18.4,41.9,13.5
712
+ 2013-01-22,194352,1294,97702,11134,18068,7476,0,1560,18834,7870,23107,1563,0,1856,3703,0,185,0,64864724,45.3,845517,30.1,45.3,13.5
713
+ 2013-01-23,201314,1370,99622,11099,18483,7859,0,1875,19787,8348,24710,1613,0,1937,4457,0,154,0,67353053,46.8,871168,13.0,46.8,13.5
714
+ 2013-01-24,199064,1297,100069,9971,17884,7544,0,1856,20566,8568,23556,1451,0,2246,3860,0,196,0,66332904,42.7,888003,8.9,42.7,13.5
715
+ 2013-01-25,175763,1459,89942,8933,15471,6862,0,1494,17532,6920,20661,1455,0,1602,3254,0,178,0,58971483,36.9,766597,6.7,37.0,13.5
716
+ 2013-01-26,144468,995,76196,11529,11504,4280,0,640,13046,5321,16422,1076,0,1045,2310,0,104,0,44362972,32.9,604053,7.3,32.9,0.0
717
+ 2013-01-27,139521,787,74781,8083,11551,3973,0,787,13497,5068,16091,889,0,1344,2562,0,108,0,43509601,30.3,626078,20.3,30.3,0.0
718
+ 2013-01-28,176278,1225,88430,9585,16072,6608,0,1309,18035,7306,20712,1407,0,1891,3542,0,156,0,58619839,34.6,809055,6.5,34.6,0.0
719
+ 2013-01-29,189397,1500,95010,11470,17667,7235,0,1799,18284,7367,22175,1473,0,1855,3384,0,178,0,62801781,35.0,832990,23.1,35.0,0.0
720
  2013-01-30,212989,1450,110315,11126,18957,8026,0,2084,20408,8086,24340,1707,0,2081,4222,0,187,0,69356874,43.8,21080450,36.0,43.8,42.5
721
+ 2013-01-31,203659,1449,105665,11138,18716,7304,0,1862,19755,7174,23120,1509,0,1767,4061,0,139,0,65251284,33.9,872038,40.1,33.9,0.0
722
+ 2013-02-01,169686,1305,84928,8792,15435,6532,0,1290,17790,6243,20847,1380,0,1710,3272,0,162,0,56534479,28.3,768199,14.7,28.3,0.0
723
+ 2013-02-02,132268,880,69078,7993,11115,4086,0,642,12458,5251,16038,925,0,1334,2357,0,111,0,41092710,23.2,571509,10.0,23.2,0.0
724
+ 2013-02-03,146509,793,76926,8719,12432,4240,0,679,14694,5396,17420,1084,0,1199,2805,0,122,0,45359593,26.5,672362,14.9,26.5,0.0
725
  2013-02-12,197523,1260,96991,12202,21246,7477,0,2093,17698,6987,24259,1645,0,2150,3327,0,188,0,68174371,90.3,19986553,0.0,90.3,32.3
726
  2013-02-13,199889,1395,97973,12370,22769,7540,0,2061,18171,6937,22958,1549,0,2199,3773,0,194,0,64342569,85.4,20727705,7.5,85.4,42.2
727
  2013-02-14,186628,1209,91717,11340,20105,7383,0,1877,17991,6876,20794,1472,0,2017,3671,0,176,0,60808459,82.7,18953414,25.7,82.7,35.7
 
1265
  2014-08-30,239376,1002,131940,11173,17603,8868,0,1837,23440,7944,27145,3441,721,1508,2577,0,177,0,131322439,254.2,23892265,37.8,254.2,46.2
1266
  2014-08-31,273461,964,147715,12833,21023,10365,0,2286,27044,9241,31881,4163,765,1981,2980,0,220,0,150060794,277.6,27369801,45.0,277.6,61.3
1267
  2014-09-01,364290,1391,187567,17638,31674,15803,0,4234,35884,12666,43364,6064,976,2357,4370,0,302,0,205500432,388.8,36506874,45.4,388.8,110.3
1268
+ 2014-09-02,425652,1952,212664,20760,40872,20534,0,6919,39090,14704,50638,7416,1205,3878,4670,0,350,0,247970027,480.6,43535632,50.5,480.6,116.2
1269
+ 2014-09-03,402950,2016,194938,24852,45102,19344,0,7369,35413,12900,45683,6515,1069,2996,4381,0,372,0,233687395,460.2,40422953,46.0,460.2,0.0
1270
  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
1271
  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