diff --git a/module3/exo1/influenza-like-illness-analysis.ipynb b/module3/exo1/influenza-like-illness-analysis.ipynb
index 87092fc69cd90ff457ea56284b789cb0de199a41..07b2bdfb6088e04e6eeea5809440b67ae9d3da00 100644
--- a/module3/exo1/influenza-like-illness-analysis.ipynb
+++ b/module3/exo1/influenza-like-illness-analysis.ipynb
@@ -9,16 +9,16 @@
},
{
"cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
+ "execution_count": 17,
+ "metadata": {},
"outputs": [],
"source": [
"%matplotlib inline\n",
"import matplotlib.pyplot as plt\n",
"import pandas as pd\n",
- "import isoweek"
+ "import isoweek\n",
+ "from os import path\n",
+ "from urllib.request import urlretrieve"
]
},
{
@@ -30,13 +30,12 @@
},
{
"cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
+ "execution_count": 18,
+ "metadata": {},
"outputs": [],
"source": [
- "data_url = \"http://www.sentiweb.fr/datasets/incidence-PAY-3.csv\""
+ "data_url = \"http://www.sentiweb.fr/datasets/incidence-PAY-3.csv\"\n",
+ "data_file_name = \"influenza_data.csv\""
]
},
{
@@ -63,11 +62,1006 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 19,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Using local data copy\n"
+ ]
+ }
+ ],
"source": [
- "raw_data = pd.read_csv(data_url, skiprows=1)\n",
+ "if not path.exists(data_file_name) :\n",
+ " urlretrieve(data_url, data_file_name)\n",
+ " print(\"No local data copy, creating new version\")\n",
+ "else :\n",
+ " print(\"Using local data copy\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "If local copy exists, use it, if not download new version from provided URL. Allows original code used in analysis to be given with notebook, and recreated if missing. Downloaded data **can** differ from original data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " week | \n",
+ " indicator | \n",
+ " inc | \n",
+ " inc_low | \n",
+ " inc_up | \n",
+ " inc100 | \n",
+ " inc100_low | \n",
+ " inc100_up | \n",
+ " geo_insee | \n",
+ " geo_name | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " 202011 | \n",
+ " 3 | \n",
+ " 101704 | \n",
+ " 93652.0 | \n",
+ " 109756.0 | \n",
+ " 154 | \n",
+ " 142.0 | \n",
+ " 166.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " 202010 | \n",
+ " 3 | \n",
+ " 104977 | \n",
+ " 96650.0 | \n",
+ " 113304.0 | \n",
+ " 159 | \n",
+ " 146.0 | \n",
+ " 172.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " 202009 | \n",
+ " 3 | \n",
+ " 110696 | \n",
+ " 102066.0 | \n",
+ " 119326.0 | \n",
+ " 168 | \n",
+ " 155.0 | \n",
+ " 181.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " 202008 | \n",
+ " 3 | \n",
+ " 143753 | \n",
+ " 133984.0 | \n",
+ " 153522.0 | \n",
+ " 218 | \n",
+ " 203.0 | \n",
+ " 233.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " 202007 | \n",
+ " 3 | \n",
+ " 183610 | \n",
+ " 172812.0 | \n",
+ " 194408.0 | \n",
+ " 279 | \n",
+ " 263.0 | \n",
+ " 295.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 5 | \n",
+ " 202006 | \n",
+ " 3 | \n",
+ " 206669 | \n",
+ " 195481.0 | \n",
+ " 217857.0 | \n",
+ " 314 | \n",
+ " 297.0 | \n",
+ " 331.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 6 | \n",
+ " 202005 | \n",
+ " 3 | \n",
+ " 187957 | \n",
+ " 177445.0 | \n",
+ " 198469.0 | \n",
+ " 285 | \n",
+ " 269.0 | \n",
+ " 301.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 7 | \n",
+ " 202004 | \n",
+ " 3 | \n",
+ " 122331 | \n",
+ " 113492.0 | \n",
+ " 131170.0 | \n",
+ " 186 | \n",
+ " 173.0 | \n",
+ " 199.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 8 | \n",
+ " 202003 | \n",
+ " 3 | \n",
+ " 78413 | \n",
+ " 71330.0 | \n",
+ " 85496.0 | \n",
+ " 119 | \n",
+ " 108.0 | \n",
+ " 130.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 9 | \n",
+ " 202002 | \n",
+ " 3 | \n",
+ " 53614 | \n",
+ " 47654.0 | \n",
+ " 59574.0 | \n",
+ " 81 | \n",
+ " 72.0 | \n",
+ " 90.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 10 | \n",
+ " 202001 | \n",
+ " 3 | \n",
+ " 36850 | \n",
+ " 31608.0 | \n",
+ " 42092.0 | \n",
+ " 56 | \n",
+ " 48.0 | \n",
+ " 64.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 11 | \n",
+ " 201952 | \n",
+ " 3 | \n",
+ " 28135 | \n",
+ " 23220.0 | \n",
+ " 33050.0 | \n",
+ " 43 | \n",
+ " 36.0 | \n",
+ " 50.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 12 | \n",
+ " 201951 | \n",
+ " 3 | \n",
+ " 29786 | \n",
+ " 25042.0 | \n",
+ " 34530.0 | \n",
+ " 45 | \n",
+ " 38.0 | \n",
+ " 52.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 13 | \n",
+ " 201950 | \n",
+ " 3 | \n",
+ " 34223 | \n",
+ " 29156.0 | \n",
+ " 39290.0 | \n",
+ " 52 | \n",
+ " 44.0 | \n",
+ " 60.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 14 | \n",
+ " 201949 | \n",
+ " 3 | \n",
+ " 25662 | \n",
+ " 21414.0 | \n",
+ " 29910.0 | \n",
+ " 39 | \n",
+ " 33.0 | \n",
+ " 45.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 15 | \n",
+ " 201948 | \n",
+ " 3 | \n",
+ " 22367 | \n",
+ " 18055.0 | \n",
+ " 26679.0 | \n",
+ " 34 | \n",
+ " 27.0 | \n",
+ " 41.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 16 | \n",
+ " 201947 | \n",
+ " 3 | \n",
+ " 18669 | \n",
+ " 14759.0 | \n",
+ " 22579.0 | \n",
+ " 28 | \n",
+ " 22.0 | \n",
+ " 34.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 17 | \n",
+ " 201946 | \n",
+ " 3 | \n",
+ " 16030 | \n",
+ " 12567.0 | \n",
+ " 19493.0 | \n",
+ " 24 | \n",
+ " 19.0 | \n",
+ " 29.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 18 | \n",
+ " 201945 | \n",
+ " 3 | \n",
+ " 10138 | \n",
+ " 7160.0 | \n",
+ " 13116.0 | \n",
+ " 15 | \n",
+ " 10.0 | \n",
+ " 20.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 19 | \n",
+ " 201944 | \n",
+ " 3 | \n",
+ " 7822 | \n",
+ " 5010.0 | \n",
+ " 10634.0 | \n",
+ " 12 | \n",
+ " 8.0 | \n",
+ " 16.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 20 | \n",
+ " 201943 | \n",
+ " 3 | \n",
+ " 9487 | \n",
+ " 6448.0 | \n",
+ " 12526.0 | \n",
+ " 14 | \n",
+ " 9.0 | \n",
+ " 19.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 21 | \n",
+ " 201942 | \n",
+ " 3 | \n",
+ " 7747 | \n",
+ " 5243.0 | \n",
+ " 10251.0 | \n",
+ " 12 | \n",
+ " 8.0 | \n",
+ " 16.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 22 | \n",
+ " 201941 | \n",
+ " 3 | \n",
+ " 7122 | \n",
+ " 4720.0 | \n",
+ " 9524.0 | \n",
+ " 11 | \n",
+ " 7.0 | \n",
+ " 15.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 23 | \n",
+ " 201940 | \n",
+ " 3 | \n",
+ " 8505 | \n",
+ " 5784.0 | \n",
+ " 11226.0 | \n",
+ " 13 | \n",
+ " 9.0 | \n",
+ " 17.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 24 | \n",
+ " 201939 | \n",
+ " 3 | \n",
+ " 7091 | \n",
+ " 4462.0 | \n",
+ " 9720.0 | \n",
+ " 11 | \n",
+ " 7.0 | \n",
+ " 15.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 25 | \n",
+ " 201938 | \n",
+ " 3 | \n",
+ " 4897 | \n",
+ " 2891.0 | \n",
+ " 6903.0 | \n",
+ " 7 | \n",
+ " 4.0 | \n",
+ " 10.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 26 | \n",
+ " 201937 | \n",
+ " 3 | \n",
+ " 3172 | \n",
+ " 1367.0 | \n",
+ " 4977.0 | \n",
+ " 5 | \n",
+ " 2.0 | \n",
+ " 8.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 27 | \n",
+ " 201936 | \n",
+ " 3 | \n",
+ " 2295 | \n",
+ " 728.0 | \n",
+ " 3862.0 | \n",
+ " 3 | \n",
+ " 1.0 | \n",
+ " 5.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 28 | \n",
+ " 201935 | \n",
+ " 3 | \n",
+ " 1010 | \n",
+ " 2.0 | \n",
+ " 2018.0 | \n",
+ " 2 | \n",
+ " 0.0 | \n",
+ " 4.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 29 | \n",
+ " 201934 | \n",
+ " 3 | \n",
+ " 1672 | \n",
+ " 279.0 | \n",
+ " 3065.0 | \n",
+ " 3 | \n",
+ " 1.0 | \n",
+ " 5.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 1816 | \n",
+ " 198521 | \n",
+ " 3 | \n",
+ " 26096 | \n",
+ " 19621.0 | \n",
+ " 32571.0 | \n",
+ " 47 | \n",
+ " 35.0 | \n",
+ " 59.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1817 | \n",
+ " 198520 | \n",
+ " 3 | \n",
+ " 27896 | \n",
+ " 20885.0 | \n",
+ " 34907.0 | \n",
+ " 51 | \n",
+ " 38.0 | \n",
+ " 64.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1818 | \n",
+ " 198519 | \n",
+ " 3 | \n",
+ " 43154 | \n",
+ " 32821.0 | \n",
+ " 53487.0 | \n",
+ " 78 | \n",
+ " 59.0 | \n",
+ " 97.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1819 | \n",
+ " 198518 | \n",
+ " 3 | \n",
+ " 40555 | \n",
+ " 29935.0 | \n",
+ " 51175.0 | \n",
+ " 74 | \n",
+ " 55.0 | \n",
+ " 93.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1820 | \n",
+ " 198517 | \n",
+ " 3 | \n",
+ " 34053 | \n",
+ " 24366.0 | \n",
+ " 43740.0 | \n",
+ " 62 | \n",
+ " 44.0 | \n",
+ " 80.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1821 | \n",
+ " 198516 | \n",
+ " 3 | \n",
+ " 50362 | \n",
+ " 36451.0 | \n",
+ " 64273.0 | \n",
+ " 91 | \n",
+ " 66.0 | \n",
+ " 116.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1822 | \n",
+ " 198515 | \n",
+ " 3 | \n",
+ " 63881 | \n",
+ " 45538.0 | \n",
+ " 82224.0 | \n",
+ " 116 | \n",
+ " 83.0 | \n",
+ " 149.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1823 | \n",
+ " 198514 | \n",
+ " 3 | \n",
+ " 134545 | \n",
+ " 114400.0 | \n",
+ " 154690.0 | \n",
+ " 244 | \n",
+ " 207.0 | \n",
+ " 281.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1824 | \n",
+ " 198513 | \n",
+ " 3 | \n",
+ " 197206 | \n",
+ " 176080.0 | \n",
+ " 218332.0 | \n",
+ " 357 | \n",
+ " 319.0 | \n",
+ " 395.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1825 | \n",
+ " 198512 | \n",
+ " 3 | \n",
+ " 245240 | \n",
+ " 223304.0 | \n",
+ " 267176.0 | \n",
+ " 445 | \n",
+ " 405.0 | \n",
+ " 485.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1826 | \n",
+ " 198511 | \n",
+ " 3 | \n",
+ " 276205 | \n",
+ " 252399.0 | \n",
+ " 300011.0 | \n",
+ " 501 | \n",
+ " 458.0 | \n",
+ " 544.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1827 | \n",
+ " 198510 | \n",
+ " 3 | \n",
+ " 353231 | \n",
+ " 326279.0 | \n",
+ " 380183.0 | \n",
+ " 640 | \n",
+ " 591.0 | \n",
+ " 689.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1828 | \n",
+ " 198509 | \n",
+ " 3 | \n",
+ " 369895 | \n",
+ " 341109.0 | \n",
+ " 398681.0 | \n",
+ " 670 | \n",
+ " 618.0 | \n",
+ " 722.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1829 | \n",
+ " 198508 | \n",
+ " 3 | \n",
+ " 389886 | \n",
+ " 359529.0 | \n",
+ " 420243.0 | \n",
+ " 707 | \n",
+ " 652.0 | \n",
+ " 762.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1830 | \n",
+ " 198507 | \n",
+ " 3 | \n",
+ " 471852 | \n",
+ " 432599.0 | \n",
+ " 511105.0 | \n",
+ " 855 | \n",
+ " 784.0 | \n",
+ " 926.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1831 | \n",
+ " 198506 | \n",
+ " 3 | \n",
+ " 565825 | \n",
+ " 518011.0 | \n",
+ " 613639.0 | \n",
+ " 1026 | \n",
+ " 939.0 | \n",
+ " 1113.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1832 | \n",
+ " 198505 | \n",
+ " 3 | \n",
+ " 637302 | \n",
+ " 592795.0 | \n",
+ " 681809.0 | \n",
+ " 1155 | \n",
+ " 1074.0 | \n",
+ " 1236.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1833 | \n",
+ " 198504 | \n",
+ " 3 | \n",
+ " 424937 | \n",
+ " 390794.0 | \n",
+ " 459080.0 | \n",
+ " 770 | \n",
+ " 708.0 | \n",
+ " 832.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1834 | \n",
+ " 198503 | \n",
+ " 3 | \n",
+ " 213901 | \n",
+ " 174689.0 | \n",
+ " 253113.0 | \n",
+ " 388 | \n",
+ " 317.0 | \n",
+ " 459.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1835 | \n",
+ " 198502 | \n",
+ " 3 | \n",
+ " 97586 | \n",
+ " 80949.0 | \n",
+ " 114223.0 | \n",
+ " 177 | \n",
+ " 147.0 | \n",
+ " 207.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1836 | \n",
+ " 198501 | \n",
+ " 3 | \n",
+ " 85489 | \n",
+ " 65918.0 | \n",
+ " 105060.0 | \n",
+ " 155 | \n",
+ " 120.0 | \n",
+ " 190.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1837 | \n",
+ " 198452 | \n",
+ " 3 | \n",
+ " 84830 | \n",
+ " 60602.0 | \n",
+ " 109058.0 | \n",
+ " 154 | \n",
+ " 110.0 | \n",
+ " 198.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1838 | \n",
+ " 198451 | \n",
+ " 3 | \n",
+ " 101726 | \n",
+ " 80242.0 | \n",
+ " 123210.0 | \n",
+ " 185 | \n",
+ " 146.0 | \n",
+ " 224.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1839 | \n",
+ " 198450 | \n",
+ " 3 | \n",
+ " 123680 | \n",
+ " 101401.0 | \n",
+ " 145959.0 | \n",
+ " 225 | \n",
+ " 184.0 | \n",
+ " 266.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1840 | \n",
+ " 198449 | \n",
+ " 3 | \n",
+ " 101073 | \n",
+ " 81684.0 | \n",
+ " 120462.0 | \n",
+ " 184 | \n",
+ " 149.0 | \n",
+ " 219.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1841 | \n",
+ " 198448 | \n",
+ " 3 | \n",
+ " 78620 | \n",
+ " 60634.0 | \n",
+ " 96606.0 | \n",
+ " 143 | \n",
+ " 110.0 | \n",
+ " 176.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1842 | \n",
+ " 198447 | \n",
+ " 3 | \n",
+ " 72029 | \n",
+ " 54274.0 | \n",
+ " 89784.0 | \n",
+ " 131 | \n",
+ " 99.0 | \n",
+ " 163.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1843 | \n",
+ " 198446 | \n",
+ " 3 | \n",
+ " 87330 | \n",
+ " 67686.0 | \n",
+ " 106974.0 | \n",
+ " 159 | \n",
+ " 123.0 | \n",
+ " 195.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1844 | \n",
+ " 198445 | \n",
+ " 3 | \n",
+ " 135223 | \n",
+ " 101414.0 | \n",
+ " 169032.0 | \n",
+ " 246 | \n",
+ " 184.0 | \n",
+ " 308.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1845 | \n",
+ " 198444 | \n",
+ " 3 | \n",
+ " 68422 | \n",
+ " 20056.0 | \n",
+ " 116788.0 | \n",
+ " 125 | \n",
+ " 37.0 | \n",
+ " 213.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
1846 rows × 10 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " week indicator inc inc_low inc_up inc100 inc100_low \\\n",
+ "0 202011 3 101704 93652.0 109756.0 154 142.0 \n",
+ "1 202010 3 104977 96650.0 113304.0 159 146.0 \n",
+ "2 202009 3 110696 102066.0 119326.0 168 155.0 \n",
+ "3 202008 3 143753 133984.0 153522.0 218 203.0 \n",
+ "4 202007 3 183610 172812.0 194408.0 279 263.0 \n",
+ "5 202006 3 206669 195481.0 217857.0 314 297.0 \n",
+ "6 202005 3 187957 177445.0 198469.0 285 269.0 \n",
+ "7 202004 3 122331 113492.0 131170.0 186 173.0 \n",
+ "8 202003 3 78413 71330.0 85496.0 119 108.0 \n",
+ "9 202002 3 53614 47654.0 59574.0 81 72.0 \n",
+ "10 202001 3 36850 31608.0 42092.0 56 48.0 \n",
+ "11 201952 3 28135 23220.0 33050.0 43 36.0 \n",
+ "12 201951 3 29786 25042.0 34530.0 45 38.0 \n",
+ "13 201950 3 34223 29156.0 39290.0 52 44.0 \n",
+ "14 201949 3 25662 21414.0 29910.0 39 33.0 \n",
+ "15 201948 3 22367 18055.0 26679.0 34 27.0 \n",
+ "16 201947 3 18669 14759.0 22579.0 28 22.0 \n",
+ "17 201946 3 16030 12567.0 19493.0 24 19.0 \n",
+ "18 201945 3 10138 7160.0 13116.0 15 10.0 \n",
+ "19 201944 3 7822 5010.0 10634.0 12 8.0 \n",
+ "20 201943 3 9487 6448.0 12526.0 14 9.0 \n",
+ "21 201942 3 7747 5243.0 10251.0 12 8.0 \n",
+ "22 201941 3 7122 4720.0 9524.0 11 7.0 \n",
+ "23 201940 3 8505 5784.0 11226.0 13 9.0 \n",
+ "24 201939 3 7091 4462.0 9720.0 11 7.0 \n",
+ "25 201938 3 4897 2891.0 6903.0 7 4.0 \n",
+ "26 201937 3 3172 1367.0 4977.0 5 2.0 \n",
+ "27 201936 3 2295 728.0 3862.0 3 1.0 \n",
+ "28 201935 3 1010 2.0 2018.0 2 0.0 \n",
+ "29 201934 3 1672 279.0 3065.0 3 1.0 \n",
+ "... ... ... ... ... ... ... ... \n",
+ "1816 198521 3 26096 19621.0 32571.0 47 35.0 \n",
+ "1817 198520 3 27896 20885.0 34907.0 51 38.0 \n",
+ "1818 198519 3 43154 32821.0 53487.0 78 59.0 \n",
+ "1819 198518 3 40555 29935.0 51175.0 74 55.0 \n",
+ "1820 198517 3 34053 24366.0 43740.0 62 44.0 \n",
+ "1821 198516 3 50362 36451.0 64273.0 91 66.0 \n",
+ "1822 198515 3 63881 45538.0 82224.0 116 83.0 \n",
+ "1823 198514 3 134545 114400.0 154690.0 244 207.0 \n",
+ "1824 198513 3 197206 176080.0 218332.0 357 319.0 \n",
+ "1825 198512 3 245240 223304.0 267176.0 445 405.0 \n",
+ "1826 198511 3 276205 252399.0 300011.0 501 458.0 \n",
+ "1827 198510 3 353231 326279.0 380183.0 640 591.0 \n",
+ "1828 198509 3 369895 341109.0 398681.0 670 618.0 \n",
+ "1829 198508 3 389886 359529.0 420243.0 707 652.0 \n",
+ "1830 198507 3 471852 432599.0 511105.0 855 784.0 \n",
+ "1831 198506 3 565825 518011.0 613639.0 1026 939.0 \n",
+ "1832 198505 3 637302 592795.0 681809.0 1155 1074.0 \n",
+ "1833 198504 3 424937 390794.0 459080.0 770 708.0 \n",
+ "1834 198503 3 213901 174689.0 253113.0 388 317.0 \n",
+ "1835 198502 3 97586 80949.0 114223.0 177 147.0 \n",
+ "1836 198501 3 85489 65918.0 105060.0 155 120.0 \n",
+ "1837 198452 3 84830 60602.0 109058.0 154 110.0 \n",
+ "1838 198451 3 101726 80242.0 123210.0 185 146.0 \n",
+ "1839 198450 3 123680 101401.0 145959.0 225 184.0 \n",
+ "1840 198449 3 101073 81684.0 120462.0 184 149.0 \n",
+ "1841 198448 3 78620 60634.0 96606.0 143 110.0 \n",
+ "1842 198447 3 72029 54274.0 89784.0 131 99.0 \n",
+ "1843 198446 3 87330 67686.0 106974.0 159 123.0 \n",
+ "1844 198445 3 135223 101414.0 169032.0 246 184.0 \n",
+ "1845 198444 3 68422 20056.0 116788.0 125 37.0 \n",
+ "\n",
+ " inc100_up geo_insee geo_name \n",
+ "0 166.0 FR France \n",
+ "1 172.0 FR France \n",
+ "2 181.0 FR France \n",
+ "3 233.0 FR France \n",
+ "4 295.0 FR France \n",
+ "5 331.0 FR France \n",
+ "6 301.0 FR France \n",
+ "7 199.0 FR France \n",
+ "8 130.0 FR France \n",
+ "9 90.0 FR France \n",
+ "10 64.0 FR France \n",
+ "11 50.0 FR France \n",
+ "12 52.0 FR France \n",
+ "13 60.0 FR France \n",
+ "14 45.0 FR France \n",
+ "15 41.0 FR France \n",
+ "16 34.0 FR France \n",
+ "17 29.0 FR France \n",
+ "18 20.0 FR France \n",
+ "19 16.0 FR France \n",
+ "20 19.0 FR France \n",
+ "21 16.0 FR France \n",
+ "22 15.0 FR France \n",
+ "23 17.0 FR France \n",
+ "24 15.0 FR France \n",
+ "25 10.0 FR France \n",
+ "26 8.0 FR France \n",
+ "27 5.0 FR France \n",
+ "28 4.0 FR France \n",
+ "29 5.0 FR France \n",
+ "... ... ... ... \n",
+ "1816 59.0 FR France \n",
+ "1817 64.0 FR France \n",
+ "1818 97.0 FR France \n",
+ "1819 93.0 FR France \n",
+ "1820 80.0 FR France \n",
+ "1821 116.0 FR France \n",
+ "1822 149.0 FR France \n",
+ "1823 281.0 FR France \n",
+ "1824 395.0 FR France \n",
+ "1825 485.0 FR France \n",
+ "1826 544.0 FR France \n",
+ "1827 689.0 FR France \n",
+ "1828 722.0 FR France \n",
+ "1829 762.0 FR France \n",
+ "1830 926.0 FR France \n",
+ "1831 1113.0 FR France \n",
+ "1832 1236.0 FR France \n",
+ "1833 832.0 FR France \n",
+ "1834 459.0 FR France \n",
+ "1835 207.0 FR France \n",
+ "1836 190.0 FR France \n",
+ "1837 198.0 FR France \n",
+ "1838 224.0 FR France \n",
+ "1839 266.0 FR France \n",
+ "1840 219.0 FR France \n",
+ "1841 176.0 FR France \n",
+ "1842 163.0 FR France \n",
+ "1843 195.0 FR France \n",
+ "1844 308.0 FR France \n",
+ "1845 213.0 FR France \n",
+ "\n",
+ "[1846 rows x 10 columns]"
+ ]
+ },
+ "execution_count": 20,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "raw_data = pd.read_csv(data_file_name, skiprows=1)\n",
"raw_data"
]
},
@@ -80,9 +1074,73 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 5,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " week | \n",
+ " indicator | \n",
+ " inc | \n",
+ " inc_low | \n",
+ " inc_up | \n",
+ " inc100 | \n",
+ " inc100_low | \n",
+ " inc100_up | \n",
+ " geo_insee | \n",
+ " geo_name | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 1609 | \n",
+ " 198919 | \n",
+ " 3 | \n",
+ " 0 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " 0 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " week indicator inc inc_low inc_up inc100 inc100_low inc100_up \\\n",
+ "1609 198919 3 0 NaN NaN 0 NaN NaN \n",
+ "\n",
+ " geo_insee geo_name \n",
+ "1609 FR France "
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
"raw_data[raw_data.isnull().any(axis=1)]"
]
@@ -96,9 +1154,976 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 6,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " week | \n",
+ " indicator | \n",
+ " inc | \n",
+ " inc_low | \n",
+ " inc_up | \n",
+ " inc100 | \n",
+ " inc100_low | \n",
+ " inc100_up | \n",
+ " geo_insee | \n",
+ " geo_name | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " 202011 | \n",
+ " 3 | \n",
+ " 101704 | \n",
+ " 93652.0 | \n",
+ " 109756.0 | \n",
+ " 154 | \n",
+ " 142.0 | \n",
+ " 166.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " 202010 | \n",
+ " 3 | \n",
+ " 104977 | \n",
+ " 96650.0 | \n",
+ " 113304.0 | \n",
+ " 159 | \n",
+ " 146.0 | \n",
+ " 172.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " 202009 | \n",
+ " 3 | \n",
+ " 110696 | \n",
+ " 102066.0 | \n",
+ " 119326.0 | \n",
+ " 168 | \n",
+ " 155.0 | \n",
+ " 181.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " 202008 | \n",
+ " 3 | \n",
+ " 143753 | \n",
+ " 133984.0 | \n",
+ " 153522.0 | \n",
+ " 218 | \n",
+ " 203.0 | \n",
+ " 233.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " 202007 | \n",
+ " 3 | \n",
+ " 183610 | \n",
+ " 172812.0 | \n",
+ " 194408.0 | \n",
+ " 279 | \n",
+ " 263.0 | \n",
+ " 295.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 5 | \n",
+ " 202006 | \n",
+ " 3 | \n",
+ " 206669 | \n",
+ " 195481.0 | \n",
+ " 217857.0 | \n",
+ " 314 | \n",
+ " 297.0 | \n",
+ " 331.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 6 | \n",
+ " 202005 | \n",
+ " 3 | \n",
+ " 187957 | \n",
+ " 177445.0 | \n",
+ " 198469.0 | \n",
+ " 285 | \n",
+ " 269.0 | \n",
+ " 301.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 7 | \n",
+ " 202004 | \n",
+ " 3 | \n",
+ " 122331 | \n",
+ " 113492.0 | \n",
+ " 131170.0 | \n",
+ " 186 | \n",
+ " 173.0 | \n",
+ " 199.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 8 | \n",
+ " 202003 | \n",
+ " 3 | \n",
+ " 78413 | \n",
+ " 71330.0 | \n",
+ " 85496.0 | \n",
+ " 119 | \n",
+ " 108.0 | \n",
+ " 130.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 9 | \n",
+ " 202002 | \n",
+ " 3 | \n",
+ " 53614 | \n",
+ " 47654.0 | \n",
+ " 59574.0 | \n",
+ " 81 | \n",
+ " 72.0 | \n",
+ " 90.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 10 | \n",
+ " 202001 | \n",
+ " 3 | \n",
+ " 36850 | \n",
+ " 31608.0 | \n",
+ " 42092.0 | \n",
+ " 56 | \n",
+ " 48.0 | \n",
+ " 64.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 11 | \n",
+ " 201952 | \n",
+ " 3 | \n",
+ " 28135 | \n",
+ " 23220.0 | \n",
+ " 33050.0 | \n",
+ " 43 | \n",
+ " 36.0 | \n",
+ " 50.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 12 | \n",
+ " 201951 | \n",
+ " 3 | \n",
+ " 29786 | \n",
+ " 25042.0 | \n",
+ " 34530.0 | \n",
+ " 45 | \n",
+ " 38.0 | \n",
+ " 52.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 13 | \n",
+ " 201950 | \n",
+ " 3 | \n",
+ " 34223 | \n",
+ " 29156.0 | \n",
+ " 39290.0 | \n",
+ " 52 | \n",
+ " 44.0 | \n",
+ " 60.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 14 | \n",
+ " 201949 | \n",
+ " 3 | \n",
+ " 25662 | \n",
+ " 21414.0 | \n",
+ " 29910.0 | \n",
+ " 39 | \n",
+ " 33.0 | \n",
+ " 45.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 15 | \n",
+ " 201948 | \n",
+ " 3 | \n",
+ " 22367 | \n",
+ " 18055.0 | \n",
+ " 26679.0 | \n",
+ " 34 | \n",
+ " 27.0 | \n",
+ " 41.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 16 | \n",
+ " 201947 | \n",
+ " 3 | \n",
+ " 18669 | \n",
+ " 14759.0 | \n",
+ " 22579.0 | \n",
+ " 28 | \n",
+ " 22.0 | \n",
+ " 34.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 17 | \n",
+ " 201946 | \n",
+ " 3 | \n",
+ " 16030 | \n",
+ " 12567.0 | \n",
+ " 19493.0 | \n",
+ " 24 | \n",
+ " 19.0 | \n",
+ " 29.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 18 | \n",
+ " 201945 | \n",
+ " 3 | \n",
+ " 10138 | \n",
+ " 7160.0 | \n",
+ " 13116.0 | \n",
+ " 15 | \n",
+ " 10.0 | \n",
+ " 20.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 19 | \n",
+ " 201944 | \n",
+ " 3 | \n",
+ " 7822 | \n",
+ " 5010.0 | \n",
+ " 10634.0 | \n",
+ " 12 | \n",
+ " 8.0 | \n",
+ " 16.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 20 | \n",
+ " 201943 | \n",
+ " 3 | \n",
+ " 9487 | \n",
+ " 6448.0 | \n",
+ " 12526.0 | \n",
+ " 14 | \n",
+ " 9.0 | \n",
+ " 19.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 21 | \n",
+ " 201942 | \n",
+ " 3 | \n",
+ " 7747 | \n",
+ " 5243.0 | \n",
+ " 10251.0 | \n",
+ " 12 | \n",
+ " 8.0 | \n",
+ " 16.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 22 | \n",
+ " 201941 | \n",
+ " 3 | \n",
+ " 7122 | \n",
+ " 4720.0 | \n",
+ " 9524.0 | \n",
+ " 11 | \n",
+ " 7.0 | \n",
+ " 15.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 23 | \n",
+ " 201940 | \n",
+ " 3 | \n",
+ " 8505 | \n",
+ " 5784.0 | \n",
+ " 11226.0 | \n",
+ " 13 | \n",
+ " 9.0 | \n",
+ " 17.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 24 | \n",
+ " 201939 | \n",
+ " 3 | \n",
+ " 7091 | \n",
+ " 4462.0 | \n",
+ " 9720.0 | \n",
+ " 11 | \n",
+ " 7.0 | \n",
+ " 15.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 25 | \n",
+ " 201938 | \n",
+ " 3 | \n",
+ " 4897 | \n",
+ " 2891.0 | \n",
+ " 6903.0 | \n",
+ " 7 | \n",
+ " 4.0 | \n",
+ " 10.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 26 | \n",
+ " 201937 | \n",
+ " 3 | \n",
+ " 3172 | \n",
+ " 1367.0 | \n",
+ " 4977.0 | \n",
+ " 5 | \n",
+ " 2.0 | \n",
+ " 8.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 27 | \n",
+ " 201936 | \n",
+ " 3 | \n",
+ " 2295 | \n",
+ " 728.0 | \n",
+ " 3862.0 | \n",
+ " 3 | \n",
+ " 1.0 | \n",
+ " 5.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 28 | \n",
+ " 201935 | \n",
+ " 3 | \n",
+ " 1010 | \n",
+ " 2.0 | \n",
+ " 2018.0 | \n",
+ " 2 | \n",
+ " 0.0 | \n",
+ " 4.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 29 | \n",
+ " 201934 | \n",
+ " 3 | \n",
+ " 1672 | \n",
+ " 279.0 | \n",
+ " 3065.0 | \n",
+ " 3 | \n",
+ " 1.0 | \n",
+ " 5.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 1816 | \n",
+ " 198521 | \n",
+ " 3 | \n",
+ " 26096 | \n",
+ " 19621.0 | \n",
+ " 32571.0 | \n",
+ " 47 | \n",
+ " 35.0 | \n",
+ " 59.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1817 | \n",
+ " 198520 | \n",
+ " 3 | \n",
+ " 27896 | \n",
+ " 20885.0 | \n",
+ " 34907.0 | \n",
+ " 51 | \n",
+ " 38.0 | \n",
+ " 64.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1818 | \n",
+ " 198519 | \n",
+ " 3 | \n",
+ " 43154 | \n",
+ " 32821.0 | \n",
+ " 53487.0 | \n",
+ " 78 | \n",
+ " 59.0 | \n",
+ " 97.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1819 | \n",
+ " 198518 | \n",
+ " 3 | \n",
+ " 40555 | \n",
+ " 29935.0 | \n",
+ " 51175.0 | \n",
+ " 74 | \n",
+ " 55.0 | \n",
+ " 93.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1820 | \n",
+ " 198517 | \n",
+ " 3 | \n",
+ " 34053 | \n",
+ " 24366.0 | \n",
+ " 43740.0 | \n",
+ " 62 | \n",
+ " 44.0 | \n",
+ " 80.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1821 | \n",
+ " 198516 | \n",
+ " 3 | \n",
+ " 50362 | \n",
+ " 36451.0 | \n",
+ " 64273.0 | \n",
+ " 91 | \n",
+ " 66.0 | \n",
+ " 116.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1822 | \n",
+ " 198515 | \n",
+ " 3 | \n",
+ " 63881 | \n",
+ " 45538.0 | \n",
+ " 82224.0 | \n",
+ " 116 | \n",
+ " 83.0 | \n",
+ " 149.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1823 | \n",
+ " 198514 | \n",
+ " 3 | \n",
+ " 134545 | \n",
+ " 114400.0 | \n",
+ " 154690.0 | \n",
+ " 244 | \n",
+ " 207.0 | \n",
+ " 281.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1824 | \n",
+ " 198513 | \n",
+ " 3 | \n",
+ " 197206 | \n",
+ " 176080.0 | \n",
+ " 218332.0 | \n",
+ " 357 | \n",
+ " 319.0 | \n",
+ " 395.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1825 | \n",
+ " 198512 | \n",
+ " 3 | \n",
+ " 245240 | \n",
+ " 223304.0 | \n",
+ " 267176.0 | \n",
+ " 445 | \n",
+ " 405.0 | \n",
+ " 485.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1826 | \n",
+ " 198511 | \n",
+ " 3 | \n",
+ " 276205 | \n",
+ " 252399.0 | \n",
+ " 300011.0 | \n",
+ " 501 | \n",
+ " 458.0 | \n",
+ " 544.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1827 | \n",
+ " 198510 | \n",
+ " 3 | \n",
+ " 353231 | \n",
+ " 326279.0 | \n",
+ " 380183.0 | \n",
+ " 640 | \n",
+ " 591.0 | \n",
+ " 689.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1828 | \n",
+ " 198509 | \n",
+ " 3 | \n",
+ " 369895 | \n",
+ " 341109.0 | \n",
+ " 398681.0 | \n",
+ " 670 | \n",
+ " 618.0 | \n",
+ " 722.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1829 | \n",
+ " 198508 | \n",
+ " 3 | \n",
+ " 389886 | \n",
+ " 359529.0 | \n",
+ " 420243.0 | \n",
+ " 707 | \n",
+ " 652.0 | \n",
+ " 762.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1830 | \n",
+ " 198507 | \n",
+ " 3 | \n",
+ " 471852 | \n",
+ " 432599.0 | \n",
+ " 511105.0 | \n",
+ " 855 | \n",
+ " 784.0 | \n",
+ " 926.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1831 | \n",
+ " 198506 | \n",
+ " 3 | \n",
+ " 565825 | \n",
+ " 518011.0 | \n",
+ " 613639.0 | \n",
+ " 1026 | \n",
+ " 939.0 | \n",
+ " 1113.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1832 | \n",
+ " 198505 | \n",
+ " 3 | \n",
+ " 637302 | \n",
+ " 592795.0 | \n",
+ " 681809.0 | \n",
+ " 1155 | \n",
+ " 1074.0 | \n",
+ " 1236.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1833 | \n",
+ " 198504 | \n",
+ " 3 | \n",
+ " 424937 | \n",
+ " 390794.0 | \n",
+ " 459080.0 | \n",
+ " 770 | \n",
+ " 708.0 | \n",
+ " 832.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1834 | \n",
+ " 198503 | \n",
+ " 3 | \n",
+ " 213901 | \n",
+ " 174689.0 | \n",
+ " 253113.0 | \n",
+ " 388 | \n",
+ " 317.0 | \n",
+ " 459.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1835 | \n",
+ " 198502 | \n",
+ " 3 | \n",
+ " 97586 | \n",
+ " 80949.0 | \n",
+ " 114223.0 | \n",
+ " 177 | \n",
+ " 147.0 | \n",
+ " 207.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1836 | \n",
+ " 198501 | \n",
+ " 3 | \n",
+ " 85489 | \n",
+ " 65918.0 | \n",
+ " 105060.0 | \n",
+ " 155 | \n",
+ " 120.0 | \n",
+ " 190.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1837 | \n",
+ " 198452 | \n",
+ " 3 | \n",
+ " 84830 | \n",
+ " 60602.0 | \n",
+ " 109058.0 | \n",
+ " 154 | \n",
+ " 110.0 | \n",
+ " 198.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1838 | \n",
+ " 198451 | \n",
+ " 3 | \n",
+ " 101726 | \n",
+ " 80242.0 | \n",
+ " 123210.0 | \n",
+ " 185 | \n",
+ " 146.0 | \n",
+ " 224.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1839 | \n",
+ " 198450 | \n",
+ " 3 | \n",
+ " 123680 | \n",
+ " 101401.0 | \n",
+ " 145959.0 | \n",
+ " 225 | \n",
+ " 184.0 | \n",
+ " 266.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1840 | \n",
+ " 198449 | \n",
+ " 3 | \n",
+ " 101073 | \n",
+ " 81684.0 | \n",
+ " 120462.0 | \n",
+ " 184 | \n",
+ " 149.0 | \n",
+ " 219.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1841 | \n",
+ " 198448 | \n",
+ " 3 | \n",
+ " 78620 | \n",
+ " 60634.0 | \n",
+ " 96606.0 | \n",
+ " 143 | \n",
+ " 110.0 | \n",
+ " 176.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1842 | \n",
+ " 198447 | \n",
+ " 3 | \n",
+ " 72029 | \n",
+ " 54274.0 | \n",
+ " 89784.0 | \n",
+ " 131 | \n",
+ " 99.0 | \n",
+ " 163.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1843 | \n",
+ " 198446 | \n",
+ " 3 | \n",
+ " 87330 | \n",
+ " 67686.0 | \n",
+ " 106974.0 | \n",
+ " 159 | \n",
+ " 123.0 | \n",
+ " 195.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1844 | \n",
+ " 198445 | \n",
+ " 3 | \n",
+ " 135223 | \n",
+ " 101414.0 | \n",
+ " 169032.0 | \n",
+ " 246 | \n",
+ " 184.0 | \n",
+ " 308.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ " 1845 | \n",
+ " 198444 | \n",
+ " 3 | \n",
+ " 68422 | \n",
+ " 20056.0 | \n",
+ " 116788.0 | \n",
+ " 125 | \n",
+ " 37.0 | \n",
+ " 213.0 | \n",
+ " FR | \n",
+ " France | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
1845 rows × 10 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " week indicator inc inc_low inc_up inc100 inc100_low \\\n",
+ "0 202011 3 101704 93652.0 109756.0 154 142.0 \n",
+ "1 202010 3 104977 96650.0 113304.0 159 146.0 \n",
+ "2 202009 3 110696 102066.0 119326.0 168 155.0 \n",
+ "3 202008 3 143753 133984.0 153522.0 218 203.0 \n",
+ "4 202007 3 183610 172812.0 194408.0 279 263.0 \n",
+ "5 202006 3 206669 195481.0 217857.0 314 297.0 \n",
+ "6 202005 3 187957 177445.0 198469.0 285 269.0 \n",
+ "7 202004 3 122331 113492.0 131170.0 186 173.0 \n",
+ "8 202003 3 78413 71330.0 85496.0 119 108.0 \n",
+ "9 202002 3 53614 47654.0 59574.0 81 72.0 \n",
+ "10 202001 3 36850 31608.0 42092.0 56 48.0 \n",
+ "11 201952 3 28135 23220.0 33050.0 43 36.0 \n",
+ "12 201951 3 29786 25042.0 34530.0 45 38.0 \n",
+ "13 201950 3 34223 29156.0 39290.0 52 44.0 \n",
+ "14 201949 3 25662 21414.0 29910.0 39 33.0 \n",
+ "15 201948 3 22367 18055.0 26679.0 34 27.0 \n",
+ "16 201947 3 18669 14759.0 22579.0 28 22.0 \n",
+ "17 201946 3 16030 12567.0 19493.0 24 19.0 \n",
+ "18 201945 3 10138 7160.0 13116.0 15 10.0 \n",
+ "19 201944 3 7822 5010.0 10634.0 12 8.0 \n",
+ "20 201943 3 9487 6448.0 12526.0 14 9.0 \n",
+ "21 201942 3 7747 5243.0 10251.0 12 8.0 \n",
+ "22 201941 3 7122 4720.0 9524.0 11 7.0 \n",
+ "23 201940 3 8505 5784.0 11226.0 13 9.0 \n",
+ "24 201939 3 7091 4462.0 9720.0 11 7.0 \n",
+ "25 201938 3 4897 2891.0 6903.0 7 4.0 \n",
+ "26 201937 3 3172 1367.0 4977.0 5 2.0 \n",
+ "27 201936 3 2295 728.0 3862.0 3 1.0 \n",
+ "28 201935 3 1010 2.0 2018.0 2 0.0 \n",
+ "29 201934 3 1672 279.0 3065.0 3 1.0 \n",
+ "... ... ... ... ... ... ... ... \n",
+ "1816 198521 3 26096 19621.0 32571.0 47 35.0 \n",
+ "1817 198520 3 27896 20885.0 34907.0 51 38.0 \n",
+ "1818 198519 3 43154 32821.0 53487.0 78 59.0 \n",
+ "1819 198518 3 40555 29935.0 51175.0 74 55.0 \n",
+ "1820 198517 3 34053 24366.0 43740.0 62 44.0 \n",
+ "1821 198516 3 50362 36451.0 64273.0 91 66.0 \n",
+ "1822 198515 3 63881 45538.0 82224.0 116 83.0 \n",
+ "1823 198514 3 134545 114400.0 154690.0 244 207.0 \n",
+ "1824 198513 3 197206 176080.0 218332.0 357 319.0 \n",
+ "1825 198512 3 245240 223304.0 267176.0 445 405.0 \n",
+ "1826 198511 3 276205 252399.0 300011.0 501 458.0 \n",
+ "1827 198510 3 353231 326279.0 380183.0 640 591.0 \n",
+ "1828 198509 3 369895 341109.0 398681.0 670 618.0 \n",
+ "1829 198508 3 389886 359529.0 420243.0 707 652.0 \n",
+ "1830 198507 3 471852 432599.0 511105.0 855 784.0 \n",
+ "1831 198506 3 565825 518011.0 613639.0 1026 939.0 \n",
+ "1832 198505 3 637302 592795.0 681809.0 1155 1074.0 \n",
+ "1833 198504 3 424937 390794.0 459080.0 770 708.0 \n",
+ "1834 198503 3 213901 174689.0 253113.0 388 317.0 \n",
+ "1835 198502 3 97586 80949.0 114223.0 177 147.0 \n",
+ "1836 198501 3 85489 65918.0 105060.0 155 120.0 \n",
+ "1837 198452 3 84830 60602.0 109058.0 154 110.0 \n",
+ "1838 198451 3 101726 80242.0 123210.0 185 146.0 \n",
+ "1839 198450 3 123680 101401.0 145959.0 225 184.0 \n",
+ "1840 198449 3 101073 81684.0 120462.0 184 149.0 \n",
+ "1841 198448 3 78620 60634.0 96606.0 143 110.0 \n",
+ "1842 198447 3 72029 54274.0 89784.0 131 99.0 \n",
+ "1843 198446 3 87330 67686.0 106974.0 159 123.0 \n",
+ "1844 198445 3 135223 101414.0 169032.0 246 184.0 \n",
+ "1845 198444 3 68422 20056.0 116788.0 125 37.0 \n",
+ "\n",
+ " inc100_up geo_insee geo_name \n",
+ "0 166.0 FR France \n",
+ "1 172.0 FR France \n",
+ "2 181.0 FR France \n",
+ "3 233.0 FR France \n",
+ "4 295.0 FR France \n",
+ "5 331.0 FR France \n",
+ "6 301.0 FR France \n",
+ "7 199.0 FR France \n",
+ "8 130.0 FR France \n",
+ "9 90.0 FR France \n",
+ "10 64.0 FR France \n",
+ "11 50.0 FR France \n",
+ "12 52.0 FR France \n",
+ "13 60.0 FR France \n",
+ "14 45.0 FR France \n",
+ "15 41.0 FR France \n",
+ "16 34.0 FR France \n",
+ "17 29.0 FR France \n",
+ "18 20.0 FR France \n",
+ "19 16.0 FR France \n",
+ "20 19.0 FR France \n",
+ "21 16.0 FR France \n",
+ "22 15.0 FR France \n",
+ "23 17.0 FR France \n",
+ "24 15.0 FR France \n",
+ "25 10.0 FR France \n",
+ "26 8.0 FR France \n",
+ "27 5.0 FR France \n",
+ "28 4.0 FR France \n",
+ "29 5.0 FR France \n",
+ "... ... ... ... \n",
+ "1816 59.0 FR France \n",
+ "1817 64.0 FR France \n",
+ "1818 97.0 FR France \n",
+ "1819 93.0 FR France \n",
+ "1820 80.0 FR France \n",
+ "1821 116.0 FR France \n",
+ "1822 149.0 FR France \n",
+ "1823 281.0 FR France \n",
+ "1824 395.0 FR France \n",
+ "1825 485.0 FR France \n",
+ "1826 544.0 FR France \n",
+ "1827 689.0 FR France \n",
+ "1828 722.0 FR France \n",
+ "1829 762.0 FR France \n",
+ "1830 926.0 FR France \n",
+ "1831 1113.0 FR France \n",
+ "1832 1236.0 FR France \n",
+ "1833 832.0 FR France \n",
+ "1834 459.0 FR France \n",
+ "1835 207.0 FR France \n",
+ "1836 190.0 FR France \n",
+ "1837 198.0 FR France \n",
+ "1838 224.0 FR France \n",
+ "1839 266.0 FR France \n",
+ "1840 219.0 FR France \n",
+ "1841 176.0 FR France \n",
+ "1842 163.0 FR France \n",
+ "1843 195.0 FR France \n",
+ "1844 308.0 FR France \n",
+ "1845 213.0 FR France \n",
+ "\n",
+ "[1845 rows x 10 columns]"
+ ]
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
"data = raw_data.dropna().copy()\n",
"data"
@@ -123,10 +2148,8 @@
},
{
"cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
+ "execution_count": 7,
+ "metadata": {},
"outputs": [],
"source": [
"def convert_week(year_and_week_int):\n",
@@ -154,10 +2177,8 @@
},
{
"cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
+ "execution_count": 8,
+ "metadata": {},
"outputs": [],
"source": [
"sorted_data = data.set_index('period').sort_index()"
@@ -180,9 +2201,17 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 9,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "1989-05-01/1989-05-07 1989-05-15/1989-05-21\n"
+ ]
+ }
+ ],
"source": [
"periods = sorted_data.index\n",
"for p1, p2 in zip(periods[:-1], periods[1:]):\n",
@@ -200,9 +2229,32 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 10,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 10,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
"source": [
"sorted_data['inc'].plot()"
]
@@ -216,9 +2268,32 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 11,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 11,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
"source": [
"sorted_data['inc'][-200:].plot()"
]
@@ -251,10 +2326,8 @@
},
{
"cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
+ "execution_count": 12,
+ "metadata": {},
"outputs": [],
"source": [
"first_august_week = [pd.Period(pd.Timestamp(y, 8, 1), 'W')\n",
@@ -273,10 +2346,8 @@
},
{
"cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
+ "execution_count": 13,
+ "metadata": {},
"outputs": [],
"source": [
"year = []\n",
@@ -299,9 +2370,32 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 14,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 14,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
"source": [
"yearly_incidence.plot(style='*')"
]
@@ -315,9 +2409,54 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 15,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "2014 1600941\n",
+ "1991 1659249\n",
+ "1995 1840410\n",
+ "2012 2175217\n",
+ "2003 2234584\n",
+ "2019 2254386\n",
+ "2006 2307352\n",
+ "2017 2321583\n",
+ "2001 2529279\n",
+ "1992 2574578\n",
+ "1993 2703886\n",
+ "2018 2705325\n",
+ "1988 2765617\n",
+ "2007 2780164\n",
+ "1987 2855570\n",
+ "2016 2856393\n",
+ "2011 2857040\n",
+ "2008 2973918\n",
+ "1998 3034904\n",
+ "2002 3125418\n",
+ "2009 3444020\n",
+ "1994 3514763\n",
+ "1996 3539413\n",
+ "2004 3567744\n",
+ "1997 3620066\n",
+ "2015 3654892\n",
+ "2000 3826372\n",
+ "2005 3835025\n",
+ "1999 3908112\n",
+ "2010 4111392\n",
+ "2013 4182691\n",
+ "1986 5115251\n",
+ "1990 5235827\n",
+ "1989 5466192\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 15,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
"yearly_incidence.sort_values()"
]
@@ -332,9 +2471,32 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 16,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 16,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
"source": [
"yearly_incidence.hist(xrot=20)"
]
@@ -342,9 +2504,7 @@
{
"cell_type": "code",
"execution_count": null,
- "metadata": {
- "collapsed": true
- },
+ "metadata": {},
"outputs": [],
"source": []
}
@@ -365,7 +2525,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.6.1"
+ "version": "3.6.4"
}
},
"nbformat": 4,
diff --git a/module3/exo1/influenza_data.csv b/module3/exo1/influenza_data.csv
new file mode 100644
index 0000000000000000000000000000000000000000..31abd7db9f0d7c967be9f6064baf8ca29e6f918d
--- /dev/null
+++ b/module3/exo1/influenza_data.csv
@@ -0,0 +1,1848 @@
+# @source="réseau Sentinelles, INSERM, Sorbonne Université, http://www.sentiweb.fr", @meta={"period":[198444,202011],"geo":["PAY","1"],"geo_ref":"insee","indicator":"3","type":"all","conf_int":true,"compact":false}, @date=2020-06-15T23:37:12+02:00
+week,indicator,inc,inc_low,inc_up,inc100,inc100_low,inc100_up,geo_insee,geo_name
+202011,3,101704,93652,109756,154,142,166,FR,France
+202010,3,104977,96650,113304,159,146,172,FR,France
+202009,3,110696,102066,119326,168,155,181,FR,France
+202008,3,143753,133984,153522,218,203,233,FR,France
+202007,3,183610,172812,194408,279,263,295,FR,France
+202006,3,206669,195481,217857,314,297,331,FR,France
+202005,3,187957,177445,198469,285,269,301,FR,France
+202004,3,122331,113492,131170,186,173,199,FR,France
+202003,3,78413,71330,85496,119,108,130,FR,France
+202002,3,53614,47654,59574,81,72,90,FR,France
+202001,3,36850,31608,42092,56,48,64,FR,France
+201952,3,28135,23220,33050,43,36,50,FR,France
+201951,3,29786,25042,34530,45,38,52,FR,France
+201950,3,34223,29156,39290,52,44,60,FR,France
+201949,3,25662,21414,29910,39,33,45,FR,France
+201948,3,22367,18055,26679,34,27,41,FR,France
+201947,3,18669,14759,22579,28,22,34,FR,France
+201946,3,16030,12567,19493,24,19,29,FR,France
+201945,3,10138,7160,13116,15,10,20,FR,France
+201944,3,7822,5010,10634,12,8,16,FR,France
+201943,3,9487,6448,12526,14,9,19,FR,France
+201942,3,7747,5243,10251,12,8,16,FR,France
+201941,3,7122,4720,9524,11,7,15,FR,France
+201940,3,8505,5784,11226,13,9,17,FR,France
+201939,3,7091,4462,9720,11,7,15,FR,France
+201938,3,4897,2891,6903,7,4,10,FR,France
+201937,3,3172,1367,4977,5,2,8,FR,France
+201936,3,2295,728,3862,3,1,5,FR,France
+201935,3,1010,2,2018,2,0,4,FR,France
+201934,3,1672,279,3065,3,1,5,FR,France
+201933,3,1593,68,3118,2,0,4,FR,France
+201932,3,1592,71,3113,2,0,4,FR,France
+201931,3,2337,695,3979,4,2,6,FR,France
+201930,3,1944,415,3473,3,1,5,FR,France
+201929,3,2096,420,3772,3,0,6,FR,France
+201928,3,1195,125,2265,2,0,4,FR,France
+201927,3,2466,848,4084,4,2,6,FR,France
+201926,3,1798,402,3194,3,1,5,FR,France
+201925,3,1544,389,2699,2,0,4,FR,France
+201924,3,876,17,1735,1,0,2,FR,France
+201923,3,2004,748,3260,3,1,5,FR,France
+201922,3,2181,602,3760,3,1,5,FR,France
+201921,3,2585,1102,4068,4,2,6,FR,France
+201920,3,2891,1202,4580,4,1,7,FR,France
+201919,3,3221,1509,4933,5,2,8,FR,France
+201918,3,1385,278,2492,2,0,4,FR,France
+201917,3,3166,1348,4984,5,2,8,FR,France
+201916,3,3842,1973,5711,6,3,9,FR,France
+201915,3,5932,3669,8195,9,6,12,FR,France
+201914,3,12675,9167,16183,19,14,24,FR,France
+201913,3,16513,12530,20496,25,19,31,FR,France
+201912,3,22184,17786,26582,34,27,41,FR,France
+201911,3,31553,26556,36550,48,40,56,FR,France
+201910,3,49742,43268,56216,76,66,86,FR,France
+201909,3,88354,79564,97144,134,121,147,FR,France
+201908,3,172604,160024,185184,262,243,281,FR,France
+201907,3,307338,291220,323456,467,443,491,FR,France
+201906,3,394286,376782,411790,599,572,626,FR,France
+201905,3,355785,339295,372275,540,515,565,FR,France
+201904,3,241090,227261,254919,366,345,387,FR,France
+201903,3,147063,135890,158236,223,206,240,FR,France
+201902,3,75548,67632,83464,115,103,127,FR,France
+201901,3,50295,43525,57065,76,66,86,FR,France
+201852,3,37903,31375,44431,58,48,68,FR,France
+201851,3,39259,32977,45541,60,50,70,FR,France
+201850,3,27781,22638,32924,42,34,50,FR,France
+201849,3,19738,15481,23995,30,24,36,FR,France
+201848,3,19501,15275,23727,30,24,36,FR,France
+201847,3,15949,12105,19793,24,18,30,FR,France
+201846,3,11278,7957,14599,17,12,22,FR,France
+201845,3,11065,7791,14339,17,12,22,FR,France
+201844,3,6586,3875,9297,10,6,14,FR,France
+201843,3,6550,3988,9112,10,6,14,FR,France
+201842,3,7787,5129,10445,12,8,16,FR,France
+201841,3,8048,5098,10998,12,8,16,FR,France
+201840,3,7409,4717,10101,11,7,15,FR,France
+201839,3,7174,4235,10113,11,7,15,FR,France
+201838,3,7349,4399,10299,11,7,15,FR,France
+201837,3,4915,2386,7444,7,3,11,FR,France
+201836,3,3215,1349,5081,5,2,8,FR,France
+201835,3,1506,239,2773,2,0,4,FR,France
+201834,3,1368,116,2620,2,0,4,FR,France
+201833,3,1962,5,3919,3,0,6,FR,France
+201832,3,1839,183,3495,3,0,6,FR,France
+201831,3,2048,242,3854,3,0,6,FR,France
+201830,3,1951,202,3700,3,0,6,FR,France
+201829,3,1951,252,3650,3,0,6,FR,France
+201828,3,1654,52,3256,3,1,5,FR,France
+201827,3,3266,1145,5387,5,2,8,FR,France
+201826,3,3758,1493,6023,6,3,9,FR,France
+201825,3,4580,2220,6940,7,3,11,FR,France
+201824,3,3223,1351,5095,5,2,8,FR,France
+201823,3,1207,136,2278,2,0,4,FR,France
+201822,3,3202,1330,5074,5,2,8,FR,France
+201821,3,2537,763,4311,4,1,7,FR,France
+201820,3,2694,967,4421,4,1,7,FR,France
+201819,3,1025,0,2098,2,0,4,FR,France
+201818,3,3541,1416,5666,5,2,8,FR,France
+201817,3,2573,1003,4143,4,2,6,FR,France
+201816,3,4818,2724,6912,7,4,10,FR,France
+201815,3,16311,12168,20454,25,19,31,FR,France
+201814,3,22666,18092,27240,35,28,42,FR,France
+201813,3,32680,25536,39824,50,39,61,FR,France
+201812,3,52040,44590,59490,79,68,90,FR,France
+201811,3,65159,56506,73812,99,86,112,FR,France
+201810,3,93512,83989,103035,142,128,156,FR,France
+201809,3,108545,98645,118445,165,150,180,FR,France
+201808,3,131870,120950,142790,201,184,218,FR,France
+201807,3,141138,130177,152099,215,198,232,FR,France
+201806,3,138810,128164,149456,211,195,227,FR,France
+201805,3,157839,146646,169032,240,223,257,FR,France
+201804,3,175483,163835,187131,267,249,285,FR,France
+201803,3,178329,166640,190018,271,253,289,FR,France
+201802,3,198079,185663,210495,302,283,321,FR,France
+201801,3,235493,220941,250045,358,336,380,FR,France
+201752,3,299114,279359,318869,459,429,489,FR,France
+201751,3,229448,214366,244530,352,329,375,FR,France
+201750,3,129535,118787,140283,199,183,215,FR,France
+201749,3,63789,56120,71458,98,86,110,FR,France
+201748,3,37568,31541,43595,58,49,67,FR,France
+201747,3,24972,19923,30021,38,30,46,FR,France
+201746,3,13398,9948,16848,21,16,26,FR,France
+201745,3,14035,8091,19979,22,13,31,FR,France
+201744,3,8544,5318,11770,13,8,18,FR,France
+201743,3,7300,4402,10198,11,7,15,FR,France
+201742,3,9966,6503,13429,15,10,20,FR,France
+201741,3,12434,8718,16150,19,13,25,FR,France
+201740,3,12725,8690,16760,20,14,26,FR,France
+201739,3,14949,10534,19364,23,16,30,FR,France
+201738,3,11463,7438,15488,18,12,24,FR,France
+201737,3,9716,6364,13068,15,10,20,FR,France
+201736,3,2815,917,4713,4,1,7,FR,France
+201735,3,2794,850,4738,4,1,7,FR,France
+201734,3,2497,879,4115,4,2,6,FR,France
+201733,3,2406,766,4046,4,1,7,FR,France
+201732,3,2667,879,4455,4,1,7,FR,France
+201731,3,3256,1158,5354,5,2,8,FR,France
+201730,3,3759,1299,6219,6,2,10,FR,France
+201729,3,5014,1989,8039,8,3,13,FR,France
+201728,3,5271,2576,7966,8,4,12,FR,France
+201727,3,3924,1432,6416,6,2,10,FR,France
+201726,3,3171,1166,5176,5,2,8,FR,France
+201725,3,837,0,1721,1,0,2,FR,France
+201724,3,1566,248,2884,2,0,4,FR,France
+201723,3,1664,203,3125,3,1,5,FR,France
+201722,3,1305,92,2518,2,0,4,FR,France
+201721,3,971,0,2046,1,0,3,FR,France
+201720,3,2686,793,4579,4,1,7,FR,France
+201719,3,3461,1490,5432,5,2,8,FR,France
+201718,3,2102,515,3689,3,1,5,FR,France
+201717,3,2071,428,3714,3,0,6,FR,France
+201716,3,1380,222,2538,2,0,4,FR,France
+201715,3,479,0,1242,1,0,2,FR,France
+201714,3,1110,0,2549,2,0,4,FR,France
+201713,3,7594,3808,11380,12,6,18,FR,France
+201712,3,8780,4834,12726,13,7,19,FR,France
+201711,3,7814,4329,11299,12,7,17,FR,France
+201710,3,11802,7964,15640,18,12,24,FR,France
+201709,3,13111,9099,17123,20,14,26,FR,France
+201708,3,29545,23136,35954,45,35,55,FR,France
+201707,3,59590,49764,69416,91,76,106,FR,France
+201706,3,93628,82560,104696,144,127,161,FR,France
+201705,3,193677,179255,208099,297,275,319,FR,France
+201704,3,256428,240618,272238,394,370,418,FR,France
+201703,3,267276,251345,283207,410,386,434,FR,France
+201702,3,260588,245070,276106,400,376,424,FR,France
+201701,3,255535,239743,271327,392,368,416,FR,France
+201652,3,224489,207799,241179,345,319,371,FR,France
+201651,3,187704,172655,202753,288,265,311,FR,France
+201650,3,126570,115081,138059,194,176,212,FR,France
+201649,3,76390,67374,85406,117,103,131,FR,France
+201648,3,40502,33949,47055,62,52,72,FR,France
+201647,3,22270,17612,26928,34,27,41,FR,France
+201646,3,20816,16125,25507,32,25,39,FR,France
+201645,3,15957,11448,20466,24,17,31,FR,France
+201644,3,15145,10357,19933,23,16,30,FR,France
+201643,3,9378,5830,12926,14,9,19,FR,France
+201642,3,12920,9044,16796,20,14,26,FR,France
+201641,3,13909,9709,18109,21,15,27,FR,France
+201640,3,13379,8969,17789,21,14,28,FR,France
+201639,3,10598,6814,14382,16,10,22,FR,France
+201638,3,5969,3073,8865,9,5,13,FR,France
+201637,3,4065,1538,6592,6,2,10,FR,France
+201636,3,2372,473,4271,4,1,7,FR,France
+201635,3,3420,1350,5490,5,2,8,FR,France
+201634,3,2233,0,4643,3,0,7,FR,France
+201633,3,1567,0,3938,2,0,6,FR,France
+201632,3,2100,93,4107,3,0,6,FR,France
+201631,3,3691,0,9120,6,0,14,FR,France
+201630,3,3209,644,5774,5,1,9,FR,France
+201629,3,1469,0,3073,2,0,4,FR,France
+201628,3,2725,357,5093,4,0,8,FR,France
+201627,3,5905,2343,9467,9,4,14,FR,France
+201626,3,4186,1636,6736,6,2,10,FR,France
+201625,3,4611,1560,7662,7,2,12,FR,France
+201624,3,4977,2404,7550,8,4,12,FR,France
+201623,3,4893,2416,7370,8,4,12,FR,France
+201622,3,5667,3015,8319,9,5,13,FR,France
+201621,3,5603,2475,8731,9,4,14,FR,France
+201620,3,3908,1679,6137,6,3,9,FR,France
+201619,3,4738,2308,7168,7,3,11,FR,France
+201618,3,8204,4394,12014,13,7,19,FR,France
+201617,3,13385,8822,17948,21,14,28,FR,France
+201616,3,25670,19632,31708,39,30,48,FR,France
+201615,3,48441,39824,57058,74,61,87,FR,France
+201614,3,92603,81261,103945,142,125,159,FR,France
+201613,3,170654,156387,184921,262,240,284,FR,France
+201612,3,272174,254338,290010,418,391,445,FR,France
+201611,3,304543,286453,322633,467,439,495,FR,France
+201610,3,261822,245799,277845,402,377,427,FR,France
+201609,3,229943,214533,245353,353,329,377,FR,France
+201608,3,195067,180874,209260,299,277,321,FR,France
+201607,3,207359,193223,221495,318,296,340,FR,France
+201606,3,196143,182672,209614,301,280,322,FR,France
+201605,3,178963,166296,191630,275,256,294,FR,France
+201604,3,148473,136591,160355,228,210,246,FR,France
+201603,3,75277,66630,83924,116,103,129,FR,France
+201602,3,44617,37821,51413,68,58,78,FR,France
+201601,3,42263,35556,48970,65,55,75,FR,France
+201553,3,24835,19106,30564,38,29,47,FR,France
+201552,3,19495,14319,24671,30,22,38,FR,France
+201551,3,29080,23014,35146,45,36,54,FR,France
+201550,3,25043,19812,30274,39,31,47,FR,France
+201549,3,21479,16686,26272,33,26,40,FR,France
+201548,3,16428,12273,20583,25,19,31,FR,France
+201547,3,14959,10856,19062,23,17,29,FR,France
+201546,3,12599,8237,16961,20,13,27,FR,France
+201545,3,13577,9192,17962,21,14,28,FR,France
+201544,3,14596,10025,19167,23,16,30,FR,France
+201543,3,16749,11745,21753,26,18,34,FR,France
+201542,3,18675,13613,23737,29,21,37,FR,France
+201541,3,13585,9830,17340,21,15,27,FR,France
+201540,3,13100,9349,16851,20,14,26,FR,France
+201539,3,8595,5671,11519,13,8,18,FR,France
+201538,3,8402,4929,11875,13,8,18,FR,France
+201537,3,8817,4089,13545,14,7,21,FR,France
+201536,3,1922,440,3404,3,1,5,FR,France
+201535,3,229,0,644,0,0,1,FR,France
+201534,3,760,0,1618,1,0,2,FR,France
+201533,3,1537,208,2866,2,0,4,FR,France
+201532,3,1594,66,3122,2,0,4,FR,France
+201531,3,2845,475,5215,4,0,8,FR,France
+201530,3,2447,353,4541,4,1,7,FR,France
+201529,3,2389,332,4446,4,1,7,FR,France
+201528,3,2089,105,4073,3,0,6,FR,France
+201527,3,2257,393,4121,3,0,6,FR,France
+201526,3,2536,774,4298,4,1,7,FR,France
+201525,3,2607,680,4534,4,1,7,FR,France
+201524,3,2849,1000,4698,4,1,7,FR,France
+201523,3,2702,857,4547,4,1,7,FR,France
+201522,3,4262,1989,6535,7,3,11,FR,France
+201521,3,5547,2875,8219,9,5,13,FR,France
+201520,3,4594,2040,7148,7,3,11,FR,France
+201519,3,6307,3256,9358,10,5,15,FR,France
+201518,3,3664,1544,5784,6,3,9,FR,France
+201517,3,6382,3523,9241,10,6,14,FR,France
+201516,3,12098,7913,16283,19,13,25,FR,France
+201515,3,19458,14192,24724,30,22,38,FR,France
+201514,3,30940,24617,37263,48,38,58,FR,France
+201513,3,49563,41986,57140,77,65,89,FR,France
+201512,3,70024,61079,78969,109,95,123,FR,France
+201511,3,99295,88838,109752,154,138,170,FR,France
+201510,3,143931,131682,156180,223,204,242,FR,France
+201509,3,238947,222902,254992,370,345,395,FR,France
+201508,3,409972,388670,431274,635,602,668,FR,France
+201507,3,517750,494301,541199,802,766,838,FR,France
+201506,3,533317,510627,556007,827,792,862,FR,France
+201505,3,457911,436964,478858,710,678,742,FR,France
+201504,3,292161,275491,308831,453,427,479,FR,France
+201503,3,153931,141290,166572,239,219,259,FR,France
+201502,3,104096,93358,114834,161,144,178,FR,France
+201501,3,70962,60505,81419,110,94,126,FR,France
+201452,3,63168,52705,73631,98,82,114,FR,France
+201451,3,45346,38002,52690,71,60,82,FR,France
+201450,3,42182,35049,49315,66,55,77,FR,France
+201449,3,33537,27281,39793,52,42,62,FR,France
+201448,3,28156,21896,34416,44,34,54,FR,France
+201447,3,18158,13186,23130,28,20,36,FR,France
+201446,3,14764,10174,19354,23,16,30,FR,France
+201445,3,16172,11449,20895,25,18,32,FR,France
+201444,3,15500,10464,20536,24,16,32,FR,France
+201443,3,16011,10653,21369,25,17,33,FR,France
+201442,3,21651,15828,27474,34,25,43,FR,France
+201441,3,22486,16295,28677,35,25,45,FR,France
+201440,3,16526,11583,21469,26,18,34,FR,France
+201439,3,8583,5054,12112,13,8,18,FR,France
+201438,3,10567,6496,14638,16,10,22,FR,France
+201437,3,7714,3780,11648,12,6,18,FR,France
+201436,3,5018,1949,8087,8,3,13,FR,France
+201435,3,2268,355,4181,4,1,7,FR,France
+201434,3,2367,250,4484,4,1,7,FR,France
+201433,3,2358,0,4875,4,0,8,FR,France
+201432,3,3229,447,6011,5,1,9,FR,France
+201431,3,4143,349,7937,6,0,12,FR,France
+201430,3,4631,902,8360,7,1,13,FR,France
+201429,3,5122,1258,8986,8,2,14,FR,France
+201428,3,4145,1200,7090,6,1,11,FR,France
+201427,3,4823,1997,7649,8,4,12,FR,France
+201426,3,3858,1235,6481,6,2,10,FR,France
+201425,3,4564,1276,7852,7,2,12,FR,France
+201424,3,2007,249,3765,3,0,6,FR,France
+201423,3,5164,1853,8475,8,3,13,FR,France
+201422,3,6907,1856,11958,11,3,19,FR,France
+201421,3,4523,1039,8007,7,2,12,FR,France
+201420,3,5881,2432,9330,9,4,14,FR,France
+201419,3,3588,1277,5899,6,2,10,FR,France
+201418,3,4708,1654,7762,7,2,12,FR,France
+201417,3,2989,625,5353,5,1,9,FR,France
+201416,3,7057,3381,10733,11,5,17,FR,France
+201415,3,10800,6762,14838,17,11,23,FR,France
+201414,3,19217,13490,24944,30,21,39,FR,France
+201413,3,21577,15435,27719,34,24,44,FR,France
+201412,3,23524,17260,29788,37,27,47,FR,France
+201411,3,44513,35939,53087,69,56,82,FR,France
+201410,3,86105,73497,98713,134,114,154,FR,France
+201409,3,147035,131889,162181,229,205,253,FR,France
+201408,3,188419,171950,204888,293,267,319,FR,France
+201407,3,208726,191283,226169,325,298,352,FR,France
+201406,3,160403,145280,175526,250,226,274,FR,France
+201405,3,120261,107176,133346,187,167,207,FR,France
+201404,3,85280,74414,96146,133,116,150,FR,France
+201403,3,64159,54089,74229,100,84,116,FR,France
+201402,3,46850,38202,55498,73,60,86,FR,France
+201401,3,35624,27451,43797,55,42,68,FR,France
+201352,3,30142,22721,37563,47,35,59,FR,France
+201351,3,29787,23215,36359,47,37,57,FR,France
+201350,3,24055,18214,29896,38,29,47,FR,France
+201349,3,18071,13058,23084,28,20,36,FR,France
+201348,3,17606,12195,23017,28,20,36,FR,France
+201347,3,22636,16343,28929,35,25,45,FR,France
+201346,3,13340,8367,18313,21,13,29,FR,France
+201345,3,10596,6057,15135,17,10,24,FR,France
+201344,3,10193,5622,14764,16,9,23,FR,France
+201343,3,15780,9497,22063,25,15,35,FR,France
+201342,3,14830,9545,20115,23,15,31,FR,France
+201341,3,12391,7265,17517,19,11,27,FR,France
+201340,3,9794,5140,14448,15,8,22,FR,France
+201339,3,5371,1704,9038,8,2,14,FR,France
+201338,3,9324,4198,14450,15,7,23,FR,France
+201337,3,5027,1752,8302,8,3,13,FR,France
+201336,3,4639,1425,7853,7,2,12,FR,France
+201335,3,1291,0,3112,2,0,5,FR,France
+201334,3,1889,0,4912,3,0,8,FR,France
+201333,3,4740,348,9132,7,0,14,FR,France
+201332,3,4709,549,8869,7,0,14,FR,France
+201331,3,2270,0,5811,4,0,10,FR,France
+201330,3,2169,0,4630,3,0,7,FR,France
+201329,3,1696,0,3558,3,0,6,FR,France
+201328,3,983,0,2168,2,0,4,FR,France
+201327,3,4278,1327,7229,7,2,12,FR,France
+201326,3,3488,839,6137,5,1,9,FR,France
+201325,3,2735,0,5826,4,0,9,FR,France
+201324,3,7245,2997,11493,11,4,18,FR,France
+201323,3,16094,8918,23270,25,14,36,FR,France
+201322,3,7245,2923,11567,11,4,18,FR,France
+201321,3,5974,2401,9547,9,3,15,FR,France
+201320,3,3831,1245,6417,6,2,10,FR,France
+201319,3,1166,0,2680,2,0,4,FR,France
+201318,3,3415,757,6073,5,1,9,FR,France
+201317,3,7941,2950,12932,12,4,20,FR,France
+201316,3,9520,4758,14282,15,8,22,FR,France
+201315,3,19357,13311,25403,30,21,39,FR,France
+201314,3,36855,27737,45973,58,44,72,FR,France
+201313,3,43236,34048,52424,68,54,82,FR,France
+201312,3,60822,50414,71230,95,79,111,FR,France
+201311,3,84308,72456,96160,132,113,151,FR,France
+201310,3,165558,148471,182645,259,232,286,FR,France
+201309,3,259984,239067,280901,407,374,440,FR,France
+201308,3,351626,327537,375715,550,512,588,FR,France
+201307,3,470076,443682,496470,736,695,777,FR,France
+201306,3,471647,445112,498182,738,696,780,FR,France
+201305,3,492026,464729,519323,770,727,813,FR,France
+201304,3,391525,367182,415868,613,575,651,FR,France
+201303,3,224661,207134,242188,352,325,379,FR,France
+201302,3,184159,168343,199975,288,263,313,FR,France
+201301,3,163491,147340,179642,256,231,281,FR,France
+201252,3,159290,141978,176602,251,224,278,FR,France
+201251,3,113901,99835,127967,179,157,201,FR,France
+201250,3,79918,68086,91750,126,107,145,FR,France
+201249,3,47537,38711,56363,75,61,89,FR,France
+201248,3,43006,32863,53149,68,52,84,FR,France
+201247,3,39223,29140,49306,62,46,78,FR,France
+201246,3,26436,18286,34586,42,29,55,FR,France
+201245,3,18893,12799,24987,30,20,40,FR,France
+201244,3,13106,8784,17428,21,14,28,FR,France
+201243,3,17791,11284,24298,28,18,38,FR,France
+201242,3,13096,8369,17823,21,14,28,FR,France
+201241,3,18675,12010,25340,29,19,39,FR,France
+201240,3,17873,11545,24201,28,18,38,FR,France
+201239,3,20257,14180,26334,32,22,42,FR,France
+201238,3,14715,9178,20252,23,14,32,FR,France
+201237,3,7775,3509,12041,12,5,19,FR,France
+201236,3,6384,2420,10348,10,4,16,FR,France
+201235,3,8277,2206,14348,13,3,23,FR,France
+201234,3,3858,0,8641,6,0,14,FR,France
+201233,3,6492,840,12144,10,1,19,FR,France
+201232,3,6381,0,14034,10,0,22,FR,France
+201231,3,2696,0,5763,4,0,9,FR,France
+201230,3,1834,0,4194,3,0,7,FR,France
+201229,3,6329,1424,11234,10,2,18,FR,France
+201228,3,4628,1091,8165,7,1,13,FR,France
+201227,3,4162,1487,6837,7,3,11,FR,France
+201226,3,4819,1097,8541,8,2,14,FR,France
+201225,3,2669,530,4808,4,1,7,FR,France
+201224,3,5977,2335,9619,9,3,15,FR,France
+201223,3,2361,576,4146,4,1,7,FR,France
+201222,3,5772,2435,9109,9,4,14,FR,France
+201221,3,3722,821,6623,6,1,11,FR,France
+201220,3,2731,897,4565,4,1,7,FR,France
+201219,3,3267,1317,5217,5,2,8,FR,France
+201218,3,2328,569,4087,4,1,7,FR,France
+201217,3,6982,2701,11263,11,4,18,FR,France
+201216,3,11455,6874,16036,18,11,25,FR,France
+201215,3,20437,13435,27439,32,21,43,FR,France
+201214,3,36740,27799,45681,58,44,72,FR,France
+201213,3,62917,50171,75663,99,79,119,FR,France
+201212,3,84738,71566,97910,133,112,154,FR,France
+201211,3,128945,113778,144112,203,179,227,FR,France
+201210,3,174704,157337,192071,275,248,302,FR,France
+201209,3,225648,206810,244486,355,325,385,FR,France
+201208,3,287293,264901,309685,452,417,487,FR,France
+201207,3,263557,242711,284403,415,382,448,FR,France
+201206,3,175123,158942,191304,276,251,301,FR,France
+201205,3,106110,92524,119696,167,146,188,FR,France
+201204,3,67778,56784,78772,107,90,124,FR,France
+201203,3,49440,40981,57899,78,65,91,FR,France
+201202,3,40507,32652,48362,64,52,76,FR,France
+201201,3,45104,35640,54568,71,56,86,FR,France
+201152,3,36532,28367,44697,58,45,71,FR,France
+201151,3,25835,19002,32668,41,30,52,FR,France
+201150,3,24155,18145,30165,38,28,48,FR,France
+201149,3,27209,20376,34042,43,32,54,FR,France
+201148,3,32358,24451,40265,51,38,64,FR,France
+201147,3,17627,11780,23474,28,19,37,FR,France
+201146,3,22368,15730,29006,35,24,46,FR,France
+201145,3,18104,11995,24213,29,19,39,FR,France
+201144,3,14050,8471,19629,22,13,31,FR,France
+201143,3,21522,14251,28793,34,22,46,FR,France
+201142,3,16932,11363,22501,27,18,36,FR,France
+201141,3,7486,4024,10948,12,7,17,FR,France
+201140,3,14053,8659,19447,22,13,31,FR,France
+201139,3,17021,11062,22980,27,18,36,FR,France
+201138,3,14007,8465,19549,22,13,31,FR,France
+201137,3,8365,4174,12556,13,6,20,FR,France
+201136,3,4606,1714,7498,7,2,12,FR,France
+201135,3,4178,1634,6722,7,3,11,FR,France
+201134,3,3312,683,5941,5,1,9,FR,France
+201133,3,2421,0,5277,4,0,9,FR,France
+201132,3,2590,119,5061,4,0,8,FR,France
+201131,3,2409,320,4498,4,1,7,FR,France
+201130,3,3972,1395,6549,6,2,10,FR,France
+201129,3,2265,717,3813,4,2,6,FR,France
+201128,3,1977,255,3699,3,0,6,FR,France
+201127,3,3524,551,6497,6,1,11,FR,France
+201126,3,1155,0,2685,2,0,4,FR,France
+201125,3,3791,1006,6576,6,2,10,FR,France
+201124,3,3507,1149,5865,6,2,10,FR,France
+201123,3,3406,1170,5642,5,1,9,FR,France
+201122,3,3122,1125,5119,5,2,8,FR,France
+201121,3,2694,769,4619,4,1,7,FR,France
+201120,3,3951,1443,6459,6,2,10,FR,France
+201119,3,5416,1995,8837,9,4,14,FR,France
+201118,3,5306,1815,8797,8,2,14,FR,France
+201117,3,2659,310,5008,4,0,8,FR,France
+201116,3,5061,1988,8134,8,3,13,FR,France
+201115,3,6557,3038,10076,10,4,16,FR,France
+201114,3,7352,3784,10920,12,6,18,FR,France
+201113,3,8749,5213,12285,14,8,20,FR,France
+201112,3,12491,7845,17137,20,13,27,FR,France
+201111,3,14619,10009,19229,23,16,30,FR,France
+201110,3,33628,26073,41183,53,41,65,FR,France
+201109,3,54522,46057,62987,86,73,99,FR,France
+201108,3,78392,67885,88899,124,107,141,FR,France
+201107,3,149219,134798,163640,236,213,259,FR,France
+201106,3,216579,200236,232922,343,317,369,FR,France
+201105,3,278192,260235,296149,440,412,468,FR,France
+201104,3,278218,259626,296810,440,411,469,FR,France
+201103,3,275882,257313,294451,437,408,466,FR,France
+201102,3,308949,288320,329578,489,456,522,FR,France
+201101,3,309933,288190,331676,490,456,524,FR,France
+201052,3,228105,208046,248164,363,331,395,FR,France
+201051,3,158957,142576,175338,253,227,279,FR,France
+201050,3,104874,91639,118109,167,146,188,FR,France
+201049,3,54971,46418,63524,88,74,102,FR,France
+201048,3,36982,29304,44660,59,47,71,FR,France
+201047,3,26598,20123,33073,42,32,52,FR,France
+201046,3,15465,10915,20015,25,18,32,FR,France
+201045,3,9040,5772,12308,14,9,19,FR,France
+201044,3,15833,10255,21411,25,16,34,FR,France
+201043,3,16002,11001,21003,25,17,33,FR,France
+201042,3,18709,13376,24042,30,22,38,FR,France
+201041,3,17352,12182,22522,28,20,36,FR,France
+201040,3,18331,12824,23838,29,20,38,FR,France
+201039,3,11978,7913,16043,19,13,25,FR,France
+201038,3,8936,4906,12966,14,8,20,FR,France
+201037,3,5318,2551,8085,8,4,12,FR,France
+201036,3,4954,2058,7850,8,3,13,FR,France
+201035,3,4279,1604,6954,7,3,11,FR,France
+201034,3,4926,566,9286,8,1,15,FR,France
+201033,3,2950,0,6507,5,0,11,FR,France
+201032,3,671,0,1522,1,0,2,FR,France
+201031,3,2732,509,4955,4,0,8,FR,France
+201030,3,3989,1068,6910,6,1,11,FR,France
+201029,3,4123,1531,6715,7,3,11,FR,France
+201028,3,1209,0,2640,2,0,4,FR,France
+201027,3,2494,433,4555,4,1,7,FR,France
+201026,3,5808,2454,9162,9,4,14,FR,France
+201025,3,8019,4395,11643,13,7,19,FR,France
+201024,3,3584,1657,5511,6,3,9,FR,France
+201023,3,4016,1905,6127,6,3,9,FR,France
+201022,3,6251,3664,8838,10,6,14,FR,France
+201021,3,3860,1636,6084,6,2,10,FR,France
+201020,3,2470,442,4498,4,1,7,FR,France
+201019,3,2273,636,3910,4,1,7,FR,France
+201018,3,4095,1639,6551,7,3,11,FR,France
+201017,3,2216,817,3615,4,2,6,FR,France
+201016,3,3471,1085,5857,6,2,10,FR,France
+201015,3,3990,1376,6604,6,2,10,FR,France
+201014,3,6188,3191,9185,10,5,15,FR,France
+201013,3,6705,3665,9745,11,6,16,FR,France
+201012,3,6727,3582,9872,11,6,16,FR,France
+201011,3,8692,5002,12382,14,8,20,FR,France
+201010,3,8844,5465,12223,14,9,19,FR,France
+201009,3,12081,7334,16828,19,11,27,FR,France
+201008,3,15433,10422,20444,25,17,33,FR,France
+201007,3,19690,11728,27652,31,18,44,FR,France
+201006,3,27858,18883,36833,44,30,58,FR,France
+201005,3,22197,17019,27375,35,27,43,FR,France
+201004,3,33817,26151,41483,54,42,66,FR,France
+201003,3,36236,27936,44536,58,45,71,FR,France
+201002,3,40691,32891,48491,65,53,77,FR,France
+201001,3,66574,56164,76984,106,89,123,FR,France
+200953,3,96141,81818,110464,153,130,176,FR,France
+200952,3,172872,153238,192506,275,244,306,FR,France
+200951,3,247809,229140,266478,395,365,425,FR,France
+200950,3,379424,355974,402874,604,567,641,FR,France
+200949,3,473718,447756,499680,754,713,795,FR,France
+200948,3,467551,441506,493596,744,703,785,FR,France
+200947,3,378924,355752,402096,603,566,640,FR,France
+200946,3,223847,203918,243776,356,324,388,FR,France
+200945,3,147046,131155,162937,234,209,259,FR,France
+200944,3,170231,151298,189164,271,241,301,FR,France
+200943,3,131408,114883,147933,209,183,235,FR,France
+200942,3,99387,84491,114283,158,134,182,FR,France
+200941,3,100802,86381,115223,160,137,183,FR,France
+200940,3,111587,97628,125546,178,156,200,FR,France
+200939,3,121267,106153,136381,193,169,217,FR,France
+200938,3,137924,121242,154606,220,193,247,FR,France
+200937,3,101332,87522,115142,161,139,183,FR,France
+200936,3,46024,36435,55613,73,58,88,FR,France
+200935,3,31660,23669,39651,50,37,63,FR,France
+200934,3,24985,17699,32271,40,28,52,FR,France
+200933,3,24435,16308,32562,39,26,52,FR,France
+200932,3,23151,14624,31678,37,23,51,FR,France
+200931,3,30255,9818,50692,48,15,81,FR,France
+200930,3,13868,7861,19875,22,12,32,FR,France
+200929,3,10704,5314,16094,17,8,26,FR,France
+200928,3,15516,273,30759,25,1,49,FR,France
+200927,3,10354,2760,17948,16,4,28,FR,France
+200926,3,9932,5257,14607,16,9,23,FR,France
+200925,3,7619,4026,11212,12,6,18,FR,France
+200924,3,7794,3409,12179,12,5,19,FR,France
+200923,3,4342,1975,6709,7,3,11,FR,France
+200922,3,6390,3020,9760,10,5,15,FR,France
+200921,3,7118,3704,10532,11,6,16,FR,France
+200920,3,9482,5804,13160,15,9,21,FR,France
+200919,3,7538,4299,10777,12,7,17,FR,France
+200918,3,9627,5121,14133,15,8,22,FR,France
+200917,3,9537,5267,13807,15,8,22,FR,France
+200916,3,14666,9218,20114,23,14,32,FR,France
+200915,3,17533,12137,22929,28,19,37,FR,France
+200914,3,26324,19150,33498,42,31,53,FR,France
+200913,3,27737,20781,34693,44,33,55,FR,France
+200912,3,38811,29935,47687,62,48,76,FR,France
+200911,3,40410,30705,50115,64,49,79,FR,France
+200910,3,53395,41943,64847,85,67,103,FR,France
+200909,3,70558,57400,83716,112,91,133,FR,France
+200908,3,109100,94840,123360,174,151,197,FR,France
+200907,3,141531,125101,157961,225,199,251,FR,France
+200906,3,276274,252759,299789,440,403,477,FR,France
+200905,3,401868,375032,428704,640,597,683,FR,France
+200904,3,545313,512892,577734,868,816,920,FR,France
+200903,3,520957,487271,554643,829,775,883,FR,France
+200902,3,287145,262869,311421,457,418,496,FR,France
+200901,3,200349,180878,219820,319,288,350,FR,France
+200852,3,198418,115769,281067,323,188,458,FR,France
+200851,3,112588,96656,128520,184,158,210,FR,France
+200850,3,51746,43319,60173,84,70,98,FR,France
+200849,3,34950,27527,42373,57,45,69,FR,France
+200848,3,25604,18563,32645,42,31,53,FR,France
+200847,3,18706,10838,26574,30,17,43,FR,France
+200846,3,10899,5461,16337,18,9,27,FR,France
+200845,3,12472,7082,17862,20,11,29,FR,France
+200844,3,9772,5661,13883,16,9,23,FR,France
+200843,3,9345,5541,13149,15,9,21,FR,France
+200842,3,9087,5572,12602,15,9,21,FR,France
+200841,3,9925,5637,14213,16,9,23,FR,France
+200840,3,7869,4535,11203,13,8,18,FR,France
+200839,3,2195,506,3884,4,1,7,FR,France
+200838,3,3679,1481,5877,6,2,10,FR,France
+200837,3,2429,561,4297,4,1,7,FR,France
+200836,3,2512,492,4532,4,1,7,FR,France
+200835,3,1901,0,4869,3,0,8,FR,France
+200834,3,2552,0,6509,4,0,10,FR,France
+200833,3,7229,0,16106,12,0,26,FR,France
+200832,3,4378,107,8649,7,0,14,FR,France
+200831,3,3972,621,7323,6,1,11,FR,France
+200830,3,3821,643,6999,6,1,11,FR,France
+200829,3,2055,0,4225,3,0,7,FR,France
+200828,3,3257,208,6306,5,0,10,FR,France
+200827,3,2862,474,5250,5,1,9,FR,France
+200826,3,897,0,2062,1,0,3,FR,France
+200825,3,2006,360,3652,3,0,6,FR,France
+200824,3,3217,823,5611,5,1,9,FR,France
+200823,3,2906,1006,4806,5,2,8,FR,France
+200822,3,1792,451,3133,3,1,5,FR,France
+200821,3,3642,925,6359,6,2,10,FR,France
+200820,3,6452,2790,10114,11,5,17,FR,France
+200819,3,5173,1485,8861,8,2,14,FR,France
+200818,3,5315,1770,8860,9,3,15,FR,France
+200817,3,10150,5835,14465,17,10,24,FR,France
+200816,3,11876,7054,16698,19,11,27,FR,France
+200815,3,22871,16253,29489,37,26,48,FR,France
+200814,3,45610,27907,63313,74,45,103,FR,France
+200813,3,38600,29300,47900,63,48,78,FR,France
+200812,3,53169,43299,63039,87,71,103,FR,France
+200811,3,62014,50430,73598,101,82,120,FR,France
+200810,3,90342,75729,104955,147,123,171,FR,France
+200809,3,119696,104205,135187,195,170,220,FR,France
+200808,3,198688,180749,216627,324,295,353,FR,France
+200807,3,286498,264535,308461,467,431,503,FR,France
+200806,3,377097,350714,403480,615,572,658,FR,France
+200805,3,344050,320436,367664,561,523,599,FR,France
+200804,3,290196,268193,312199,473,437,509,FR,France
+200803,3,260268,233385,287151,424,380,468,FR,France
+200802,3,160872,145311,176433,262,237,287,FR,France
+200801,3,102562,88547,116577,167,144,190,FR,France
+200752,3,86742,72295,101189,141,117,165,FR,France
+200751,3,61954,51764,72144,101,84,118,FR,France
+200750,3,45366,36923,53809,74,60,88,FR,France
+200749,3,38351,26177,50525,63,43,83,FR,France
+200748,3,48174,35418,60930,79,58,100,FR,France
+200747,3,30716,23351,38081,50,38,62,FR,France
+200746,3,18204,12267,24141,30,20,40,FR,France
+200745,3,15521,10195,20847,25,16,34,FR,France
+200744,3,13904,9072,18736,23,15,31,FR,France
+200743,3,16212,10778,21646,26,17,35,FR,France
+200742,3,20197,13955,26439,33,23,43,FR,France
+200741,3,12987,8464,17510,21,14,28,FR,France
+200740,3,13517,2983,24051,22,5,39,FR,France
+200739,3,15985,7519,24451,26,12,40,FR,France
+200738,3,4769,837,8701,8,2,14,FR,France
+200737,3,1449,300,2598,2,0,4,FR,France
+200736,3,1100,0,2424,2,0,4,FR,France
+200735,3,1177,0,2872,2,0,5,FR,France
+200734,3,3353,654,6052,5,1,9,FR,France
+200733,3,4189,360,8018,7,1,13,FR,France
+200732,3,132,0,688,0,0,1,FR,France
+200731,3,1965,0,4461,3,0,7,FR,France
+200730,3,2158,0,4583,4,0,8,FR,France
+200729,3,3406,240,6572,6,1,11,FR,France
+200728,3,1459,0,3467,2,0,5,FR,France
+200727,3,1453,0,3382,2,0,5,FR,France
+200726,3,157,0,513,0,0,1,FR,France
+200725,3,3699,0,7778,6,0,13,FR,France
+200724,3,2854,481,5227,5,1,9,FR,France
+200723,3,5343,2164,8522,9,4,14,FR,France
+200722,3,7689,4224,11154,13,7,19,FR,France
+200721,3,4319,1659,6979,7,3,11,FR,France
+200720,3,6400,2685,10115,10,4,16,FR,France
+200719,3,3012,703,5321,5,1,9,FR,France
+200718,3,2232,348,4116,4,1,7,FR,France
+200717,3,4705,1736,7674,8,3,13,FR,France
+200716,3,3817,1438,6196,6,2,10,FR,France
+200715,3,4757,717,8797,8,1,15,FR,France
+200714,3,11377,6957,15797,19,12,26,FR,France
+200713,3,21271,13093,29449,35,22,48,FR,France
+200712,3,25433,17717,33149,41,28,54,FR,France
+200711,3,30764,23356,38172,50,38,62,FR,France
+200710,3,49469,40368,58570,81,66,96,FR,France
+200709,3,138901,117018,160784,226,190,262,FR,France
+200708,3,316747,284988,348506,516,464,568,FR,France
+200707,3,417698,386505,448891,681,630,732,FR,France
+200706,3,500016,466668,533364,815,761,869,FR,France
+200705,3,375457,346822,404092,612,565,659,FR,France
+200704,3,209878,189332,230424,342,309,375,FR,France
+200703,3,126161,110596,141726,206,181,231,FR,France
+200702,3,82849,69493,96205,135,113,157,FR,France
+200701,3,70842,58613,83071,115,95,135,FR,France
+200652,3,78190,64191,92189,128,105,151,FR,France
+200651,3,62734,50210,75258,103,82,124,FR,France
+200650,3,35668,27280,44056,58,44,72,FR,France
+200649,3,18773,13164,24382,31,22,40,FR,France
+200648,3,16439,11225,21653,27,18,36,FR,France
+200647,3,16104,9343,22865,26,15,37,FR,France
+200646,3,14032,5590,22474,23,9,37,FR,France
+200645,3,12285,7745,16825,20,13,27,FR,France
+200644,3,8031,4172,11890,13,7,19,FR,France
+200643,3,21157,12483,29831,35,21,49,FR,France
+200642,3,16673,8249,25097,27,13,41,FR,France
+200641,3,13920,9081,18759,23,15,31,FR,France
+200640,3,11950,7132,16768,20,12,28,FR,France
+200639,3,8945,4333,13557,15,7,23,FR,France
+200638,3,2532,138,4926,4,0,8,FR,France
+200637,3,1786,233,3339,3,0,6,FR,France
+200636,3,1107,0,2346,2,0,4,FR,France
+200635,3,2170,0,4760,4,0,8,FR,France
+200634,3,1572,0,3756,3,0,7,FR,France
+200633,3,0,0,0,0,0,0,FR,France
+200632,3,0,0,0,0,0,0,FR,France
+200631,3,1773,0,3892,3,0,6,FR,France
+200630,3,665,0,1614,1,0,3,FR,France
+200629,3,1339,0,3260,2,0,5,FR,France
+200628,3,843,0,2245,1,0,3,FR,France
+200627,3,1351,0,3031,2,0,5,FR,France
+200626,3,4564,1506,7622,7,2,12,FR,France
+200625,3,6259,2072,10446,10,3,17,FR,France
+200624,3,4279,964,7594,7,2,12,FR,France
+200623,3,4532,1489,7575,7,2,12,FR,France
+200622,3,5807,2667,8947,10,5,15,FR,France
+200621,3,4661,1761,7561,8,3,13,FR,France
+200620,3,8859,4754,12964,15,8,22,FR,France
+200619,3,5083,2011,8155,8,3,13,FR,France
+200618,3,4454,1632,7276,7,2,12,FR,France
+200617,3,17762,11802,23722,29,19,39,FR,France
+200616,3,22096,15420,28772,36,25,47,FR,France
+200615,3,26969,19631,34307,44,32,56,FR,France
+200614,3,40321,31022,49620,66,51,81,FR,France
+200613,3,77053,63531,90575,126,104,148,FR,France
+200612,3,108004,93005,123003,177,152,202,FR,France
+200611,3,122437,106388,138486,201,175,227,FR,France
+200610,3,124749,109104,140394,204,178,230,FR,France
+200609,3,164150,146099,182201,269,239,299,FR,France
+200608,3,199088,178830,219346,326,293,359,FR,France
+200607,3,243908,221071,266745,400,363,437,FR,France
+200606,3,256758,235190,278326,421,386,456,FR,France
+200605,3,184928,166901,202955,303,273,333,FR,France
+200604,3,104620,90909,118331,171,149,193,FR,France
+200603,3,66255,55727,76783,109,92,126,FR,France
+200602,3,39211,31418,47004,64,51,77,FR,France
+200601,3,34603,26269,42937,57,43,71,FR,France
+200552,3,32132,24389,39875,53,40,66,FR,France
+200551,3,40344,28397,52291,67,47,87,FR,France
+200550,3,36880,28635,45125,61,47,75,FR,France
+200549,3,27589,20576,34602,46,34,58,FR,France
+200548,3,24860,17839,31881,41,29,53,FR,France
+200547,3,26884,19810,33958,44,32,56,FR,France
+200546,3,23967,17155,30779,40,29,51,FR,France
+200545,3,14609,8709,20509,24,14,34,FR,France
+200544,3,20481,13625,27337,34,23,45,FR,France
+200543,3,18045,11916,24174,30,20,40,FR,France
+200542,3,23653,15209,32097,39,25,53,FR,France
+200541,3,26466,18270,34662,44,30,58,FR,France
+200540,3,26647,18088,35206,44,30,58,FR,France
+200539,3,23994,15381,32607,40,26,54,FR,France
+200538,3,21881,13979,29783,36,23,49,FR,France
+200537,3,10347,5384,15310,17,9,25,FR,France
+200536,3,7082,2806,11358,12,5,19,FR,France
+200535,3,2448,0,4987,4,0,8,FR,France
+200534,3,5281,539,10023,9,1,17,FR,France
+200533,3,2815,0,6252,5,0,11,FR,France
+200532,3,1572,0,3690,3,0,6,FR,France
+200531,3,3767,0,10955,6,0,18,FR,France
+200530,3,2203,0,5072,4,0,9,FR,France
+200529,3,3965,739,7191,7,2,12,FR,France
+200528,3,1988,96,3880,3,0,6,FR,France
+200527,3,2305,0,4713,4,0,8,FR,France
+200526,3,4720,1385,8055,8,2,14,FR,France
+200525,3,2354,0,4747,4,0,8,FR,France
+200524,3,5892,2029,9755,10,4,16,FR,France
+200523,3,5246,1722,8770,9,3,15,FR,France
+200522,3,3935,1031,6839,6,1,11,FR,France
+200521,3,4284,474,8094,7,1,13,FR,France
+200520,3,7841,3611,12071,13,6,20,FR,France
+200519,3,7638,3346,11930,13,6,20,FR,France
+200518,3,2755,388,5122,5,1,9,FR,France
+200517,3,7166,3530,10802,12,6,18,FR,France
+200516,3,9741,5344,14138,16,9,23,FR,France
+200515,3,14881,9018,20744,25,15,35,FR,France
+200514,3,21988,14834,29142,36,24,48,FR,France
+200513,3,42971,33053,52889,71,55,87,FR,France
+200512,3,90040,75374,104706,149,125,173,FR,France
+200511,3,183032,161407,204657,302,266,338,FR,France
+200510,3,222526,199990,245062,367,330,404,FR,France
+200509,3,251784,229464,274104,416,379,453,FR,France
+200508,3,277423,254825,300021,458,421,495,FR,France
+200507,3,459444,430026,488862,759,710,808,FR,France
+200506,3,568610,536207,601013,939,885,993,FR,France
+200505,3,568285,534912,601658,938,883,993,FR,France
+200504,3,316856,292011,341701,523,482,564,FR,France
+200503,3,154208,137061,171355,255,227,283,FR,France
+200502,3,88853,75576,102130,147,125,169,FR,France
+200501,3,55801,45339,66263,92,75,109,FR,France
+200453,3,40695,31926,49464,68,53,83,FR,France
+200452,3,32687,24316,41058,54,40,68,FR,France
+200451,3,46209,36017,56401,77,60,94,FR,France
+200450,3,42358,31865,52851,70,53,87,FR,France
+200449,3,27092,17910,36274,45,30,60,FR,France
+200448,3,30522,21236,39808,51,36,66,FR,France
+200447,3,21148,13386,28910,35,22,48,FR,France
+200446,3,13934,8335,19533,23,14,32,FR,France
+200445,3,15658,9703,21613,26,16,36,FR,France
+200444,3,23166,14852,31480,38,24,52,FR,France
+200443,3,16780,10545,23015,28,18,38,FR,France
+200442,3,20480,13909,27051,34,23,45,FR,France
+200441,3,15852,9789,21915,26,16,36,FR,France
+200440,3,25639,17291,33987,43,29,57,FR,France
+200439,3,22680,13222,32138,38,22,54,FR,France
+200438,3,17483,9417,25549,29,16,42,FR,France
+200437,3,9103,4768,13438,15,8,22,FR,France
+200436,3,7753,3596,11910,13,6,20,FR,France
+200435,3,4408,775,8041,7,1,13,FR,France
+200434,3,4501,610,8392,7,1,13,FR,France
+200433,3,1697,0,4046,3,0,7,FR,France
+200432,3,3496,0,8181,6,0,14,FR,France
+200431,3,2949,20,5878,5,0,10,FR,France
+200430,3,3557,642,6472,6,1,11,FR,France
+200429,3,5164,1162,9166,9,2,16,FR,France
+200428,3,6358,2224,10492,11,4,18,FR,France
+200427,3,7486,3040,11932,12,5,19,FR,France
+200426,3,7113,0,14709,12,0,25,FR,France
+200425,3,3275,508,6042,5,0,10,FR,France
+200424,3,6737,2394,11080,11,4,18,FR,France
+200423,3,9792,807,18777,16,1,31,FR,France
+200422,3,8077,3482,12672,13,5,21,FR,France
+200421,3,8073,3588,12558,13,6,20,FR,France
+200420,3,7885,3454,12316,13,6,20,FR,France
+200419,3,7235,3101,11369,12,5,19,FR,France
+200418,3,5108,1830,8386,8,3,13,FR,France
+200417,3,3647,523,6771,6,1,11,FR,France
+200416,3,5265,1359,9171,9,3,15,FR,France
+200415,3,8272,3655,12889,14,6,22,FR,France
+200414,3,15657,8888,22426,26,15,37,FR,France
+200413,3,8316,4067,12565,14,7,21,FR,France
+200412,3,12482,6899,18065,21,12,30,FR,France
+200411,3,13964,7879,20049,23,13,33,FR,France
+200410,3,22531,14164,30898,37,23,51,FR,France
+200409,3,12618,7283,17953,21,12,30,FR,France
+200408,3,17738,11055,24421,29,18,40,FR,France
+200407,3,25484,17228,33740,42,28,56,FR,France
+200406,3,27452,19505,35399,46,33,59,FR,France
+200405,3,35110,25869,44351,58,43,73,FR,France
+200404,3,44571,35266,53876,74,59,89,FR,France
+200403,3,60482,50389,70575,100,83,117,FR,France
+200402,3,95234,81407,109061,158,135,181,FR,France
+200401,3,109116,84565,133667,181,140,222,FR,France
+200352,3,72239,5520,138958,121,10,232,FR,France
+200351,3,445464,389214,501714,744,650,838,FR,France
+200350,3,522427,491781,553073,873,822,924,FR,France
+200349,3,555492,524706,586278,928,877,979,FR,France
+200348,3,514668,485364,543972,860,811,909,FR,France
+200347,3,332927,305972,359882,556,511,601,FR,France
+200346,3,146101,126840,165362,244,212,276,FR,France
+200345,3,95565,80900,110230,160,135,185,FR,France
+200344,3,54703,43193,66213,91,72,110,FR,France
+200343,3,45834,36611,55057,77,62,92,FR,France
+200342,3,39010,28885,49135,65,48,82,FR,France
+200341,3,29579,21478,37680,49,35,63,FR,France
+200340,3,30862,19484,42240,52,33,71,FR,France
+200339,3,26592,18927,34257,44,31,57,FR,France
+200338,3,14811,8777,20845,25,15,35,FR,France
+200337,3,14735,7495,21975,25,13,37,FR,France
+200336,3,10951,3732,18170,18,6,30,FR,France
+200335,3,1504,0,3349,3,0,6,FR,France
+200334,3,2194,0,4889,4,0,9,FR,France
+200333,3,1504,0,3921,3,0,7,FR,France
+200332,3,1619,0,4072,3,0,7,FR,France
+200331,3,5164,0,10601,9,0,18,FR,France
+200330,3,3183,28,6338,5,0,10,FR,France
+200329,3,6801,450,13152,11,0,22,FR,France
+200328,3,3975,609,7341,7,1,13,FR,France
+200327,3,2293,0,4605,4,0,8,FR,France
+200326,3,5333,2138,8528,9,4,14,FR,France
+200325,3,2602,0,5228,4,0,8,FR,France
+200324,3,8429,0,19483,14,0,32,FR,France
+200323,3,4821,1479,8163,8,2,14,FR,France
+200322,3,2573,158,4988,4,0,8,FR,France
+200321,3,5563,2465,8661,9,4,14,FR,France
+200320,3,7554,3748,11360,13,7,19,FR,France
+200319,3,8325,3777,12873,14,6,22,FR,France
+200318,3,12268,6392,18144,20,10,30,FR,France
+200317,3,46253,36234,56272,77,60,94,FR,France
+200316,3,50759,39835,61683,85,67,103,FR,France
+200315,3,69269,55778,82760,116,93,139,FR,France
+200314,3,70084,55374,84794,117,92,142,FR,France
+200313,3,70335,56370,84300,118,95,141,FR,France
+200312,3,88582,73568,103596,148,123,173,FR,France
+200311,3,99729,83353,116105,167,140,194,FR,France
+200310,3,121516,104361,138671,203,174,232,FR,France
+200309,3,177255,151800,202710,296,253,339,FR,France
+200308,3,222638,194269,251007,372,325,419,FR,France
+200307,3,237104,207851,266357,396,347,445,FR,France
+200306,3,206955,177973,235937,346,298,394,FR,France
+200305,3,151864,125877,177851,254,211,297,FR,France
+200304,3,95356,76211,114501,159,127,191,FR,France
+200303,3,50983,38264,63702,85,64,106,FR,France
+200302,3,31447,21706,41188,53,37,69,FR,France
+200301,3,31228,19202,43254,52,32,72,FR,France
+200252,3,47016,33692,60340,79,57,101,FR,France
+200251,3,47629,36912,58346,80,62,98,FR,France
+200250,3,35221,26217,44225,59,44,74,FR,France
+200249,3,24656,16900,32412,41,28,54,FR,France
+200248,3,19799,12868,26730,33,21,45,FR,France
+200247,3,16449,9214,23684,28,16,40,FR,France
+200246,3,12753,5779,19727,21,9,33,FR,France
+200245,3,19304,8475,30133,32,14,50,FR,France
+200244,3,18082,10671,25493,30,18,42,FR,France
+200243,3,14326,7548,21104,24,13,35,FR,France
+200242,3,13774,7800,19748,23,13,33,FR,France
+200241,3,11036,5650,16422,19,10,28,FR,France
+200240,3,8137,3375,12899,14,6,22,FR,France
+200239,3,15989,9892,22086,27,17,37,FR,France
+200238,3,7067,3299,10835,12,6,18,FR,France
+200237,3,12409,4981,19837,21,9,33,FR,France
+200236,3,1679,0,4072,3,0,7,FR,France
+200235,3,2126,0,6301,4,0,11,FR,France
+200234,3,2843,0,7483,5,0,13,FR,France
+200233,3,2670,0,5462,4,0,9,FR,France
+200232,3,1087,0,3003,2,0,5,FR,France
+200231,3,5455,399,10511,9,1,17,FR,France
+200230,3,3601,0,7836,6,0,13,FR,France
+200229,3,5576,379,10773,9,0,18,FR,France
+200228,3,6602,0,14289,11,0,24,FR,France
+200227,3,1882,0,6151,3,0,10,FR,France
+200226,3,4523,0,12320,8,0,21,FR,France
+200225,3,4765,1076,8454,8,2,14,FR,France
+200224,3,12063,7174,16952,20,12,28,FR,France
+200223,3,15468,9806,21130,26,16,36,FR,France
+200222,3,4854,1696,8012,8,3,13,FR,France
+200221,3,5901,2212,9590,10,4,16,FR,France
+200220,3,3803,1215,6391,6,2,10,FR,France
+200219,3,6139,2598,9680,10,4,16,FR,France
+200218,3,6083,2646,9520,10,4,16,FR,France
+200217,3,7223,2678,11768,12,4,20,FR,France
+200216,3,17762,9887,25637,30,17,43,FR,France
+200215,3,21654,13662,29646,36,23,49,FR,France
+200214,3,23877,15709,32045,40,26,54,FR,France
+200213,3,27497,16289,38705,46,27,65,FR,France
+200212,3,33510,20938,46082,56,35,77,FR,France
+200211,3,40426,29171,51681,68,49,87,FR,France
+200210,3,42915,24537,61293,72,41,103,FR,France
+200209,3,63735,48368,79102,107,81,133,FR,France
+200208,3,117204,95548,138860,197,161,233,FR,France
+200207,3,170251,137065,203437,286,230,342,FR,France
+200206,3,325084,296111,354057,546,497,595,FR,France
+200205,3,456186,422559,489813,767,710,824,FR,France
+200204,3,504715,470859,538571,848,791,905,FR,France
+200203,3,383720,353019,414421,645,593,697,FR,France
+200202,3,244028,217752,270304,410,366,454,FR,France
+200201,3,115422,95696,135148,194,161,227,FR,France
+200152,3,57999,43225,72773,98,73,123,FR,France
+200151,3,45961,36017,55905,78,61,95,FR,France
+200150,3,31309,22878,39740,53,39,67,FR,France
+200149,3,34792,23268,46316,59,40,78,FR,France
+200148,3,43283,20164,66402,73,34,112,FR,France
+200147,3,27455,20021,34889,46,33,59,FR,France
+200146,3,21127,14294,27960,36,24,48,FR,France
+200145,3,20766,13979,27553,35,24,46,FR,France
+200144,3,11410,6593,16227,19,11,27,FR,France
+200143,3,23311,15652,30970,39,26,52,FR,France
+200142,3,18963,11652,26274,32,20,44,FR,France
+200141,3,20241,14032,26450,34,24,44,FR,France
+200140,3,18113,9971,26255,31,17,45,FR,France
+200139,3,25407,7785,43029,43,13,73,FR,France
+200138,3,9736,4985,14487,16,8,24,FR,France
+200137,3,8025,3527,12523,14,6,22,FR,France
+200136,3,4663,654,8672,8,1,15,FR,France
+200135,3,4399,0,9810,7,0,16,FR,France
+200134,3,2990,0,6419,5,0,11,FR,France
+200133,3,0,0,0,0,0,0,FR,France
+200132,3,0,0,0,0,0,0,FR,France
+200131,3,18999,4286,33712,32,7,57,FR,France
+200130,3,2144,0,5670,4,0,10,FR,France
+200129,3,2408,0,5215,4,0,9,FR,France
+200128,3,3555,553,6557,6,1,11,FR,France
+200127,3,4739,1122,8356,8,2,14,FR,France
+200126,3,3335,466,6204,6,1,11,FR,France
+200125,3,2643,527,4759,4,0,8,FR,France
+200124,3,4784,2158,7410,8,4,12,FR,France
+200123,3,6299,3161,9437,11,6,16,FR,France
+200122,3,4544,2006,7082,8,4,12,FR,France
+200121,3,8925,4094,13756,15,7,23,FR,France
+200120,3,15269,8883,21655,26,15,37,FR,France
+200119,3,17369,10575,24163,29,18,40,FR,France
+200118,3,21043,14262,27824,36,25,47,FR,France
+200117,3,25787,19109,32465,44,33,55,FR,France
+200116,3,24025,16833,31217,41,29,53,FR,France
+200115,3,24188,17340,31036,41,29,53,FR,France
+200114,3,40429,31774,49084,68,53,83,FR,France
+200113,3,48644,39517,57771,82,67,97,FR,France
+200112,3,45411,35780,55042,77,61,93,FR,France
+200111,3,49809,40534,59084,84,68,100,FR,France
+200110,3,46649,37240,56058,79,63,95,FR,France
+200109,3,58623,47346,69900,99,80,118,FR,France
+200108,3,77423,63237,91609,131,107,155,FR,France
+200107,3,126970,107898,146042,215,183,247,FR,France
+200106,3,225969,198142,253796,382,335,429,FR,France
+200105,3,278674,249486,307862,471,422,520,FR,France
+200104,3,209193,189129,229257,354,320,388,FR,France
+200103,3,139823,124243,155403,236,210,262,FR,France
+200102,3,105356,92392,118320,178,156,200,FR,France
+200101,3,98930,84599,113261,167,143,191,FR,France
+200052,3,143525,124203,162847,244,211,277,FR,France
+200051,3,125224,108719,141729,213,185,241,FR,France
+200050,3,99177,84857,113497,169,145,193,FR,France
+200049,3,74170,54196,94144,126,92,160,FR,France
+200048,3,43642,34064,53220,74,58,90,FR,France
+200047,3,64848,11322,118374,110,19,201,FR,France
+200046,3,20598,14053,27143,35,24,46,FR,France
+200045,3,25375,17229,33521,43,29,57,FR,France
+200044,3,16330,9762,22898,28,17,39,FR,France
+200043,3,36951,27693,46209,63,47,79,FR,France
+200042,3,41200,30772,51628,70,52,88,FR,France
+200041,3,40022,30939,49105,68,53,83,FR,France
+200040,3,27237,19986,34488,46,34,58,FR,France
+200039,3,19338,12649,26027,33,22,44,FR,France
+200038,3,7417,3193,11641,13,6,20,FR,France
+200037,3,2243,0,4722,4,0,8,FR,France
+200036,3,2990,0,6416,5,0,11,FR,France
+200035,3,5590,0,12003,10,0,21,FR,France
+200034,3,5188,0,12418,9,0,21,FR,France
+200033,3,1690,0,3859,3,0,7,FR,France
+200032,3,1405,0,4239,2,0,7,FR,France
+200031,3,2159,0,4744,4,0,8,FR,France
+200030,3,218,0,783,0,0,1,FR,France
+200029,3,1532,0,3751,3,0,7,FR,France
+200028,3,1071,0,2881,2,0,5,FR,France
+200027,3,2427,150,4704,4,0,8,FR,France
+200026,3,1997,0,4996,3,0,8,FR,France
+200025,3,4239,221,8257,7,0,14,FR,France
+200024,3,5411,1122,9700,9,2,16,FR,France
+200023,3,8757,4101,13413,15,7,23,FR,France
+200022,3,4966,1694,8238,8,2,14,FR,France
+200021,3,4271,1389,7153,7,2,12,FR,France
+200020,3,4520,1478,7562,8,3,13,FR,France
+200019,3,13867,8548,19186,24,15,33,FR,France
+200018,3,5386,2261,8511,9,4,14,FR,France
+200017,3,7018,1581,12455,12,3,21,FR,France
+200016,3,5328,1433,9223,9,2,16,FR,France
+200015,3,12020,6436,17604,20,11,29,FR,France
+200014,3,10942,5691,16193,19,10,28,FR,France
+200013,3,8572,3443,13701,15,6,24,FR,France
+200012,3,7081,3097,11065,12,5,19,FR,France
+200011,3,12172,7447,16897,21,13,29,FR,France
+200010,3,9091,5450,12732,15,9,21,FR,France
+200009,3,14631,9200,20062,25,16,34,FR,France
+200008,3,23647,17172,30122,40,29,51,FR,France
+200007,3,59173,48440,69906,101,83,119,FR,France
+200006,3,146517,129961,163073,249,221,277,FR,France
+200005,3,261687,239983,283391,445,408,482,FR,France
+200004,3,374822,349785,399859,637,594,680,FR,France
+200003,3,484233,456706,511760,824,777,871,FR,France
+200002,3,521069,492185,549953,886,837,935,FR,France
+200001,3,541945,511326,572564,922,870,974,FR,France
+199952,3,387655,360652,414658,663,617,709,FR,France
+199951,3,272075,250906,293244,465,429,501,FR,France
+199950,3,181113,164571,197655,310,282,338,FR,France
+199949,3,112328,99058,125598,192,169,215,FR,France
+199948,3,58710,48651,68769,100,83,117,FR,France
+199947,3,35912,23462,48362,61,40,82,FR,France
+199946,3,8601,1503,15699,15,3,27,FR,France
+199945,3,17781,10817,24745,30,18,42,FR,France
+199944,3,18238,12870,23606,31,22,40,FR,France
+199943,3,18135,12601,23669,31,22,40,FR,France
+199942,3,19183,13258,25108,33,23,43,FR,France
+199941,3,25171,18689,31653,43,32,54,FR,France
+199940,3,24185,16184,32186,41,27,55,FR,France
+199939,3,28553,20776,36330,49,36,62,FR,France
+199938,3,12430,7759,17101,21,13,29,FR,France
+199937,3,7543,4283,10803,13,7,19,FR,France
+199936,3,8191,2827,13555,14,5,23,FR,France
+199935,3,3334,1188,5480,6,2,10,FR,France
+199934,3,7600,0,27730,13,0,47,FR,France
+199933,3,9757,354,19160,17,1,33,FR,France
+199932,3,7149,0,15077,12,0,26,FR,France
+199931,3,2640,0,5463,5,0,10,FR,France
+199930,3,1478,0,3153,3,0,6,FR,France
+199929,3,3983,498,7468,7,1,13,FR,France
+199928,3,3731,712,6750,6,1,11,FR,France
+199927,3,5004,1597,8411,9,3,15,FR,France
+199926,3,3459,699,6219,6,1,11,FR,France
+199925,3,5302,2057,8547,9,3,15,FR,France
+199924,3,4327,1646,7008,7,2,12,FR,France
+199923,3,5370,2374,8366,9,4,14,FR,France
+199922,3,4404,1643,7165,8,3,13,FR,France
+199921,3,4180,1485,6875,7,2,12,FR,France
+199920,3,6073,2775,9371,10,4,16,FR,France
+199919,3,6241,3220,9262,11,6,16,FR,France
+199918,3,3057,678,5436,5,1,9,FR,France
+199917,3,2904,701,5107,5,1,9,FR,France
+199916,3,7539,3360,11718,13,6,20,FR,France
+199915,3,11535,6814,16256,20,12,28,FR,France
+199914,3,18730,13131,24329,32,22,42,FR,France
+199913,3,38453,29560,47346,66,51,81,FR,France
+199912,3,58090,48072,68108,99,82,116,FR,France
+199911,3,91329,78686,103972,156,134,178,FR,France
+199910,3,147976,131058,164894,253,224,282,FR,France
+199909,3,207450,188710,226190,355,323,387,FR,France
+199908,3,313293,292280,334306,536,500,572,FR,France
+199907,3,524136,496702,551570,896,849,943,FR,France
+199906,3,493908,466605,521211,844,797,891,FR,France
+199905,3,476884,449696,504072,815,769,861,FR,France
+199904,3,368514,345131,391897,630,590,670,FR,France
+199903,3,242388,224208,260568,414,383,445,FR,France
+199902,3,160657,145209,176105,275,249,301,FR,France
+199901,3,130133,115125,145141,222,196,248,FR,France
+199853,3,107611,92301,122921,185,159,211,FR,France
+199852,3,72373,61032,83714,124,105,143,FR,France
+199851,3,78179,67156,89202,134,115,153,FR,France
+199850,3,54775,45478,64072,94,78,110,FR,France
+199849,3,33385,26332,40438,57,45,69,FR,France
+199848,3,22636,16668,28604,39,29,49,FR,France
+199847,3,14505,9746,19264,25,17,33,FR,France
+199846,3,13804,9049,18559,24,16,32,FR,France
+199845,3,13021,8113,17929,22,14,30,FR,France
+199844,3,12631,7410,17852,22,13,31,FR,France
+199843,3,12180,7125,17235,21,12,30,FR,France
+199842,3,18885,12726,25044,32,21,43,FR,France
+199841,3,24196,17506,30886,42,31,53,FR,France
+199840,3,20235,14114,26356,35,25,45,FR,France
+199839,3,17075,11538,22612,29,20,38,FR,France
+199838,3,10837,6336,15338,19,11,27,FR,France
+199837,3,6968,3227,10709,12,6,18,FR,France
+199836,3,3033,580,5486,5,1,9,FR,France
+199835,3,2491,0,5022,4,0,8,FR,France
+199834,3,3853,589,7117,7,1,13,FR,France
+199833,3,2934,0,6598,5,0,11,FR,France
+199832,3,1308,0,2894,2,0,5,FR,France
+199831,3,12147,0,29237,21,0,50,FR,France
+199830,3,5309,1628,8990,9,3,15,FR,France
+199829,3,6486,2465,10507,11,4,18,FR,France
+199828,3,9577,4464,14690,16,7,25,FR,France
+199827,3,12358,7158,17558,21,12,30,FR,France
+199826,3,10415,6547,14283,18,11,25,FR,France
+199825,3,18246,13050,23442,31,22,40,FR,France
+199824,3,16263,11126,21400,28,19,37,FR,France
+199823,3,8553,4911,12195,15,9,21,FR,France
+199822,3,5181,2669,7693,9,5,13,FR,France
+199821,3,4751,2416,7086,8,4,12,FR,France
+199820,3,12129,8099,16159,21,14,28,FR,France
+199819,3,24118,17906,30330,41,30,52,FR,France
+199818,3,31612,24512,38712,54,42,66,FR,France
+199817,3,61148,51894,70402,105,89,121,FR,France
+199816,3,123195,109878,136512,211,188,234,FR,France
+199815,3,171603,156715,186491,294,268,320,FR,France
+199814,3,319092,298398,339786,547,512,582,FR,France
+199813,3,298212,278513,317911,512,478,546,FR,France
+199812,3,263585,246356,280814,452,422,482,FR,France
+199811,3,220578,204894,236262,378,351,405,FR,France
+199810,3,202354,186304,218404,347,319,375,FR,France
+199809,3,227553,209970,245136,390,360,420,FR,France
+199808,3,271362,252005,290719,465,432,498,FR,France
+199807,3,190187,173694,206680,326,298,354,FR,France
+199806,3,88217,76829,99605,151,131,171,FR,France
+199805,3,45180,36970,53390,77,63,91,FR,France
+199804,3,30005,23272,36738,51,39,63,FR,France
+199803,3,23900,18221,29579,41,31,51,FR,France
+199802,3,31143,23994,38292,53,41,65,FR,France
+199801,3,24809,17786,31832,43,31,55,FR,France
+199752,3,29039,21984,36094,50,38,62,FR,France
+199751,3,34924,27737,42111,60,48,72,FR,France
+199750,3,33527,26388,40666,58,46,70,FR,France
+199749,3,15978,11147,20809,27,19,35,FR,France
+199748,3,11507,7744,15270,20,14,26,FR,France
+199747,3,11059,7151,14967,19,12,26,FR,France
+199746,3,8073,4613,11533,14,8,20,FR,France
+199745,3,18202,13113,23291,31,22,40,FR,France
+199744,3,19770,14405,25135,34,25,43,FR,France
+199743,3,16707,11945,21469,29,21,37,FR,France
+199742,3,15340,10351,20329,26,17,35,FR,France
+199741,3,16933,11941,21925,29,20,38,FR,France
+199740,3,13292,8709,17875,23,15,31,FR,France
+199739,3,10189,6279,14099,18,11,25,FR,France
+199738,3,3231,1061,5401,6,2,10,FR,France
+199737,3,4542,1949,7135,8,4,12,FR,France
+199736,3,5131,2205,8057,9,4,14,FR,France
+199735,3,1842,0,3740,3,0,6,FR,France
+199734,3,3226,0,6717,6,0,12,FR,France
+199733,3,1799,0,4368,3,0,7,FR,France
+199732,3,2086,0,4411,4,0,8,FR,France
+199731,3,1386,0,3332,2,0,5,FR,France
+199730,3,2116,0,4919,4,0,9,FR,France
+199729,3,1973,0,4347,3,0,7,FR,France
+199728,3,1560,216,2904,3,1,5,FR,France
+199727,3,2540,754,4326,4,1,7,FR,France
+199726,3,5582,2699,8465,10,5,15,FR,France
+199725,3,4012,1090,6934,7,2,12,FR,France
+199724,3,4696,1824,7568,8,3,13,FR,France
+199723,3,4709,2136,7282,8,4,12,FR,France
+199722,3,2283,665,3901,4,1,7,FR,France
+199721,3,2108,664,3552,4,2,6,FR,France
+199720,3,3257,1519,4995,6,3,9,FR,France
+199719,3,4646,2436,6856,8,4,12,FR,France
+199718,3,5246,2764,7728,9,5,13,FR,France
+199717,3,14236,9906,18566,24,17,31,FR,France
+199716,3,12169,8111,16227,21,14,28,FR,France
+199715,3,9516,6192,12840,16,10,22,FR,France
+199714,3,13602,9659,17545,23,16,30,FR,France
+199713,3,18032,13345,22719,31,23,39,FR,France
+199712,3,17199,12707,21691,30,22,38,FR,France
+199711,3,19988,15419,24557,34,26,42,FR,France
+199710,3,21903,17338,26468,38,30,46,FR,France
+199709,3,29860,24261,35459,51,41,61,FR,France
+199708,3,55445,47857,63033,95,82,108,FR,France
+199707,3,70876,62518,79234,122,108,136,FR,France
+199706,3,76906,68152,85660,132,117,147,FR,France
+199705,3,95900,86095,105705,165,148,182,FR,France
+199704,3,96896,87079,106713,167,150,184,FR,France
+199703,3,143844,131917,155771,248,227,269,FR,France
+199702,3,211578,197395,225761,364,340,388,FR,France
+199701,3,280440,263783,297097,483,454,512,FR,France
+199652,3,388201,369211,407191,670,637,703,FR,France
+199651,3,640627,617388,663866,1106,1066,1146,FR,France
+199650,3,535205,514568,555842,924,888,960,FR,France
+199649,3,411498,393335,429661,710,679,741,FR,France
+199648,3,195568,182563,208573,338,316,360,FR,France
+199647,3,71980,63619,80341,124,110,138,FR,France
+199646,3,32138,26358,37918,55,45,65,FR,France
+199645,3,25551,20136,30966,44,35,53,FR,France
+199644,3,10753,7230,14276,19,13,25,FR,France
+199643,3,12971,9311,16631,22,16,28,FR,France
+199642,3,11929,8472,15386,21,15,27,FR,France
+199641,3,9918,6674,13162,17,11,23,FR,France
+199640,3,10765,7067,14463,19,13,25,FR,France
+199639,3,8377,5183,11571,14,8,20,FR,France
+199638,3,9470,5965,12975,16,10,22,FR,France
+199637,3,2925,829,5021,5,1,9,FR,France
+199636,3,1122,23,2221,2,0,4,FR,France
+199635,3,1674,93,3255,3,0,6,FR,France
+199634,3,1273,122,2424,2,0,4,FR,France
+199633,3,540,0,1246,1,0,2,FR,France
+199632,3,1453,176,2730,3,1,5,FR,France
+199631,3,3010,752,5268,5,1,9,FR,France
+199630,3,2992,706,5278,5,1,9,FR,France
+199629,3,1559,144,2974,3,1,5,FR,France
+199628,3,3109,541,5677,5,1,9,FR,France
+199627,3,4456,1595,7317,8,3,13,FR,France
+199626,3,2871,1138,4604,5,2,8,FR,France
+199625,3,2308,856,3760,4,1,7,FR,France
+199624,3,2490,1067,3913,4,2,6,FR,France
+199623,3,2819,1262,4376,5,2,8,FR,France
+199622,3,4005,1984,6026,7,4,10,FR,France
+199621,3,7042,4291,9793,12,7,17,FR,France
+199620,3,10619,7365,13873,18,12,24,FR,France
+199619,3,11898,8065,15731,21,14,28,FR,France
+199618,3,18338,13352,23324,32,23,41,FR,France
+199617,3,24954,19100,30808,43,33,53,FR,France
+199616,3,29313,23868,34758,51,42,60,FR,France
+199615,3,51703,43644,59762,89,75,103,FR,France
+199614,3,44414,36774,52054,77,64,90,FR,France
+199613,3,30622,25062,36182,53,43,63,FR,France
+199612,3,31818,25852,37784,55,45,65,FR,France
+199611,3,24427,19499,29355,42,33,51,FR,France
+199610,3,20910,16198,25622,36,28,44,FR,France
+199609,3,19594,15228,23960,34,26,42,FR,France
+199608,3,19046,14850,23242,33,26,40,FR,France
+199607,3,23041,18338,27744,40,32,48,FR,France
+199606,3,21810,17153,26467,38,30,46,FR,France
+199605,3,25275,20410,30140,44,36,52,FR,France
+199604,3,43359,36948,49770,75,64,86,FR,France
+199603,3,54691,48016,61366,94,82,106,FR,France
+199602,3,105606,96106,115106,182,166,198,FR,France
+199601,3,223830,209274,238386,386,361,411,FR,France
+199552,3,397122,378252,415992,688,655,721,FR,France
+199551,3,749988,725434,774542,1299,1256,1342,FR,France
+199550,3,604926,583100,626752,1047,1009,1085,FR,France
+199549,3,375500,358200,392800,650,620,680,FR,France
+199548,3,206446,193457,219435,357,335,379,FR,France
+199547,3,120472,110526,130418,209,192,226,FR,France
+199546,3,62380,55042,69718,108,95,121,FR,France
+199545,3,29791,24523,35059,52,43,61,FR,France
+199544,3,13168,9820,16516,23,17,29,FR,France
+199543,3,16188,12389,19987,28,21,35,FR,France
+199542,3,15178,11387,18969,26,19,33,FR,France
+199541,3,14980,10851,19109,26,19,33,FR,France
+199540,3,16245,11610,20880,28,20,36,FR,France
+199539,3,18499,13844,23154,32,24,40,FR,France
+199538,3,13123,9410,16836,23,17,29,FR,France
+199537,3,4895,2666,7124,8,4,12,FR,France
+199536,3,3659,1574,5744,6,2,10,FR,France
+199535,3,2496,644,4348,4,1,7,FR,France
+199534,3,1887,214,3560,3,0,6,FR,France
+199533,3,905,0,2007,2,0,4,FR,France
+199532,3,700,0,1699,1,0,3,FR,France
+199531,3,1946,92,3800,3,0,6,FR,France
+199530,3,1898,46,3750,3,0,6,FR,France
+199529,3,2148,687,3609,4,1,7,FR,France
+199528,3,3312,1430,5194,6,3,9,FR,France
+199527,3,4853,2683,7023,8,4,12,FR,France
+199526,3,4986,2911,7061,9,5,13,FR,France
+199525,3,4571,2520,6622,8,4,12,FR,France
+199524,3,8058,5054,11062,14,9,19,FR,France
+199523,3,13820,9801,17839,24,17,31,FR,France
+199522,3,14124,9999,18249,24,17,31,FR,France
+199521,3,11931,8655,15207,21,15,27,FR,France
+199520,3,18846,14311,23381,33,25,41,FR,France
+199519,3,26261,21488,31034,45,37,53,FR,France
+199518,3,39231,33258,45204,68,58,78,FR,France
+199517,3,88640,79343,97937,153,137,169,FR,France
+199516,3,140488,129439,151537,243,224,262,FR,France
+199515,3,181007,169110,192904,313,292,334,FR,France
+199514,3,248704,235144,262264,431,408,454,FR,France
+199513,3,209839,197191,222487,363,341,385,FR,France
+199512,3,122434,112497,132371,212,195,229,FR,France
+199511,3,81730,73346,90114,142,127,157,FR,France
+199510,3,49387,42703,56071,86,74,98,FR,France
+199509,3,39696,33259,46133,69,58,80,FR,France
+199508,3,38008,32225,43791,66,56,76,FR,France
+199507,3,30550,25479,35621,53,44,62,FR,France
+199506,3,37351,32007,42695,65,56,74,FR,France
+199505,3,27876,23218,32534,48,40,56,FR,France
+199504,3,27643,22818,32468,48,40,56,FR,France
+199503,3,24844,20391,29297,43,35,51,FR,France
+199502,3,23480,19249,27711,41,34,48,FR,France
+199501,3,26556,21916,31196,46,38,54,FR,France
+199452,3,22036,17495,26577,38,30,46,FR,France
+199451,3,26912,21750,32074,47,38,56,FR,France
+199450,3,28831,23470,34192,50,41,59,FR,France
+199449,3,21161,16559,25763,37,29,45,FR,France
+199448,3,18487,14456,22518,32,25,39,FR,France
+199447,3,15206,11578,18834,26,20,32,FR,France
+199446,3,14252,10525,17979,25,19,31,FR,France
+199445,3,12152,8448,15856,21,15,27,FR,France
+199444,3,11307,7688,14926,20,14,26,FR,France
+199443,3,11254,8002,14506,20,14,26,FR,France
+199442,3,14406,10653,18159,25,18,32,FR,France
+199441,3,14073,10341,17805,24,18,30,FR,France
+199440,3,15962,11850,20074,28,21,35,FR,France
+199439,3,15878,11643,20113,28,21,35,FR,France
+199438,3,15366,11100,19632,27,20,34,FR,France
+199437,3,5949,3561,8337,10,6,14,FR,France
+199436,3,2806,1133,4479,5,2,8,FR,France
+199435,3,4556,2358,6754,8,4,12,FR,France
+199434,3,3459,1444,5474,6,2,10,FR,France
+199433,3,4272,977,7567,7,1,13,FR,France
+199432,3,4786,1613,7959,8,2,14,FR,France
+199431,3,5027,1580,8474,9,3,15,FR,France
+199430,3,2100,520,3680,4,1,7,FR,France
+199429,3,1188,0,2384,2,0,4,FR,France
+199428,3,1581,316,2846,3,1,5,FR,France
+199427,3,713,0,1459,1,0,2,FR,France
+199426,3,990,80,1900,2,0,4,FR,France
+199425,3,5431,3222,7640,9,5,13,FR,France
+199424,3,6288,3723,8853,11,7,15,FR,France
+199423,3,6440,1052,11828,11,2,20,FR,France
+199422,3,845,0,2449,1,0,4,FR,France
+199421,3,2197,395,3999,4,1,7,FR,France
+199420,3,2217,852,3582,4,2,6,FR,France
+199419,3,1483,406,2560,3,1,5,FR,France
+199418,3,3705,1940,5470,6,3,9,FR,France
+199417,3,2288,1064,3512,4,2,6,FR,France
+199416,3,5156,3176,7136,9,6,12,FR,France
+199415,3,6952,4678,9226,12,8,16,FR,France
+199414,3,4671,2784,6558,8,5,11,FR,France
+199413,3,3343,1641,5045,6,3,9,FR,France
+199412,3,4305,2412,6198,7,4,10,FR,France
+199411,3,5399,3327,7471,9,5,13,FR,France
+199410,3,4548,2529,6567,8,4,12,FR,France
+199409,3,5635,3251,8019,10,6,14,FR,France
+199408,3,9539,6652,12426,17,12,22,FR,France
+199407,3,14639,11188,18090,25,19,31,FR,France
+199406,3,17308,13395,21221,30,23,37,FR,France
+199405,3,18489,14290,22688,32,25,39,FR,France
+199404,3,23712,19048,28376,41,33,49,FR,France
+199403,3,29882,24817,34947,52,43,61,FR,France
+199402,3,47402,41415,53389,82,72,92,FR,France
+199401,3,118119,108182,128056,205,188,222,FR,France
+199352,3,233137,218608,247666,406,381,431,FR,France
+199351,3,377472,359792,395152,658,627,689,FR,France
+199350,3,627639,607097,648181,1094,1058,1130,FR,France
+199349,3,898045,873419,922671,1565,1522,1608,FR,France
+199348,3,527582,507752,547412,920,885,955,FR,France
+199347,3,241371,226769,255973,421,396,446,FR,France
+199346,3,76034,68003,84065,133,119,147,FR,France
+199345,3,32289,27022,37556,56,47,65,FR,France
+199344,3,17832,14015,21649,31,24,38,FR,France
+199343,3,15098,11333,18863,26,19,33,FR,France
+199342,3,19187,14893,23481,33,26,40,FR,France
+199341,3,18285,14384,22186,32,25,39,FR,France
+199340,3,13805,10348,17262,24,18,30,FR,France
+199339,3,14783,11173,18393,26,20,32,FR,France
+199338,3,10492,7329,13655,18,12,24,FR,France
+199337,3,7023,4503,9543,12,8,16,FR,France
+199336,3,4361,2445,6277,8,5,11,FR,France
+199335,3,5589,3066,8112,10,6,14,FR,France
+199334,3,2984,1209,4759,5,2,8,FR,France
+199333,3,3217,758,5676,6,2,10,FR,France
+199332,3,3755,1051,6459,7,2,12,FR,France
+199331,3,4163,1768,6558,7,3,11,FR,France
+199330,3,4055,1907,6203,7,3,11,FR,France
+199329,3,3714,1668,5760,6,2,10,FR,France
+199328,3,1774,484,3064,3,1,5,FR,France
+199327,3,2574,918,4230,4,1,7,FR,France
+199326,3,3048,1450,4646,5,2,8,FR,France
+199325,3,8348,5260,11436,15,10,20,FR,France
+199324,3,6624,3747,9501,12,7,17,FR,France
+199323,3,7424,4302,10546,13,8,18,FR,France
+199322,3,3432,1849,5015,6,3,9,FR,France
+199321,3,5942,3670,8214,10,6,14,FR,France
+199320,3,5137,3157,7117,9,6,12,FR,France
+199319,3,4593,2725,6461,8,5,11,FR,France
+199318,3,5027,3075,6979,9,6,12,FR,France
+199317,3,8111,5138,11084,14,9,19,FR,France
+199316,3,24932,19468,30396,43,33,53,FR,France
+199315,3,22181,17147,27215,39,30,48,FR,France
+199314,3,38266,30865,45667,67,54,80,FR,France
+199313,3,62987,54506,71468,110,95,125,FR,France
+199312,3,63493,55956,71030,111,98,124,FR,France
+199311,3,80548,72628,88468,140,126,154,FR,France
+199310,3,127910,117688,138132,223,205,241,FR,France
+199309,3,184150,171378,196922,321,299,343,FR,France
+199308,3,222932,209051,236813,389,365,413,FR,France
+199307,3,248494,234936,262052,433,409,457,FR,France
+199306,3,286939,271830,302048,500,474,526,FR,France
+199305,3,255890,241516,270264,446,421,471,FR,France
+199304,3,193107,181261,204953,337,316,358,FR,France
+199303,3,147854,137256,158452,258,240,276,FR,France
+199302,3,90269,82164,98374,157,143,171,FR,France
+199301,3,75288,67244,83332,131,117,145,FR,France
+199253,3,56622,49107,64137,99,86,112,FR,France
+199252,3,49588,42568,56608,87,75,99,FR,France
+199251,3,41156,35024,47288,72,61,83,FR,France
+199250,3,40100,34699,45501,70,61,79,FR,France
+199249,3,39146,33847,44445,69,60,78,FR,France
+199248,3,32392,27499,37285,57,48,66,FR,France
+199247,3,26276,21797,30755,46,38,54,FR,France
+199246,3,22758,18462,27054,40,32,48,FR,France
+199245,3,22023,17804,26242,39,32,46,FR,France
+199244,3,27619,22945,32293,48,40,56,FR,France
+199243,3,24969,20704,29234,44,37,51,FR,France
+199242,3,29980,25261,34699,52,44,60,FR,France
+199241,3,24091,19953,28229,42,35,49,FR,France
+199240,3,17593,13885,21301,31,25,37,FR,France
+199239,3,13535,10301,16769,24,18,30,FR,France
+199238,3,9837,7106,12568,17,12,22,FR,France
+199237,3,7480,5130,9830,13,9,17,FR,France
+199236,3,5155,2958,7352,9,5,13,FR,France
+199235,3,6383,3687,9079,11,6,16,FR,France
+199234,3,2953,922,4984,5,1,9,FR,France
+199233,3,4046,1549,6543,7,3,11,FR,France
+199232,3,4963,2215,7711,9,4,14,FR,France
+199231,3,4233,1733,6733,7,3,11,FR,France
+199230,3,3091,1145,5037,5,2,8,FR,France
+199229,3,3586,1583,5589,6,2,10,FR,France
+199228,3,4179,2133,6225,7,3,11,FR,France
+199227,3,5568,3134,8002,10,6,14,FR,France
+199226,3,5886,3229,8543,10,5,15,FR,France
+199225,3,5304,2805,7803,9,5,13,FR,France
+199224,3,5928,3482,8374,10,6,14,FR,France
+199223,3,3914,1855,5973,7,3,11,FR,France
+199222,3,4899,2641,7157,9,5,13,FR,France
+199221,3,5059,2889,7229,9,5,13,FR,France
+199220,3,4308,2226,6390,8,4,12,FR,France
+199219,3,2982,1181,4783,5,2,8,FR,France
+199218,3,3887,1777,5997,7,3,11,FR,France
+199217,3,3614,1216,6012,6,2,10,FR,France
+199216,3,5460,2934,7986,10,6,14,FR,France
+199215,3,8642,5029,12255,15,9,21,FR,France
+199214,3,11346,7536,15156,20,13,27,FR,France
+199213,3,11693,8096,15290,20,14,26,FR,France
+199212,3,11752,7834,15670,21,14,28,FR,France
+199211,3,11689,7575,15803,20,13,27,FR,France
+199210,3,19224,12971,25477,34,23,45,FR,France
+199209,3,26629,20275,32983,47,36,58,FR,France
+199208,3,37667,30887,44447,66,54,78,FR,France
+199207,3,57312,48777,65847,100,85,115,FR,France
+199206,3,112450,99989,124911,197,175,219,FR,France
+199205,3,165474,151342,179606,290,265,315,FR,France
+199204,3,147959,133595,162323,259,234,284,FR,France
+199203,3,137893,122944,152842,241,215,267,FR,France
+199202,3,185852,166558,205146,325,291,359,FR,France
+199201,3,247688,222574,272802,434,390,478,FR,France
+199152,3,349815,325499,374131,615,572,658,FR,France
+199151,3,378413,355928,400898,666,626,706,FR,France
+199150,3,198721,182878,214564,350,322,378,FR,France
+199149,3,93903,82992,104814,165,146,184,FR,France
+199148,3,45173,37384,52962,79,65,93,FR,France
+199147,3,35691,28224,43158,63,50,76,FR,France
+199146,3,23685,17531,29839,42,31,53,FR,France
+199145,3,19565,13551,25579,34,23,45,FR,France
+199144,3,21571,15477,27665,38,27,49,FR,France
+199143,3,28842,21958,35726,51,39,63,FR,France
+199142,3,27483,20385,34581,48,36,60,FR,France
+199141,3,28185,20655,35715,50,37,63,FR,France
+199140,3,26740,16049,37431,47,28,66,FR,France
+199139,3,14373,8734,20012,25,15,35,FR,France
+199138,3,7460,3700,11220,13,6,20,FR,France
+199137,3,2429,434,4424,4,0,8,FR,France
+199136,3,2380,0,4882,4,0,8,FR,France
+199135,3,2372,0,5025,4,0,9,FR,France
+199134,3,2099,0,5104,4,0,9,FR,France
+199133,3,1654,0,4102,3,0,7,FR,France
+199132,3,625,0,2190,1,0,4,FR,France
+199131,3,2464,0,5830,4,0,10,FR,France
+199130,3,2382,0,6857,4,0,12,FR,France
+199129,3,3837,40,7634,7,0,14,FR,France
+199128,3,3297,152,6442,6,0,12,FR,France
+199127,3,3164,934,5394,6,2,10,FR,France
+199126,3,6376,3324,9428,11,6,16,FR,France
+199125,3,8218,4776,11660,14,8,20,FR,France
+199124,3,8223,4660,11786,14,8,20,FR,France
+199123,3,6801,3596,10006,12,6,18,FR,France
+199122,3,6050,2682,9418,11,5,17,FR,France
+199121,3,6391,3385,9397,11,6,16,FR,France
+199120,3,8633,4683,12583,15,8,22,FR,France
+199119,3,7785,3986,11584,14,7,21,FR,France
+199118,3,10856,6457,15255,19,11,27,FR,France
+199117,3,15603,10950,20256,27,19,35,FR,France
+199116,3,15665,11184,20146,28,20,36,FR,France
+199115,3,15062,10715,19409,26,18,34,FR,France
+199114,3,27862,21583,34141,49,38,60,FR,France
+199113,3,32179,25829,38529,57,46,68,FR,France
+199112,3,27873,22312,33434,49,39,59,FR,France
+199111,3,46186,38876,53496,81,68,94,FR,France
+199110,3,88750,77784,99716,156,137,175,FR,France
+199109,3,139093,124326,153860,245,219,271,FR,France
+199108,3,216369,198630,234108,381,350,412,FR,France
+199107,3,208836,191789,225883,367,337,397,FR,France
+199106,3,134737,121280,148194,237,213,261,FR,France
+199105,3,73564,62716,84412,129,110,148,FR,France
+199104,3,48253,39031,57475,85,69,101,FR,France
+199103,3,29382,22258,36506,52,39,65,FR,France
+199102,3,29759,22044,37474,52,38,66,FR,France
+199101,3,42927,33706,52148,76,60,92,FR,France
+199052,3,41262,31607,50917,73,56,90,FR,France
+199051,3,46924,37544,56304,83,66,100,FR,France
+199050,3,44125,36137,52113,78,64,92,FR,France
+199049,3,38379,30603,46155,68,54,82,FR,France
+199048,3,29571,22315,36827,52,39,65,FR,France
+199047,3,23358,15890,30826,41,28,54,FR,France
+199046,3,20246,7930,32562,36,14,58,FR,France
+199045,3,17571,11591,23551,31,20,42,FR,France
+199044,3,16182,10305,22059,29,19,39,FR,France
+199043,3,17579,11588,23570,31,20,42,FR,France
+199042,3,13011,7875,18147,23,14,32,FR,France
+199041,3,19723,13330,26116,35,24,46,FR,France
+199040,3,20433,14614,26252,36,26,46,FR,France
+199039,3,15618,10315,20921,28,19,37,FR,France
+199038,3,11146,6197,16095,20,11,29,FR,France
+199037,3,4051,1022,7080,7,2,12,FR,France
+199036,3,2542,124,4960,4,0,8,FR,France
+199035,3,934,0,2681,2,0,5,FR,France
+199034,3,201,0,595,0,0,1,FR,France
+199033,3,0,0,0,0,0,0,FR,France
+199032,3,1399,0,3849,2,0,6,FR,France
+199031,3,881,0,2206,2,0,4,FR,France
+199030,3,425,0,1262,1,0,2,FR,France
+199029,3,1077,0,2643,2,0,5,FR,France
+199028,3,959,0,2252,2,0,4,FR,France
+199027,3,2948,793,5103,5,1,9,FR,France
+199026,3,7236,2651,11821,13,5,21,FR,France
+199025,3,7879,3136,12622,14,6,22,FR,France
+199024,3,5727,2460,8994,10,4,16,FR,France
+199023,3,3655,1043,6267,6,1,11,FR,France
+199022,3,4196,1292,7100,7,2,12,FR,France
+199021,3,1004,0,2367,2,0,4,FR,France
+199020,3,4506,1771,7241,8,3,13,FR,France
+199019,3,5897,2440,9354,10,4,16,FR,France
+199018,3,1738,141,3335,3,0,6,FR,France
+199017,3,5278,2197,8359,9,4,14,FR,France
+199016,3,8129,3754,12504,14,6,22,FR,France
+199015,3,11707,5831,17583,21,11,31,FR,France
+199014,3,12862,8177,17547,23,15,31,FR,France
+199013,3,21879,15088,28670,39,27,51,FR,France
+199012,3,17035,11135,22935,30,20,40,FR,France
+199011,3,20018,14311,25725,35,25,45,FR,France
+199010,3,16294,11045,21543,29,20,38,FR,France
+199009,3,21793,15460,28126,39,28,50,FR,France
+199008,3,26110,19342,32878,46,34,58,FR,France
+199007,3,61742,49720,73764,109,88,130,FR,France
+199006,3,399984,353345,446623,707,625,789,FR,France
+199005,3,161765,146354,177176,286,259,313,FR,France
+199004,3,287771,267698,307844,509,474,544,FR,France
+199003,3,315466,296550,334382,558,525,591,FR,France
+199002,3,345060,326087,364033,610,576,644,FR,France
+199001,3,483600,460913,506287,855,815,895,FR,France
+198952,3,581149,556023,606275,1035,990,1080,FR,France
+198951,3,821540,793846,849234,1463,1414,1512,FR,France
+198950,3,749283,723633,774933,1334,1288,1380,FR,France
+198949,3,358043,340053,376033,638,606,670,FR,France
+198948,3,119087,108253,129921,212,193,231,FR,France
+198947,3,40963,33897,48029,73,60,86,FR,France
+198946,3,23547,17952,29142,42,32,52,FR,France
+198945,3,22711,16999,28423,40,30,50,FR,France
+198944,3,23405,17475,29335,42,31,53,FR,France
+198943,3,29549,23287,35811,53,42,64,FR,France
+198942,3,39410,32172,46648,70,57,83,FR,France
+198941,3,43763,35245,52281,78,63,93,FR,France
+198940,3,31453,24288,38618,56,43,69,FR,France
+198939,3,24622,18425,30819,44,33,55,FR,France
+198938,3,18296,13483,23109,33,24,42,FR,France
+198937,3,12022,8082,15962,21,14,28,FR,France
+198936,3,4769,2299,7239,8,4,12,FR,France
+198935,3,4661,1696,7626,8,3,13,FR,France
+198934,3,6039,2185,9893,11,4,18,FR,France
+198933,3,7940,3858,12022,14,7,21,FR,France
+198932,3,7114,2361,11867,13,5,21,FR,France
+198931,3,2721,0,5478,5,0,10,FR,France
+198930,3,3168,561,5775,6,1,11,FR,France
+198929,3,3909,1504,6314,7,3,11,FR,France
+198928,3,1284,105,2463,2,0,4,FR,France
+198927,3,3641,1350,5932,6,2,10,FR,France
+198926,3,5753,2885,8621,10,5,15,FR,France
+198925,3,6299,3454,9144,11,6,16,FR,France
+198924,3,6337,3537,9137,11,6,16,FR,France
+198923,3,11779,7984,15574,21,14,28,FR,France
+198922,3,9104,4764,13444,16,8,24,FR,France
+198921,3,9554,4316,14792,17,8,26,FR,France
+198920,3,6093,1023,11163,11,2,20,FR,France
+198919,3,0,,,0,,,FR,France
+198918,3,13452,1365,25539,24,2,46,FR,France
+198917,3,10949,7147,14751,19,12,26,FR,France
+198916,3,10908,7494,14322,19,13,25,FR,France
+198915,3,9667,6209,13125,17,11,23,FR,France
+198914,3,15230,10469,19991,27,19,35,FR,France
+198913,3,10564,6767,14361,19,12,26,FR,France
+198912,3,13419,9542,17296,24,17,31,FR,France
+198911,3,16633,12140,21126,30,22,38,FR,France
+198910,3,12387,8750,16024,22,16,28,FR,France
+198909,3,12895,9183,16607,23,16,30,FR,France
+198908,3,19746,15258,24234,35,27,43,FR,France
+198907,3,27277,21760,32794,49,39,59,FR,France
+198906,3,47844,40320,55368,85,72,98,FR,France
+198905,3,52840,45665,60015,94,81,107,FR,France
+198904,3,54942,47750,62134,98,85,111,FR,France
+198903,3,66010,58065,73955,118,104,132,FR,France
+198902,3,112284,102003,122565,200,182,218,FR,France
+198901,3,202266,188305,216227,360,335,385,FR,France
+198852,3,467971,447033,488909,837,800,874,FR,France
+198851,3,872748,846468,899028,1562,1515,1609,FR,France
+198850,3,1001824,974799,1028849,1793,1745,1841,FR,France
+198849,3,966523,940068,992978,1729,1682,1776,FR,France
+198848,3,637811,614785,660837,1141,1100,1182,FR,France
+198847,3,246062,231234,260890,440,413,467,FR,France
+198846,3,92484,83160,101808,165,148,182,FR,France
+198845,3,53940,46148,61732,97,83,111,FR,France
+198844,3,42106,35336,48876,75,63,87,FR,France
+198843,3,38252,31909,44595,68,57,79,FR,France
+198842,3,45495,38467,52523,81,68,94,FR,France
+198841,3,46336,39344,53328,83,70,96,FR,France
+198840,3,39882,33507,46257,71,60,82,FR,France
+198839,3,43730,36755,50705,78,66,90,FR,France
+198838,3,35243,29367,41119,63,52,74,FR,France
+198837,3,15537,11911,19163,28,22,34,FR,France
+198836,3,7539,4840,10238,13,8,18,FR,France
+198835,3,7797,4762,10832,14,9,19,FR,France
+198834,3,4950,2005,7895,9,4,14,FR,France
+198833,3,7937,3861,12013,14,7,21,FR,France
+198832,3,7033,2595,11471,13,5,21,FR,France
+198831,3,8758,3591,13925,16,7,25,FR,France
+198830,3,4205,1224,7186,8,3,13,FR,France
+198829,3,6103,1013,11193,11,2,20,FR,France
+198828,3,8562,3483,13641,15,6,24,FR,France
+198827,3,4690,2196,7184,8,4,12,FR,France
+198826,3,7065,3905,10225,13,7,19,FR,France
+198825,3,7657,4664,10650,14,9,19,FR,France
+198824,3,6676,3978,9374,12,7,17,FR,France
+198823,3,8695,5755,11635,16,11,21,FR,France
+198822,3,11566,8282,14850,21,15,27,FR,France
+198821,3,11107,7742,14472,20,14,26,FR,France
+198820,3,14118,10223,18013,25,18,32,FR,France
+198819,3,18260,13847,22673,33,25,41,FR,France
+198818,3,20415,16281,24549,37,30,44,FR,France
+198817,3,21750,17436,26064,39,31,47,FR,France
+198816,3,33730,27496,39964,60,49,71,FR,France
+198815,3,70616,61754,79478,126,110,142,FR,France
+198814,3,123868,113211,134525,222,203,241,FR,France
+198813,3,193710,181519,205901,347,325,369,FR,France
+198812,3,283445,268834,298056,507,481,533,FR,France
+198811,3,316175,300858,331492,566,539,593,FR,France
+198810,3,235142,222004,248280,421,397,445,FR,France
+198809,3,135564,125263,145865,243,225,261,FR,France
+198808,3,87753,78449,97057,157,140,174,FR,France
+198807,3,77099,68423,85775,138,122,154,FR,France
+198806,3,69349,61502,77196,124,110,138,FR,France
+198805,3,72705,64952,80458,130,116,144,FR,France
+198804,3,72818,64944,80692,130,116,144,FR,France
+198803,3,68869,60922,76816,123,109,137,FR,France
+198802,3,59743,51907,67579,107,93,121,FR,France
+198801,3,60929,52573,69285,109,94,124,FR,France
+198753,3,47257,38170,56344,85,69,101,FR,France
+198752,3,11935,2353,21517,21,4,38,FR,France
+198751,3,47744,34266,61222,86,62,110,FR,France
+198750,3,57767,50181,65353,104,90,118,FR,France
+198749,3,49380,42461,56299,89,77,101,FR,France
+198748,3,41871,35115,48627,75,63,87,FR,France
+198747,3,29688,23465,35911,53,42,64,FR,France
+198746,3,37216,30199,44233,67,54,80,FR,France
+198745,3,35456,29024,41888,64,52,76,FR,France
+198744,3,41024,33829,48219,74,61,87,FR,France
+198743,3,46356,38370,54342,83,69,97,FR,France
+198742,3,38021,30236,45806,68,54,82,FR,France
+198741,3,42021,32016,52026,76,58,94,FR,France
+198740,3,24641,15930,33352,44,28,60,FR,France
+198739,3,32328,23548,41108,58,42,74,FR,France
+198738,3,16782,11870,21694,30,21,39,FR,France
+198737,3,11208,6542,15874,20,12,28,FR,France
+198736,3,7906,4014,11798,14,7,21,FR,France
+198735,3,6149,2970,9328,11,5,17,FR,France
+198734,3,6631,2734,10528,12,5,19,FR,France
+198733,3,6404,1834,10974,12,4,20,FR,France
+198732,3,7215,2353,12077,13,4,22,FR,France
+198731,3,8233,3655,12811,15,7,23,FR,France
+198730,3,4642,1301,7983,8,2,14,FR,France
+198729,3,4389,913,7865,8,2,14,FR,France
+198728,3,2702,138,5266,5,0,10,FR,France
+198727,3,10171,5904,14438,18,10,26,FR,France
+198726,3,12341,7824,16858,22,14,30,FR,France
+198725,3,23413,15490,31336,42,28,56,FR,France
+198724,3,11289,7282,15296,20,13,27,FR,France
+198723,3,15857,10943,20771,29,20,38,FR,France
+198722,3,14887,9743,20031,27,18,36,FR,France
+198721,3,17619,12649,22589,32,23,41,FR,France
+198720,3,10344,6454,14234,19,12,26,FR,France
+198719,3,12539,7943,17135,23,15,31,FR,France
+198718,3,16095,10330,21860,29,19,39,FR,France
+198717,3,21256,14850,27662,38,26,50,FR,France
+198716,3,32416,25100,39732,58,45,71,FR,France
+198715,3,44292,36456,52128,80,66,94,FR,France
+198714,3,50642,41866,59418,91,75,107,FR,France
+198713,3,62246,52749,71743,112,95,129,FR,France
+198712,3,59625,50653,68597,107,91,123,FR,France
+198711,3,53561,45035,62087,96,81,111,FR,France
+198710,3,93067,80519,105615,167,144,190,FR,France
+198709,3,147006,133519,160493,264,240,288,FR,France
+198708,3,217779,202179,233379,391,363,419,FR,France
+198707,3,288180,270718,305642,518,487,549,FR,France
+198706,3,296702,279051,314353,533,501,565,FR,France
+198705,3,236046,219483,252609,424,394,454,FR,France
+198704,3,158333,143625,173041,285,259,311,FR,France
+198703,3,103841,91699,115983,187,165,209,FR,France
+198702,3,74213,64014,84412,133,115,151,FR,France
+198701,3,69745,59207,80283,125,106,144,FR,France
+198652,3,76263,64958,87568,138,118,158,FR,France
+198651,3,72920,63047,82793,132,114,150,FR,France
+198650,3,73413,64019,82807,133,116,150,FR,France
+198649,3,56296,48229,64363,102,87,117,FR,France
+198648,3,46031,38578,53484,83,70,96,FR,France
+198647,3,36740,29710,43770,66,53,79,FR,France
+198646,3,32134,25327,38941,58,46,70,FR,France
+198645,3,38964,31382,46546,70,56,84,FR,France
+198644,3,28646,22048,35244,52,40,64,FR,France
+198643,3,27532,20842,34222,50,38,62,FR,France
+198642,3,31815,25124,38506,57,45,69,FR,France
+198641,3,32864,25939,39789,59,47,71,FR,France
+198640,3,33516,26776,40256,60,48,72,FR,France
+198639,3,28665,22477,34853,52,41,63,FR,France
+198638,3,26615,20479,32751,48,37,59,FR,France
+198637,3,15998,10802,21194,29,20,38,FR,France
+198636,3,9182,4982,13382,17,9,25,FR,France
+198635,3,10587,4470,16704,19,8,30,FR,France
+198634,3,5762,858,10666,10,1,19,FR,France
+198633,3,3115,554,5676,6,1,11,FR,France
+198632,3,1027,0,2311,2,0,4,FR,France
+198631,3,2247,0,4574,4,0,8,FR,France
+198630,3,2346,141,4551,4,0,8,FR,France
+198629,3,3654,931,6377,7,2,12,FR,France
+198628,3,2327,0,5318,4,0,9,FR,France
+198627,3,7529,3353,11705,14,6,22,FR,France
+198626,3,8778,5106,12450,16,9,23,FR,France
+198625,3,11075,6804,15346,20,12,28,FR,France
+198624,3,11160,7252,15068,20,13,27,FR,France
+198623,3,14372,9896,18848,26,18,34,FR,France
+198622,3,9717,5594,13840,18,11,25,FR,France
+198621,3,14460,9575,19345,26,17,35,FR,France
+198620,3,17133,12106,22160,31,22,40,FR,France
+198619,3,22177,16008,28346,40,29,51,FR,France
+198618,3,31736,24115,39357,57,43,71,FR,France
+198617,3,34874,27440,42308,63,50,76,FR,France
+198616,3,41196,32894,49498,74,59,89,FR,France
+198615,3,42659,33537,51781,77,61,93,FR,France
+198614,3,49792,39728,59856,90,72,108,FR,France
+198613,3,87249,63562,110936,157,114,200,FR,France
+198612,3,124777,97237,152317,225,175,275,FR,France
+198611,3,168146,151035,185257,303,272,334,FR,France
+198610,3,257305,231225,283385,464,417,511,FR,France
+198609,3,321140,296644,345636,580,536,624,FR,France
+198608,3,448786,419219,478353,810,757,863,FR,France
+198607,3,490723,460150,521296,886,831,941,FR,France
+198606,3,439300,411764,466836,793,743,843,FR,France
+198605,3,364727,339868,389586,658,613,703,FR,France
+198604,3,348509,322464,374554,629,582,676,FR,France
+198603,3,271539,248654,294424,490,449,531,FR,France
+198602,3,178138,159344,196932,322,288,356,FR,France
+198601,3,112614,96539,128689,203,174,232,FR,France
+198552,3,86452,72250,100654,157,131,183,FR,France
+198551,3,114666,99538,129794,208,181,235,FR,France
+198550,3,86031,73604,98458,156,133,179,FR,France
+198549,3,65931,55326,76536,120,101,139,FR,France
+198548,3,68291,57581,79001,124,105,143,FR,France
+198547,3,66177,55221,77133,120,100,140,FR,France
+198546,3,70534,58788,82280,128,107,149,FR,France
+198545,3,57514,47167,67861,104,85,123,FR,France
+198544,3,67356,55744,78968,122,101,143,FR,France
+198543,3,87402,74208,100596,158,134,182,FR,France
+198542,3,76218,64604,87832,138,117,159,FR,France
+198541,3,45712,36755,54669,83,67,99,FR,France
+198540,3,49739,40335,59143,90,73,107,FR,France
+198539,3,39819,31234,48404,72,56,88,FR,France
+198538,3,27605,20614,34596,50,37,63,FR,France
+198537,3,22219,15626,28812,40,28,52,FR,France
+198536,3,27986,18992,36980,51,35,67,FR,France
+198535,3,30215,18546,41884,55,34,76,FR,France
+198534,3,40389,24786,55992,73,45,101,FR,France
+198533,3,22611,8819,36403,41,16,66,FR,France
+198532,3,7488,1851,13125,14,4,24,FR,France
+198531,3,16958,8479,25437,31,16,46,FR,France
+198530,3,11598,5507,17689,21,10,32,FR,France
+198529,3,13054,6474,19634,24,12,36,FR,France
+198528,3,14588,7659,21517,26,13,39,FR,France
+198527,3,19670,11761,27579,36,22,50,FR,France
+198526,3,18609,12637,24581,34,23,45,FR,France
+198525,3,19362,12454,26270,35,22,48,FR,France
+198524,3,19855,13577,26133,36,25,47,FR,France
+198523,3,19373,10010,28736,35,18,52,FR,France
+198522,3,24099,17190,31008,44,31,57,FR,France
+198521,3,26096,19621,32571,47,35,59,FR,France
+198520,3,27896,20885,34907,51,38,64,FR,France
+198519,3,43154,32821,53487,78,59,97,FR,France
+198518,3,40555,29935,51175,74,55,93,FR,France
+198517,3,34053,24366,43740,62,44,80,FR,France
+198516,3,50362,36451,64273,91,66,116,FR,France
+198515,3,63881,45538,82224,116,83,149,FR,France
+198514,3,134545,114400,154690,244,207,281,FR,France
+198513,3,197206,176080,218332,357,319,395,FR,France
+198512,3,245240,223304,267176,445,405,485,FR,France
+198511,3,276205,252399,300011,501,458,544,FR,France
+198510,3,353231,326279,380183,640,591,689,FR,France
+198509,3,369895,341109,398681,670,618,722,FR,France
+198508,3,389886,359529,420243,707,652,762,FR,France
+198507,3,471852,432599,511105,855,784,926,FR,France
+198506,3,565825,518011,613639,1026,939,1113,FR,France
+198505,3,637302,592795,681809,1155,1074,1236,FR,France
+198504,3,424937,390794,459080,770,708,832,FR,France
+198503,3,213901,174689,253113,388,317,459,FR,France
+198502,3,97586,80949,114223,177,147,207,FR,France
+198501,3,85489,65918,105060,155,120,190,FR,France
+198452,3,84830,60602,109058,154,110,198,FR,France
+198451,3,101726,80242,123210,185,146,224,FR,France
+198450,3,123680,101401,145959,225,184,266,FR,France
+198449,3,101073,81684,120462,184,149,219,FR,France
+198448,3,78620,60634,96606,143,110,176,FR,France
+198447,3,72029,54274,89784,131,99,163,FR,France
+198446,3,87330,67686,106974,159,123,195,FR,France
+198445,3,135223,101414,169032,246,184,308,FR,France
+198444,3,68422,20056,116788,125,37,213,FR,France
diff --git a/module3/exo3/Subject4.ipynb b/module3/exo3/Subject4.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..96349c967b5a6f686ab1b7f5a622840519802490
--- /dev/null
+++ b/module3/exo3/Subject4.ipynb
@@ -0,0 +1,3575 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Subject4: Latency and capacity estimation for a network connection from asymmetric measurements"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "%matplotlib inline\n",
+ "import matplotlib.pyplot as plt\n",
+ "import pandas as pd\n",
+ "import isoweek\n",
+ "from os import path\n",
+ "import urllib.request as request\n",
+ "import gzip as gz\n",
+ "import shutil\n",
+ "import re\n",
+ "from collections import OrderedDict"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def download_decompress_file(url, filename) :\n",
+ " if not path.exists(filename) :\n",
+ " print(\"No local data copy available for \" + filename + \", creating new version\")\n",
+ " #request.urlretrieve(url, archive)\n",
+ " request.urlretrieve(url, filename)\n",
+ " #with gz.open(archive, 'rb') as f_in:\n",
+ " # with open(filename, 'wb') as f_out:\n",
+ " # shutil.copyfile(f_in, f_out)\n",
+ " #print(\"New local copy created\")\n",
+ " else :\n",
+ " print(\"Using local version of \" + filename)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "First data to examine, ping traces from on-campus connection.\n",
+ "We first check if a local copy of the data exists. If no copy is available, a new archive is downloaded then decompressed."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Using local version of liglab2.log.gz\n"
+ ]
+ }
+ ],
+ "source": [
+ "liglab2_url = \"http://mescal.imag.fr/membres/arnaud.legrand/teaching/2014/RICM4_EP_ping/liglab2.log.gz\"\n",
+ "liglab2_file = \"liglab2.log.gz\"\n",
+ "\n",
+ "download_decompress_file(liglab2_url, liglab2_file)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Second data to examine, ping traces from stackoverflow. As before, we download and decompress the file if a local copy doesn't already exist."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Using local version of stackoverflow.log\n"
+ ]
+ }
+ ],
+ "source": [
+ "stackoverflow_url = \"http://mescal.imag.fr/membres/arnaud.legrand/teaching/2014/RICM4_EP_ping/stackoverflow.log.gz\"\n",
+ "stackoverflow_file = \"stackoverflow.log\"\n",
+ "\n",
+ "download_decompress_file(stackoverflow_url, stackoverflow_file)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 1st dataset: Liglab2"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "with gz.open(liglab2_file, 'rt') as f_in:\n",
+ " file_content = f_in.read().split(\"\\n\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "['[1421761682.052172] 665 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.5 ms',\n",
+ " '[1421761682.277315] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms',\n",
+ " '[1421761682.502054] 262 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.2 ms',\n",
+ " '[1421761682.729257] 1107 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.3 ms',\n",
+ " '[1421761682.934648] 1128 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761683.160397] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.9 ms',\n",
+ " '[1421761683.443055] 1759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=78.7 ms',\n",
+ " '[1421761683.672157] 1146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.1 ms',\n",
+ " '[1421761683.899933] 884 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.0 ms',\n",
+ " '[1421761684.122687] 1422 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms',\n",
+ " '[1421761684.344135] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms',\n",
+ " '[1421761684.566271] 999 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.8 ms',\n",
+ " '[1421761684.770828] 21 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60',\n",
+ " '[1421761684.998504] 1020 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=24.3 ms',\n",
+ " '[1421761685.205172] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.45 ms',\n",
+ " '[1421761685.414106] 34 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.85 ms',\n",
+ " '[1421761685.620117] 1843 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761685.824949] 407 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761686.029177] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms',\n",
+ " '[1421761686.234464] 1511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms',\n",
+ " '[1421761686.438772] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761686.643208] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761686.848323] 1364 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms',\n",
+ " '[1421761687.053400] 1153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761687.257704] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761687.463275] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms',\n",
+ " '[1421761687.668423] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761687.874230] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms',\n",
+ " '[1421761688.078667] 933 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761688.283655] 922 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761688.488688] 24 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms',\n",
+ " '[1421761688.694652] 1518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761688.899867] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms',\n",
+ " '[1421761689.104455] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761689.309556] 1348 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761689.514744] 760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761689.719832] 1076 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761689.924690] 772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761690.129358] 300 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761690.335289] 1732 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms',\n",
+ " '[1421761690.539871] 1293 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761690.744599] 127 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms',\n",
+ " '[1421761690.950126] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms',\n",
+ " '[1421761691.154491] 827 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761691.359824] 1520 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.10 ms',\n",
+ " '[1421761691.564541] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761691.769042] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761691.974735] 1509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms',\n",
+ " '[1421761692.179329] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms',\n",
+ " '[1421761692.385087] 1539 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms',\n",
+ " '[1421761692.590174] 1393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761692.796199] 1620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms',\n",
+ " '[1421761693.001785] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761693.206838] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761693.412630] 1656 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms',\n",
+ " '[1421761693.617385] 637 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761693.822314] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761694.026605] 105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761694.231410] 493 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761694.437334] 1707 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms',\n",
+ " '[1421761694.642193] 230 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761694.847858] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms',\n",
+ " '[1421761695.052302] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761695.257005] 512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761695.461769] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761695.666562] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761695.871355] 1111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761696.075667] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761696.280338] 1290 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761696.485200] 1313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761696.690050] 411 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761696.894632] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761697.100078] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms',\n",
+ " '[1421761697.304909] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761697.509838] 587 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761697.714894] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761697.920064] 658 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761698.125197] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761698.331417] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761698.536727] 195 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms',\n",
+ " '[1421761698.742762] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms',\n",
+ " '[1421761698.947941] 1253 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761699.155385] 514 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761699.359987] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761699.565169] 189 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761699.770438] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761699.982619] 974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.42 ms',\n",
+ " '[1421761700.188009] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761700.392946] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761700.598661] 1543 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761700.803687] 196 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761701.008266] 241 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms',\n",
+ " '[1421761701.213666] 383 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761701.419059] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761701.623733] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761701.829634] 1861 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761702.035954] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761702.240981] 983 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761702.446091] 616 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761702.650918] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761702.855846] 816 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761703.061669] 1742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761703.268273] 1822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms',\n",
+ " '[1421761703.474617] 1582 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms',\n",
+ " '[1421761703.680266] 1846 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761703.885115] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761704.091277] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms',\n",
+ " '[1421761704.296808] 1220 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761704.503007] 1634 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761704.707934] 881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761704.912619] 179 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761705.117528] 270 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761705.323251] 1898 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761705.529295] 1894 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms',\n",
+ " '[1421761705.735273] 1497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761705.941534] 1633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms',\n",
+ " '[1421761706.146320] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60',\n",
+ " '[1421761706.351121] 888 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761706.556586] 1221 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.82 ms',\n",
+ " '[1421761706.761920] 1426 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761706.966750] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761707.172027] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761707.377527] 1236 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761707.582574] 1468 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761707.788031] 1110 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761707.992751] 134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761708.197163] 100 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms',\n",
+ " '[1421761708.402183] 163 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms',\n",
+ " '[1421761708.607134] 647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761708.812241] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761709.016955] 53 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms',\n",
+ " '[1421761709.225273] 64 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.43 ms',\n",
+ " '[1421761709.430411] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761709.635543] 1335 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms',\n",
+ " '[1421761709.840290] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761710.046390] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms',\n",
+ " '[1421761710.251601] 778 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761710.457126] 1379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms',\n",
+ " '[1421761710.662268] 1273 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761710.867782] 1268 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761711.073227] 918 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761711.279403] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761711.484182] 370 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761711.688760] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761711.894860] 1862 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms',\n",
+ " '[1421761712.099849] 893 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761712.305514] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms',\n",
+ " '[1421761712.510874] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms',\n",
+ " '[1421761712.716494] 379 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761712.921543] 685 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761713.126565] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761713.331767] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms',\n",
+ " '[1421761713.537871] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761713.743928] 1890 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms',\n",
+ " '[1421761713.948627] 527 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761714.153575] 1180 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761714.359544] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms',\n",
+ " '[1421761714.564865] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761714.770326] 1343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms',\n",
+ " '[1421761714.975586] 1085 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761715.180823] 635 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761715.385814] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761715.591089] 987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761715.796202] 853 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761716.000492] 803 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761716.205696] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761716.411835] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms',\n",
+ " '[1421761716.617739] 1630 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms',\n",
+ " '[1421761716.823266] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms',\n",
+ " '[1421761717.028586] 251 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761717.233891] 1069 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761717.438906] 1260 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms',\n",
+ " '[1421761717.645537] 1970 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.48 ms',\n",
+ " '[1421761717.850789] 197 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761718.056229] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms',\n",
+ " '[1421761718.260980] 284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761718.466891] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761718.671777] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761718.876946] 734 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761719.082422] 1367 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761719.292131] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.98 ms',\n",
+ " '[1421761719.502305] 546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.18 ms',\n",
+ " '[1421761719.734514] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=28.2 ms',\n",
+ " '[1421761719.982146] 1877 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=44.0 ms',\n",
+ " '[1421761720.200177] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.0 ms',\n",
+ " '[1421761720.421753] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.9 ms',\n",
+ " '[1421761720.652041] 483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.3 ms',\n",
+ " '[1421761720.874167] 1368 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.0 ms',\n",
+ " '[1421761721.096519] 932 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.4 ms',\n",
+ " '[1421761721.322726] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.2 ms',\n",
+ " '[1421761721.606876] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=80.2 ms',\n",
+ " '[1421761721.824601] 1266 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=13.5 ms',\n",
+ " '[1421761722.104619] 1881 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.0 ms',\n",
+ " '[1421761722.331740] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.7 ms',\n",
+ " '[1421761722.584391] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.5 ms',\n",
+ " '[1421761722.789322] 376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761722.994312] 1093 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761723.199120] 146 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761723.407829] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.81 ms',\n",
+ " '[1421761723.618538] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=7.17 ms',\n",
+ " '[1421761723.833136] 1014 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.9 ms',\n",
+ " '[1421761724.047823] 1453 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.7 ms',\n",
+ " '[1421761724.268097] 699 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.4 ms',\n",
+ " '[1421761724.489741] 1000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.8 ms',\n",
+ " '[1421761724.717047] 1008 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.4 ms',\n",
+ " '[1421761724.941489] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.6 ms',\n",
+ " '[1421761725.226425] 1960 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=81.0 ms',\n",
+ " '[1421761725.444491] 97 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.1 ms',\n",
+ " '[1421761725.702386] 1946 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=54.0 ms',\n",
+ " '[1421761725.972423] 1793 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=66.0 ms',\n",
+ " '[1421761726.193757] 421 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=17.5 ms',\n",
+ " '[1421761726.409496] 1052 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.0 ms',\n",
+ " '[1421761726.690815] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.5 ms',\n",
+ " '[1421761726.896057] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761727.101952] 1771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761727.308555] 1832 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms',\n",
+ " '[1421761727.513751] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761727.721169] 1715 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.60 ms',\n",
+ " '[1421761727.927251] 1891 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms',\n",
+ " '[1421761728.132460] 186 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms',\n",
+ " '[1421761728.340179] 1219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.93 ms',\n",
+ " '[1421761728.551046] 1316 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.71 ms',\n",
+ " '[1421761728.763466] 604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.64 ms',\n",
+ " '[1421761728.982393] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.3 ms',\n",
+ " '[1421761729.234814] 1696 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=48.9 ms',\n",
+ " '[1421761729.453893] 822 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=15.5 ms',\n",
+ " '[1421761729.734276] 1865 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.7 ms',\n",
+ " '[1421761730.015486] 1691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=77.3 ms',\n",
+ " '[1421761730.238203] 417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms',\n",
+ " '[1421761730.462232] 209 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=20.2 ms',\n",
+ " '[1421761730.747962] 1717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.0 ms',\n",
+ " '[1421761730.962467] 1345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms',\n",
+ " '[1421761731.192213] 72 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=26.0 ms',\n",
+ " '[1421761731.421581] 957 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.4 ms',\n",
+ " '[1421761731.637458] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.7 ms',\n",
+ " '[1421761731.860904] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=19.5 ms',\n",
+ " '[1421761732.086337] 1227 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.7 ms',\n",
+ " '[1421761732.291315] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761732.497027] 1574 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761732.702007] 157 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761732.916108] 1818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.8 ms',\n",
+ " '[1421761733.128032] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.17 ms',\n",
+ " '[1421761733.342753] 858 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.0 ms',\n",
+ " '[1421761733.563241] 662 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=16.2 ms',\n",
+ " '[1421761733.830290] 1546 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=63.1 ms',\n",
+ " '[1421761734.108867] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=74.7 ms',\n",
+ " '[1421761734.334379] 590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms',\n",
+ " '[1421761734.621139] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.7 ms',\n",
+ " '[1421761734.907312] 1770 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=82.1 ms',\n",
+ " '[1421761735.194861] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=83.8 ms',\n",
+ " '[1421761735.474599] 1710 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=76.1 ms',\n",
+ " '[1421761735.700996] 205 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=22.4 ms',\n",
+ " '[1421761735.916686] 467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=11.8 ms',\n",
+ " '[1421761736.121792] 1117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761736.327584] 1967 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms',\n",
+ " '[1421761736.532650] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761736.738710] 1840 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761736.944881] 1804 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.43 ms',\n",
+ " '[1421761737.151450] 139 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms',\n",
+ " '[1421761737.357458] 1631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms',\n",
+ " '[1421761737.562533] 295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761737.768716] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761737.973554] 301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761738.178555] 1045 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761738.383386] 784 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761738.588769] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761738.793558] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761738.998791] 1132 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761739.204364] 1161 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761739.411516] 1851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.98 ms',\n",
+ " '[1421761739.616669] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms',\n",
+ " '[1421761739.822160] 1285 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761740.027560] 1360 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms',\n",
+ " '[1421761740.232677] 169 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761740.438670] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms',\n",
+ " '[1421761740.644356] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms',\n",
+ " '[1421761740.849692] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761741.054738] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761741.260662] 1789 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms',\n",
+ " '[1421761741.466845] 1663 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms',\n",
+ " '[1421761741.672831] 1791 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms',\n",
+ " '[1421761741.877992] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761742.082998] 466 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761742.288937] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms',\n",
+ " '[1421761742.493798] 729 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761742.698623] 1388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761742.903576] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761743.108921] 166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761743.315210] 1879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms',\n",
+ " '[1421761743.520344] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761743.724987] 255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761743.929396] 820 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761744.135130] 1844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761744.339939] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761744.545030] 1119 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761744.750195] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761744.955378] 1166 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761745.160292] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms',\n",
+ " '[1421761745.365214] 66 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms',\n",
+ " '[1421761745.569861] 535 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761745.775325] 1158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761745.980164] 735 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761746.184966] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761746.390275] 1246 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761746.595685] 1314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761746.800661] 666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761747.006721] 1821 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761747.211824] 1207 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761747.416738] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761747.621724] 399 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761747.827007] 1239 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761748.032090] 613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761748.238199] 1594 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms',\n",
+ " '[1421761748.443331] 71 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761748.647974] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60',\n",
+ " '[1421761748.853401] 1159 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761749.058661] 911 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms',\n",
+ " '[1421761749.263828] 81 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761749.469199] 991 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761749.674684] 1286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761749.880164] 1373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761750.085143] 1042 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761750.291760] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761750.497247] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761750.702363] 683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761750.907597] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761751.114018] 1590 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761751.318876] 382 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761751.523732] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761751.728830] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761751.933947] 1054 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761752.139494] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761752.344950] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761752.551285] 1963 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms',\n",
+ " '[1421761752.756540] 140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761752.962439] 1880 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761753.167347] 907 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761753.373040] 1572 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms',\n",
+ " '[1421761753.578274] 1083 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761753.783696] 902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761753.990161] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms',\n",
+ " '[1421761754.197340] 1706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.41 ms',\n",
+ " '[1421761754.402561] 901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761754.608098] 566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761754.813211] 1469 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.61 ms',\n",
+ " '[1421761755.018185] 579 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761755.223174] 356 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761755.428435] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms',\n",
+ " '[1421761755.633237] 773 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761755.839557] 1782 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms',\n",
+ " '[1421761756.045044] 879 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761756.250234] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761756.455532] 953 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761756.662528] 1915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.91 ms',\n",
+ " '[1421761756.868299] 659 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761757.073743] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761757.280278] 1969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms',\n",
+ " '[1421761757.485259] 878 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761757.691814] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms',\n",
+ " '[1421761757.896690] 288 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761758.103162] 1838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.51 ms',\n",
+ " '[1421761758.308834] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761758.515496] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms',\n",
+ " '[1421761758.720904] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761758.927293] 1668 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761759.131814] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761759.336333] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761759.541249] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761759.746723] 1417 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761759.951889] 350 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761760.157894] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761760.362784] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761760.567872] 1341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761760.772506] 328 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761760.977430] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761761.182435] 556 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761761.387402] 366 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761761.592982] 779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761761.797972] 1190 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761762.002248] 32 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms',\n",
+ " '[1421761762.207118] 86 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms',\n",
+ " '[1421761762.413080] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms',\n",
+ " '[1421761762.619187] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms',\n",
+ " '[1421761762.825775] 1585 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761763.031502] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761763.237767] 1711 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms',\n",
+ " '[1421761763.443321] 1310 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms',\n",
+ " '[1421761763.649023] 1395 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761763.853971] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms',\n",
+ " '[1421761764.059647] 1857 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms',\n",
+ " '[1421761764.265043] 1661 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms',\n",
+ " '[1421761764.471659] 2000 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.16 ms',\n",
+ " '[1421761764.677888] 1521 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms',\n",
+ " '[1421761764.884288] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761765.090480] 1965 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms',\n",
+ " '[1421761765.295486] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761765.500817] 702 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761765.706232] 1231 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761765.911043] 1269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761766.115691] 612 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761766.320793] 1446 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761766.527190] 1763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.45 ms',\n",
+ " '[1421761766.732873] 1208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms',\n",
+ " '[1421761766.939411] 1828 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms',\n",
+ " '[1421761767.144687] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761767.349779] 536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761767.555079] 456 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761767.760324] 479 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761767.965096] 216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761768.170067] 926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761768.375391] 910 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761768.580415] 730 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms',\n",
+ " '[1421761768.785638] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.63 ms',\n",
+ " '[1421761768.992220] 1536 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms',\n",
+ " '[1421761769.197903] 790 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761769.403117] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms',\n",
+ " '[1421761769.608772] 1936 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms',\n",
+ " '[1421761769.813931] 1427 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761770.018687] 487 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761770.223470] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761770.428906] 1066 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761770.634726] 1987 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761770.839236] 476 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761771.044838] 1485 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.09 ms',\n",
+ " '[1421761771.250207] 887 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761771.456712] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.39 ms',\n",
+ " '[1421761771.661122] 193 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms',\n",
+ " '[1421761771.867075] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms',\n",
+ " '[1421761772.072901] 1975 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms',\n",
+ " '[1421761772.277974] 716 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761772.484210] 1678 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms',\n",
+ " '[1421761772.689007] 943 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761772.894574] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms',\n",
+ " '[1421761773.100667] 1996 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761773.305832] 497 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761773.511715] 620 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761773.716729] 269 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761773.922649] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms',\n",
+ " '[1421761774.128969] 1886 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms',\n",
+ " '[1421761774.334070] 851 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761774.540041] 1506 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761774.745208] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms',\n",
+ " '[1421761774.950235] 359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761775.155925] 1749 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms',\n",
+ " '[1421761775.361522] 1869 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms',\n",
+ " '[1421761775.566847] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.12 ms',\n",
+ " '[1421761775.772195] 1664 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761775.977277] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761776.183369] 1577 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms',\n",
+ " '[1421761776.388533] 419 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761776.595000] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.50 ms',\n",
+ " '[1421761776.800119] 219 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms',\n",
+ " '[1421761777.005017] 905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761777.209733] 682 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761777.415245] 1498 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms',\n",
+ " '[1421761777.620703] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms',\n",
+ " '[1421761777.826314] 676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761778.031543] 409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761778.236574] 1271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761778.441659] 875 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761778.646764] 1296 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761778.852661] 1899 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761779.057385] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761779.262988] 1516 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.15 ms',\n",
+ " '[1421761779.467798] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761779.672824] 937 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761779.878318] 323 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761780.083469] 549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761780.288871] 1120 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms',\n",
+ " '[1421761780.494783] 263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761780.701590] 1901 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms',\n",
+ " '[1421761780.906517] 606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761781.111407] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761781.317633] 1864 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms',\n",
+ " '[1421761781.523891] 1676 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761781.728446] 33 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms',\n",
+ " '[1421761781.932871] 378 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms',\n",
+ " '[1421761782.137599] 1389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761782.343227] 1758 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761782.549491] 1695 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761782.754959] 1359 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761782.959771] 83 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms',\n",
+ " '[1421761783.164728] 537 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms',\n",
+ " '[1421761783.369648] 600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761783.575320] 286 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761783.780435] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761783.985400] 103 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761784.191179] 1569 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms',\n",
+ " '[1421761784.397342] 1841 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms',\n",
+ " '[1421761784.602093] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761784.807184] 753 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761785.013444] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761785.218915] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761785.423781] 598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761785.628502] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761785.833400] 1478 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms',\n",
+ " '[1421761786.038145] 465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761786.242957] 940 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761786.448989] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms',\n",
+ " '[1421761786.654189] 1254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761786.859823] 1671 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761787.064776] 434 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761787.270397] 1639 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms',\n",
+ " '[1421761787.475176] 384 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761787.680573] 377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761787.885982] 794 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761788.090842] 528 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761788.295851] 509 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761788.500516] 9 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60',\n",
+ " '[1421761788.706862] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms',\n",
+ " '[1421761788.912441] 530 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761789.117809] 1295 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms',\n",
+ " '[1421761789.322719] 172 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761789.528174] 961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761789.733415] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.69 ms',\n",
+ " '[1421761789.938566] 1041 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761790.144331] 1566 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761790.349327] 1134 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761790.555248] 1167 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.59 ms',\n",
+ " '[1421761790.761047] 406 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms',\n",
+ " '[1421761790.966761] 1380 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761791.172649] 1526 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761791.377724] 743 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761791.583865] 1510 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761791.789089] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761791.994651] 950 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761792.200055] 826 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761792.405255] 589 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761792.610795] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761792.816014] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761793.020799] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761793.226483] 1719 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms',\n",
+ " '[1421761793.431210] 810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761793.635938] 835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761793.840839] 737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761794.045282] 389 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms',\n",
+ " '[1421761794.250251] 1188 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761794.455311] 1301 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761794.660294] 1398 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms',\n",
+ " '[1421761794.865385] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761795.071451] 1727 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms',\n",
+ " '[1421761795.276134] 1302 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761795.480913] 691 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761795.687483] 1882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms',\n",
+ " '[1421761795.893567] 1502 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms',\n",
+ " '[1421761796.098215] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761796.302759] 156 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761796.508776] 1839 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms',\n",
+ " '[1421761796.713630] 1026 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761796.918336] 1349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms',\n",
+ " '[1421761797.124123] 1848 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761797.328933] 387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761797.535318] 1515 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761797.740545] 69 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms',\n",
+ " '[1421761797.945721] 1070 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761798.150316] 225 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms',\n",
+ " '[1421761798.355908] 981 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761798.560724] 373 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761798.765684] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761798.970332] 860 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761799.174943] 371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761799.379490] 292 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761799.584790] 1443 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms',\n",
+ " '[1421761799.789982] 771 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761799.994958] 248 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761800.200235] 254 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761800.405270] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761800.611149] 1819 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms',\n",
+ " '[1421761800.816371] 1123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761801.021483] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761801.226597] 1252 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761801.431378] 95 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761801.635988] 756 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761801.841231] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761802.046361] 460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761802.251195] 192 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761802.456777] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms',\n",
+ " '[1421761802.661699] 776 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761802.866616] 849 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761803.072480] 1903 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms',\n",
+ " '[1421761803.277661] 1390 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761803.483915] 1525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms',\n",
+ " '[1421761803.689859] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761803.895512] 1255 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761804.100486] 313 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761804.305285] 792 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761804.510123] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761804.715708] 1547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms',\n",
+ " '[1421761804.920601] 1331 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761805.126314] 1554 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms',\n",
+ " '[1421761805.331125] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60',\n",
+ " '[1421761805.536822] 766 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761805.743224] 1613 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761805.948655] 1272 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms',\n",
+ " '[1421761806.153817] 741 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761806.358293] 787 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761806.564780] 1854 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.46 ms',\n",
+ " '[1421761806.770912] 1608 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761806.975360] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms',\n",
+ " '[1421761807.181577] 1834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms',\n",
+ " '[1421761807.386244] 581 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761807.591299] 1338 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms',\n",
+ " '[1421761807.797420] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms',\n",
+ " '[1421761808.002355] 339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.07 ms',\n",
+ " '[1421761808.207450] 1145 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761808.412419] 920 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761808.617199] 1003 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761808.824843] 1409 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=3.38 ms',\n",
+ " '[1421761809.034632] 842 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.53 ms',\n",
+ " '[1421761809.239423] 314 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761809.444291] 187 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761809.657915] 1677 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.0 ms',\n",
+ " '[1421761809.866912] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=4.97 ms',\n",
+ " '[1421761810.081539] 429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=10.5 ms',\n",
+ " '[1421761810.300129] 1051 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=14.9 ms',\n",
+ " '[1421761810.516136] 59 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=12.1 ms',\n",
+ " '[1421761810.791066] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=70.8 ms',\n",
+ " '[1421761811.018013] 1462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=23.2 ms',\n",
+ " '[1421761811.294795] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=73.1 ms',\n",
+ " '[1421761811.517563] 1477 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=18.9 ms',\n",
+ " '[1421761811.743160] 470 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=21.8 ms',\n",
+ " '[1421761811.972091] 1282 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=25.5 ms',\n",
+ " '[1421761812.177174] 1140 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761812.383396] 1990 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.42 ms',\n",
+ " '[1421761812.588674] 484 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761812.793595] 215 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761812.998224] 763 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761813.203906] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761813.409295] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.83 ms',\n",
+ " '[1421761813.614916] 1737 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms',\n",
+ " '[1421761813.819382] 73 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms',\n",
+ " '[1421761814.024081] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761814.229814] 1619 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761814.434724] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761814.639411] 925 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761814.844586] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761815.049767] 458 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761815.255943] 1805 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms',\n",
+ " '[1421761815.461405] 1059 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.81 ms',\n",
+ " '[1421761815.668206] 1872 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.76 ms',\n",
+ " '[1421761815.873618] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761816.079690] 1764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms',\n",
+ " '[1421761816.284774] 597 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761816.489540] 408 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761816.694008] 518 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms',\n",
+ " '[1421761816.899193] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms',\n",
+ " '[1421761817.104346] 584 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761817.308839] 18 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60',\n",
+ " '[1421761817.513563] 201 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761817.718385] 297 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761817.924196] 1725 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms',\n",
+ " '[1421761818.129164] 942 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms',\n",
+ " '[1421761818.333889] 461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761818.539354] 831 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761818.744810] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761818.949696] 29 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761819.155722] 1745 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761819.360595] 1264 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761819.565841] 150 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761819.771116] 1377 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761819.975676] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms',\n",
+ " '[1421761820.180474] 57 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.10 ms',\n",
+ " '[1421761820.385813] 1598 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms',\n",
+ " '[1421761820.590414] 82 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms',\n",
+ " '[1421761820.795432] 511 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761821.001136] 1489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms',\n",
+ " '[1421761821.205958] 1114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761821.410556] 111 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761821.615658] 652 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761821.820569] 1387 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761822.025360] 809 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761822.230386] 1068 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761822.435414] 689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761822.639932] 706 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761822.845829] 1680 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms',\n",
+ " '[1421761823.050883] 1247 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761823.257350] 1866 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.77 ms',\n",
+ " '[1421761823.462300] 445 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761823.667424] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761823.872494] 959 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761824.077149] 183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761824.282130] 418 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761824.487394] 1280 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761824.699493] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.30 ms',\n",
+ " '[1421761824.904158] 1006 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761825.108636] 1151 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761825.313458] 1358 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761825.519692] 1876 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.38 ms',\n",
+ " '[1421761825.724842] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761825.929664] 1278 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761826.134484] 596 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761826.340116] 1538 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms',\n",
+ " '[1421761826.545134] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761826.750888] 1218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.75 ms',\n",
+ " '[1421761826.957484] 1971 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.40 ms',\n",
+ " '[1421761827.163625] 148 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms',\n",
+ " '[1421761827.368680] 657 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761827.574452] 1311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.86 ms',\n",
+ " '[1421761827.779545] 265 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761827.984543] 256 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761828.189660] 693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761828.396032] 1562 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms',\n",
+ " '[1421761828.601028] 629 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761828.806560] 1751 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms',\n",
+ " '[1421761829.011934] 1124 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761829.217533] 1102 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.77 ms',\n",
+ " '[1421761829.424272] 1512 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms',\n",
+ " '[1421761829.629371] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761829.834222] 245 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761830.039982] 1697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms',\n",
+ " '[1421761830.244855] 824 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761830.449591] 1105 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761830.654677] 882 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761830.859910] 1339 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761831.064604] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.05 ms',\n",
+ " '[1421761831.270104] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms',\n",
+ " '[1421761831.475258] 1176 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761831.681441] 1482 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761831.887155] 1416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms',\n",
+ " '[1421761832.091424] 94 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761832.295959] 347 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761832.501864] 1636 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.29 ms',\n",
+ " '[1421761832.708208] 1785 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761832.913234] 144 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761833.119135] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.49 ms',\n",
+ " '[1421761833.324433] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761833.529989] 1135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761833.735180] 333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761833.940507] 941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761834.146231] 1627 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761834.350819] 330 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761834.556072] 1099 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761834.762340] 1517 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.28 ms',\n",
+ " '[1421761834.967305] 1183 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761835.172272] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761835.378292] 1483 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms',\n",
+ " '[1421761835.582974] 673 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761835.789251] 1540 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms',\n",
+ " '[1421761835.994500] 913 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761836.199954] 489 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761836.404940] 895 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761836.611430] 1703 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.44 ms',\n",
+ " '[1421761836.817126] 1259 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761837.022478] 1437 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.41 ms',\n",
+ " '[1421761837.228354] 1595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.56 ms',\n",
+ " '[1421761837.433450] 919 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761837.638700] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761837.845360] 1961 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.83 ms',\n",
+ " '[1421761838.049952] 365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761838.254810] 969 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761838.460515] 1405 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms',\n",
+ " '[1421761838.665189] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms',\n",
+ " '[1421761838.869778] 414 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761839.075686] 1966 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms',\n",
+ " '[1421761839.280428] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761839.485826] 542 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761839.692090] 1836 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761839.897160] 425 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761840.102506] 1200 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761840.307073] 578 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761840.513106] 1603 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.35 ms',\n",
+ " '[1421761840.722705] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=5.17 ms',\n",
+ " '[1421761840.928085] 106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761841.132927] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761841.338920] 1683 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms',\n",
+ " '[1421761841.543994] 68 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761841.749135] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761841.955028] 1666 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.14 ms',\n",
+ " '[1421761842.159941] 533 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761842.364367] 956 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761842.569512] 1216 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761842.774473] 525 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761842.980543] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms',\n",
+ " '[1421761843.185468] 1038 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761843.390903] 795 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761843.596743] 786 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761843.802097] 311 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761844.007156] 1075 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761844.213205] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms',\n",
+ " '[1421761844.418068] 764 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761844.624091] 1651 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms',\n",
+ " '[1421761844.829358] 1122 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.34 ms',\n",
+ " '[1421761845.034406] 1448 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms',\n",
+ " '[1421761845.240024] 2002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761845.444920] 298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761845.649910] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761845.854989] 1194 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761846.061193] 1641 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms',\n",
+ " '[1421761846.267146] 1800 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761846.472400] 522 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761846.678331] 1852 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms',\n",
+ " '[1421761846.884510] 1563 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms',\n",
+ " '[1421761847.089211] 76 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761847.294463] 1094 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.67 ms',\n",
+ " '[1421761847.499752] 927 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms',\n",
+ " '[1421761847.705821] 1505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.17 ms',\n",
+ " '[1421761847.910455] 442 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761848.115252] 158 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761848.319887] 633 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761848.524473] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761848.729178] 114 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms',\n",
+ " '[1421761848.934299] 1309 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761849.139691] 1774 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms',\n",
+ " '[1421761849.345793] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms',\n",
+ " '[1421761849.550908] 686 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761849.756392] 1449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms',\n",
+ " '[1421761849.961797] 1291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms',\n",
+ " '[1421761850.166932] 257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761850.371560] 306 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761850.576919] 1329 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.55 ms',\n",
+ " '[1421761850.782244] 640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761850.987400] 462 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761851.193890] 1593 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.59 ms',\n",
+ " '[1421761851.399298] 948 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.72 ms',\n",
+ " '[1421761851.604815] 1028 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761851.809880] 1007 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761852.016355] 1779 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms',\n",
+ " '[1421761852.221485] 464 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761852.426411] 834 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761852.631240] 644 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761852.837728] 1500 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.53 ms',\n",
+ " '[1421761853.043056] 588 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.51 ms',\n",
+ " '[1421761853.248622] 1557 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761853.453393] 844 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761853.658317] 450 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761853.863021] 1376 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761854.067377] 808 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761854.272987] 1902 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761854.478407] 1371 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761854.683611] 697 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.26 ms',\n",
+ " '[1421761854.888415] 742 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761855.094344] 1600 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.22 ms',\n",
+ " '[1421761855.298681] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.12 ms',\n",
+ " '[1421761855.503507] 621 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761855.708252] 276 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms',\n",
+ " '[1421761855.914012] 1548 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.26 ms',\n",
+ " '[1421761856.119477] 1352 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761856.324789] 1480 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms',\n",
+ " '[1421761856.531333] 1568 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms',\n",
+ " '[1421761856.736955] 1299 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms',\n",
+ " '[1421761856.941830] 291 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761857.146581] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761857.351744] 1162 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761857.556661] 718 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.35 ms',\n",
+ " '[1421761857.762898] 1660 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.36 ms',\n",
+ " '[1421761857.968404] 1250 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761858.174814] 1783 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761858.379632] 759 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761858.584439] 271 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761858.789243] 208 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761858.994650] 1275 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761859.199610] 117 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms',\n",
+ " '[1421761859.404925] 48 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761859.610225] 137 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761859.815705] 912 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.33 ms',\n",
+ " '[1421761860.020883] 428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761860.225875] 892 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761860.431136] 871 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761860.636804] 992 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761860.841736] 143 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms',\n",
+ " '[1421761861.047983] 1926 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms',\n",
+ " '[1421761861.253527] 1755 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761861.459423] 1708 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.23 ms',\n",
+ " '[1421761861.664498] 388 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761861.870478] 1954 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms',\n",
+ " '[1421761862.075602] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761862.280727] 1404 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms',\n",
+ " '[1421761862.486032] 1460 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761862.691120] 1037 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms',\n",
+ " '[1421761862.896319] 939 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761863.101164] 318 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761863.306417] 1459 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761863.511878] 995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761863.717303] 1284 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761863.922877] 1647 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.18 ms',\n",
+ " '[1421761864.128711] 1974 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms',\n",
+ " '[1421761864.333574] 1287 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761864.539254] 1835 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761864.743952] 416 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761864.949385] 1327 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761865.154337] 1365 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.40 ms',\n",
+ " '[1421761865.360333] 1873 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms',\n",
+ " '[1421761865.565375] 326 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761865.771492] 1689 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761865.977173] 1106 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761866.182295] 67 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.09 ms',\n",
+ " '[1421761866.387107] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.08 ms',\n",
+ " '[1421761866.592694] 931 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms',\n",
+ " '[1421761866.798014] 135 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761867.003050] 1228 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.42 ms',\n",
+ " '[1421761867.208011] 1060 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761867.413121] 1473 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.49 ms',\n",
+ " '[1421761867.619448] 1905 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761867.824407] 129 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761868.030631] 1501 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.24 ms',\n",
+ " '[1421761868.236420] 1934 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.21 ms',\n",
+ " '[1421761868.441290] 1185 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.32 ms',\n",
+ " '[1421761868.646147] 118 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761868.852022] 2005 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms',\n",
+ " '[1421761869.057150] 349 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761869.262251] 1333 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.36 ms',\n",
+ " '[1421761869.468307] 1750 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms',\n",
+ " '[1421761869.674883] 1553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.65 ms',\n",
+ " '[1421761869.881530] 1772 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.70 ms',\n",
+ " '[1421761870.086242] 47 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761870.291480] 153 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761870.496681] 523 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761870.702208] 1429 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.47 ms',\n",
+ " '[1421761870.908776] 1941 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms',\n",
+ " '[1421761871.114304] 199 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761871.319856] 541 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761871.526403] 1504 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms',\n",
+ " '[1421761871.732022] 1381 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.73 ms',\n",
+ " '[1421761871.936718] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.14 ms',\n",
+ " '[1421761872.141608] 505 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.24 ms',\n",
+ " '[1421761872.346811] 1030 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761872.553233] 1810 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.33 ms',\n",
+ " '[1421761872.759748] 1591 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.32 ms',\n",
+ " '[1421761872.965236] 679 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761873.170152] 412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761873.374727] 631 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761873.580234] 815 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.37 ms',\n",
+ " '[1421761873.785373] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761873.990528] 1412 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.50 ms',\n",
+ " '[1421761874.195579] 449 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761874.400818] 1438 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms',\n",
+ " '[1421761874.606451] 867 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761874.812346] 1549 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.13 ms',\n",
+ " '[1421761875.017294] 237 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.15 ms',\n",
+ " '[1421761875.222509] 717 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761875.427727] 1092 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761875.633491] 1374 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.43 ms',\n",
+ " '[1421761875.839788] 1797 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.54 ms',\n",
+ " '[1421761876.045109] 345 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.54 ms',\n",
+ " '[1421761876.251308] 1606 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.52 ms',\n",
+ " '[1421761876.456928] 1257 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.56 ms',\n",
+ " '[1421761876.662888] 595 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761876.868417] 909 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.45 ms',\n",
+ " '[1421761877.073169] 42 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms',\n",
+ " '[1421761877.278482] 1263 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms',\n",
+ " '[1421761877.484483] 1610 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.20 ms',\n",
+ " '[1421761877.689733] 1428 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms',\n",
+ " '[1421761877.894962] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.48 ms',\n",
+ " '[1421761878.099787] 838 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.30 ms',\n",
+ " '[1421761878.304265] 123 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms',\n",
+ " '[1421761878.509339] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761878.714632] 733 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761878.919363] 218 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761879.124141] 136 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.13 ms',\n",
+ " '[1421761879.328560] 104 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761879.533887] 1391 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.62 ms',\n",
+ " '[1421761879.739399] 1009 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761879.944362] 321 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.21 ms',\n",
+ " '[1421761880.149607] 1086 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761880.354376] 96 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761880.559503] 1224 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.39 ms',\n",
+ " '[1421761880.764220] 341 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.11 ms',\n",
+ " '[1421761880.968978] 125 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761881.173906] 152 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761881.384150] 915 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=6.65 ms',\n",
+ " '[1421761881.596103] 1400 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=8.01 ms',\n",
+ " '[1421761881.802369] 1994 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.27 ms',\n",
+ " '[1421761882.007740] 605 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761882.213252] 1467 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761882.418307] 307 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761882.623759] 235 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761882.830197] 1693 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.31 ms',\n",
+ " '[1421761883.035445] 491 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.19 ms',\n",
+ " '[1421761883.240046] 761 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.25 ms',\n",
+ " '[1421761883.445370] 1304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms',\n",
+ " '[1421761883.651563] 1868 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.25 ms',\n",
+ " '[1421761883.856714] 1298 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761884.061903] 361 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761884.267660] 1622 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.16 ms',\n",
+ " '[1421761884.472847] 223 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.22 ms',\n",
+ " '[1421761884.678746] 906 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.57 ms',\n",
+ " '[1421761884.883992] 740 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.29 ms',\n",
+ " '[1421761885.088761] 818 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.23 ms',\n",
+ " '[1421761885.293718] 393 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761885.498926] 1090 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.31 ms',\n",
+ " '[1421761885.704670] 1995 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.34 ms',\n",
+ " '[1421761885.909203] 343 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.16 ms',\n",
+ " '[1421761886.114320] 928 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.38 ms',\n",
+ " '[1421761886.319148] 1138 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.41 ms',\n",
+ " '[1421761886.524176] 1461 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.46 ms',\n",
+ " '[1421761886.729611] 1234 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.65 ms',\n",
+ " '[1421761886.935353] 1002 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.52 ms',\n",
+ " '[1421761887.140562] 553 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.28 ms',\n",
+ " '[1421761887.346231] 1760 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.19 ms',\n",
+ " '[1421761887.551338] 41 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.17 ms',\n",
+ " '[1421761887.756387] 1465 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.53 ms',\n",
+ " '[1421761887.962754] 1640 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.30 ms',\n",
+ " '[1421761888.167792] 43 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.06 ms',\n",
+ " '[1421761888.372632] 70 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.18 ms',\n",
+ " '[1421761888.577846] 304 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.20 ms',\n",
+ " '[1421761888.783380] 1141 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.44 ms',\n",
+ " '[1421761888.989913] 1883 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.37 ms',\n",
+ " '[1421761889.195616] 547 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.84 ms',\n",
+ " '[1421761889.400423] 765 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=1.27 ms',\n",
+ " '[1421761889.606504] 1604 bytes from lig-publig.imag.fr (129.88.11.7): icmp_seq=1 ttl=60 time=2.47 ms',\n",
+ " ...]"
+ ]
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "file_content"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "list = []\n",
+ "reg = [('timestamp',r'\\[([0-9]+\\.[0-9]+)\\]'),\n",
+ " ('size', r'([1-9][0-9]*) bytes'),\n",
+ " ('url', r'from ([-a-zA-Z0-9@:%._\\+~#=]{1,256}\\.[a-zA-Z0-9()]{1,6}\\b([-a-zA-Z0-9()@:%_\\+.~#?&\\/=]*)?)'),\n",
+ " ('ip', r'\\(\\b((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))\\b\\)'),\n",
+ " ('icmp_seq', r'icmp_seq=([1-9][0-9]*)'),\n",
+ " ('ttl', r'ttl=([0-9]|[1-9][0-9]*)'),\n",
+ " ('time', r'time=([0-9]|[1-9][0-9]*(\\.[0-9]+)?) ms')]\n",
+ "for line in file_content:\n",
+ " values = OrderedDict()\n",
+ " if line:\n",
+ " for (name, regex) in reg:\n",
+ " obj = re.findall(regex, line)\n",
+ " val = None\n",
+ " if len(obj) :\n",
+ " val = obj[0]\n",
+ " if isinstance(val, tuple) and len(val) :\n",
+ " val = val[0]\n",
+ " values[name] = val\n",
+ " list.append(values)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " timestamp | \n",
+ " size | \n",
+ " url | \n",
+ " ip | \n",
+ " icmp_seq | \n",
+ " ttl | \n",
+ " time | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " 1421761682.052172 | \n",
+ " 665 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 22.5 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " 1421761682.277315 | \n",
+ " 1373 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 21.2 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " 1421761682.502054 | \n",
+ " 262 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 21.2 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " 1421761682.729257 | \n",
+ " 1107 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 23.3 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " 1421761682.934648 | \n",
+ " 1128 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.41 | \n",
+ "
\n",
+ " \n",
+ " 5 | \n",
+ " 1421761683.160397 | \n",
+ " 489 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 21.9 | \n",
+ "
\n",
+ " \n",
+ " 6 | \n",
+ " 1421761683.443055 | \n",
+ " 1759 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 78.7 | \n",
+ "
\n",
+ " \n",
+ " 7 | \n",
+ " 1421761683.672157 | \n",
+ " 1146 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 25.1 | \n",
+ "
\n",
+ " \n",
+ " 8 | \n",
+ " 1421761683.899933 | \n",
+ " 884 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 24.0 | \n",
+ "
\n",
+ " \n",
+ " 9 | \n",
+ " 1421761684.122687 | \n",
+ " 1422 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 19.5 | \n",
+ "
\n",
+ " \n",
+ " 10 | \n",
+ " 1421761684.344135 | \n",
+ " 1180 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 18.0 | \n",
+ "
\n",
+ " \n",
+ " 11 | \n",
+ " 1421761684.566271 | \n",
+ " 999 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 18.8 | \n",
+ "
\n",
+ " \n",
+ " 12 | \n",
+ " 1421761684.770828 | \n",
+ " 21 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 13 | \n",
+ " 1421761684.998504 | \n",
+ " 1020 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 24.3 | \n",
+ "
\n",
+ " \n",
+ " 14 | \n",
+ " 1421761685.205172 | \n",
+ " 71 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 3.45 | \n",
+ "
\n",
+ " \n",
+ " 15 | \n",
+ " 1421761685.414106 | \n",
+ " 34 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 5.85 | \n",
+ "
\n",
+ " \n",
+ " 16 | \n",
+ " 1421761685.620117 | \n",
+ " 1843 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.31 | \n",
+ "
\n",
+ " \n",
+ " 17 | \n",
+ " 1421761685.824949 | \n",
+ " 407 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.14 | \n",
+ "
\n",
+ " \n",
+ " 18 | \n",
+ " 1421761686.029177 | \n",
+ " 356 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.10 | \n",
+ "
\n",
+ " \n",
+ " 19 | \n",
+ " 1421761686.234464 | \n",
+ " 1511 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.18 | \n",
+ "
\n",
+ " \n",
+ " 20 | \n",
+ " 1421761686.438772 | \n",
+ " 587 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.27 | \n",
+ "
\n",
+ " \n",
+ " 21 | \n",
+ " 1421761686.643208 | \n",
+ " 809 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.33 | \n",
+ "
\n",
+ " \n",
+ " 22 | \n",
+ " 1421761686.848323 | \n",
+ " 1364 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.51 | \n",
+ "
\n",
+ " \n",
+ " 23 | \n",
+ " 1421761687.053400 | \n",
+ " 1153 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.44 | \n",
+ "
\n",
+ " \n",
+ " 24 | \n",
+ " 1421761687.257704 | \n",
+ " 853 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.30 | \n",
+ "
\n",
+ " \n",
+ " 25 | \n",
+ " 1421761687.463275 | \n",
+ " 1510 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.17 | \n",
+ "
\n",
+ " \n",
+ " 26 | \n",
+ " 1421761687.668423 | \n",
+ " 123 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.21 | \n",
+ "
\n",
+ " \n",
+ " 27 | \n",
+ " 1421761687.874230 | \n",
+ " 1966 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.20 | \n",
+ "
\n",
+ " \n",
+ " 28 | \n",
+ " 1421761688.078667 | \n",
+ " 933 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.34 | \n",
+ "
\n",
+ " \n",
+ " 29 | \n",
+ " 1421761688.283655 | \n",
+ " 922 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.42 | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 44383 | \n",
+ " 1421771180.743715 | \n",
+ " 1772 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 28.8 | \n",
+ "
\n",
+ " \n",
+ " 44384 | \n",
+ " 1421771180.949053 | \n",
+ " 41 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.14 | \n",
+ "
\n",
+ " \n",
+ " 44385 | \n",
+ " 1421771181.155685 | \n",
+ " 1944 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.32 | \n",
+ "
\n",
+ " \n",
+ " 44386 | \n",
+ " 1421771181.362095 | \n",
+ " 400 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.98 | \n",
+ "
\n",
+ " \n",
+ " 44387 | \n",
+ " 1421771181.569409 | \n",
+ " 226 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 3.01 | \n",
+ "
\n",
+ " \n",
+ " 44388 | \n",
+ " 1421771181.780805 | \n",
+ " 466 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 7.45 | \n",
+ "
\n",
+ " \n",
+ " 44389 | \n",
+ " 1421771181.998869 | \n",
+ " 350 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 13.5 | \n",
+ "
\n",
+ " \n",
+ " 44390 | \n",
+ " 1421771182.248969 | \n",
+ " 1829 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 45.9 | \n",
+ "
\n",
+ " \n",
+ " 44391 | \n",
+ " 1421771182.512386 | \n",
+ " 1954 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 58.5 | \n",
+ "
\n",
+ " \n",
+ " 44392 | \n",
+ " 1421771182.717961 | \n",
+ " 1074 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.45 | \n",
+ "
\n",
+ " \n",
+ " 44393 | \n",
+ " 1421771182.923292 | \n",
+ " 46 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.11 | \n",
+ "
\n",
+ " \n",
+ " 44394 | \n",
+ " 1421771183.129965 | \n",
+ " 1844 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.26 | \n",
+ "
\n",
+ " \n",
+ " 44395 | \n",
+ " 1421771183.335449 | \n",
+ " 645 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.24 | \n",
+ "
\n",
+ " \n",
+ " 44396 | \n",
+ " 1421771183.540901 | \n",
+ " 444 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.25 | \n",
+ "
\n",
+ " \n",
+ " 44397 | \n",
+ " 1421771183.747983 | \n",
+ " 1940 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.46 | \n",
+ "
\n",
+ " \n",
+ " 44398 | \n",
+ " 1421771183.954099 | \n",
+ " 1411 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.47 | \n",
+ "
\n",
+ " \n",
+ " 44399 | \n",
+ " 1421771184.159879 | \n",
+ " 49 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.21 | \n",
+ "
\n",
+ " \n",
+ " 44400 | \n",
+ " 1421771184.365815 | \n",
+ " 420 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.55 | \n",
+ "
\n",
+ " \n",
+ " 44401 | \n",
+ " 1421771184.571516 | \n",
+ " 227 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.22 | \n",
+ "
\n",
+ " \n",
+ " 44402 | \n",
+ " 1421771184.777325 | \n",
+ " 947 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.34 | \n",
+ "
\n",
+ " \n",
+ " 44403 | \n",
+ " 1421771184.983905 | \n",
+ " 1960 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.43 | \n",
+ "
\n",
+ " \n",
+ " 44404 | \n",
+ " 1421771185.188976 | \n",
+ " 531 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.19 | \n",
+ "
\n",
+ " \n",
+ " 44405 | \n",
+ " 1421771185.394275 | \n",
+ " 374 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.14 | \n",
+ "
\n",
+ " \n",
+ " 44406 | \n",
+ " 1421771185.600745 | \n",
+ " 1503 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.19 | \n",
+ "
\n",
+ " \n",
+ " 44407 | \n",
+ " 1421771185.805877 | \n",
+ " 572 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.29 | \n",
+ "
\n",
+ " \n",
+ " 44408 | \n",
+ " 1421771186.011910 | \n",
+ " 1338 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.47 | \n",
+ "
\n",
+ " \n",
+ " 44409 | \n",
+ " 1421771186.222729 | \n",
+ " 1515 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 7.02 | \n",
+ "
\n",
+ " \n",
+ " 44410 | \n",
+ " 1421771186.429007 | \n",
+ " 1875 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.33 | \n",
+ "
\n",
+ " \n",
+ " 44411 | \n",
+ " 1421771186.634747 | \n",
+ " 1006 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.61 | \n",
+ "
\n",
+ " \n",
+ " 44412 | \n",
+ " 1421771186.840222 | \n",
+ " 1273 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.35 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
44413 rows × 7 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " timestamp size url ip icmp_seq ttl \\\n",
+ "0 1421761682.052172 665 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1 1421761682.277315 1373 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "2 1421761682.502054 262 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3 1421761682.729257 1107 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "4 1421761682.934648 1128 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "5 1421761683.160397 489 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "6 1421761683.443055 1759 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "7 1421761683.672157 1146 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "8 1421761683.899933 884 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "9 1421761684.122687 1422 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "10 1421761684.344135 1180 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "11 1421761684.566271 999 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "12 1421761684.770828 21 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "13 1421761684.998504 1020 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "14 1421761685.205172 71 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "15 1421761685.414106 34 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "16 1421761685.620117 1843 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "17 1421761685.824949 407 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "18 1421761686.029177 356 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "19 1421761686.234464 1511 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "20 1421761686.438772 587 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "21 1421761686.643208 809 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "22 1421761686.848323 1364 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "23 1421761687.053400 1153 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "24 1421761687.257704 853 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "25 1421761687.463275 1510 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "26 1421761687.668423 123 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "27 1421761687.874230 1966 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "28 1421761688.078667 933 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "29 1421761688.283655 922 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "... ... ... ... ... ... .. \n",
+ "44383 1421771180.743715 1772 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44384 1421771180.949053 41 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44385 1421771181.155685 1944 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44386 1421771181.362095 400 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44387 1421771181.569409 226 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44388 1421771181.780805 466 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44389 1421771181.998869 350 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44390 1421771182.248969 1829 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44391 1421771182.512386 1954 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44392 1421771182.717961 1074 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44393 1421771182.923292 46 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44394 1421771183.129965 1844 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44395 1421771183.335449 645 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44396 1421771183.540901 444 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44397 1421771183.747983 1940 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44398 1421771183.954099 1411 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44399 1421771184.159879 49 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44400 1421771184.365815 420 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44401 1421771184.571516 227 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44402 1421771184.777325 947 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44403 1421771184.983905 1960 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44404 1421771185.188976 531 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44405 1421771185.394275 374 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44406 1421771185.600745 1503 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44407 1421771185.805877 572 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44408 1421771186.011910 1338 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44409 1421771186.222729 1515 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44410 1421771186.429007 1875 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44411 1421771186.634747 1006 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44412 1421771186.840222 1273 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "\n",
+ " time \n",
+ "0 22.5 \n",
+ "1 21.2 \n",
+ "2 21.2 \n",
+ "3 23.3 \n",
+ "4 1.41 \n",
+ "5 21.9 \n",
+ "6 78.7 \n",
+ "7 25.1 \n",
+ "8 24.0 \n",
+ "9 19.5 \n",
+ "10 18.0 \n",
+ "11 18.8 \n",
+ "12 None \n",
+ "13 24.3 \n",
+ "14 3.45 \n",
+ "15 5.85 \n",
+ "16 2.31 \n",
+ "17 1.14 \n",
+ "18 1.10 \n",
+ "19 2.18 \n",
+ "20 1.27 \n",
+ "21 1.33 \n",
+ "22 1.51 \n",
+ "23 1.44 \n",
+ "24 1.30 \n",
+ "25 2.17 \n",
+ "26 1.21 \n",
+ "27 2.20 \n",
+ "28 1.34 \n",
+ "29 1.42 \n",
+ "... ... \n",
+ "44383 28.8 \n",
+ "44384 1.14 \n",
+ "44385 2.32 \n",
+ "44386 1.98 \n",
+ "44387 3.01 \n",
+ "44388 7.45 \n",
+ "44389 13.5 \n",
+ "44390 45.9 \n",
+ "44391 58.5 \n",
+ "44392 1.45 \n",
+ "44393 1.11 \n",
+ "44394 2.26 \n",
+ "44395 1.24 \n",
+ "44396 1.25 \n",
+ "44397 2.46 \n",
+ "44398 1.47 \n",
+ "44399 1.21 \n",
+ "44400 1.55 \n",
+ "44401 1.22 \n",
+ "44402 1.34 \n",
+ "44403 2.43 \n",
+ "44404 1.19 \n",
+ "44405 1.14 \n",
+ "44406 2.19 \n",
+ "44407 1.29 \n",
+ "44408 1.47 \n",
+ "44409 7.02 \n",
+ "44410 2.33 \n",
+ "44411 1.61 \n",
+ "44412 1.35 \n",
+ "\n",
+ "[44413 rows x 7 columns]"
+ ]
+ },
+ "execution_count": 13,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "raw_data = pd.DataFrame(list)\n",
+ "raw_data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " timestamp | \n",
+ " size | \n",
+ " url | \n",
+ " ip | \n",
+ " icmp_seq | \n",
+ " ttl | \n",
+ " time | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 12 | \n",
+ " 1421761684.770828 | \n",
+ " 21 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 116 | \n",
+ " 1421761706.146320 | \n",
+ " 9 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 314 | \n",
+ " 1421761748.647974 | \n",
+ " 9 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 508 | \n",
+ " 1421761788.500516 | \n",
+ " 9 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 590 | \n",
+ " 1421761805.331125 | \n",
+ " 18 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 647 | \n",
+ " 1421761817.308839 | \n",
+ " 18 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 1087 | \n",
+ " 1421761907.694059 | \n",
+ " 18 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 1091 | \n",
+ " 1421761908.512826 | \n",
+ " 13 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 1131 | \n",
+ " 1421761916.713419 | \n",
+ " 20 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 1153 | \n",
+ " 1421761921.229704 | \n",
+ " 21 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 1350 | \n",
+ " 1421761962.174859 | \n",
+ " 15 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 1542 | \n",
+ " 1421762001.590195 | \n",
+ " 17 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 1691 | \n",
+ " 1421762032.199394 | \n",
+ " 19 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 1765 | \n",
+ " 1421762047.397821 | \n",
+ " 9 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 1957 | \n",
+ " 1421762088.369820 | \n",
+ " 21 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 2099 | \n",
+ " 1421762117.516869 | \n",
+ " 8 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 2182 | \n",
+ " 1421762134.551193 | \n",
+ " 23 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 2209 | \n",
+ " 1421762140.101009 | \n",
+ " 10 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 2455 | \n",
+ " 1421762191.278531 | \n",
+ " 21 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 2478 | \n",
+ " 1421762196.022695 | \n",
+ " 16 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 2722 | \n",
+ " 1421762246.169992 | \n",
+ " 19 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 2734 | \n",
+ " 1421762248.634005 | \n",
+ " 21 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 3042 | \n",
+ " 1421762311.874238 | \n",
+ " 10 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 3064 | \n",
+ " 1421762316.560968 | \n",
+ " 9 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 3185 | \n",
+ " 1421762342.293065 | \n",
+ " 22 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 3222 | \n",
+ " 1421762349.889838 | \n",
+ " 10 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 3318 | \n",
+ " 1421762369.740243 | \n",
+ " 10 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 3333 | \n",
+ " 1421762372.892510 | \n",
+ " 10 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 3494 | \n",
+ " 1421762406.232258 | \n",
+ " 8 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 3689 | \n",
+ " 1421762447.771797 | \n",
+ " 9 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 39760 | \n",
+ " 1421770202.098919 | \n",
+ " 14 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 39929 | \n",
+ " 1421770236.857197 | \n",
+ " 22 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 40039 | \n",
+ " 1421770260.878994 | \n",
+ " 22 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 40398 | \n",
+ " 1421770347.170294 | \n",
+ " 12 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 40659 | \n",
+ " 1421770401.425936 | \n",
+ " 8 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 40704 | \n",
+ " 1421770410.677288 | \n",
+ " 20 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 40882 | \n",
+ " 1421770447.286588 | \n",
+ " 15 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 41276 | \n",
+ " 1421770528.785624 | \n",
+ " 12 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 41421 | \n",
+ " 1421770558.624793 | \n",
+ " 16 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 41494 | \n",
+ " 1421770573.778775 | \n",
+ " 22 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 41689 | \n",
+ " 1421770614.039516 | \n",
+ " 15 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 41833 | \n",
+ " 1421770643.752354 | \n",
+ " 17 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42094 | \n",
+ " 1421770697.673096 | \n",
+ " 10 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42119 | \n",
+ " 1421770702.820645 | \n",
+ " 21 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42165 | \n",
+ " 1421770712.292955 | \n",
+ " 18 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42171 | \n",
+ " 1421770713.526885 | \n",
+ " 9 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42216 | \n",
+ " 1421770722.770927 | \n",
+ " 17 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42290 | \n",
+ " 1421770737.986337 | \n",
+ " 17 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42391 | \n",
+ " 1421770758.905166 | \n",
+ " 17 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42440 | \n",
+ " 1421770768.998916 | \n",
+ " 14 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42648 | \n",
+ " 1421770811.776268 | \n",
+ " 19 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42772 | \n",
+ " 1421770837.307423 | \n",
+ " 17 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 42964 | \n",
+ " 1421770877.106153 | \n",
+ " 15 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 43267 | \n",
+ " 1421770939.684446 | \n",
+ " 11 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 43570 | \n",
+ " 1421771013.105688 | \n",
+ " 23 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 43730 | \n",
+ " 1421771046.094241 | \n",
+ " 14 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 43985 | \n",
+ " 1421771098.507878 | \n",
+ " 12 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 44024 | \n",
+ " 1421771106.522134 | \n",
+ " 8 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 44170 | \n",
+ " 1421771136.918078 | \n",
+ " 8 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ " 44359 | \n",
+ " 1421771175.771771 | \n",
+ " 23 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " None | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
377 rows × 7 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " timestamp size url ip icmp_seq ttl \\\n",
+ "12 1421761684.770828 21 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "116 1421761706.146320 9 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "314 1421761748.647974 9 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "508 1421761788.500516 9 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "590 1421761805.331125 18 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "647 1421761817.308839 18 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1087 1421761907.694059 18 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1091 1421761908.512826 13 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1131 1421761916.713419 20 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1153 1421761921.229704 21 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1350 1421761962.174859 15 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1542 1421762001.590195 17 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1691 1421762032.199394 19 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1765 1421762047.397821 9 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1957 1421762088.369820 21 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "2099 1421762117.516869 8 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "2182 1421762134.551193 23 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "2209 1421762140.101009 10 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "2455 1421762191.278531 21 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "2478 1421762196.022695 16 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "2722 1421762246.169992 19 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "2734 1421762248.634005 21 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3042 1421762311.874238 10 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3064 1421762316.560968 9 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3185 1421762342.293065 22 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3222 1421762349.889838 10 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3318 1421762369.740243 10 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3333 1421762372.892510 10 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3494 1421762406.232258 8 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3689 1421762447.771797 9 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "... ... ... ... ... ... .. \n",
+ "39760 1421770202.098919 14 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "39929 1421770236.857197 22 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "40039 1421770260.878994 22 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "40398 1421770347.170294 12 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "40659 1421770401.425936 8 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "40704 1421770410.677288 20 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "40882 1421770447.286588 15 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "41276 1421770528.785624 12 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "41421 1421770558.624793 16 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "41494 1421770573.778775 22 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "41689 1421770614.039516 15 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "41833 1421770643.752354 17 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42094 1421770697.673096 10 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42119 1421770702.820645 21 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42165 1421770712.292955 18 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42171 1421770713.526885 9 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42216 1421770722.770927 17 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42290 1421770737.986337 17 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42391 1421770758.905166 17 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42440 1421770768.998916 14 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42648 1421770811.776268 19 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42772 1421770837.307423 17 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "42964 1421770877.106153 15 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "43267 1421770939.684446 11 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "43570 1421771013.105688 23 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "43730 1421771046.094241 14 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "43985 1421771098.507878 12 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44024 1421771106.522134 8 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44170 1421771136.918078 8 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44359 1421771175.771771 23 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "\n",
+ " time \n",
+ "12 None \n",
+ "116 None \n",
+ "314 None \n",
+ "508 None \n",
+ "590 None \n",
+ "647 None \n",
+ "1087 None \n",
+ "1091 None \n",
+ "1131 None \n",
+ "1153 None \n",
+ "1350 None \n",
+ "1542 None \n",
+ "1691 None \n",
+ "1765 None \n",
+ "1957 None \n",
+ "2099 None \n",
+ "2182 None \n",
+ "2209 None \n",
+ "2455 None \n",
+ "2478 None \n",
+ "2722 None \n",
+ "2734 None \n",
+ "3042 None \n",
+ "3064 None \n",
+ "3185 None \n",
+ "3222 None \n",
+ "3318 None \n",
+ "3333 None \n",
+ "3494 None \n",
+ "3689 None \n",
+ "... ... \n",
+ "39760 None \n",
+ "39929 None \n",
+ "40039 None \n",
+ "40398 None \n",
+ "40659 None \n",
+ "40704 None \n",
+ "40882 None \n",
+ "41276 None \n",
+ "41421 None \n",
+ "41494 None \n",
+ "41689 None \n",
+ "41833 None \n",
+ "42094 None \n",
+ "42119 None \n",
+ "42165 None \n",
+ "42171 None \n",
+ "42216 None \n",
+ "42290 None \n",
+ "42391 None \n",
+ "42440 None \n",
+ "42648 None \n",
+ "42772 None \n",
+ "42964 None \n",
+ "43267 None \n",
+ "43570 None \n",
+ "43730 None \n",
+ "43985 None \n",
+ "44024 None \n",
+ "44170 None \n",
+ "44359 None \n",
+ "\n",
+ "[377 rows x 7 columns]"
+ ]
+ },
+ "execution_count": 15,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "raw_data[raw_data.isnull().any(axis=1)]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " timestamp | \n",
+ " size | \n",
+ " url | \n",
+ " ip | \n",
+ " icmp_seq | \n",
+ " ttl | \n",
+ " time | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " 1421761682.052172 | \n",
+ " 665 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 22.5 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " 1421761682.277315 | \n",
+ " 1373 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 21.2 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " 1421761682.502054 | \n",
+ " 262 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 21.2 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " 1421761682.729257 | \n",
+ " 1107 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 23.3 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " 1421761682.934648 | \n",
+ " 1128 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.41 | \n",
+ "
\n",
+ " \n",
+ " 5 | \n",
+ " 1421761683.160397 | \n",
+ " 489 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 21.9 | \n",
+ "
\n",
+ " \n",
+ " 6 | \n",
+ " 1421761683.443055 | \n",
+ " 1759 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 78.7 | \n",
+ "
\n",
+ " \n",
+ " 7 | \n",
+ " 1421761683.672157 | \n",
+ " 1146 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 25.1 | \n",
+ "
\n",
+ " \n",
+ " 8 | \n",
+ " 1421761683.899933 | \n",
+ " 884 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 24.0 | \n",
+ "
\n",
+ " \n",
+ " 9 | \n",
+ " 1421761684.122687 | \n",
+ " 1422 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 19.5 | \n",
+ "
\n",
+ " \n",
+ " 10 | \n",
+ " 1421761684.344135 | \n",
+ " 1180 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 18.0 | \n",
+ "
\n",
+ " \n",
+ " 11 | \n",
+ " 1421761684.566271 | \n",
+ " 999 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 18.8 | \n",
+ "
\n",
+ " \n",
+ " 13 | \n",
+ " 1421761684.998504 | \n",
+ " 1020 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 24.3 | \n",
+ "
\n",
+ " \n",
+ " 14 | \n",
+ " 1421761685.205172 | \n",
+ " 71 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 3.45 | \n",
+ "
\n",
+ " \n",
+ " 15 | \n",
+ " 1421761685.414106 | \n",
+ " 34 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 5.85 | \n",
+ "
\n",
+ " \n",
+ " 16 | \n",
+ " 1421761685.620117 | \n",
+ " 1843 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.31 | \n",
+ "
\n",
+ " \n",
+ " 17 | \n",
+ " 1421761685.824949 | \n",
+ " 407 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.14 | \n",
+ "
\n",
+ " \n",
+ " 18 | \n",
+ " 1421761686.029177 | \n",
+ " 356 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.10 | \n",
+ "
\n",
+ " \n",
+ " 19 | \n",
+ " 1421761686.234464 | \n",
+ " 1511 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.18 | \n",
+ "
\n",
+ " \n",
+ " 20 | \n",
+ " 1421761686.438772 | \n",
+ " 587 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.27 | \n",
+ "
\n",
+ " \n",
+ " 21 | \n",
+ " 1421761686.643208 | \n",
+ " 809 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.33 | \n",
+ "
\n",
+ " \n",
+ " 22 | \n",
+ " 1421761686.848323 | \n",
+ " 1364 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.51 | \n",
+ "
\n",
+ " \n",
+ " 23 | \n",
+ " 1421761687.053400 | \n",
+ " 1153 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.44 | \n",
+ "
\n",
+ " \n",
+ " 24 | \n",
+ " 1421761687.257704 | \n",
+ " 853 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.30 | \n",
+ "
\n",
+ " \n",
+ " 25 | \n",
+ " 1421761687.463275 | \n",
+ " 1510 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.17 | \n",
+ "
\n",
+ " \n",
+ " 26 | \n",
+ " 1421761687.668423 | \n",
+ " 123 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.21 | \n",
+ "
\n",
+ " \n",
+ " 27 | \n",
+ " 1421761687.874230 | \n",
+ " 1966 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.20 | \n",
+ "
\n",
+ " \n",
+ " 28 | \n",
+ " 1421761688.078667 | \n",
+ " 933 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.34 | \n",
+ "
\n",
+ " \n",
+ " 29 | \n",
+ " 1421761688.283655 | \n",
+ " 922 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.42 | \n",
+ "
\n",
+ " \n",
+ " 30 | \n",
+ " 1421761688.488688 | \n",
+ " 24 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.12 | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 44383 | \n",
+ " 1421771180.743715 | \n",
+ " 1772 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 28.8 | \n",
+ "
\n",
+ " \n",
+ " 44384 | \n",
+ " 1421771180.949053 | \n",
+ " 41 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.14 | \n",
+ "
\n",
+ " \n",
+ " 44385 | \n",
+ " 1421771181.155685 | \n",
+ " 1944 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.32 | \n",
+ "
\n",
+ " \n",
+ " 44386 | \n",
+ " 1421771181.362095 | \n",
+ " 400 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.98 | \n",
+ "
\n",
+ " \n",
+ " 44387 | \n",
+ " 1421771181.569409 | \n",
+ " 226 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 3.01 | \n",
+ "
\n",
+ " \n",
+ " 44388 | \n",
+ " 1421771181.780805 | \n",
+ " 466 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 7.45 | \n",
+ "
\n",
+ " \n",
+ " 44389 | \n",
+ " 1421771181.998869 | \n",
+ " 350 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 13.5 | \n",
+ "
\n",
+ " \n",
+ " 44390 | \n",
+ " 1421771182.248969 | \n",
+ " 1829 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 45.9 | \n",
+ "
\n",
+ " \n",
+ " 44391 | \n",
+ " 1421771182.512386 | \n",
+ " 1954 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 58.5 | \n",
+ "
\n",
+ " \n",
+ " 44392 | \n",
+ " 1421771182.717961 | \n",
+ " 1074 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.45 | \n",
+ "
\n",
+ " \n",
+ " 44393 | \n",
+ " 1421771182.923292 | \n",
+ " 46 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.11 | \n",
+ "
\n",
+ " \n",
+ " 44394 | \n",
+ " 1421771183.129965 | \n",
+ " 1844 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.26 | \n",
+ "
\n",
+ " \n",
+ " 44395 | \n",
+ " 1421771183.335449 | \n",
+ " 645 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.24 | \n",
+ "
\n",
+ " \n",
+ " 44396 | \n",
+ " 1421771183.540901 | \n",
+ " 444 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.25 | \n",
+ "
\n",
+ " \n",
+ " 44397 | \n",
+ " 1421771183.747983 | \n",
+ " 1940 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.46 | \n",
+ "
\n",
+ " \n",
+ " 44398 | \n",
+ " 1421771183.954099 | \n",
+ " 1411 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.47 | \n",
+ "
\n",
+ " \n",
+ " 44399 | \n",
+ " 1421771184.159879 | \n",
+ " 49 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.21 | \n",
+ "
\n",
+ " \n",
+ " 44400 | \n",
+ " 1421771184.365815 | \n",
+ " 420 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.55 | \n",
+ "
\n",
+ " \n",
+ " 44401 | \n",
+ " 1421771184.571516 | \n",
+ " 227 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.22 | \n",
+ "
\n",
+ " \n",
+ " 44402 | \n",
+ " 1421771184.777325 | \n",
+ " 947 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.34 | \n",
+ "
\n",
+ " \n",
+ " 44403 | \n",
+ " 1421771184.983905 | \n",
+ " 1960 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.43 | \n",
+ "
\n",
+ " \n",
+ " 44404 | \n",
+ " 1421771185.188976 | \n",
+ " 531 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.19 | \n",
+ "
\n",
+ " \n",
+ " 44405 | \n",
+ " 1421771185.394275 | \n",
+ " 374 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.14 | \n",
+ "
\n",
+ " \n",
+ " 44406 | \n",
+ " 1421771185.600745 | \n",
+ " 1503 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.19 | \n",
+ "
\n",
+ " \n",
+ " 44407 | \n",
+ " 1421771185.805877 | \n",
+ " 572 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.29 | \n",
+ "
\n",
+ " \n",
+ " 44408 | \n",
+ " 1421771186.011910 | \n",
+ " 1338 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.47 | \n",
+ "
\n",
+ " \n",
+ " 44409 | \n",
+ " 1421771186.222729 | \n",
+ " 1515 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 7.02 | \n",
+ "
\n",
+ " \n",
+ " 44410 | \n",
+ " 1421771186.429007 | \n",
+ " 1875 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 2.33 | \n",
+ "
\n",
+ " \n",
+ " 44411 | \n",
+ " 1421771186.634747 | \n",
+ " 1006 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.61 | \n",
+ "
\n",
+ " \n",
+ " 44412 | \n",
+ " 1421771186.840222 | \n",
+ " 1273 | \n",
+ " lig-publig.imag.fr | \n",
+ " 129.88.11.7 | \n",
+ " 1 | \n",
+ " 6 | \n",
+ " 1.35 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
44036 rows × 7 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " timestamp size url ip icmp_seq ttl \\\n",
+ "0 1421761682.052172 665 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "1 1421761682.277315 1373 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "2 1421761682.502054 262 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "3 1421761682.729257 1107 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "4 1421761682.934648 1128 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "5 1421761683.160397 489 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "6 1421761683.443055 1759 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "7 1421761683.672157 1146 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "8 1421761683.899933 884 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "9 1421761684.122687 1422 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "10 1421761684.344135 1180 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "11 1421761684.566271 999 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "13 1421761684.998504 1020 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "14 1421761685.205172 71 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "15 1421761685.414106 34 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "16 1421761685.620117 1843 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "17 1421761685.824949 407 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "18 1421761686.029177 356 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "19 1421761686.234464 1511 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "20 1421761686.438772 587 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "21 1421761686.643208 809 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "22 1421761686.848323 1364 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "23 1421761687.053400 1153 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "24 1421761687.257704 853 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "25 1421761687.463275 1510 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "26 1421761687.668423 123 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "27 1421761687.874230 1966 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "28 1421761688.078667 933 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "29 1421761688.283655 922 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "30 1421761688.488688 24 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "... ... ... ... ... ... .. \n",
+ "44383 1421771180.743715 1772 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44384 1421771180.949053 41 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44385 1421771181.155685 1944 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44386 1421771181.362095 400 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44387 1421771181.569409 226 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44388 1421771181.780805 466 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44389 1421771181.998869 350 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44390 1421771182.248969 1829 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44391 1421771182.512386 1954 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44392 1421771182.717961 1074 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44393 1421771182.923292 46 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44394 1421771183.129965 1844 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44395 1421771183.335449 645 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44396 1421771183.540901 444 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44397 1421771183.747983 1940 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44398 1421771183.954099 1411 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44399 1421771184.159879 49 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44400 1421771184.365815 420 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44401 1421771184.571516 227 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44402 1421771184.777325 947 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44403 1421771184.983905 1960 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44404 1421771185.188976 531 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44405 1421771185.394275 374 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44406 1421771185.600745 1503 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44407 1421771185.805877 572 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44408 1421771186.011910 1338 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44409 1421771186.222729 1515 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44410 1421771186.429007 1875 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44411 1421771186.634747 1006 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "44412 1421771186.840222 1273 lig-publig.imag.fr 129.88.11.7 1 6 \n",
+ "\n",
+ " time \n",
+ "0 22.5 \n",
+ "1 21.2 \n",
+ "2 21.2 \n",
+ "3 23.3 \n",
+ "4 1.41 \n",
+ "5 21.9 \n",
+ "6 78.7 \n",
+ "7 25.1 \n",
+ "8 24.0 \n",
+ "9 19.5 \n",
+ "10 18.0 \n",
+ "11 18.8 \n",
+ "13 24.3 \n",
+ "14 3.45 \n",
+ "15 5.85 \n",
+ "16 2.31 \n",
+ "17 1.14 \n",
+ "18 1.10 \n",
+ "19 2.18 \n",
+ "20 1.27 \n",
+ "21 1.33 \n",
+ "22 1.51 \n",
+ "23 1.44 \n",
+ "24 1.30 \n",
+ "25 2.17 \n",
+ "26 1.21 \n",
+ "27 2.20 \n",
+ "28 1.34 \n",
+ "29 1.42 \n",
+ "30 1.12 \n",
+ "... ... \n",
+ "44383 28.8 \n",
+ "44384 1.14 \n",
+ "44385 2.32 \n",
+ "44386 1.98 \n",
+ "44387 3.01 \n",
+ "44388 7.45 \n",
+ "44389 13.5 \n",
+ "44390 45.9 \n",
+ "44391 58.5 \n",
+ "44392 1.45 \n",
+ "44393 1.11 \n",
+ "44394 2.26 \n",
+ "44395 1.24 \n",
+ "44396 1.25 \n",
+ "44397 2.46 \n",
+ "44398 1.47 \n",
+ "44399 1.21 \n",
+ "44400 1.55 \n",
+ "44401 1.22 \n",
+ "44402 1.34 \n",
+ "44403 2.43 \n",
+ "44404 1.19 \n",
+ "44405 1.14 \n",
+ "44406 2.19 \n",
+ "44407 1.29 \n",
+ "44408 1.47 \n",
+ "44409 7.02 \n",
+ "44410 2.33 \n",
+ "44411 1.61 \n",
+ "44412 1.35 \n",
+ "\n",
+ "[44036 rows x 7 columns]"
+ ]
+ },
+ "execution_count": 16,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "data = raw_data.dropna().copy()\n",
+ "data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.6.4"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/module3/exo3/exercice.ipynb b/module3/exo3/exercice.ipynb
deleted file mode 100644
index 0bbbe371b01e359e381e43239412d77bf53fb1fb..0000000000000000000000000000000000000000
--- a/module3/exo3/exercice.ipynb
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "cells": [],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.6.3"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
-
diff --git a/module3/exo3/liglab2.log.gz b/module3/exo3/liglab2.log.gz
new file mode 100644
index 0000000000000000000000000000000000000000..67cd38790071d15567564e59af7528c88c8b08ae
Binary files /dev/null and b/module3/exo3/liglab2.log.gz differ
diff --git a/module3/exo3/stackoverflow.log b/module3/exo3/stackoverflow.log
new file mode 100644
index 0000000000000000000000000000000000000000..cce2629a0f75e566eddf238a7995d8007327713d
Binary files /dev/null and b/module3/exo3/stackoverflow.log differ