Utilisateur:Hoolen/StatsWikipedia2012-2015

Programme Python utilisé modifier

import datetime
from io import StringIO
import locale
import re

import requests
from lxml import etree


# Make sure to work in the French language
locale.setlocale(locale.LC_ALL, 'fr_FR')

# Before this date, ZeroBot wasn't there to update the counter on each page
BEGIN = datetime.date(2013, 1, 19)
END = datetime.date.today()

URL = "https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Le_Bistro/{}_{}"
pattern = re.compile(r"dont (.+) articles ayant obtenu le label « Article de [q|Q]ualité », (.+) articles ayant obtenu")
spaces = re.compile(r'\s+')

# Iterate over each date
current = BEGIN
while current < END:
    data = {'date': current}
    req = requests.get(URL.format(current.day, current.strftime("%B_%Y")))

    text = req.text
    root = etree.parse(StringIO(text))

    intro = root.xpath(".//h2[span/@id='Aujourd.27hui.2C_dans_Wikip.C3.A9dia']/following-sibling::p[1]")
    if intro:
        raw_text = ''.join(intro[0].itertext())
        data['nb_articles'] = re.sub(spaces, '', intro[0].find('a').text)

        m = pattern.search(raw_text)
        if m:
            data['nb_qualites'], data['nb_bons'] = (re.sub(spaces, '', x) for x in m.groups())

        if len(data.keys()) == 4:
            print("{date},{nb_articles},{nb_qualites},{nb_bons}".format(**data))
        else:
            print(data)
    else:
        print('Warning, fail to parse %s' % current)

    current += datetime.timedelta(days=1)

Résultat graphique modifier

 

CSV produit modifier

Date,Nombre d'articles,Article de Qualité,Bon article
2013-01-19,1342338,1145,1762
2013-01-20,1342697,1144,1762
2013-01-21,1342988,1144,1765
2013-01-22,1343298,1144,1766
2013-01-23,1343666,1144,1766
2013-01-24,1344003,1145,1767
2013-01-25,1344334,1147,1767
2013-01-26,1344671,1147,1768
2013-01-27,1345067,1147,1770
2013-01-28,1345369,1147,1771
2013-01-29,1345687,1147,1770
2013-02-04,1348341,1150,1777
2013-02-05,1348618,1150,1778
2013-02-06,1348925,1150,1778
2013-02-07,1349230,1150,1780
2013-02-08,1349592,1151,1780
2013-02-09,1349883,1151,1782
2013-02-15,1352173,1153,1789
2013-02-16,1352543,1154,1790
2013-02-17,1352932,1154,1791
2013-02-18,1353254,1154,1793
2013-02-20,1354122,1153,1793
2013-02-21,1354487,1153,1793
2013-02-22,1354907,1154,1793
2013-02-23,1355401,1154,1794
2013-02-24,1355791,1154,1795
2013-02-25,1356345,1151,1799
2013-02-26,1356824,1152,1801
2013-02-27,1357300,1153,1800
2013-03-01,1358330,1154,1803
2013-03-02,1358813,1154,1803
2013-03-03,1359275,1154,1803
2013-03-04,1359831,1155,1805
2013-03-05,1360283,1155,1806
2013-03-06,1360705,1155,1806
2013-03-07,1361027,1155,1806
2013-03-08,1361367,1155,1807
2013-03-09,1361733,1156,1807
2013-03-10,1362166,1160,1808
2013-03-11,1362500,1161,1809
2013-03-12,1362913,1162,1810
2013-03-13,1363351,1163,1810
2013-03-14,1363728,1163,1810
2013-03-15,1364062,1164,1811
2013-03-16,1364514,1165,1810
2013-03-17,1364877,1166,1810
2013-03-18,1365191,1167,1810
2013-03-19,1365497,1167,1810
2013-03-21,1366047,1166,1812
2013-03-22,1366350,1167,1812
2013-03-24,1367116,1168,1813
2013-03-25,1367437,1169,1814
2013-03-26,1367729,1169,1814
2013-03-27,1368006,1169,1815
2013-03-28,1368308,1170,1815
2013-03-29,1368696,1172,1816
2013-03-30,1369095,1172,1816
2013-03-31,1369362,1172,1816
2013-04-01,1369763,1172,1816
2013-04-02,1369818,1172,1816
2013-04-03,1370128,1172,1816
2013-04-04,1370473,1172,1816
2013-04-06,1371136,1172,1816
2013-04-07,1371525,1172,1816
2013-04-08,1371864,1172,1818
2013-04-09,1372270,1172,1818
2013-04-10,1372558,1172,1820
2013-04-11,1372797,1170,1820
2013-04-12,1373664,1169,1820
2013-04-13,1374981,1171,1820
2013-04-14,1375360,1171,1820
2013-04-15,1375660,1171,1820
2013-04-17,1376040,1173,1822
2013-04-18,1376618,1175,1822
2013-04-19,1376970,1175,1822
2013-04-23,1378970,1175,1829
2013-04-24,1379274,1175,1829
2013-04-25,1379552,1174,1829
2013-04-26,1379916,1174,1828
2013-04-27,1380401,1175,1829
2013-04-28,1380904,1175,1830
2013-04-29,1381308,1175,1830
2013-04-30,1381731,1175,1832
2013-05-01,1382263,1176,1833
2013-05-02,1382653,1177,1833
2013-05-03,1382992,1179,1833
2013-05-04,1383341,1179,1833
2013-05-05,1383658,1179,1833
2013-05-06,1384048,1179,1833
2013-05-07,1384351,1179,1833
2013-05-08,1384672,1179,1833
2013-05-09,1385054,1179,1834
2013-05-10,1385330,1182,1834
2013-05-14,1386217,1184,1837
2013-05-15,1386707,1186,1839
2013-05-17,1387168,1185,1841
2013-05-21,1389079,1186,1843
2013-05-23,1389738,1186,1842
2013-05-24,1390058,1187,1842
2013-05-25,1390358,1187,1844
2013-05-26,1390768,1187,1846
2013-05-27,1391116,1187,1846
2013-05-28,1391348,1187,1850
2013-05-29,1391616,1187,1850
2013-05-30,1391923,1188,1849
2013-05-31,1392238,1188,1850
2013-06-01,1392588,1188,1850
2013-06-02,1392896,1189,1850
2013-06-03,1393245,1189,1850
2013-06-04,1393537,1189,1850
2013-06-05,1393824,1191,1850
2013-06-06,1394104,1191,1850
2013-06-07,1394379,1191,1851
2013-06-08,1394723,1191,1851
2013-06-09,1395078,1191,1855
2013-06-10,1395465,1192,1857
2013-06-11,1395760,1192,1857
2013-06-12,1396062,1192,1858
2013-06-13,1396345,1192,1858
2013-06-14,1396674,1192,1858
2013-06-15,1396992,1192,1863
2013-06-16,1397318,1193,1865
2013-06-17,1397604,1194,1866
2013-06-18,1397901,1194,1868
2013-06-19,1398228,1194,1868
2013-06-20,1398592,1195,1868
2013-06-21,1398946,1195,1869
2013-06-22,1399292,1196,1869
2013-06-23,1399649,1198,1869
2013-06-24,1400008,1199,1869
2013-06-25,1400288,1200,1870
2013-06-26,1400634,1201,1872
2013-06-27,1400915,1201,1872
2013-06-29,1401545,1201,1874
2013-06-30,1401861,1201,1874
2013-07-01,1402125,1201,1875
2013-07-02,1402445,1201,1876
2013-07-03,1402763,1202,1877
2013-07-04,1403112,1202,1877
2013-07-05,1403481,1202,1877
2013-07-06,1403768,1202,1877
2013-07-07,1404080,1202,1878
2013-07-08,1404404,1202,1878
2013-07-09,1404643,1203,1881
2013-07-10,1404930,1205,1882
2013-07-11,1405173,1206,1884
2013-07-12,1405395,1207,1885
2013-07-13,1405662,1208,1886
2013-07-14,1405927,1208,1886
2013-07-15,1406251,1209,1886
2013-07-16,1406524,1209,1887
2013-07-17,1406841,1210,1887
2013-07-18,1407125,1210,1888
2013-07-19,1407378,1210,1888
2013-07-20,1407648,1210,1889
2013-07-21,1407972,1210,1890
2013-07-26,1409529,1210,1891
2013-07-27,1409848,1210,1892
2013-07-28,1410238,1211,1892
2013-07-29,1410599,1211,1893
2013-07-30,1410990,1212,1894
2013-07-31,1411279,1212,1895
2013-08-01,1411614,1212,1895
2013-08-02,1411935,1212,1897
2013-08-03,1412250,1212,1897
2013-08-04,1412593,1213,1897
2013-08-05,1412985,1213,1897
2013-08-07,1413929,1215,1900
2013-08-08,1414440,1215,1900
2013-08-09,1414756,1215,1900
2013-08-10,1415051,1215,1900
2013-08-11,1415379,1216,1901
2013-08-12,1415647,1216,1901
2013-08-13,1415945,1216,1902
2013-08-14,1416273,1216,1903
2013-08-15,1416625,1216,1903
2013-08-16,1416899,1217,1904
2013-08-17,1417188,1217,1904
2013-08-18,1417513,1217,1905
2013-08-19,1417962,1217,1906
2013-08-20,1418319,1217,1908
2013-08-21,1418969,1218,1907
2013-08-22,1419269,1218,1908
2013-08-23,1419605,1218,1908
2013-08-24,1419936,1219,1909
2013-08-25,1420338,1219,1910
2013-08-26,1420729,1219,1911
2013-08-27,1421076,1219,1912
2013-08-28,1421380,1219,1913
2013-08-29,1421700,1219,1914
2013-08-30,1421946,1219,1914
2013-08-31,1422271,1220,1914
2013-09-01,1422587,1220,1914
2013-09-02,1422826,1221,1915
2013-09-03,1423094,1221,1916
2013-09-04,1423408,1222,1916
2013-09-05,1423663,1222,1916
2013-09-06,1423970,1223,1916
2013-09-07,1424260,1223,1917
2013-09-08,1424611,1223,1917
2013-09-09,1425027,1223,1918
2013-09-10,1425308,1224,1919
2013-09-11,1425607,1224,1919
2013-09-12,1425874,1224,1919
2013-09-13,1426180,1224,1920
2013-09-14,1426540,1224,1921
2013-09-15,1426945,1225,1921
2013-09-16,1427248,1226,1922
2013-09-17,1427486,1227,1922
2013-09-18,1427847,1227,1923
2013-09-19,1428135,1228,1923
2013-09-20,1428405,1228,1923
2013-09-21,1428669,1228,1923
2013-09-22,1428997,1228,1924
2013-09-23,1429265,1228,1924
2013-09-24,1429615,1228,1925
2013-09-25,1429871,1228,1926
2013-09-26,1430134,1228,1926
2013-09-27,1430298,1228,1927
2013-09-28,1430592,1229,1929
2013-09-29,1430966,1229,1929
2013-09-30,1431253,1229,1930
2013-10-01,1431539,1229,1930
2013-10-02,1431792,1229,1930
2013-10-03,1432022,1229,1930
2013-10-04,1432241,1231,1930
2013-10-05,1432621,1232,1931
2013-10-06,1432995,1232,1933
2013-10-07,1433251,1236,1933
2013-10-08,1433523,1236,1933
2013-10-09,1433742,1237,1934
2013-10-11,1434225,1237,1934
2013-10-12,1434594,1238,1934
2013-10-13,1434909,1238,1935
2013-10-14,1435169,1238,1935
2013-10-15,1435443,1238,1935
2013-10-16,1435825,1238,1935
2013-10-17,1436049,1240,1938
2013-10-18,1436300,1240,1938
2013-10-19,1436685,1241,1938
2013-10-20,1437065,1242,1938
2013-10-21,1437307,1242,1938
2013-10-22,1437575,1242,1938
2013-10-23,1437887,1242,1938
2013-10-24,1438184,1243,1938
2013-10-25,1438480,1243,1938
2013-10-26,1438743,1244,1939
2013-10-27,1439099,1245,1939
2013-10-28,1439404,1245,1940
2013-10-29,1439672,1246,1939
2013-10-30,1440013,1246,1939
2013-10-31,1440319,1246,1939
2013-11-01,1440613,1245,1939
2013-11-02,1440985,1245,1941
2013-11-03,1441359,1245,1942
2013-11-04,1441619,1245,1942
2013-11-05,1441860,1245,1942
2013-11-06,1442181,1247,1942
2013-11-07,1442492,1247,1942
2013-11-08,1442846,1247,1942
2013-11-09,1443154,1247,1943
2013-11-10,1443530,1247,1945
2013-11-11,1443983,1247,1945
2013-11-12,1444240,1246,1945
2013-11-13,1444507,1246,1945
2013-11-14,1444765,1245,1946
2013-11-15,1445044,1245,1946
2013-11-16,1445299,1245,1947
2013-11-17,1445552,1245,1948
2013-11-18,1445798,1245,1950
2013-11-19,1445998,1245,1951
2013-11-20,1446217,1245,1951
2013-11-21,1446445,1245,1951
2013-11-22,1446664,1246,1951
2013-11-23,1447000,1246,1951
2013-11-24,1447397,1246,1951
2013-11-25,1447743,1246,1951
2013-11-27,1448383,1246,1952
2013-11-28,1448671,1246,1953
2013-11-29,1448927,1246,1953
2013-11-30,1449316,1246,1953
2013-12-01,1449729,1247,1954
2013-12-02,1450045,1249,1954
2013-12-03,1450279,1250,1955
2013-12-04,1450589,1250,1956
2013-12-05,1450864,1250,1960
2013-12-06,1451205,1250,1961
2013-12-07,1451603,1252,1962
2013-12-08,1451950,1253,1962
2013-12-09,1452309,1254,1963
2013-12-10,1452648,1254,1966
2013-12-11,1452958,1254,1966
2013-12-12,1453281,1254,1966
2013-12-13,1453558,1254,1967
2013-12-14,1453908,1254,1967
2013-12-15,1454314,1255,1969
2013-12-16,1454650,1256,1970
2013-12-17,1454966,1256,1970
2013-12-18,1455334,1257,1972
2013-12-19,1455643,1257,1972
2013-12-20,1455959,1257,1972
2013-12-21,1456338,1257,1972
2013-12-22,1456751,1258,1972
2013-12-23,1457182,1258,1973
2013-12-24,1457497,1258,1973
2013-12-25,1457799,1258,1973
2013-12-26,1458215,1259,1972
2013-12-27,1458644,1259,1973
2013-12-28,1459186,1259,1973
2013-12-29,1459605,1259,1975
2013-12-30,1460028,1259,1975
2013-12-31,1460479,1259,1975
2014-01-01,1460922,1259,1975
2014-01-02,1461308,1259,1975
2014-01-03,1461761,1260,1975
2014-01-04,1462363,1260,1975
2014-01-05,1462791,1260,1975
2014-01-06,1463236,1261,1975
2014-01-07,1463611,1261,1978
2014-01-08,1463989,1261,1979
2014-01-09,1464304,1261,1979
2014-01-10,1464615,1262,1982
2014-01-11,1464950,1261,1985
2014-01-12,1465303,1261,1986
2014-01-13,1465612,1261,1987
2014-01-14,1465917,1261,1988
2014-01-15,1466252,1262,1988
2014-01-16,1466581,1262,1988
2014-01-17,1466904,1262,1988
2014-01-18,1467359,1262,1989
2014-01-19,1467803,1264,1989
2014-01-20,1468129,1264,1989
2014-01-21,1468467,1264,1989
2014-01-22,1468812,1265,1989
2014-01-23,1469113,1266,1989
2014-01-24,1469468,1266,1991
2014-01-25,1469808,1266,1991
2014-01-26,1470209,1266,1991
2014-01-27,1470572,1267,1993
2014-01-28,1470863,1267,1996
2014-01-29,1471217,1267,1996
2014-01-30,1471551,1267,1997
2014-01-31,1471954,1267,1997
2014-02-01,1472348,1267,1997
2014-02-02,1472767,1268,1997
2014-02-03,1473119,1268,1998
2014-02-04,1473386,1268,1999
2014-02-05,1473734,1269,2001
2014-02-06,1474047,1269,2001
2014-02-07,1474397,1269,2003
2014-02-08,1474809,1269,2004
2014-02-09,1475258,1269,2006
2014-02-10,1475654,1270,2009
2014-02-11,1475954,1270,2010
2014-02-12,1476362,1270,2011
2014-02-13,1476689,1270,2010
2014-02-14,1476926,1271,2010
2014-02-15,1477311,1271,2011
2014-02-16,1477696,1272,2011
2014-02-17,1477969,1272,2012
2014-02-18,1478232,1272,2013
2014-02-19,1478558,1273,2014
2014-02-20,1478878,1273,2014
2014-02-21,1479193,1273,2014
2014-02-22,1479492,1273,2016
2014-02-23,1479754,1274,2016
2014-02-24,1480501,1274,2019
2014-02-25,1480777,1275,2019
2014-02-26,1481046,1275,2019
2014-02-27,1481319,1275,2021
2014-02-28,1481618,1275,2021
2014-03-01,1481899,1275,2022
2014-03-02,1482188,1275,2025
2014-03-03,1482583,1275,2026
2014-03-04,1482878,1277,2026
2014-03-05,1483234,1277,2026
2014-03-06,1483523,1277,2026
2014-03-07,1483790,1277,2026
2014-03-08,1484131,1278,2028
2014-03-09,1484480,1278,2028
2014-03-10,1484849,1278,2029
2014-03-11,1485180,1278,2029
2014-03-12,1485467,1278,2029
2014-03-13,1485755,1278,2029
2014-03-14,1485979,1278,2029
2014-03-15,1486255,1279,2029
2014-03-16,1486610,1279,2030
2014-03-17,1486839,1280,2029
2014-03-18,1487141,1281,2029
2014-03-19,1487439,1281,2029
2014-03-20,1487656,1282,2029
2014-03-21,1487953,1283,2030
2014-03-22,1488339,1285,2030
2014-03-23,1488671,1286,2030
2014-03-24,1488890,1286,2030
2014-03-25,1489126,1287,2029
2014-03-26,1489396,1287,2029
2014-03-27,1489606,1288,2030
2014-03-28,1489809,1288,2031
2014-03-30,1490266,1288,2031
2014-03-31,1490506,1288,2031
2014-04-01,1490716,1288,2032
2014-04-02,1491000,1289,2033
2014-04-03,1491290,1289,2033
2014-04-04,1491652,1291,2033
2014-04-05,1491996,1291,2034
2014-04-06,1492281,1291,2034
2014-04-07,1492595,1291,2035
2014-04-08,1492834,1292,2035
2014-04-10,1493309,1292,2035
2014-04-11,1493530,1292,2036
2014-04-12,1493768,1292,2035
2014-04-13,1494140,1292,2038
2014-04-14,1494413,1292,2038
2014-04-15,1494648,1292,2040
2014-04-16,1494922,1292,2041
2014-04-17,1495332,1292,2042
2014-04-18,1495704,1292,2043
2014-04-19,1496173,1292,2043
2014-04-20,1496740,1293,2044
2014-04-21,1497200,1293,2045
2014-04-22,1497784,1293,2046
2014-04-23,1498177,1293,2047
2014-04-24,1498569,1293,2047
2014-04-25,1498899,1294,2047
2014-04-26,1499293,1296,2048
2014-04-27,1499778,1296,2049
2014-04-28,1500260,1296,2050
2014-04-29,1500553,1296,2051
2014-04-30,1500839,1296,2051
2014-05-01,1501245,1296,2053
2014-05-02,1501595,1296,2053
2014-05-03,1501962,1297,2053
2014-05-04,1502348,1297,2053
2014-05-05,1502683,1298,2053
2014-05-06,1502998,1299,2054
2014-05-07,1503317,1300,2055
2014-05-08,1503745,1300,2055
2014-05-09,1504065,1302,2056
2014-05-10,1504386,1302,2058
2014-05-11,1504766,1302,2059
2014-05-12,1505089,1302,2060
2014-05-13,1505376,1302,2063
2014-05-14,1505678,1303,2063
2014-05-14,1505678,1303,2063
2014-05-15,1505956,1304,2063
2014-05-16,1506227,1304,2067
2014-05-17,1506544,1304,2069
2014-05-18,1506923,1305,2069
2014-05-19,1507218,1305,2070
2014-05-20,1507546,1305,2070
2014-05-21,1507936,1307,2070
2014-05-22,1508268,1307,2070
2014-05-23,1508525,1307,2072
2014-05-24,1508902,1307,2072
2014-05-25,1509198,1307,2072
2014-05-27,1509538,1306,2072
2014-05-28,1510243,1309,2072
2014-05-29,1510641,1309,2073
2014-05-30,1510949,1309,2073
2014-05-31,1511312,1309,2073
2014-06-01,1511671,1309,2075
2014-06-02,1511993,1309,2075
2014-06-03,1512355,1310,2075
2014-06-04,1512639,1310,2075
2014-06-05,1512913,1310,2075
2014-06-06,1513175,1310,2075
2014-06-07,1513539,1312,2076
2014-06-08,1513920,1312,2077
2014-06-09,1514317,1312,2079
2014-06-10,1514596,1312,2079
2014-06-11,1514834,1313,2079
2014-06-12,1515046,1314,2080
2014-06-13,1515305,1314,2080
2014-06-14,1515587,1314,2080
2014-06-15,1515873,1314,2080
2014-06-16,1516164,1314,2080
2014-06-17,1516443,1314,2080
2014-06-18,1516679,1314,2082
2014-06-19,1516945,1316,2083
2014-06-20,1517154,1316,2083
2014-06-21,1517463,1316,2083
2014-06-22,1517757,1316,2083
2014-06-23,1518082,1316,2084
2014-06-24,1518423,1316,2083
2014-06-25,1518786,1316,2083
2014-06-26,1519101,1316,2083
2014-06-27,1519356,1316,2083
2014-06-28,1519653,1317,2082
2014-06-29,1520039,1317,2083
2014-06-30,1520326,1317,2084
2014-07-01,1520695,1317,2084
2014-07-02,1521028,1318,2087
2014-07-03,1521372,1318,2089
2014-07-04,1521651,1318,2089
2014-07-05,1522077,1318,2089
2014-07-06,1522370,1318,2089
2014-07-07,1522721,1318,2089
2014-07-08,1523028,1319,2090
2014-07-09,1523347,1319,2091
2014-07-10,1523692,1320,2091
2014-07-11,1523986,1321,2091
2014-07-12,1524364,1321,2096
2014-07-13,1524704,1322,2096
2014-07-14,1525101,1323,2096
2014-07-15,1525415,1323,2096
2014-07-16,1525650,1323,2096
2014-07-17,1525906,1324,2096
2014-07-18,1526167,1324,2096
2014-07-19,1526427,1324,2096
2014-07-20,1526690,1324,2097
2014-07-21,1527023,1324,2097
2014-07-22,1527395,1325,2097
2014-07-23,1527686,1327,2097
2014-07-24,1527991,1328,2098
2014-07-25,1528326,1329,2098
2014-07-26,1528621,1329,2100
2014-07-27,1528890,1329,2101
2014-07-28,1529177,1330,2101
2014-07-29,1529439,1330,2101
2014-07-30,1529703,1330,2101
2014-07-31,1530058,1330,2101
2014-08-01,1530308,1331,2101
2014-08-02,1530628,1331,2101
2014-08-03,1530870,1331,2101
2014-08-04,1531196,1331,2104
2014-08-05,1531521,1331,2104
2014-08-06,1531786,1331,2104
2014-08-07,1532093,1331,2103
2014-08-09,1532688,1330,2104
2014-08-10,1533154,1331,2104
2014-08-11,1533482,1331,2104
2014-08-12,1533732,1331,2104
2014-08-13,1533996,1331,2104
2014-08-14,1534283,1331,2104
2014-08-15,1534641,1332,2105
2014-08-16,1534999,1333,2106
2014-08-17,1535698,1333,2106
2014-08-18,1536050,1333,2107
2014-08-19,1536298,1334,2107
2014-08-20,1536639,1334,2106
2014-08-21,1536982,1334,2106
2014-08-22,1537314,1334,2106
2014-08-23,1537672,1334,2106
2014-08-24,1538041,1334,2107
2014-08-26,1538747,1334,2108
2014-08-27,1539006,1335,2110
2014-08-28,1539273,1335,2110
2014-08-29,1539572,1335,2110
2014-08-30,1539896,1335,2110
2014-08-31,1540261,1335,2114
2014-09-01,1540515,1335,2114
2014-09-02,1540780,1335,2115
2014-09-03,1541019,1336,2116
2014-09-04,1541278,1336,2117
2014-09-05,1541552,1336,2118
2014-09-06,1541796,1336,2119
2014-09-07,1542111,1336,2120
2014-09-08,1542367,1336,2122
2014-09-09,1542621,1337,2124
2014-09-10,1542870,1341,2126
2014-09-11,1543109,1341,2126
2014-09-12,1543422,1341,2126
2014-09-13,1543728,1341,2127
2014-09-14,1544073,1340,2130
2014-09-15,1544333,1340,2131
2014-09-16,1544693,1341,2131
2014-09-17,1544878,1341,2131
2014-09-18,1545169,1342,2130
2014-09-19,1545492,1342,2132
2014-09-20,1545811,1342,2134
2014-09-21,1546186,1342,2134
2014-09-22,1546498,1343,2134
2014-09-23,1546737,1343,2135
2014-09-24,1547021,1343,2135
2014-09-25,1547340,1344,2135
2014-09-26,1547604,1344,2136
2014-09-27,1547906,1344,2136
2014-09-28,1548298,1344,2137
2014-09-29,1548498,1347,2137
2014-09-30,1548753,1347,2138
2014-10-01,1549036,1347,2138
2014-10-02,1549228,1347,2140
2014-10-03,1549476,1347,2140
2014-10-04,1549794,1347,2141
2014-10-05,1550153,1348,2141
2014-10-06,1550405,1348,2141
2014-10-07,1550640,1348,2143
2014-10-08,1550925,1348,2144
2014-10-09,1551126,1347,2145
2014-10-10,1551363,1347,2146
2014-10-11,1551663,1348,2148
2014-10-12,1552038,1348,2149
2014-10-13,1552343,1348,2149
2014-10-14,1552535,1348,2149
2014-10-15,1552803,1348,2149
2014-10-16,1553025,1348,2149
2014-10-17,1553254,1349,2150
2014-10-18,1553537,1349,2151
2014-10-19,1553846,1349,2151
2014-10-20,1554129,1349,2151
2014-10-21,1554395,1351,2152
2014-10-22,1554645,1351,2152
2014-10-23,1554889,1351,2155
2014-10-24,1555155,1351,2155
2014-10-25,1555462,1351,2155
2014-10-26,1555835,1351,2154
2014-10-27,1556135,1351,2154
2014-10-28,1556417,1351,2155
2014-10-29,1556678,1351,2155
2014-10-30,1556985,1351,2155
2014-10-31,1557267,1351,2156
2014-11-01,1557583,1351,2156
2014-11-02,1557947,1351,2156
2014-11-03,1558254,1351,2158
2014-11-04,1558583,1351,2158
2014-11-05,1558857,1351,2159
2014-11-06,1559175,1351,2161
2014-11-07,1559444,1351,2161
2014-11-08,1559721,1351,2161
2014-11-09,1560048,1351,2163
2014-11-10,1560346,1351,2163
2014-11-11,1560655,1351,2164
2014-11-12,1560953,1351,2164
2014-11-13,1561208,1351,2166
2014-11-14,1561493,1352,2166
2014-11-15,1561781,1352,2166
2014-11-16,1562128,1352,2169
2014-11-17,1562425,1353,2169
2014-11-18,1562677,1354,2169
2014-11-19,1563003,1354,2170
2014-11-20,1563309,1354,2170
2014-11-21,1563579,1354,2170
2014-11-22,1563898,1357,2173
2014-11-23,1564216,1357,2173
2014-11-24,1564494,1357,2176
2014-11-25,1564757,1358,2176
2014-11-26,1565078,1358,2177
2014-11-27,1565328,1358,2178
2014-11-28,1565612,1358,2178
2014-11-29,1565945,1359,2178
2014-11-30,1566242,1359,2178
2014-12-01,1566509,1358,2178
2014-12-02,1566753,1358,2179
2014-12-03,1567130,1358,2179
2014-12-04,1567421,1358,2179
2014-12-05,1567756,1358,2181
2014-12-06,1568004,1358,2182
2014-12-07,1568349,1358,2181
2014-12-08,1568604,1358,2181
2014-12-09,1568922,1359,2182
2014-12-10,1569208,1359,2183
2014-12-11,1569578,1359,2183
2014-12-12,1569873,1360,2184
2014-12-13,1570230,1361,2185
2014-12-14,1570601,1363,2185
2014-12-15,1570882,1363,2185
2014-12-16,1571170,1363,2184
2014-12-17,1571471,1363,2185
2014-12-18,1571778,1363,2185
2014-12-19,1572039,1364,2186
2014-12-20,1572319,1364,2186
2014-12-21,1572636,1364,2188
2014-12-22,1573004,1367,2189
2014-12-23,1573328,1367,2189
2014-12-24,1573616,1367,2190
2014-12-25,1573956,1369,2192
2014-12-26,1574392,1369,2194
2014-12-27,1574776,1369,2195
2014-12-28,1575160,1369,2195
2014-12-29,1575566,1370,2194
2014-12-30,1575903,1371,2195
2014-12-31,1576226,1371,2195
2015-01-01,1576490,1371,2196
2015-01-02,1576899,1371,2196
2015-01-03,1577291,1371,2196
2015-01-04,1577622,1371,2196
2015-01-05,1577928,1371,2196
2015-01-06,1578270,1372,2197
2015-01-07,1578485,1372,2198
2015-01-08,1578720,1372,2199
2015-01-09,1578960,1372,2200
2015-01-10,1579266,1373,2201
2015-01-11,1579586,1373,2202
2015-01-12,1579896,1374,2201
2015-01-13,1580181,1374,2201
2015-01-14,1580505,1375,2201
2015-01-15,1580786,1376,2201
2015-01-16,1581106,1376,2201
2015-01-17,1581441,1376,2203
2015-01-18,1581813,1376,2207
2015-01-19,1582184,1378,2206
2015-01-20,1582506,1379,2205
2015-01-21,1582903,1379,2205
2015-01-22,1583292,1379,2205
2015-01-23,1583630,1378,2206
2015-01-24,1583970,1379,2206
2015-01-25,1584405,1379,2206
2015-01-26,1584763,1379,2206
2015-01-27,1585068,1379,2210
2015-01-28,1585376,1379,2211
2015-01-29,1585647,1380,2211