Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 56cb34de

Přidáno uživatelem horkym před asi 7 roky(ů)

Základní zpracování dat

Vytvoření tříd pro uložení, rozzipování a jednoduché zpracování dat. Po výběru datumu se zobrazí prvních deset řádků z obou souborů (doprava, lokace) do tabulek.

Zobrazit rozdíly:

app/control/control.php
1
<?php
1
<?php
2 2

  
3 3
    require_once "../model/dao/dao.php";
4 4
    require_once "../model/db/db-web.php";
5
    require_once "../model/parser.php";
5 6
    require_once "../model/session.php";
6 7
    
7 8
    $dbh = new DB_WEB();
8 9
    $session = new Session();
9

  
10
    
11
    $traffic = NULL;
12
    $locations = NULL;
13
    if (isSet($_POST["date"])) {
14
        $parser = new Parser();
15
        $parser->doWork(date_format(new DateTime($_POST["date"]), "Ymd"));
16
        $traffic = $parser->getTraffic();
17
        $locations = $parser->getLocations();
18
    }
19
    
10 20
    include "../view/header.php";
11 21
    include "../view/menu.php";
12 22
    
13 23
    if (!isSet($_GET["view"])) {
14
    
15 24
        include "../view/intro.php";
16
        
17 25
    } else {
18
        
19
        include "../view/intro.php";
20
        
26
        include "../view/intro.php"; // TODO
21 27
    }
22 28

  
23 29
    include "../view/footer.php";
app/model/dao/dao.php
1 1
<?php
2 2

  
3
require_once '../model/db/db-web.php';
3
require_once "../model/db/db-web.php";
4 4

  
5 5
class DAO {
6 6
  
app/model/db/db-exception.php
2 2

  
3 3
class DB_Exception extends Exception {
4 4
    
5
    public function __construct($message=false, $code=false) {
5
    public function __construct($message = false, $code = false) {
6 6
        if (!$message) {
7 7
            $this->message = mysql_error();
8 8
        } 
app/model/db/db-pdo.php
1
<?php
1
<?php
2 2

  
3
require_once 'db-exception.php';
3
require_once "db-exception.php";
4 4

  
5 5
class DB_PDO {
6 6
  
app/model/db/db-web.php
1 1
<?php
2 2

  
3
require_once 'db-pdo.php';
3
require_once "db-pdo.php";
4 4

  
5 5
class DB_WEB extends DB_PDO {
6 6
  
......
10 10
    protected $dbname = "data";
11 11
  
12 12
    public function __construct() {
13
    
14 13
    }
15 14
     
16 15
}
app/model/location.php
1
<?php
2

  
3
class Location {
4

  
5
    public $name;
6
    public $town;
7
    public $street;
8
    public $device;
9
    public $area;
10
    
11
    public function __construct($data) {
12
        $this->name = $data[0];
13
        $this->town = $data[1];
14
        $this->street = $data[2];
15
        $this->device = $data[3];
16
        $this->area = $data[4];
17
    }
18
    
19
    public function toString() {
20
        return "<td>".$this->name."</td>"."<td>".$this->town."</td>"."<td>".$this->street."</td>".
21
               "<td>".$this->device."</td>"."<td>".$this->area."</td>";
22
    }
23
}
24

  
25
?>
app/model/parser.php
1
<?php
2

  
3
require_once "traffic.php";
4
require_once "location.php";
5

  
6
class Parser {
7

  
8
    private $name;
9
    private $path;
10
    
11
    private $traffic;
12
    private $locations;
13
    
14
    public function __construct() {
15
        $this->name = "DOPR_D_";
16
        $this->path = "http://doprava.plzensky-kraj.cz/opendata/doprava/den/".$this->name;
17
        $this->traffic = NULL;
18
        $this->locations = NULL;
19
    }
20
    
21
    public function doWork($date) {
22
        $zipUrl = $this->path.$date.".zip";
23
        $dir = "../../download/$date/";
24
        $downloaded = $dir."downloaded.zip";
25
        
26
        $result = $this->download($date, $zipUrl, $dir, $downloaded);
27
        if ($result == -1 || $result == 0 || $result == 1) {
28
            
29
            $ok = -1;
30
            if ($result == 0 && $this->extract($dir, $downloaded) == 0) {
31
                unlink($downloaded);
32
                $ok = 0;
33
            }
34
            
35
            if ($ok == 0 || $result == 1) {
36
                $this->traffic = $this->parse($dir.$this->name.$date.".csv", TRUE);
37
                $this->locations = $this->parse($dir."Locations.csv", FALSE);
38
                return;
39
            }
40
            
41
            $this->deleteDir($dir);
42
            
43
        }
44
    }
45
    
46
    private function parse($fileName, $traffic) {
47
        $counter = 0; // TODO
48
        
49
        $array = array();
50
        if (($file = fopen($fileName, "r"))) {
51
            while (($row = fgetcsv($file, 1000, "|")) && $counter++ < 10) {
52
                if ($traffic) {
53
                    $array[] = new Traffic($row);
54
                } else {
55
                    $array[] = new Location($row);
56
                }
57
            }
58
            fclose($file);
59
        }
60
        return $array;
61
    }
62
    
63
    private function download($date, $zipUrl, $dir, $downloaded) {
64
        if (strpos(get_headers($zipUrl, 1)[0], "404") === FALSE) {
65
            if (!file_exists($dir)) {
66
                if (mkdir($dir)) {
67
                    if (copy($zipUrl, $downloaded)) {
68
                        // Stazeni probehlo v poradku.
69
                        return 0;
70
                    } else {
71
                        // Nepovedlo se stazeni zip souboru.
72
                        return -1;
73
                    }
74
                } else {
75
                    // Nepodarilo se vytvorit slozku pro data.
76
                    return -2;
77
                }
78
            } else {
79
                // Data k vybranemu dni jiz byla stazena.
80
                return 1;
81
            }
82
        } else {
83
            // Pro dany datum neexistuji data.
84
            return -3;
85
        }
86
    }
87
    
88
    private function extract($dir, $downloaded) {
89
        $zip = new ZipArchive();
90
        if ($zip->open($downloaded, ZIPARCHIVE::CREATE) === TRUE) {
91
            $zip->extractTo($dir);
92
            $zip->close();
93
            // Extrahovani v poradku dokonceno.
94
            return 0;
95
        } else {
96
            // Nepovedlo se extrahovani obsahu zipu.
97
            return -1;
98
        }
99
    }
100
    
101
    private function deleteDir($path) {
102
        if (is_dir($path)) {
103
            $files = scandir($path);
104
            foreach ($files as $file) {
105
                if ($file != "." && $file != "..") {
106
                    $path_ = $path."/".$file;
107
                    if (filetype($path_) == "dir") {
108
                        $this->deleteDir($path_);
109
                    } else {
110
                        unlink($path_);
111
                    }
112
                }
113
            }
114
            reset($files);
115
            rmdir($path);
116
        }
117
    }
118
    
119
    public function getTraffic() {
120
        return $this->traffic;
121
    }
122
    
123
    public function getLocations() {
124
        return $this->locations;
125
    }
126
    
127
}
128

  
129
?>
app/model/session.php
1 1
<?php
2 2

  
3
    class Session {
3
class Session {
4 4
    
5
        public function __construct() {
6
            ob_start();
7
            session_start();
8
        }
9
        
10
        public function create($nazev, $vloz) {
11
            $_SESSION[$nazev] = $vloz;
12
        }
13
        
14
        public function delete($nazev) {
15
            unSet($_SESSION[$nazev]);
16
        }
17
        
5
    public function __construct() {
6
        ob_start();
7
        session_start();
18 8
    }
9
    
10
    public function create($name, $value) {
11
        $_SESSION[$name] = $value;
12
    }
13
    
14
    public function delete($name) {
15
        unSet($_SESSION[$name]);
16
    }
17
    
18
}
19 19

  
20 20
?>
app/model/traffic.php
1
<?php
2

  
3
class Traffic {
4

  
5
    public $detector;
6
    public $dateTime;
7
    public $intensity;
8
    public $intensityN;
9
    public $occupancy;
10
    public $speed;
11
    public $state;
12
    public $type;
13
    public $duration;
14
    public $history;
15
    public $type10;
16
    
17
    public function __construct($data) {
18
        $this->detector = $data[0];
19
        $this->dateTime = $data[1];
20
        $this->intensity = $data[2];
21
        $this->intensityN = $data[3];
22
        $this->occupancy = $data[4];
23
        $this->speed = $data[5];
24
        $this->state = $data[6];
25
        $this->type = $data[7];
26
        $this->duration = $data[8];
27
        $this->history = $data[9];
28
        $this->type10 = $data[10];
29
    }
30
    
31
    public function toString() {
32
        return "<td>".$this->detector."</td>"."<td>".$this->dateTime."</td>"."<td>".$this->intensity."</td>".
33
               "<td>".$this->intensityN."</td>"."<td>".$this->occupancy."</td>"."<td>".$this->speed."</td>".
34
               "<td>".$this->state."</td>"."<td>".$this->type."</td>"."<td>".$this->duration."</td>".
35
               "<td>".$this->history."</td>"."<td>".$this->type10."</td>";
36
    }
37
}
38

  
39
?>
app/view/footer.php
1
              </div>
2
          </div>
3
          <div>
4
              &copy; ASWI team 2018   
5
          </div>
6
      </div>
7
  </body>
1
                </div>
2
            </div>
3
            <div>
4
                &copy; ASWI team 2018   
5
            </div>
6
        </div>
7
    </body>
8 8
  
9 9
</html>
app/view/header.php
1
<!DOCTYPE html>
1
<!DOCTYPE html>
2 2
<html lang='cs'>
3
  
4
  <head>
5
    <title>Průjezd vozidel - Plzeňský kraj</title>
6
    <meta charset='utf-8'>
7
    <meta name='description' content=''>
8
    <meta name='keywords' content=''>
9
    <meta name='robots' content='all'>
10
  </head>
11 3

  
12
  <body>
13
      <div>
14
          <h1>Zobrazení dat o průjezdu vozidel pro Plzeňský kraj</h1>
4
    <head>
5
        <title>Průjezd vozidel - Plzeňský kraj</title>
6
        <meta charset="utf-8" />
7
        <meta name="description" content="" />
8
        <meta name="keywords" content="" />
9
        <meta name="robots" content="all" />
10
        <link rel="stylesheet" href="../../css/main.css" type="text/css" />
11
    </head>
12
    
13
    <body>
14
        <div>
15
            <h1>Zobrazení dat o průjezdu vozidel pro Plzeňský kraj</h1>
15 16
    
app/view/intro.php
1
<h3>Úvodní strana</h3>
2
<p>Vítáme Vás ...</p>
1
<form action="control.php" method="post" id="dateSelector">
2
    <fieldset>
3
        <div>Vyberte datum:</div>
4
        <input type="date" name="date" max="<?php echo date("Y-m-d", strtotime("-1 day")); ?>" />
5
        <input type="submit" value="Zobrazit" />
6
    </fieldset>
7
</form>
8

  
9
<table>
10
    <tr>
11
        <th>Detektor</th>
12
        <th>Datum a čas</th>
13
        <th>Intenzita</th>
14
        <th>Intenzita "N"</th>
15
        <th>Obsazenost</th>
16
        <th>Rychlost</th>
17
        <th>Stav</th>
18
        <th>Typ vozidla</th>
19
        <th>Trvání v setinách</th>
20
        <th>Rychlost (historie)</th>
21
        <th>Typ vozidla "10"</th>
22
    </tr>
23
    
24
    <?php
25
        for ($i = 0; $i < count($traffic); $i++) {
26
            echo "<tr>".$traffic[$i]->toString()."</tr>";
27
        }
28
    ?>
29
    
30
</table>
31

  
32
<table>
33
    <tr>
34
        <th>Název</th>
35
        <th>Město</th>
36
        <th>Ulice</th>
37
        <th>Zařízení</th>
38
        <th>Oblast</th>
39
    </tr>
40
    
41
    <?php
42
        for ($i = 0; $i < count($locations); $i++) {
43
            echo "<tr>".$locations[$i]->toString()."</tr>";
44
        }
45
    ?>
46
    
47
</table>
css/main.css
1
/* FORMULAR */
2

  
3
#dateSelector {
4
    width: 300px;
5
    margin: 20px auto;
6
}
7

  
8
#dateSelector fieldset {
9
    padding-top: 10px;
10
}
11

  
12
#dateSelector div {
13
    float: left;
14
}
15

  
16
#dateSelector input[type=date] {
17
    float: right;
18
}
19

  
20
#dateSelector input[type=submit] {
21
    clear: both;
22
    float: right;
23
    margin-top: 5px;
24
}
25

  
26
/* TABULKY */
27

  
28
table {
29
    width: 100%;
30
    border-collapse: collapse;
31
    margin-bottom: 20px;
32
}
33

  
34
td, th {
35
    border: 1px solid grey;
36
    padding: 5px;
37
}
38

  
39
th {
40
    color: white;
41
    text-align: center;
42
    background-color: #FF7007;
43
    padding: 10px;
44
}
45

  
46
tr:nth-child(even) {
47
    background-color: #FFBC33;
48
}
49

  
50
tr:hover {
51
    background-color: #FFCE6A;
52
}
download/20180316/DOPR_D_20180316.csv
1
10107102|"2018-03-16 00:00:00.910"|1|1.00|100.00|0.00|0|2|1|""|2
2
10118102|"2018-03-16 00:00:00.130"|1|1.00|100.00|0.00|0|2|5|""|2
3
10192201|"2018-03-16 00:00:00.300"|1|1.00|100.00|50.00|0|2|0|""|2
4
10193101|"2018-03-16 00:00:00.456"|1|3.00|100.00|30.00|0|4|34|"0,30;1,37;2,38;3,38;4,38;5,38;6,39;7,39;8,39;9,39;10,40;"|8
5
10193102|"2018-03-16 00:00:00.756"|1|1.00|100.00|35.00|0|2|5|""|2
6
10193201|"2018-03-16 00:00:00.539"|1|1.00|100.00|37.00|0|2|0|""|2
7
10095102|"2018-03-16 00:00:01.867"|1|1.00|100.00|42.00|0|2|5|""|2
8
10118002|"2018-03-16 00:00:01.904"|1|1.00|100.00|60.00|0|2|0|""|2
9
10107002|"2018-03-16 00:00:02.927"|1|1.00|100.00|87.00|0|2|0|""|2
10
10125001|"2018-03-16 00:00:02.426"|1|1.00|100.00|56.00|0|2|0|""|2
11
10125101|"2018-03-16 00:00:02.391"|1|1.00|100.00|55.00|0|2|15|"0,55;1,57;2,57;3,57;"|2
12
10125201|"2018-03-16 00:00:02.885"|1|1.00|100.00|57.00|0|2|0|""|2
13
10193001|"2018-03-16 00:00:02.204"|1|1.00|100.00|34.00|0|2|0|""|2
14
10095002|"2018-03-16 00:00:03.643"|1|1.00|100.00|71.00|0|2|0|""|2
15
10205001|"2018-03-16 00:00:04.485"|1|1.00|100.00|56.00|0|2|0|""|2
16
10080102|"2018-03-16 00:00:05.201"|1|1.00|100.00|0.00|0|2|7|""|2
17
10193002|"2018-03-16 00:00:05.567"|1|1.00|100.00|53.00|0|2|0|""|2
18
10105102|"2018-03-16 00:00:06.259"|1|3.00|100.00|42.00|0|4|15|""|8
19
10080002|"2018-03-16 00:00:07.106"|1|1.00|100.00|59.00|0|2|0|""|2
20
10107002|"2018-03-16 00:00:07.927"|1|1.00|100.00|87.00|0|2|0|""|2
21
10193001|"2018-03-16 00:00:07.204"|1|1.00|100.00|34.00|0|2|0|""|2
22
10095002|"2018-03-16 00:00:08.643"|1|1.00|100.00|71.00|0|2|0|""|2
23
10200201|"2018-03-16 00:00:08.428"|1|1.00|100.00|50.00|0|2|0|""|2
24
10205001|"2018-03-16 00:00:08.240"|1|1.00|100.00|54.00|0|2|0|""|2
25
10105002|"2018-03-16 00:00:09.250"|1|1.00|100.00|43.00|0|2|0|""|2
26
10193002|"2018-03-16 00:00:09.080"|1|1.00|100.00|57.00|0|2|0|""|2
27
10200102|"2018-03-16 00:00:09.832"|1|1.00|100.00|47.00|0|2|5|""|2
28
10205101|"2018-03-16 00:00:10.902"|1|1.00|100.00|50.00|0|2|10|"0,50;1,54;2,55;3,55;4,55;5,56;6,56;7,56;8,57;9,57;10,58;"|2
29
10193002|"2018-03-16 00:00:11.444"|1|1.00|100.00|59.00|0|2|0|""|2
30
10200002|"2018-03-16 00:00:11.811"|1|1.00|100.00|53.00|0|2|0|""|2
31
10200201|"2018-03-16 00:00:11.428"|1|1.00|100.00|50.00|0|2|0|""|2
32
10080002|"2018-03-16 00:00:12.106"|1|1.00|100.00|59.00|0|2|0|""|2
33
10107002|"2018-03-16 00:00:12.927"|1|1.00|100.00|87.00|0|2|0|""|2
34
10193001|"2018-03-16 00:00:12.204"|1|1.00|100.00|34.00|0|2|0|""|2
35
10093001|"2018-03-16 00:00:13.168"|1|1.00|100.00|47.00|0|2|0|""|2
36
10205001|"2018-03-16 00:00:13.240"|1|1.00|100.00|54.00|0|2|0|""|2
37
10080002|"2018-03-16 00:00:17.106"|1|1.00|100.00|59.00|0|2|0|""|2
38
10104101|"2018-03-16 00:00:17.339"|1|3.00|100.00|46.00|0|4|14|""|8
39
10193001|"2018-03-16 00:00:17.204"|1|1.00|100.00|34.00|0|2|0|""|2
40
10192001|"2018-03-16 00:00:18.480"|1|1.00|100.00|57.00|0|2|0|""|2
41
10086001|"2018-03-16 00:00:20.574"|1|1.00|100.00|57.00|0|2|0|""|2
42
10200001|"2018-03-16 00:00:21.554"|1|1.00|100.00|51.00|0|2|0|""|2
43
10072101|"2018-03-16 00:00:22.894"|1|3.00|100.00|48.00|0|4|12|"0,48;1,48;2,48;3,47;4,47;"|8
44
10072001|"2018-03-16 00:00:23.121"|1|1.00|100.00|49.00|0|2|0|""|2
45
10192001|"2018-03-16 00:00:23.480"|1|1.00|100.00|57.00|0|2|0|""|2
46
10196201|"2018-03-16 00:00:23.842"|1|1.00|100.00|50.00|0|2|0|""|2
47
10206201|"2018-03-16 00:00:23.748"|1|1.00|100.00|100.00|0|2|0|""|2
48
10055101|"2018-03-16 00:00:25.146"|1|3.00|100.00|0.00|0|4|12|""|8
49
10086001|"2018-03-16 00:00:25.574"|1|1.00|100.00|57.00|0|2|0|""|2
50
10200101|"2018-03-16 00:00:25.632"|1|1.00|100.00|50.00|0|2|13|"0,50;1,52;2,52;3,52;4,51;5,51;6,50;7,50;8,51;"|2
51
10103102|"2018-03-16 00:00:26.154"|1|1.00|100.00|40.00|0|2|6|""|2
52
10123001|"2018-03-16 00:00:26.806"|1|1.00|100.00|67.00|0|2|0|""|2
53
10200001|"2018-03-16 00:00:26.554"|1|1.00|100.00|51.00|0|2|0|""|2
54
10082001|"2018-03-16 00:00:28.029"|1|1.00|100.00|46.00|0|2|0|""|2
55
10082101|"2018-03-16 00:00:28.251"|1|1.00|100.00|47.00|0|2|10|"0,47;1,50;"|2
56
10192001|"2018-03-16 00:00:28.480"|1|1.00|100.00|57.00|0|2|0|""|2
57
10206001|"2018-03-16 00:00:28.359"|1|1.00|100.00|80.00|0|2|0|""|2
58
10082201|"2018-03-16 00:00:29.041"|1|1.00|100.00|49.00|0|2|0|""|2
59
10103002|"2018-03-16 00:00:29.242"|1|1.00|100.00|50.00|0|2|0|""|2
60
10192201|"2018-03-16 00:00:29.497"|1|1.00|100.00|57.00|0|2|0|""|2
61
10206101|"2018-03-16 00:00:29.618"|1|1.00|100.00|74.00|0|2|6|"0,74;1,81;2,86;3,90;4,93;5,95;6,97;7,100;8,107;9,107;10,110;"|2
62
10206201|"2018-03-16 00:00:29.468"|1|1.00|100.00|81.00|0|2|0|""|2
63
10086001|"2018-03-16 00:00:30.574"|1|1.00|100.00|57.00|0|2|0|""|2
64
10086101|"2018-03-16 00:00:30.912"|1|1.00|100.00|50.00|0|2|14|"0,50;1,54;2,56;3,57;4,58;5,58;6,58;7,59;8,59;9,58;10,58;"|2
65
10192101|"2018-03-16 00:00:30.176"|1|1.00|100.00|54.00|0|2|8|"0,54;1,56;2,57;3,57;4,57;5,57;6,57;7,58;8,58;9,58;10,58;"|2
66
10086201|"2018-03-16 00:00:31.428"|1|1.00|100.00|52.00|0|2|0|""|2
67
10123001|"2018-03-16 00:00:31.806"|1|1.00|100.00|67.00|0|2|0|""|2
68
10200001|"2018-03-16 00:00:31.554"|1|1.00|100.00|51.00|0|2|0|""|2
69
10192201|"2018-03-16 00:00:32.177"|1|1.00|100.00|54.00|0|2|0|""|2
70
10062001|"2018-03-16 00:00:33.746"|1|1.00|100.00|41.00|0|2|0|""|2
71
10109101|"2018-03-16 00:00:33.830"|1|1.00|100.00|0.00|0|2|9|""|2
72
10109201|"2018-03-16 00:00:33.055"|1|1.00|100.00|50.00|0|2|0|""|2
73
10109201|"2018-03-16 00:00:33.761"|1|1.00|100.00|50.00|0|2|0|""|2
74
10103002|"2018-03-16 00:00:34.242"|1|1.00|100.00|50.00|0|2|0|""|2
75
10204102|"2018-03-16 00:00:34.190"|1|1.00|100.00|41.00|0|2|8|""|2
76
10205102|"2018-03-16 00:00:34.744"|1|1.00|100.00|45.00|0|2|6|""|2
77
10086001|"2018-03-16 00:00:35.574"|1|1.00|100.00|57.00|0|2|0|""|2
78
10123101|"2018-03-16 00:00:35.168"|1|3.00|100.00|61.00|0|4|12|"0,61;1,64;2,65;3,66;4,67;5,68;6,69;7,69;8,70;9,71;10,72;"|8
79
10123001|"2018-03-16 00:00:36.806"|1|1.00|100.00|67.00|0|2|0|""|2
80
10205002|"2018-03-16 00:00:36.362"|1|1.00|100.00|50.00|0|2|0|""|2
81
10204002|"2018-03-16 00:00:37.700"|1|1.00|100.00|96.00|0|2|0|""|2
82
10062001|"2018-03-16 00:00:38.746"|1|1.00|100.00|41.00|0|2|0|""|2
83
10109102|"2018-03-16 00:00:38.780"|1|1.00|100.00|0.00|0|2|4|""|2
84
10196201|"2018-03-16 00:00:38.523"|1|1.00|100.00|50.00|0|2|0|""|2
85
10103002|"2018-03-16 00:00:39.242"|1|1.00|100.00|50.00|0|2|0|""|2
86
10206201|"2018-03-16 00:00:39.148"|1|1.00|100.00|50.00|0|2|0|""|2
87
10194001|"2018-03-16 00:00:40.186"|1|1.00|100.00|55.00|0|2|0|""|2
88
10085101|"2018-03-16 00:00:41.192"|1|1.00|100.00|0.00|0|2|1|""|2
89
10205002|"2018-03-16 00:00:41.362"|1|1.00|100.00|50.00|0|2|0|""|2
90
10062201|"2018-03-16 00:00:42.337"|1|1.00|100.00|36.00|0|2|0|""|2
91
10194101|"2018-03-16 00:00:42.412"|1|1.00|100.00|53.00|0|2|10|"0,53;1,55;2,56;3,56;4,57;5,58;6,60;7,63;8,68;"|2
92
10194201|"2018-03-16 00:00:42.552"|1|1.00|100.00|56.00|0|2|0|""|2
93
10204002|"2018-03-16 00:00:42.700"|1|1.00|100.00|96.00|0|2|0|""|2
94
10062001|"2018-03-16 00:00:43.746"|1|1.00|100.00|41.00|0|2|0|""|2
95
10062101|"2018-03-16 00:00:43.556"|1|1.00|100.00|26.00|0|2|1|"0,26;1,29;2,35;3,39;4,42;5,42;6,43;7,43;8,44;9,47;10,48;"|2
96
10103002|"2018-03-16 00:00:44.242"|1|1.00|100.00|50.00|0|2|0|""|2
97
10194001|"2018-03-16 00:00:45.186"|1|1.00|100.00|55.00|0|2|0|""|2
98
10059102|"2018-03-16 00:00:47.781"|1|1.00|100.00|44.00|0|2|4|""|2
99
10205102|"2018-03-16 00:00:47.682"|1|1.00|100.00|0.00|0|2|4|""|2
100
10108102|"2018-03-16 00:00:48.122"|1|1.00|100.00|34.00|0|2|4|""|2
101
10205002|"2018-03-16 00:00:49.481"|1|1.00|100.00|59.00|0|2|0|""|2
102
10059002|"2018-03-16 00:00:51.936"|1|1.00|100.00|74.00|0|2|0|""|2
103
10200201|"2018-03-16 00:00:51.065"|1|1.00|100.00|50.00|0|2|0|""|2
104
10205102|"2018-03-16 00:00:51.232"|1|3.00|100.00|0.00|0|4|15|""|8
105
10055101|"2018-03-16 00:00:52.112"|1|1.00|100.00|0.00|0|2|9|""|2
106
10051001|"2018-03-16 00:00:53.897"|1|1.00|100.00|50.00|0|2|0|""|2
107
10051201|"2018-03-16 00:00:55.363"|1|1.00|100.00|51.00|0|2|0|""|2
108
10094001|"2018-03-16 00:00:55.017"|1|1.00|100.00|51.00|0|2|0|""|2
109
10205002|"2018-03-16 00:00:56.989"|1|1.00|100.00|65.00|0|2|0|""|2
110
10051101|"2018-03-16 00:00:57.660"|1|1.00|100.00|47.00|0|2|1|"0,47;1,48;2,49;3,50;4,50;5,50;6,49;7,49;8,49;9,51;"|2
111
10096002|"2018-03-16 00:00:59.724"|1|1.00|100.00|36.00|0|2|0|""|2
112
10103001|"2018-03-16 00:00:59.248"|1|1.00|100.00|54.00|0|2|0|""|2
113
10094001|"2018-03-16 00:01:00.017"|1|1.00|100.00|51.00|0|2|0|""|2
114
10206102|"2018-03-16 00:01:00.676"|1|1.00|100.00|72.00|0|2|12|""|2
115
10103001|"2018-03-16 00:01:01.006"|1|1.00|100.00|73.00|0|2|0|""|2
116
10205002|"2018-03-16 00:01:01.989"|1|1.00|100.00|65.00|0|2|0|""|2
117
10055101|"2018-03-16 00:01:02.562"|1|1.00|100.00|0.00|0|2|5|""|2
118
10192102|"2018-03-16 00:01:03.327"|1|1.00|100.00|52.00|0|2|6|""|2
119
10206002|"2018-03-16 00:01:03.858"|1|1.00|100.00|71.00|0|2|0|""|2
120
10096002|"2018-03-16 00:01:04.724"|1|1.00|100.00|36.00|0|2|0|""|2
121
10103101|"2018-03-16 00:01:04.905"|1|1.00|100.00|83.00|0|2|8|"0,83;1,90;2,86;3,78;4,73;5,65;6,58;7,54;"|2
122
10192102|"2018-03-16 00:01:04.727"|1|3.00|100.00|0.00|0|4|26|""|8
123
10194102|"2018-03-16 00:01:04.712"|1|1.00|100.00|48.00|0|2|8|""|2
124
10094001|"2018-03-16 00:01:05.017"|1|1.00|100.00|51.00|0|2|0|""|2
125
10103001|"2018-03-16 00:01:06.006"|1|1.00|100.00|73.00|0|2|0|""|2
126
10199102|"2018-03-16 00:01:06.828"|1|1.00|100.00|48.00|0|2|7|""|2
127
10072001|"2018-03-16 00:01:07.507"|1|1.00|100.00|53.00|0|2|0|""|2
128
10103101|"2018-03-16 00:01:07.394"|1|1.00|100.00|50.00|0|2|13|"0,50;1,54;2,77;3,90;4,88;5,84;6,76;7,72;8,63;9,54;10,54;"|2
129
10194002|"2018-03-16 00:01:07.568"|1|1.00|100.00|62.00|0|2|0|""|2
130
10072101|"2018-03-16 00:01:08.371"|1|3.00|100.00|52.00|0|4|10|"0,52;1,53;2,54;3,55;4,55;"|8
131
10199002|"2018-03-16 00:01:08.961"|1|1.00|100.00|53.00|0|2|0|""|2
132
10206002|"2018-03-16 00:01:08.227"|1|1.00|100.00|71.00|0|2|0|""|2
133
10192002|"2018-03-16 00:01:09.855"|1|1.00|100.00|56.00|0|2|0|""|2
134
10195102|"2018-03-16 00:01:09.007"|1|3.00|100.00|0.00|0|4|14|""|8
135
10131001|"2018-03-16 00:01:10.914"|1|1.00|100.00|50.00|0|2|0|""|2
136
10094001|"2018-03-16 00:01:11.268"|1|1.00|100.00|45.00|0|2|0|""|2
137
10103001|"2018-03-16 00:01:11.006"|1|1.00|100.00|73.00|0|2|0|""|2
138
10131101|"2018-03-16 00:01:11.907"|1|1.00|100.00|47.00|0|2|10|"0,47;1,51;2,52;3,55;4,56;"|2
139
10131201|"2018-03-16 00:01:11.344"|1|1.00|100.00|52.00|0|2|0|""|2
140
10118102|"2018-03-16 00:01:12.208"|1|1.00|100.00|0.00|0|2|4|""|2
141
10192201|"2018-03-16 00:01:12.499"|1|1.00|100.00|50.00|0|2|0|""|2
142
10192201|"2018-03-16 00:01:12.899"|1|1.00|100.00|50.00|0|2|0|""|2
143
10194002|"2018-03-16 00:01:12.568"|1|1.00|100.00|62.00|0|2|0|""|2
144
10195002|"2018-03-16 00:01:12.083"|1|1.00|100.00|50.00|0|2|0|""|2
145
10206002|"2018-03-16 00:01:12.597"|1|1.00|100.00|82.00|0|2|0|""|2
146
10118002|"2018-03-16 00:01:13.779"|1|1.00|100.00|65.00|0|2|0|""|2
147
10199002|"2018-03-16 00:01:13.961"|1|1.00|100.00|53.00|0|2|0|""|2
148
10094201|"2018-03-16 00:01:14.753"|1|1.00|100.00|45.00|0|2|0|""|2
149
10192002|"2018-03-16 00:01:14.345"|1|1.00|100.00|61.00|0|2|0|""|2
150
10094101|"2018-03-16 00:01:15.104"|1|1.00|100.00|44.00|0|2|16|"0,44;1,45;2,45;3,44;4,44;5,44;6,44;7,43;8,44;9,44;10,45;"|2
151
10191001|"2018-03-16 00:01:15.651"|1|1.00|100.00|48.00|0|2|0|""|2
152
10094001|"2018-03-16 00:01:16.268"|1|1.00|100.00|45.00|0|2|0|""|2
153
10194102|"2018-03-16 00:01:16.704"|1|3.00|100.00|0.00|0|4|16|""|8
154
10206002|"2018-03-16 00:01:16.889"|1|1.00|100.00|82.00|0|2|0|""|2
155
10229201|"2018-03-16 00:01:16.829"|1|1.00|100.00|46.00|0|2|0|""|2
156
10094101|"2018-03-16 00:01:17.804"|1|1.00|100.00|42.00|0|2|2|"0,42;1,42;2,44;3,45;4,45;5,45;6,44;7,44;8,44;9,43;10,43;"|2
157
10118002|"2018-03-16 00:01:17.149"|1|1.00|100.00|72.00|0|2|0|""|2
158
10195002|"2018-03-16 00:01:17.083"|1|1.00|100.00|50.00|0|2|0|""|2
159
10229001|"2018-03-16 00:01:17.255"|1|1.00|100.00|46.00|0|2|0|""|2
160
10191001|"2018-03-16 00:01:20.651"|1|1.00|100.00|48.00|0|2|0|""|2
161
10192002|"2018-03-16 00:01:20.014"|1|1.00|100.00|61.00|0|2|0|""|2
162
10194002|"2018-03-16 00:01:20.691"|1|1.00|100.00|51.00|0|2|0|""|2
163
10094001|"2018-03-16 00:01:21.268"|1|1.00|100.00|45.00|0|2|0|""|2
164
10117001|"2018-03-16 00:01:21.687"|1|1.00|100.00|52.00|0|2|0|""|2
165
10206002|"2018-03-16 00:01:21.182"|1|1.00|100.00|82.00|0|2|0|""|2
166
10191101|"2018-03-16 00:01:22.020"|1|1.00|100.00|45.00|0|2|12|"0,45;1,48;2,48;3,48;4,48;5,49;6,50;7,51;8,52;9,53;10,54;"|2
167
10195002|"2018-03-16 00:01:22.083"|1|1.00|100.00|50.00|0|2|0|""|2
168
10117101|"2018-03-16 00:01:23.980"|1|3.00|100.00|48.00|0|4|19|"0,48;1,51;2,52;3,52;4,51;5,50;6,49;7,48;8,48;9,51;"|8
169
10199102|"2018-03-16 00:01:23.616"|1|1.00|100.00|0.00|0|2|5|""|2
170
10206102|"2018-03-16 00:01:23.315"|1|1.00|100.00|0.00|0|2|3|""|2
171
10191001|"2018-03-16 00:01:25.651"|1|1.00|100.00|48.00|0|2|0|""|2
172
10192002|"2018-03-16 00:01:25.683"|1|1.00|100.00|61.00|0|2|0|""|2
173
10199002|"2018-03-16 00:01:25.720"|1|1.00|100.00|67.00|0|2|0|""|2
174
10206002|"2018-03-16 00:01:25.475"|1|1.00|100.00|69.00|0|2|0|""|2
175
10051001|"2018-03-16 00:01:26.774"|1|1.00|100.00|46.00|0|2|0|""|2
176
10109102|"2018-03-16 00:01:26.931"|1|1.00|100.00|0.00|0|2|14|""|2
177
10105001|"2018-03-16 00:01:27.255"|1|1.00|100.00|53.00|0|2|0|""|2
178
10105101|"2018-03-16 00:01:27.293"|1|1.00|100.00|53.00|0|2|3|"0,53;1,53;2,54;3,54;4,54;"|2
179
10105201|"2018-03-16 00:01:27.659"|1|1.00|100.00|53.00|0|2|0|""|2
180
10194002|"2018-03-16 00:01:27.436"|1|1.00|100.00|61.00|0|2|0|""|2
181
10086102|"2018-03-16 00:01:28.090"|1|1.00|100.00|46.00|0|2|3|""|2
182
10105101|"2018-03-16 00:01:28.643"|1|1.00|100.00|49.00|0|2|5|"0,49;1,52;2,53;3,53;4,53;5,53;"|2
183
10109102|"2018-03-16 00:01:29.481"|1|1.00|100.00|0.00|0|2|5|""|2
184
10192201|"2018-03-16 00:01:29.460"|1|1.00|100.00|50.00|0|2|0|""|2
185
10194002|"2018-03-16 00:01:29.818"|1|1.00|100.00|66.00|0|2|0|""|2
186
10051101|"2018-03-16 00:01:30.906"|1|1.00|100.00|46.00|0|2|1|"0,46;1,47;2,48;3,48;4,49;5,49;6,48;7,48;8,48;9,48;"|2
187
10086002|"2018-03-16 00:01:30.697"|1|1.00|100.00|63.00|0|2|0|""|2
188
10199002|"2018-03-16 00:01:30.720"|1|1.00|100.00|67.00|0|2|0|""|2
189
10051001|"2018-03-16 00:01:31.774"|1|1.00|100.00|46.00|0|2|0|""|2
190
10205102|"2018-03-16 00:01:31.188"|1|1.00|100.00|0.00|0|2|4|""|2
191
10131001|"2018-03-16 00:01:32.786"|1|1.00|100.00|49.00|0|2|0|""|2
192
10205002|"2018-03-16 00:01:33.483"|1|1.00|100.00|85.00|0|2|0|""|2
193
10112001|"2018-03-16 00:01:34.962"|1|1.00|100.00|68.00|0|2|0|""|2
194
10086002|"2018-03-16 00:01:35.758"|1|1.00|100.00|63.00|0|2|0|""|2
195
10112101|"2018-03-16 00:01:35.149"|1|1.00|100.00|66.00|0|2|16|"0,66;1,74;2,77;3,79;4,78;"|2
196
10112201|"2018-03-16 00:01:35.606"|1|1.00|100.00|72.00|0|2|0|""|2
197
10131101|"2018-03-16 00:01:35.207"|1|1.00|100.00|42.00|0|2|28|"0,42;1,48;2,48;3,48;4,49;"|2
198
10131201|"2018-03-16 00:01:35.192"|1|1.00|100.00|49.00|0|2|0|""|2
199
10051001|"2018-03-16 00:01:36.774"|1|1.00|100.00|46.00|0|2|0|""|2
200
10051101|"2018-03-16 00:01:36.806"|1|1.00|100.00|41.00|0|2|1|"0,41;1,43;2,43;3,44;4,45;5,46;6,46;7,47;8,47;9,48;10,48;"|2
201
10096001|"2018-03-16 00:01:36.477"|1|1.00|100.00|43.00|0|2|0|""|2
202
10117102|"2018-03-16 00:01:36.080"|1|3.00|100.00|47.00|0|4|13|""|8
203
10206002|"2018-03-16 00:01:36.356"|1|1.00|100.00|78.00|0|2|0|""|2
204
10131001|"2018-03-16 00:01:37.786"|1|1.00|100.00|49.00|0|2|0|""|2
205
10192201|"2018-03-16 00:01:37.900"|1|1.00|100.00|50.00|0|2|0|""|2
206
10196001|"2018-03-16 00:01:38.068"|1|1.00|100.00|88.00|0|2|0|""|2
207
10196101|"2018-03-16 00:01:38.999"|1|3.00|100.00|73.00|0|4|20|"0,73;1,90;2,93;3,95;4,97;5,98;6,99;7,100;8,101;9,102;10,102;"|8
208
10205002|"2018-03-16 00:01:38.483"|1|1.00|100.00|85.00|0|2|0|""|2
209
10117002|"2018-03-16 00:01:39.817"|1|1.00|100.00|63.00|0|2|0|""|2
210
10206001|"2018-03-16 00:01:39.981"|1|1.00|100.00|63.00|0|2|0|""|2
211
10206101|"2018-03-16 00:01:40.065"|1|1.00|100.00|60.00|0|2|15|"0,60;1,65;2,66;3,67;4,68;5,72;6,78;"|2
212
10206201|"2018-03-16 00:01:40.547"|1|1.00|100.00|65.00|0|2|0|""|2
213
10106001|"2018-03-16 00:01:44.575"|1|1.00|100.00|40.00|0|2|0|""|2
214
10106201|"2018-03-16 00:01:44.802"|1|1.00|100.00|43.00|0|2|0|""|2
215
10106101|"2018-03-16 00:01:45.534"|1|1.00|100.00|39.00|0|2|10|"0,39;1,41;2,43;3,44;"|2
216
10198102|"2018-03-16 00:01:45.152"|1|1.00|100.00|55.00|0|2|3|""|2
217
10192201|"2018-03-16 00:01:46.100"|1|1.00|100.00|50.00|0|2|0|""|2
218
10194001|"2018-03-16 00:01:46.442"|1|1.00|100.00|58.00|0|2|0|""|2
219
10198002|"2018-03-16 00:01:46.641"|1|1.00|100.00|64.00|0|2|0|""|2
220
10197001|"2018-03-16 00:01:47.578"|1|1.00|100.00|46.00|0|2|0|""|2
221
10123001|"2018-03-16 00:01:48.690"|1|1.00|100.00|72.00|0|2|0|""|2
222
10194101|"2018-03-16 00:01:48.313"|1|3.00|100.00|52.00|0|4|13|"0,52;1,58;2,59;3,60;4,61;5,62;6,63;7,65;8,65;9,52;10,67;"|8
223
10197001|"2018-03-16 00:01:51.701"|1|1.00|100.00|45.00|0|2|0|""|2
224
10198002|"2018-03-16 00:01:51.641"|1|1.00|100.00|64.00|0|2|0|""|2
225
10123001|"2018-03-16 00:01:54.685"|1|1.00|100.00|48.00|0|2|0|""|2
226
10196001|"2018-03-16 00:01:54.564"|1|1.00|100.00|43.00|0|2|0|""|2
227
10197101|"2018-03-16 00:01:54.734"|1|3.00|100.00|44.00|0|4|3|"0,44;1,45;2,46;3,46;4,45;5,45;6,46;7,46;8,46;9,46;10,46;"|8
228
10197201|"2018-03-16 00:01:54.819"|1|1.00|100.00|45.00|0|2|0|""|2
229
10123101|"2018-03-16 00:01:55.707"|1|3.00|100.00|44.00|0|4|11|"0,44;1,48;2,51;3,54;4,57;5,62;6,69;7,75;8,81;9,84;10,86;"|8
230
10196101|"2018-03-16 00:01:55.988"|1|1.00|100.00|40.00|0|2|23|"0,40;1,46;2,49;3,50;4,52;5,55;6,59;7,64;8,68;9,70;10,71;"|2
231
10197001|"2018-03-16 00:01:56.701"|1|1.00|100.00|45.00|0|2|0|""|2
232
10128001|"2018-03-16 00:01:57.255"|1|1.00|100.00|46.00|0|2|0|""|2
233
10105001|"2018-03-16 00:01:58.640"|1|1.00|100.00|53.00|0|2|0|""|2
234
10105201|"2018-03-16 00:01:58.476"|1|1.00|100.00|56.00|0|2|0|""|2
235
10125101|"2018-03-16 00:01:58.859"|1|1.00|100.00|46.00|0|2|1|"0,46;1,46;2,47;3,49;4,50;5,51;6,52;"|2
236
10066002|"2018-03-16 00:01:59.104"|1|1.00|100.00|38.00|0|2|0|""|2
237
10105101|"2018-03-16 00:01:59.332"|1|1.00|100.00|52.00|0|2|1|"0,52;1,55;2,56;3,56;4,56;5,55;"|2
238
10125201|"2018-03-16 00:01:59.592"|1|1.00|100.00|47.00|0|2|0|""|2
239
10193102|"2018-03-16 00:01:59.085"|1|1.00|100.00|29.00|0|2|5|""|2
240
10196001|"2018-03-16 00:01:59.564"|1|1.00|100.00|43.00|0|2|0|""|2
241
10125101|"2018-03-16 00:02:00.259"|1|3.00|100.00|45.00|0|4|15|"0,45;1,47;2,47;3,47;4,49;5,50;6,51;7,52;"|8
242
10125001|"2018-03-16 00:02:02.295"|1|1.00|100.00|42.00|0|2|0|""|2
243
10125101|"2018-03-16 00:02:02.809"|1|1.00|100.00|42.00|0|2|8|"0,42;1,44;2,46;3,47;4,46;5,47;6,48;7,49;8,50;9,52;10,52;"|2
244
10128001|"2018-03-16 00:02:02.255"|1|1.00|100.00|46.00|0|2|0|""|2
245
10128101|"2018-03-16 00:02:02.911"|1|1.00|100.00|46.00|0|2|10|"0,46;1,47;2,46;3,46;4,45;5,45;6,45;7,45;8,45;9,45;"|2
246
10128201|"2018-03-16 00:02:02.302"|1|1.00|100.00|47.00|0|2|0|""|2
247
10095102|"2018-03-16 00:02:03.300"|1|1.00|100.00|0.00|0|2|8|""|2
248
10193002|"2018-03-16 00:02:03.824"|1|1.00|100.00|70.00|0|2|0|""|2
249
10066002|"2018-03-16 00:02:04.104"|1|1.00|100.00|38.00|0|2|0|""|2
250
10095002|"2018-03-16 00:02:04.396"|1|1.00|100.00|54.00|0|2|0|""|2
251
10105001|"2018-03-16 00:02:04.124"|1|1.00|100.00|72.00|0|2|0|""|2
252
10105101|"2018-03-16 00:02:04.032"|1|1.00|100.00|72.00|0|2|4|"0,72;1,75;2,77;3,72;4,50;5,53;6,55;7,56;8,56;9,56;"|2
253
10191001|"2018-03-16 00:02:04.776"|1|1.00|100.00|49.00|0|2|0|""|2
254
10095102|"2018-03-16 00:02:05.800"|1|1.00|100.00|0.00|0|2|8|""|2
255
10103001|"2018-03-16 00:02:05.866"|1|1.00|100.00|46.00|0|2|0|""|2
256
10192201|"2018-03-16 00:02:05.018"|1|1.00|100.00|50.00|0|2|0|""|2
257
10229102|"2018-03-16 00:02:05.554"|1|1.00|100.00|43.00|0|2|6|""|2
258
10081001|"2018-03-16 00:02:06.153"|1|1.00|100.00|53.00|0|2|0|""|2
259
10134102|"2018-03-16 00:02:06.688"|1|1.00|100.00|48.00|0|2|5|""|2
260
10051102|"2018-03-16 00:02:07.954"|1|1.00|100.00|40.00|0|2|16|""|2
261
10095002|"2018-03-16 00:02:07.515"|1|1.00|100.00|53.00|0|2|0|""|2
262
10128001|"2018-03-16 00:02:07.255"|1|1.00|100.00|46.00|0|2|0|""|2
263
10229002|"2018-03-16 00:02:07.389"|1|1.00|100.00|57.00|0|2|0|""|2
264
10069201|"2018-03-16 00:02:08.369"|1|1.00|100.00|58.00|0|2|0|""|2
265
10079001|"2018-03-16 00:02:08.899"|1|1.00|100.00|59.00|0|2|0|""|2
266
10110001|"2018-03-16 00:02:08.547"|1|1.00|100.00|41.00|0|2|0|""|2
267
10134002|"2018-03-16 00:02:08.633"|1|1.00|100.00|53.00|0|2|0|""|2
268
10103001|"2018-03-16 00:02:09.256"|1|1.00|100.00|44.00|0|2|0|""|2
269
10191001|"2018-03-16 00:02:09.776"|1|1.00|100.00|49.00|0|2|0|""|2
270
10193002|"2018-03-16 00:02:09.446"|1|1.00|100.00|72.00|0|2|0|""|2
271
10079101|"2018-03-16 00:02:10.295"|1|3.00|100.00|56.00|0|4|8|"0,56;1,59;2,60;3,60;4,60;5,61;6,62;"|8
272
10081001|"2018-03-16 00:02:11.153"|1|1.00|100.00|53.00|0|2|0|""|2
273
10191201|"2018-03-16 00:02:11.627"|1|1.00|100.00|46.00|0|2|0|""|2
274
10191201|"2018-03-16 00:02:11.667"|1|1.00|100.00|45.00|0|2|0|""|2
275
10095002|"2018-03-16 00:02:12.515"|1|1.00|100.00|53.00|0|2|0|""|2
276
10191101|"2018-03-16 00:02:12.259"|1|1.00|100.00|40.00|0|2|11|"0,40;1,44;2,45;3,47;4,48;5,49;6,51;7,52;8,52;9,52;10,52;"|2
277
10051001|"2018-03-16 00:02:13.524"|1|1.00|100.00|51.00|0|2|0|""|2
278
10103101|"2018-03-16 00:02:13.626"|1|1.00|100.00|41.00|0|2|8|"0,41;1,44;2,45;3,47;4,47;5,46;6,46;7,46;8,46;9,47;10,47;"|2
279
10110001|"2018-03-16 00:02:13.547"|1|1.00|100.00|41.00|0|2|0|""|2
280
10110201|"2018-03-16 00:02:13.746"|1|1.00|100.00|40.00|0|2|0|""|2
281
10134002|"2018-03-16 00:02:13.633"|1|1.00|100.00|53.00|0|2|0|""|2
282
10103001|"2018-03-16 00:02:14.256"|1|1.00|100.00|44.00|0|2|0|""|2
283
10110101|"2018-03-16 00:02:14.256"|1|1.00|100.00|36.00|0|2|9|"0,36;1,39;2,40;3,41;4,44;5,45;6,48;7,51;8,53;"|2
284
10191001|"2018-03-16 00:02:14.776"|1|1.00|100.00|49.00|0|2|0|""|2
285
10051002|"2018-03-16 00:02:15.394"|1|1.00|100.00|52.00|0|2|0|""|2
286
10117001|"2018-03-16 00:02:16.189"|1|1.00|100.00|47.00|0|2|0|""|2
287
10117101|"2018-03-16 00:02:16.407"|1|1.00|100.00|46.00|0|2|18|"0,46;1,62;2,55;3,52;4,51;5,55;"|2
288
10110001|"2018-03-16 00:02:18.547"|1|1.00|100.00|41.00|0|2|0|""|2
289
10134002|"2018-03-16 00:02:18.633"|1|1.00|100.00|53.00|0|2|0|""|2
290
10074102|"2018-03-16 00:02:19.783"|1|1.00|100.00|58.00|0|2|6|""|2
291
10103001|"2018-03-16 00:02:19.256"|1|1.00|100.00|44.00|0|2|0|""|2
292
10051002|"2018-03-16 00:02:20.394"|1|1.00|100.00|52.00|0|2|0|""|2
293
10074201|"2018-03-16 00:02:20.061"|1|1.00|100.00|59.00|0|2|0|""|2
294
10074101|"2018-03-16 00:02:21.283"|1|1.00|100.00|47.00|0|2|6|"0,47;1,47;2,58;3,60;"|2
295
10083102|"2018-03-16 00:02:21.708"|1|1.00|100.00|0.00|0|2|9|""|2
296
10074002|"2018-03-16 00:02:22.740"|1|1.00|100.00|61.00|0|2|0|""|2
297
10206001|"2018-03-16 00:02:23.358"|1|1.00|100.00|47.00|0|2|0|""|2
298
10074002|"2018-03-16 00:02:24.365"|1|1.00|100.00|64.00|0|2|0|""|2
299
10191201|"2018-03-16 00:02:25.813"|1|1.00|100.00|50.00|0|2|0|""|2
300
10196201|"2018-03-16 00:02:25.419"|1|1.00|100.00|50.00|0|2|0|""|2
301
10206101|"2018-03-16 00:02:27.152"|1|1.00|100.00|43.00|0|2|9|"0,43;1,47;2,48;3,49;4,51;5,52;6,54;7,54;8,55;9,55;10,56;"|2
302
10206001|"2018-03-16 00:02:28.358"|1|1.00|100.00|47.00|0|2|0|""|2
303
10192201|"2018-03-16 00:02:29.779"|1|1.00|100.00|50.00|0|2|0|""|2
304
10097001|"2018-03-16 00:02:31.388"|1|1.00|100.00|50.00|0|2|0|""|2
305
10195102|"2018-03-16 00:02:31.596"|1|1.00|100.00|0.00|0|2|3|""|2
306
10196201|"2018-03-16 00:02:31.112"|1|1.00|100.00|50.00|0|2|0|""|2
307
10097101|"2018-03-16 00:02:32.546"|1|1.00|100.00|45.00|0|2|10|"0,45;1,50;2,51;3,54;4,57;5,61;6,64;7,66;"|2
308
10195002|"2018-03-16 00:02:33.456"|1|1.00|100.00|59.00|0|2|0|""|2
309
10086102|"2018-03-16 00:02:34.679"|1|1.00|100.00|0.00|0|2|3|""|2
310
10128001|"2018-03-16 00:02:35.011"|1|1.00|100.00|74.00|0|2|0|""|2
311
10198001|"2018-03-16 00:02:35.887"|1|1.00|100.00|55.00|0|2|0|""|2
312
10059002|"2018-03-16 00:02:36.307"|1|1.00|100.00|60.00|0|2|0|""|2
313
10086002|"2018-03-16 00:02:36.571"|1|1.00|100.00|65.00|0|2|0|""|2
314
10194001|"2018-03-16 00:02:38.807"|1|1.00|100.00|65.00|0|2|0|""|2
315
10195002|"2018-03-16 00:02:38.637"|1|1.00|100.00|59.00|0|2|0|""|2
316
10117001|"2018-03-16 00:02:39.815"|1|1.00|100.00|52.00|0|2|0|""|2
317
10192201|"2018-03-16 00:02:39.699"|1|1.00|100.00|50.00|0|2|0|""|2
318
10194101|"2018-03-16 00:02:39.641"|1|1.00|100.00|62.00|0|2|14|"0,62;1,65;2,66;3,66;4,67;5,67;6,67;7,68;8,68;9,68;"|2
319
10198201|"2018-03-16 00:02:39.794"|1|1.00|100.00|54.00|0|2|0|""|2
320
10128001|"2018-03-16 00:02:40.012"|1|1.00|100.00|65.00|0|2|0|""|2
321
10128101|"2018-03-16 00:02:40.600"|1|1.00|100.00|65.00|0|2|4|"0,65;1,69;2,71;3,72;4,73;5,74;6,75;7,72;8,67;"|2
322
10198001|"2018-03-16 00:02:40.887"|1|1.00|100.00|55.00|0|2|0|""|2
323
10198101|"2018-03-16 00:02:40.607"|1|1.00|100.00|49.00|0|2|7|"0,49;1,53;2,55;3,58;4,60;5,62;6,64;7,66;8,67;"|2
324
10086002|"2018-03-16 00:02:41.571"|1|1.00|100.00|65.00|0|2|0|""|2
325
10117101|"2018-03-16 00:02:41.587"|1|3.00|100.00|46.00|0|4|22|"0,46;1,51;2,53;3,55;4,57;5,58;6,59;7,59;8,59;"|8
326
10205102|"2018-03-16 00:02:43.560"|1|1.00|100.00|0.00|0|2|4|""|2
327
10109101|"2018-03-16 00:02:45.137"|1|1.00|100.00|0.00|0|2|7|""|2
328
10109201|"2018-03-16 00:02:45.054"|1|1.00|100.00|50.00|0|2|0|""|2
329
10086002|"2018-03-16 00:02:46.571"|1|1.00|100.00|65.00|0|2|0|""|2
330
10192201|"2018-03-16 00:02:46.339"|1|1.00|100.00|50.00|0|2|0|""|2
331
10205002|"2018-03-16 00:02:46.103"|1|1.00|100.00|81.00|0|2|0|""|2
332
10087001|"2018-03-16 00:02:48.700"|1|1.00|100.00|40.00|0|2|0|""|2
333
10098001|"2018-03-16 00:02:49.491"|1|1.00|100.00|53.00|0|2|0|""|2
334
10096001|"2018-03-16 00:02:50.094"|1|1.00|100.00|46.00|0|2|0|""|2
335
10205002|"2018-03-16 00:02:51.103"|1|1.00|100.00|81.00|0|2|0|""|2
336
10103001|"2018-03-16 00:02:52.625"|1|1.00|100.00|59.00|0|2|0|""|2
337
10087001|"2018-03-16 00:02:53.700"|1|1.00|100.00|40.00|0|2|0|""|2
338
10133102|"2018-03-16 00:02:53.552"|1|1.00|100.00|43.00|0|2|2|""|2
339
10200201|"2018-03-16 00:02:53.590"|1|1.00|100.00|50.00|0|2|0|""|2
340
10098001|"2018-03-16 00:02:54.491"|1|1.00|100.00|53.00|0|2|0|""|2
341
10229001|"2018-03-16 00:02:54.758"|1|1.00|100.00|52.00|0|2|0|""|2
342
10087101|"2018-03-16 00:02:55.638"|1|1.00|100.00|36.00|0|2|13|"0,36;1,38;2,39;3,40;4,41;5,41;6,40;7,41;8,41;9,41;10,40;"|2
343
10087201|"2018-03-16 00:02:55.757"|1|1.00|100.00|39.00|0|2|0|""|2
344
10098101|"2018-03-16 00:02:55.649"|1|1.00|100.00|42.00|0|2|14|"0,42;1,44;2,46;3,52;4,59;5,64;6,67;7,71;8,75;9,78;10,79;"|2
345
10103001|"2018-03-16 00:02:55.374"|1|1.00|100.00|59.00|0|2|0|""|2
346
10229201|"2018-03-16 00:02:56.228"|1|1.00|100.00|53.00|0|2|0|""|2
347
10107102|"2018-03-16 00:02:57.089"|1|1.00|100.00|0.00|0|2|2|""|2
348
10229101|"2018-03-16 00:02:57.707"|1|1.00|100.00|47.00|0|2|2|"0,47;1,50;2,52;3,53;4,54;5,55;"|2
349
10087001|"2018-03-16 00:02:58.700"|1|1.00|100.00|40.00|0|2|0|""|2
350
10103001|"2018-03-16 00:02:58.124"|1|1.00|100.00|61.00|0|2|0|""|2
351
10107102|"2018-03-16 00:02:58.239"|1|1.00|100.00|0.00|0|2|3|""|2
352
10098001|"2018-03-16 00:02:59.491"|1|1.00|100.00|53.00|0|2|0|""|2
353
10229001|"2018-03-16 00:02:59.758"|1|1.00|100.00|52.00|0|2|0|""|2
354
10107002|"2018-03-16 00:03:00.791"|1|1.00|100.00|87.00|0|2|0|""|2
355
10112001|"2018-03-16 00:03:00.580"|1|1.00|100.00|47.00|0|2|0|""|2
356
10092001|"2018-03-16 00:03:01.081"|1|1.00|100.00|52.00|0|2|0|""|2
357
10103101|"2018-03-16 00:03:02.573"|1|1.00|100.00|61.00|0|2|8|"0,61;1,62;2,61;3,60;4,60;5,61;6,61;7,60;8,60;9,59;10,59;"|2
358
10103201|"2018-03-16 00:03:02.023"|1|1.00|100.00|62.00|0|2|0|""|2
359
10127102|"2018-03-16 00:03:02.872"|1|1.00|100.00|45.00|0|2|3|""|2
360
10103001|"2018-03-16 00:03:03.124"|1|1.00|100.00|61.00|0|2|0|""|2
361
10081002|"2018-03-16 00:03:04.404"|1|1.00|100.00|53.00|0|2|0|""|2
362
10086102|"2018-03-16 00:03:04.318"|1|1.00|100.00|0.00|0|2|8|""|2
363
10107002|"2018-03-16 00:03:04.414"|1|1.00|100.00|87.00|0|2|0|""|2
364
10112001|"2018-03-16 00:03:04.704"|1|1.00|100.00|42.00|0|2|0|""|2
365
10127002|"2018-03-16 00:03:04.444"|1|1.00|100.00|67.00|0|2|0|""|2
366
10112101|"2018-03-16 00:03:05.288"|1|1.00|100.00|40.00|0|2|18|"0,40;1,43;2,44;3,45;4,47;5,49;6,50;7,50;8,50;9,48;"|2
367
10112201|"2018-03-16 00:03:05.026"|1|1.00|100.00|44.00|0|2|0|""|2
368
10118102|"2018-03-16 00:03:05.037"|1|1.00|100.00|0.00|0|2|15|""|2
369
10192001|"2018-03-16 00:03:05.101"|1|1.00|100.00|58.00|0|2|0|""|2
370
10086002|"2018-03-16 00:03:06.945"|1|1.00|100.00|47.00|0|2|0|""|2
371
10092001|"2018-03-16 00:03:06.081"|1|1.00|100.00|52.00|0|2|0|""|2
372
10092101|"2018-03-16 00:03:06.777"|1|1.00|100.00|52.00|0|2|6|"0,52;1,53;2,53;3,53;4,54;5,54;6,54;7,54;8,54;9,54;10,53;"|2
373
10092201|"2018-03-16 00:03:06.436"|1|1.00|100.00|53.00|0|2|0|""|2
374
10123001|"2018-03-16 00:03:07.427"|1|1.00|100.00|54.00|0|2|0|""|2
375
10128001|"2018-03-16 00:03:07.253"|1|1.00|100.00|49.00|0|2|0|""|2
376
10105102|"2018-03-16 00:03:08.782"|1|1.00|100.00|70.00|0|2|1|""|2
377
10107002|"2018-03-16 00:03:08.037"|1|1.00|100.00|87.00|0|2|0|""|2
378
10118002|"2018-03-16 00:03:08.523"|1|1.00|100.00|50.00|0|2|0|""|2
379
10192001|"2018-03-16 00:03:08.104"|1|1.00|100.00|42.00|0|2|0|""|2
380
10200201|"2018-03-16 00:03:08.150"|1|1.00|100.00|50.00|0|2|0|""|2
381
10081002|"2018-03-16 00:03:09.404"|1|1.00|100.00|53.00|0|2|0|""|2
382
10105002|"2018-03-16 00:03:09.754"|1|1.00|100.00|80.00|0|2|0|""|2
383
10127002|"2018-03-16 00:03:09.444"|1|1.00|100.00|67.00|0|2|0|""|2
384
10081001|"2018-03-16 00:03:11.533"|1|1.00|100.00|52.00|0|2|0|""|2
385
10085102|"2018-03-16 00:03:11.827"|1|1.00|100.00|0.00|0|2|4|""|2
386
10086002|"2018-03-16 00:03:11.945"|1|1.00|100.00|47.00|0|2|0|""|2
387
10107002|"2018-03-16 00:03:11.660"|1|1.00|100.00|87.00|0|2|0|""|2
388
10123001|"2018-03-16 00:03:12.427"|1|1.00|100.00|54.00|0|2|0|""|2
389
10128001|"2018-03-16 00:03:12.253"|1|1.00|100.00|49.00|0|2|0|""|2
390
10123101|"2018-03-16 00:03:13.395"|1|1.00|100.00|50.00|0|2|5|"0,50;1,49;2,49;3,50;4,53;5,56;6,63;7,71;8,79;9,87;10,93;"|2
391
10192001|"2018-03-16 00:03:13.104"|1|1.00|100.00|42.00|0|2|0|""|2
392
10196102|"2018-03-16 00:03:13.828"|1|1.00|100.00|37.00|0|2|13|""|2
393
10081002|"2018-03-16 00:03:14.404"|1|1.00|100.00|53.00|0|2|0|""|2
394
10084102|"2018-03-16 00:03:14.583"|1|1.00|100.00|44.00|0|2|5|""|2
395
10085102|"2018-03-16 00:03:15.627"|1|1.00|100.00|0.00|0|2|3|""|2
396
10107002|"2018-03-16 00:03:15.283"|1|1.00|100.00|87.00|0|2|0|""|2
397
10084002|"2018-03-16 00:03:16.558"|1|1.00|100.00|66.00|0|2|0|""|2
398
10086002|"2018-03-16 00:03:16.945"|1|1.00|100.00|47.00|0|2|0|""|2
399
10128201|"2018-03-16 00:03:16.132"|1|1.00|100.00|51.00|0|2|0|""|2
400
10192101|"2018-03-16 00:03:16.757"|1|1.00|100.00|40.00|0|2|9|"0,40;1,41;2,41;3,42;4,42;5,42;6,42;7,41;8,41;9,42;10,45;"|2
401
10123001|"2018-03-16 00:03:17.427"|1|1.00|100.00|54.00|0|2|0|""|2
402
10128001|"2018-03-16 00:03:17.253"|1|1.00|100.00|49.00|0|2|0|""|2
403
10128101|"2018-03-16 00:03:17.552"|1|1.00|100.00|51.00|0|2|4|"0,51;1,51;2,51;3,50;4,50;5,49;6,49;7,49;8,48;9,49;10,49;"|2
404
10107002|"2018-03-16 00:03:18.906"|1|1.00|100.00|87.00|0|2|0|""|2
405
10112001|"2018-03-16 00:03:18.708"|1|1.00|100.00|50.00|0|2|0|""|2
406
10123101|"2018-03-16 00:03:18.695"|1|1.00|100.00|52.00|0|2|2|"0,52;1,54;2,56;3,58;4,59;5,52;6,49;7,49;8,50;9,51;10,55;"|2
407
10123102|"2018-03-16 00:03:18.445"|1|1.00|100.00|53.00|0|2|3|""|2
408
10192001|"2018-03-16 00:03:18.104"|1|1.00|100.00|42.00|0|2|0|""|2
409
10196002|"2018-03-16 00:03:18.686"|1|1.00|100.00|56.00|0|2|0|""|2
410
10123002|"2018-03-16 00:03:19.177"|1|1.00|100.00|85.00|0|2|0|""|2
411
10081001|"2018-03-16 00:03:21.907"|1|1.00|100.00|50.00|0|2|0|""|2
412
10084002|"2018-03-16 00:03:21.558"|1|1.00|100.00|66.00|0|2|0|""|2
413
10095001|"2018-03-16 00:03:21.895"|1|1.00|100.00|59.00|0|2|0|""|2
414
10095101|"2018-03-16 00:03:21.144"|1|1.00|100.00|59.00|0|2|16|"0,59;1,69;2,71;"|2
415
10095201|"2018-03-16 00:03:21.685"|1|1.00|100.00|68.00|0|2|0|""|2
416
10107002|"2018-03-16 00:03:22.530"|1|1.00|100.00|74.00|0|2|0|""|2
417
10123001|"2018-03-16 00:03:22.427"|1|1.00|100.00|54.00|0|2|0|""|2
418
10128001|"2018-03-16 00:03:22.253"|1|1.00|100.00|49.00|0|2|0|""|2
419
10105001|"2018-03-16 00:03:23.872"|1|1.00|100.00|37.00|0|2|0|""|2
420
10118001|"2018-03-16 00:03:23.022"|1|1.00|100.00|47.00|0|2|0|""|2
421
10192001|"2018-03-16 00:03:23.104"|1|1.00|100.00|42.00|0|2|0|""|2
422
10196002|"2018-03-16 00:03:23.686"|1|1.00|100.00|56.00|0|2|0|""|2
423
10112001|"2018-03-16 00:03:24.078"|1|1.00|100.00|45.00|0|2|0|""|2
424
10123002|"2018-03-16 00:03:24.177"|1|1.00|100.00|85.00|0|2|0|""|2
425
10194001|"2018-03-16 00:03:24.811"|1|1.00|100.00|54.00|0|2|0|""|2
426
10105101|"2018-03-16 00:03:25.871"|1|1.00|100.00|36.00|0|2|26|"0,36;1,37;2,37;3,38;4,38;5,38;6,39;7,40;"|2
427
10118101|"2018-03-16 00:03:25.673"|1|3.00|100.00|47.00|0|4|32|"0,47;1,48;2,47;3,48;4,48;5,47;6,47;7,46;8,46;9,46;"|8
428
10081001|"2018-03-16 00:03:26.907"|1|1.00|100.00|50.00|0|2|0|""|2
429
10081201|"2018-03-16 00:03:26.330"|1|1.00|100.00|51.00|0|2|0|""|2
430
10117001|"2018-03-16 00:03:26.681"|1|1.00|100.00|58.00|0|2|0|""|2
431
10107002|"2018-03-16 00:03:27.530"|1|1.00|100.00|74.00|0|2|0|""|2
432
10109102|"2018-03-16 00:03:27.210"|1|3.00|100.00|0.00|0|4|26|""|8
433
10123001|"2018-03-16 00:03:27.427"|1|1.00|100.00|54.00|0|2|0|""|2
434
10191201|"2018-03-16 00:03:27.014"|1|1.00|100.00|50.00|0|2|0|""|2
435
10105001|"2018-03-16 00:03:28.872"|1|1.00|100.00|37.00|0|2|0|""|2
436
10117101|"2018-03-16 00:03:28.207"|1|3.00|100.00|54.00|0|4|8|"0,54;1,58;2,60;3,61;4,62;5,62;6,62;"|8
437
10118001|"2018-03-16 00:03:28.022"|1|1.00|100.00|47.00|0|2|0|""|2
438
10196002|"2018-03-16 00:03:28.686"|1|1.00|100.00|56.00|0|2|0|""|2
439
10092001|"2018-03-16 00:03:29.581"|1|1.00|100.00|47.00|0|2|0|""|2
440
10112001|"2018-03-16 00:03:29.078"|1|1.00|100.00|45.00|0|2|0|""|2
441
10112101|"2018-03-16 00:03:29.378"|1|3.00|100.00|41.00|0|4|23|"0,41;1,46;2,46;3,44;4,43;5,43;6,44;7,46;8,47;9,48;10,49;"|8
442
10112201|"2018-03-16 00:03:29.439"|1|1.00|100.00|46.00|0|2|0|""|2
443
10123002|"2018-03-16 00:03:29.177"|1|1.00|100.00|85.00|0|2|0|""|2
444
10194001|"2018-03-16 00:03:29.811"|1|1.00|100.00|54.00|0|2|0|""|2
445
10204102|"2018-03-16 00:03:29.647"|1|1.00|100.00|0.00|0|2|2|""|2
446
10081001|"2018-03-16 00:03:31.907"|1|1.00|100.00|50.00|0|2|0|""|2
447
10121102|"2018-03-16 00:03:31.608"|1|3.00|100.00|42.00|0|4|19|""|8
448
10196201|"2018-03-16 00:03:31.838"|1|1.00|100.00|50.00|0|2|0|""|2
449
10094001|"2018-03-16 00:03:32.887"|1|1.00|100.00|48.00|0|2|0|""|2
450
10107002|"2018-03-16 00:03:32.530"|1|1.00|100.00|74.00|0|2|0|""|2
451
10204002|"2018-03-16 00:03:32.315"|1|1.00|100.00|103.00|0|2|0|""|2
452
10194101|"2018-03-16 00:03:33.892"|1|3.00|100.00|49.00|0|4|25|"0,49;1,53;2,53;3,53;4,53;5,53;6,54;7,54;8,55;9,56;10,58;"|8
453
10196002|"2018-03-16 00:03:33.686"|1|1.00|100.00|56.00|0|2|0|""|2
454
10080001|"2018-03-16 00:03:34.108"|1|1.00|100.00|54.00|0|2|0|""|2
455
10092001|"2018-03-16 00:03:34.581"|1|1.00|100.00|47.00|0|2|0|""|2
456
10112001|"2018-03-16 00:03:34.078"|1|1.00|100.00|45.00|0|2|0|""|2
457
10194001|"2018-03-16 00:03:34.811"|1|1.00|100.00|54.00|0|2|0|""|2
458
10092201|"2018-03-16 00:03:36.261"|1|1.00|100.00|48.00|0|2|0|""|2
459
10199001|"2018-03-16 00:03:36.082"|1|1.00|100.00|44.00|0|2|0|""|2
460
10080101|"2018-03-16 00:03:37.360"|1|3.00|100.00|46.00|0|4|18|"0,46;1,53;2,56;3,58;4,60;5,63;6,65;7,66;8,67;9,68;10,69;"|8
461
10092101|"2018-03-16 00:03:37.017"|1|1.00|100.00|46.00|0|2|6|"0,46;1,47;2,47;3,48;4,48;5,48;6,48;7,48;8,49;9,49;10,49;"|2
462
10107002|"2018-03-16 00:03:37.530"|1|1.00|100.00|74.00|0|2|0|""|2
463
10121002|"2018-03-16 00:03:37.391"|1|1.00|100.00|45.00|0|2|0|""|2
464
10127102|"2018-03-16 00:03:37.081"|1|1.00|100.00|0.00|0|2|5|""|2
465
10199101|"2018-03-16 00:03:37.834"|1|1.00|100.00|45.00|0|2|18|"0,45;1,44;2,48;3,58;4,67;5,70;6,67;"|2
466
10204002|"2018-03-16 00:03:37.315"|1|1.00|100.00|103.00|0|2|0|""|2
467
10080001|"2018-03-16 00:03:38.234"|1|1.00|100.00|54.00|0|2|0|""|2
468
10109102|"2018-03-16 00:03:38.598"|1|1.00|100.00|0.00|0|2|9|""|2
469
10196002|"2018-03-16 00:03:38.686"|1|1.00|100.00|56.00|0|2|0|""|2
470
10199201|"2018-03-16 00:03:38.271"|1|1.00|100.00|45.00|0|2|0|""|2
471
10199201|"2018-03-16 00:03:38.391"|1|1.00|100.00|45.00|0|2|0|""|2
472
10092001|"2018-03-16 00:03:39.581"|1|1.00|100.00|47.00|0|2|0|""|2
473
10127002|"2018-03-16 00:03:39.326"|1|1.00|100.00|69.00|0|2|0|""|2
474
10194001|"2018-03-16 00:03:39.811"|1|1.00|100.00|54.00|0|2|0|""|2
475
10094001|"2018-03-16 00:03:41.500"|1|1.00|100.00|41.00|0|2|0|""|2
476
10080001|"2018-03-16 00:03:42.360"|1|1.00|100.00|73.00|0|2|0|""|2
477
10121002|"2018-03-16 00:03:42.574"|1|1.00|100.00|45.00|0|2|0|""|2
478
10204002|"2018-03-16 00:03:42.315"|1|1.00|100.00|103.00|0|2|0|""|2
479
10086102|"2018-03-16 00:03:44.717"|1|1.00|100.00|0.00|0|2|4|""|2
480
10094001|"2018-03-16 00:03:44.264"|1|1.00|100.00|44.00|0|2|0|""|2
481
10127002|"2018-03-16 00:03:44.326"|1|1.00|100.00|69.00|0|2|0|""|2
482
10080001|"2018-03-16 00:03:45.729"|1|1.00|100.00|49.00|0|2|0|""|2
483
10080101|"2018-03-16 00:03:46.010"|1|3.00|100.00|44.00|0|4|18|"0,44;1,59;2,67;3,72;4,76;5,78;6,49;7,46;8,49;9,52;10,55;"|8
484
10086002|"2018-03-16 00:03:47.070"|1|1.00|100.00|49.00|0|2|0|""|2
485
10204002|"2018-03-16 00:03:47.315"|1|1.00|100.00|103.00|0|2|0|""|2
486
10205102|"2018-03-16 00:03:47.461"|1|1.00|100.00|0.00|0|2|4|""|2
487
10125101|"2018-03-16 00:03:48.499"|1|1.00|100.00|39.00|0|2|1|""|2
488
10094001|"2018-03-16 00:03:49.264"|1|1.00|100.00|44.00|0|2|0|""|2
489
10094101|"2018-03-16 00:03:49.576"|1|1.00|100.00|46.00|0|2|14|"0,46;1,45;2,44;3,44;4,43;5,43;6,42;7,42;8,41;9,41;10,41;"|2
490
10127002|"2018-03-16 00:03:49.326"|1|1.00|100.00|69.00|0|2|0|""|2
491
10204001|"2018-03-16 00:03:49.562"|1|1.00|100.00|50.00|0|2|0|""|2
492
10197001|"2018-03-16 00:03:50.455"|1|1.00|100.00|58.00|0|2|0|""|2
493
10205002|"2018-03-16 00:03:50.606"|1|1.00|100.00|59.00|0|2|0|""|2
494
10229201|"2018-03-16 00:03:50.828"|1|1.00|100.00|50.00|0|2|0|""|2
495
10086002|"2018-03-16 00:03:52.070"|1|1.00|100.00|49.00|0|2|0|""|2
496
10197001|"2018-03-16 00:03:53.011"|1|1.00|100.00|58.00|0|2|0|""|2
497
10094001|"2018-03-16 00:03:54.264"|1|1.00|100.00|44.00|0|2|0|""|2
498
10204001|"2018-03-16 00:03:54.562"|1|1.00|100.00|50.00|0|2|0|""|2
499
10096002|"2018-03-16 00:03:55.333"|1|1.00|100.00|57.00|0|2|0|""|2
500
10197001|"2018-03-16 00:03:55.568"|1|1.00|100.00|56.00|0|2|0|""|2
501
10197101|"2018-03-16 00:03:56.825"|1|1.00|100.00|55.00|0|2|0|"0,55;1,57;2,57;3,57;4,58;5,58;6,59;7,59;8,59;9,58;10,57;"|2
502
10205002|"2018-03-16 00:03:56.725"|1|1.00|100.00|66.00|0|2|0|""|2
503
10086002|"2018-03-16 00:03:57.070"|1|1.00|100.00|49.00|0|2|0|""|2
504
10197201|"2018-03-16 00:03:57.038"|1|1.00|100.00|56.00|0|2|0|""|2
505
10204101|"2018-03-16 00:03:57.246"|1|1.00|100.00|41.00|0|2|15|"0,41;1,42;2,44;3,46;4,49;5,53;6,56;7,58;8,61;9,64;10,66;"|2
506
10204001|"2018-03-16 00:03:59.562"|1|1.00|100.00|50.00|0|2|0|""|2
507
10205001|"2018-03-16 00:04:00.113"|1|1.00|100.00|58.00|0|2|0|""|2
508
10121102|"2018-03-16 00:04:01.309"|1|3.00|100.00|0.00|0|4|19|""|8
509
10086002|"2018-03-16 00:04:02.070"|1|1.00|100.00|49.00|0|2|0|""|2
510
10109102|"2018-03-16 00:04:03.548"|1|3.00|100.00|0.00|0|4|10|""|8
511
10095001|"2018-03-16 00:04:04.524"|1|1.00|100.00|53.00|0|2|0|""|2
512
10095101|"2018-03-16 00:04:04.518"|1|1.00|100.00|52.00|0|2|12|"0,52;1,57;2,62;3,68;4,70;5,68;"|2
513
10095201|"2018-03-16 00:04:04.872"|1|1.00|100.00|57.00|0|2|0|""|2
514
10121002|"2018-03-16 00:04:04.389"|1|1.00|100.00|45.00|0|2|0|""|2
515
10193102|"2018-03-16 00:04:04.953"|1|1.00|100.00|0.00|0|2|4|""|2
516
10204001|"2018-03-16 00:04:04.562"|1|1.00|100.00|50.00|0|2|0|""|2
517
10205101|"2018-03-16 00:04:04.561"|1|1.00|100.00|52.00|0|2|5|"0,52;1,56;2,60;3,62;4,63;5,64;6,65;"|2
518
10109102|"2018-03-16 00:04:05.298"|1|1.00|100.00|0.00|0|2|8|""|2
519
10205001|"2018-03-16 00:04:05.113"|1|1.00|100.00|58.00|0|2|0|""|2
520
10109002|"2018-03-16 00:04:06.379"|1|1.00|100.00|31.00|0|2|0|""|2
521
10086002|"2018-03-16 00:04:07.070"|1|1.00|100.00|49.00|0|2|0|""|2
522
10193002|"2018-03-16 00:04:07.318"|1|1.00|100.00|70.00|0|2|0|""|2
523
10205102|"2018-03-16 00:04:07.000"|1|3.00|100.00|50.00|0|4|13|""|8
524
10117001|"2018-03-16 00:04:08.182"|1|1.00|100.00|54.00|0|2|0|""|2
525
10121002|"2018-03-16 00:04:08.825"|1|1.00|100.00|45.00|0|2|0|""|2
526
10196102|"2018-03-16 00:04:08.048"|1|1.00|100.00|0.00|0|2|12|""|2
527
10105102|"2018-03-16 00:04:09.459"|1|3.00|100.00|32.00|0|4|14|""|8
528
10117101|"2018-03-16 00:04:10.933"|1|3.00|100.00|44.00|0|4|22|"0,44;1,49;2,53;3,57;4,60;5,62;6,65;7,69;8,71;"|8
529
10105002|"2018-03-16 00:04:12.123"|1|1.00|100.00|57.00|0|2|0|""|2
530
10193002|"2018-03-16 00:04:12.318"|1|1.00|100.00|70.00|0|2|0|""|2
531
10205002|"2018-03-16 00:04:12.113"|1|1.00|100.00|58.00|0|2|0|""|2
532
10086102|"2018-03-16 00:04:13.169"|1|1.00|100.00|0.00|0|2|3|""|2
533
10121002|"2018-03-16 00:04:13.261"|1|1.00|100.00|49.00|0|2|0|""|2
534
10192001|"2018-03-16 00:04:13.604"|1|1.00|100.00|66.00|0|2|0|""|2
535
10086002|"2018-03-16 00:04:14.819"|1|1.00|100.00|49.00|0|2|0|""|2
536
10100001|"2018-03-16 00:04:15.862"|1|1.00|100.00|48.00|0|2|0|""|2
537
10100101|"2018-03-16 00:04:16.541"|1|1.00|100.00|47.00|0|2|8|"0,47;1,50;2,50;3,49;4,47;5,47;6,46;7,47;8,48;9,48;"|2
538
10105002|"2018-03-16 00:04:16.120"|1|1.00|100.00|64.00|0|2|0|""|2
539
10127102|"2018-03-16 00:04:16.861"|1|3.00|100.00|0.00|0|4|11|""|8
540
10193002|"2018-03-16 00:04:17.318"|1|1.00|100.00|70.00|0|2|0|""|2
541
10205002|"2018-03-16 00:04:17.113"|1|1.00|100.00|58.00|0|2|0|""|2
542
10104101|"2018-03-16 00:04:18.557"|1|3.00|100.00|0.00|0|4|18|""|8
543
10192001|"2018-03-16 00:04:18.604"|1|1.00|100.00|66.00|0|2|0|""|2
544
10086002|"2018-03-16 00:04:19.819"|1|1.00|100.00|49.00|0|2|0|""|2
545
10192101|"2018-03-16 00:04:19.185"|1|1.00|100.00|49.00|0|2|14|"0,49;1,62;2,68;3,72;4,74;5,77;6,80;7,84;8,86;9,87;"|2
546
10192201|"2018-03-16 00:04:19.338"|1|1.00|100.00|61.00|0|2|0|""|2
547
10059001|"2018-03-16 00:04:21.940"|1|1.00|100.00|43.00|0|2|0|""|2
548
10127002|"2018-03-16 00:04:21.562"|1|1.00|100.00|38.00|0|2|0|""|2
549
10059201|"2018-03-16 00:04:22.244"|1|1.00|100.00|44.00|0|2|0|""|2
550
10100001|"2018-03-16 00:04:22.111"|1|1.00|100.00|48.00|0|2|0|""|2
551
10193002|"2018-03-16 00:04:22.318"|1|1.00|100.00|70.00|0|2|0|""|2
552
10059101|"2018-03-16 00:04:23.207"|1|3.00|100.00|39.00|0|4|6|"0,39;1,43;2,44;3,45;4,46;5,46;6,47;"|8
553
10100101|"2018-03-16 00:04:23.614"|1|1.00|100.00|42.00|0|2|9|"0,42;1,47;2,52;3,51;4,50;5,49;6,46;7,47;8,49;9,50;10,49;"|2
554
10109201|"2018-03-16 00:04:23.964"|1|1.00|100.00|50.00|0|2|0|""|2
555
10192001|"2018-03-16 00:04:23.604"|1|1.00|100.00|66.00|0|2|0|""|2
556
10086002|"2018-03-16 00:04:24.819"|1|1.00|100.00|49.00|0|2|0|""|2
557
10109101|"2018-03-16 00:04:24.238"|1|1.00|100.00|41.00|0|2|3|""|2
558
10206001|"2018-03-16 00:04:24.969"|1|1.00|100.00|47.00|0|2|0|""|2
559
10206101|"2018-03-16 00:04:25.882"|1|1.00|100.00|46.00|0|2|8|"0,46;1,48;2,48;3,49;4,50;5,51;6,53;7,58;8,62;9,66;10,68;"|2
560
10206201|"2018-03-16 00:04:25.344"|1|1.00|100.00|48.00|0|2|0|""|2
561
10095102|"2018-03-16 00:04:26.937"|1|1.00|100.00|46.00|0|2|7|""|2
562
10127002|"2018-03-16 00:04:26.728"|1|1.00|100.00|38.00|0|2|0|""|2
563
10051001|"2018-03-16 00:04:28.532"|1|1.00|100.00|60.00|0|2|0|""|2
564
10095002|"2018-03-16 00:04:28.389"|1|1.00|100.00|57.00|0|2|0|""|2
565
10192201|"2018-03-16 00:04:28.614"|1|1.00|100.00|51.00|0|2|0|""|2
566
10086002|"2018-03-16 00:04:29.819"|1|1.00|100.00|49.00|0|2|0|""|2
567
10192001|"2018-03-16 00:04:29.106"|1|1.00|100.00|50.00|0|2|0|""|2
568
10192101|"2018-03-16 00:04:29.065"|1|1.00|100.00|49.00|0|2|14|"0,49;1,51;2,50;3,50;4,52;5,53;6,55;7,56;8,52;9,50;10,56;"|2
569
10051201|"2018-03-16 00:04:30.368"|1|1.00|100.00|62.00|0|2|0|""|2
570
10127002|"2018-03-16 00:04:31.894"|1|1.00|100.00|38.00|0|2|0|""|2
571
10200201|"2018-03-16 00:04:31.831"|1|1.00|100.00|50.00|0|2|0|""|2
572
10051101|"2018-03-16 00:04:32.192"|1|1.00|100.00|57.00|0|2|1|"0,57;1,58;2,60;3,61;4,63;5,64;6,66;7,70;8,72;"|2
573
10051001|"2018-03-16 00:04:33.532"|1|1.00|100.00|60.00|0|2|0|""|2
574
10085102|"2018-03-16 00:04:33.064"|1|1.00|100.00|0.00|0|2|3|""|2
575
10105001|"2018-03-16 00:04:37.880"|1|1.00|100.00|46.00|0|2|0|""|2
576
10105102|"2018-03-16 00:04:38.915"|1|3.00|100.00|46.00|0|4|21|""|8
577
10105002|"2018-03-16 00:04:40.869"|1|1.00|100.00|46.00|0|2|0|""|2
578
10196201|"2018-03-16 00:04:40.880"|1|1.00|100.00|50.00|0|2|0|""|2
579
10105201|"2018-03-16 00:04:41.664"|1|1.00|100.00|43.00|0|2|0|""|2
580
10194201|"2018-03-16 00:04:41.990"|1|1.00|100.00|50.00|0|2|0|""|2
581
10105001|"2018-03-16 00:04:42.372"|1|1.00|100.00|42.00|0|2|0|""|2
582
10105101|"2018-03-16 00:04:42.366"|1|1.00|100.00|41.00|0|2|13|"0,41;1,42;2,41;3,41;4,46;5,46;6,46;7,46;"|2
583
10127002|"2018-03-16 00:04:43.062"|1|1.00|100.00|18.00|0|2|0|""|2
584
10194001|"2018-03-16 00:04:45.934"|1|1.00|100.00|43.00|0|2|0|""|2
585
10200102|"2018-03-16 00:04:45.083"|1|1.00|100.00|45.00|0|2|7|""|2
586
10091102|"2018-03-16 00:04:46.774"|1|1.00|100.00|37.00|0|2|4|""|2
587
10105102|"2018-03-16 00:04:46.059"|1|3.00|100.00|41.00|0|4|19|""|8
588
10117001|"2018-03-16 00:04:46.184"|1|1.00|100.00|48.00|0|2|0|""|2
589
10123102|"2018-03-16 00:04:46.168"|1|1.00|100.00|51.00|0|2|11|""|2
590
10200002|"2018-03-16 00:04:47.306"|1|1.00|100.00|52.00|0|2|0|""|2
591
10080102|"2018-03-16 00:04:49.092"|1|1.00|100.00|40.00|0|2|7|""|2
592
10091002|"2018-03-16 00:04:49.569"|1|1.00|100.00|41.00|0|2|0|""|2
593
10105002|"2018-03-16 00:04:49.247"|1|1.00|100.00|50.00|0|2|0|""|2
594
10117101|"2018-03-16 00:04:49.938"|1|3.00|100.00|46.00|0|4|8|"0,46;1,48;2,50;3,50;4,50;5,49;6,48;7,47;8,49;"|8
595
10080002|"2018-03-16 00:04:50.984"|1|1.00|100.00|74.00|0|2|0|""|2
596
10194001|"2018-03-16 00:04:50.934"|1|1.00|100.00|43.00|0|2|0|""|2
597
10092001|"2018-03-16 00:04:51.442"|1|1.00|100.00|46.00|0|2|0|""|2
598
10117001|"2018-03-16 00:04:51.184"|1|1.00|100.00|48.00|0|2|0|""|2
599
10123002|"2018-03-16 00:04:51.308"|1|1.00|100.00|76.00|0|2|0|""|2
600
10194101|"2018-03-16 00:04:51.020"|1|1.00|100.00|39.00|0|2|16|"0,39;1,42;2,43;3,44;4,45;5,45;6,46;7,47;8,39;9,48;10,49;"|2
601
10194201|"2018-03-16 00:04:51.430"|1|1.00|100.00|42.00|0|2|0|""|2
602
10091002|"2018-03-16 00:04:54.569"|1|1.00|100.00|41.00|0|2|0|""|2
603
10192101|"2018-03-16 00:04:55.487"|1|1.00|100.00|87.00|0|2|4|"0,87;1,90;2,93;3,96;4,98;5,100;6,102;7,104;8,105;"|2
604
10192201|"2018-03-16 00:04:55.491"|1|1.00|100.00|91.00|0|2|0|""|2
605
10123002|"2018-03-16 00:04:56.308"|1|1.00|100.00|76.00|0|2|0|""|2
606
10206001|"2018-03-16 00:04:56.474"|1|1.00|100.00|74.00|0|2|0|""|2
607
10106001|"2018-03-16 00:04:58.592"|1|1.00|100.00|47.00|0|2|0|""|2
608
10092001|"2018-03-16 00:04:59.946"|1|1.00|100.00|49.00|0|2|0|""|2
609
10123002|"2018-03-16 00:05:01.308"|1|1.00|100.00|76.00|0|2|0|""|2
610
10106101|"2018-03-16 00:05:02.496"|1|1.00|100.00|46.00|0|2|4|"0,46;1,47;2,48;3,49;4,49;5,49;6,51;7,55;8,46;9,60;"|2
611
10106201|"2018-03-16 00:05:02.306"|1|1.00|100.00|47.00|0|2|0|""|2
612
10092101|"2018-03-16 00:05:03.804"|1|1.00|100.00|47.00|0|2|5|"0,47;1,49;2,49;3,49;4,49;5,49;6,49;7,49;8,49;9,48;10,47;"|2
613
10106001|"2018-03-16 00:05:03.592"|1|1.00|100.00|47.00|0|2|0|""|2
614
10092001|"2018-03-16 00:05:04.946"|1|1.00|100.00|49.00|0|2|0|""|2
615
10106101|"2018-03-16 00:05:04.017"|1|1.00|100.00|44.00|0|2|6|"0,44;1,45;2,46;3,48;4,48;5,48;6,49;7,50;8,53;9,55;10,60;"|2
616
10070001|"2018-03-16 00:05:08.536"|1|1.00|100.00|53.00|0|2|0|""|2
617
10106001|"2018-03-16 00:05:08.592"|1|1.00|100.00|47.00|0|2|0|""|2
618
10070101|"2018-03-16 00:05:09.567"|1|1.00|100.00|51.00|0|2|8|"0,51;1,54;2,55;3,58;4,61;5,63;6,66;7,67;8,68;"|2
619
10085102|"2018-03-16 00:05:10.810"|1|1.00|100.00|0.00|0|2|7|""|2
620
10069001|"2018-03-16 00:05:12.321"|1|1.00|100.00|47.00|0|2|0|""|2
621
10206001|"2018-03-16 00:05:14.608"|1|1.00|100.00|50.00|0|2|0|""|2
622
10206201|"2018-03-16 00:05:14.983"|1|1.00|100.00|53.00|0|2|0|""|2
623
10106102|"2018-03-16 00:05:15.497"|1|1.00|100.00|44.00|0|2|4|""|2
624
10206101|"2018-03-16 00:05:15.574"|1|1.00|100.00|47.00|0|2|10|"0,47;1,52;2,54;3,54;4,55;5,58;6,61;7,65;8,69;9,73;10,74;"|2
625
10069001|"2018-03-16 00:05:17.321"|1|1.00|100.00|47.00|0|2|0|""|2
626
10060102|"2018-03-16 00:05:18.094"|1|3.00|100.00|0.00|0|4|2|""|8
627
10095001|"2018-03-16 00:05:18.264"|1|1.00|100.00|47.00|0|2|0|""|2
628
10095101|"2018-03-16 00:05:18.327"|1|1.00|100.00|46.00|0|2|12|"0,46;1,47;2,47;3,47;4,47;5,48;6,49;"|2
629
10095201|"2018-03-16 00:05:18.194"|1|1.00|100.00|48.00|0|2|0|""|2
630
10051001|"2018-03-16 00:05:19.534"|1|1.00|100.00|43.00|0|2|0|""|2
631
10051201|"2018-03-16 00:05:19.199"|1|1.00|100.00|45.00|0|2|0|""|2
632
10060002|"2018-03-16 00:05:19.590"|1|1.00|100.00|91.00|0|2|0|""|2
633
10085101|"2018-03-16 00:05:19.557"|1|1.00|100.00|0.00|0|2|15|""|2
634
10085201|"2018-03-16 00:05:20.156"|1|1.00|100.00|50.00|0|2|0|""|2
635
10106002|"2018-03-16 00:05:20.572"|1|1.00|100.00|67.00|0|2|0|""|2
636
10109102|"2018-03-16 00:05:21.888"|1|1.00|100.00|41.00|0|2|8|""|2
637
10206102|"2018-03-16 00:05:21.174"|1|1.00|100.00|45.00|0|2|5|""|2
638
10206002|"2018-03-16 00:05:22.723"|1|1.00|100.00|70.00|0|2|0|""|2
639
10085101|"2018-03-16 00:05:24.757"|1|1.00|100.00|0.00|0|2|5|""|2
640
10193102|"2018-03-16 00:05:24.643"|1|1.00|100.00|0.00|0|2|5|""|2
641
10106002|"2018-03-16 00:05:25.572"|1|1.00|100.00|67.00|0|2|0|""|2
642
10204001|"2018-03-16 00:05:25.806"|1|1.00|100.00|47.00|0|2|0|""|2
643
10193002|"2018-03-16 00:05:26.442"|1|1.00|100.00|64.00|0|2|0|""|2
644
10193102|"2018-03-16 00:05:27.093"|1|1.00|100.00|0.00|0|2|7|""|2
645
10206002|"2018-03-16 00:05:28.349"|1|1.00|100.00|99.00|0|2|0|""|2
646
10193102|"2018-03-16 00:05:29.643"|1|1.00|100.00|0.00|0|2|3|""|2
647
10196201|"2018-03-16 00:05:29.118"|1|1.00|100.00|50.00|0|2|0|""|2
648
10112102|"2018-03-16 00:05:30.212"|1|1.00|100.00|41.00|0|2|11|""|2
649
10194001|"2018-03-16 00:05:30.802"|1|1.00|100.00|49.00|0|2|0|""|2
650
10196201|"2018-03-16 00:05:30.358"|1|1.00|100.00|50.00|0|2|0|""|2
651
10199001|"2018-03-16 00:05:30.454"|1|1.00|100.00|48.00|0|2|0|""|2
652
10204001|"2018-03-16 00:05:30.806"|1|1.00|100.00|47.00|0|2|0|""|2
653
10100001|"2018-03-16 00:05:31.485"|1|1.00|100.00|50.00|0|2|0|""|2
654
10193002|"2018-03-16 00:05:31.442"|1|1.00|100.00|64.00|0|2|0|""|2
655
10199101|"2018-03-16 00:05:31.613"|1|1.00|100.00|47.00|0|2|28|"0,47;1,51;2,52;3,55;4,55;5,53;6,51;7,49;8,47;"|2
656
10199201|"2018-03-16 00:05:31.351"|1|1.00|100.00|51.00|0|2|0|""|2
657
10199201|"2018-03-16 00:05:31.471"|1|1.00|100.00|50.00|0|2|0|""|2
658
10109101|"2018-03-16 00:05:32.330"|1|1.00|100.00|36.00|0|2|7|""|2
659
10109201|"2018-03-16 00:05:32.153"|1|1.00|100.00|50.00|0|2|0|""|2
660
10206002|"2018-03-16 00:05:32.724"|1|1.00|100.00|112.00|0|2|0|""|2
661
10109101|"2018-03-16 00:05:33.930"|1|1.00|100.00|35.00|0|2|24|"0,35;1,36;"|2
662
10112002|"2018-03-16 00:05:33.065"|1|1.00|100.00|57.00|0|2|0|""|2
663
10199201|"2018-03-16 00:05:33.151"|1|1.00|100.00|53.00|0|2|0|""|2
664
10204101|"2018-03-16 00:05:33.426"|1|3.00|100.00|44.00|0|4|29|"0,44;1,43;2,43;3,44;4,45;5,47;6,51;7,55;8,60;9,64;10,67;"|8
665
10109001|"2018-03-16 00:05:34.003"|1|1.00|100.00|35.00|0|2|0|""|2
666
10194001|"2018-03-16 00:05:34.022"|1|1.00|100.00|49.00|0|2|0|""|2
667
10100101|"2018-03-16 00:05:35.105"|1|1.00|100.00|49.00|0|2|14|"0,49;1,50;2,49;3,48;4,48;5,47;6,47;7,48;8,48;9,48;10,49;"|2
668
10109201|"2018-03-16 00:05:35.146"|1|1.00|100.00|35.00|0|2|0|""|2
669
10199001|"2018-03-16 00:05:35.454"|1|1.00|100.00|48.00|0|2|0|""|2
670
10204001|"2018-03-16 00:05:35.806"|1|1.00|100.00|47.00|0|2|0|""|2
671
10100001|"2018-03-16 00:05:36.485"|1|1.00|100.00|50.00|0|2|0|""|2
672
10193002|"2018-03-16 00:05:36.442"|1|1.00|100.00|64.00|0|2|0|""|2
673
10194001|"2018-03-16 00:05:37.243"|1|1.00|100.00|49.00|0|2|0|""|2
674
10194101|"2018-03-16 00:05:37.422"|1|1.00|100.00|44.00|0|2|14|"0,44;1,46;2,46;3,49;4,49;5,50;6,49;7,49;8,49;9,51;10,51;"|2
675
10100101|"2018-03-16 00:05:38.005"|1|1.00|100.00|47.00|0|2|17|"0,47;1,49;2,49;3,49;4,50;5,49;6,48;7,48;8,47;9,47;10,48;"|2
676
10112002|"2018-03-16 00:05:38.065"|1|1.00|100.00|57.00|0|2|0|""|2
677
10131201|"2018-03-16 00:05:38.858"|1|1.00|100.00|71.00|0|2|0|""|2
678
10131101|"2018-03-16 00:05:39.145"|1|1.00|100.00|65.00|0|2|23|"0,65;1,70;2,73;3,73;"|2
679
10194101|"2018-03-16 00:05:39.822"|1|3.00|100.00|43.00|0|4|46|"0,43;1,48;2,42;3,47;4,43;5,49;6,49;7,50;8,50;9,49;10,48;"|8
680
10051001|"2018-03-16 00:05:40.026"|1|1.00|100.00|42.00|0|2|0|""|2
681
10131001|"2018-03-16 00:05:40.168"|1|1.00|100.00|67.00|0|2|0|""|2
682
10131201|"2018-03-16 00:05:40.266"|1|1.00|100.00|65.00|0|2|0|""|2
683
10194001|"2018-03-16 00:05:40.464"|1|1.00|100.00|49.00|0|2|0|""|2
684
10206201|"2018-03-16 00:05:40.064"|1|1.00|100.00|50.00|0|2|0|""|2
685
10086102|"2018-03-16 00:05:41.093"|1|1.00|100.00|0.00|0|2|2|""|2
686
10086002|"2018-03-16 00:05:42.442"|1|1.00|100.00|99.00|0|2|0|""|2
687
10106102|"2018-03-16 00:05:42.077"|1|1.00|100.00|0.00|0|2|4|""|2
688
10106002|"2018-03-16 00:05:43.224"|1|1.00|100.00|53.00|0|2|0|""|2
689
10106102|"2018-03-16 00:05:43.518"|1|1.00|100.00|0.00|0|2|4|""|2
690
10194001|"2018-03-16 00:05:43.685"|1|1.00|100.00|41.00|0|2|0|""|2
691
10051101|"2018-03-16 00:05:44.988"|1|1.00|100.00|36.00|0|2|5|"0,36;1,41;2,43;3,44;4,44;5,44;6,44;7,43;8,43;9,43;10,43;"|2
692
10069002|"2018-03-16 00:05:44.316"|1|1.00|100.00|51.00|0|2|0|""|2
693
10114001|"2018-03-16 00:05:44.060"|1|1.00|100.00|44.00|0|2|0|""|2
694
10114201|"2018-03-16 00:05:44.928"|1|1.00|100.00|46.00|0|2|0|""|2
695
10051001|"2018-03-16 00:05:45.026"|1|1.00|100.00|42.00|0|2|0|""|2
696
10086002|"2018-03-16 00:05:45.941"|1|1.00|100.00|99.00|0|2|0|""|2
697
10114101|"2018-03-16 00:05:45.070"|1|1.00|100.00|44.00|0|2|3|"0,44;1,45;2,46;3,47;4,49;5,51;6,53;7,55;"|2
698
10106002|"2018-03-16 00:05:46.414"|1|1.00|100.00|53.00|0|2|0|""|2
699
10114101|"2018-03-16 00:05:46.420"|1|1.00|100.00|41.00|0|2|7|"0,41;1,43;2,45;3,46;4,47;5,48;6,50;7,53;8,54;"|2
700
10108102|"2018-03-16 00:05:48.386"|1|1.00|100.00|0.00|0|2|3|""|2
701
10086002|"2018-03-16 00:05:49.440"|1|1.00|100.00|78.00|0|2|0|""|2
702
10106002|"2018-03-16 00:05:49.604"|1|1.00|100.00|58.00|0|2|0|""|2
703
10114001|"2018-03-16 00:05:49.060"|1|1.00|100.00|44.00|0|2|0|""|2
704
10051001|"2018-03-16 00:05:50.026"|1|1.00|100.00|42.00|0|2|0|""|2
705
10106001|"2018-03-16 00:05:50.571"|1|1.00|100.00|67.00|0|2|0|""|2
706
10117001|"2018-03-16 00:05:51.677"|1|1.00|100.00|60.00|0|2|0|""|2
707
10204001|"2018-03-16 00:05:52.564"|1|1.00|100.00|52.00|0|2|0|""|2
708
10105101|"2018-03-16 00:05:53.936"|1|1.00|100.00|48.00|0|2|41|"0,48;1,49;2,48;3,48;"|2
709
10106001|"2018-03-16 00:05:53.847"|1|1.00|100.00|58.00|0|2|0|""|2
710
10117101|"2018-03-16 00:05:53.121"|1|1.00|100.00|56.00|0|2|11|"0,56;1,60;2,60;3,59;4,59;5,58;6,60;7,63;"|2
711
10204101|"2018-03-16 00:05:53.274"|1|1.00|100.00|46.00|0|2|19|"0,46;1,54;2,57;3,60;4,63;5,65;6,66;7,68;8,70;9,71;10,73;"|2
712
10205001|"2018-03-16 00:05:53.859"|1|1.00|100.00|50.00|0|2|0|""|2
713
10105201|"2018-03-16 00:05:54.831"|1|1.00|100.00|48.00|0|2|0|""|2
714
10105001|"2018-03-16 00:05:55.245"|1|1.00|100.00|45.00|0|2|0|""|2
715
10205102|"2018-03-16 00:05:55.390"|1|1.00|100.00|50.00|0|2|5|""|2
716
10106001|"2018-03-16 00:05:56.952"|1|1.00|100.00|48.00|0|2|0|""|2
717
10196201|"2018-03-16 00:05:56.198"|1|1.00|100.00|50.00|0|2|0|""|2
718
10205002|"2018-03-16 00:05:56.719"|1|1.00|100.00|54.00|0|2|0|""|2
719
10081201|"2018-03-16 00:05:57.920"|1|1.00|100.00|49.00|0|2|0|""|2
720
10104001|"2018-03-16 00:05:57.359"|1|1.00|100.00|33.00|0|2|0|""|2
721
10099001|"2018-03-16 00:05:59.228"|1|1.00|100.00|44.00|0|2|0|""|2
722
10206001|"2018-03-16 00:05:59.852"|1|1.00|100.00|44.00|0|2|0|""|2
723
10105001|"2018-03-16 00:06:00.245"|1|1.00|100.00|45.00|0|2|0|""|2
724
10118102|"2018-03-16 00:06:00.667"|1|3.00|100.00|47.00|0|4|18|""|8
725
10192001|"2018-03-16 00:06:00.478"|1|1.00|100.00|54.00|0|2|0|""|2
726
10205001|"2018-03-16 00:06:00.347"|1|1.00|100.00|51.00|0|2|0|""|2
727
10106001|"2018-03-16 00:06:01.952"|1|1.00|100.00|48.00|0|2|0|""|2
728
10106101|"2018-03-16 00:06:01.930"|1|1.00|100.00|47.00|0|2|7|"0,47;1,47;2,47;3,47;4,48;5,51;6,54;7,56;8,59;9,61;"|2
729
10205101|"2018-03-16 00:06:01.079"|1|1.00|100.00|49.00|0|2|6|"0,49;1,51;2,51;3,52;4,49;5,49;6,49;7,49;8,49;9,51;10,56;"|2
730
10079102|"2018-03-16 00:06:02.199"|1|3.00|100.00|55.00|0|4|12|""|8
731
10099101|"2018-03-16 00:06:02.515"|1|3.00|100.00|45.00|0|4|17|"0,45;1,42;2,41;3,43;4,44;5,49;6,53;7,55;8,60;9,63;"|8
732
10104001|"2018-03-16 00:06:02.359"|1|1.00|100.00|33.00|0|2|0|""|2
733
10099201|"2018-03-16 00:06:03.204"|1|1.00|100.00|43.00|0|2|0|""|2
734
10104101|"2018-03-16 00:06:03.855"|1|1.00|100.00|30.00|0|2|22|"0,30;1,33;2,34;3,35;4,34;5,34;6,33;7,34;8,34;9,35;10,36;"|2
735
10118002|"2018-03-16 00:06:03.521"|1|1.00|100.00|62.00|0|2|0|""|2
736
10079002|"2018-03-16 00:06:04.883"|1|1.00|100.00|57.00|0|2|0|""|2
737
10094102|"2018-03-16 00:06:04.657"|1|1.00|100.00|45.00|0|2|10|""|2
738
10099001|"2018-03-16 00:06:04.228"|1|1.00|100.00|44.00|0|2|0|""|2
739
10125101|"2018-03-16 00:06:04.719"|1|1.00|100.00|0.00|0|2|1|""|2
740
10192101|"2018-03-16 00:06:04.265"|1|1.00|100.00|53.00|0|2|7|"0,53;1,55;2,55;3,55;4,55;5,56;6,57;7,57;8,58;9,60;10,60;"|2
741
10205001|"2018-03-16 00:06:04.980"|1|1.00|100.00|55.00|0|2|0|""|2
742
10206001|"2018-03-16 00:06:04.852"|1|1.00|100.00|44.00|0|2|0|""|2
743
10079102|"2018-03-16 00:06:05.549"|1|1.00|100.00|0.00|0|2|3|""|2
744
10192001|"2018-03-16 00:06:05.478"|1|1.00|100.00|54.00|0|2|0|""|2
745
10106001|"2018-03-16 00:06:06.952"|1|1.00|100.00|48.00|0|2|0|""|2
746
10206201|"2018-03-16 00:06:06.786"|1|1.00|100.00|44.00|0|2|0|""|2
747
10104001|"2018-03-16 00:06:07.359"|1|1.00|100.00|33.00|0|2|0|""|2
748
10206101|"2018-03-16 00:06:07.590"|1|1.00|100.00|41.00|0|2|8|"0,41;1,43;2,43;3,43;4,44;5,44;6,43;7,43;8,44;9,46;10,49;"|2
749
10056102|"2018-03-16 00:06:08.820"|1|1.00|100.00|0.00|0|2|4|""|2
750
10094002|"2018-03-16 00:06:08.009"|1|1.00|100.00|51.00|0|2|0|""|2
751
10118002|"2018-03-16 00:06:08.521"|1|1.00|100.00|62.00|0|2|0|""|2
752
10123001|"2018-03-16 00:06:08.683"|1|1.00|100.00|50.00|0|2|0|""|2
753
10205101|"2018-03-16 00:06:08.829"|1|1.00|100.00|53.00|0|2|11|"0,53;1,55;2,55;3,55;4,56;5,56;6,56;7,52;8,50;9,51;10,51;"|2
754
10079002|"2018-03-16 00:06:09.756"|1|1.00|100.00|58.00|0|2|0|""|2
755
10205001|"2018-03-16 00:06:09.980"|1|1.00|100.00|55.00|0|2|0|""|2
756
10192001|"2018-03-16 00:06:10.478"|1|1.00|100.00|54.00|0|2|0|""|2
757
10056002|"2018-03-16 00:06:11.234"|1|1.00|100.00|44.00|0|2|0|""|2
758
10079002|"2018-03-16 00:06:12.124"|1|1.00|100.00|53.00|0|2|0|""|2
759
10094002|"2018-03-16 00:06:13.009"|1|1.00|100.00|51.00|0|2|0|""|2
760
10118002|"2018-03-16 00:06:13.521"|1|1.00|100.00|62.00|0|2|0|""|2
761
10123001|"2018-03-16 00:06:13.867"|1|1.00|100.00|50.00|0|2|0|""|2
762
10123101|"2018-03-16 00:06:14.052"|1|1.00|100.00|45.00|0|2|5|"0,45;1,47;2,48;3,49;4,51;5,54;6,59;7,64;8,67;9,71;10,75;"|2
763
10192001|"2018-03-16 00:06:16.230"|1|1.00|100.00|57.00|0|2|0|""|2
764
10094002|"2018-03-16 00:06:18.009"|1|1.00|100.00|51.00|0|2|0|""|2
765
10194102|"2018-03-16 00:06:18.960"|1|3.00|100.00|41.00|0|4|24|""|8
766
10105001|"2018-03-16 00:06:19.500"|1|1.00|100.00|47.00|0|2|0|""|2
767
10105101|"2018-03-16 00:06:19.770"|1|1.00|100.00|47.00|0|2|7|"0,47;1,48;2,49;3,54;4,59;5,61;"|2
768
10106001|"2018-03-16 00:06:20.976"|1|1.00|100.00|44.00|0|2|0|""|2
769
10118102|"2018-03-16 00:06:20.056"|1|1.00|100.00|0.00|0|2|3|""|2
770
10118002|"2018-03-16 00:06:21.137"|1|1.00|100.00|89.00|0|2|0|""|2
771
10192001|"2018-03-16 00:06:21.270"|1|1.00|100.00|57.00|0|2|0|""|2
772
10071102|"2018-03-16 00:06:22.791"|1|1.00|100.00|0.00|0|2|5|""|2
773
10071002|"2018-03-16 00:06:23.749"|1|1.00|100.00|41.00|0|2|0|""|2
774
10106101|"2018-03-16 00:06:24.462"|1|1.00|100.00|43.00|0|2|9|"0,43;1,44;2,45;3,45;4,45;5,46;6,47;7,48;8,49;9,48;10,49;"|2
775
10194002|"2018-03-16 00:06:24.686"|1|1.00|100.00|45.00|0|2|0|""|2
776
10106001|"2018-03-16 00:06:26.545"|1|1.00|100.00|44.00|0|2|0|""|2
777
10134002|"2018-03-16 00:06:26.857"|1|1.00|100.00|62.00|0|2|0|""|2
778
10134102|"2018-03-16 00:06:26.001"|1|1.00|100.00|0.00|0|2|7|""|2
779
10192001|"2018-03-16 00:06:26.311"|1|1.00|100.00|57.00|0|2|0|""|2
780
10192101|"2018-03-16 00:06:26.907"|1|1.00|100.00|53.00|0|2|8|"0,53;1,54;2,56;3,57;4,58;5,58;6,59;7,59;8,60;9,60;10,61;"|2
781
10192201|"2018-03-16 00:06:26.887"|1|1.00|100.00|55.00|0|2|0|""|2
782
10192201|"2018-03-16 00:06:27.207"|1|1.00|100.00|55.00|0|2|0|""|2
783
10194002|"2018-03-16 00:06:27.715"|1|1.00|100.00|45.00|0|2|0|""|2
784
10196102|"2018-03-16 00:06:27.198"|1|1.00|100.00|0.00|0|2|3|""|2
785
10071002|"2018-03-16 00:06:28.749"|1|1.00|100.00|41.00|0|2|0|""|2
786
10196002|"2018-03-16 00:06:28.552"|1|1.00|100.00|66.00|0|2|0|""|2
787
10106201|"2018-03-16 00:06:29.589"|1|1.00|100.00|44.00|0|2|0|""|2
788
10117001|"2018-03-16 00:06:29.183"|1|1.00|100.00|53.00|0|2|0|""|2
789
10117101|"2018-03-16 00:06:29.939"|1|3.00|100.00|51.00|0|4|6|"0,51;1,55;2,57;3,58;4,58;5,59;6,59;7,62;"|8
790
10106101|"2018-03-16 00:06:30.827"|1|1.00|100.00|43.00|0|2|8|"0,43;1,44;2,44;3,43;4,42;5,43;6,43;7,43;8,44;9,44;10,45;"|2
791
10194002|"2018-03-16 00:06:30.744"|1|1.00|100.00|45.00|0|2|0|""|2
792
10100001|"2018-03-16 00:06:31.725"|1|1.00|100.00|33.00|0|2|0|""|2
793
10125101|"2018-03-16 00:06:31.963"|1|3.00|100.00|0.00|0|4|28|""|8
794
10134002|"2018-03-16 00:06:31.857"|1|1.00|100.00|62.00|0|2|0|""|2
795
10106001|"2018-03-16 00:06:32.115"|1|1.00|100.00|44.00|0|2|0|""|2
796
10112001|"2018-03-16 00:06:32.195"|1|1.00|100.00|61.00|0|2|0|""|2
797
10071002|"2018-03-16 00:06:33.749"|1|1.00|100.00|41.00|0|2|0|""|2
798
10191201|"2018-03-16 00:06:33.985"|1|1.00|100.00|50.00|0|2|0|""|2
799
10194002|"2018-03-16 00:06:33.773"|1|1.00|100.00|45.00|0|2|0|""|2
800
10082001|"2018-03-16 00:06:35.769"|1|1.00|100.00|63.00|0|2|0|""|2
801
10082101|"2018-03-16 00:06:35.575"|1|1.00|100.00|64.00|0|2|13|"0,64;1,68;"|2
802
10194001|"2018-03-16 00:06:35.171"|1|1.00|100.00|77.00|0|2|0|""|2
803
10134002|"2018-03-16 00:06:36.857"|1|1.00|100.00|62.00|0|2|0|""|2
804
10194002|"2018-03-16 00:06:36.802"|1|1.00|100.00|48.00|0|2|0|""|2
805
10112001|"2018-03-16 00:06:37.195"|1|1.00|100.00|61.00|0|2|0|""|2
806
10112101|"2018-03-16 00:06:38.751"|1|3.00|100.00|53.00|0|4|27|"0,53;1,57;2,60;3,62;4,64;5,65;6,67;7,68;8,69;9,70;10,72;"|8
807
10112201|"2018-03-16 00:06:38.763"|1|1.00|100.00|57.00|0|2|0|""|2
808
10112201|"2018-03-16 00:06:39.018"|1|1.00|100.00|57.00|0|2|0|""|2
809
10125101|"2018-03-16 00:06:39.579"|1|3.00|100.00|0.00|0|4|14|""|8
810
10113102|"2018-03-16 00:06:40.908"|1|1.00|100.00|0.00|0|2|3|""|2
811
10194001|"2018-03-16 00:06:40.558"|1|1.00|100.00|71.00|0|2|0|""|2
812
10194101|"2018-03-16 00:06:41.299"|1|3.00|100.00|67.00|0|4|9|"0,67;1,72;2,73;3,74;"|8
813
10113002|"2018-03-16 00:06:42.573"|1|1.00|100.00|52.00|0|2|0|""|2
814
10095102|"2018-03-16 00:06:43.371"|1|1.00|100.00|43.00|0|2|5|""|2
815
10095002|"2018-03-16 00:06:44.640"|1|1.00|100.00|65.00|0|2|0|""|2
816
10200201|"2018-03-16 00:06:44.308"|1|1.00|100.00|50.00|0|2|0|""|2
817
10125001|"2018-03-16 00:06:46.170"|1|1.00|100.00|54.00|0|2|0|""|2
818
10125101|"2018-03-16 00:06:46.118"|1|3.00|100.00|52.00|0|4|22|"0,52;1,61;2,63;3,64;"|8
819
10085101|"2018-03-16 00:06:47.150"|1|1.00|100.00|0.00|0|2|20|""|2
820
10200102|"2018-03-16 00:06:47.656"|1|1.00|100.00|0.00|0|2|4|""|2
821
10085201|"2018-03-16 00:06:48.474"|1|1.00|100.00|50.00|0|2|0|""|2
822
10204001|"2018-03-16 00:06:48.062"|1|1.00|100.00|51.00|0|2|0|""|2
823
10095002|"2018-03-16 00:06:49.640"|1|1.00|100.00|65.00|0|2|0|""|2
824
10125101|"2018-03-16 00:06:50.218"|1|3.00|100.00|45.00|0|4|51|"0,45;1,45;2,45;3,53;4,58;5,62;6,63;7,64;"|8
825
10200002|"2018-03-16 00:06:50.054"|1|1.00|100.00|57.00|0|2|0|""|2
826
10192001|"2018-03-16 00:06:51.726"|1|1.00|100.00|47.00|0|2|0|""|2
827
10205102|"2018-03-16 00:06:51.218"|1|3.00|100.00|52.00|0|4|18|""|8
828
10101001|"2018-03-16 00:06:52.447"|1|1.00|100.00|63.00|0|2|0|""|2
829
10125001|"2018-03-16 00:06:53.794"|1|1.00|100.00|47.00|0|2|0|""|2
830
10125201|"2018-03-16 00:06:53.478"|1|1.00|100.00|60.00|0|2|0|""|2
831
10204001|"2018-03-16 00:06:53.062"|1|1.00|100.00|51.00|0|2|0|""|2
832
10204101|"2018-03-16 00:06:53.666"|1|1.00|100.00|46.00|0|2|15|"0,46;1,48;2,50;3,52;4,54;5,56;6,58;7,59;8,61;9,63;10,65;"|2
833
10205002|"2018-03-16 00:06:55.981"|1|1.00|100.00|50.00|0|2|0|""|2
834
10125102|"2018-03-16 00:06:56.768"|1|3.00|100.00|43.00|0|4|20|""|8
835
10051001|"2018-03-16 00:06:57.158"|1|1.00|100.00|47.00|0|2|0|""|2
836
10101001|"2018-03-16 00:06:57.329"|1|1.00|100.00|56.00|0|2|0|""|2
837
10198201|"2018-03-16 00:06:58.512"|1|1.00|100.00|50.00|0|2|0|""|2
838
10204001|"2018-03-16 00:06:58.062"|1|1.00|100.00|51.00|0|2|0|""|2
839
10118102|"2018-03-16 00:06:59.795"|1|1.00|100.00|0.00|0|2|3|""|2
840
10125002|"2018-03-16 00:06:59.546"|1|1.00|100.00|68.00|0|2|0|""|2
841
10100102|"2018-03-16 00:07:00.795"|1|1.00|100.00|26.00|0|2|4|""|2
842
10101001|"2018-03-16 00:07:00.590"|1|1.00|100.00|48.00|0|2|0|""|2
843
10205002|"2018-03-16 00:07:00.981"|1|1.00|100.00|50.00|0|2|0|""|2
844
10192101|"2018-03-16 00:07:01.667"|1|1.00|100.00|44.00|0|2|16|"0,44;1,44;2,44;3,44;4,45;5,46;6,46;7,47;8,47;9,48;10,48;"|2
845
10192201|"2018-03-16 00:07:01.015"|1|1.00|100.00|44.00|0|2|0|""|2
846
10051001|"2018-03-16 00:07:02.158"|1|1.00|100.00|47.00|0|2|0|""|2
847
10100002|"2018-03-16 00:07:02.731"|1|1.00|100.00|53.00|0|2|0|""|2
848
10118002|"2018-03-16 00:07:02.013"|1|1.00|100.00|50.00|0|2|0|""|2
849
10101001|"2018-03-16 00:07:03.460"|1|1.00|100.00|48.00|0|2|0|""|2
850
10125002|"2018-03-16 00:07:04.546"|1|1.00|100.00|68.00|0|2|0|""|2
851
10192001|"2018-03-16 00:07:04.971"|1|1.00|100.00|48.00|0|2|0|""|2
852
10205002|"2018-03-16 00:07:05.981"|1|1.00|100.00|50.00|0|2|0|""|2
853
10101001|"2018-03-16 00:07:06.331"|1|1.00|100.00|40.00|0|2|0|""|2
854
10192001|"2018-03-16 00:07:07.804"|1|1.00|100.00|48.00|0|2|0|""|2
855
10229001|"2018-03-16 00:07:07.379"|1|1.00|100.00|47.00|0|2|0|""|2
856
10229201|"2018-03-16 00:07:07.785"|1|1.00|100.00|48.00|0|2|0|""|2
857
10192101|"2018-03-16 00:07:08.967"|1|1.00|100.00|46.00|0|2|13|"0,46;1,48;2,48;3,49;4,50;5,51;6,44;7,44;8,44;9,44;10,44;"|2
858
10192201|"2018-03-16 00:07:08.095"|1|1.00|100.00|48.00|0|2|0|""|2
859
10229101|"2018-03-16 00:07:09.264"|1|1.00|100.00|43.00|0|2|14|"0,43;1,47;2,48;3,48;4,48;5,50;6,51;"|2
860
10192001|"2018-03-16 00:07:10.637"|1|1.00|100.00|48.00|0|2|0|""|2
861
10101001|"2018-03-16 00:07:11.331"|1|1.00|100.00|40.00|0|2|0|""|2
862
10117102|"2018-03-16 00:07:11.060"|1|3.00|100.00|48.00|0|4|19|""|8
863
10192001|"2018-03-16 00:07:13.470"|1|1.00|100.00|46.00|0|2|0|""|2
864
10094102|"2018-03-16 00:07:14.142"|1|1.00|100.00|0.00|0|2|7|""|2
865
10117002|"2018-03-16 00:07:14.931"|1|1.00|100.00|55.00|0|2|0|""|2
866
10204001|"2018-03-16 00:07:14.053"|1|1.00|100.00|74.00|0|2|0|""|2
867
10206102|"2018-03-16 00:07:14.003"|1|1.00|100.00|37.00|0|2|3|""|2
868
10106001|"2018-03-16 00:07:15.467"|1|1.00|100.00|58.00|0|2|0|""|2
869
10206002|"2018-03-16 00:07:15.723"|1|1.00|100.00|67.00|0|2|0|""|2
870
10094002|"2018-03-16 00:07:16.247"|1|1.00|100.00|48.00|0|2|0|""|2
871
10192001|"2018-03-16 00:07:18.470"|1|1.00|100.00|46.00|0|2|0|""|2
872
10192201|"2018-03-16 00:07:18.895"|1|1.00|100.00|45.00|0|2|0|""|2
873
10204101|"2018-03-16 00:07:18.804"|1|1.00|100.00|67.00|0|2|7|"0,67;1,71;2,74;3,76;4,78;5,80;6,82;7,84;8,86;9,87;"|2
874
10094002|"2018-03-16 00:07:19.999"|1|1.00|100.00|48.00|0|2|0|""|2
875
10117002|"2018-03-16 00:07:19.931"|1|1.00|100.00|55.00|0|2|0|""|2
876
10192101|"2018-03-16 00:07:19.656"|1|1.00|100.00|40.00|0|2|19|"0,40;1,44;2,45;3,45;4,46;5,47;6,47;7,47;8,48;9,44;10,46;"|2
877
10204001|"2018-03-16 00:07:19.053"|1|1.00|100.00|74.00|0|2|0|""|2
878
10106101|"2018-03-16 00:07:20.418"|1|1.00|100.00|58.00|0|2|5|"0,58;1,58;2,58;3,58;4,58;5,59;6,60;7,58;8,68;9,70;"|2
879
10206002|"2018-03-16 00:07:20.723"|1|1.00|100.00|67.00|0|2|0|""|2
880
10229001|"2018-03-16 00:07:21.128"|1|1.00|100.00|46.00|0|2|0|""|2
881
10229201|"2018-03-16 00:07:21.181"|1|1.00|100.00|47.00|0|2|0|""|2
882
10113102|"2018-03-16 00:07:22.321"|1|1.00|100.00|0.00|0|2|4|""|2
883
10229101|"2018-03-16 00:07:22.712"|1|1.00|100.00|43.00|0|2|7|"0,43;1,45;2,46;3,47;4,47;5,47;6,47;"|2
884
10094002|"2018-03-16 00:07:23.751"|1|1.00|100.00|48.00|0|2|0|""|2
885
10113002|"2018-03-16 00:07:24.198"|1|1.00|100.00|55.00|0|2|0|""|2
886
10193102|"2018-03-16 00:07:24.172"|1|1.00|100.00|0.00|0|2|5|""|2
887
10229101|"2018-03-16 00:07:24.834"|1|1.00|100.00|39.00|0|2|1|"0,39;1,42;2,44;3,46;4,47;5,48;6,48;7,48;8,47;"|2
888
10196201|"2018-03-16 00:07:26.519"|1|1.00|100.00|50.00|0|2|0|""|2
889
10094002|"2018-03-16 00:07:27.503"|1|1.00|100.00|48.00|0|2|0|""|2
890
10193002|"2018-03-16 00:07:27.936"|1|1.00|100.00|53.00|0|2|0|""|2
891
10109101|"2018-03-16 00:07:28.806"|1|1.00|100.00|35.00|0|2|2|""|2
892
10109201|"2018-03-16 00:07:28.399"|1|1.00|100.00|50.00|0|2|0|""|2
893
10106102|"2018-03-16 00:07:29.864"|1|1.00|100.00|58.00|0|2|14|""|2
894
10113002|"2018-03-16 00:07:29.198"|1|1.00|100.00|55.00|0|2|0|""|2
895
10193102|"2018-03-16 00:07:29.322"|1|3.00|100.00|0.00|0|4|23|""|8
896
10109001|"2018-03-16 00:07:30.251"|1|1.00|100.00|50.00|0|2|0|""|2
897
10109201|"2018-03-16 00:07:30.566"|1|1.00|100.00|50.00|0|2|0|""|2
898
10069001|"2018-03-16 00:07:31.442"|1|1.00|100.00|50.00|0|2|0|""|2
899
10094002|"2018-03-16 00:07:31.255"|1|1.00|100.00|48.00|0|2|0|""|2
900
10094102|"2018-03-16 00:07:31.981"|1|1.00|100.00|0.00|0|2|8|""|2
901
10109101|"2018-03-16 00:07:31.006"|1|1.00|100.00|50.00|0|2|1|"0,50;1,50;"|2
902
10051001|"2018-03-16 00:07:32.146"|1|1.00|100.00|60.00|0|2|0|""|2
903
10104001|"2018-03-16 00:07:32.356"|1|1.00|100.00|49.00|0|2|0|""|2
904
10103102|"2018-03-16 00:07:33.221"|1|1.00|100.00|61.00|0|2|3|""|2
905
10106002|"2018-03-16 00:07:33.438"|1|1.00|100.00|53.00|0|2|0|""|2
906
10051101|"2018-03-16 00:07:34.079"|1|1.00|100.00|56.00|0|2|6|"0,56;1,60;2,61;3,62;4,62;5,63;6,64;7,64;"|2
907
10192001|"2018-03-16 00:07:34.605"|1|1.00|100.00|60.00|0|2|0|""|2
908
10059001|"2018-03-16 00:07:35.561"|1|1.00|100.00|61.00|0|2|0|""|2
909
10094002|"2018-03-16 00:07:35.008"|1|1.00|100.00|48.00|0|2|0|""|2
910
10103002|"2018-03-16 00:07:35.376"|1|1.00|100.00|68.00|0|2|0|""|2
911
10104101|"2018-03-16 00:07:35.133"|1|1.00|100.00|49.00|0|2|2|"0,49;1,50;2,50;3,49;4,48;5,49;6,50;7,49;"|2
912
10104101|"2018-03-16 00:07:35.983"|1|1.00|100.00|47.00|0|2|12|"0,47;1,49;2,51;3,50;4,49;5,48;6,50;7,50;8,49;"|2
913
10105102|"2018-03-16 00:07:35.375"|1|1.00|100.00|43.00|0|2|16|""|2
914
10193002|"2018-03-16 00:07:35.939"|1|1.00|100.00|50.00|0|2|0|""|2
915
10069001|"2018-03-16 00:07:36.497"|1|1.00|100.00|50.00|0|2|0|""|2
916
10122101|"2018-03-16 00:07:36.263"|1|1.00|100.00|0.00|0|2|1|""|2
917
10051001|"2018-03-16 00:07:37.146"|1|1.00|100.00|60.00|0|2|0|""|2
918
10059101|"2018-03-16 00:07:37.334"|1|3.00|100.00|59.00|0|4|5|"0,59;1,61;2,63;3,65;4,67;5,68;"|8
919
10060001|"2018-03-16 00:07:37.467"|1|1.00|100.00|67.00|0|2|0|""|2
920
10104001|"2018-03-16 00:07:37.356"|1|1.00|100.00|49.00|0|2|0|""|2
921
10106002|"2018-03-16 00:07:37.358"|1|1.00|100.00|53.00|0|2|0|""|2
922
10205002|"2018-03-16 00:07:37.970"|1|1.00|100.00|63.00|0|2|0|""|2
923
10205102|"2018-03-16 00:07:37.019"|1|1.00|100.00|0.00|0|2|4|""|2
924
10206102|"2018-03-16 00:07:37.492"|1|1.00|100.00|0.00|0|2|8|""|2
925
10060101|"2018-03-16 00:07:38.624"|1|1.00|100.00|67.00|0|2|2|"0,67;1,68;2,68;3,68;4,67;"|2
926
10105002|"2018-03-16 00:07:38.112"|1|1.00|100.00|48.00|0|2|0|""|2
927
10192001|"2018-03-16 00:07:38.470"|1|1.00|100.00|48.00|0|2|0|""|2
928
10094002|"2018-03-16 00:07:39.839"|1|1.00|100.00|48.00|0|2|0|""|2
929
10193002|"2018-03-16 00:07:39.918"|1|1.00|100.00|50.00|0|2|0|""|2
930
10206002|"2018-03-16 00:07:39.975"|1|1.00|100.00|65.00|0|2|0|""|2
931
10103002|"2018-03-16 00:07:40.376"|1|1.00|100.00|68.00|0|2|0|""|2
932
10106002|"2018-03-16 00:07:41.279"|1|1.00|100.00|53.00|0|2|0|""|2
933
10106001|"2018-03-16 00:07:42.205"|1|1.00|100.00|36.00|0|2|0|""|2
934
10192201|"2018-03-16 00:07:42.721"|1|1.00|100.00|48.00|0|2|0|""|2
935
10205002|"2018-03-16 00:07:42.970"|1|1.00|100.00|63.00|0|2|0|""|2
936
10106101|"2018-03-16 00:07:43.434"|1|1.00|100.00|46.00|0|2|4|"0,46;1,47;2,47;3,47;4,47;5,47;"|2
937
10192001|"2018-03-16 00:07:43.470"|1|1.00|100.00|48.00|0|2|0|""|2
938
10192101|"2018-03-16 00:07:43.056"|1|1.00|100.00|45.00|0|2|11|"0,45;1,47;2,48;3,48;4,49;5,50;6,53;7,57;8,60;9,63;10,66;"|2
939
10192201|"2018-03-16 00:07:43.081"|1|1.00|100.00|48.00|0|2|0|""|2
940
10193002|"2018-03-16 00:07:43.898"|1|1.00|100.00|50.00|0|2|0|""|2
941
10094002|"2018-03-16 00:07:44.670"|1|1.00|100.00|48.00|0|2|0|""|2
942
10117001|"2018-03-16 00:07:44.420"|1|1.00|100.00|51.00|0|2|0|""|2
943
10193001|"2018-03-16 00:07:44.698"|1|1.00|100.00|87.00|0|2|0|""|2
944
10206002|"2018-03-16 00:07:44.224"|1|1.00|100.00|65.00|0|2|0|""|2
945
10106002|"2018-03-16 00:07:45.200"|1|1.00|100.00|63.00|0|2|0|""|2
946
10080001|"2018-03-16 00:07:46.605"|1|1.00|100.00|68.00|0|2|0|""|2
947
10080101|"2018-03-16 00:07:47.670"|1|1.00|100.00|64.00|0|2|6|"0,64;1,70;2,72;3,74;4,76;5,77;"|2
948
10106001|"2018-03-16 00:07:47.205"|1|1.00|100.00|36.00|0|2|0|""|2
949
10193001|"2018-03-16 00:07:47.936"|1|1.00|100.00|80.00|0|2|0|""|2
950
10193002|"2018-03-16 00:07:47.877"|1|1.00|100.00|50.00|0|2|0|""|2
951
10192001|"2018-03-16 00:07:48.470"|1|1.00|100.00|48.00|0|2|0|""|2
952
10200201|"2018-03-16 00:07:48.907"|1|1.00|100.00|50.00|0|2|0|""|2
953
10206002|"2018-03-16 00:07:48.474"|1|1.00|100.00|73.00|0|2|0|""|2
954
10094002|"2018-03-16 00:07:49.502"|1|1.00|100.00|51.00|0|2|0|""|2
955
10117001|"2018-03-16 00:07:49.420"|1|1.00|100.00|51.00|0|2|0|""|2
956
10117101|"2018-03-16 00:07:50.250"|1|1.00|100.00|48.00|0|2|11|"0,48;1,49;2,51;3,52;4,54;5,55;6,54;7,54;8,55;"|2
957
10118102|"2018-03-16 00:07:51.496"|1|1.00|100.00|0.00|0|2|5|""|2
958
10192201|"2018-03-16 00:07:51.841"|1|1.00|100.00|50.00|0|2|0|""|2
959
10193001|"2018-03-16 00:07:51.064"|1|1.00|100.00|51.00|0|2|0|""|2
960
10193002|"2018-03-16 00:07:51.857"|1|1.00|100.00|50.00|0|2|0|""|2
961
10106001|"2018-03-16 00:07:52.205"|1|1.00|100.00|36.00|0|2|0|""|2
962
10118002|"2018-03-16 00:07:52.896"|1|1.00|100.00|69.00|0|2|0|""|2
963
10117102|"2018-03-16 00:07:53.137"|1|3.00|100.00|48.00|0|4|6|""|8
964
10080001|"2018-03-16 00:07:54.101"|1|1.00|100.00|70.00|0|2|0|""|2
965
10080101|"2018-03-16 00:07:54.370"|1|1.00|100.00|68.00|0|2|12|"0,68;1,82;2,90;3,96;4,97;5,68;6,62;7,67;8,71;9,73;10,75;"|2
966
10080201|"2018-03-16 00:07:54.102"|1|1.00|100.00|84.00|0|2|0|""|2
967
10105102|"2018-03-16 00:07:54.564"|1|3.00|100.00|0.00|0|4|19|""|8
968
10117101|"2018-03-16 00:07:54.037"|1|1.00|100.00|44.00|0|2|2|"0,44;1,44;2,44;3,48;4,49;5,50;6,51;7,53;8,55;9,55;10,55;"|2
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff