--- a/.hgignore Wed Oct 08 15:14:58 2014 +0200
+++ b/.hgignore Wed Oct 08 18:08:52 2014 +0200
@@ -1,2 +1,25 @@
syntax: regexp
-utils/pianoroll_test.*
+utils/pianoroll_test*
+
+syntax: regexp
+^client/bower_components$
+syntax: regexp
+^client/build$
+syntax: regexp
+^client/node_modules$
+syntax: regexp
+^.project$
+syntax: regexp
+^annot-server/mymonsenv$
+syntax: regexp
+^.pydevproject$
+syntax: regexp
+^client/.bowerrc$
+syntax: regexp
+^client/.editorconfig$
+syntax: regexp
+^client/.jscsrc$
+syntax: regexp
+^client/.jshintrc$
+syntax: regexp
+^annot-server/twistd.pid$
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/README.md Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,14 @@
+Mons1415 client webapp
+====================
+
+Dev:
+---
+
+- `npm install`
+- `node_modules/.bin/gulp`
+- `node_modules/.bin/bower install -D <some-packages>`
+
+TODO:
+-----
+
+- unit tests
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/app/app.css Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,117 @@
+.row{
+ margin-top: 10px;
+}
+footer{
+ background: none;
+ color: #000;
+ float: left;
+ font: inherit;
+ position: inherit;
+ width: 100%;
+}
+.hand{
+ cursor: pointer;
+}
+.btn-lg{
+ width: 100%;
+ line-height: 2;
+ font-size: 4vw;
+ background-color: #E6E6E6;
+}
+.row{
+ margin-left: 0px;
+ margin-right: 0px;
+}
+.mons-content{
+ width: 100%;
+}
+.mons-button{
+ background-color: #1e1e1e;
+ float: left;
+ margin: 1.66%;
+ overflow: hidden;
+ padding-bottom: 30%;
+ position: relative;
+ width: 45%;
+}
+.mons-button .content{
+ height: 90%;
+ padding: 5%;
+ position: absolute;
+ width: 90%;
+}
+.mons-button .content .table{
+ display: table;
+ height: 100%;
+ width: 100%;
+}
+.mons-button .content .table .table-cell{
+ display: table-cell;
+ text-align: center;
+ vertical-align: middle;
+ text-shadow: 0px 0px 5px #fff;
+}
+.large-cat{
+ font-size: 300%;
+ font-size: 4vw;
+}
+.normal-cat{
+ font-size: 100%;
+ font-size: 2vw;
+}
+.send{
+ background-color: #4cae4c;
+}
+.return{
+ background-color: #e6e6e6;
+}
+.send, .return{
+ padding-bottom: 20%;
+}
+
+/* autocomplete css source : https://github.com/JustGoscha/allmighty-autocomplete/blob/master/style/autocomplete.css */
+.row input{
+ font-size: 1.2em;
+}
+/*.autocomplete{
+ width: 100%;
+ position: relative;
+}
+.autocomplete input{
+ width: 100%;
+ padding:0.4em;
+}
+.autocomplete ul{
+ position: absolute;
+ left: 0;
+ width: 100%;
+ border-left: 1px solid #888;
+ border-right: 1px solid #888;
+ border-bottom: 1px solid #888;
+ z-index: 1;
+ padding-left: 0px;
+}
+.autocomplete li{
+ text-align: left;
+ list-style:none;
+ width: 100%;
+ padding:0.4em;
+ background-color: #fff;
+}
+.autocomplete li.active{
+ width: 100%;
+ background-color: #4bf;
+}
+.autocomplete .highlight {
+ background-color: #E2E2E2;
+}
+.autocomplete li.active .highlight {
+ background: #666;
+ color: #fff;
+}*/
+/* autocomplete css */
+
+/*.ng-scope{
+ border: red 1px solid;
+}*/
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/app/app.js Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,92 @@
+(function(){
+ 'use strict';
+
+ angular.module('mons', [ 'ngResource', 'ngRoute', 'autocomplete' ])
+ .config(function($routeProvider) {
+ $routeProvider.
+ when('/', {
+ controller: 'homeCtrl'
+ }).
+ otherwise({
+ redirectTo: '/'
+ });
+ })
+ .config(function($logProvider){
+ $logProvider.debugEnabled(true);
+ })
+ .service('dataApi', function($resource, context) {
+ console.log('dataApi',$resource, context);
+ this.dataResource = $resource(context.urls.dataUrl);
+ })
+ .service('dataModel', function(dataApi) {
+ //console.log('dataModel',this,dataApi);
+ this.data = dataApi.dataResource.get();
+ })
+ .controller('homeCtrl', function($scope, $location, dataModel){
+ console.log('homeCtrl 1', $scope, $location);
+ $scope.data = dataModel.data;
+
+ dataModel.data.$promise.then(function(data) {
+ if(typeof data.categories!=='undefined' && data.categories.length>0){
+ console.log(' JE RENTRE');
+ var cats = [];
+ var nbCat = data.categories.length;
+ for(var i=0;i<nbCat;i++){
+ cats.push(data.categories[i].label);
+ if(typeof data.categories[i].subcategories!=='undefined' && data.categories[i].subcategories.length>0){
+ var nbSubCat = data.categories[i].subcategories.length;
+ for(var j=0;j<nbSubCat;j++){
+ cats.push(data.categories[i].subcategories[j].label);
+ }
+ }
+ }
+ $scope.allCatLabels = cats;
+ }
+ });
+
+ $scope.selectedlevel = false;
+
+ //console.log('homeCtrl 1-3', dataModel.data.categories);
+ //$scope.selectedlevel = $scope.data.categories;
+ //console.log('homeCtrl 2', $scope.selectedLevel, $scope.data);
+
+ $scope.sendAnnotation = function(eventCode){
+ console.log('ntm', $scope.username);
+ if($scope.username==='' || typeof $scope.username==='undefined'){
+ alert('Vous devez indiquer un nom d\'utilisateur.');
+ return;
+ }
+ if(eventCode==='' || typeof eventCode==='undefined'){
+ alert('Vous devez indiquer un nom de catégorie.');
+ return;
+ }
+ // Send query
+ alert('annotation envoyée ! eventCode = ' + eventCode);
+ };
+
+ $scope.selectLevel = function(i, eventCode){
+ if(i===false){
+ $scope.returnVisStyle = {visibility:'hidden'};
+ $scope.selectedlevel = false;
+ return;
+ }
+ if(typeof $scope.data.categories[i].subcategories!=='undefined' && $scope.data.categories[i].subcategories.length>0){
+ $scope.selectedlevel = $scope.data.categories[i].subcategories;
+ $scope.returnVisStyle = {visibility:'show'};
+ }
+ else{
+ // Send query
+ $scope.sendAnnotation(eventCode);
+ }
+ };
+
+ $scope.onSelect = function(suggestion){
+ console.log('ON SELECT',suggestion);
+ };
+
+ $scope.onAutocompleteType = function(){
+ console.log('onAutocompleteType');
+ };
+ });
+
+})();
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/app/app_controller_test.js Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,7 @@
+'use strict';
+
+describe("app_controller_test", function(){
+ it("should assert something",function(){
+ expect(true).toBe(true);
+ })
+})
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/app/index.html Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,94 @@
+<!doctype html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>Mons by IRI</title>
+ <link rel="stylesheet" href="lib.css">
+ <link rel="stylesheet" href="app.css">
+</head>
+<body ng-controller="homeCtrl" ng-app="mons" ng-cloak>
+ <div class="container">
+ <div class="row">
+ <div class="col-md-12">
+ <form role="form">
+ <input class="form-control" placeholder="Nom d'utilisateur" ng-model="username"/>
+ </form>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-12">
+ <form role="form">
+ <autocomplete ng-model="yourchoice" data="allCatLabels" on-type="onAutocompleteType" attr-input-class="form-control" attr-placeholder="Catégories..." on-select="onSelect" ></autocomplete>
+ </form>
+ </div>
+ </div>
+ <div class="row mons-content">
+ <div class="mons-button hand return" ng-style="returnVisStyle" ng-click="selectLevel(false)" ng-init="returnVisStyle={visibility:'hidden'}">
+ <div class="content">
+ <div class="table">
+ <div class="table-cell">
+ <p class="large-cat">RETOUR</p>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div class="mons-button hand send" ng-click="sendAnnotation(yourchoice)">
+ <div class="content">
+ <div class="table">
+ <div class="table-cell">
+ <p class="large-cat">ENVOYER</p>
+ <p class="normal-cat">la catégorie saisie</p>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div class="mons-content">
+ <div ng-show="!selectedlevel">
+ <div class="mons-button hand" ng-repeat="c in data.categories" style="background-color: {{ c.color }}" ng-click="selectLevel($index, c.event_code)">
+ <div class="content">
+ <div class="table">
+ <div class="table-cell">
+ <p class="large-cat">{{ c.label }}</p>
+ <p class="normal-cat">{{ c.full_label }}</p>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div ng-show="selectedlevel">
+ <div class="mons-button hand" ng-repeat="c in selectedlevel" style="background-color: {{ c.color }}" ng-click="sendAnnotation(c.event_code)">
+ <div class="content">
+ <div class="table">
+ <div class="table-cell">
+ <p class="large-cat">{{ c.label }}</p>
+ <p class="normal-cat">{{ c.full_label }}</p>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ <footer>
+ <div class="row">
+ <div class="col-md-12 text-center">
+ mons vBeta - ©IRI-2014
+ </div>
+ </div>
+ </footer>
+ </div>
+ <script type="text/javascript" src="lib.js"></script>
+ <!--script type="text/javascript" src="templates.js"></script-->
+ <script type="text/javascript" src="app.js"></script>
+ <script type="text/javascript">
+ angular.module("mons")
+ .value('context', {
+ urls: {
+ dataUrl: "data/categories.json"
+ }
+ });
+
+ </script>
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/bower.json Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,25 @@
+{
+ "name": "mons",
+ "main": "app.js",
+ "version": "0.0.0",
+ "authors": [
+ "IRI"
+ ],
+ "license": "Ceccill-C",
+ "private": true,
+ "ignore": [
+ "**/.*",
+ "node_modules",
+ "bower_components",
+ "test",
+ "tests"
+ ],
+ "devDependencies": {
+ "angular": "~1.3",
+ "angular-route": "~1.3",
+ "angular-resource": "~1.3",
+ "angular-bootstrap": "~0.11.0",
+ "allmighty-autocomplete": "*",
+ "bootstrap": "~3.1.1"
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/data/categories.json Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,85 @@
+{
+ "categories": [
+ {
+ "label": "Instruments",
+ "full_label": "Liste des instruments disponibles",
+ "color": "rgb(205,200,63)",
+ "subcategories":[
+ {
+ "label": "Batterie",
+ "full_label": "sous-catégorie 1-1",
+ "color": "rgb(205,200,63)",
+ "event_code": "ntm"
+ },
+ {
+ "label": "Clavier",
+ "full_label": "sous-catégorie 1-2",
+ "color": "rgb(205,200,63)",
+ "event_code": "iam"
+ },
+ {
+ "label": "Guitare",
+ "full_label": "sous-catégorie 1-3",
+ "color": "rgb(205,200,63)",
+ "event_code": "hip"
+ },
+ {
+ "label": "Trombone",
+ "full_label": "sous-catégorie 1-4",
+ "color": "rgb(205,200,63)",
+ "event_code": "hop"
+ }
+ ]
+ },
+ {
+ "label": "Rythmique",
+ "full_label": "catégorie 2",
+ "color": "rgb(222,139,83)",
+ "subcategories":[
+ {
+ "label": "Accélération",
+ "full_label": "sous-catégorie 2-1",
+ "color": "rgb(222,139,83)",
+ "event_code": "rock"
+ },
+ {
+ "label": "Décélération",
+ "full_label": "sous-catégorie 2-2",
+ "color": "rgb(222,139,83)",
+ "event_code": "rap"
+ },
+ {
+ "label": "Pause",
+ "full_label": "sous-catégorie 2-3",
+ "color": "rgb(222,139,83)",
+ "event_code": "classic"
+ }
+ ]
+ },
+ {
+ "label": "Une 3ème cat",
+ "full_label": "catégorie 3",
+ "color": "rgb(197,163,202)",
+ "subcategories":[
+ {
+ "label": "sub cat 3-1",
+ "full_label": "sous-catégorie 3-1",
+ "color": "rgb(197,163,202)",
+ "event_code": "drums"
+ },
+ {
+ "label": "sub cat 3-2",
+ "full_label": "sous-catégorie 3-2",
+ "color": "rgb(197,163,202)",
+ "event_code": "guitar"
+ }
+ ]
+ },
+ {
+ "label": "Annot'direct",
+ "full_label": "catégorie 4",
+ "color": "rgb(121,187,146)",
+ "event_code": "bass"
+ }
+ ]
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/gulpfile.js Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,137 @@
+var gulp = require('gulp');
+var gutil = require('gulp-util')
+var plugins = require("gulp-load-plugins")({lazy:false});
+//var flatten = require('gulp-flatten');
+//var uglify = require('gulp-uglify');
+//var clean = require('gulp-clean');
+//var rename = require('gulp-rename');
+//var filesize = require('gulp-filesize');
+//var cssmin = require('gulp-cssmin');
+
+gulp.task('clean', function () {
+ return gulp.src('build', {read: false})
+ .pipe(clean());
+});
+
+var scriptsSrc = ['!./app/**/*_test.js','./app/**/*.js'];
+
+gulp.task('scripts', function(){
+ //combine all js files of the app
+ gulp.src(scriptsSrc)
+ .pipe(plugins.jshint())
+ .pipe(plugins.jshint.reporter('default'))
+ .pipe(plugins.jshint.reporter('fail'))
+ .pipe(plugins.concat('app.js'))
+ .pipe(gulp.dest('./build'))
+ .pipe(plugins.filesize())
+ .pipe(plugins.uglify())
+ .pipe(plugins.rename('app.min.js'))
+ .pipe(gulp.dest('./build'))
+ .pipe(plugins.filesize())
+ .on('error', gutil.log);
+});
+
+gulp.task('templates',function(){
+ //combine all template files of the app into a js file
+ gulp.src(['!./app/index.html',
+ './app/**/*.html'])
+ .pipe(plugins.angularTemplatecache('templates.js',{standalone:true}))
+ .pipe(gulp.dest('./build'));
+});
+
+gulp.task('css', function(){
+ gulp.src('./app/**/*.css')
+// .pipe(plugins.csslint())
+// .pipe(plugins.csslint.reporter())
+ .pipe(plugins.concat('app.css'))
+ .pipe(gulp.dest('./build'))
+ .pipe(plugins.filesize())
+ .pipe(plugins.minifyCss({keepBreaks:true}))
+ .pipe(plugins.rename('app.min.css'))
+ .pipe(gulp.dest('./build'))
+ .pipe(plugins.filesize());
+});
+
+var vendorJSsrc = [
+ '!./bower_components/**/*.min.js',
+ '!./bower_components/bootstrap/Gruntfile.js',
+ '!./bower_components/bootstrap/grunt/*',
+ '!./bower_components/bootstrap/js/*',
+ '!./bower_components/jquery/src/**/*',
+ '!./bower_components/angular-bootstrap/ui-bootstrap.js',
+ './bower_components/jquery/dist/jquery.js',
+ './bower_components/**/*.js'
+];
+
+gulp.task('vendorJS', function(){
+ //concatenate vendor JS files
+ gulp.src(vendorJSsrc)
+ .pipe(plugins.concat('lib.js'))
+ .pipe(gulp.dest('./build'))
+ .pipe(plugins.filesize())
+ .pipe(plugins.uglify())
+ .pipe(plugins.rename('lib.min.js'))
+ .pipe(gulp.dest('./build'))
+ .pipe(plugins.filesize())
+ .on('error', gutil.log);
+});
+
+gulp.task('vendorCSS', function(){
+ //concatenate vendor CSS files
+ gulp.src(['!./bower_components/**/*.min.css',
+ './bower_components/**/*.css'])
+ .pipe(plugins.concat('lib.css'))
+ .pipe(gulp.dest('./build'))
+ .pipe(plugins.filesize())
+ .pipe(plugins.minifyCss({keepBreaks:true}))
+ .pipe(plugins.rename('lib.min.css'))
+ .pipe(gulp.dest('./build'))
+ .pipe(plugins.filesize());
+});
+
+gulp.task('vendorFonts', function(){
+ gulp.src(['./bower_components/**/fonts/*'])
+ .pipe(plugins.flatten())
+ .pipe(gulp.dest('./build/fonts'));
+});
+
+gulp.task('copy-index', function() {
+ gulp.src('./app/index.html')
+ .pipe(gulp.dest('./build'));
+});
+
+gulp.task('copy-data', function() {
+ gulp.src('./data/**/*')
+ .pipe(gulp.dest('./build/data'));
+});
+
+gulp.task('copy-img', function() {
+ gulp.src('./img/**/*')
+ .pipe(gulp.dest('./build/img'));
+});
+
+gulp.task('watch',function(){
+ gulp.watch([
+ 'build/**/*.html',
+ 'build/**/*.js',
+ 'build/**/*.css'
+ ], function(event) {
+ return gulp.src(event.path)
+ .pipe(plugins.connect.reload());
+ });
+ gulp.watch(['./app/**/*.js','!./app/**/*test.js'],['scripts']);
+ gulp.watch(['!./app/index.html','./app/**/*.html'],['templates']);
+ gulp.watch('./app/**/*.css',['css']);
+ gulp.watch('./app/index.html',['copy-index']);
+ gulp.watch('./data/**/*',['copy-data']);
+ gulp.watch('./img/**/*',['copy-img']);
+
+});
+
+gulp.task('connect', plugins.connect.server({
+ root: ['build'],
+ port: 9000,
+ livereload: true
+}));
+
+gulp.task('default',['connect','scripts','templates','css','copy-index','copy-data','copy-img','vendorJS','vendorCSS','vendorFonts','watch']);
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/karma-unit.js Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,70 @@
+// Karma configuration
+// Generated on Thu Mar 27 2014 15:49:13 GMT+0800 (PHT)
+
+module.exports = function(config) {
+ config.set({
+
+ // base path that will be used to resolve all patterns (eg. files, exclude)
+ basePath: '',
+
+
+ // frameworks to use
+ // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
+ frameworks: ['jasmine'],
+
+
+ // list of files / patterns to load in the browser
+ files: [
+ './build/lib.js',
+ './build/app.js',
+ './build/templates.js',
+ './app/**/*test.js'
+ ],
+
+
+ // list of files to exclude
+ exclude: [
+
+ ],
+
+
+ // preprocess matching files before serving them to the browser
+ // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
+ preprocessors: {
+
+ },
+
+
+ // test results reporter to use
+ // possible values: 'dots', 'progress'
+ // available reporters: https://npmjs.org/browse/keyword/karma-reporter
+ reporters: ['progress'],
+
+
+ // web server port
+ port: 9876,
+
+
+ // enable / disable colors in the output (reporters and logs)
+ colors: true,
+
+
+ // level of logging
+ // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
+ logLevel: config.LOG_DEBUG,
+
+
+ // enable / disable watching file and executing tests whenever any file changes
+ autoWatch: true,
+
+
+ // start these browsers
+ // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
+ browsers: ['Chrome'],
+
+
+ // Continuous Integration mode
+ // if true, Karma captures browsers, runs the tests and exits
+ singleRun: false
+ });
+};
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/package.json Wed Oct 08 18:08:52 2014 +0200
@@ -0,0 +1,33 @@
+{
+ "name": "mons",
+ "version": "0.0.0",
+ "description": "Mons client application",
+ "main": "app.js",
+ "repository": {
+ "type": "mercurial",
+ "url": "http://www.iri.centrepompidou.fr/dev/hg/mons"
+ },
+ "author": "IRI",
+ "license": "Cecill-C",
+ "devDependencies": {
+ "bower": "^1.3.4",
+ "grunt-cli": "^0.1.13",
+ "gulp": "~3.5.5",
+ "gulp-angular-templatecache": "^1.1.0",
+ "gulp-clean": "^0.3.0",
+ "gulp-concat": "~2.1.7",
+ "gulp-connect": "^1.0.7",
+ "gulp-csslint": "^0.1.4",
+ "gulp-filesize": "0.0.6",
+ "gulp-flatten": "0.0.2",
+ "gulp-jshint": "~1.5.0",
+ "gulp-load-plugins": "~0.4.0",
+ "gulp-minify-css": "^0.3.4",
+ "gulp-rename": "^1.2.0",
+ "gulp-uglify": "^0.3.0",
+ "gulp-util": "^2.2.16",
+ "karma": "^0.12.1",
+ "karma-chrome-launcher": "^0.1.2",
+ "karma-jasmine": "^0.1.5"
+ }
+}
--- a/utils/pianoroll_test2.txt Wed Oct 08 15:14:58 2014 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1222 +0,0 @@
-3621580659.45 482 0 65 68
-3621580659.68 714 0 65 0
-3621580659.68 714 0 53 73
-3621580659.92 946 0 53 0
-3621580659.92 946 0 50 96
-3621580660.02 1051 0 50 0
-3621580660.22 1248 0 57 104
-3621580660.28 1306 0 57 0
-3621580660.31 1342 0 61 104
-3621580660.35 1376 0 61 0
-3621580660.35 1376 0 62 103
-3621580660.4 1434 0 62 0
-3621580660.58 1608 0 80 104
-3621580660.62 1655 0 80 0
-3621580660.68 1713 0 83 117
-3621580660.8 1829 0 83 0
-3621580660.8 1829 0 84 117
-3621580660.91 1945 0 84 0
-3621580660.91 1945 0 85 116
-3621580662.04 3071 0 85 0
-3621580662.4 3431 0 50 53
-3621580662.44 3466 0 50 0
-3621580662.56 3593 0 56 57
-3621580662.68 3709 0 56 0
-3621580662.68 3709 0 55 52
-3621580662.8 3826 0 55 0
-3621580662.8 3826 0 68 52
-3621580662.99 4023 0 68 0
-3621580663.13 4162 0 72 49
-3621580663.18 4209 0 72 0
-3621580663.54 4569 0 64 31
-3621580663.71 4743 0 64 0
-3621580663.71 4743 0 63 65
-3621580663.84 4871 0 63 0
-3621580663.84 4871 0 77 62
-3621580663.9 4929 0 77 0
-3621580664.37 5405 0 60 43
-3621580664.42 5451 0 60 0
-3621580664.54 5567 0 50 90
-3621580664.61 5637 0 50 0
-3621580664.7 5730 0 51 92
-3621580664.86 5892 0 51 0
-3621580664.93 5962 0 80 108
-3621580665.11 6136 0 80 0
-3621580665.14 6171 0 80 63
-3621580665.43 6461 0 80 0
-3621580665.55 6578 0 60 31
-3621580665.57 6601 0 60 0
-3621580665.57 6601 0 61 43
-3621580665.67 6705 0 61 0
-3621580665.92 6949 0 53 103
-3621580666.36 7390 0 53 0
-3621580667.16 8191 0 53 63
-3621580667.37 8400 0 53 0
-3621580667.37 8400 0 52 14
-3621580667.39 8423 0 52 0
-3621580667.39 8423 0 53 9
-3621580667.44 8470 0 53 0
-3621580668.14 9166 0 52 41
-3621580668.3 9329 0 52 0
-3621580668.6 9631 0 57 40
-3621580668.77 9805 0 57 0
-3621580670.16 11187 0 58 80
-3621580670.33 11361 0 58 0
-3621580670.33 11361 0 53 98
-3621580670.52 11547 0 53 0
-3621580670.54 11570 0 58 89
-3621580670.88 11906 0 58 0
-3621580670.91 11941 0 58 108
-3621580671.0 12034 0 58 0
-3621580671.19 12220 0 61 107
-3621580671.28 12312 0 61 0
-3621580671.4 12429 0 65 104
-3621580671.49 12522 0 65 0
-3621580671.57 12603 0 82 109
-3621580671.96 12986 0 82 0
-3621580672.04 13067 0 75 80
-3621580672.11 13137 0 75 0
-3621580672.11 13137 0 74 81
-3621580672.61 13636 0 74 0
-3621580672.61 13636 0 75 109
-3621580672.62 13648 0 75 0
-3621580672.62 13648 0 74 106
-3621580672.69 13717 0 74 0
-3621580672.69 13717 0 56 106
-3621580672.75 13776 0 56 0
-3621580672.75 13776 0 72 107
-3621580672.8 13833 0 72 0
-3621580673.02 14054 0 83 69
-3621580673.12 14147 0 83 0
-3621580673.87 14902 0 62 69
-3621580673.91 14937 0 62 0
-3621580674.84 15866 0 58 78
-3621580674.9 15935 0 58 0
-3621580675.37 16400 0 60 79
-3621580675.52 16550 0 60 0
-3621580675.97 17003 0 60 77
-3621580676.02 17049 0 60 0
-3621580676.26 17293 0 56 69
-3621580676.37 17398 0 56 0
-3621580676.37 17398 0 60 87
-3621580676.47 17503 0 60 0
-3621580676.65 17677 0 61 68
-3621580676.68 17711 0 61 0
-3621580676.82 17851 0 56 71
-3621580676.9 17932 0 56 0
-3621580676.9 17932 0 44 70
-3621580676.95 17978 0 44 0
-3621580677.42 18454 0 50 112
-3621580677.69 18721 0 50 0
-3621580678.0 19035 0 64 104
-3621580678.04 19069 0 64 0
-3621580678.36 19395 0 83 115
-3621580678.46 19488 0 83 0
-3621580678.46 19488 0 84 116
-3621580678.48 19511 0 84 0
-3621580678.48 19511 0 83 114
-3621580678.5 19534 0 83 0
-3621580678.5 19534 0 84 115
-3621580678.7 19732 0 84 0
-3621580678.7 19732 0 83 72
-3621580678.72 19755 0 83 0
-3621580678.72 19755 0 84 61
-3621580678.74 19766 0 84 0
-3621580678.74 19766 0 83 63
-3621580678.76 19789 0 83 0
-3621580678.76 19789 0 84 57
-3621580678.83 19859 0 84 0
-3621580678.83 19859 0 83 46
-3621580678.86 19894 0 83 0
-3621580678.86 19894 0 84 33
-3621580678.97 19998 0 84 0
-3621580679.2 20230 0 64 85
-3621580679.28 20312 0 64 0
-3621580679.44 20475 0 61 79
-3621580679.61 20637 0 61 0
-3621580680.13 21159 0 58 86
-3621580680.34 21368 0 58 0
-3621580681.5 22529 0 77 87
-3621580682.0 23029 0 77 0
-3621580682.08 23110 0 79 117
-3621580682.17 23203 0 79 0
-3621580682.59 23621 0 75 100
-3621580683.18 24213 0 75 0
-3621580683.28 24306 0 78 104
-3621580683.46 24492 0 78 0
-3621580683.46 24492 0 79 103
-3621580683.59 24619 0 79 0
-3621580683.59 24619 0 78 85
-3621580683.81 24840 0 78 0
-3621580683.81 24840 0 51 67
-3621580683.9 24933 0 51 0
-3621580683.9 24933 0 58 80
-3621580683.94 24968 0 58 0
-3621580683.94 24968 0 70 78
-3621580684.56 25595 0 70 0
-3621580684.7 25734 0 63 86
-3621580684.85 25885 0 63 0
-3621580684.85 25885 0 64 79
-3621580684.94 25966 0 64 0
-3621580684.94 25966 0 63 93
-3621580684.98 26012 0 63 0
-3621580684.98 26012 0 64 97
-3621580685.11 26140 0 64 0
-3621580685.11 26140 0 76 95
-3621580685.23 26256 0 76 0
-3621580685.23 26256 0 77 107
-3621580685.31 26337 0 77 0
-3621580685.46 26488 0 52 95
-3621580685.48 26512 0 52 0
-3621580685.78 26813 0 68 89
-3621580685.83 26860 0 68 0
-3621580685.9 26929 0 56 76
-3621580685.93 26964 0 56 0
-3621580686.18 27209 0 63 68
-3621580686.34 27371 0 63 0
-3621580686.34 27371 0 64 81
-3621580686.5 27533 0 64 0
-3621580686.5 27533 0 63 74
-3621580686.56 27591 0 63 0
-3621580686.56 27591 0 65 69
-3621580686.65 27684 0 65 0
-3621580686.65 27684 0 62 69
-3621580686.75 27777 0 62 0
-3621580686.75 27777 0 63 70
-3621580686.96 27986 0 63 0
-3621580686.96 27986 0 71 94
-3621580687.34 28370 0 71 0
-3621580687.78 28811 0 59 61
-3621580687.8 28834 0 59 0
-3621580687.86 28891 0 60 65
-3621580688.0 29031 0 60 0
-3621580688.55 29577 0 56 38
-3621580688.63 29658 0 56 0
-3621580688.69 29716 0 53 93
-3621580688.92 29949 0 53 0
-3621580688.92 29949 0 58 94
-3621580689.11 30145 0 58 0
-3621580689.22 30250 0 56 95
-3621580690.01 31040 0 56 0
-3621580690.01 31040 0 55 66
-3621580690.11 31144 0 55 0
-3621580690.11 31144 0 54 86
-3621580690.17 31202 0 54 0
-3621580690.23 31260 0 51 70
-3621580690.35 31376 0 51 0
-3621580690.35 31376 0 53 80
-3621580690.54 31573 0 53 0
-3621580690.54 31573 0 55 62
-3621580690.86 31887 0 55 0
-3621580690.86 31887 0 53 77
-3621580691.37 32398 0 53 0
-3621580691.37 32398 0 52 53
-3621580691.4 32433 0 52 0
-3621580691.4 32433 0 53 73
-3621580691.58 32607 0 53 0
-3621580691.58 32607 0 54 73
-3621580691.65 32677 0 54 0
-3621580691.65 32677 0 53 91
-3621580691.82 32851 0 53 0
-3621580692.12 33152 0 56 38
-3621580692.46 33489 0 56 0
-3621580692.46 33489 0 64 107
-3621580692.59 33617 0 64 0
-3621580692.77 33803 0 89 122
-3621580692.84 33872 0 89 0
-3621580692.93 33965 0 82 115
-3621580692.98 34012 0 82 0
-3621580692.98 34012 0 83 115
-3621580693.14 34174 0 83 0
-3621580693.14 34174 0 84 116
-3621580693.22 34255 0 84 0
-3621580693.22 34255 0 83 115
-3621580693.31 34337 0 83 0
-3621580693.31 34337 0 84 114
-3621580694.01 35045 0 84 0
-3621580694.15 35184 0 55 52
-3621580694.19 35219 0 55 0
-3621580694.56 35591 0 49 34
-3621580694.66 35695 0 49 0
-3621580694.94 35974 0 50 37
-3621580695.16 36194 0 50 0
-3621580695.56 36589 0 53 9
-3621580695.63 36659 0 53 0
-3621580696.68 37715 0 51 116
-3621580697.4 38435 0 51 0
-3621580698.04 39073 0 56 36
-3621580698.08 39108 0 56 0
-3621580698.22 39248 0 53 57
-3621580698.29 39317 0 53 0
-3621580698.55 39584 0 51 52
-3621580698.65 39677 0 51 0
-3621580698.7 39735 0 51 40
-3621580698.77 39805 0 51 0
-3621580698.77 39805 0 50 35
-3621580698.87 39898 0 50 0
-3621580698.94 39967 0 46 31
-3621580699.05 40084 0 46 0
-3621580699.12 40154 0 46 9
-3621580699.19 40223 0 46 0
-3621580700.46 41489 0 51 43
-3621580700.5 41535 0 51 0
-3621580701.9 42928 0 51 101
-3621580702.04 43068 0 51 0
-3621580702.13 43161 0 58 107
-3621580702.15 43184 0 58 0
-3621580702.15 43184 0 77 120
-3621580702.49 43520 0 77 0
-3621580702.52 43555 0 50 71
-3621580703.35 44379 0 50 0
-3621580703.42 44449 0 57 101
-3621580703.51 44542 0 57 0
-3621580703.55 44577 0 53 108
-3621580703.69 44716 0 53 0
-3621580703.69 44716 0 56 102
-3621580705.14 46167 0 56 0
-3621580705.31 46341 0 59 94
-3621580705.31 46342 0 59 0
-3621580705.31 46342 0 60 96
-3621580705.32 46353 0 60 0
-3621580705.32 46353 0 59 98
-3621580705.35 46376 0 59 0
-3621580705.35 46376 0 60 97
-3621580705.4 46434 0 60 0
-3621580705.4 46434 0 61 106
-3621580705.44 46469 0 61 0
-3621580705.44 46469 0 81 112
-3621580705.83 46864 0 81 0
-3621580706.1 47131 0 53 31
-3621580706.55 47584 0 53 0
-3621580707.18 48211 0 53 92
-3621580707.59 48617 0 53 0
-3621580708.18 49209 0 53 69
-3621580708.6 49627 0 53 0
-3621580710.07 51101 0 53 19
-3621580711.43 52460 0 53 0
-3621580711.43 52460 0 54 23
-3621580711.55 52576 0 54 0
-3621580711.55 52576 0 53 92
-3621580712.67 53702 0 53 0
-3621580713.3 54329 0 50 86
-3621580713.44 54468 0 50 0
-3621580713.46 54492 0 50 50
-3621580713.51 54538 0 50 0
-3621580714.6 55630 0 49 61
-3621580714.65 55676 0 49 0
-3621580714.7 55734 0 58 65
-3621580714.72 55746 0 58 0
-3621580714.83 55862 0 58 49
-3621580715.07 56105 0 58 0
-3621580715.76 56791 0 57 68
-3621580715.81 56837 0 57 0
-3621580715.81 56837 0 56 74
-3621580715.97 56999 0 56 0
-3621580715.97 56999 0 57 38
-3621580715.99 57023 0 57 0
-3621580715.99 57023 0 56 32
-3621580716.04 57069 0 56 0
-3621580716.04 57069 0 57 22
-3621580716.1 57127 0 57 0
-3621580716.73 57765 0 76 112
-3621580717.27 58300 0 76 0
-3621580718.48 59507 0 65 117
-3621580718.59 59623 0 65 0
-3621580718.63 59658 0 76 117
-3621580718.71 59740 0 76 0
-3621580718.71 59740 0 77 118
-3621580718.86 59890 0 77 0
-3621580718.86 59890 0 76 108
-3621580718.98 60007 0 76 0
-3621580718.98 60007 0 75 115
-3621580719.17 60204 0 75 0
-3621580719.17 60204 0 78 119
-3621580719.21 60239 0 78 0
-3621580719.21 60239 0 79 115
-3621580719.34 60367 0 79 0
-3621580719.34 60367 0 78 97
-3621580719.35 60378 0 78 0
-3621580719.35 60378 0 79 94
-3621580719.45 60483 0 79 0
-3621580719.45 60483 0 78 75
-3621580719.46 60494 0 78 0
-3621580719.46 60494 0 79 66
-3621580719.54 60575 0 79 0
-3621580719.54 60575 0 78 41
-3621580719.6 60633 0 78 0
-3621580719.6 60633 0 79 27
-3621580719.75 60784 0 79 0
-3621580721.3 62328 0 69 36
-3621580721.7 62735 0 69 0
-3621580721.8 62828 0 69 2
-3621580721.82 62851 0 69 0
-3621580723.31 64337 0 69 60
-3621580723.74 64767 0 69 0
-3621580724.42 65452 0 69 78
-3621580725.06 66090 0 69 0
-3621580725.49 66519 0 77 88
-3621580725.7 66729 0 77 0
-3621580725.7 66729 0 65 102
-3621580725.76 66786 0 65 0
-3621580725.76 66786 0 77 92
-3621580726.19 67216 0 77 0
-3621580726.77 67797 0 69 122
-3621580728.39 69422 0 69 0
-3621580728.39 69422 0 56 84
-3621580728.44 69468 0 56 0
-3621580728.47 69503 0 77 108
-3621580729.0 70026 0 77 0
-3621580729.0 70026 0 64 97
-3621580729.04 70072 0 64 0
-3621580729.04 70072 0 83 108
-3621580729.12 70154 0 83 0
-3621580729.12 70154 0 82 116
-3621580729.17 70200 0 82 0
-3621580729.23 70258 0 80 114
-3621580729.41 70443 0 80 0
-3621580729.41 70443 0 81 109
-3621580729.49 70525 0 81 0
-3621580729.63 70664 0 65 96
-3621580729.69 70723 0 65 0
-3621580729.69 70723 0 68 104
-3621580729.75 70780 0 68 0
-3621580729.75 70780 0 67 103
-3621580729.83 70862 0 67 0
-3621580729.89 70920 0 67 97
-3621580729.96 70989 0 67 0
-3621580730.12 71152 0 67 92
-3621580730.18 71210 0 67 0
-3621580730.25 71279 0 67 99
-3621580730.45 71477 0 67 0
-3621580730.49 71523 0 67 107
-3621580730.56 71593 0 67 0
-3621580730.56 71593 0 68 102
-3621580730.6 71628 0 68 0
-3621580730.6 71628 0 67 89
-3621580730.71 71744 0 67 0
-3621580730.71 71744 0 56 101
-3621580731.35 72383 0 56 0
-3621580731.81 72836 0 55 95
-3621580732.14 73172 0 55 0
-3621580732.19 73219 0 54 72
-3621580732.22 73254 0 54 0
-3621580732.22 73254 0 53 76
-3621580732.65 73683 0 53 0
-3621580732.65 73683 0 51 72
-3621580732.85 73881 0 51 0
-3621580732.85 73881 0 53 82
-3621580733.62 74647 0 53 0
-3621580733.88 74913 0 53 91
-3621580734.18 75215 0 53 0
-3621580734.18 75215 0 58 73
-3621580734.78 75807 0 58 0
-3621580735.08 76109 0 58 93
-3621580735.33 76365 0 58 0
-3621580735.66 76690 0 54 65
-3621580735.85 76876 0 54 0
-3621580735.85 76876 0 53 91
-3621580738.0 79035 0 53 0
-3621580738.0 79035 0 52 60
-3621580738.32 79349 0 52 0
-3621580739.47 80498 0 52 89
-3621580739.66 80695 0 52 0
-3621580739.66 80695 0 53 109
-3621580739.9 80928 0 53 0
-3621580739.96 80986 0 58 70
-3621580740.25 81276 0 58 0
-3621580740.27 81299 0 58 36
-3621580740.31 81345 0 58 0
-3621580741.2 82228 0 58 92
-3621580741.5 82530 0 58 0
-3621580741.5 82530 0 65 83
-3621580742.5 83528 0 65 0
-3621580743.23 84260 0 65 79
-3621580743.58 84608 0 65 0
-3621580743.58 84608 0 59 81
-3621580743.79 84817 0 59 0
-3621580743.79 84817 0 58 62
-3621580745.23 86257 0 58 0
-3621580745.23 86257 0 57 42
-3621580745.68 86709 0 57 0
-3621580747.43 88463 0 57 69
-3621580747.82 88846 0 57 0
-3621580747.82 88846 0 56 57
-3621580747.85 88880 0 56 0
-3621580747.85 88880 0 57 53
-3621580747.87 88903 0 57 0
-3621580747.87 88903 0 56 47
-3621580747.99 89020 0 56 0
-3621580747.99 89020 0 55 85
-3621580748.44 89473 0 55 0
-3621580748.58 89612 0 53 65
-3621580748.77 89797 0 53 0
-3621580749.08 90111 0 53 54
-3621580749.35 90378 0 53 0
-3621580749.51 90541 0 51 61
-3621580749.86 90889 0 51 0
-3621580749.96 90993 0 50 68
-3621580750.26 91295 0 50 0
-3621580751.67 92700 0 49 56
-3621580751.74 92770 0 49 0
-3621580751.8 92828 0 54 69
-3621580752.01 93037 0 54 0
-3621580752.01 93037 0 53 61
-3621580752.11 93141 0 53 0
-3621580752.17 93199 0 51 56
-3621580752.23 93257 0 51 0
-3621580753.0 94035 0 66 60
-3621580753.13 94163 0 66 0
-3621580753.13 94163 0 46 55
-3621580753.19 94221 0 46 0
-3621580753.39 94419 0 46 58
-3621580753.41 94442 0 46 0
-3621580754.04 95069 0 59 52
-3621580754.19 95219 0 59 0
-3621580754.19 95219 0 58 48
-3621580754.5 95533 0 58 0
-3621580754.5 95533 0 55 66
-3621580754.57 95603 0 55 0
-3621580754.68 95707 0 56 59
-3621580754.69 95719 0 56 0
-3621580754.71 95742 0 56 59
-3621580754.82 95847 0 56 0
-3621580755.19 96218 0 57 62
-3621580755.25 96276 0 57 0
-3621580755.25 96276 0 58 55
-3621580755.26 96288 0 58 0
-3621580755.26 96288 0 57 51
-3621580755.29 96323 0 57 0
-3621580755.29 96323 0 58 44
-3621580755.44 96473 0 58 0
-3621580755.44 96473 0 57 50
-3621580755.56 96590 0 57 0
-3621580755.56 96590 0 55 50
-3621580755.61 96636 0 55 0
-3621580755.68 96706 0 51 56
-3621580755.77 96798 0 51 0
-3621580756.62 97646 0 48 54
-3621580756.63 97658 0 48 0
-3621580757.02 98052 0 57 52
-3621580757.1 98134 0 57 0
-3621580757.1 98134 0 44 53
-3621580757.15 98180 0 44 0
-3621580757.9 98935 0 44 44
-3621580758.0 99028 0 44 0
-3621580759.03 100061 0 48 43
-3621580759.08 100107 0 48 0
-3621580759.19 100223 0 48 39
-3621580759.24 100270 0 48 0
-3621580767.41 108443 0 53 69
-3621580767.87 108896 0 53 0
-3621580770.51 111543 0 53 60
-3621580770.81 111845 0 53 0
-3621580770.81 111845 0 50 71
-3621580770.98 112008 0 50 0
-3621580771.41 112437 0 53 70
-3621580771.67 112704 0 53 0
-3621580771.67 112704 0 51 67
-3621580771.82 112855 0 51 0
-3621580771.82 112855 0 53 84
-3621580772.01 113041 0 53 0
-3621580772.01 113041 0 54 79
-3621580772.21 113238 0 54 0
-3621580772.21 113238 0 53 90
-3621580772.37 113401 0 53 0
-3621580772.37 113401 0 52 82
-3621580772.57 113598 0 52 0
-3621580772.57 113598 0 53 84
-3621580772.75 113784 0 53 0
-3621580772.75 113784 0 50 73
-3621580772.93 113958 0 50 0
-3621580772.93 113958 0 53 85
-3621580773.51 114538 0 53 0
-3621580773.51 114538 0 54 85
-3621580773.68 114713 0 54 0
-3621580773.68 114713 0 53 87
-3621580773.81 114840 0 53 0
-3621580773.81 114840 0 52 91
-3621580774.01 115038 0 52 0
-3621580774.01 115038 0 53 82
-3621580774.24 115270 0 53 0
-3621580774.24 115270 0 50 72
-3621580774.41 115444 0 50 0
-3621580774.41 115444 0 53 89
-3621580774.68 115711 0 53 0
-3621580774.77 115804 0 53 75
-3621580774.91 115943 0 53 0
-3621580774.91 115943 0 54 93
-3621580775.13 116164 0 54 0
-3621580775.13 116164 0 53 95
-3621580775.26 116291 0 53 0
-3621580775.26 116291 0 52 89
-3621580775.44 116466 0 52 0
-3621580775.44 116466 0 53 92
-3621580775.55 116582 0 53 0
-3621580775.61 116640 0 50 83
-3621580775.77 116803 0 50 0
-3621580775.77 116803 0 53 94
-3621580775.93 116965 0 53 0
-3621580776.02 117046 0 53 74
-3621580776.04 117070 0 53 0
-3621580776.12 117151 0 53 84
-3621580776.25 117278 0 53 0
-3621580776.25 117278 0 54 98
-3621580776.5 117534 0 54 0
-3621580776.5 117534 0 53 93
-3621580776.61 117638 0 53 0
-3621580776.61 117638 0 52 90
-3621580776.76 117789 0 52 0
-3621580776.76 117789 0 53 89
-3621580776.89 117917 0 53 0
-3621580776.93 117964 0 50 85
-3621580777.1 118126 0 50 0
-3621580777.1 118126 0 53 96
-3621580777.19 118219 0 53 0
-3621580777.36 118393 0 51 77
-3621580777.41 118440 0 51 0
-3621580777.41 118440 0 53 91
-3621580777.64 118672 0 53 0
-3621580777.64 118672 0 54 95
-3621580777.86 118892 0 54 0
-3621580777.86 118892 0 53 97
-3621580777.92 118950 0 53 0
-3621580777.92 118950 0 52 104
-3621580778.18 119206 0 52 0
-3621580778.18 119206 0 53 94
-3621580778.41 119438 0 53 0
-3621580778.41 119438 0 50 75
-3621580778.57 119601 0 50 0
-3621580778.57 119601 0 53 94
-3621580778.7 119728 0 53 0
-3621580778.92 119949 0 53 88
-3621580779.05 120076 0 53 0
-3621580779.05 120076 0 54 92
-3621580779.29 120320 0 54 0
-3621580779.29 120320 0 53 98
-3621580779.36 120390 0 53 0
-3621580779.36 120390 0 52 95
-3621580779.48 120506 0 52 0
-3621580779.48 120506 0 53 89
-3621580779.86 120889 0 53 0
-3621580780.45 121481 0 57 78
-3621580780.5 121528 0 57 0
-3621580780.5 121528 0 50 90
-3621580780.65 121679 0 50 0
-3621580780.65 121679 0 49 57
-3621580780.68 121714 0 49 0
-3621580780.68 121714 0 50 53
-3621580780.74 121771 0 50 0
-3621580785.92 126950 0 50 76
-3621580786.08 127112 0 50 0
-3621580786.14 127170 0 49 80
-3621580786.23 127263 0 49 0
-3621580787.08 128111 0 72 100
-3621580787.14 128169 0 72 0
-3621580788.29 129318 0 51 75
-3621580788.38 129411 0 51 0
-3621580789.54 130572 0 48 55
-3621580789.62 130653 0 48 0
-3621580789.68 130711 0 48 64
-3621580789.83 130862 0 48 0
-3621580790.98 132011 0 59 65
-3621580791.19 132220 0 59 0
-3621580791.43 132464 0 59 65
-3621580791.49 132522 0 59 0
-3621580792.12 133149 0 58 58
-3621580792.2 133231 0 58 0
-3621580792.94 133974 0 44 62
-3621580793.01 134043 0 44 0
-3621580793.61 134636 0 56 57
-3621580793.63 134659 0 56 0
-3621580796.51 137538 0 50 75
-3621580796.57 137596 0 50 0
-3621580797.06 138095 0 44 56
-3621580797.2 138234 0 44 0
-3621580797.2 138234 0 56 52
-3621580797.23 138258 0 56 0
-3621580797.55 138583 0 47 70
-3621580797.65 138676 0 47 0
-3621580797.78 138815 0 44 62
-3621580797.84 138873 0 44 0
-3621580799.85 140882 0 48 55
-3621580799.96 140986 0 48 0
-3621580800.36 141392 0 44 65
-3621580800.4 141427 0 44 0
-3621580800.97 141996 0 50 100
-3621580801.28 142309 0 50 0
-3621580801.28 142309 0 64 106
-3621580801.66 142693 0 64 0
-3621580801.66 142693 0 66 98
-3621580801.81 142843 0 66 0
-3621580801.81 142843 0 67 69
-3621580801.91 142936 0 67 0
-3621580801.91 142936 0 66 49
-3621580802.03 143064 0 66 0
-3621580802.03 143064 0 67 49
-3621580802.07 143099 0 67 0
-3621580803.31 144341 0 50 73
-3621580803.59 144620 0 50 0
-3621580803.61 144643 0 64 86
-3621580803.94 144968 0 64 0
-3621580803.98 145015 0 66 84
-3621580804.33 145363 0 66 0
-3621580804.38 145409 0 50 85
-3621580804.7 145734 0 50 0
-3621580804.7 145734 0 64 68
-3621580805.01 146037 0 64 0
-3621580805.05 146083 0 66 75
-3621580805.39 146420 0 66 0
-3621580805.39 146420 0 67 64
-3621580805.5 146535 0 67 0
-3621580805.5 146535 0 50 109
-3621580805.57 146605 0 50 0
-3621580805.57 146605 0 69 110
-3621580805.66 146686 0 69 0
-3621580805.66 146686 0 50 83
-3621580805.74 146768 0 50 0
-3621580805.74 146768 0 69 67
-3621580805.9 146930 0 69 0
-3621580806.27 147302 0 64 26
-3621580806.41 147442 0 64 0
-3621580806.41 147442 0 65 19
-3621580806.46 147488 0 65 0
-3621580807.22 148254 0 49 44
-3621580807.32 148347 0 49 0
-3621580807.5 148533 0 52 39
-3621580807.53 148556 0 52 0
-3621580807.53 148556 0 51 43
-3621580807.71 148741 0 51 0
-3621580807.85 148881 0 50 97
-3621580807.99 149020 0 50 0
-3621580808.16 149194 0 64 83
-3621580808.36 149392 0 64 0
-3621580808.52 149554 0 66 95
-3621580808.9 149926 0 66 0
-3621580808.93 149961 0 50 93
-3621580809.05 150077 0 50 0
-3621580809.09 150123 0 50 72
-3621580809.15 150181 0 50 0
-3621580809.24 150274 0 64 90
-3621580809.6 150634 0 64 0
-3621580809.6 150634 0 66 83
-3621580810.02 151052 0 66 0
-3621580810.02 151052 0 50 95
-3621580810.36 151389 0 50 0
-3621580810.36 151389 0 64 94
-3621580810.57 151598 0 64 0
-3621580810.64 151667 0 64 56
-3621580810.73 151760 0 64 0
-3621580810.73 151760 0 66 84
-3621580811.11 152143 0 66 0
-3621580811.11 152143 0 50 99
-3621580811.46 152491 0 50 0
-3621580811.46 152491 0 64 88
-3621580811.79 152817 0 64 0
-3621580811.79 152817 0 66 91
-3621580812.19 153223 0 66 0
-3621580812.19 153223 0 50 102
-3621580812.54 153571 0 50 0
-3621580812.54 153571 0 64 93
-3621580812.89 153920 0 64 0
-3621580812.89 153920 0 66 87
-3621580813.26 154291 0 66 0
-3621580813.26 154291 0 50 96
-3621580813.64 154674 0 50 0
-3621580813.64 154674 0 64 97
-3621580813.97 154999 0 64 0
-3621580813.97 154999 0 66 92
-3621580814.36 155394 0 66 0
-3621580814.36 155394 0 50 94
-3621580814.69 155719 0 50 0
-3621580814.69 155719 0 64 96
-3621580815.01 156044 0 64 0
-3621580815.01 156044 0 66 100
-3621580815.62 156648 0 66 0
-3621580816.13 157159 0 50 82
-3621580816.53 157565 0 50 0
-3621580816.53 157565 0 64 72
-3621580816.82 157855 0 64 0
-3621580816.82 157855 0 66 95
-3621580817.2 158227 0 66 0
-3621580817.22 158250 0 50 98
-3621580817.53 158564 0 50 0
-3621580817.53 158564 0 64 96
-3621580817.86 158889 0 64 0
-3621580817.86 158889 0 66 104
-3621580818.23 159260 0 66 0
-3621580818.23 159260 0 50 96
-3621580818.54 159573 0 50 0
-3621580818.54 159573 0 64 83
-3621580818.88 159910 0 64 0
-3621580818.88 159910 0 66 95
-3621580819.24 160270 0 66 0
-3621580819.24 160270 0 50 107
-3621580819.54 160572 0 50 0
-3621580819.54 160572 0 64 94
-3621580819.88 160909 0 64 0
-3621580819.88 160909 0 66 95
-3621580820.23 161257 0 66 0
-3621580820.23 161257 0 65 83
-3621580820.3 161327 0 65 0
-3621580820.3 161327 0 77 108
-3621580820.84 161872 0 77 0
-3621580820.9 161930 0 77 16
-3621580820.95 161977 0 77 0
-3621580821.36 162395 0 50 95
-3621580821.71 162743 0 50 0
-3621580821.71 162743 0 64 87
-3621580822.06 163091 0 64 0
-3621580822.06 163091 0 66 92
-3621580822.39 163417 0 66 0
-3621580822.39 163417 0 67 74
-3621580822.44 163475 0 67 0
-3621580822.44 163475 0 66 74
-3621580822.51 163544 0 66 0
-3621580822.51 163544 0 50 89
-3621580822.78 163811 0 50 0
-3621580825.49 166516 0 54 74
-3621580825.52 166551 0 54 0
-3621580826.91 167944 0 50 113
-3621580827.22 168246 0 50 0
-3621580827.22 168246 0 64 97
-3621580827.56 168594 0 64 0
-3621580827.56 168594 0 66 95
-3621580827.94 168966 0 66 0
-3621580827.94 168966 0 50 89
-3621580828.25 169280 0 50 0
-3621580828.25 169280 0 64 98
-3621580828.59 169617 0 64 0
-3621580828.59 169617 0 66 96
-3621580828.98 170011 0 66 0
-3621580828.98 170011 0 50 99
-3621580829.33 170359 0 50 0
-3621580829.33 170359 0 64 103
-3621580829.63 170661 0 64 0
-3621580829.63 170661 0 66 97
-3621580829.97 170998 0 66 0
-3621580830.03 171056 0 50 106
-3621580830.32 171346 0 50 0
-3621580830.32 171346 0 63 101
-3621580830.35 171381 0 63 0
-3621580830.35 171381 0 64 104
-3621580830.66 171695 0 64 0
-3621580830.66 171695 0 66 96
-3621580830.98 172008 0 66 0
-3621580831.01 172043 0 50 99
-3621580831.37 172402 0 50 0
-3621580831.37 172402 0 64 106
-3621580831.67 172705 0 64 0
-3621580831.67 172705 0 66 105
-3621580832.0 173030 0 66 0
-3621580832.05 173076 0 50 100
-3621580832.36 173389 0 50 0
-3621580832.36 173389 0 64 108
-3621580832.68 173715 0 64 0
-3621580832.68 173715 0 66 103
-3621580833.01 174040 0 66 0
-3621580833.06 174086 0 50 97
-3621580833.37 174400 0 50 0
-3621580833.37 174400 0 63 107
-3621580833.39 174423 0 63 0
-3621580833.39 174423 0 64 109
-3621580833.62 174655 0 64 0
-3621580833.72 174748 0 66 100
-3621580833.79 174817 0 66 0
-3621580833.82 174853 0 66 100
-3621580833.89 174922 0 66 0
-3621580834.15 175178 0 57 116
-3621580834.27 175305 0 57 0
-3621580835.37 176396 0 63 85
-3621580835.4 176431 0 63 0
-3621580835.88 176907 0 62 63
-3621580835.96 176989 0 62 0
-3621580835.96 176989 0 61 60
-3621580836.04 177070 0 61 0
-3621580836.39 177418 0 60 55
-3621580836.43 177465 0 60 0
-3621580837.34 178370 0 54 53
-3621580837.37 178405 0 54 0
-3621580837.57 178602 0 65 116
-3621580837.6 178626 0 65 0
-3621580837.72 178753 0 65 118
-3621580837.83 178858 0 65 0
-3621580837.83 178858 0 84 118
-3621580837.91 178939 0 84 0
-3621580838.21 179241 0 65 116
-3621580838.31 179345 0 65 0
-3621580838.31 179345 0 66 117
-3621580838.37 179403 0 66 0
-3621580838.42 179450 0 64 114
-3621580838.44 179473 0 64 0
-3621580838.49 179520 0 64 116
-3621580838.56 179589 0 64 0
-3621580838.7 179729 0 64 115
-3621580838.74 179775 0 64 0
-3621580838.74 179775 0 65 115
-3621580838.91 179937 0 65 0
-3621580839.21 180239 0 56 98
-3621580839.34 180367 0 56 0
-3621580839.51 180541 0 56 91
-3621580839.64 180669 0 56 0
-3621580839.86 180889 0 57 93
-3621580840.03 181063 0 57 0
-3621580840.16 181191 0 63 110
-3621580840.23 181261 0 63 0
-3621580840.23 181261 0 62 108
-3621580840.28 181307 0 62 0
-3621580840.28 181307 0 64 114
-3621580840.4 181435 0 64 0
-3621580840.98 182015 0 54 62
-3621580841.01 182039 0 54 0
-3621580841.1 182132 0 54 59
-3621580841.24 182271 0 54 0
-3621580841.62 182654 0 50 93
-3621580841.87 182898 0 50 0
-3621580841.93 182956 0 64 90
-3621580842.29 183316 0 64 0
-3621580842.29 183316 0 66 89
-3621580842.63 183664 0 66 0
-3621580842.7 183734 0 50 89
-3621580842.74 183769 0 50 0
-3621580842.82 183850 0 50 67
-3621580842.89 183920 0 50 0
-3621580842.98 184013 0 64 93
-3621580843.33 184361 0 64 0
-3621580843.33 184361 0 66 89
-3621580843.69 184721 0 66 0
-3621580843.72 184755 0 50 96
-3621580843.97 184999 0 50 0
-3621580844.06 185092 0 64 104
-3621580844.36 185394 0 64 0
-3621580844.36 185394 0 66 90
-3621580844.55 185580 0 66 0
-3621580844.85 185882 0 50 82
-3621580844.89 185917 0 50 0
-3621580845.06 186091 0 64 104
-3621580845.23 186265 0 64 0
-3621580845.33 186358 0 66 105
-3621580845.49 186520 0 66 0
-3621580845.58 186613 0 65 118
-3621580845.62 186648 0 65 0
-3621580845.62 186648 0 64 119
-3621580845.72 186753 0 64 0
-3621580845.78 186811 0 64 117
-3621580845.85 186880 0 64 0
-3621580846.11 187136 0 65 117
-3621580846.22 187252 0 65 0
-3621580846.28 187310 0 66 114
-3621580846.45 187484 0 66 0
-3621580846.71 187740 0 57 100
-3621580846.87 187902 0 57 0
-3621580846.95 187983 0 64 101
-3621580847.08 188111 0 64 0
-3621580847.08 188111 0 63 101
-3621580847.13 188157 0 63 0
-3621580847.13 188157 0 64 97
-3621580847.18 188215 0 64 0
-3621580847.35 188378 0 76 117
-3621580847.43 188459 0 76 0
-3621580847.64 188668 0 75 116
-3621580847.67 188703 0 75 0
-3621580847.95 188982 0 80 117
-3621580847.99 189017 0 80 0
-3621580848.03 189063 0 65 118
-3621580848.08 189109 0 65 0
-3621580848.21 189237 0 80 118
-3621580848.4 189435 0 80 0
-3621580848.4 189435 0 81 111
-3621580849.21 190236 0 81 0
-3621580849.81 190839 0 58 63
-3621580850.19 191222 0 58 0
-3621580850.42 191455 0 50 64
-3621580850.57 191605 0 50 0
-3621580851.41 192442 0 50 94
-3621580851.79 192824 0 50 0
-3621580851.79 192824 0 63 87
-3621580852.26 193289 0 63 0
-3621580852.5 193533 0 50 85
-3621580852.85 193881 0 50 0
-3621580852.85 193881 0 64 94
-3621580853.16 194194 0 64 0
-3621580853.16 194194 0 66 84
-3621580853.51 194543 0 66 0
-3621580853.51 194543 0 50 82
-3621580853.85 194880 0 50 0
-3621580853.85 194880 0 64 89
-3621580854.2 195228 0 64 0
-3621580854.2 195228 0 66 91
-3621580854.57 195599 0 66 0
-3621580854.57 195599 0 50 84
-3621580854.91 195936 0 50 0
-3621580854.91 195936 0 64 92
-3621580855.21 196238 0 64 0
-3621580855.21 196238 0 66 92
-3621580855.52 196551 0 66 0
-3621580855.56 196586 0 50 94
-3621580855.87 196899 0 50 0
-3621580855.87 196899 0 64 98
-3621580856.16 197190 0 64 0
-3621580856.16 197190 0 66 90
-3621580856.48 197515 0 66 0
-3621580856.48 197515 0 50 94
-3621580856.81 197840 0 50 0
-3621580856.81 197840 0 64 105
-3621580857.04 198072 0 64 0
-3621580857.04 198072 0 66 105
-3621580857.18 198211 0 66 0
-3621580857.18 198211 0 64 118
-3621580857.26 198293 0 64 0
-3621580857.26 198293 0 65 121
-3621580857.36 198386 0 65 0
-3621580857.36 198386 0 67 118
-3621580857.41 198444 0 67 0
-3621580857.48 198513 0 64 117
-3621580857.56 198595 0 64 0
-3621580857.56 198595 0 66 122
-3621580857.63 198665 0 66 0
-3621580857.63 198665 0 65 121
-3621580857.95 198978 0 65 0
-3621580858.02 199047 0 56 84
-3621580858.09 199117 0 56 0
-3621580858.34 199373 0 62 64
-3621580858.38 199407 0 62 0
-3621580858.38 199407 0 61 57
-3621580858.45 199477 0 61 0
-3621580858.45 199477 0 62 75
-3621580858.55 199581 0 62 0
-3621580858.55 199581 0 65 82
-3621580858.64 199674 0 65 0
-3621580858.79 199825 0 61 67
-3621580858.81 199837 0 61 0
-3621580858.86 199895 0 56 101
-3621580859.05 200081 0 56 0
-3621580859.05 200081 0 76 113
-3621580859.14 200174 0 76 0
-3621580859.14 200174 0 75 117
-3621580859.38 200406 0 75 0
-3621580859.54 200568 0 65 96
-3621580859.91 200940 0 65 0
-3621580859.97 200998 0 63 108
-3621580860.06 201091 0 63 0
-3621580860.06 201091 0 65 117
-3621580860.1 201126 0 65 0
-3621580860.15 201184 0 83 118
-3621580860.26 201288 0 83 0
-3621580860.26 201288 0 82 120
-3621580860.37 201404 0 82 0
-3621580860.37 201404 0 83 113
-3621580860.41 201439 0 83 0
-3621580860.41 201439 0 84 115
-3621580860.47 201497 0 84 0
-3621580860.47 201497 0 83 106
-3621580860.58 201613 0 83 0
-3621580860.58 201613 0 63 108
-3621580860.72 201753 0 63 0
-3621580860.72 201753 0 65 103
-3621580860.76 201787 0 65 0
-3621580860.76 201787 0 66 102
-3621580860.82 201846 0 66 0
-3621580860.82 201846 0 65 114
-3621580861.07 202101 0 65 0
-3621580861.14 202171 0 64 109
-3621580861.37 202403 0 64 0
-3621580861.37 202403 0 65 105
-3621580861.52 202554 0 65 0
-3621580861.52 202554 0 66 109
-3621580861.62 202647 0 66 0
-3621580861.62 202647 0 67 116
-3621580861.72 202751 0 67 0
-3621580861.72 202751 0 65 114
-3621580861.83 202856 0 65 0
-3621580862.31 203343 0 65 117
-3621580862.39 203424 0 65 0
-3621580862.84 203866 0 65 117
-3621580862.93 203958 0 65 0
-3621580862.93 203958 0 68 116
-3621580862.99 204017 0 68 0
-3621580863.2 204226 0 64 111
-3621580863.23 204261 0 64 0
-3621580863.49 204516 0 85 119
-3621580863.52 204551 0 85 0
-3621580863.62 204655 0 82 119
-3621580863.68 204713 0 82 0
-3621580863.68 204713 0 63 119
-3621580863.79 204818 0 63 0
-3621580864.0 205027 0 63 117
-3621580864.08 205108 0 63 0
-3621580864.16 205189 0 81 112
-3621580864.29 205317 0 81 0
-3621580864.6 205631 0 82 112
-3621580864.73 205758 0 82 0
-3621580864.73 205758 0 84 114
-3621580864.98 206014 0 84 0
-3621580864.98 206014 0 65 98
-3621580864.99 206025 0 65 0
-3621580865.23 206257 0 62 90
-3621580865.32 206350 0 62 0
-3621580865.58 206606 0 63 104
-3621580865.67 206698 0 63 0
-3621580866.59 207616 0 58 52
-3621580866.7 207732 0 58 0
-3621580866.84 207871 0 65 118
-3621580866.91 207941 0 65 0
-3621580866.98 208010 0 67 116
-3621580867.04 208068 0 67 0
-3621580867.1 208126 0 66 118
-3621580867.11 208138 0 66 0
-3621580867.17 208196 0 66 114
-3621580867.19 208220 0 66 0
-3621580867.19 208220 0 65 117
-3621580867.29 208324 0 65 0
-3621580867.29 208324 0 67 117
-3621580867.66 208695 0 67 0
-3621580867.75 208777 0 63 95
-3621580867.82 208846 0 63 0
-3621580867.82 208846 0 62 100
-3621580867.97 208997 0 62 0
-3621580867.97 208997 0 67 105
-3621580868.04 209067 0 67 0
-3621580868.04 209067 0 65 110
-3621580868.2 209230 0 65 0
-3621580868.3 209334 0 64 100
-3621580868.49 209519 0 64 0
-3621580868.54 209566 0 64 103
-3621580868.57 209601 0 64 0
-3621580869.14 210170 0 62 91
-3621580869.42 210449 0 62 0
-3621580869.42 210449 0 66 87
-3621580869.46 210495 0 66 0
-3621580869.46 210495 0 65 101
-3621580869.56 210588 0 65 0
-3621580869.66 210692 0 65 98
-3621580869.71 210739 0 65 0
-3621580869.71 210739 0 66 101
-3621580869.88 210913 0 66 0
-3621580869.88 210913 0 63 103
-3621580869.95 210982 0 63 0
-3621580869.99 211018 0 65 98
-3621580870.01 211041 0 65 0
-3621580870.08 211110 0 66 108
-3621580870.11 211145 0 66 0
-3621580870.11 211145 0 67 123
-3621580870.29 211319 0 67 0
-3621580870.44 211470 0 83 121
-3621580870.72 211749 0 83 0
-3621580870.86 211888 0 67 119
-3621580871.03 212062 0 67 0
-3621580871.14 212167 0 61 112
-3621580871.17 212202 0 61 0
-3621580871.45 212481 0 62 99
-3621580871.48 212515 0 62 0
-3621580871.48 212515 0 63 103
-3621580871.68 212712 0 63 0
-3621580871.68 212712 0 62 86
-3621580871.72 212747 0 62 0
-3621580871.72 212747 0 63 102
-3621580871.76 212794 0 63 0
-3621580871.76 212794 0 64 101
-3621580871.77 212805 0 64 0
-3621580872.13 213165 0 65 116
-3621580872.2 213235 0 65 0
-3621580872.33 213363 0 65 106
-3621580872.38 213409 0 65 0
-3621580872.46 213490 0 65 106
-3621580872.49 213525 0 65 0
-3621580872.49 213525 0 66 106
-3621580872.62 213653 0 66 0
-3621580872.62 213653 0 67 116
-3621580872.75 213781 0 67 0
-3621580872.95 213978 0 63 108
-3621580873.1 214129 0 63 0
-3621580873.1 214129 0 67 123
-3621580873.23 214256 0 67 0
-3621580873.23 214256 0 66 108
-3621580873.39 214419 0 66 0
-3621580873.8 214826 0 77 120
-3621580873.88 214907 0 77 0
-3621580873.88 214907 0 76 117
-3621580873.99 215023 0 76 0
-3621580874.04 215069 0 82 117
-3621580874.1 215128 0 82 0
-3621580874.27 215301 0 64 101
-3621580874.38 215406 0 64 0
-3621580874.78 215812 0 72 110
-3621580874.83 215859 0 72 0
-3621580874.92 215951 0 75 109
-3621580875.0 216033 0 75 0
-3621580875.0 216033 0 74 104
-3621580875.06 216091 0 74 0
-3621580875.06 216091 0 75 111
-3621580875.28 216312 0 75 0
-3621580875.42 216451 0 76 112
-3621580875.57 216602 0 76 0
-3621580875.57 216602 0 75 107
-3621580875.86 216892 0 75 0
-3621580876.07 217101 0 74 96
-3621580876.13 217159 0 74 0
-3621580876.13 217159 0 73 104
-3621580876.22 217252 0 73 0
-3621580876.22 217252 0 74 102
-3621580876.47 217496 0 74 0
-3621580876.47 217496 0 53 95
-3621580876.48 217508 0 53 0
-3621580876.48 217508 0 65 94
-3621580876.59 217624 0 65 0
-3621580876.59 217624 0 64 88
-3621580876.79 217821 0 64 0
-3621580877.07 218099 0 75 116
-3621580877.31 218343 0 75 0
-3621580877.31 218343 0 51 84
-3621580877.48 218506 0 51 0
-3621580877.57 218599 0 72 109
-3621580877.67 218704 0 72 0
-3621580877.75 218785 0 76 117
-3621580878.14 219168 0 76 0
-3621580878.14 219168 0 74 102
-3621580878.42 219446 0 74 0
-3621580878.42 219446 0 75 99
-3621580878.51 219539 0 75 0
-3621580878.51 219539 0 78 108
-3621580878.67 219702 0 78 0
-3621580878.67 219702 0 66 95
-3621580878.78 219806 0 66 0
-3621580878.78 219806 0 65 94
-3621580878.87 219899 0 65 0
-3621580878.87 219899 0 77 111
-3621580878.98 220015 0 77 0
-3621580878.98 220015 0 53 109
-3621580879.18 220212 0 53 0
-3621580879.18 220212 0 79 99
-3621580879.26 220294 0 79 0
-3621580879.26 220294 0 78 104
-3621580879.36 220387 0 78 0
-3621580879.39 220422 0 66 86
-3621580879.43 220456 0 66 0
-3621580879.5 220526 0 76 113
-3621580879.56 220595 0 76 0
-3621580879.6 220631 0 64 108
-3621580879.73 220758 0 64 0
-3621580879.73 220758 0 67 106
-3621580879.76 220793 0 67 0
-3621580879.76 220793 0 66 110
-3621580880.05 221083 0 66 0
-3621580880.05 221083 0 67 104
-3621580880.22 221246 0 67 0
-3621580880.22 221246 0 66 103
-3621580880.31 221339 0 66 0
-3621580880.31 221339 0 67 103
-3621580880.49 221524 0 67 0
-3621580880.49 221524 0 63 96
-3621580880.55 221583 0 63 0
-3621580880.55 221583 0 64 82
-3621580880.74 221768 0 64 0
-3621580880.74 221768 0 66 99
-3621580880.85 221884 0 66 0
-3621580880.85 221884 0 63 99
-3621580881.17 222198 0 63 0
-3621580881.25 222279 0 59 64
-3621580881.28 222314 0 59 0
-3621580881.28 222314 0 60 60
-3621580881.61 222639 0 60 0
-3621580881.65 222685 0 56 41
-3621580881.74 222767 0 56 0
--- a/utils/pianoroll_test3.txt Wed Oct 08 15:14:58 2014 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1222 +0,0 @@
-3621586605.88 482 0 65 68
-3621586606.12 714 0 65 0
-3621586606.12 714 0 53 73
-3621586606.35 946 0 53 0
-3621586606.35 946 0 50 96
-3621586606.45 1051 0 50 0
-3621586606.65 1248 0 57 104
-3621586606.71 1306 0 57 0
-3621586606.74 1342 0 61 104
-3621586606.78 1376 0 61 0
-3621586606.78 1376 0 62 103
-3621586606.84 1434 0 62 0
-3621586607.01 1608 0 80 104
-3621586607.06 1655 0 80 0
-3621586607.12 1713 0 83 117
-3621586607.23 1829 0 83 0
-3621586607.23 1829 0 84 117
-3621586607.35 1945 0 84 0
-3621586607.35 1945 0 85 116
-3621586608.47 3071 0 85 0
-3621586608.83 3431 0 50 53
-3621586608.87 3466 0 50 0
-3621586609.0 3593 0 56 57
-3621586609.11 3709 0 56 0
-3621586609.11 3709 0 55 52
-3621586609.23 3826 0 55 0
-3621586609.23 3826 0 68 52
-3621586609.43 4023 0 68 0
-3621586609.56 4162 0 72 49
-3621586609.61 4209 0 72 0
-3621586609.97 4569 0 64 31
-3621586610.15 4743 0 64 0
-3621586610.15 4743 0 63 65
-3621586610.27 4871 0 63 0
-3621586610.27 4871 0 77 62
-3621586610.33 4929 0 77 0
-3621586610.81 5405 0 60 43
-3621586610.85 5451 0 60 0
-3621586610.97 5567 0 50 90
-3621586611.04 5637 0 50 0
-3621586611.13 5730 0 51 92
-3621586611.29 5892 0 51 0
-3621586611.36 5962 0 80 108
-3621586611.54 6136 0 80 0
-3621586611.57 6171 0 80 63
-3621586611.86 6461 0 80 0
-3621586611.98 6578 0 60 31
-3621586612.0 6601 0 60 0
-3621586612.0 6601 0 61 43
-3621586612.11 6705 0 61 0
-3621586612.35 6949 0 53 103
-3621586612.79 7390 0 53 0
-3621586613.59 8191 0 53 63
-3621586613.8 8400 0 53 0
-3621586613.8 8400 0 52 14
-3621586613.83 8423 0 52 0
-3621586613.83 8423 0 53 9
-3621586613.87 8470 0 53 0
-3621586614.57 9166 0 52 41
-3621586614.73 9329 0 52 0
-3621586615.03 9631 0 57 40
-3621586615.21 9805 0 57 0
-3621586616.59 11187 0 58 80
-3621586616.76 11361 0 58 0
-3621586616.76 11361 0 53 98
-3621586616.95 11547 0 53 0
-3621586616.97 11570 0 58 89
-3621586617.31 11906 0 58 0
-3621586617.34 11941 0 58 108
-3621586617.44 12034 0 58 0
-3621586617.62 12220 0 61 107
-3621586617.71 12312 0 61 0
-3621586617.83 12429 0 65 104
-3621586617.92 12522 0 65 0
-3621586618.01 12603 0 82 109
-3621586618.39 12986 0 82 0
-3621586618.47 13067 0 75 80
-3621586618.54 13137 0 75 0
-3621586618.54 13137 0 74 81
-3621586619.04 13636 0 74 0
-3621586619.04 13636 0 75 109
-3621586619.05 13648 0 75 0
-3621586619.05 13648 0 74 106
-3621586619.12 13717 0 74 0
-3621586619.12 13717 0 56 106
-3621586619.18 13776 0 56 0
-3621586619.18 13776 0 72 107
-3621586619.24 13833 0 72 0
-3621586619.46 14054 0 83 69
-3621586619.55 14147 0 83 0
-3621586620.3 14902 0 62 69
-3621586620.34 14937 0 62 0
-3621586621.27 15866 0 58 78
-3621586621.34 15935 0 58 0
-3621586621.8 16400 0 60 79
-3621586621.95 16550 0 60 0
-3621586622.41 17003 0 60 77
-3621586622.45 17049 0 60 0
-3621586622.7 17293 0 56 69
-3621586622.8 17398 0 56 0
-3621586622.8 17398 0 60 87
-3621586622.91 17503 0 60 0
-3621586623.08 17677 0 61 68
-3621586623.11 17711 0 61 0
-3621586623.25 17851 0 56 71
-3621586623.33 17932 0 56 0
-3621586623.33 17932 0 44 70
-3621586623.38 17978 0 44 0
-3621586623.86 18454 0 50 112
-3621586624.12 18721 0 50 0
-3621586624.44 19035 0 64 104
-3621586624.47 19069 0 64 0
-3621586624.8 19395 0 83 115
-3621586624.89 19488 0 83 0
-3621586624.89 19488 0 84 116
-3621586624.91 19511 0 84 0
-3621586624.91 19511 0 83 114
-3621586624.94 19534 0 83 0
-3621586624.94 19534 0 84 115
-3621586625.13 19732 0 84 0
-3621586625.13 19732 0 83 72
-3621586625.16 19755 0 83 0
-3621586625.16 19755 0 84 61
-3621586625.17 19766 0 84 0
-3621586625.17 19766 0 83 63
-3621586625.19 19789 0 83 0
-3621586625.19 19789 0 84 57
-3621586625.26 19859 0 84 0
-3621586625.26 19859 0 83 46
-3621586625.3 19894 0 83 0
-3621586625.3 19894 0 84 33
-3621586625.4 19998 0 84 0
-3621586625.63 20230 0 64 85
-3621586625.71 20312 0 64 0
-3621586625.88 20475 0 61 79
-3621586626.04 20637 0 61 0
-3621586626.56 21159 0 58 86
-3621586626.77 21368 0 58 0
-3621586627.93 22529 0 77 87
-3621586628.43 23029 0 77 0
-3621586628.51 23110 0 79 117
-3621586628.61 23203 0 79 0
-3621586629.02 23621 0 75 100
-3621586629.62 24213 0 75 0
-3621586629.71 24306 0 78 104
-3621586629.89 24492 0 78 0
-3621586629.89 24492 0 79 103
-3621586630.02 24619 0 79 0
-3621586630.02 24619 0 78 85
-3621586630.24 24840 0 78 0
-3621586630.24 24840 0 51 67
-3621586630.34 24933 0 51 0
-3621586630.34 24933 0 58 80
-3621586630.37 24968 0 58 0
-3621586630.37 24968 0 70 78
-3621586631.0 25595 0 70 0
-3621586631.14 25734 0 63 86
-3621586631.29 25885 0 63 0
-3621586631.29 25885 0 64 79
-3621586631.37 25966 0 64 0
-3621586631.37 25966 0 63 93
-3621586631.41 26012 0 63 0
-3621586631.41 26012 0 64 97
-3621586631.54 26140 0 64 0
-3621586631.54 26140 0 76 95
-3621586631.66 26256 0 76 0
-3621586631.66 26256 0 77 107
-3621586631.74 26337 0 77 0
-3621586631.89 26488 0 52 95
-3621586631.91 26512 0 52 0
-3621586632.22 26813 0 68 89
-3621586632.26 26860 0 68 0
-3621586632.33 26929 0 56 76
-3621586632.37 26964 0 56 0
-3621586632.61 27209 0 63 68
-3621586632.77 27371 0 63 0
-3621586632.77 27371 0 64 81
-3621586632.94 27533 0 64 0
-3621586632.94 27533 0 63 74
-3621586632.99 27591 0 63 0
-3621586632.99 27591 0 65 69
-3621586633.09 27684 0 65 0
-3621586633.09 27684 0 62 69
-3621586633.18 27777 0 62 0
-3621586633.18 27777 0 63 70
-3621586633.39 27986 0 63 0
-3621586633.39 27986 0 71 94
-3621586633.77 28370 0 71 0
-3621586634.21 28811 0 59 61
-3621586634.24 28834 0 59 0
-3621586634.29 28891 0 60 65
-3621586634.43 29031 0 60 0
-3621586634.98 29577 0 56 38
-3621586635.06 29658 0 56 0
-3621586635.12 29716 0 53 93
-3621586635.35 29949 0 53 0
-3621586635.35 29949 0 58 94
-3621586635.55 30145 0 58 0
-3621586635.65 30250 0 56 95
-3621586636.44 31040 0 56 0
-3621586636.44 31040 0 55 66
-3621586636.55 31144 0 55 0
-3621586636.55 31144 0 54 86
-3621586636.6 31202 0 54 0
-3621586636.66 31260 0 51 70
-3621586636.78 31376 0 51 0
-3621586636.78 31376 0 53 80
-3621586636.98 31573 0 53 0
-3621586636.98 31573 0 55 62
-3621586637.29 31887 0 55 0
-3621586637.29 31887 0 53 77
-3621586637.8 32398 0 53 0
-3621586637.8 32398 0 52 53
-3621586637.84 32433 0 52 0
-3621586637.84 32433 0 53 73
-3621586638.01 32607 0 53 0
-3621586638.01 32607 0 54 73
-3621586638.08 32677 0 54 0
-3621586638.08 32677 0 53 91
-3621586638.25 32851 0 53 0
-3621586638.55 33152 0 56 38
-3621586638.89 33489 0 56 0
-3621586638.89 33489 0 64 107
-3621586639.02 33617 0 64 0
-3621586639.21 33803 0 89 122
-3621586639.27 33872 0 89 0
-3621586639.37 33965 0 82 115
-3621586639.41 34012 0 82 0
-3621586639.41 34012 0 83 115
-3621586639.58 34174 0 83 0
-3621586639.58 34174 0 84 116
-3621586639.66 34255 0 84 0
-3621586639.66 34255 0 83 115
-3621586639.74 34337 0 83 0
-3621586639.74 34337 0 84 114
-3621586640.45 35045 0 84 0
-3621586640.59 35184 0 55 52
-3621586640.62 35219 0 55 0
-3621586640.99 35591 0 49 34
-3621586641.1 35695 0 49 0
-3621586641.38 35974 0 50 37
-3621586641.6 36194 0 50 0
-3621586641.99 36589 0 53 9
-3621586642.06 36659 0 53 0
-3621586643.12 37715 0 51 116
-3621586643.84 38435 0 51 0
-3621586644.48 39073 0 56 36
-3621586644.51 39108 0 56 0
-3621586644.65 39248 0 53 57
-3621586644.72 39317 0 53 0
-3621586644.99 39584 0 51 52
-3621586645.08 39677 0 51 0
-3621586645.14 39735 0 51 40
-3621586645.21 39805 0 51 0
-3621586645.21 39805 0 50 35
-3621586645.3 39898 0 50 0
-3621586645.37 39967 0 46 31
-3621586645.49 40084 0 46 0
-3621586645.56 40154 0 46 9
-3621586645.63 40223 0 46 0
-3621586646.89 41489 0 51 43
-3621586646.94 41535 0 51 0
-3621586648.33 42928 0 51 101
-3621586648.47 43068 0 51 0
-3621586648.56 43161 0 58 107
-3621586648.59 43184 0 58 0
-3621586648.59 43184 0 77 120
-3621586648.92 43520 0 77 0
-3621586648.96 43555 0 50 71
-3621586649.78 44379 0 50 0
-3621586649.85 44449 0 57 101
-3621586649.94 44542 0 57 0
-3621586649.98 44577 0 53 108
-3621586650.12 44716 0 53 0
-3621586650.12 44716 0 56 102
-3621586651.57 46167 0 56 0
-3621586651.74 46341 0 59 94
-3621586651.74 46342 0 59 0
-3621586651.74 46342 0 60 96
-3621586651.76 46353 0 60 0
-3621586651.76 46353 0 59 98
-3621586651.78 46376 0 59 0
-3621586651.78 46376 0 60 97
-3621586651.84 46434 0 60 0
-3621586651.84 46434 0 61 106
-3621586651.87 46469 0 61 0
-3621586651.87 46469 0 81 112
-3621586652.27 46864 0 81 0
-3621586652.53 47131 0 53 31
-3621586652.99 47584 0 53 0
-3621586653.61 48211 0 53 92
-3621586654.02 48617 0 53 0
-3621586654.61 49209 0 53 69
-3621586655.03 49627 0 53 0
-3621586656.5 51101 0 53 19
-3621586657.86 52460 0 53 0
-3621586657.86 52460 0 54 23
-3621586657.98 52576 0 54 0
-3621586657.98 52576 0 53 92
-3621586659.1 53702 0 53 0
-3621586659.73 54329 0 50 86
-3621586659.87 54468 0 50 0
-3621586659.89 54492 0 50 50
-3621586659.94 54538 0 50 0
-3621586661.03 55630 0 49 61
-3621586661.08 55676 0 49 0
-3621586661.14 55734 0 58 65
-3621586661.15 55746 0 58 0
-3621586661.26 55862 0 58 49
-3621586661.51 56105 0 58 0
-3621586662.19 56791 0 57 68
-3621586662.24 56837 0 57 0
-3621586662.24 56837 0 56 74
-3621586662.4 56999 0 56 0
-3621586662.4 56999 0 57 38
-3621586662.43 57023 0 57 0
-3621586662.43 57023 0 56 32
-3621586662.47 57069 0 56 0
-3621586662.47 57069 0 57 22
-3621586662.53 57127 0 57 0
-3621586663.17 57765 0 76 112
-3621586663.7 58300 0 76 0
-3621586664.91 59507 0 65 117
-3621586665.03 59623 0 65 0
-3621586665.06 59658 0 76 117
-3621586665.14 59740 0 76 0
-3621586665.14 59740 0 77 118
-3621586665.29 59890 0 77 0
-3621586665.29 59890 0 76 108
-3621586665.41 60007 0 76 0
-3621586665.41 60007 0 75 115
-3621586665.61 60204 0 75 0
-3621586665.61 60204 0 78 119
-3621586665.64 60239 0 78 0
-3621586665.64 60239 0 79 115
-3621586665.77 60367 0 79 0
-3621586665.77 60367 0 78 97
-3621586665.78 60378 0 78 0
-3621586665.78 60378 0 79 94
-3621586665.89 60483 0 79 0
-3621586665.89 60483 0 78 75
-3621586665.9 60494 0 78 0
-3621586665.9 60494 0 79 66
-3621586665.98 60575 0 79 0
-3621586665.98 60575 0 78 41
-3621586666.04 60633 0 78 0
-3621586666.04 60633 0 79 27
-3621586666.19 60784 0 79 0
-3621586667.73 62328 0 69 36
-3621586668.14 62735 0 69 0
-3621586668.23 62828 0 69 2
-3621586668.25 62851 0 69 0
-3621586669.74 64337 0 69 60
-3621586670.17 64767 0 69 0
-3621586670.85 65452 0 69 78
-3621586671.49 66090 0 69 0
-3621586671.92 66519 0 77 88
-3621586672.13 66729 0 77 0
-3621586672.13 66729 0 65 102
-3621586672.19 66786 0 65 0
-3621586672.19 66786 0 77 92
-3621586672.62 67216 0 77 0
-3621586673.2 67797 0 69 122
-3621586674.82 69422 0 69 0
-3621586674.82 69422 0 56 84
-3621586674.87 69468 0 56 0
-3621586674.91 69503 0 77 108
-3621586675.43 70026 0 77 0
-3621586675.43 70026 0 64 97
-3621586675.47 70072 0 64 0
-3621586675.47 70072 0 83 108
-3621586675.56 70154 0 83 0
-3621586675.56 70154 0 82 116
-3621586675.6 70200 0 82 0
-3621586675.66 70258 0 80 114
-3621586675.85 70443 0 80 0
-3621586675.85 70443 0 81 109
-3621586675.93 70525 0 81 0
-3621586676.07 70664 0 65 96
-3621586676.13 70723 0 65 0
-3621586676.13 70723 0 68 104
-3621586676.18 70780 0 68 0
-3621586676.18 70780 0 67 103
-3621586676.26 70862 0 67 0
-3621586676.32 70920 0 67 97
-3621586676.39 70989 0 67 0
-3621586676.55 71152 0 67 92
-3621586676.61 71210 0 67 0
-3621586676.68 71279 0 67 99
-3621586676.88 71477 0 67 0
-3621586676.93 71523 0 67 107
-3621586677.0 71593 0 67 0
-3621586677.0 71593 0 68 102
-3621586677.03 71628 0 68 0
-3621586677.03 71628 0 67 89
-3621586677.15 71744 0 67 0
-3621586677.15 71744 0 56 101
-3621586677.79 72383 0 56 0
-3621586678.24 72836 0 55 95
-3621586678.57 73172 0 55 0
-3621586678.62 73219 0 54 72
-3621586678.66 73254 0 54 0
-3621586678.66 73254 0 53 76
-3621586679.09 73683 0 53 0
-3621586679.09 73683 0 51 72
-3621586679.28 73881 0 51 0
-3621586679.28 73881 0 53 82
-3621586680.05 74647 0 53 0
-3621586680.32 74913 0 53 91
-3621586680.62 75215 0 53 0
-3621586680.62 75215 0 58 73
-3621586681.21 75807 0 58 0
-3621586681.51 76109 0 58 93
-3621586681.77 76365 0 58 0
-3621586682.09 76690 0 54 65
-3621586682.28 76876 0 54 0
-3621586682.28 76876 0 53 91
-3621586684.44 79035 0 53 0
-3621586684.44 79035 0 52 60
-3621586684.75 79349 0 52 0
-3621586685.9 80498 0 52 89
-3621586686.1 80695 0 52 0
-3621586686.1 80695 0 53 109
-3621586686.33 80928 0 53 0
-3621586686.39 80986 0 58 70
-3621586686.68 81276 0 58 0
-3621586686.7 81299 0 58 36
-3621586686.75 81345 0 58 0
-3621586687.63 82228 0 58 92
-3621586687.93 82530 0 58 0
-3621586687.93 82530 0 65 83
-3621586688.93 83528 0 65 0
-3621586689.66 84260 0 65 79
-3621586690.01 84608 0 65 0
-3621586690.01 84608 0 59 81
-3621586690.22 84817 0 59 0
-3621586690.22 84817 0 58 62
-3621586691.66 86257 0 58 0
-3621586691.66 86257 0 57 42
-3621586692.11 86709 0 57 0
-3621586693.87 88463 0 57 69
-3621586694.25 88846 0 57 0
-3621586694.25 88846 0 56 57
-3621586694.28 88880 0 56 0
-3621586694.28 88880 0 57 53
-3621586694.31 88903 0 57 0
-3621586694.31 88903 0 56 47
-3621586694.42 89020 0 56 0
-3621586694.42 89020 0 55 85
-3621586694.88 89473 0 55 0
-3621586695.01 89612 0 53 65
-3621586695.2 89797 0 53 0
-3621586695.51 90111 0 53 54
-3621586695.78 90378 0 53 0
-3621586695.94 90541 0 51 61
-3621586696.29 90889 0 51 0
-3621586696.4 90993 0 50 68
-3621586696.7 91295 0 50 0
-3621586698.1 92700 0 49 56
-3621586698.17 92770 0 49 0
-3621586698.23 92828 0 54 69
-3621586698.44 93037 0 54 0
-3621586698.44 93037 0 53 61
-3621586698.54 93141 0 53 0
-3621586698.6 93199 0 51 56
-3621586698.66 93257 0 51 0
-3621586699.44 94035 0 66 60
-3621586699.57 94163 0 66 0
-3621586699.57 94163 0 46 55
-3621586699.62 94221 0 46 0
-3621586699.82 94419 0 46 58
-3621586699.84 94442 0 46 0
-3621586700.47 95069 0 59 52
-3621586700.62 95219 0 59 0
-3621586700.62 95219 0 58 48
-3621586700.94 95533 0 58 0
-3621586700.94 95533 0 55 66
-3621586701.01 95603 0 55 0
-3621586701.11 95707 0 56 59
-3621586701.12 95719 0 56 0
-3621586701.14 95742 0 56 59
-3621586701.25 95847 0 56 0
-3621586701.62 96218 0 57 62
-3621586701.68 96276 0 57 0
-3621586701.68 96276 0 58 55
-3621586701.69 96288 0 58 0
-3621586701.69 96288 0 57 51
-3621586701.73 96323 0 57 0
-3621586701.73 96323 0 58 44
-3621586701.88 96473 0 58 0
-3621586701.88 96473 0 57 50
-3621586701.99 96590 0 57 0
-3621586701.99 96590 0 55 50
-3621586702.04 96636 0 55 0
-3621586702.11 96706 0 51 56
-3621586702.2 96798 0 51 0
-3621586703.05 97646 0 48 54
-3621586703.06 97658 0 48 0
-3621586703.45 98052 0 57 52
-3621586703.54 98134 0 57 0
-3621586703.54 98134 0 44 53
-3621586703.58 98180 0 44 0
-3621586704.34 98935 0 44 44
-3621586704.43 99028 0 44 0
-3621586705.46 100061 0 48 43
-3621586705.51 100107 0 48 0
-3621586705.63 100223 0 48 39
-3621586705.67 100270 0 48 0
-3621586713.85 108443 0 53 69
-3621586714.3 108896 0 53 0
-3621586716.95 111543 0 53 60
-3621586717.25 111845 0 53 0
-3621586717.25 111845 0 50 71
-3621586717.41 112008 0 50 0
-3621586717.84 112437 0 53 70
-3621586718.11 112704 0 53 0
-3621586718.11 112704 0 51 67
-3621586718.26 112855 0 51 0
-3621586718.26 112855 0 53 84
-3621586718.44 113041 0 53 0
-3621586718.44 113041 0 54 79
-3621586718.64 113238 0 54 0
-3621586718.64 113238 0 53 90
-3621586718.8 113401 0 53 0
-3621586718.8 113401 0 52 82
-3621586719.0 113598 0 52 0
-3621586719.0 113598 0 53 84
-3621586719.19 113784 0 53 0
-3621586719.19 113784 0 50 73
-3621586719.36 113958 0 50 0
-3621586719.36 113958 0 53 85
-3621586719.94 114538 0 53 0
-3621586719.94 114538 0 54 85
-3621586720.12 114713 0 54 0
-3621586720.12 114713 0 53 87
-3621586720.24 114840 0 53 0
-3621586720.24 114840 0 52 91
-3621586720.44 115038 0 52 0
-3621586720.44 115038 0 53 82
-3621586720.67 115270 0 53 0
-3621586720.67 115270 0 50 72
-3621586720.85 115444 0 50 0
-3621586720.85 115444 0 53 89
-3621586721.11 115711 0 53 0
-3621586721.21 115804 0 53 75
-3621586721.35 115943 0 53 0
-3621586721.35 115943 0 54 93
-3621586721.57 116164 0 54 0
-3621586721.57 116164 0 53 95
-3621586721.69 116291 0 53 0
-3621586721.69 116291 0 52 89
-3621586721.87 116466 0 52 0
-3621586721.87 116466 0 53 92
-3621586721.98 116582 0 53 0
-3621586722.04 116640 0 50 83
-3621586722.21 116803 0 50 0
-3621586722.21 116803 0 53 94
-3621586722.37 116965 0 53 0
-3621586722.45 117046 0 53 74
-3621586722.47 117070 0 53 0
-3621586722.55 117151 0 53 84
-3621586722.68 117278 0 53 0
-3621586722.68 117278 0 54 98
-3621586722.94 117534 0 54 0
-3621586722.94 117534 0 53 93
-3621586723.04 117638 0 53 0
-3621586723.04 117638 0 52 90
-3621586723.19 117789 0 52 0
-3621586723.19 117789 0 53 89
-3621586723.32 117917 0 53 0
-3621586723.37 117964 0 50 85
-3621586723.53 118126 0 50 0
-3621586723.53 118126 0 53 96
-3621586723.62 118219 0 53 0
-3621586723.8 118393 0 51 77
-3621586723.84 118440 0 51 0
-3621586723.84 118440 0 53 91
-3621586724.07 118672 0 53 0
-3621586724.07 118672 0 54 95
-3621586724.29 118892 0 54 0
-3621586724.29 118892 0 53 97
-3621586724.35 118950 0 53 0
-3621586724.35 118950 0 52 104
-3621586724.61 119206 0 52 0
-3621586724.61 119206 0 53 94
-3621586724.84 119438 0 53 0
-3621586724.84 119438 0 50 75
-3621586725.0 119601 0 50 0
-3621586725.0 119601 0 53 94
-3621586725.13 119728 0 53 0
-3621586725.35 119949 0 53 88
-3621586725.48 120076 0 53 0
-3621586725.48 120076 0 54 92
-3621586725.72 120320 0 54 0
-3621586725.72 120320 0 53 98
-3621586725.79 120390 0 53 0
-3621586725.79 120390 0 52 95
-3621586725.91 120506 0 52 0
-3621586725.91 120506 0 53 89
-3621586726.29 120889 0 53 0
-3621586726.88 121481 0 57 78
-3621586726.93 121528 0 57 0
-3621586726.93 121528 0 50 90
-3621586727.08 121679 0 50 0
-3621586727.08 121679 0 49 57
-3621586727.12 121714 0 49 0
-3621586727.12 121714 0 50 53
-3621586727.17 121771 0 50 0
-3621586732.35 126950 0 50 76
-3621586732.51 127112 0 50 0
-3621586732.57 127170 0 49 80
-3621586732.67 127263 0 49 0
-3621586733.51 128111 0 72 100
-3621586733.57 128169 0 72 0
-3621586734.72 129318 0 51 75
-3621586734.81 129411 0 51 0
-3621586735.97 130572 0 48 55
-3621586736.06 130653 0 48 0
-3621586736.11 130711 0 48 64
-3621586736.26 130862 0 48 0
-3621586737.41 132011 0 59 65
-3621586737.62 132220 0 59 0
-3621586737.87 132464 0 59 65
-3621586737.92 132522 0 59 0
-3621586738.55 133149 0 58 58
-3621586738.63 133231 0 58 0
-3621586739.38 133974 0 44 62
-3621586739.45 134043 0 44 0
-3621586740.04 134636 0 56 57
-3621586740.06 134659 0 56 0
-3621586742.94 137538 0 50 75
-3621586743.0 137596 0 50 0
-3621586743.5 138095 0 44 56
-3621586743.64 138234 0 44 0
-3621586743.64 138234 0 56 52
-3621586743.66 138258 0 56 0
-3621586743.99 138583 0 47 70
-3621586744.08 138676 0 47 0
-3621586744.22 138815 0 44 62
-3621586744.28 138873 0 44 0
-3621586746.28 140882 0 48 55
-3621586746.39 140986 0 48 0
-3621586746.79 141392 0 44 65
-3621586746.83 141427 0 44 0
-3621586747.4 141996 0 50 100
-3621586747.71 142309 0 50 0
-3621586747.71 142309 0 64 106
-3621586748.1 142693 0 64 0
-3621586748.1 142693 0 66 98
-3621586748.25 142843 0 66 0
-3621586748.25 142843 0 67 69
-3621586748.34 142936 0 67 0
-3621586748.34 142936 0 66 49
-3621586748.47 143064 0 66 0
-3621586748.47 143064 0 67 49
-3621586748.5 143099 0 67 0
-3621586749.74 144341 0 50 73
-3621586750.02 144620 0 50 0
-3621586750.05 144643 0 64 86
-3621586750.37 144968 0 64 0
-3621586750.42 145015 0 66 84
-3621586750.77 145363 0 66 0
-3621586750.81 145409 0 50 85
-3621586751.14 145734 0 50 0
-3621586751.14 145734 0 64 68
-3621586751.44 146037 0 64 0
-3621586751.49 146083 0 66 75
-3621586751.82 146420 0 66 0
-3621586751.82 146420 0 67 64
-3621586751.94 146535 0 67 0
-3621586751.94 146535 0 50 109
-3621586752.01 146605 0 50 0
-3621586752.01 146605 0 69 110
-3621586752.09 146686 0 69 0
-3621586752.09 146686 0 50 83
-3621586752.17 146768 0 50 0
-3621586752.17 146768 0 69 67
-3621586752.33 146930 0 69 0
-3621586752.7 147302 0 64 26
-3621586752.84 147442 0 64 0
-3621586752.84 147442 0 65 19
-3621586752.89 147488 0 65 0
-3621586753.66 148254 0 49 44
-3621586753.75 148347 0 49 0
-3621586753.94 148533 0 52 39
-3621586753.96 148556 0 52 0
-3621586753.96 148556 0 51 43
-3621586754.14 148741 0 51 0
-3621586754.28 148881 0 50 97
-3621586754.42 149020 0 50 0
-3621586754.6 149194 0 64 83
-3621586754.79 149392 0 64 0
-3621586754.96 149554 0 66 95
-3621586755.33 149926 0 66 0
-3621586755.36 149961 0 50 93
-3621586755.48 150077 0 50 0
-3621586755.53 150123 0 50 72
-3621586755.58 150181 0 50 0
-3621586755.68 150274 0 64 90
-3621586756.04 150634 0 64 0
-3621586756.04 150634 0 66 83
-3621586756.45 151052 0 66 0
-3621586756.45 151052 0 50 95
-3621586756.79 151389 0 50 0
-3621586756.79 151389 0 64 94
-3621586757.0 151598 0 64 0
-3621586757.07 151667 0 64 56
-3621586757.16 151760 0 64 0
-3621586757.16 151760 0 66 84
-3621586757.55 152143 0 66 0
-3621586757.55 152143 0 50 99
-3621586757.89 152491 0 50 0
-3621586757.89 152491 0 64 88
-3621586758.22 152817 0 64 0
-3621586758.22 152817 0 66 91
-3621586758.63 153223 0 66 0
-3621586758.63 153223 0 50 102
-3621586758.97 153571 0 50 0
-3621586758.97 153571 0 64 93
-3621586759.32 153920 0 64 0
-3621586759.32 153920 0 66 87
-3621586759.69 154291 0 66 0
-3621586759.69 154291 0 50 96
-3621586760.08 154674 0 50 0
-3621586760.08 154674 0 64 97
-3621586760.4 154999 0 64 0
-3621586760.4 154999 0 66 92
-3621586760.8 155394 0 66 0
-3621586760.8 155394 0 50 94
-3621586761.12 155719 0 50 0
-3621586761.12 155719 0 64 96
-3621586761.45 156044 0 64 0
-3621586761.45 156044 0 66 100
-3621586762.05 156648 0 66 0
-3621586762.56 157159 0 50 82
-3621586762.97 157565 0 50 0
-3621586762.97 157565 0 64 72
-3621586763.26 157855 0 64 0
-3621586763.26 157855 0 66 95
-3621586763.63 158227 0 66 0
-3621586763.65 158250 0 50 98
-3621586763.97 158564 0 50 0
-3621586763.97 158564 0 64 96
-3621586764.29 158889 0 64 0
-3621586764.29 158889 0 66 104
-3621586764.66 159260 0 66 0
-3621586764.66 159260 0 50 96
-3621586764.98 159573 0 50 0
-3621586764.98 159573 0 64 83
-3621586765.31 159910 0 64 0
-3621586765.31 159910 0 66 95
-3621586765.67 160270 0 66 0
-3621586765.67 160270 0 50 107
-3621586765.97 160572 0 50 0
-3621586765.97 160572 0 64 94
-3621586766.31 160909 0 64 0
-3621586766.31 160909 0 66 95
-3621586766.66 161257 0 66 0
-3621586766.66 161257 0 65 83
-3621586766.73 161327 0 65 0
-3621586766.73 161327 0 77 108
-3621586767.27 161872 0 77 0
-3621586767.33 161930 0 77 16
-3621586767.38 161977 0 77 0
-3621586767.8 162395 0 50 95
-3621586768.15 162743 0 50 0
-3621586768.15 162743 0 64 87
-3621586768.49 163091 0 64 0
-3621586768.49 163091 0 66 92
-3621586768.82 163417 0 66 0
-3621586768.82 163417 0 67 74
-3621586768.88 163475 0 67 0
-3621586768.88 163475 0 66 74
-3621586768.95 163544 0 66 0
-3621586768.95 163544 0 50 89
-3621586769.21 163811 0 50 0
-3621586771.92 166516 0 54 74
-3621586771.95 166551 0 54 0
-3621586773.35 167944 0 50 113
-3621586773.65 168246 0 50 0
-3621586773.65 168246 0 64 97
-3621586774.0 168594 0 64 0
-3621586774.0 168594 0 66 95
-3621586774.37 168966 0 66 0
-3621586774.37 168966 0 50 89
-3621586774.68 169280 0 50 0
-3621586774.68 169280 0 64 98
-3621586775.02 169617 0 64 0
-3621586775.02 169617 0 66 96
-3621586775.41 170011 0 66 0
-3621586775.41 170011 0 50 99
-3621586775.76 170359 0 50 0
-3621586775.76 170359 0 64 103
-3621586776.06 170661 0 64 0
-3621586776.06 170661 0 66 97
-3621586776.4 170998 0 66 0
-3621586776.46 171056 0 50 106
-3621586776.75 171346 0 50 0
-3621586776.75 171346 0 63 101
-3621586776.78 171381 0 63 0
-3621586776.78 171381 0 64 104
-3621586777.1 171695 0 64 0
-3621586777.1 171695 0 66 96
-3621586777.41 172008 0 66 0
-3621586777.45 172043 0 50 99
-3621586777.8 172402 0 50 0
-3621586777.8 172402 0 64 106
-3621586778.11 172705 0 64 0
-3621586778.11 172705 0 66 105
-3621586778.43 173030 0 66 0
-3621586778.48 173076 0 50 100
-3621586778.79 173389 0 50 0
-3621586778.79 173389 0 64 108
-3621586779.12 173715 0 64 0
-3621586779.12 173715 0 66 103
-3621586779.44 174040 0 66 0
-3621586779.49 174086 0 50 97
-3621586779.8 174400 0 50 0
-3621586779.8 174400 0 63 107
-3621586779.83 174423 0 63 0
-3621586779.83 174423 0 64 109
-3621586780.06 174655 0 64 0
-3621586780.15 174748 0 66 100
-3621586780.22 174817 0 66 0
-3621586780.26 174853 0 66 100
-3621586780.32 174922 0 66 0
-3621586780.58 175178 0 57 116
-3621586780.71 175305 0 57 0
-3621586781.8 176396 0 63 85
-3621586781.83 176431 0 63 0
-3621586782.31 176907 0 62 63
-3621586782.39 176989 0 62 0
-3621586782.39 176989 0 61 60
-3621586782.47 177070 0 61 0
-3621586782.82 177418 0 60 55
-3621586782.87 177465 0 60 0
-3621586783.77 178370 0 54 53
-3621586783.81 178405 0 54 0
-3621586784.0 178602 0 65 116
-3621586784.03 178626 0 65 0
-3621586784.16 178753 0 65 118
-3621586784.26 178858 0 65 0
-3621586784.26 178858 0 84 118
-3621586784.34 178939 0 84 0
-3621586784.64 179241 0 65 116
-3621586784.75 179345 0 65 0
-3621586784.75 179345 0 66 117
-3621586784.81 179403 0 66 0
-3621586784.85 179450 0 64 114
-3621586784.88 179473 0 64 0
-3621586784.92 179520 0 64 116
-3621586784.99 179589 0 64 0
-3621586785.13 179729 0 64 115
-3621586785.18 179775 0 64 0
-3621586785.18 179775 0 65 115
-3621586785.34 179937 0 65 0
-3621586785.64 180239 0 56 98
-3621586785.77 180367 0 56 0
-3621586785.94 180541 0 56 91
-3621586786.07 180669 0 56 0
-3621586786.29 180889 0 57 93
-3621586786.47 181063 0 57 0
-3621586786.59 181191 0 63 110
-3621586786.66 181261 0 63 0
-3621586786.66 181261 0 62 108
-3621586786.71 181307 0 62 0
-3621586786.71 181307 0 64 114
-3621586786.84 181435 0 64 0
-3621586787.42 182015 0 54 62
-3621586787.44 182039 0 54 0
-3621586787.53 182132 0 54 59
-3621586787.67 182271 0 54 0
-3621586788.06 182654 0 50 93
-3621586788.3 182898 0 50 0
-3621586788.36 182956 0 64 90
-3621586788.72 183316 0 64 0
-3621586788.72 183316 0 66 89
-3621586789.07 183664 0 66 0
-3621586789.14 183734 0 50 89
-3621586789.17 183769 0 50 0
-3621586789.25 183850 0 50 67
-3621586789.32 183920 0 50 0
-3621586789.42 184013 0 64 93
-3621586789.76 184361 0 64 0
-3621586789.76 184361 0 66 89
-3621586790.12 184721 0 66 0
-3621586790.16 184755 0 50 96
-3621586790.4 184999 0 50 0
-3621586790.49 185092 0 64 104
-3621586790.8 185394 0 64 0
-3621586790.8 185394 0 66 90
-3621586790.98 185580 0 66 0
-3621586791.28 185882 0 50 82
-3621586791.32 185917 0 50 0
-3621586791.49 186091 0 64 104
-3621586791.67 186265 0 64 0
-3621586791.76 186358 0 66 105
-3621586791.92 186520 0 66 0
-3621586792.02 186613 0 65 118
-3621586792.05 186648 0 65 0
-3621586792.05 186648 0 64 119
-3621586792.16 186753 0 64 0
-3621586792.21 186811 0 64 117
-3621586792.28 186880 0 64 0
-3621586792.54 187136 0 65 117
-3621586792.65 187252 0 65 0
-3621586792.71 187310 0 66 114
-3621586792.89 187484 0 66 0
-3621586793.14 187740 0 57 100
-3621586793.3 187902 0 57 0
-3621586793.39 187983 0 64 101
-3621586793.51 188111 0 64 0
-3621586793.51 188111 0 63 101
-3621586793.56 188157 0 63 0
-3621586793.56 188157 0 64 97
-3621586793.62 188215 0 64 0
-3621586793.78 188378 0 76 117
-3621586793.86 188459 0 76 0
-3621586794.07 188668 0 75 116
-3621586794.11 188703 0 75 0
-3621586794.38 188982 0 80 117
-3621586794.42 189017 0 80 0
-3621586794.47 189063 0 65 118
-3621586794.51 189109 0 65 0
-3621586794.64 189237 0 80 118
-3621586794.84 189435 0 80 0
-3621586794.84 189435 0 81 111
-3621586795.64 190236 0 81 0
-3621586796.24 190839 0 58 63
-3621586796.62 191222 0 58 0
-3621586796.86 191455 0 50 64
-3621586797.01 191605 0 50 0
-3621586797.84 192442 0 50 94
-3621586798.23 192824 0 50 0
-3621586798.23 192824 0 63 87
-3621586798.69 193289 0 63 0
-3621586798.94 193533 0 50 85
-3621586799.28 193881 0 50 0
-3621586799.28 193881 0 64 94
-3621586799.6 194194 0 64 0
-3621586799.6 194194 0 66 84
-3621586799.95 194543 0 66 0
-3621586799.95 194543 0 50 82
-3621586800.28 194880 0 50 0
-3621586800.28 194880 0 64 89
-3621586800.63 195228 0 64 0
-3621586800.63 195228 0 66 91
-3621586801.0 195599 0 66 0
-3621586801.0 195599 0 50 84
-3621586801.34 195936 0 50 0
-3621586801.34 195936 0 64 92
-3621586801.64 196238 0 64 0
-3621586801.64 196238 0 66 92
-3621586801.95 196551 0 66 0
-3621586801.99 196586 0 50 94
-3621586802.3 196899 0 50 0
-3621586802.3 196899 0 64 98
-3621586802.59 197190 0 64 0
-3621586802.59 197190 0 66 90
-3621586802.92 197515 0 66 0
-3621586802.92 197515 0 50 94
-3621586803.24 197840 0 50 0
-3621586803.24 197840 0 64 105
-3621586803.47 198072 0 64 0
-3621586803.47 198072 0 66 105
-3621586803.61 198211 0 66 0
-3621586803.61 198211 0 64 118
-3621586803.7 198293 0 64 0
-3621586803.7 198293 0 65 121
-3621586803.79 198386 0 65 0
-3621586803.79 198386 0 67 118
-3621586803.85 198444 0 67 0
-3621586803.92 198513 0 64 117
-3621586804.0 198595 0 64 0
-3621586804.0 198595 0 66 122
-3621586804.07 198665 0 66 0
-3621586804.07 198665 0 65 121
-3621586804.38 198978 0 65 0
-3621586804.45 199047 0 56 84
-3621586804.52 199117 0 56 0
-3621586804.78 199373 0 62 64
-3621586804.81 199407 0 62 0
-3621586804.81 199407 0 61 57
-3621586804.88 199477 0 61 0
-3621586804.88 199477 0 62 75
-3621586804.98 199581 0 62 0
-3621586804.98 199581 0 65 82
-3621586805.08 199674 0 65 0
-3621586805.23 199825 0 61 67
-3621586805.24 199837 0 61 0
-3621586805.3 199895 0 56 101
-3621586805.48 200081 0 56 0
-3621586805.48 200081 0 76 113
-3621586805.58 200174 0 76 0
-3621586805.58 200174 0 75 117
-3621586805.81 200406 0 75 0
-3621586805.97 200568 0 65 96
-3621586806.34 200940 0 65 0
-3621586806.4 200998 0 63 108
-3621586806.49 201091 0 63 0
-3621586806.49 201091 0 65 117
-3621586806.53 201126 0 65 0
-3621586806.59 201184 0 83 118
-3621586806.69 201288 0 83 0
-3621586806.69 201288 0 82 120
-3621586806.81 201404 0 82 0
-3621586806.81 201404 0 83 113
-3621586806.84 201439 0 83 0
-3621586806.84 201439 0 84 115
-3621586806.9 201497 0 84 0
-3621586806.9 201497 0 83 106
-3621586807.02 201613 0 83 0
-3621586807.02 201613 0 63 108
-3621586807.16 201753 0 63 0
-3621586807.16 201753 0 65 103
-3621586807.19 201787 0 65 0
-3621586807.19 201787 0 66 102
-3621586807.25 201846 0 66 0
-3621586807.25 201846 0 65 114
-3621586807.5 202101 0 65 0
-3621586807.57 202171 0 64 109
-3621586807.81 202403 0 64 0
-3621586807.81 202403 0 65 105
-3621586807.96 202554 0 65 0
-3621586807.96 202554 0 66 109
-3621586808.05 202647 0 66 0
-3621586808.05 202647 0 67 116
-3621586808.15 202751 0 67 0
-3621586808.15 202751 0 65 114
-3621586808.26 202856 0 65 0
-3621586808.75 203343 0 65 117
-3621586808.83 203424 0 65 0
-3621586809.27 203866 0 65 117
-3621586809.36 203958 0 65 0
-3621586809.36 203958 0 68 116
-3621586809.42 204017 0 68 0
-3621586809.63 204226 0 64 111
-3621586809.66 204261 0 64 0
-3621586809.92 204516 0 85 119
-3621586809.95 204551 0 85 0
-3621586810.06 204655 0 82 119
-3621586810.12 204713 0 82 0
-3621586810.12 204713 0 63 119
-3621586810.22 204818 0 63 0
-3621586810.43 205027 0 63 117
-3621586810.51 205108 0 63 0
-3621586810.59 205189 0 81 112
-3621586810.72 205317 0 81 0
-3621586811.03 205631 0 82 112
-3621586811.16 205758 0 82 0
-3621586811.16 205758 0 84 114
-3621586811.42 206014 0 84 0
-3621586811.42 206014 0 65 98
-3621586811.43 206025 0 65 0
-3621586811.66 206257 0 62 90
-3621586811.75 206350 0 62 0
-3621586812.01 206606 0 63 104
-3621586812.1 206698 0 63 0
-3621586813.02 207616 0 58 52
-3621586813.13 207732 0 58 0
-3621586813.27 207871 0 65 118
-3621586813.34 207941 0 65 0
-3621586813.41 208010 0 67 116
-3621586813.47 208068 0 67 0
-3621586813.53 208126 0 66 118
-3621586813.54 208138 0 66 0
-3621586813.6 208196 0 66 114
-3621586813.62 208220 0 66 0
-3621586813.62 208220 0 65 117
-3621586813.73 208324 0 65 0
-3621586813.73 208324 0 67 117
-3621586814.1 208695 0 67 0
-3621586814.18 208777 0 63 95
-3621586814.25 208846 0 63 0
-3621586814.25 208846 0 62 100
-3621586814.4 208997 0 62 0
-3621586814.4 208997 0 67 105
-3621586814.47 209067 0 67 0
-3621586814.47 209067 0 65 110
-3621586814.63 209230 0 65 0
-3621586814.74 209334 0 64 100
-3621586814.92 209519 0 64 0
-3621586814.97 209566 0 64 103
-3621586815.0 209601 0 64 0
-3621586815.57 210170 0 62 91
-3621586815.85 210449 0 62 0
-3621586815.85 210449 0 66 87
-3621586815.9 210495 0 66 0
-3621586815.9 210495 0 65 101
-3621586815.99 210588 0 65 0
-3621586816.09 210692 0 65 98
-3621586816.14 210739 0 65 0
-3621586816.14 210739 0 66 101
-3621586816.32 210913 0 66 0
-3621586816.32 210913 0 63 103
-3621586816.38 210982 0 63 0
-3621586816.42 211018 0 65 98
-3621586816.44 211041 0 65 0
-3621586816.51 211110 0 66 108
-3621586816.55 211145 0 66 0
-3621586816.55 211145 0 67 123
-3621586816.72 211319 0 67 0
-3621586816.87 211470 0 83 121
-3621586817.15 211749 0 83 0
-3621586817.29 211888 0 67 119
-3621586817.46 212062 0 67 0
-3621586817.57 212167 0 61 112
-3621586817.6 212202 0 61 0
-3621586817.88 212481 0 62 99
-3621586817.92 212515 0 62 0
-3621586817.92 212515 0 63 103
-3621586818.11 212712 0 63 0
-3621586818.11 212712 0 62 86
-3621586818.15 212747 0 62 0
-3621586818.15 212747 0 63 102
-3621586818.2 212794 0 63 0
-3621586818.2 212794 0 64 101
-3621586818.21 212805 0 64 0
-3621586818.57 213165 0 65 116
-3621586818.64 213235 0 65 0
-3621586818.77 213363 0 65 106
-3621586818.81 213409 0 65 0
-3621586818.89 213490 0 65 106
-3621586818.93 213525 0 65 0
-3621586818.93 213525 0 66 106
-3621586819.06 213653 0 66 0
-3621586819.06 213653 0 67 116
-3621586819.18 213781 0 67 0
-3621586819.38 213978 0 63 108
-3621586819.53 214129 0 63 0
-3621586819.53 214129 0 67 123
-3621586819.66 214256 0 67 0
-3621586819.66 214256 0 66 108
-3621586819.82 214419 0 66 0
-3621586820.23 214826 0 77 120
-3621586820.31 214907 0 77 0
-3621586820.31 214907 0 76 117
-3621586820.43 215023 0 76 0
-3621586820.47 215069 0 82 117
-3621586820.53 215128 0 82 0
-3621586820.7 215301 0 64 101
-3621586820.81 215406 0 64 0
-3621586821.21 215812 0 72 110
-3621586821.26 215859 0 72 0
-3621586821.35 215951 0 75 109
-3621586821.44 216033 0 75 0
-3621586821.44 216033 0 74 104
-3621586821.49 216091 0 74 0
-3621586821.49 216091 0 75 111
-3621586821.71 216312 0 75 0
-3621586821.85 216451 0 76 112
-3621586822.0 216602 0 76 0
-3621586822.0 216602 0 75 107
-3621586822.29 216892 0 75 0
-3621586822.5 217101 0 74 96
-3621586822.56 217159 0 74 0
-3621586822.56 217159 0 73 104
-3621586822.65 217252 0 73 0
-3621586822.65 217252 0 74 102
-3621586822.9 217496 0 74 0
-3621586822.9 217496 0 53 95
-3621586822.91 217508 0 53 0
-3621586822.91 217508 0 65 94
-3621586823.03 217624 0 65 0
-3621586823.03 217624 0 64 88
-3621586823.22 217821 0 64 0
-3621586823.5 218099 0 75 116
-3621586823.75 218343 0 75 0
-3621586823.75 218343 0 51 84
-3621586823.91 218506 0 51 0
-3621586824.0 218599 0 72 109
-3621586824.11 218704 0 72 0
-3621586824.19 218785 0 76 117
-3621586824.57 219168 0 76 0
-3621586824.57 219168 0 74 102
-3621586824.85 219446 0 74 0
-3621586824.85 219446 0 75 99
-3621586824.94 219539 0 75 0
-3621586824.94 219539 0 78 108
-3621586825.1 219702 0 78 0
-3621586825.1 219702 0 66 95
-3621586825.21 219806 0 66 0
-3621586825.21 219806 0 65 94
-3621586825.3 219899 0 65 0
-3621586825.3 219899 0 77 111
-3621586825.42 220015 0 77 0
-3621586825.42 220015 0 53 109
-3621586825.61 220212 0 53 0
-3621586825.61 220212 0 79 99
-3621586825.7 220294 0 79 0
-3621586825.7 220294 0 78 104
-3621586825.79 220387 0 78 0
-3621586825.82 220422 0 66 86
-3621586825.86 220456 0 66 0
-3621586825.93 220526 0 76 113
-3621586826.0 220595 0 76 0
-3621586826.03 220631 0 64 108
-3621586826.16 220758 0 64 0
-3621586826.16 220758 0 67 106
-3621586826.2 220793 0 67 0
-3621586826.2 220793 0 66 110
-3621586826.49 221083 0 66 0
-3621586826.49 221083 0 67 104
-3621586826.65 221246 0 67 0
-3621586826.65 221246 0 66 103
-3621586826.74 221339 0 66 0
-3621586826.74 221339 0 67 103
-3621586826.93 221524 0 67 0
-3621586826.93 221524 0 63 96
-3621586826.99 221583 0 63 0
-3621586826.99 221583 0 64 82
-3621586827.17 221768 0 64 0
-3621586827.17 221768 0 66 99
-3621586827.29 221884 0 66 0
-3621586827.29 221884 0 63 99
-3621586827.6 222198 0 63 0
-3621586827.68 222279 0 59 64
-3621586827.72 222314 0 59 0
-3621586827.72 222314 0 60 60
-3621586828.04 222639 0 60 0
-3621586828.09 222685 0 56 41
-3621586828.17 222767 0 56 0