commit 1aa1cc1360ef30595c1e12e9db4a76242559640d Author: anggabayu Date: Wed Nov 14 09:52:16 2018 +0700 Initial commit diff --git a/.DS_Store b/.DS_Store new file mode 100755 index 0000000..a017873 Binary files /dev/null and b/.DS_Store differ diff --git a/lumberjack/LICENSE b/lumberjack/LICENSE new file mode 100755 index 0000000..c3d4cc3 --- /dev/null +++ b/lumberjack/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Nate Finch + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/lumberjack/chown.go b/lumberjack/chown.go new file mode 100755 index 0000000..0da7022 --- /dev/null +++ b/lumberjack/chown.go @@ -0,0 +1,11 @@ +// +build !linux + +package lumberjack + +import ( + "os" +) + +func chown(_ string, _ os.FileInfo) error { + return nil +} \ No newline at end of file diff --git a/lumberjack/chown_linux.go b/lumberjack/chown_linux.go new file mode 100755 index 0000000..fc29e34 --- /dev/null +++ b/lumberjack/chown_linux.go @@ -0,0 +1,19 @@ +package lumberjack + +import ( + "os" + "syscall" +) + +// os_Chown is a var so we can mock it out during tests. +var os_Chown = os.Chown + +func chown(name string, info os.FileInfo) error { + f, err := os.OpenFile(name, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, info.Mode()) + if err != nil { + return err + } + f.Close() + stat := info.Sys().(*syscall.Stat_t) + return os_Chown(name, int(stat.Uid), int(stat.Gid)) +} \ No newline at end of file diff --git a/lumberjack/lumberjack.go b/lumberjack/lumberjack.go new file mode 100755 index 0000000..438b76f --- /dev/null +++ b/lumberjack/lumberjack.go @@ -0,0 +1,543 @@ +// Package lumberjack provides a rolling logger. +// +// Note that this is v2.0 of lumberjack, and should be imported using gopkg.in +// thusly: +// +// import "gopkg.in/natefinch/lumberjack.v2" +// +// The package name remains simply lumberjack, and the code resides at +// https://github.com/natefinch/lumberjack under the v2.0 branch. +// +// Lumberjack is intended to be one part of a logging infrastructure. +// It is not an all-in-one solution, but instead is a pluggable +// component at the bottom of the logging stack that simply controls the files +// to which logs are written. +// +// Lumberjack plays well with any logging package that can write to an +// io.Writer, including the standard library's log package. +// +// Lumberjack assumes that only one process is writing to the output files. +// Using the same lumberjack configuration from multiple processes on the same +// machine will result in improper behavior. +package lumberjack + +import ( + "compress/gzip" + "errors" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "sort" + "strings" + "sync" + "time" +) + +const ( + backupTimeFormat = "2006-01-02T15-04-05.000" + compressSuffix = ".gz" + defaultMaxSize = 100 +) + +// ensure we always implement io.WriteCloser +var _ io.WriteCloser = (*Logger)(nil) + +// Logger is an io.WriteCloser that writes to the specified filename. +// +// Logger opens or creates the logfile on first Write. If the file exists and +// is less than MaxSize megabytes, lumberjack will open and append to that file. +// If the file exists and its size is >= MaxSize megabytes, the file is renamed +// by putting the current time in a timestamp in the name immediately before the +// file's extension (or the end of the filename if there's no extension). A new +// log file is then created using original filename. +// +// Whenever a write would cause the current log file exceed MaxSize megabytes, +// the current file is closed, renamed, and a new log file created with the +// original name. Thus, the filename you give Logger is always the "current" log +// file. +// +// Backups use the log file name given to Logger, in the form +// `name-timestamp.ext` where name is the filename without the extension, +// timestamp is the time at which the log was rotated formatted with the +// time.Time format of `2006-01-02T15-04-05.000` and the extension is the +// original extension. For example, if your Logger.Filename is +// `/var/log/foo/server.log`, a backup created at 6:30pm on Nov 11 2016 would +// use the filename `/var/log/foo/server-2016-11-04T18-30-00.000.log` +// +// Cleaning Up Old Log Files +// +// Whenever a new logfile gets created, old log files may be deleted. The most +// recent files according to the encoded timestamp will be retained, up to a +// number equal to MaxBackups (or all of them if MaxBackups is 0). Any files +// with an encoded timestamp older than MaxAge days are deleted, regardless of +// MaxBackups. Note that the time encoded in the timestamp is the rotation +// time, which may differ from the last time that file was written to. +// +// If MaxBackups and MaxAge are both 0, no old log files will be deleted. +type Logger struct { + // Filename is the file to write logs to. Backup log files will be retained + // in the same directory. It uses -lumberjack.log in + // os.TempDir() if empty. + Filename string `json:"filename" yaml:"filename"` + + // MaxSize is the maximum size in megabytes of the log file before it gets + // rotated. It defaults to 100 megabytes. + MaxSize int `json:"maxsize" yaml:"maxsize"` + + // MaxAge is the maximum number of days to retain old log files based on the + // timestamp encoded in their filename. Note that a day is defined as 24 + // hours and may not exactly correspond to calendar days due to daylight + // savings, leap seconds, etc. The default is not to remove old log files + // based on age. + MaxAge int `json:"maxage" yaml:"maxage"` + + // MaxBackups is the maximum number of old log files to retain. The default + // is to retain all old log files (though MaxAge may still cause them to get + // deleted.) + MaxBackups int `json:"maxbackups" yaml:"maxbackups"` + + // LocalTime determines if the time used for formatting the timestamps in + // backup files is the computer's local time. The default is to use UTC + // time. + LocalTime bool `json:"localtime" yaml:"localtime"` + + // Compress determines if the rotated log files should be compressed + // using gzip. The default is not to perform compression. + Compress bool `json:"compress" yaml:"compress"` + + size int64 + file *os.File + mu sync.Mutex + + millCh chan bool + startMill sync.Once +} + +var ( + // currentTime exists so it can be mocked out by tests. + currentTime = time.Now + + // os_Stat exists so it can be mocked out by tests. + os_Stat = os.Stat + + // megabyte is the conversion factor between MaxSize and bytes. It is a + // variable so tests can mock it out and not need to write megabytes of data + // to disk. + megabyte = 1024 * 1024 +) + +// Write implements io.Writer. If a write would cause the log file to be larger +// than MaxSize, the file is closed, renamed to include a timestamp of the +// current time, and a new log file is created using the original log file name. +// If the length of the write is greater than MaxSize, an error is returned. +func (l *Logger) Write(p []byte) (n int, err error) { + l.mu.Lock() + defer l.mu.Unlock() + + writeLen := int64(len(p)) + if writeLen > l.max() { + return 0, fmt.Errorf( + "write length %d exceeds maximum file size %d", writeLen, l.max(), + ) + } + + if l.file == nil { + if err = l.openExistingOrNew(len(p)); err != nil { + return 0, err + } + } + + if l.size+writeLen > l.max() { + if err := l.rotate(); err != nil { + return 0, err + } + } + + n, err = os.Stderr.Write(p) + + n, err = l.file.Write(p) + l.size += int64(n) + + return n, err +} + +// Close implements io.Closer, and closes the current logfile. +func (l *Logger) Close() error { + l.mu.Lock() + defer l.mu.Unlock() + return l.close() +} + +// close closes the file if it is open. +func (l *Logger) close() error { + if l.file == nil { + return nil + } + err := l.file.Close() + l.file = nil + return err +} + +// Rotate causes Logger to close the existing log file and immediately create a +// new one. This is a helper function for applications that want to initiate +// rotations outside of the normal rotation rules, such as in response to +// SIGHUP. After rotating, this initiates compression and removal of old log +// files according to the configuration. +func (l *Logger) Rotate() error { + l.mu.Lock() + defer l.mu.Unlock() + return l.rotate() +} + +// rotate closes the current file, moves it aside with a timestamp in the name, +// (if it exists), opens a new file with the original filename, and then runs +// post-rotation processing and removal. +func (l *Logger) rotate() error { + if err := l.close(); err != nil { + return err + } + if err := l.openNew(); err != nil { + return err + } + l.mill() + return nil +} + +// openNew opens a new log file for writing, moving any old log file out of the +// way. This methods assumes the file has already been closed. +func (l *Logger) openNew() error { + err := os.MkdirAll(l.dir(), 0744) + if err != nil { + return fmt.Errorf("can't make directories for new logfile: %s", err) + } + + name := l.filename() + mode := os.FileMode(0644) + info, err := os_Stat(name) + if err == nil { + // Copy the mode off the old logfile. + mode = info.Mode() + // move the existing file + newname := backupName(name, l.LocalTime) + if err := os.Rename(name, newname); err != nil { + return fmt.Errorf("can't rename log file: %s", err) + } + + // this is a no-op anywhere but linux + if err := chown(name, info); err != nil { + return err + } + } + + // we use truncate here because this should only get called when we've moved + // the file ourselves. if someone else creates the file in the meantime, + // just wipe out the contents. + f, err := os.OpenFile(name, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, mode) + if err != nil { + return fmt.Errorf("can't open new logfile: %s", err) + } + l.file = f + l.size = 0 + return nil +} + +// backupName creates a new filename from the given name, inserting a timestamp +// between the filename and the extension, using the local time if requested +// (otherwise UTC). +func backupName(name string, local bool) string { + dir := filepath.Dir(name) + filename := filepath.Base(name) + ext := filepath.Ext(filename) + prefix := filename[:len(filename)-len(ext)] + t := currentTime() + if !local { + t = t.UTC() + } + + timestamp := t.Format(backupTimeFormat) + return filepath.Join(dir, fmt.Sprintf("%s-%s%s", prefix, timestamp, ext)) +} + +// openExistingOrNew opens the logfile if it exists and if the current write +// would not put it over MaxSize. If there is no such file or the write would +// put it over the MaxSize, a new file is created. +func (l *Logger) openExistingOrNew(writeLen int) error { + l.mill() + + filename := l.filename() + info, err := os_Stat(filename) + if os.IsNotExist(err) { + return l.openNew() + } + if err != nil { + return fmt.Errorf("error getting log file info: %s", err) + } + + if info.Size()+int64(writeLen) >= l.max() { + return l.rotate() + } + + file, err := os.OpenFile(filename, os.O_APPEND|os.O_WRONLY, 0644) + if err != nil { + // if we fail to open the old log file for some reason, just ignore + // it and open a new log file. + return l.openNew() + } + l.file = file + l.size = info.Size() + return nil +} + +// genFilename generates the name of the logfile from the current time. +func (l *Logger) filename() string { + if l.Filename != "" { + return l.Filename + } + name := filepath.Base(os.Args[0]) + "-lumberjack.log" + return filepath.Join(os.TempDir(), name) +} + +// millRunOnce performs compression and removal of stale log files. +// Log files are compressed if enabled via configuration and old log +// files are removed, keeping at most l.MaxBackups files, as long as +// none of them are older than MaxAge. +func (l *Logger) millRunOnce() error { + if l.MaxBackups == 0 && l.MaxAge == 0 && !l.Compress { + return nil + } + + files, err := l.oldLogFiles() + if err != nil { + return err + } + + var compress, remove []logInfo + + if l.MaxBackups > 0 && l.MaxBackups < len(files) { + preserved := make(map[string]bool) + var remaining []logInfo + for _, f := range files { + // Only count the uncompressed log file or the + // compressed log file, not both. + fn := f.Name() + if strings.HasSuffix(fn, compressSuffix) { + fn = fn[:len(fn)-len(compressSuffix)] + } + preserved[fn] = true + + if len(preserved) > l.MaxBackups { + remove = append(remove, f) + } else { + remaining = append(remaining, f) + } + } + files = remaining + } + if l.MaxAge > 0 { + diff := time.Duration(int64(24*time.Hour) * int64(l.MaxAge)) + cutoff := currentTime().Add(-1 * diff) + + var remaining []logInfo + for _, f := range files { + if f.timestamp.Before(cutoff) { + remove = append(remove, f) + } else { + remaining = append(remaining, f) + } + } + files = remaining + } + + if l.Compress { + for _, f := range files { + if !strings.HasSuffix(f.Name(), compressSuffix) { + compress = append(compress, f) + } + } + } + + for _, f := range remove { + errRemove := os.Remove(filepath.Join(l.dir(), f.Name())) + if err == nil && errRemove != nil { + err = errRemove + } + } + for _, f := range compress { + fn := filepath.Join(l.dir(), f.Name()) + errCompress := compressLogFile(fn, fn+compressSuffix) + if err == nil && errCompress != nil { + err = errCompress + } + } + + return err +} + +// millRun runs in a goroutine to manage post-rotation compression and removal +// of old log files. +func (l *Logger) millRun() { + for _ = range l.millCh { + // what am I going to do, log this? + _ = l.millRunOnce() + } +} + +// mill performs post-rotation compression and removal of stale log files, +// starting the mill goroutine if necessary. +func (l *Logger) mill() { + l.startMill.Do(func() { + l.millCh = make(chan bool, 1) + go l.millRun() + }) + select { + case l.millCh <- true: + default: + } +} + +// oldLogFiles returns the list of backup log files stored in the same +// directory as the current log file, sorted by ModTime +func (l *Logger) oldLogFiles() ([]logInfo, error) { + files, err := ioutil.ReadDir(l.dir()) + if err != nil { + return nil, fmt.Errorf("can't read log file directory: %s", err) + } + logFiles := []logInfo{} + + prefix, ext := l.prefixAndExt() + + for _, f := range files { + if f.IsDir() { + continue + } + if t, err := l.timeFromName(f.Name(), prefix, ext); err == nil { + logFiles = append(logFiles, logInfo{t, f}) + continue + } + if t, err := l.timeFromName(f.Name(), prefix, ext+compressSuffix); err == nil { + logFiles = append(logFiles, logInfo{t, f}) + continue + } + // error parsing means that the suffix at the end was not generated + // by lumberjack, and therefore it's not a backup file. + } + + sort.Sort(byFormatTime(logFiles)) + + return logFiles, nil +} + +// timeFromName extracts the formatted time from the filename by stripping off +// the filename's prefix and extension. This prevents someone's filename from +// confusing time.parse. +func (l *Logger) timeFromName(filename, prefix, ext string) (time.Time, error) { + if !strings.HasPrefix(filename, prefix) { + return time.Time{}, errors.New("mismatched prefix") + } + if !strings.HasSuffix(filename, ext) { + return time.Time{}, errors.New("mismatched extension") + } + ts := filename[len(prefix) : len(filename)-len(ext)] + return time.Parse(backupTimeFormat, ts) +} + +// max returns the maximum size in bytes of log files before rolling. +func (l *Logger) max() int64 { + if l.MaxSize == 0 { + return int64(defaultMaxSize * megabyte) + } + return int64(l.MaxSize) * int64(megabyte) +} + +// dir returns the directory for the current filename. +func (l *Logger) dir() string { + return filepath.Dir(l.filename()) +} + +// prefixAndExt returns the filename part and extension part from the Logger's +// filename. +func (l *Logger) prefixAndExt() (prefix, ext string) { + filename := filepath.Base(l.filename()) + ext = filepath.Ext(filename) + prefix = filename[:len(filename)-len(ext)] + "-" + return prefix, ext +} + +// compressLogFile compresses the given log file, removing the +// uncompressed log file if successful. +func compressLogFile(src, dst string) (err error) { + f, err := os.Open(src) + if err != nil { + return fmt.Errorf("failed to open log file: %v", err) + } + defer f.Close() + + fi, err := os_Stat(src) + if err != nil { + return fmt.Errorf("failed to stat log file: %v", err) + } + + if err := chown(dst, fi); err != nil { + return fmt.Errorf("failed to chown compressed log file: %v", err) + } + + // If this file already exists, we presume it was created by + // a previous attempt to compress the log file. + gzf, err := os.OpenFile(dst, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, fi.Mode()) + if err != nil { + return fmt.Errorf("failed to open compressed log file: %v", err) + } + defer gzf.Close() + + gz := gzip.NewWriter(gzf) + + defer func() { + if err != nil { + os.Remove(dst) + err = fmt.Errorf("failed to compress log file: %v", err) + } + }() + + if _, err := io.Copy(gz, f); err != nil { + return err + } + if err := gz.Close(); err != nil { + return err + } + if err := gzf.Close(); err != nil { + return err + } + + if err := f.Close(); err != nil { + return err + } + if err := os.Remove(src); err != nil { + return err + } + + return nil +} + +// logInfo is a convenience struct to return the filename and its embedded +// timestamp. +type logInfo struct { + timestamp time.Time + os.FileInfo +} + +// byFormatTime sorts by newest time formatted in the name. +type byFormatTime []logInfo + +func (b byFormatTime) Less(i, j int) bool { + return b[i].timestamp.After(b[j].timestamp) +} + +func (b byFormatTime) Swap(i, j int) { + b[i], b[j] = b[j], b[i] +} + +func (b byFormatTime) Len() int { + return len(b) +} \ No newline at end of file diff --git a/model/device.go b/model/device.go new file mode 100755 index 0000000..a42839f --- /dev/null +++ b/model/device.go @@ -0,0 +1,247 @@ +/* + Model for standard/IU records +*/ + +package model + +import ( + "bytes" + "encoding/gob" + "encoding/json" + "time" +) + +/* + Standard tags for several properties +*/ +const ( + TAG_TIMESTAMP = 1 + TAG_PRIORITY = 2 + TAG_LONGITUDE = 3 + TAG_LATITUDE = 4 + TAG_ALTITUDE = 5 + TAG_ANGLE = 6 + TAG_SATELITES = 7 + TAG_SPEED = 8 + TAG_HDOP = 9 + TAG_EVENT_SRC = 10 + + DEV_ONLINE = 1 + DEV_OFFLINE = 0 + + CMD_RUP_MODULE = 0 + CMD_RUP_RECORD = 1 + CMD_RUP_RECORD_RESP = 100 + CMD_RUP_CONFIG = 2 + CMD_RUP_CONFIG_RESP = 102 + CMD_RUP_VER = 3 + CMD_RUP_VER_RESP = 103 + CMD_RUP_FIRMW = 4 + CMD_RUP_FIRMW_RESP = 104 + CMD_RUP_SCARD = 5 + CMD_RUP_SCARD_RESP = 107 + CMD_RUP_SCARDZ = 6 + CMD_RUP_SCARDZ_RESP = 107 + CMD_RUP_SMGPRS = 7 + CMD_RUP_SMGPRS_RESP = 108 + CMD_RUP_DIAG = 9 + CMD_RUP_DIAG_RESP = 109 + CMD_RUP_TACHOC = 10 + CMD_RUP_TACHOC_RESP = 110 + CMD_RUP_TACHOD = 11 + CMD_RUP_TACHOD_RESP = 111 + CMD_RUP_TACHOI = 12 + CMD_RUP_TACHOI_RESP = 111 + CMD_RUP_TRCH = 14 + CMD_RUP_TRCH_RESP = 114 + CMD_RUP_GARMR = 30 + CMD_RUP_GARMR_RESP = 130 + CMD_RUP_GARMD = 31 + CMD_RUP_GARMD_RESP = 131 + CMD_RUP_CONN_PARM = 105 + CMD_RUP_ODO = 106 +) + +// Device and standard Tag type +type DevTag uint16 +type StdTag uint16 +type IOMap map[DevTag]StdTag + +type DeviceData struct { + Command byte + Data []byte +} + +// Data structure for Device I/O record (8-bit) +type DeviceIo8 struct { + Tag StdTag + Value int8 +} + +// Data structure for Device I/O record (16-bit) +type DeviceIo16 struct { + Tag StdTag + Value int16 +} + +// Data structure for Device I/O record (32-bit) +type DeviceIo32 struct { + Tag StdTag + Value int32 +} + +// Data structure for Device I/O record (64-bit) +type DeviceIo64 struct { + Tag StdTag + Value int64 +} + +// Data structure for real/double I/O +type DeviceIoReal struct { + Tag StdTag + Value float64 +} + +// Data structure for string I/O +type DeviceIoString struct { + Tag StdTag + Value string +} + +// IO group +type DeviceIo struct { + V8 []DeviceIo8 + V16 []DeviceIo16 + V32 []DeviceIo32 + V64 []DeviceIo64 + VReal []DeviceIoReal + VStr []DeviceIoString +} + +// Data structure for standard IU records +type DeviceRecord struct { + Timestamp time.Time + Priority byte + Longitude float64 + Latitude float64 + Altitude float32 + Angle float32 + Satelites byte + Speed float32 + IO DeviceIo +} + +// Basic device information +type DeviceDescriptor struct { + IMEI uint64 + QoS byte + Id uint64 + Model string +} + +// Collection of data readed from device +type DeviceRecords struct { + TimeReceived time.Time + Descriptor DeviceDescriptor + Records []DeviceRecord +} + +//-------------------------------------------------------------------- +type DeviceIoMapping struct { + Descriptor DeviceDescriptor + IOMapping map[DevTag]StdTag +} + +//-------------------------------------------------------------------- +type DisplayRequest struct { + Timestamp time.Time + IMEI uint64 + PortID byte + Data []byte +} + +//-------------------------------------------------------------------- + +//Parser interface that must be implemented by device +type Parser interface { + GetMaxPacketSize() int + GetMinPacketSize() int + GetBufferSize() int + GetStream() []byte + Payload() []byte + GetError() error + GetCommand() byte +// GetRecords() *DeviceRecords + GetIMEI() uint64 + GetClientResponse() []byte + ExecuteAsync() +} + +//-------------------------------------------------------------------- + +//Convert record to/from stream +type RecordsConverter struct { +} + +/* + Convert records to JSON +*/ +func (self RecordsConverter) ToJson(recs *DeviceRecords) (jstr string, err error) { + bin, err := json.Marshal(recs) + if err != nil { + return "", err + } + + jstr = string(bin) + return jstr, nil +} + +/* + Convert json to records +*/ +func (self RecordsConverter) FromJson(jstr string) (recs *DeviceRecords, err error) { + var devRec DeviceRecords + err = json.Unmarshal([]byte(jstr), &devRec) + if err != nil { + return nil, err + } + + recs = &devRec + return recs, nil +} + +/* + Convert device records to bytes +*/ +func (self RecordsConverter) ToStream(recs *DeviceRecords) (stream []byte, err error) { + var buf bytes.Buffer // Stand-in for byte stream buffer + enc := gob.NewEncoder(&buf) // Will write stream. + + // Encode (send) some values. + err = enc.Encode(recs) + if err != nil { + return nil, err + } + + //Gob bytes + stream = buf.Bytes() + return stream, nil +} + +/* + Convert records from stream +*/ +func (self RecordsConverter) FromStream(stream []byte) (recs *DeviceRecords, err error) { + buf := bytes.NewBuffer(stream) + dec := gob.NewDecoder(buf) // Will read from buffer. + + // Decode (receive) and print the values. + var dpkt DeviceRecords + err = dec.Decode(&dpkt) + if err != nil { + return nil, err + } + recs = &dpkt + + return recs, nil +} diff --git a/model/message.go b/model/message.go new file mode 100755 index 0000000..c69e8e2 --- /dev/null +++ b/model/message.go @@ -0,0 +1,468 @@ +//Message model +/* + Table "public.bcs_list" + Column | Type | Modifiers +----------------+-----------------------------+------------------------------------------------------- + id | bigint | not null default nextval('bcs_list_id_seq'::regclass) + bcs_message_id | bigint | + imei | character varying(25) | + sent_ts | timestamp without time zone | + delivered_ts | timestamp without time zone | +Indexes: + "bcs_list_pkey" PRIMARY KEY, btree (id) +Foreign-key constraints: + "bcs_list_bcs_message_id_fkey" FOREIGN KEY (bcs_message_id) REFERENCES bcs_message(id) + + Table "public.bcs_message" + Column | Type | Modifiers +------------------+-----------------------------+---------------------------------------------------------- + id | bigint | not null default nextval('bcs_message_id_seq'::regclass) + bcs_message_time | timestamp without time zone | + duration | integer | + mbuzzer | integer | + message | text | + expired | timestamp without time zone | + company_id | bigint | +Indexes: + "bcs_message_pkey" PRIMARY KEY, btree (id) +Foreign-key constraints: + "bcs_message_company_id_fkey" FOREIGN KEY (company_id) REFERENCES m_company(id) +Referenced by: + TABLE "bcs_list" CONSTRAINT "bcs_list_bcs_message_id_fkey" FOREIGN KEY (bcs_message_id) REFERENCES bcs_message(id) +*/ + +package model + +import ( + "bytes" + "encoding/json" + "errors" + "fmt" + "io/ioutil" + "log" + "net/http" + "strconv" + "strings" + "sync" + "time" + + "github.com/ipsusila/opt" +) + +//Message status report +const ( + MessageError = -1 + MessageSent = 1 + MessageDelivered = 2 +) + +//ISOTime encapsulate timestamp for JSON parsing +type ISOTime struct { + time.Time +} + +//UserMessage retrieved from GUI +type UserMessage struct { + Vehicles []string `json:"vehicles"` + Duration int `json:"duration"` + NBuzzer int `json:"nbuzzer"` + Message string `json:"message"` + Expired ISOTime `json:"expired"` +} + +//BroadcastMessage holds message information need to be broadcast +type BroadcastMessage struct { + Timestamp ISOTime `json:"ts"` + Duration int `json:"duration"` + NBuzzer int `json:"nbuzzer"` + Message string `json:"message"` + Expired ISOTime `json:"expired"` +} + +//MessageStatus for specific IMEI +type MessageStatus struct { + IMEI string `json:"imei"` + Status string `json:"status"` + Timestamp string `json:"timestamp"` + StatusCode int `json:"-"` +} + +//MessageProvider send/receive message +type MessageProvider interface { + Get(imei uint64) (*BroadcastMessage, error) + Put(message *UserMessage) error + Update(status *MessageStatus) error +} + +type messageSet struct { + sync.RWMutex + messages []*BroadcastMessage + readPos int + writePos int + capacity int + numItems int +} + +//DbMessageProvider provides message with DB storage +type DbMessageProvider struct { + sync.RWMutex + queueMsg map[uint64]*messageSet + sentMsg map[uint64]*messageSet + capacity int + saveToDb bool + loadFromDb bool + messageAPI string + reportAPI string + serviceTimeout time.Duration + appendIMEI bool + serviceClient *http.Client +} + +//------------------------------------------------------------------------------------------------- + +//UnmarshalJSON convert string to timestamp +//Convet from Y-m-d H:M:S +func (tm *ISOTime) UnmarshalJSON(b []byte) (err error) { + //TODO time other than local + s := strings.Trim(string(b), "\"") + tm.Time, err = time.ParseInLocation("2006-01-02 15:04:05", s, time.Local) + if err != nil { + tm.Time = time.Time{} + } + return err +} + +//------------------------------------------------------------------------------------------------- +func newMessageSet(capacity int) *messageSet { + sets := &messageSet{ + capacity: capacity, + numItems: 0, + readPos: 0, + writePos: 0, + messages: make([]*BroadcastMessage, capacity), + } + + return sets +} + +func (q *messageSet) doPut(msg *BroadcastMessage) bool { + //check count (full or not?) + q.Lock() + defer q.Unlock() + + if q.numItems == q.capacity { + return false + } + + msg.Timestamp.Time = time.Now() + pos := q.writePos % q.capacity + q.messages[pos] = msg + q.writePos = pos + 1 + q.numItems++ + + return true +} + +func (q *messageSet) put(msg *BroadcastMessage) bool { + //check message pointer + if msg == nil { + return false + } + + return q.doPut(msg) +} +func (q *messageSet) putUnique(msg *BroadcastMessage) bool { + //check message pointer + if msg == nil || q.contains(msg) { + return false + } + + return q.doPut(msg) +} + +func (q *messageSet) take() *BroadcastMessage { + q.Lock() + defer q.Unlock() + + //check count (empty or not?) + if q.numItems == 0 { + return nil + } + + pos := q.readPos % q.capacity + msg := q.messages[pos] + q.readPos = pos + 1 + q.numItems-- + + return msg +} + +func (q *messageSet) get() *BroadcastMessage { + q.Lock() + defer q.Unlock() + + //check count (empty or not?) + if q.numItems == 0 { + return nil + } + + pos := q.readPos % q.capacity + return q.messages[pos] +} + +func (q *messageSet) count() int { + q.RLock() + defer q.RUnlock() + + return q.numItems +} + +func (q *messageSet) contains(m *BroadcastMessage) bool { + q.RLock() + defer q.RUnlock() + + beg := q.readPos + end := q.writePos + for { + pos := beg % q.capacity + if pos == end { + break + } + + //check message + m2 := q.messages[pos] + eq := m.EqualTo(m2) + if eq { + return true + } + beg++ + } + + return false +} + +//------------------------------------------------------------------------------------------------- + +//EqualTo return true if message is equal +func (m1 *BroadcastMessage) EqualTo(m2 *BroadcastMessage) bool { + eq := m1.Timestamp == m2.Timestamp && + m1.Duration == m2.Duration && + m1.NBuzzer == m2.NBuzzer && + m1.Expired == m2.Expired && + m1.Message == m2.Message + + return eq +} + +//------------------------------------------------------------------------------------------------- + +//NewDbMessageProvider create new provider +func NewDbMessageProvider(options *opt.Options) (*DbMessageProvider, error) { + //make sure url ends with / + p := &DbMessageProvider{} + + //TODO init + return p, nil +} + +func (p *DbMessageProvider) getFromDb(imei uint64) (*BroadcastMessage, error) { + if !p.loadFromDb { + return nil, nil + } + + //Get message from API + //TODO: can it handle many connections? + msg := &BroadcastMessage{} + + //alamat internal + imeiStr := fmt.Sprintf("%d", imei) + url := p.messageAPI + imeiStr + err := p.getJSON(url, msg) + if err != nil { + return nil, err + } + now := time.Now() + if msg.Expired.Before(now) { + return nil, nil + } + + return msg, nil +} +func (p *DbMessageProvider) putToDb(message *UserMessage) error { + if !p.saveToDb { + return nil + } + + return nil +} + +func (p *DbMessageProvider) updateDb(status *MessageStatus) error { + url := p.reportAPI + if p.appendIMEI { + url += status.IMEI + } + err := p.putJSON(url, status) + if err != nil { + log.Printf("PUT request error: %v\n", err) + return err + } + + return nil +} + +func (p *DbMessageProvider) getJSON(url string, target interface{}) error { + r, err := p.serviceClient.Get(url) + if err != nil { + return err + } + defer r.Body.Close() + + return json.NewDecoder(r.Body).Decode(target) +} + +func (p *DbMessageProvider) putJSON(url string, data interface{}) error { + payload, err := json.Marshal(data) + if err != nil { + return err + } + reader := bytes.NewReader(payload) + client := p.serviceClient + req, err := http.NewRequest("PUT", url, reader) + if err != nil { + return err + } + req.ContentLength = int64(len(payload)) + req.Header.Set("Content-Type", "application/json") + response, err := client.Do(req) + if err != nil { + return err + } + defer response.Body.Close() + + //read content + result, err := ioutil.ReadAll(response.Body) + if err != nil { + return err + } + str := string(result) + if strings.Contains(str, "no") { + return errors.New("Failed to PUT data to service: " + str) + } + + //request code + code := response.StatusCode + if code == http.StatusOK || code == http.StatusCreated { + return nil + } + + status := response.Status + return errors.New("PUT error with status = " + status) +} + +//------------------------------------------------------------------------------------------------- + +//Get return broadcast message for given IMEI +func (p *DbMessageProvider) Get(imei uint64) (*BroadcastMessage, error) { + p.RLock() + defer p.RUnlock() + + //get queue for this imei + queue, ok := p.queueMsg[imei] + if !ok { + return p.getFromDb(imei) + } + + //get message + msg := queue.get() + if msg == nil { + return p.getFromDb(imei) + } + return msg, nil +} + +//Put setup new messages +func (p *DbMessageProvider) Put(message *UserMessage) error { + p.Lock() + defer p.Unlock() + + now := ISOTime{time.Now()} + for _, vid := range message.Vehicles { + imei, err := strconv.ParseUint(vid, 10, 64) + if err != nil { + log.Printf("Parse IMEI (%v) error: %v\n", vid, err) + continue + } + bm := &BroadcastMessage{ + Timestamp: now, + Duration: message.Duration, + NBuzzer: message.NBuzzer, + Message: message.Message, + Expired: message.Expired, + } + queue, ok := p.queueMsg[imei] + if !ok { + queue = newMessageSet(p.capacity) + p.queueMsg[imei] = queue + } + + ok = queue.putUnique(bm) + if !ok { + //log + log.Printf("Put message error-> %v:%v", imei, bm.Message) + } + } + + //save to database + return p.putToDb(message) +} + +//Update message status +func (p *DbMessageProvider) Update(status *MessageStatus) error { + p.Lock() + defer p.Unlock() + + imei, err := strconv.ParseUint(status.IMEI, 10, 64) + if err != nil { + return err + } + + //message delivered + if status.StatusCode == MessageDelivered || status.StatusCode == MessageError { + //get message from "sent message" collection + sets, ok := p.sentMsg[imei] + if !ok { + return errors.New("delivered message not found in sets") + } + msg := sets.take() + + //if status is error, return message to broadcast queue + if msg != nil && status.StatusCode == MessageError { + //return to sets + queue, ok := p.queueMsg[imei] + if !ok { + queue = newMessageSet(p.capacity) + p.queueMsg[imei] = queue + } + queue.putUnique(msg) + } + } else if status.StatusCode == MessageSent { + //message sent, get from queue + queue, ok := p.queueMsg[imei] + if !ok { + return errors.New("message not found in sets") + } + msg := queue.take() + if msg != nil { + //move to "sent message" collection + sets, ok := p.sentMsg[imei] + if !ok { + sets = newMessageSet(p.capacity) + p.sentMsg[imei] = sets + } + sets.put(msg) + } + } + + //update status in database + return p.updateDb(status) +} diff --git a/model/message_test.go b/model/message_test.go new file mode 100755 index 0000000..1459d8c --- /dev/null +++ b/model/message_test.go @@ -0,0 +1,62 @@ +package model + +import ( + "fmt" + "testing" + "time" +) + +func TestQueue(t *testing.T) { + queue := newMessageSet(20) + finish := make(chan bool, 2) + + fnPush := func() { + for k := 0; k < 30; k++ { + msg := &BroadcastMessage{ + Timestamp: ISOTime{time.Now()}, + Message: fmt.Sprintf("Message %02d", k), + } + ok := queue.put(msg) + if !ok { + t.Logf("Push error (#n = %d)\n", queue.count()) + time.Sleep(20) + } + } + finish <- true + } + + fnPop := func() { + for k := 0; k < 50; k++ { + msg := queue.take() + if msg != nil { + t.Logf("#Items %d, msg: %v -> %v", queue.count(), msg.Timestamp, msg.Message) + } else { + t.Logf("#num items %d", queue.count()) + time.Sleep(1) + } + } + finish <- true + close(finish) + } + + go fnPush() + go fnPop() + + for ok := range finish { + t.Logf("Finish %v", ok) + } + + //pointer test + msg1 := &BroadcastMessage{ + Timestamp: ISOTime{time.Now()}, + } + msg2 := msg1 + msg3 := msg1 + + if msg2 == msg3 { + t.Logf("Message is equal") + } else { + t.Logf("Message is not equal") + } + +} diff --git a/model/server.go b/model/server.go new file mode 100755 index 0000000..691c8c3 --- /dev/null +++ b/model/server.go @@ -0,0 +1,78 @@ +/* + Package for server related model +*/ + +package model + +const ( + SERVER_ZMQ = "zmq" + SERVER_NET = "net" + + CMD_START = "start" + CMD_RESTART = "restart" + CMD_STOP = "stop" + + DEV_RUPTELA = "RUPTELA" + DEV_TELTONIKA = "TELTONIKA" + + MAP_SHARD_COUNT = 32 +) + +/* + REQ-REP pattern request. +*/ +type Request struct { + Origin string + Token string + Type string + Data string +} + +type IoMapResponse struct { + Descriptor DeviceDescriptor + DevTags []DevTag + StdTags []StdTag +} + +type ServerConfig struct { + Id int + IP string + Port int + MaxSocket int + Mode string + ChanLimit uint32 + Device string + TimeoutMilis int +} + +/* + Interface for service which provides several information. +*/ +type ServiceProvider interface { + IsRegistered(imei uint64) bool + GetDeviceIoMapping(imei uint64) (iom *DeviceIoMapping, err error) +} + +//Device server interface +type DeviceServer interface { + Start() + Stop() +} + +/* + Get device io mapping +*/ +func GetDeviceIoMapping(imei uint64) (iom *DeviceIoMapping, err error) { + //------------------------------------- + //TODO get mapping from server/cache + iom = new(DeviceIoMapping) + iom.Descriptor.Id = 10 + iom.Descriptor.Model = "Pro3" + iom.Descriptor.QoS = 1 + iom.Descriptor.IMEI = imei + if iom.IOMapping == nil { + iom.IOMapping = make(IOMap) + } + + return iom, nil +} diff --git a/parser/.DS_Store b/parser/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/parser/.DS_Store differ diff --git a/parser/devicePrs.go b/parser/devicePrs.go new file mode 100755 index 0000000..ea4a252 --- /dev/null +++ b/parser/devicePrs.go @@ -0,0 +1,573 @@ +/* + Package for parsing devicePrs byte stream to struct. +*/ + +package parser + +import ( + "database/sql" + "encoding/hex" + "encoding/json" + "errors" + "fmt" + "log" + "net/http" + "strings" + "time" + + "bytes" + + "io/ioutil" + + "github.com/ipsusila/opt" + "github.com/confluentinc/confluent-kafka-go/kafka" + "../model" +) + +const ( + statusSent = 1 + statusDelivered = 2 + statusError = -1 +) + +const ( + timeLayout = "2006-01-02 15:04:05" +) + +//NACK response, CRC = 565 +var rNACK = []byte{0x00, 0x02, 0x64, 0x00, 0x02, 0x35} + +//ACK response, CRC = 5052 +var rACK = []byte{0x00, 0x02, 0x64, 0x01, 0x13, 0xBC} + +//trasparent channel error +var rEmpty = []byte{0x00, 0x02, 0x64, 0x01, 0x13, 0xBC} + +//tch empty +var tEmpty = []byte{0, 4, 114, 1, 0, 0, 57, 239} + +//PortID for transparent channel +var PortID byte = 0x01 + +//auto-increment id +var iCounter int64 + +var sReplacer = strings.NewReplacer("\\", "\\\\", ":", "\\:", "$", "\\$") + +//-------------------------------------------------------------------- + +//DevicePrsOptions store specific parser options +type DevicePrsOptions struct { + messageAPI string + reportAPI string + serviceTimeout time.Duration + appendIMEI bool + insertQuery string + serviceClient *http.Client + tagOption *opt.Options + BrokerServer string + BrokerTopic string + DeviceName string +} + +//ISOTime encapsulate timestamp for JSON parsing +type ISOTime struct { + time.Time +} + +//BroadcastMessage store message information to be broadcasted +type BroadcastMessage struct { + Timestamp ISOTime `json:"ts"` + Duration int `json:"duration"` + NBuzzer int `json:"nbuzzer"` + Message string `json:"message"` + Expired ISOTime `json:"expired"` +} + +//MessageStatus for specific IMEI +type MessageStatus struct { + IMEI string `json:"imei"` + Status string `json:"status"` + Timestamp string `json:"timestamp"` +} + +//DevicePrsParser encapsulate parser configuration for DevicePrs device +type DevicePrsParser struct { + options *DevicePrsOptions + db *sql.DB + MaxPacketSize int + MinPacketSize int + BufferSize int + Data []byte + IMEI uint64 + Error error + Command byte + //Records *model.DeviceRecords + Records DeviceRecordHeader + procdr *kafka.Producer +} + +//UnmarshalJSON convert string to timestamp +func (tm *ISOTime) UnmarshalJSON(b []byte) (err error) { + //TODO time other than local + s := strings.Trim(string(b), "\"") + tm.Time, err = time.ParseInLocation(timeLayout, s, time.Local) + if err != nil { + tm.Time = time.Time{} + } + return err +} + +//GetMaxPacketSize return maximum packet size for this parser +func (p *DevicePrsParser) GetMaxPacketSize() int { + return p.MaxPacketSize +} + +//GetMinPacketSize return minimum valid packet size for this parser +func (p *DevicePrsParser) GetMinPacketSize() int { + return p.MinPacketSize +} + +//GetBufferSize return buffer size for reading data +func (p *DevicePrsParser) GetBufferSize() int { + return p.BufferSize +} + +//GetError return last error +func (p *DevicePrsParser) GetError() error { + if p.Error != nil { + return p.Error + } + return nil +} + +//Payload return data associated stored in +func (p *DevicePrsParser) Payload() []byte { + //Field Packet length IMEI Command ID Payload Data CRC16 + //Size (bytes) 2 8 1 [1-1009] 2 + n := len(p.Data) + if n < p.MinPacketSize { + return []byte{} + } + + return p.Data[11:(n - 2)] +} + +//GetStream return data stream +func (p *DevicePrsParser) GetStream() []byte { + return p.Data +} + +//GetIMEI return IMEI +func (p *DevicePrsParser) GetIMEI() uint64 { + return p.IMEI +} + +//GetCommand return command associated to this packet +func (p *DevicePrsParser) GetCommand() byte { + return p.Command +} + +func (p *DevicePrsParser) saveToDatabase() error { + imei := fmt.Sprintf("%d", p.IMEI) + dInHex := hex.EncodeToString(p.Data) + + //TODO, make packet invalid if IMEI is not registered + db := p.db + if db != nil { + //TODO: save data to database + //`INSERT INTO "GPS_DATA"("IMEI", "DATA_LOG", "FLAG", "DATE_INS", "DESC", "GPS_CODE", "DATA_LEN") + //VALUES($1, $2, $3, $4, $5, $6, $7)` + now := time.Now().Local().Format(timeLayout) + query := p.options.insertQuery + result, err := db.Exec(query, imei, dInHex, false, now, "", p.options.DeviceName, len(p.Data)) + if err != nil { + log.Printf("INSERT ERROR: %s -> %s; %s: %s\n", err.Error(), query, imei, dInHex) + return err + } + id, _ := result.LastInsertId() + nrows, _ := result.RowsAffected() + log.Printf("IMEI: %v, insert-id: %d, nrows: %d\n", imei, id, nrows) + } else { + //if database not defined, display packet in log + log.Printf("IMEI: %v\n Data: %v\n", imei, dInHex) + } + + return nil +} + +func (p *DevicePrsParser) sendToBroker() error { + imei := fmt.Sprintf("%d", p.IMEI) + + //TODO, make packet invalid if IMEI is not registered + procdr := p.procdr + if procdr != nil { + dataJson, err := json.Marshal(p.Records) + if err != nil { + log.Printf("Error parse to JSON (IMEI: %v): %s\n", imei, err) + } + //log.Printf("JSON : %v\n",string(dataJson)) + + log.Printf("Number of records: %d (IMEI: %v)\n", p.Records.NumRec, imei) + + //broker + topic := p.options.BrokerTopic + //producer channel + doneChan := make(chan bool) + go func() { + defer close(doneChan) + for e := range procdr.Events() { + switch ev := e.(type) { + case *kafka.Message: + m := ev + if m.TopicPartition.Error != nil { + log.Printf("Sent failed: %v (IMEI: %v)\n", m.TopicPartition.Error, imei) + } else { + log.Printf("Sent message to topic %s [%d] at offset %v (IMEI: %v)\n", + *m.TopicPartition.Topic, m.TopicPartition.Partition, m.TopicPartition.Offset, imei) + } + return + + default: + log.Printf("Ignored event: %s (IMEI: %v)\n", ev,imei) + } + } + }() + value := string(dataJson) + procdr.ProduceChannel() <- &kafka.Message{ + TopicPartition: kafka.TopicPartition{Topic: &topic, Partition: kafka.PartitionAny}, + Value: []byte(value), + Headers: []kafka.Header{{Key: imei, Value: []byte( p.Records.Tstamp.String() )}}, + } + // wait for delivery report goroutine to finish + _ = <-doneChan + + } else { + //if database not defined, display packet in log + log.Printf("Message Broker not defined, IMEI: %v\n", imei) + } + + return nil +} + +func (p *DevicePrsParser) getJSON(url string, target interface{}) error { + r, err := p.options.serviceClient.Get(url) + if err != nil { + return err + } + defer r.Body.Close() + + return json.NewDecoder(r.Body).Decode(target) +} + +func (p *DevicePrsParser) putJSON(url string, data interface{}) error { + if p.options == nil { + return errors.New("PUT error, options not defined") + } + + payload, err := json.Marshal(data) + if err != nil { + return err + } + reader := bytes.NewReader(payload) + client := p.options.serviceClient + req, err := http.NewRequest("PUT", url, reader) + if err != nil { + return err + } + req.ContentLength = int64(len(payload)) + req.Header.Set("Content-Type", "application/json") + response, err := client.Do(req) + if err != nil { + return err + } + defer response.Body.Close() + + //read content + result, err := ioutil.ReadAll(response.Body) + if err != nil { + return err + } + str := string(result) + if strings.Contains(str, "no") { + return errors.New("Failed to update message status: " + str) + } + + //request code + code := response.StatusCode + if code == http.StatusOK || code == http.StatusCreated { + return nil + } + + status := response.Status + return errors.New("PUT error with status = " + status) +} + +func (p *DevicePrsParser) askForBroadcastMessage() (string, error) { + if p.options == nil { + return "", errors.New("GET error, options not defined") + } + //Get message from API + //TODO: can it handle many connections? + msg := &BroadcastMessage{} + + //alamat internal + imei := fmt.Sprintf("%d", p.IMEI) + url := p.options.messageAPI + imei + err := p.getJSON(url, msg) + if err != nil { + return "", err + } + now := time.Now() + if msg.Expired.Before(now) { + return "", nil + } + + //get buzzer count + nbeep := msg.NBuzzer + if nbeep <= 0 { + nbeep = 1 + } else if nbeep > 9 { + nbeep = 9 + } + + dispSec := msg.Duration + if dispSec <= 0 { + dispSec = 1 + } else if dispSec > 999 { + dispSec = 999 + } + + escapedMsg := sReplacer.Replace(msg.Message) + pesan := fmt.Sprintf(":t%d%03d%v$", nbeep, dispSec, escapedMsg) + + //log message + log.Printf("IMEI = %d, message = %v\n", p.IMEI, pesan) + + //go update broadcast status (mark as "sent") + go p.updateBroadcastStatus(statusSent) + + //return the message + return pesan, nil +} + +//Update broadcast status +func (p *DevicePrsParser) updateBroadcastStatus(status int) error { + now := time.Now() + report := &MessageStatus{ + IMEI: fmt.Sprintf("%d", p.IMEI), + Timestamp: now.Format(timeLayout), + } + switch status { + case statusError: + //Do nothing + log.Printf("IMEI=%d, Message status = Error\n", p.IMEI) + case statusSent: + report.Status = "sent" + case statusDelivered: + report.Status = "delivered" + } + + if len(report.Status) > 0 && p.options != nil { + url := p.options.reportAPI + if p.options.appendIMEI { + url += fmt.Sprintf("%d", p.IMEI) + } + err := p.putJSON(url, report) + if err != nil { + log.Printf("PUT request error: %v\n", err) + return err + } + + log.Printf("IMEI=%v, Message status = %v\n", report.IMEI, report.Status) + } + + return nil +} + +//GetBroadcastMessage return message payload tobe broadcased to client +func (p *DevicePrsParser) GetBroadcastMessage() ([]byte, error) { + pesan, err := p.askForBroadcastMessage() + n := len(pesan) + if err != nil { + return nil, err + } + + //construct message + npacket := n + 4 + data := make([]byte, 8+n) + data[0] = byte(npacket >> 8) + data[1] = byte(npacket) + data[2] = 0x72 + data[3] = 0x01 //PORT 'B' (TODO: configurable) + data[4] = 0x00 + data[5] = 0x00 + + //setup Payload + payload := []byte(pesan) + ptr := data[6:] + copy(ptr, payload) + + //calculate CRC + crc := crc16CCITT(data[2:(n + 6)]) + data[n+6] = byte(crc >> 8) + data[n+7] = byte(crc) + + return data, nil +} + +//GetClientResponse return appropriate response to client according to packet +func (p *DevicePrsParser) GetClientResponse() []byte { + //Get response to client + //TODO other response + switch int(p.Command) { + case model.CMD_RUP_RECORD: + if p.IMEI == 0 || p.Error != nil { + return rNACK + } + return rACK + case model.CMD_RUP_TRCH: + if p.IMEI == 0 || p.Error != nil { + return tEmpty + } + + //parse incoming message + tch, err := parseTchStream(p.Data, p.MinPacketSize, p.MaxPacketSize) + if err != nil { + return tEmpty + } + + //ceck command type + payload := string(tch.Data) + if strings.HasPrefix(payload, "GMn") || + strings.HasPrefix(payload, "GMi") || + strings.HasPrefix(payload, "GMe") { + + //send message if initial, none or error + data, err := p.GetBroadcastMessage() + if err != nil { + p.Error = err + return tEmpty + } + + return data + } else if strings.HasPrefix(payload, "GMo") { + //ok, message delivered + go p.updateBroadcastStatus(statusDelivered) + } + + //empty transparent channel + return tEmpty + } + + //empty + return rEmpty +} + +//GetRecords return parsed records +// func (p *DevicePrsParser) GetRecords() *model.DeviceRecords { +// if p.IMEI == 0 || p.Error != nil { +// return nil +// } + +// //parse stream if not yet done +// if p.Records == nil { +// //Stream already verified when creating parser +// p.Records, p.Error = parseStream(p.Data, p.MinPacketSize, p.MaxPacketSize, true) +// if p.Error != nil { +// return nil +// } +// } + +// return p.Records +// } + +//ExecuteAsync perform task +func (p *DevicePrsParser) ExecuteAsync() bool { + var status bool + status = true + //TODO identify according to command + cmd := p.GetCommand() + switch cmd { + case model.CMD_RUP_RECORD: + err := p.saveToDatabase() + if err != nil { + status = false + p.Error = err + } + + err = p.sendToBroker() + } + + return status +} + +//-------------------------------------------------------------------- + +//NewDevicePrsOptions create options for devicePrs +func NewDevicePrsOptions(options *opt.Options) *DevicePrsOptions { + svcOpt := options.Get(model.DEV_RUPTELA) + + defQuery := `INSERT INTO "GPS_DATA"("IMEI", "DATA_LOG", "FLAG", "DATE_INS", "DESC", "GPS_CODE", "DATA_LEN") + VALUES($1, $2, $3, $4, $5, $6, $7)` + insertQuery := svcOpt.GetString("insertQuery", defQuery) + rupOpt := &DevicePrsOptions{ + messageAPI: svcOpt.GetString("message", ""), + reportAPI: svcOpt.GetString("report", ""), + serviceTimeout: time.Duration(svcOpt.GetInt("serviceTimeout", 10)) * time.Second, + appendIMEI: svcOpt.GetBool("appendIMEI", false), + insertQuery: insertQuery, + tagOption: options.Get("iotag"), + BrokerServer: options.Get("messagebroker").GetString("brokerServer",""), + BrokerTopic: options.Get("messagebroker").GetString("brokerTopic",""), + DeviceName: options.Get("server").GetString("device",""), + } + //create client + rupOpt.serviceClient = &http.Client{Timeout: rupOpt.serviceTimeout} + + return rupOpt +} + +//NewDevicePrs create empty parser +func NewDevicePrs() *DevicePrsParser { + p := &DevicePrsParser{ + MaxPacketSize: 2048, + MinPacketSize: 14, + BufferSize: 2048, + } + + return p +} + +//NewDevicePrsParser create new parser. Maximum packet size is 1KB +func NewDevicePrsParser(options *DevicePrsOptions, db *sql.DB, data []byte, procdr *kafka.Producer) *DevicePrsParser { + //allocate parser with maximum and minimum packet size + p := NewDevicePrs() + p.options = options + p.db = db + p.procdr = procdr + + //verify stream + if data != nil { + p.IMEI, p.Command, p.Records, p.Error = verifyStream(data, p.MinPacketSize, p.MaxPacketSize, options.tagOption) + if p.Error == nil { + p.Data = data + } + } else { + p.Error = fmt.Errorf("Stream is empty") + } + return p +} + +//NewDevicePrsStringParser create new parser which accept HEX string. +//Maximum packet size is 1KB i.e. maximum string length is 2KB +func NewDevicePrsStringParser(options *DevicePrsOptions, db *sql.DB, data string, procdr *kafka.Producer) *DevicePrsParser { + stream, err := hex.DecodeString(data) + p := NewDevicePrsParser(options, db, stream,procdr) + if err != nil { + p.Error = err + } + return p +} + +//-------------------------------------------------------------------- diff --git a/parser/devicePrsInternal.go b/parser/devicePrsInternal.go new file mode 100755 index 0000000..4f131a0 --- /dev/null +++ b/parser/devicePrsInternal.go @@ -0,0 +1,445 @@ +/* + Package for parsing devicePrs byte stream to struct. +*/ + +package parser + +import ( + "bytes" + "encoding/binary" + "fmt" + "time" + //"encoding/hex" + "strconv" + "sort" + "github.com/ipsusila/opt" + + "../model" +) + +type ruptelaTchHeader struct { + Length uint16 + IMEI uint64 + CommandID byte + PortID byte + Reserved uint16 + Timestamp uint32 +} + +type DeviceRecordHeader struct { + Imei uint64 + Tstamp time.Time + NumRec uint16 + DeviceRecords []DeviceRecord +} + +type DeviceRecord struct { + Tstamp time.Time + TstampInt int64 + Imei uint64 + Longitude float64 + Latitude float64 + Altitude uint16 + Angle uint16 + Satelites uint16 + Speed uint16 + TagDevices map[string]TagDevice +} + +type TagDevice struct { + TagName string + TagId string + TagDataType string + TagVal string +} + +// ByTstamp implements sort.Interface for []DeviceRecord based on +// the TstampInt field. +type ByTstamp []DeviceRecord + +func (a ByTstamp) Len() int { return len(a) } +func (a ByTstamp) Swap(i, j int) { a[i], a[j] = a[j], a[i] } +func (a ByTstamp) Less(i, j int) bool { return a[i].TstampInt < a[j].TstampInt } + +/* + Verify that content of the byte stream match defined format +*/ +func verifyStream(data []byte, minSize int, maxSize int, tagOption *opt.Options) (imei uint64, cmd byte, rec DeviceRecordHeader, err error) { + dlen := len(data) + if dlen < minSize { + return 0, 0,rec, fmt.Errorf("Packet size is too small (< %d)", dlen) + } else if dlen > maxSize { + return 0, 0,rec, fmt.Errorf("Packet size is greater than maximum allowed size (%d)", dlen) + } + + //Extract packet size + sz := int(binary.BigEndian.Uint16(data[:2])) + if sz != (dlen - 4) { + return 0, 0,rec, fmt.Errorf("Size field mismatched (!%d)", dlen) + } + + //extract IMEI + imei = binary.BigEndian.Uint64(data[2:10]) + + //extract and verify CRC + crc := binary.BigEndian.Uint16(data[dlen-2:]) + ccrc := crc16CCITT(data[2 : dlen-2]) + if crc != ccrc { + return 0, 0,rec, fmt.Errorf("Invalid Ruptela packet (CRC-16 does not match)") + } + + //parse data + rec = parseData(data,imei,tagOption) + + //extract command + cmd = data[10] + + return imei, cmd, rec, nil +} + +/* + Parse byte stream and convert to standard record format +*/ +func parseData(data []byte, imei uint64, tagOption *opt.Options) (rec DeviceRecordHeader) { + //allocate records + rec.Tstamp = time.Now() + rec.Imei = imei + + tagOption_ := tagOption.GetObjectArray("tags") + lengthTags := len(tagOption_) + tags := make(map[string]TagDevice) + for i:=0; i maxSize { + return rec, fmt.Errorf("Packet size is greater than maximum allowed size (%d)", dataLen) + } + + //create buffer + buf := bytes.NewBuffer(data) + + //read packet header part + pktHdr := &ruptelaTchHeader{} + err := binary.Read(buf, binary.BigEndian, pktHdr) + if err != nil { + return rec, fmt.Errorf("Failed to read packet header (%v)", err) + } + //2+8+1+1+2+4 (len, imei, cmd, port, reserved, timestamp) + idx := 2 + 8 + 1 + 1 + 2 + 4 + + rec.IMEI = pktHdr.IMEI + rec.PortID = pktHdr.PortID + rec.Timestamp = time.Unix(int64(pktHdr.Timestamp), 0) + rec.Data = data[idx:(dataLen - 2)] + + return rec, nil +} + +// Calculate CRC16 with CCITT algorithm +// Based on C/C++ code in DevicePrs protocol documents +// CRC calculation omits Length(2-bytes) and CRC itself (2-bytes) +func crc16CCITT(data []byte) uint16 { + //-------------------------------------------------------------------- + var ucBit, ucCarry uint16 + //-------------------------------------------------------------------- + var usPoly uint16 = 0x8408 //reversed 0x1021 + var usCRC uint16 //initialized as zero + //-------------------------------------------------------------------- + for _, d := range data { + usCRC ^= uint16(d) + for ucBit = 0; ucBit < 8; ucBit++ { + ucCarry = usCRC & 1 + usCRC >>= 1 + if ucCarry != 0 { + usCRC ^= usPoly + } + } + } + //-------------------------------------------------------------------- + return usCRC + //-------------------------------------------------------------------- +} diff --git a/parser/devicePrs_test.go b/parser/devicePrs_test.go new file mode 100755 index 0000000..05c706f --- /dev/null +++ b/parser/devicePrs_test.go @@ -0,0 +1,409 @@ +package parser + +import ( + "bytes" + "encoding/binary" + "encoding/gob" + "encoding/hex" + "encoding/json" + "fmt" + "net/http" + "testing" + + "github.com/ipsusila/opt" + + "time" + + "../model" +) + +func TestCRC2(t *testing.T) { + pesan := ":t2005Custom Message\\: Hello Server$" + n := len(pesan) + npacket := n + 4 + data := make([]byte, 8+n) + data[0] = byte(npacket >> 8) + data[1] = byte(npacket) + data[2] = 0x72 + data[3] = 0x01 //PORT 'B' + data[4] = 0x00 + data[5] = 0x00 + + payload := []byte(pesan) + p := data[6:] + copy(p, payload) + + crc := crc16CCITT(data[2:(n + 6)]) + data[n+6] = byte(crc >> 8) + data[n+7] = byte(crc) + + fmt.Printf("Data: %X", data) +} + +func TestCRC(t *testing.T) { + //data := []byte{0x00, 0x02, 0x64, 0x01, 0x13, 0xBC} + data := []byte{0x00, 0x05, 0x72, 0x01, 0x00, 0x00, 0x66, 0xC5, 0x44} + n1 := len(data) + + //ini OK + d1 := data[2 : n1-2] + fmt.Printf("Data: %X\n", d1) + crc1 := crc16CCITT(d1) + + //salah + d2 := data[0 : n1-2] + fmt.Printf("Data: %X\n", d2) + crc2 := crc16CCITT(d2) + + //salah + d3 := data //[0 : n1-2] + fmt.Printf("Data: %X\n", d3) + crc3 := crc16CCITT(d3) + + fmt.Printf("#ACK CRC=%X, %X %X\n", crc1, byte(crc1>>8), byte(crc1)) + fmt.Printf("#ACK CRC=%X\n", crc2) + fmt.Printf("#ACK CRC=%X\n", crc3) +} + +// func xxTestParser(t *testing.T) { + +// //Parse data from DevicePrs manual +// var p model.Parser = NewDevicePrsStringParser(nil, nil, +// "033500000C076B5C208F01011E5268CEF20000196E3A3A0AEF3E934F3E2D780000000007000000005268CEFD0000196E3A3A0AEF3E934F3"+ +// "E2D780000000007000000005268CF080000196E3A3A0AEF3E934F3E2D780000000007000000005268CF130000196E3A3A0AEF3E934F3E2D7"+ +// "80000000007000000005268CF1E0000196E3A3A0AEF3E934F3E2D780000000007000000005268CF290000196E3A3A0AEF3E934F3E2D78000"+ +// "0000007000000005268CF340000196E3A3A0AEF3E934F3E2D780000000007000000005268CF3F0000196E3A3A0AEF3E934F3E2D780000000"+ +// "007000000005268CF4A0000196E3A3A0AEF3E934F3E2D780000000007000000005268CF550000196E3A3A0AEF3E934F3E2D7800000000070"+ +// "00000005268CF600000196E3A3A0AEF3E934F3E2D780000000007000000005268CF6B0000196E3A3A0AEF3E934F3E2D78000000000700000"+ +// "0005268CF730000196E36630AEF42CE4F6D0BF40400022208000000005268CF7E0000196E36B60AEF42BE4F6D0BF400000000070000000052"+ +// "68CF890000196E36B60AEF42BE4F6D0BF40000000007000000005268CF940000196E36B60AEF42BE4F6D0BF40000000007000000005268CF"+ +// "9F0000196E36B60AEF42BE4F6D0BF40000000007000000005268CFAA0000196E36B60AEF42BE4F6D0BF40000000007000000005268CFB50"+ +// "000196E36B60AEF42BE4F6D0BF40000000007000000005268CFC00000196E36B60AEF42BE4F6D0BF40000000007000000005268CFCB00001"+ +// "96E36B60AEF42BE4F6D0BF40000000007000000005268CFD60000196E36B60AEF42BE4F6D0BF40000000007000000005268CFD70000196E"+ +// "3C710AEF5EFF4F690BF40400011708000000005268CFE20000196E3B980AEF601A4F690BF40000000007000000005268CFED0000196E3B980"+ +// "AEF601A4F690BF40000000007000000005268CFF80000196E3B980AEF601A4F690BF40000000007000000005268D0030000196E3B980AEF60"+ +// "1A4F690BF40000000007000000005268D00E0000196E3B980AEF601A4F690BF40000000007000000005268D0190000196E3B980AEF601A4F6"+ +// "90BF40000000007000000005268D0240000196E3B980AEF601A4F690BF400000000070000000046E2") + +// //convert string to binary HEX +// if p.GetError() != nil { +// t.Fatal(p.GetError()) +// } +// pkt := p.GetRecords() + +// //display packet as JSON +// b, err := json.Marshal(pkt) +// if err != nil { +// t.Fatal(err) +// } +// fmt.Println(string(b)) +// // --------------------------------------------------------- + +// data2, err2 := hex.DecodeString( +// "007900000b1a2a5585c30100024e9c036900000f101733208ff45e07b31b570a001009090605011b1a020003001c01ad01021d338e1600000" + +// "2960000601a41014bc16d004e9c038400000f104fdf20900d20075103b00a001308090605011b1a020003001c01ad01021d33b11600000296" + +// "0000601a41014bc1ea0028f9") + +// //convert string to binary HEX +// if err2 != nil { +// t.Fatal(err2) +// } +// p = NewDevicePrsParser(nil, nil, data2) +// if p.GetError() != nil { +// t.Fatal(p.GetError()) +// } +// pkt = p.GetRecords() + +// //get response CRC +// rep := p.GetClientResponse() +// crc := crc16CCITT(rep[2 : len(rep)-2]) +// fmt.Println("#ACK CRC=", crc) + +// //display packet as JSON +// b, err = json.Marshal(pkt) +// if err != nil { +// t.Fatal(err) +// } +// origPkt := string(b) +// fmt.Println(origPkt) + +// //test for map +// m := make(map[byte]int) +// m[0] = 10 +// m[11] = 20 +// m[2] = 30 + +// fmt.Println(m) + +// ioM := new(model.IoMapResponse) +// ioM.Descriptor.IMEI = 10 +// ioM.Descriptor.Id = 11 +// ioM.Descriptor.Model = "ABC" +// ioM.Descriptor.QoS = 4 +// ioM.DevTags = []model.DevTag{0, 1, 2, 3} +// ioM.StdTags = []model.StdTag{10, 11, 2, 4} + +// b, err = json.Marshal(ioM) +// if err != nil { +// t.Fatal(err) +// } +// jstr := string(b) +// fmt.Println(jstr) + +// var io2 model.IoMapResponse +// err = json.Unmarshal([]byte(jstr), &io2) +// fmt.Println(io2) + +// var b1 byte = 200 +// x := int8(b1) +// y := byte(x) +// fmt.Printf("%d -> %d -> %d\n", b1, x, y) + +// by := data2[len(data2)-2:] +// fmt.Printf("Byte = %+v, %d\n", by, binary.BigEndian.Uint16(by)) + +// p = NewDevicePrsParser(nil, nil, []byte{}) +// fmt.Println("Parser ", p) + +// p = NewDevicePrsParser(nil, nil, nil) +// fmt.Println("Parser ", p) +// if p.GetError() != nil { +// fmt.Println(p.GetError()) +// } + +// rep = p.GetClientResponse() +// crc = crc16CCITT(rep[2 : len(rep)-2]) +// fmt.Println("#NACK CRC=", crc) + +// imei, cmd, _ := verifyStream(data2, p.GetMinPacketSize(), p.GetMaxPacketSize()) +// fmt.Printf("IMEI = %X, cmd = %d\n", imei, cmd) + +// //test encoding/decoding +// var network bytes.Buffer // Stand-in for a network connection +// enc := gob.NewEncoder(&network) // Will write to network. +// dec := gob.NewDecoder(&network) // Will read from network. + +// // Encode (send) some values. +// err = enc.Encode(pkt) +// if err != nil { +// t.Fatal("encode error:", err) +// } +// //fmt.Printf("Buffer = %+v\n", network) + +// // Decode (receive) and print the values. +// var dpkt model.DeviceRecords +// err = dec.Decode(&dpkt) +// if err != nil { +// t.Fatal("decode error 1:", err) +// } +// b, err = json.Marshal(&dpkt) +// decPkt := string(b) +// fmt.Printf("%+v\n", decPkt) + +// if origPkt != decPkt { +// t.Fatal("Encode/Decode records doesnot match.") +// } + +// //test original converter +// conv := model.RecordsConverter{} +// stream, err := conv.ToStream(pkt) +// if err != nil { +// t.Fatal("To stream error: ", err) +// } +// fmt.Printf("Stream length = %d bytes, orig = %d, json = %d\n", +// len(stream), len(data2), len(origPkt)) +// //fmt.Printf("Stream = %+v\n", string(stream)) + +// pkt2, err := conv.FromStream(stream) +// if err != nil { +// t.Fatal("From stream error: ", err) +// } + +// b, err = json.Marshal(&pkt2) +// decPkt2 := string(b) +// if origPkt != decPkt2 { +// t.Fatal("Encode/Decode records doesnot match.") +// } +// fmt.Printf("%+v\n", decPkt2) + +// nack := []byte{0x00, 0x02, 0x64, 0x00, 0x02, 0x35} +// crc1 := crc16CCITT(nack[2 : len(nack)-2]) +// fmt.Printf("CRC = %x\n", crc1) + +// tsch := []byte{0x00, 0x05, 0x72, 0x01, 0x00, 0x00, 0x66, 0x19, 0xF0} +// crc1 = crc16CCITT(tsch[2 : len(tsch)-2]) +// fmt.Printf("CRC = %x\n", crc1) + +// str := hex.EncodeToString(tsch) +// fmt.Printf("Hex = %+v\n", str) + +// data3, _ := hex.DecodeString( +// "0011000315A07F44865A0E01000053EA01DF65AD6D") +// crc1 = crc16CCITT(data3[2 : len(data3)-2]) +// fmt.Printf("CRC = %x, %d, %d\n", crc1, len(data3), len(data2)) +// } + +func TestTch(t *testing.T) { + str := "0011000315A07F44865A0E01000053EA01DF65AD6D" + data, err := hex.DecodeString(str) + + crc1 := crc16CCITT(data[2 : len(data)-2]) + t.Logf("CRC = %X", crc1) + + p := NewDevicePrsParser(nil, nil, data) + if p.Error != nil { + t.Errorf("Parser error: %v", p.Error) + t.FailNow() + } + + t.Logf("IMEI=%v, command=%d", p.IMEI, p.Command) + t.Logf("Struct = %+v", p) + + tch, err := parseTchStream(p.Data, p.MinPacketSize, p.MaxPacketSize) + if err != nil { + t.Errorf("Parse TCH error: %v", err) + t.FailNow() + } + + t.Logf("TCH = %+v\n", tch) + t.Logf("Data = %v", string(tch.Data)) + + //test + pesan := "" + n := len(pesan) + + //construct message + npacket := n + 4 + data = make([]byte, 8+n) + data[0] = byte(npacket >> 8) + data[1] = byte(npacket) + data[2] = 0x72 + data[3] = 0x01 //PORT 'B' (TODO: configurable) + data[4] = 0x00 + data[5] = 0x00 + + //setup Payload + payload := []byte(pesan) + ptr := data[6:] + copy(ptr, payload) + + //calculate CRC + crc := crc16CCITT(data[2:(n + 6)]) + data[n+6] = byte(crc >> 8) + data[n+7] = byte(crc) + + t.Logf("Data = %v\n", data) +} + +func getJSON(url string, target interface{}) error { + restClient := &http.Client{Timeout: 10 * time.Second} + r, err := restClient.Get(url) + if err != nil { + return err + } + defer r.Body.Close() + + return json.NewDecoder(r.Body).Decode(target) +} + +func TestJSON(t *testing.T) { + msg := &BroadcastMessage{} + imei := "868324028509698" + url := "http://202.47.70.196/oslog/api/BroadcastPrivate/getbroadcastmessage/" + imei + err := getJSON(url, msg) + if err != nil { + t.Errorf("Error get JSON: %v", err) + t.FailNow() + } + + t.Logf("JSON = %+v", msg) +} + +func TestOptions(t *testing.T) { + cfgText := ` + { + server: { + id: conoco01 + listenAddr: ":8081" + acceptTimeout: 10 # timeout (dalam detik) + writeTimeout: 10 # timeout (dalam detik) + maxReceive: 50 + maxSend: 50 + device: ruptela + } + + ruptela: { + message: "http://localhost:8081/api/" + report: "http://localhost:8081/reportAPI" + appendIMEI: false + serviceTimeout: 10 # REST Service timeout (dalam detik) + } + + gpsdata: { + storage: sql + sql: { + driver: postgres + connection: "user=isi-user password=isi-password dbname=OSLOGREC_MTRACK host=127.0.0.1 port=5432 connect_timeout=30 sslmode=disable" + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + insertQuery: INSERT INTO "GPS_DATA"("IMEI", "DATA_LOG", "FLAG", "DATE_INS", "DESC", "GPS_CODE", "DATA_LEN") VALUES($1, $2, $3, $4, $5, $6, $7) + } + } + + log: { + #Known types: console, file, sql + type: console, file, sql + console: { + # use default options + } + + + #for file (uncomment type) + # type: file + file: { + name: ./applog.log + append: true + } + + #for sql (uncomment type) + # SQLite -> driver: sqlite3 + # PostgreSQL -> driver: postgres + # type: sql + sql: { + driver: sqlite3 + connection: ./applog.sqlite + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + createQuery: CREATE TABLE applog(id INTEGER PRIMARY KEY AUTOINCREMENT, ts DATETIME, app VARCHAR(100), content TEXT) + insertQuery: INSERT INTO applog(ts, app, content) VALUES(?, ?, ?) + } + } + } + ` + + options, err := opt.FromText(cfgText, "hjson") + if err != nil { + t.Error(err) + t.FailNow() + } + + t.Logf("%+v", options) + + now := time.Now().Format(timeLayout) + nowLocal := time.Now().Local().Format(timeLayout) + t.Logf("Now= %v, local= %v\n", now, nowLocal) + + //test container + /* + c1, key := options.GetContainer("server") + t.Logf("Key = %s, Server = %+v", key, c1) + + c2, key := options.GetContainer("server.id") + t.Logf("Key = %s, Server.id = %+v", key, c2) + + c3, key := options.GetContainer("log.sql") + t.Logf("Key = %s, Log.sql = %+v", key, c3) + */ +} diff --git a/server/.DS_Store b/server/.DS_Store new file mode 100755 index 0000000..aadeead Binary files /dev/null and b/server/.DS_Store differ diff --git a/server/devicePrsNet.go b/server/devicePrsNet.go new file mode 100755 index 0000000..4f30d55 --- /dev/null +++ b/server/devicePrsNet.go @@ -0,0 +1,325 @@ +// +// DevicePrs Devie Server based on Go net package +// specify Mode=net in model.ServerConfig +// + +package server + +import ( + "database/sql" + "encoding/binary" + "errors" + "io" + "log" + "net" + "os" + "os/signal" + "syscall" + "time" + "encoding/hex" + "sync" + "math" + + "github.com/gansidui/gotcp" + "github.com/ipsusila/opt" + "github.com/confluentinc/confluent-kafka-go/kafka" + //"../model" + "../parser" +) + +//------------------------------------------------------------------- + +var serverId = "" + +type ConnectionDevice struct { + imei uint64 + data []byte + timeProcess time.Time +} +type MapConnection struct { + addr map[string]ConnectionDevice + mux sync.Mutex +} +func (c *MapConnection) AddUpdt(key string,connectionDevice ConnectionDevice) { + c.mux.Lock() + // Lock so only one goroutine at a time can access the map c.v. + c.addr[key] = connectionDevice + c.mux.Unlock() +} +func (c *MapConnection) Del(key string) { + c.mux.Lock() + // Lock so only one goroutine at a time can access the map c.v. + delete(c.addr, key) + c.mux.Unlock() +} +func (c *MapConnection) Value(key string) ConnectionDevice { + c.mux.Lock() + // Lock so only one goroutine at a time can access the map c.v. + defer c.mux.Unlock() + return c.addr[key] +} +var connectionDevices = MapConnection{addr: make(map[string]ConnectionDevice)} + +//DevicePrsServerPacket holds packet information +type DevicePrsServerPacket struct { + buff []byte +} + +//NewDevicePrsServerPacket create new packet +func NewDevicePrsServerPacket(data []byte) *DevicePrsServerPacket { + pkt := new(DevicePrsServerPacket) + pkt.buff = data + + return pkt +} + +//Serialize packet +func (p *DevicePrsServerPacket) Serialize() []byte { + return p.buff +} + +//------------------------------------------------------------------- + +//DevicePrsServerNet info +type DevicePrsServerNet struct { + Options *opt.Options + Server *gotcp.Server + Callback *DevicePrsServerCallback +} + +//Stop tcp server +func (rup *DevicePrsServerNet) Stop() { + rup.Server.Stop() +} + +//Start the server +func (rup *DevicePrsServerNet) Start() { + //---- options --------------------------------------- + serverOpt := rup.Options.Get("server") + maxSend := uint32(serverOpt.GetInt("maxSend", 40)) + maxReceive := uint32(serverOpt.GetInt("maxReceive", 40)) + addr := serverOpt.GetString("listenAddr", ":8081") + acceptTimeout := time.Duration(serverOpt.GetInt("acceptTimeout", 2)) * time.Second + writeTimeout := time.Duration(serverOpt.GetInt("writeTimeout", 5)) * time.Second + + //database options + gpsData := rup.Options.Get("gpsdata") + storage := gpsData.GetString("storage", "sql") + + dbOpt := gpsData.Get(storage) + dbDriver := dbOpt.GetString("driver", "postgres") + dbInfo := dbOpt.GetString("connection", "") + dbMaxIdle := dbOpt.GetInt("maxIdle", 0) + dbMaxOpen := dbOpt.GetInt("maxOpen", 5) + dbMaxLifetime := time.Duration(dbOpt.GetInt("maxLifetime", 60)) * time.Second + + //devicePrs options + rupOpt := parser.NewDevicePrsOptions(rup.Options) + + //server ID + serverId = serverOpt.GetString("id", "undefined (check configuration)") + + //listen to TCP + tcpAddr, err := net.ResolveTCPAddr("tcp4", addr) + if err != nil { + log.Printf("Error resolving address %v\n", addr) + return + } + listener, err := net.ListenTCP("tcp", tcpAddr) + if err != nil { + log.Printf("Error listening to tcp address %v\n", tcpAddr) + return + } + + //open database connection + db, err := sql.Open(dbDriver, dbInfo) + if err != nil { + log.Printf("Error opening db %v\n", dbDriver) + return + } + defer db.Close() + + err = db.Ping() + if err != nil { + log.Printf("DB connection error: %v\n", err) + return + } + db.SetMaxIdleConns(dbMaxIdle) + db.SetMaxOpenConns(dbMaxOpen) + db.SetConnMaxLifetime(dbMaxLifetime) + + //create procedure broker + broker := rupOpt.BrokerServer + procdr, err := kafka.NewProducer(&kafka.ConfigMap{"bootstrap.servers": broker}) + if err != nil { + log.Printf("Failed to create producer: %s\n", err) + os.Exit(1) + } + log.Printf("Created Producer %v\n", procdr) + + // creates a server + config := &gotcp.Config{ + PacketSendChanLimit: maxSend, + PacketReceiveChanLimit: maxReceive, + } + proto := &DevicePrsServerProtocol{ + maxPacketSize: parser.NewDevicePrs().MaxPacketSize, + } + + //map for storing various statistics + callback := &DevicePrsServerCallback{ + options: rupOpt, + gpsDb: db, + writeTimeout: writeTimeout, + procdr: procdr, + } + + srv := gotcp.NewServer(config, callback, proto) + rup.Server = srv + rup.Callback = callback + + // starts service + go srv.Start(listener, acceptTimeout) + log.Printf("listening: %v\n", listener.Addr()) + + // catchs system signal + chSig := make(chan os.Signal) + signal.Notify(chSig, syscall.SIGINT, syscall.SIGTERM) + ch := <-chSig + log.Printf("Signal: %v\n", ch) + + // stops service + srv.Stop() +} + +//------------------------------------------------------------------- + +//DevicePrsServerCallback holds server callback info +type DevicePrsServerCallback struct { + options *parser.DevicePrsOptions + gpsDb *sql.DB + writeTimeout time.Duration + procdr *kafka.Producer +} + +//OnConnect is called when new connection established +func (cb *DevicePrsServerCallback) OnConnect(c *gotcp.Conn) bool { + addr := c.GetRawConn().RemoteAddr() + c.PutExtraData(addr) + log.Printf("%v New connection(client: %v)\n", serverId,addr) + + //insert to array new address + var connDevice ConnectionDevice + connDevice.imei = 0 + connDevice.timeProcess = time.Now() + connectionDevices.AddUpdt(addr.String(),connDevice) + + return true +} + +//OnMessage is called when packet readed +func (cb *DevicePrsServerCallback) OnMessage(c *gotcp.Conn, p gotcp.Packet) bool { + addr := c.GetRawConn().RemoteAddr() + + //downcast packet to devicePrs packet + packet := p.(*DevicePrsServerPacket) + data := packet.Serialize() + //fmt.Println(hex.EncodeToString(data)) + + //imei is empty so, we have to add last imei to the data + connectionDevice := connectionDevices.Value(addr.String()) + + //create parser + par := parser.NewDevicePrsParser(cb.options, cb.gpsDb, data, cb.procdr) + if err := par.GetError(); err != nil { + log.Printf("Error verifying packet(client: %v): %v, Err=%v\n", + addr,hex.EncodeToString(data), err) + } + + //set imei in array imei + imei_ := connectionDevice.imei + if(imei_ == 0){ + imei_ = par.IMEI + connectionDevice.imei = par.IMEI + connectionDevice.data = data + connectionDevices.AddUpdt(addr.String(),connectionDevice) + } + + duration := time.Since(connectionDevice.timeProcess) + log.Printf("Data received(client: %v, IMEI: %v) with duration %v s\n", addr, imei_,math.Round(duration.Seconds()*100)/100) + + //save to database + statusInsert := par.ExecuteAsync() + + if(statusInsert){ + // send response to client (ACK or NACK) + rep := par.GetClientResponse() + c.AsyncWritePacket(NewDevicePrsServerPacket(rep), cb.writeTimeout) + log.Printf("Sent ACK (client: %v, IMEI: %v)\n", addr, imei_) + } + + //send message if record command + //if par.GetCommand() == model.CMD_RUP_RECORD { + // msg, err := par.GetBroadcastMessage() + // if len(msg) > 0 { + // c.AsyncWritePacket(NewRuptelaServerPacket(msg), cb.writeTimeout) + // } else if err != nil { + // log.Printf("Get message error(client: %v, IMEI: %v) = %v\n", addr, par.IMEI,err) + // } + //} + + //run parallel processing to handle packet parsing + //go par.ExecuteAsync() + return true +} + +//OnClose is called when connection being closed +func (cb *DevicePrsServerCallback) OnClose(c *gotcp.Conn) { + addr := c.GetRawConn().RemoteAddr() + connectionDevice := connectionDevices.Value(addr.String()) + duration := time.Since(connectionDevice.timeProcess) + + connectionDevices.Del(addr.String()) + log.Printf("%v Close connection (client: %v, IMEI: %v) with duration %v s\n", serverId ,c.GetExtraData(),connectionDevice.imei,math.Round(duration.Seconds()*100)/100) +} + +//------------------------------------------------------------------- + +//DevicePrsServerProtocol holds parser +type DevicePrsServerProtocol struct { + maxPacketSize int +} + +//ReadPacket called everytime data is available +func (p *DevicePrsServerProtocol) ReadPacket(conn *net.TCPConn) (gotcp.Packet, error) { + var ( + lengthBytes = make([]byte, 2) + length uint16 + ) + + //TODO handle packet other than Device Record + //OK + + // read length + if _, err := io.ReadFull(conn, lengthBytes); err != nil { + return nil, err + } + Limit := uint16(p.maxPacketSize) + if length = binary.BigEndian.Uint16(lengthBytes); length > Limit { + return nil, errors.New("The size of packet is larger than the limit") + } + + log.Printf("data packet length(client: %v) : %d", conn.RemoteAddr(), length) + + //Packet structure + //LEN + DATA + CRC16 + buff := make([]byte, 2+length+2) + copy(buff[0:2], lengthBytes) + + // read body ( buff = lengthBytes + body ) + if _, err := io.ReadFull(conn, buff[2:]); err != nil { + return nil, err + } + + return NewDevicePrsServerPacket(buff), nil +} diff --git a/server/exe/.DS_Store b/server/exe/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/server/exe/.DS_Store differ diff --git a/server/exe/applog.log b/server/exe/applog.log new file mode 100755 index 0000000..ce13f24 --- /dev/null +++ b/server/exe/applog.log @@ -0,0 +1,15947 @@ +2018/05/04 16:56:48 ruptelaNet.go:137: listening: [::]:8081 +2018/05/04 16:56:51 ruptelaNet.go:143: Signal: interrupt +2018/05/04 16:57:05 ruptelaNet.go:137: listening: [::]:8081 +2018/05/04 16:59:31 ruptelaNet.go:143: Signal: interrupt +2018/05/04 17:00:29 ruptelaNet.go:137: listening: [::]:8081 +2018/05/04 17:00:33 ruptelaNet.go:162: New connection(client: 127.0.0.1:57982) +2018/05/04 17:00:33 ruptelaNet.go:162: New connection(client: 127.0.0.1:57984) +2018/05/04 17:00:33 ruptelaNet.go:162: New connection(client: 127.0.0.1:57983) +2018/05/04 17:00:33 ruptelaNet.go:182: Data received(client: 127.0.0.1:57982, IMEI: 868204004279898) +2018/05/04 17:00:33 ruptelaNet.go:182: Data received(client: 127.0.0.1:57984, IMEI: 13226005504143) +2018/05/04 17:00:33 ruptelaNet.go:182: Data received(client: 127.0.0.1:57983, IMEI: 12207007303107) +2018/05/04 17:00:33 ruptelaNet.go:208: Close connection(client: 127.0.0.1:57982) +2018/05/04 17:00:33 ruptela.go:183: IMEI: 13226005504143, insert-id: 0, nrows: 1 +2018/05/04 17:00:33 ruptela.go:183: IMEI: 12207007303107, insert-id: 0, nrows: 1 +2018/05/04 17:00:33 ruptelaNet.go:208: Close connection(client: 127.0.0.1:57984) +2018/05/04 17:00:33 ruptelaNet.go:208: Close connection(client: 127.0.0.1:57983) +2018/05/04 17:00:33 ruptelaNet.go:162: New connection(client: [::1]:57987) +2018/05/04 17:00:33 ruptelaNet.go:162: New connection(client: [::1]:57986) +2018/05/04 17:00:33 ruptelaNet.go:208: Close connection(client: [::1]:57987) +2018/05/04 17:00:33 ruptelaNet.go:208: Close connection(client: [::1]:57986) +2018/05/04 17:00:33 ruptelaNet.go:197: Get message error = Get http://localhost:8081/api/13226005504143: read tcp [::1]:57987->[::1]:8081: read: connection reset by peer +2018/05/04 17:00:33 ruptelaNet.go:197: Get message error = Get http://localhost:8081/api/12207007303107: read tcp [::1]:57986->[::1]:8081: read: connection reset by peer +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58070) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58069) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58069) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58070) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58071) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58071) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58073) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58072) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58072) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58073) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58074) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58074) +2018/05/04 17:02:41 ruptelaNet.go:162: New connection(client: [::1]:58083) +2018/05/04 17:02:41 ruptelaNet.go:162: New connection(client: [::1]:58084) +2018/05/04 17:02:41 ruptelaNet.go:208: Close connection(client: [::1]:58083) +2018/05/04 17:02:41 ruptelaNet.go:208: Close connection(client: [::1]:58084) +2018/05/04 17:02:41 ruptelaNet.go:162: New connection(client: [::1]:58085) +2018/05/04 17:02:41 ruptelaNet.go:208: Close connection(client: [::1]:58085) +2018/05/04 17:02:46 ruptelaNet.go:162: New connection(client: [::1]:58092) +2018/05/04 17:02:46 ruptelaNet.go:162: New connection(client: [::1]:58091) +2018/05/04 17:02:46 ruptelaNet.go:208: Close connection(client: [::1]:58091) +2018/05/04 17:02:46 ruptelaNet.go:208: Close connection(client: [::1]:58092) +2018/05/04 17:02:46 ruptelaNet.go:162: New connection(client: [::1]:58093) +2018/05/04 17:02:46 ruptelaNet.go:208: Close connection(client: [::1]:58093) +2018/05/04 17:02:51 ruptelaNet.go:162: New connection(client: [::1]:58105) +2018/05/04 17:02:51 ruptelaNet.go:162: New connection(client: [::1]:58104) +2018/05/04 17:02:51 ruptelaNet.go:208: Close connection(client: [::1]:58104) +2018/05/04 17:02:51 ruptelaNet.go:208: Close connection(client: [::1]:58105) +2018/05/04 17:02:51 ruptelaNet.go:162: New connection(client: [::1]:58106) +2018/05/04 17:02:51 ruptelaNet.go:208: Close connection(client: [::1]:58106) +2018/05/04 17:02:53 ruptelaNet.go:162: New connection(client: [::1]:58107) +2018/05/04 17:02:53 ruptelaNet.go:162: New connection(client: [::1]:58108) +2018/05/04 17:02:53 ruptelaNet.go:208: Close connection(client: [::1]:58107) +2018/05/04 17:02:53 ruptelaNet.go:208: Close connection(client: [::1]:58108) +2018/05/04 17:02:53 ruptelaNet.go:162: New connection(client: [::1]:58109) +2018/05/04 17:02:53 ruptelaNet.go:208: Close connection(client: [::1]:58109) +2018/05/04 17:03:23 ruptelaNet.go:162: New connection(client: [::1]:58132) +2018/05/04 17:03:23 ruptelaNet.go:162: New connection(client: [::1]:58131) +2018/05/04 17:03:23 ruptelaNet.go:208: Close connection(client: [::1]:58131) +2018/05/04 17:03:23 ruptelaNet.go:208: Close connection(client: [::1]:58132) +2018/05/04 17:03:23 ruptelaNet.go:162: New connection(client: [::1]:58139) +2018/05/04 17:03:23 ruptelaNet.go:208: Close connection(client: [::1]:58139) +2018/05/04 17:03:49 ruptelaNet.go:162: New connection(client: [::1]:58175) +2018/05/04 17:03:49 ruptelaNet.go:162: New connection(client: [::1]:58174) +2018/05/04 17:03:49 ruptelaNet.go:208: Close connection(client: [::1]:58174) +2018/05/04 17:03:49 ruptelaNet.go:208: Close connection(client: [::1]:58175) +2018/05/04 17:03:49 ruptelaNet.go:162: New connection(client: [::1]:58178) +2018/05/04 17:03:49 ruptelaNet.go:208: Close connection(client: [::1]:58178) +2018/05/04 17:03:50 ruptelaNet.go:162: New connection(client: [::1]:58180) +2018/05/04 17:03:50 ruptelaNet.go:162: New connection(client: [::1]:58179) +2018/05/04 17:03:50 ruptelaNet.go:208: Close connection(client: [::1]:58179) +2018/05/04 17:03:50 ruptelaNet.go:208: Close connection(client: [::1]:58180) +2018/05/04 17:03:50 ruptelaNet.go:162: New connection(client: [::1]:58181) +2018/05/04 17:03:50 ruptelaNet.go:208: Close connection(client: [::1]:58181) +2018/05/04 17:03:52 ruptelaNet.go:162: New connection(client: [::1]:58188) +2018/05/04 17:03:52 ruptelaNet.go:162: New connection(client: [::1]:58187) +2018/05/04 17:03:52 ruptelaNet.go:208: Close connection(client: [::1]:58187) +2018/05/04 17:03:52 ruptelaNet.go:208: Close connection(client: [::1]:58188) +2018/05/04 17:03:52 ruptelaNet.go:162: New connection(client: [::1]:58189) +2018/05/04 17:03:52 ruptelaNet.go:208: Close connection(client: [::1]:58189) +2018/05/04 17:03:57 ruptelaNet.go:162: New connection(client: [::1]:58196) +2018/05/04 17:03:57 ruptelaNet.go:162: New connection(client: [::1]:58195) +2018/05/04 17:03:57 ruptelaNet.go:208: Close connection(client: [::1]:58195) +2018/05/04 17:03:57 ruptelaNet.go:208: Close connection(client: [::1]:58196) +2018/05/04 17:03:57 ruptelaNet.go:162: New connection(client: [::1]:58197) +2018/05/04 17:03:57 ruptelaNet.go:208: Close connection(client: [::1]:58197) +2018/05/04 17:04:27 ruptelaNet.go:162: New connection(client: [::1]:58215) +2018/05/04 17:04:27 ruptelaNet.go:162: New connection(client: [::1]:58214) +2018/05/04 17:04:27 ruptelaNet.go:208: Close connection(client: [::1]:58214) +2018/05/04 17:04:27 ruptelaNet.go:208: Close connection(client: [::1]:58215) +2018/05/04 17:04:27 ruptelaNet.go:162: New connection(client: [::1]:58221) +2018/05/04 17:04:27 ruptelaNet.go:208: Close connection(client: [::1]:58221) +2018/05/04 17:05:50 ruptelaNet.go:162: New connection(client: [::1]:58451) +2018/05/04 17:05:50 ruptelaNet.go:162: New connection(client: [::1]:58450) +2018/05/04 17:05:50 ruptelaNet.go:208: Close connection(client: [::1]:58450) +2018/05/04 17:05:50 ruptelaNet.go:208: Close connection(client: [::1]:58451) +2018/05/04 17:05:50 ruptelaNet.go:162: New connection(client: [::1]:58457) +2018/05/04 17:05:50 ruptelaNet.go:208: Close connection(client: [::1]:58457) +2018/05/04 17:12:05 ruptelaNet.go:162: New connection(client: [::1]:59065) +2018/05/04 17:12:05 ruptelaNet.go:162: New connection(client: [::1]:59064) +2018/05/04 17:12:06 ruptelaNet.go:208: Close connection(client: [::1]:59064) +2018/05/04 17:12:06 ruptelaNet.go:208: Close connection(client: [::1]:59065) +2018/05/04 17:12:06 ruptelaNet.go:162: New connection(client: [::1]:59066) +2018/05/04 17:12:06 ruptelaNet.go:208: Close connection(client: [::1]:59066) +2018/05/04 17:12:08 ruptelaNet.go:162: New connection(client: [::1]:59073) +2018/05/04 17:12:08 ruptelaNet.go:162: New connection(client: [::1]:59072) +2018/05/04 17:12:08 ruptelaNet.go:208: Close connection(client: [::1]:59072) +2018/05/04 17:12:08 ruptelaNet.go:208: Close connection(client: [::1]:59073) +2018/05/04 17:12:08 ruptelaNet.go:162: New connection(client: [::1]:59074) +2018/05/04 17:12:08 ruptelaNet.go:208: Close connection(client: [::1]:59074) +2018/05/04 17:12:19 ruptelaNet.go:162: New connection(client: [::1]:59102) +2018/05/04 17:12:19 ruptelaNet.go:162: New connection(client: [::1]:59101) +2018/05/04 17:12:19 ruptelaNet.go:208: Close connection(client: [::1]:59101) +2018/05/04 17:12:19 ruptelaNet.go:208: Close connection(client: [::1]:59102) +2018/05/04 17:12:19 ruptelaNet.go:162: New connection(client: [::1]:59103) +2018/05/04 17:12:19 ruptelaNet.go:208: Close connection(client: [::1]:59103) +2018/05/04 17:12:20 ruptelaNet.go:162: New connection(client: [::1]:59104) +2018/05/04 17:12:20 ruptelaNet.go:162: New connection(client: [::1]:59105) +2018/05/04 17:12:20 ruptelaNet.go:208: Close connection(client: [::1]:59104) +2018/05/04 17:12:20 ruptelaNet.go:208: Close connection(client: [::1]:59105) +2018/05/04 17:12:20 ruptelaNet.go:162: New connection(client: [::1]:59106) +2018/05/04 17:12:20 ruptelaNet.go:208: Close connection(client: [::1]:59106) +2018/05/04 17:12:21 ruptelaNet.go:162: New connection(client: [::1]:59107) +2018/05/04 17:12:21 ruptelaNet.go:162: New connection(client: [::1]:59108) +2018/05/04 17:12:21 ruptelaNet.go:208: Close connection(client: [::1]:59107) +2018/05/04 17:12:21 ruptelaNet.go:208: Close connection(client: [::1]:59108) +2018/05/04 17:12:21 ruptelaNet.go:162: New connection(client: [::1]:59109) +2018/05/04 17:12:21 ruptelaNet.go:208: Close connection(client: [::1]:59109) +2018/05/04 17:12:54 ruptelaNet.go:162: New connection(client: [::1]:59153) +2018/05/04 17:12:54 ruptelaNet.go:162: New connection(client: [::1]:59154) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59153) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59154) +2018/05/04 17:12:55 ruptelaNet.go:162: New connection(client: [::1]:59155) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59155) +2018/05/04 17:12:55 ruptelaNet.go:162: New connection(client: [::1]:59158) +2018/05/04 17:12:55 ruptelaNet.go:162: New connection(client: [::1]:59157) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59157) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59158) +2018/05/04 17:12:55 ruptelaNet.go:162: New connection(client: [::1]:59159) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59159) +2018/05/04 17:12:58 ruptelaNet.go:162: New connection(client: [::1]:59166) +2018/05/04 17:12:58 ruptelaNet.go:162: New connection(client: [::1]:59165) +2018/05/04 17:12:58 ruptelaNet.go:208: Close connection(client: [::1]:59165) +2018/05/04 17:12:58 ruptelaNet.go:208: Close connection(client: [::1]:59166) +2018/05/04 17:12:58 ruptelaNet.go:162: New connection(client: [::1]:59167) +2018/05/04 17:12:58 ruptelaNet.go:208: Close connection(client: [::1]:59167) +2018/05/04 17:13:01 ruptelaNet.go:162: New connection(client: [::1]:59168) +2018/05/04 17:13:01 ruptelaNet.go:162: New connection(client: [::1]:59169) +2018/05/04 17:13:01 ruptelaNet.go:208: Close connection(client: [::1]:59168) +2018/05/04 17:13:01 ruptelaNet.go:208: Close connection(client: [::1]:59169) +2018/05/04 17:13:01 ruptelaNet.go:162: New connection(client: [::1]:59170) +2018/05/04 17:13:01 ruptelaNet.go:208: Close connection(client: [::1]:59170) +2018/05/04 17:13:06 ruptelaNet.go:162: New connection(client: [::1]:59177) +2018/05/04 17:13:06 ruptelaNet.go:162: New connection(client: [::1]:59176) +2018/05/04 17:13:06 ruptelaNet.go:208: Close connection(client: [::1]:59176) +2018/05/04 17:13:06 ruptelaNet.go:208: Close connection(client: [::1]:59177) +2018/05/04 17:13:06 ruptelaNet.go:162: New connection(client: [::1]:59178) +2018/05/04 17:13:06 ruptelaNet.go:208: Close connection(client: [::1]:59178) +2018/05/04 17:13:13 ruptelaNet.go:162: New connection(client: [::1]:59195) +2018/05/04 17:13:13 ruptelaNet.go:162: New connection(client: [::1]:59194) +2018/05/04 17:13:13 ruptelaNet.go:208: Close connection(client: [::1]:59194) +2018/05/04 17:13:13 ruptelaNet.go:208: Close connection(client: [::1]:59195) +2018/05/04 17:13:13 ruptelaNet.go:162: New connection(client: [::1]:59196) +2018/05/04 17:13:13 ruptelaNet.go:208: Close connection(client: [::1]:59196) +2018/05/04 17:13:43 ruptelaNet.go:162: New connection(client: [::1]:59226) +2018/05/04 17:13:43 ruptelaNet.go:162: New connection(client: [::1]:59225) +2018/05/04 17:13:43 ruptelaNet.go:208: Close connection(client: [::1]:59225) +2018/05/04 17:13:43 ruptelaNet.go:208: Close connection(client: [::1]:59226) +2018/05/04 17:13:43 ruptelaNet.go:162: New connection(client: [::1]:59227) +2018/05/04 17:13:43 ruptelaNet.go:208: Close connection(client: [::1]:59227) +2018/05/04 17:14:43 ruptelaNet.go:162: New connection(client: [::1]:59255) +2018/05/04 17:14:43 ruptelaNet.go:162: New connection(client: [::1]:59254) +2018/05/04 17:14:43 ruptelaNet.go:208: Close connection(client: [::1]:59254) +2018/05/04 17:14:43 ruptelaNet.go:208: Close connection(client: [::1]:59255) +2018/05/04 17:14:43 ruptelaNet.go:162: New connection(client: [::1]:59261) +2018/05/04 17:14:43 ruptelaNet.go:208: Close connection(client: [::1]:59261) +2018/05/04 17:19:43 ruptelaNet.go:162: New connection(client: [::1]:59410) +2018/05/04 17:19:43 ruptelaNet.go:162: New connection(client: [::1]:59411) +2018/05/04 17:19:43 ruptelaNet.go:208: Close connection(client: [::1]:59410) +2018/05/04 17:19:43 ruptelaNet.go:208: Close connection(client: [::1]:59411) +2018/05/04 17:19:43 ruptelaNet.go:162: New connection(client: [::1]:59412) +2018/05/04 17:19:43 ruptelaNet.go:208: Close connection(client: [::1]:59412) +2018/05/04 17:58:59 ruptelaNet.go:143: Signal: terminated +2018/05/05 13:24:32 ruptelaNet.go:137: listening: [::]:8081 +2018/05/05 13:27:04 ruptelaNet.go:143: Signal: interrupt +2018/05/05 13:27:17 ruptelaNet.go:137: listening: [::]:8081 +2018/05/05 13:27:31 ruptelaNet.go:143: Signal: interrupt +2018/05/05 13:34:27 ruptelaNet.go:137: listening: [::]:8081 +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: 127.0.0.1:51133) +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: 127.0.0.1:51135) +2018/05/05 13:39:02 ruptelaNet.go:182: Data received(client: 127.0.0.1:51133, IMEI: 868204004279898) +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: 127.0.0.1:51134) +2018/05/05 13:39:02 ruptelaNet.go:182: Data received(client: 127.0.0.1:51135, IMEI: 13226005504143) +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: 127.0.0.1:51133) +2018/05/05 13:39:02 ruptelaNet.go:182: Data received(client: 127.0.0.1:51134, IMEI: 12207007303107) +2018/05/05 13:39:02 ruptela.go:183: IMEI: 13226005504143, insert-id: 0, nrows: 1 +2018/05/05 13:39:02 ruptela.go:183: IMEI: 12207007303107, insert-id: 0, nrows: 1 +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: 127.0.0.1:51135) +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: 127.0.0.1:51134) +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: [::1]:51138) +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: [::1]:51139) +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: [::1]:51138) +2018/05/05 13:39:02 ruptelaNet.go:197: Get message error = Get http://localhost:8081/api/13226005504143: read tcp [::1]:51138->[::1]:8081: read: connection reset by peer +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: [::1]:51139) +2018/05/05 13:39:02 ruptelaNet.go:197: Get message error = Get http://localhost:8081/api/12207007303107: read tcp [::1]:51139->[::1]:8081: read: connection reset by peer +2018/05/05 13:42:17 ruptelaNet.go:143: Signal: terminated +2018/07/16 17:35:12 ruptelaNet.go:108: DB connection error: pq: password authentication failed for user "postgres" +2018/08/10 15:10:49 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:10:54 ruptelaNet.go:162: New connection(client: [::1]:49770) +2018/08/10 15:11:27 ruptelaNet.go:208: Close connection(client: [::1]:49770) +2018/08/10 15:11:30 ruptelaNet.go:162: New connection(client: [::1]:49771) +2018/08/10 15:12:04 ruptelaNet.go:208: Close connection(client: [::1]:49771) +2018/08/10 15:12:07 ruptelaNet.go:162: New connection(client: [::1]:49774) +2018/08/10 15:12:38 ruptelaNet.go:208: Close connection(client: [::1]:49774) +2018/08/10 15:12:44 ruptelaNet.go:162: New connection(client: [::1]:49775) +2018/08/10 15:13:14 ruptelaNet.go:208: Close connection(client: [::1]:49775) +2018/08/10 15:13:19 ruptelaNet.go:162: New connection(client: [::1]:49777) +2018/08/10 15:13:50 ruptelaNet.go:208: Close connection(client: [::1]:49777) +2018/08/10 15:13:55 ruptelaNet.go:162: New connection(client: [::1]:49779) +2018/08/10 15:14:26 ruptelaNet.go:208: Close connection(client: [::1]:49779) +2018/08/10 15:14:30 ruptelaNet.go:162: New connection(client: [::1]:49781) +2018/08/10 15:15:02 ruptelaNet.go:208: Close connection(client: [::1]:49781) +2018/08/10 15:15:07 ruptelaNet.go:162: New connection(client: [::1]:49783) +2018/08/10 15:15:38 ruptelaNet.go:208: Close connection(client: [::1]:49783) +2018/08/10 15:15:44 ruptelaNet.go:162: New connection(client: [::1]:49785) +2018/08/10 15:16:15 ruptelaNet.go:208: Close connection(client: [::1]:49785) +2018/08/10 15:16:20 ruptelaNet.go:162: New connection(client: [::1]:49786) +2018/08/10 15:16:34 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:16:34 ruptelaNet.go:208: Close connection(client: [::1]:49786) +2018/08/10 15:17:06 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:17:14 ruptelaNet.go:162: New connection(client: [::1]:49801) +2018/08/10 15:17:18 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:17:18 ruptelaNet.go:208: Close connection(client: [::1]:49801) +2018/08/10 15:20:27 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:20:29 ruptelaNet.go:162: New connection(client: [::1]:49844) +2018/08/10 15:20:31 ruptelaNet.go:237: error :Uvarint did not consume the byte value +2018/08/10 15:20:31 ruptelaNet.go:239: data packet length : 0 +2018/08/10 15:20:31 ruptelaNet.go:237: error :Uvarint did not consume the byte value +2018/08/10 15:20:31 ruptelaNet.go:239: data packet length : 50 +2018/08/10 15:20:31 ruptelaNet.go:179: Error verifying Ruptela packet: 000f3335 + Err=Packet size is too small (< 4) +2018/08/10 15:20:31 ruptelaNet.go:182: Data received(client: [::1]:49844, IMEI: 0) +2018/08/10 15:20:34 ruptelaNet.go:208: Close connection(client: [::1]:49844) +2018/08/10 15:20:39 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:29:47 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:30:06 ruptelaNet.go:162: New connection(client: [::1]:49954) +2018/08/10 15:30:07 ruptelaNet.go:236: data packet length : 3840 +2018/08/10 15:30:07 ruptelaNet.go:208: Close connection(client: [::1]:49954) +2018/08/10 15:30:16 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:31:20 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:31:30 ruptelaNet.go:162: New connection(client: [::1]:49968) +2018/08/10 15:31:31 ruptelaNet.go:236: data packet length : 15 +2018/08/10 15:32:02 ruptelaNet.go:208: Close connection(client: [::1]:49968) +2018/08/10 15:32:05 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:32:06 ruptelaNet.go:162: New connection(client: [::1]:49970) +2018/08/10 15:32:06 ruptelaNet.go:208: Close connection(client: [::1]:49970) +2018/08/10 15:38:45 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:38:46 ruptelaNet.go:162: New connection(client: [::1]:50024) +2018/08/10 15:38:47 ruptelaNet.go:237: data packet length : 15 +2018/08/10 15:38:47 ruptelaNet.go:180: Error verifying Ruptela packet: 000f333532303934303837393832363731 + Err=Size field mismatched (!17) +2018/08/10 15:38:47 ruptelaNet.go:183: Data received(client: [::1]:50024, IMEI: 0) +2018/08/10 15:38:49 ruptelaNet.go:209: Close connection(client: [::1]:50024) +2018/08/10 15:39:01 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:40:40 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:40:55 ruptelaNet.go:162: New connection(client: [::1]:50043) +2018/08/10 15:40:56 ruptelaNet.go:237: data packet length : 15 +2018/08/10 15:40:56 ruptelaNet.go:180: Error verifying Ruptela packet: 000f333532303934303837393832363731 + Err=Size field mismatched (!17) +2018/08/10 15:40:56 ruptelaNet.go:183: Data received(client: [::1]:50043, IMEI: 0) +2018/08/10 15:40:58 ruptelaNet.go:209: Close connection(client: [::1]:50043) +2018/08/10 15:41:00 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:41:30 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:42:24 ruptelaNet.go:162: New connection(client: [::1]:50049) +2018/08/10 15:42:25 ruptelaNet.go:237: data packet length : 15 +2018/08/10 15:42:25 ruptelaNet.go:180: Error verifying Ruptela packet: 000f333532303934303837393832363731 + Err=Invalid Ruptela packet (CRC-16 does not match) +2018/08/10 15:42:25 ruptelaNet.go:183: Data received(client: [::1]:50049, IMEI: 0) +2018/08/10 15:42:28 ruptelaNet.go:209: Close connection(client: [::1]:50049) +2018/08/10 15:42:31 ruptelaNet.go:143: Signal: interrupt +2018/08/10 16:17:15 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 16:17:23 ruptelaNet.go:162: New connection(client: [::1]:50229) +2018/08/10 16:17:24 ruptelaNet.go:237: data packet length : 15 +2018/08/10 16:17:24 ruptelaNet.go:183: Data received(client: [::1]:50229, IMEI: 3335323039343038) +2018/08/10 16:17:26 ruptelaNet.go:209: Close connection(client: [::1]:50229) +2018/08/10 16:17:30 ruptelaNet.go:143: Signal: interrupt +2018/08/10 16:25:56 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 16:28:11 ruptelaNet.go:162: New connection(client: [::1]:50256) +2018/08/10 16:28:13 ruptelaNet.go:237: data packet length : 15 +2018/08/10 16:28:13 ruptelaNet.go:183: Data received(client: [::1]:50256, IMEI: 352094087982671) +2018/08/10 16:28:15 ruptelaNet.go:209: Close connection(client: [::1]:50256) +2018/08/10 16:28:22 ruptelaNet.go:143: Signal: interrupt +2018/08/10 16:55:32 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 17:00:23 ruptelaNet.go:162: New connection(client: [::1]:50352) +2018/08/10 17:00:23 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:00:23 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 352094087982671) +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:26 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:26 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 0) +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:00:26 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:26 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 0) +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:26 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:26 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 0) +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:00:26 ruptelaNet.go:180: Error verifying Ruptela packet: 01ce080f0000015ebc8a97a8000f1568922092638a00c600c00b00000000000000000000016522c58a40003fa6819efc444d4700ba00bd0600060000000000000000016522c59210003fa6813afc444d7900bc01630600060000000000000000016522ca25f0003fa68ce2fc444f5c005600390d00000000000000000000016522ceb9d0003fa68bb6fc444e41003801541000000000000000000000016522d34db0003fa68bc6fc444f7e0035013b1000000000000000000000016522d7e190003fa68bc6fc444f7e0035013b1100000000000000000000016522dc7570003fa68cc0fc444dcc003000671200000000000000000000016522e10950003fa68d35fc444e20002f00921200000000000000000000016522e59d30003fa68bf8fc444dbc002e01521200000000000000000000016522e7e720003fa68f29fc444d8a002d00241000070000000000000000016522e7eef0003fa68f29fc444dcc002c00081000060000000000000000016522e82d70003fa68dfdfc444bfa002d00c31200001801000118000000000000016522e86420003fa68d99fc444ca0002c01601200031801000118000100000000016522e86808003fa68d99fc444ce3002c015f1200031801000118000300000f + Err=Invalid Imei +2018/08/10 17:00:26 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 0) +2018/08/10 17:00:26 ruptelaNet.go:209: Close connection(client: [::1]:50352) +2018/08/10 17:00:52 ruptelaNet.go:162: New connection(client: [::1]:50353) +2018/08/10 17:00:53 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:00:53 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 352094087982671) +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:56 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:56 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 0) +2018/08/10 17:00:56 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:56 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 0) +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:00:56 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:56 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 0) +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:00:56 ruptelaNet.go:180: Error verifying Ruptela packet: 01ce080f0000015ebc8a97a8000f1568922092638a00c600c00b00000000000000000000016522c58a40003fa6819efc444d4700ba00bd0600060000000000000000016522c59210003fa6813afc444d7900bc01630600060000000000000000016522ca25f0003fa68ce2fc444f5c005600390d00000000000000000000016522ceb9d0003fa68bb6fc444e41003801541000000000000000000000016522d34db0003fa68bc6fc444f7e0035013b1000000000000000000000016522d7e190003fa68bc6fc444f7e0035013b1100000000000000000000016522dc7570003fa68cc0fc444dcc003000671200000000000000000000016522e10950003fa68d35fc444e20002f00921200000000000000000000016522e59d30003fa68bf8fc444dbc002e01521200000000000000000000016522e7e720003fa68f29fc444d8a002d00241000070000000000000000016522e7eef0003fa68f29fc444dcc002c00081000060000000000000000016522e82d70003fa68dfdfc444bfa002d00c31200001801000118000000000000016522e86420003fa68d99fc444ca0002c01601200031801000118000100000000016522e86808003fa68d99fc444ce3002c015f1200031801000118000300000f + Err=Invalid Imei +2018/08/10 17:00:56 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 0) +2018/08/10 17:00:56 ruptelaNet.go:209: Close connection(client: [::1]:50353) +2018/08/10 17:01:05 ruptelaNet.go:162: New connection(client: [::1]:50354) +2018/08/10 17:01:05 ruptelaNet.go:237: data packet length : 1281 +2018/08/10 17:01:05 ruptelaNet.go:209: Close connection(client: [::1]:50354) +2018/08/10 17:01:07 ruptelaNet.go:162: New connection(client: [::1]:50355) +2018/08/10 17:01:07 ruptelaNet.go:237: data packet length : 1025 +2018/08/10 17:01:07 ruptelaNet.go:209: Close connection(client: [::1]:50355) +2018/08/10 17:01:25 ruptelaNet.go:162: New connection(client: [::1]:50357) +2018/08/10 17:01:26 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:01:26 ruptelaNet.go:183: Data received(client: [::1]:50357, IMEI: 352094087982671) +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:01:30 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:01:30 ruptelaNet.go:183: Data received(client: [::1]:50357, IMEI: 0) +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:01:30 ruptelaNet.go:209: Close connection(client: [::1]:50357) +2018/08/10 17:01:30 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:01:30 ruptelaNet.go:183: Data received(client: [::1]:50357, IMEI: 0) +2018/08/10 17:01:57 ruptelaNet.go:162: New connection(client: [::1]:50361) +2018/08/10 17:01:58 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:01:58 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 352094087982671) +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 01ce080f0000015ebc8a97a8000f1568922092638a00c600c00b00000000000000000000016522c58a40003fa6819efc444d4700ba00bd0600060000000000000000016522c59210003fa6813afc444d7900bc01630600060000000000000000016522ca25f0003fa68ce2fc444f5c005600390d00000000000000000000016522ceb9d0003fa68bb6fc444e41003801541000000000000000000000016522d34db0003fa68bc6fc444f7e0035013b1000000000000000000000016522d7e190003fa68bc6fc444f7e0035013b1100000000000000000000016522dc7570003fa68cc0fc444dcc003000671200000000000000000000016522e10950003fa68d35fc444e20002f00921200000000000000000000016522e59d30003fa68bf8fc444dbc002e01521200000000000000000000016522e7e720003fa68f29fc444d8a002d00241000070000000000000000016522e7eef0003fa68f29fc444dcc002c00081000060000000000000000016522e82d70003fa68dfdfc444bfa002d00c31200001801000118000000000000016522e86420003fa68d99fc444ca0002c01601200031801000118000100000000016522e86808003fa68d99fc444ce3002c015f1200031801000118000300000f + Err=Invalid Imei +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:02:02 ruptelaNet.go:209: Close connection(client: [::1]:50361) +2018/08/10 17:02:31 ruptelaNet.go:162: New connection(client: [::1]:50362) +2018/08/10 17:02:33 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:02:33 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 352094087982671) +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:36 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:36 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 0) +2018/08/10 17:02:36 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:36 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 0) +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:02:36 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:36 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 0) +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:02:36 ruptelaNet.go:180: Error verifying Ruptela packet: 01ce080f0000015ebc8a97a8000f1568922092638a00c600c00b00000000000000000000016522c58a40003fa6819efc444d4700ba00bd0600060000000000000000016522c59210003fa6813afc444d7900bc01630600060000000000000000016522ca25f0003fa68ce2fc444f5c005600390d00000000000000000000016522ceb9d0003fa68bb6fc444e41003801541000000000000000000000016522d34db0003fa68bc6fc444f7e0035013b1000000000000000000000016522d7e190003fa68bc6fc444f7e0035013b1100000000000000000000016522dc7570003fa68cc0fc444dcc003000671200000000000000000000016522e10950003fa68d35fc444e20002f00921200000000000000000000016522e59d30003fa68bf8fc444dbc002e01521200000000000000000000016522e7e720003fa68f29fc444d8a002d00241000070000000000000000016522e7eef0003fa68f29fc444dcc002c00081000060000000000000000016522e82d70003fa68dfdfc444bfa002d00c31200001801000118000000000000016522e86420003fa68d99fc444ca0002c01601200031801000118000100000000016522e86808003fa68d99fc444ce3002c015f1200031801000118000300000f + Err=Invalid Imei +2018/08/10 17:02:36 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 0) +2018/08/10 17:02:36 ruptelaNet.go:209: Close connection(client: [::1]:50362) +2018/08/10 17:03:02 ruptelaNet.go:162: New connection(client: [::1]:50365) +2018/08/10 17:03:03 ruptelaNet.go:143: Signal: interrupt +2018/08/10 17:03:03 ruptelaNet.go:209: Close connection(client: [::1]:50365) +2018/08/11 14:55:37 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 14:57:10 ruptelaNet.go:170: New connection(client: [::1]:54452) +2018/08/11 14:57:11 ruptelaNet.go:298: data packet length : 15 +2018/08/11 14:57:11 ruptelaNet.go:215: Data received(client: [::1]:54452, IMEI: 352094087982671) +2018/08/11 14:57:15 ruptelaNet.go:298: data packet length : 462 +2018/08/11 14:57:15 ruptelaNet.go:215: Data received(client: [::1]:54452, IMEI: 0) +2018/08/11 14:57:15 ruptela.go:183: IMEI: 0, insert-id: 0, nrows: 1 +2018/08/11 14:57:18 ruptelaNet.go:237: Close connection(client: [::1]:54452) +2018/08/11 14:57:35 ruptelaNet.go:151: Signal: interrupt +2018/08/11 15:07:13 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 15:07:28 ruptelaNet.go:170: New connection(client: [::1]:54528) +2018/08/11 15:07:30 ruptelaNet.go:299: data packet length : 15 +2018/08/11 15:07:30 ruptelaNet.go:216: Data received(client: [::1]:54528, IMEI: 352094087982671) +2018/08/11 15:07:33 ruptelaNet.go:299: data packet length : 462 +2018/08/11 15:07:33 ruptelaNet.go:216: Data received(client: [::1]:54528, IMEI: 352094087982671) +2018/08/11 15:07:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:07:36 ruptelaNet.go:238: Close connection(client: [::1]:54528) +2018/08/11 15:07:39 ruptelaNet.go:151: Signal: interrupt +2018/08/11 15:11:07 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 15:11:08 ruptelaNet.go:170: New connection(client: [::1]:54553) +2018/08/11 15:11:09 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:11:09 ruptelaNet.go:217: Data received(client: [::1]:54553, IMEI: 352094087982671) +2018/08/11 15:11:12 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:11:12 ruptelaNet.go:217: Data received(client: [::1]:54553, IMEI: 352094087982671) +2018/08/11 15:11:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:11:15 ruptelaNet.go:239: Close connection(client: [::1]:54553) +2018/08/11 15:11:17 ruptelaNet.go:151: Signal: interrupt +2018/08/11 15:13:56 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 15:14:05 ruptelaNet.go:170: New connection(client: [::1]:54575) +2018/08/11 15:14:06 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:14:06 ruptelaNet.go:217: Data received(client: [::1]:54575, IMEI: 352094087982671) +2018/08/11 15:14:09 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:14:09 ruptelaNet.go:217: Data received(client: [::1]:54575, IMEI: 352094087982671) +2018/08/11 15:14:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:14:11 ruptelaNet.go:239: Close connection(client: [::1]:54575) +2018/08/11 15:14:35 ruptelaNet.go:170: New connection(client: [::1]:54577) +2018/08/11 15:14:36 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:14:36 ruptelaNet.go:217: Data received(client: [::1]:54577, IMEI: 352094087982671) +2018/08/11 15:14:39 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:14:39 ruptelaNet.go:217: Data received(client: [::1]:54577, IMEI: 352094087982671) +2018/08/11 15:14:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:14:41 ruptelaNet.go:239: Close connection(client: [::1]:54577) +2018/08/11 15:15:04 ruptelaNet.go:170: New connection(client: [::1]:54578) +2018/08/11 15:15:05 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:15:05 ruptelaNet.go:217: Data received(client: [::1]:54578, IMEI: 352094087982671) +2018/08/11 15:15:09 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:15:09 ruptelaNet.go:217: Data received(client: [::1]:54578, IMEI: 352094087982671) +2018/08/11 15:15:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:15:11 ruptelaNet.go:239: Close connection(client: [::1]:54578) +2018/08/11 15:15:33 ruptelaNet.go:170: New connection(client: [::1]:54580) +2018/08/11 15:15:35 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:15:35 ruptelaNet.go:217: Data received(client: [::1]:54580, IMEI: 352094087982671) +2018/08/11 15:15:39 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:15:39 ruptelaNet.go:217: Data received(client: [::1]:54580, IMEI: 352094087982671) +2018/08/11 15:15:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:15:41 ruptelaNet.go:239: Close connection(client: [::1]:54580) +2018/08/11 15:16:04 ruptelaNet.go:170: New connection(client: [::1]:54581) +2018/08/11 15:16:05 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:16:05 ruptelaNet.go:217: Data received(client: [::1]:54581, IMEI: 352094087982671) +2018/08/11 15:16:09 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:16:09 ruptelaNet.go:217: Data received(client: [::1]:54581, IMEI: 352094087982671) +2018/08/11 15:16:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:16:11 ruptelaNet.go:239: Close connection(client: [::1]:54581) +2018/08/11 15:16:33 ruptelaNet.go:170: New connection(client: [::1]:54582) +2018/08/11 15:16:35 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:16:35 ruptelaNet.go:217: Data received(client: [::1]:54582, IMEI: 352094087982671) +2018/08/11 15:16:39 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:16:39 ruptelaNet.go:217: Data received(client: [::1]:54582, IMEI: 352094087982671) +2018/08/11 15:16:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:16:41 ruptelaNet.go:239: Close connection(client: [::1]:54582) +2018/08/11 15:17:05 ruptelaNet.go:170: New connection(client: [::1]:54587) +2018/08/11 15:17:06 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:17:06 ruptelaNet.go:217: Data received(client: [::1]:54587, IMEI: 352094087982671) +2018/08/11 15:17:09 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:17:09 ruptelaNet.go:217: Data received(client: [::1]:54587, IMEI: 352094087982671) +2018/08/11 15:17:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:17:11 ruptelaNet.go:239: Close connection(client: [::1]:54587) +2018/08/11 15:17:33 ruptelaNet.go:170: New connection(client: [::1]:54589) +2018/08/11 15:17:36 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:17:36 ruptelaNet.go:217: Data received(client: [::1]:54589, IMEI: 352094087982671) +2018/08/11 15:17:43 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:17:43 ruptelaNet.go:217: Data received(client: [::1]:54589, IMEI: 352094087982671) +2018/08/11 15:17:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:17:46 ruptelaNet.go:239: Close connection(client: [::1]:54589) +2018/08/11 15:18:08 ruptelaNet.go:170: New connection(client: [::1]:54609) +2018/08/11 15:18:10 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:18:10 ruptelaNet.go:217: Data received(client: [::1]:54609, IMEI: 352094087982671) +2018/08/11 15:18:13 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:18:13 ruptelaNet.go:217: Data received(client: [::1]:54609, IMEI: 352094087982671) +2018/08/11 15:18:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:18:16 ruptelaNet.go:239: Close connection(client: [::1]:54609) +2018/08/11 15:18:38 ruptelaNet.go:170: New connection(client: [::1]:54610) +2018/08/11 15:18:40 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:18:40 ruptelaNet.go:217: Data received(client: [::1]:54610, IMEI: 352094087982671) +2018/08/11 15:18:43 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:18:43 ruptelaNet.go:217: Data received(client: [::1]:54610, IMEI: 352094087982671) +2018/08/11 15:18:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:18:46 ruptelaNet.go:239: Close connection(client: [::1]:54610) +2018/08/11 15:19:09 ruptelaNet.go:170: New connection(client: [::1]:54612) +2018/08/11 15:19:10 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:19:10 ruptelaNet.go:217: Data received(client: [::1]:54612, IMEI: 352094087982671) +2018/08/11 15:19:13 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:19:13 ruptelaNet.go:217: Data received(client: [::1]:54612, IMEI: 352094087982671) +2018/08/11 15:19:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:19:16 ruptelaNet.go:239: Close connection(client: [::1]:54612) +2018/08/11 15:19:38 ruptelaNet.go:170: New connection(client: [::1]:54619) +2018/08/11 15:19:40 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:19:40 ruptelaNet.go:217: Data received(client: [::1]:54619, IMEI: 352094087982671) +2018/08/11 15:19:43 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:19:43 ruptelaNet.go:217: Data received(client: [::1]:54619, IMEI: 352094087982671) +2018/08/11 15:19:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:19:46 ruptelaNet.go:239: Close connection(client: [::1]:54619) +2018/08/11 15:20:09 ruptelaNet.go:170: New connection(client: [::1]:54621) +2018/08/11 15:20:10 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:20:10 ruptelaNet.go:217: Data received(client: [::1]:54621, IMEI: 352094087982671) +2018/08/11 15:20:14 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:20:14 ruptelaNet.go:217: Data received(client: [::1]:54621, IMEI: 352094087982671) +2018/08/11 15:20:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:20:17 ruptelaNet.go:239: Close connection(client: [::1]:54621) +2018/08/11 15:20:40 ruptelaNet.go:170: New connection(client: [::1]:54623) +2018/08/11 15:20:41 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:20:41 ruptelaNet.go:217: Data received(client: [::1]:54623, IMEI: 352094087982671) +2018/08/11 15:20:45 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:20:45 ruptelaNet.go:217: Data received(client: [::1]:54623, IMEI: 352094087982671) +2018/08/11 15:20:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:20:47 ruptelaNet.go:239: Close connection(client: [::1]:54623) +2018/08/11 15:21:09 ruptelaNet.go:170: New connection(client: [::1]:54624) +2018/08/11 15:21:11 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:21:11 ruptelaNet.go:217: Data received(client: [::1]:54624, IMEI: 352094087982671) +2018/08/11 15:21:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:21:16 ruptelaNet.go:217: Data received(client: [::1]:54624, IMEI: 352094087982671) +2018/08/11 15:21:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:21:18 ruptelaNet.go:239: Close connection(client: [::1]:54624) +2018/08/11 15:21:41 ruptelaNet.go:170: New connection(client: [::1]:54627) +2018/08/11 15:21:44 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:21:44 ruptelaNet.go:217: Data received(client: [::1]:54627, IMEI: 352094087982671) +2018/08/11 15:21:48 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:21:48 ruptelaNet.go:217: Data received(client: [::1]:54627, IMEI: 352094087982671) +2018/08/11 15:21:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:21:50 ruptelaNet.go:239: Close connection(client: [::1]:54627) +2018/08/11 15:22:13 ruptelaNet.go:170: New connection(client: [::1]:54629) +2018/08/11 15:22:14 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:22:14 ruptelaNet.go:217: Data received(client: [::1]:54629, IMEI: 352094087982671) +2018/08/11 15:22:17 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:22:17 ruptelaNet.go:217: Data received(client: [::1]:54629, IMEI: 352094087982671) +2018/08/11 15:22:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:22:23 ruptelaNet.go:239: Close connection(client: [::1]:54629) +2018/08/11 15:22:46 ruptelaNet.go:170: New connection(client: [::1]:54676) +2018/08/11 15:22:47 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:22:47 ruptelaNet.go:217: Data received(client: [::1]:54676, IMEI: 352094087982671) +2018/08/11 15:22:50 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:22:50 ruptelaNet.go:217: Data received(client: [::1]:54676, IMEI: 352094087982671) +2018/08/11 15:22:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:22:52 ruptelaNet.go:239: Close connection(client: [::1]:54676) +2018/08/11 15:23:16 ruptelaNet.go:170: New connection(client: [::1]:54687) +2018/08/11 15:23:16 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:23:16 ruptelaNet.go:217: Data received(client: [::1]:54687, IMEI: 352094087982671) +2018/08/11 15:23:19 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:23:19 ruptelaNet.go:217: Data received(client: [::1]:54687, IMEI: 352094087982671) +2018/08/11 15:23:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:23:22 ruptelaNet.go:239: Close connection(client: [::1]:54687) +2018/08/11 15:23:45 ruptelaNet.go:170: New connection(client: [::1]:54694) +2018/08/11 15:23:46 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:23:46 ruptelaNet.go:217: Data received(client: [::1]:54694, IMEI: 352094087982671) +2018/08/11 15:23:49 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:23:49 ruptelaNet.go:217: Data received(client: [::1]:54694, IMEI: 352094087982671) +2018/08/11 15:23:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:23:51 ruptelaNet.go:239: Close connection(client: [::1]:54694) +2018/08/11 15:24:13 ruptelaNet.go:170: New connection(client: [::1]:54696) +2018/08/11 15:24:15 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:24:15 ruptelaNet.go:217: Data received(client: [::1]:54696, IMEI: 352094087982671) +2018/08/11 15:24:19 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:24:19 ruptelaNet.go:217: Data received(client: [::1]:54696, IMEI: 352094087982671) +2018/08/11 15:24:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:24:40 ruptelaNet.go:239: Close connection(client: [::1]:54696) +2018/08/11 15:25:03 ruptelaNet.go:170: New connection(client: [::1]:54697) +2018/08/11 15:25:04 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:25:04 ruptelaNet.go:217: Data received(client: [::1]:54697, IMEI: 352094087982671) +2018/08/11 15:25:07 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:25:07 ruptelaNet.go:217: Data received(client: [::1]:54697, IMEI: 352094087982671) +2018/08/11 15:25:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:25:09 ruptelaNet.go:239: Close connection(client: [::1]:54697) +2018/08/11 15:25:32 ruptelaNet.go:170: New connection(client: [::1]:54702) +2018/08/11 15:25:34 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:25:34 ruptelaNet.go:217: Data received(client: [::1]:54702, IMEI: 352094087982671) +2018/08/11 15:25:37 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:25:37 ruptelaNet.go:217: Data received(client: [::1]:54702, IMEI: 352094087982671) +2018/08/11 15:25:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:25:39 ruptelaNet.go:239: Close connection(client: [::1]:54702) +2018/08/11 15:26:03 ruptelaNet.go:170: New connection(client: [::1]:54703) +2018/08/11 15:26:04 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:26:04 ruptelaNet.go:217: Data received(client: [::1]:54703, IMEI: 352094087982671) +2018/08/11 15:26:07 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:26:07 ruptelaNet.go:217: Data received(client: [::1]:54703, IMEI: 352094087982671) +2018/08/11 15:26:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:26:19 ruptelaNet.go:239: Close connection(client: [::1]:54703) +2018/08/11 15:26:41 ruptelaNet.go:170: New connection(client: [::1]:54705) +2018/08/11 15:26:43 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:26:43 ruptelaNet.go:217: Data received(client: [::1]:54705, IMEI: 352094087982671) +2018/08/11 15:26:46 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:26:46 ruptelaNet.go:217: Data received(client: [::1]:54705, IMEI: 352094087982671) +2018/08/11 15:26:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:26:49 ruptelaNet.go:239: Close connection(client: [::1]:54705) +2018/08/11 15:27:12 ruptelaNet.go:170: New connection(client: [::1]:54736) +2018/08/11 15:27:13 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:27:13 ruptelaNet.go:217: Data received(client: [::1]:54736, IMEI: 352094087982671) +2018/08/11 15:27:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:27:16 ruptelaNet.go:217: Data received(client: [::1]:54736, IMEI: 352094087982671) +2018/08/11 15:27:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:27:18 ruptelaNet.go:239: Close connection(client: [::1]:54736) +2018/08/11 15:27:41 ruptelaNet.go:170: New connection(client: [::1]:54739) +2018/08/11 15:27:43 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:27:43 ruptelaNet.go:217: Data received(client: [::1]:54739, IMEI: 352094087982671) +2018/08/11 15:27:47 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:27:47 ruptelaNet.go:217: Data received(client: [::1]:54739, IMEI: 352094087982671) +2018/08/11 15:27:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:27:49 ruptelaNet.go:239: Close connection(client: [::1]:54739) +2018/08/11 15:28:12 ruptelaNet.go:170: New connection(client: [::1]:54740) +2018/08/11 15:28:14 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:28:14 ruptelaNet.go:217: Data received(client: [::1]:54740, IMEI: 352094087982671) +2018/08/11 15:28:17 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:28:17 ruptelaNet.go:217: Data received(client: [::1]:54740, IMEI: 352094087982671) +2018/08/11 15:28:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:28:19 ruptelaNet.go:239: Close connection(client: [::1]:54740) +2018/08/11 15:28:42 ruptelaNet.go:170: New connection(client: [::1]:54742) +2018/08/11 15:28:43 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:28:43 ruptelaNet.go:217: Data received(client: [::1]:54742, IMEI: 352094087982671) +2018/08/11 15:28:46 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:28:46 ruptelaNet.go:217: Data received(client: [::1]:54742, IMEI: 352094087982671) +2018/08/11 15:28:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:28:49 ruptelaNet.go:239: Close connection(client: [::1]:54742) +2018/08/11 15:29:11 ruptelaNet.go:170: New connection(client: [::1]:54745) +2018/08/11 15:29:13 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:29:13 ruptelaNet.go:217: Data received(client: [::1]:54745, IMEI: 352094087982671) +2018/08/11 15:29:17 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:29:17 ruptelaNet.go:217: Data received(client: [::1]:54745, IMEI: 352094087982671) +2018/08/11 15:29:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:29:19 ruptelaNet.go:239: Close connection(client: [::1]:54745) +2018/08/11 15:29:42 ruptelaNet.go:170: New connection(client: [::1]:54746) +2018/08/11 15:29:44 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:29:44 ruptelaNet.go:217: Data received(client: [::1]:54746, IMEI: 352094087982671) +2018/08/11 15:29:47 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:29:47 ruptelaNet.go:217: Data received(client: [::1]:54746, IMEI: 352094087982671) +2018/08/11 15:29:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:29:49 ruptelaNet.go:239: Close connection(client: [::1]:54746) +2018/08/11 15:30:12 ruptelaNet.go:170: New connection(client: [::1]:54748) +2018/08/11 15:30:13 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:30:13 ruptelaNet.go:217: Data received(client: [::1]:54748, IMEI: 352094087982671) +2018/08/11 15:30:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:30:16 ruptelaNet.go:217: Data received(client: [::1]:54748, IMEI: 352094087982671) +2018/08/11 15:30:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:30:18 ruptelaNet.go:239: Close connection(client: [::1]:54748) +2018/08/11 15:30:42 ruptelaNet.go:170: New connection(client: [::1]:54749) +2018/08/11 15:30:43 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:30:43 ruptelaNet.go:217: Data received(client: [::1]:54749, IMEI: 352094087982671) +2018/08/11 15:30:46 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:30:46 ruptelaNet.go:217: Data received(client: [::1]:54749, IMEI: 352094087982671) +2018/08/11 15:30:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:30:49 ruptelaNet.go:239: Close connection(client: [::1]:54749) +2018/08/11 15:31:12 ruptelaNet.go:170: New connection(client: [::1]:54750) +2018/08/11 15:31:13 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:31:13 ruptelaNet.go:217: Data received(client: [::1]:54750, IMEI: 352094087982671) +2018/08/11 15:31:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:31:16 ruptelaNet.go:217: Data received(client: [::1]:54750, IMEI: 352094087982671) +2018/08/11 15:31:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:31:18 ruptelaNet.go:239: Close connection(client: [::1]:54750) +2018/08/11 15:31:41 ruptelaNet.go:170: New connection(client: [::1]:54752) +2018/08/11 15:31:42 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:31:42 ruptelaNet.go:217: Data received(client: [::1]:54752, IMEI: 352094087982671) +2018/08/11 15:31:45 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:31:45 ruptelaNet.go:217: Data received(client: [::1]:54752, IMEI: 352094087982671) +2018/08/11 15:31:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:31:48 ruptelaNet.go:239: Close connection(client: [::1]:54752) +2018/08/11 15:32:11 ruptelaNet.go:170: New connection(client: [::1]:54753) +2018/08/11 15:32:12 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:32:12 ruptelaNet.go:217: Data received(client: [::1]:54753, IMEI: 352094087982671) +2018/08/11 15:32:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:32:16 ruptelaNet.go:217: Data received(client: [::1]:54753, IMEI: 352094087982671) +2018/08/11 15:32:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:32:23 ruptelaNet.go:239: Close connection(client: [::1]:54753) +2018/08/11 15:32:46 ruptelaNet.go:170: New connection(client: [::1]:54755) +2018/08/11 15:32:47 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:32:47 ruptelaNet.go:217: Data received(client: [::1]:54755, IMEI: 352094087982671) +2018/08/11 15:32:51 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:32:51 ruptelaNet.go:217: Data received(client: [::1]:54755, IMEI: 352094087982671) +2018/08/11 15:32:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:32:53 ruptelaNet.go:239: Close connection(client: [::1]:54755) +2018/08/11 15:33:16 ruptelaNet.go:170: New connection(client: [::1]:54757) +2018/08/11 15:33:17 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:33:17 ruptelaNet.go:217: Data received(client: [::1]:54757, IMEI: 352094087982671) +2018/08/11 15:33:21 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:33:21 ruptelaNet.go:217: Data received(client: [::1]:54757, IMEI: 352094087982671) +2018/08/11 15:33:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:33:23 ruptelaNet.go:239: Close connection(client: [::1]:54757) +2018/08/11 15:33:47 ruptelaNet.go:170: New connection(client: [::1]:54764) +2018/08/11 15:33:48 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:33:48 ruptelaNet.go:217: Data received(client: [::1]:54764, IMEI: 352094087982671) +2018/08/11 15:33:52 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:33:52 ruptelaNet.go:217: Data received(client: [::1]:54764, IMEI: 352094087982671) +2018/08/11 15:33:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:33:58 ruptelaNet.go:239: Close connection(client: [::1]:54764) +2018/08/11 15:34:21 ruptelaNet.go:170: New connection(client: [::1]:54908) +2018/08/11 15:34:22 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:34:22 ruptelaNet.go:217: Data received(client: [::1]:54908, IMEI: 352094087982671) +2018/08/11 15:34:26 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:34:26 ruptelaNet.go:217: Data received(client: [::1]:54908, IMEI: 352094087982671) +2018/08/11 15:34:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:34:32 ruptelaNet.go:239: Close connection(client: [::1]:54908) +2018/08/11 15:34:55 ruptelaNet.go:170: New connection(client: [::1]:55104) +2018/08/11 15:34:56 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:34:56 ruptelaNet.go:217: Data received(client: [::1]:55104, IMEI: 352094087982671) +2018/08/11 15:34:59 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:34:59 ruptelaNet.go:217: Data received(client: [::1]:55104, IMEI: 352094087982671) +2018/08/11 15:34:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:35:01 ruptelaNet.go:239: Close connection(client: [::1]:55104) +2018/08/11 15:35:25 ruptelaNet.go:170: New connection(client: [::1]:55263) +2018/08/11 15:35:26 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:35:26 ruptelaNet.go:217: Data received(client: [::1]:55263, IMEI: 352094087982671) +2018/08/11 15:35:29 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:35:29 ruptelaNet.go:217: Data received(client: [::1]:55263, IMEI: 352094087982671) +2018/08/11 15:35:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:35:31 ruptelaNet.go:239: Close connection(client: [::1]:55263) +2018/08/11 15:35:54 ruptelaNet.go:170: New connection(client: [::1]:55411) +2018/08/11 15:35:56 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:35:56 ruptelaNet.go:217: Data received(client: [::1]:55411, IMEI: 352094087982671) +2018/08/11 15:35:59 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:35:59 ruptelaNet.go:217: Data received(client: [::1]:55411, IMEI: 352094087982671) +2018/08/11 15:35:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:36:02 ruptelaNet.go:239: Close connection(client: [::1]:55411) +2018/08/11 15:36:25 ruptelaNet.go:170: New connection(client: [::1]:55570) +2018/08/11 15:36:26 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:36:26 ruptelaNet.go:217: Data received(client: [::1]:55570, IMEI: 352094087982671) +2018/08/11 15:36:29 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:36:29 ruptelaNet.go:217: Data received(client: [::1]:55570, IMEI: 352094087982671) +2018/08/11 15:36:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:36:42 ruptelaNet.go:239: Close connection(client: [::1]:55570) +2018/08/11 15:37:05 ruptelaNet.go:170: New connection(client: [::1]:55694) +2018/08/11 15:37:06 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:37:06 ruptelaNet.go:217: Data received(client: [::1]:55694, IMEI: 352094087982671) +2018/08/11 15:37:10 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:37:10 ruptelaNet.go:217: Data received(client: [::1]:55694, IMEI: 352094087982671) +2018/08/11 15:37:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:37:13 ruptelaNet.go:239: Close connection(client: [::1]:55694) +2018/08/11 15:37:36 ruptelaNet.go:170: New connection(client: [::1]:55777) +2018/08/11 15:37:37 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:37:37 ruptelaNet.go:217: Data received(client: [::1]:55777, IMEI: 352094087982671) +2018/08/11 15:37:41 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:37:41 ruptelaNet.go:217: Data received(client: [::1]:55777, IMEI: 352094087982671) +2018/08/11 15:37:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:37:43 ruptelaNet.go:239: Close connection(client: [::1]:55777) +2018/08/11 15:38:02 ruptelaNet.go:151: Signal: interrupt +2018/08/11 15:38:06 ruptelaNet.go:170: New connection(client: [::1]:55859) +2018/08/11 15:38:06 ruptelaNet.go:239: Close connection(client: [::1]:55859) +2018/08/11 15:43:13 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 15:43:20 ruptelaNet.go:170: New connection(client: [::1]:56655) +2018/08/11 15:43:21 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:43:21 ruptelaNet.go:217: Data received(client: [::1]:56655, IMEI: 352094087982671) +2018/08/11 15:43:25 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:43:25 ruptelaNet.go:217: Data received(client: [::1]:56655, IMEI: 352094087982671) +2018/08/11 15:43:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:43:27 ruptelaNet.go:239: Close connection(client: [::1]:56655) +2018/08/11 15:43:50 ruptelaNet.go:170: New connection(client: [::1]:56734) +2018/08/11 15:43:51 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:43:51 ruptelaNet.go:217: Data received(client: [::1]:56734, IMEI: 352094087982671) +2018/08/11 15:43:55 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:43:55 ruptelaNet.go:217: Data received(client: [::1]:56734, IMEI: 352094087982671) +2018/08/11 15:43:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:43:57 ruptelaNet.go:239: Close connection(client: [::1]:56734) +2018/08/11 15:44:23 ruptelaNet.go:170: New connection(client: [::1]:56821) +2018/08/11 15:44:23 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:44:23 ruptelaNet.go:217: Data received(client: [::1]:56821, IMEI: 352094087982671) +2018/08/11 15:44:26 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:44:26 ruptelaNet.go:217: Data received(client: [::1]:56821, IMEI: 352094087982671) +2018/08/11 15:44:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:44:28 ruptelaNet.go:239: Close connection(client: [::1]:56821) +2018/08/11 15:46:39 ruptelaNet.go:170: New connection(client: [::1]:56924) +2018/08/11 15:46:40 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:46:40 ruptelaNet.go:217: Data received(client: [::1]:56924, IMEI: 352094087982671) +2018/08/11 15:46:44 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:46:44 ruptelaNet.go:217: Data received(client: [::1]:56924, IMEI: 352094087982671) +2018/08/11 15:46:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:46:47 ruptelaNet.go:239: Close connection(client: [::1]:56924) +2018/08/11 17:15:46 ruptelaNet.go:170: New connection(client: [::1]:57011) +2018/08/11 17:15:47 ruptelaNet.go:300: data packet length : 15 +2018/08/11 17:15:47 ruptelaNet.go:217: Data received(client: [::1]:57011, IMEI: 352094087982671) +2018/08/11 17:15:51 ruptelaNet.go:300: data packet length : 462 +2018/08/11 17:15:51 ruptelaNet.go:217: Data received(client: [::1]:57011, IMEI: 352094087982671) +2018/08/11 17:15:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 17:15:53 ruptelaNet.go:239: Close connection(client: [::1]:57011) +2018/08/11 23:20:02 ruptelaNet.go:170: New connection(client: [::1]:58182) +2018/08/11 23:20:32 ruptelaNet.go:239: Close connection(client: [::1]:58182) +2018/08/11 23:42:51 ruptelaNet.go:170: New connection(client: [::1]:60956) +2018/08/11 23:43:06 ruptelaNet.go:239: Close connection(client: [::1]:60956) +2018/08/11 23:43:07 ruptelaNet.go:170: New connection(client: [::1]:60988) +2018/08/11 23:43:22 ruptelaNet.go:239: Close connection(client: [::1]:60988) +2018/08/11 23:47:52 ruptelaNet.go:170: New connection(client: [::1]:61558) +2018/08/11 23:48:07 ruptelaNet.go:239: Close connection(client: [::1]:61558) +2018/08/11 23:48:08 ruptelaNet.go:170: New connection(client: [::1]:61588) +2018/08/11 23:48:23 ruptelaNet.go:239: Close connection(client: [::1]:61588) +2018/08/11 23:49:51 ruptelaNet.go:170: New connection(client: [::1]:61803) +2018/08/11 23:50:06 ruptelaNet.go:239: Close connection(client: [::1]:61803) +2018/08/11 23:50:07 ruptelaNet.go:170: New connection(client: [::1]:61834) +2018/08/11 23:50:22 ruptelaNet.go:239: Close connection(client: [::1]:61834) +2018/08/11 23:58:54 ruptelaNet.go:170: New connection(client: [::1]:62962) +2018/08/11 23:59:09 ruptelaNet.go:239: Close connection(client: [::1]:62962) +2018/08/11 23:59:10 ruptelaNet.go:170: New connection(client: [::1]:62994) +2018/08/11 23:59:25 ruptelaNet.go:239: Close connection(client: [::1]:62994) +2018/08/12 00:06:46 ruptelaNet.go:170: New connection(client: [::1]:64031) +2018/08/12 00:07:01 ruptelaNet.go:239: Close connection(client: [::1]:64031) +2018/08/12 00:07:01 ruptelaNet.go:170: New connection(client: [::1]:64060) +2018/08/12 00:07:17 ruptelaNet.go:239: Close connection(client: [::1]:64060) +2018/08/12 02:48:01 ruptelaNet.go:170: New connection(client: [::1]:57419) +2018/08/12 02:48:17 ruptelaNet.go:239: Close connection(client: [::1]:57419) +2018/08/12 02:48:17 ruptelaNet.go:170: New connection(client: [::1]:57420) +2018/08/12 02:48:33 ruptelaNet.go:239: Close connection(client: [::1]:57420) +2018/08/12 21:31:47 ruptelaNet.go:170: New connection(client: [::1]:57904) +2018/08/12 21:31:48 ruptelaNet.go:239: Close connection(client: [::1]:57904) +2018/08/12 21:37:36 ruptelaNet.go:170: New connection(client: [::1]:57925) +2018/08/12 21:38:06 ruptelaNet.go:239: Close connection(client: [::1]:57925) +2018/08/12 21:38:06 ruptelaNet.go:170: New connection(client: [::1]:57938) +2018/08/12 21:38:06 ruptelaNet.go:239: Close connection(client: [::1]:57938) +2018/08/13 07:58:33 ruptelaNet.go:151: Signal: interrupt +2018/08/13 11:06:38 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 11:37:23 ruptelaNet.go:170: New connection(client: [::1]:58959) +2018/08/13 11:37:39 ruptelaNet.go:239: Close connection(client: [::1]:58959) +2018/08/13 11:37:39 ruptelaNet.go:170: New connection(client: [::1]:58960) +2018/08/13 11:37:54 ruptelaNet.go:239: Close connection(client: [::1]:58960) +2018/08/13 11:57:45 ruptelaNet.go:151: Signal: interrupt +2018/08/13 11:58:02 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 13:53:09 ruptelaNet.go:151: Signal: interrupt +2018/08/13 13:53:18 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 13:57:12 ruptelaNet.go:170: New connection(client: [::1]:59427) +2018/08/13 13:57:27 ruptelaNet.go:239: Close connection(client: [::1]:59427) +2018/08/13 13:57:28 ruptelaNet.go:170: New connection(client: [::1]:59428) +2018/08/13 13:57:43 ruptelaNet.go:239: Close connection(client: [::1]:59428) +2018/08/13 13:58:21 ruptelaNet.go:151: Signal: interrupt +2018/08/13 13:59:40 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 14:06:01 ruptelaNet.go:170: New connection(client: [::1]:59460) +2018/08/13 14:06:15 ruptelaNet.go:239: Close connection(client: [::1]:59460) +2018/08/13 14:06:16 ruptelaNet.go:170: New connection(client: [::1]:59461) +2018/08/13 14:06:31 ruptelaNet.go:239: Close connection(client: [::1]:59461) +2018/08/13 14:09:11 ruptelaNet.go:170: New connection(client: [::1]:59478) +2018/08/13 14:09:27 ruptelaNet.go:239: Close connection(client: [::1]:59478) +2018/08/13 14:09:27 ruptelaNet.go:170: New connection(client: [::1]:59479) +2018/08/13 14:09:42 ruptelaNet.go:239: Close connection(client: [::1]:59479) +2018/08/13 14:41:13 ruptelaNet.go:151: Signal: interrupt +2018/08/13 14:50:16 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:02:30 ruptelaNet.go:170: New connection(client: [::1]:59708) +2018/08/13 15:02:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:02:30 ruptelaNet.go:217: Data received(client: [::1]:59708, IMEI: 352094087230394) +2018/08/13 15:02:59 ruptelaNet.go:239: Close connection(client: [::1]:59708) +2018/08/13 15:03:29 ruptelaNet.go:170: New connection(client: [::1]:59710) +2018/08/13 15:03:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:03:29 ruptelaNet.go:217: Data received(client: [::1]:59710, IMEI: 352094087230394) +2018/08/13 15:03:59 ruptelaNet.go:239: Close connection(client: [::1]:59710) +2018/08/13 15:04:28 ruptelaNet.go:170: New connection(client: [::1]:59715) +2018/08/13 15:04:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:04:28 ruptelaNet.go:217: Data received(client: [::1]:59715, IMEI: 352094087230394) +2018/08/13 15:04:58 ruptelaNet.go:239: Close connection(client: [::1]:59715) +2018/08/13 15:05:28 ruptelaNet.go:170: New connection(client: [::1]:59722) +2018/08/13 15:05:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:05:28 ruptelaNet.go:217: Data received(client: [::1]:59722, IMEI: 352094087230394) +2018/08/13 15:05:59 ruptelaNet.go:239: Close connection(client: [::1]:59722) +2018/08/13 15:06:29 ruptelaNet.go:170: New connection(client: [::1]:59727) +2018/08/13 15:06:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:06:29 ruptelaNet.go:217: Data received(client: [::1]:59727, IMEI: 352094087230394) +2018/08/13 15:06:59 ruptelaNet.go:239: Close connection(client: [::1]:59727) +2018/08/13 15:07:28 ruptelaNet.go:170: New connection(client: [::1]:59729) +2018/08/13 15:07:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:07:28 ruptelaNet.go:217: Data received(client: [::1]:59729, IMEI: 352094087230394) +2018/08/13 15:07:58 ruptelaNet.go:239: Close connection(client: [::1]:59729) +2018/08/13 15:08:28 ruptelaNet.go:170: New connection(client: [::1]:59732) +2018/08/13 15:08:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:08:28 ruptelaNet.go:217: Data received(client: [::1]:59732, IMEI: 352094087230394) +2018/08/13 15:08:58 ruptelaNet.go:239: Close connection(client: [::1]:59732) +2018/08/13 15:09:33 ruptelaNet.go:170: New connection(client: [::1]:59738) +2018/08/13 15:09:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:09:33 ruptelaNet.go:217: Data received(client: [::1]:59738, IMEI: 352094087230394) +2018/08/13 15:10:03 ruptelaNet.go:239: Close connection(client: [::1]:59738) +2018/08/13 15:10:28 ruptelaNet.go:170: New connection(client: [::1]:59741) +2018/08/13 15:10:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:10:28 ruptelaNet.go:217: Data received(client: [::1]:59741, IMEI: 352094087230394) +2018/08/13 15:10:37 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:10:37 ruptelaNet.go:239: Close connection(client: [::1]:59741) +2018/08/13 15:10:45 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:11:29 ruptelaNet.go:170: New connection(client: [::1]:59749) +2018/08/13 15:11:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:11:29 ruptelaNet.go:217: Data received(client: [::1]:59749, IMEI: 352094087230394) +2018/08/13 15:12:01 ruptelaNet.go:239: Close connection(client: [::1]:59749) +2018/08/13 15:12:33 ruptelaNet.go:170: New connection(client: [::1]:59753) +2018/08/13 15:12:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:12:33 ruptelaNet.go:217: Data received(client: [::1]:59753, IMEI: 352094087230394) +2018/08/13 15:13:05 ruptelaNet.go:239: Close connection(client: [::1]:59753) +2018/08/13 15:13:33 ruptelaNet.go:170: New connection(client: [::1]:59756) +2018/08/13 15:13:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:13:33 ruptelaNet.go:217: Data received(client: [::1]:59756, IMEI: 352094087230394) +2018/08/13 15:14:03 ruptelaNet.go:239: Close connection(client: [::1]:59756) +2018/08/13 15:14:09 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:14:16 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:14:29 ruptelaNet.go:170: New connection(client: [::1]:59763) +2018/08/13 15:14:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:14:29 ruptelaNet.go:217: Data received(client: [::1]:59763, IMEI: 352094087230394) +2018/08/13 15:14:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59763, IMEI: 352094087230394) +2018/08/13 15:14:59 ruptelaNet.go:239: Close connection(client: [::1]:59763) +2018/08/13 15:15:29 ruptelaNet.go:170: New connection(client: [::1]:59764) +2018/08/13 15:15:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:15:29 ruptelaNet.go:217: Data received(client: [::1]:59764, IMEI: 352094087230394) +2018/08/13 15:15:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59764, IMEI: 352094087230394) +2018/08/13 15:15:59 ruptelaNet.go:239: Close connection(client: [::1]:59764) +2018/08/13 15:16:29 ruptelaNet.go:170: New connection(client: [::1]:59776) +2018/08/13 15:16:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:16:29 ruptelaNet.go:217: Data received(client: [::1]:59776, IMEI: 352094087230394) +2018/08/13 15:16:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59776, IMEI: 352094087230394) +2018/08/13 15:16:59 ruptelaNet.go:239: Close connection(client: [::1]:59776) +2018/08/13 15:17:29 ruptelaNet.go:170: New connection(client: [::1]:59780) +2018/08/13 15:17:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:17:29 ruptelaNet.go:217: Data received(client: [::1]:59780, IMEI: 352094087230394) +2018/08/13 15:17:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59780, IMEI: 352094087230394) +2018/08/13 15:17:59 ruptelaNet.go:239: Close connection(client: [::1]:59780) +2018/08/13 15:18:29 ruptelaNet.go:170: New connection(client: [::1]:59792) +2018/08/13 15:18:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:18:29 ruptelaNet.go:217: Data received(client: [::1]:59792, IMEI: 352094087230394) +2018/08/13 15:18:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59792, IMEI: 352094087230394) +2018/08/13 15:18:59 ruptelaNet.go:239: Close connection(client: [::1]:59792) +2018/08/13 15:19:29 ruptelaNet.go:170: New connection(client: [::1]:59795) +2018/08/13 15:19:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:19:30 ruptelaNet.go:217: Data received(client: [::1]:59795, IMEI: 352094087230394) +2018/08/13 15:19:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59795, IMEI: 352094087230394) +2018/08/13 15:20:00 ruptelaNet.go:239: Close connection(client: [::1]:59795) +2018/08/13 15:20:29 ruptelaNet.go:170: New connection(client: [::1]:59796) +2018/08/13 15:20:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:20:29 ruptelaNet.go:217: Data received(client: [::1]:59796, IMEI: 352094087230394) +2018/08/13 15:20:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59796, IMEI: 352094087230394) +2018/08/13 15:20:59 ruptelaNet.go:239: Close connection(client: [::1]:59796) +2018/08/13 15:21:30 ruptelaNet.go:170: New connection(client: [::1]:59801) +2018/08/13 15:21:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:21:30 ruptelaNet.go:217: Data received(client: [::1]:59801, IMEI: 352094087230394) +2018/08/13 15:21:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59801, IMEI: 352094087230394) +2018/08/13 15:22:00 ruptelaNet.go:239: Close connection(client: [::1]:59801) +2018/08/13 15:22:30 ruptelaNet.go:170: New connection(client: [::1]:59803) +2018/08/13 15:22:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:22:30 ruptelaNet.go:217: Data received(client: [::1]:59803, IMEI: 352094087230394) +2018/08/13 15:22:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59803, IMEI: 352094087230394) +2018/08/13 15:23:00 ruptelaNet.go:239: Close connection(client: [::1]:59803) +2018/08/13 15:23:30 ruptelaNet.go:170: New connection(client: [::1]:59806) +2018/08/13 15:23:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:23:30 ruptelaNet.go:217: Data received(client: [::1]:59806, IMEI: 352094087230394) +2018/08/13 15:23:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59806, IMEI: 352094087230394) +2018/08/13 15:24:00 ruptelaNet.go:239: Close connection(client: [::1]:59806) +2018/08/13 15:24:30 ruptelaNet.go:170: New connection(client: [::1]:59809) +2018/08/13 15:24:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:24:30 ruptelaNet.go:217: Data received(client: [::1]:59809, IMEI: 352094087230394) +2018/08/13 15:24:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59809, IMEI: 352094087230394) +2018/08/13 15:25:00 ruptelaNet.go:239: Close connection(client: [::1]:59809) +2018/08/13 15:25:30 ruptelaNet.go:170: New connection(client: [::1]:59819) +2018/08/13 15:25:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:25:30 ruptelaNet.go:217: Data received(client: [::1]:59819, IMEI: 352094087230394) +2018/08/13 15:25:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59819, IMEI: 352094087230394) +2018/08/13 15:26:00 ruptelaNet.go:239: Close connection(client: [::1]:59819) +2018/08/13 15:26:30 ruptelaNet.go:170: New connection(client: [::1]:59821) +2018/08/13 15:26:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:26:30 ruptelaNet.go:217: Data received(client: [::1]:59821, IMEI: 352094087230394) +2018/08/13 15:26:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59821, IMEI: 352094087230394) +2018/08/13 15:27:00 ruptelaNet.go:239: Close connection(client: [::1]:59821) +2018/08/13 15:27:30 ruptelaNet.go:170: New connection(client: [::1]:59825) +2018/08/13 15:27:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:27:30 ruptelaNet.go:217: Data received(client: [::1]:59825, IMEI: 352094087230394) +2018/08/13 15:27:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59825, IMEI: 352094087230394) +2018/08/13 15:28:01 ruptelaNet.go:239: Close connection(client: [::1]:59825) +2018/08/13 15:28:30 ruptelaNet.go:170: New connection(client: [::1]:59829) +2018/08/13 15:28:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:28:31 ruptelaNet.go:217: Data received(client: [::1]:59829, IMEI: 352094087230394) +2018/08/13 15:28:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59829, IMEI: 352094087230394) +2018/08/13 15:29:00 ruptelaNet.go:239: Close connection(client: [::1]:59829) +2018/08/13 15:29:30 ruptelaNet.go:170: New connection(client: [::1]:59884) +2018/08/13 15:29:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:29:31 ruptelaNet.go:217: Data received(client: [::1]:59884, IMEI: 352094087230394) +2018/08/13 15:29:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59884, IMEI: 352094087230394) +2018/08/13 15:30:01 ruptelaNet.go:239: Close connection(client: [::1]:59884) +2018/08/13 15:30:31 ruptelaNet.go:170: New connection(client: [::1]:59890) +2018/08/13 15:30:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:30:31 ruptelaNet.go:217: Data received(client: [::1]:59890, IMEI: 352094087230394) +2018/08/13 15:30:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59890, IMEI: 352094087230394) +2018/08/13 15:31:01 ruptelaNet.go:239: Close connection(client: [::1]:59890) +2018/08/13 15:31:31 ruptelaNet.go:170: New connection(client: [::1]:59900) +2018/08/13 15:31:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:31:31 ruptelaNet.go:217: Data received(client: [::1]:59900, IMEI: 352094087230394) +2018/08/13 15:31:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59900, IMEI: 352094087230394) +2018/08/13 15:32:01 ruptelaNet.go:239: Close connection(client: [::1]:59900) +2018/08/13 15:32:07 ruptelaNet.go:170: New connection(client: [::1]:59901) +2018/08/13 15:32:22 ruptelaNet.go:239: Close connection(client: [::1]:59901) +2018/08/13 15:32:23 ruptelaNet.go:170: New connection(client: [::1]:59902) +2018/08/13 15:32:31 ruptelaNet.go:170: New connection(client: [::1]:59904) +2018/08/13 15:32:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:32:31 ruptelaNet.go:217: Data received(client: [::1]:59904, IMEI: 352094087230394) +2018/08/13 15:32:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59904, IMEI: 352094087230394) +2018/08/13 15:32:38 ruptelaNet.go:239: Close connection(client: [::1]:59902) +2018/08/13 15:33:01 ruptelaNet.go:239: Close connection(client: [::1]:59904) +2018/08/13 15:33:31 ruptelaNet.go:170: New connection(client: [::1]:59914) +2018/08/13 15:33:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:33:31 ruptelaNet.go:217: Data received(client: [::1]:59914, IMEI: 352094087230394) +2018/08/13 15:33:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59914, IMEI: 352094087230394) +2018/08/13 15:34:01 ruptelaNet.go:239: Close connection(client: [::1]:59914) +2018/08/13 15:34:31 ruptelaNet.go:170: New connection(client: [::1]:59919) +2018/08/13 15:34:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:34:31 ruptelaNet.go:217: Data received(client: [::1]:59919, IMEI: 352094087230394) +2018/08/13 15:34:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59919, IMEI: 352094087230394) +2018/08/13 15:35:01 ruptelaNet.go:239: Close connection(client: [::1]:59919) +2018/08/13 15:35:31 ruptelaNet.go:170: New connection(client: [::1]:59923) +2018/08/13 15:35:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:35:31 ruptelaNet.go:217: Data received(client: [::1]:59923, IMEI: 352094087230394) +2018/08/13 15:35:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59923, IMEI: 352094087230394) +2018/08/13 15:36:02 ruptelaNet.go:239: Close connection(client: [::1]:59923) +2018/08/13 15:36:31 ruptelaNet.go:170: New connection(client: [::1]:59927) +2018/08/13 15:36:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:36:31 ruptelaNet.go:217: Data received(client: [::1]:59927, IMEI: 352094087230394) +2018/08/13 15:36:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59927, IMEI: 352094087230394) +2018/08/13 15:37:01 ruptelaNet.go:239: Close connection(client: [::1]:59927) +2018/08/13 15:37:32 ruptelaNet.go:170: New connection(client: [::1]:59930) +2018/08/13 15:37:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:37:32 ruptelaNet.go:217: Data received(client: [::1]:59930, IMEI: 352094087230394) +2018/08/13 15:37:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59930, IMEI: 352094087230394) +2018/08/13 15:38:01 ruptelaNet.go:239: Close connection(client: [::1]:59930) +2018/08/13 15:38:32 ruptelaNet.go:170: New connection(client: [::1]:59945) +2018/08/13 15:38:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:38:32 ruptelaNet.go:217: Data received(client: [::1]:59945, IMEI: 352094087230394) +2018/08/13 15:38:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59945, IMEI: 352094087230394) +2018/08/13 15:39:02 ruptelaNet.go:239: Close connection(client: [::1]:59945) +2018/08/13 15:39:31 ruptelaNet.go:170: New connection(client: [::1]:59946) +2018/08/13 15:39:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:39:31 ruptelaNet.go:217: Data received(client: [::1]:59946, IMEI: 352094087230394) +2018/08/13 15:39:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59946, IMEI: 352094087230394) +2018/08/13 15:40:02 ruptelaNet.go:239: Close connection(client: [::1]:59946) +2018/08/13 15:40:32 ruptelaNet.go:170: New connection(client: [::1]:59951) +2018/08/13 15:40:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:40:32 ruptelaNet.go:217: Data received(client: [::1]:59951, IMEI: 352094087230394) +2018/08/13 15:40:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59951, IMEI: 352094087230394) +2018/08/13 15:41:02 ruptelaNet.go:239: Close connection(client: [::1]:59951) +2018/08/13 15:41:32 ruptelaNet.go:170: New connection(client: [::1]:59955) +2018/08/13 15:41:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:41:32 ruptelaNet.go:217: Data received(client: [::1]:59955, IMEI: 352094087230394) +2018/08/13 15:41:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59955, IMEI: 352094087230394) +2018/08/13 15:42:02 ruptelaNet.go:239: Close connection(client: [::1]:59955) +2018/08/13 15:42:32 ruptelaNet.go:170: New connection(client: [::1]:59956) +2018/08/13 15:42:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:42:32 ruptelaNet.go:217: Data received(client: [::1]:59956, IMEI: 352094087230394) +2018/08/13 15:42:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59956, IMEI: 352094087230394) +2018/08/13 15:43:02 ruptelaNet.go:239: Close connection(client: [::1]:59956) +2018/08/13 15:43:34 ruptelaNet.go:170: New connection(client: [::1]:59963) +2018/08/13 15:43:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:43:34 ruptelaNet.go:217: Data received(client: [::1]:59963, IMEI: 352094087230394) +2018/08/13 15:43:34 ruptelaNet.go:231: Sent ACK (client: [::1]:59963, IMEI: 352094087230394) +2018/08/13 15:44:04 ruptelaNet.go:239: Close connection(client: [::1]:59963) +2018/08/13 15:44:32 ruptelaNet.go:170: New connection(client: [::1]:59964) +2018/08/13 15:44:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:44:32 ruptelaNet.go:217: Data received(client: [::1]:59964, IMEI: 352094087230394) +2018/08/13 15:44:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59964, IMEI: 352094087230394) +2018/08/13 15:45:02 ruptelaNet.go:239: Close connection(client: [::1]:59964) +2018/08/13 15:45:32 ruptelaNet.go:170: New connection(client: [::1]:59973) +2018/08/13 15:45:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:45:32 ruptelaNet.go:217: Data received(client: [::1]:59973, IMEI: 352094087230394) +2018/08/13 15:45:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59973, IMEI: 352094087230394) +2018/08/13 15:46:02 ruptelaNet.go:239: Close connection(client: [::1]:59973) +2018/08/13 15:46:32 ruptelaNet.go:170: New connection(client: [::1]:59976) +2018/08/13 15:46:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:46:32 ruptelaNet.go:217: Data received(client: [::1]:59976, IMEI: 352094087230394) +2018/08/13 15:46:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59976, IMEI: 352094087230394) +2018/08/13 15:47:02 ruptelaNet.go:239: Close connection(client: [::1]:59976) +2018/08/13 15:47:32 ruptelaNet.go:170: New connection(client: [::1]:59982) +2018/08/13 15:47:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:47:32 ruptelaNet.go:217: Data received(client: [::1]:59982, IMEI: 352094087230394) +2018/08/13 15:47:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59982, IMEI: 352094087230394) +2018/08/13 15:48:02 ruptelaNet.go:239: Close connection(client: [::1]:59982) +2018/08/13 15:48:33 ruptelaNet.go:170: New connection(client: [::1]:59987) +2018/08/13 15:48:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:48:33 ruptelaNet.go:217: Data received(client: [::1]:59987, IMEI: 352094087230394) +2018/08/13 15:48:33 ruptelaNet.go:231: Sent ACK (client: [::1]:59987, IMEI: 352094087230394) +2018/08/13 15:48:57 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:48:57 ruptelaNet.go:239: Close connection(client: [::1]:59987) +2018/08/13 15:49:10 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:49:33 ruptelaNet.go:170: New connection(client: [::1]:59992) +2018/08/13 15:49:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:49:33 ruptelaNet.go:217: Data received(client: [::1]:59992, IMEI: 352094087230394) +2018/08/13 15:49:33 ruptelaNet.go:231: Sent ACK (client: [::1]:59992, IMEI: 352094087230394) +2018/08/13 15:50:03 ruptelaNet.go:239: Close connection(client: [::1]:59992) +2018/08/13 15:50:33 ruptelaNet.go:170: New connection(client: [::1]:59996) +2018/08/13 15:50:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:50:33 ruptelaNet.go:217: Data received(client: [::1]:59996, IMEI: 352094087230394) +2018/08/13 15:50:33 ruptelaNet.go:231: Sent ACK (client: [::1]:59996, IMEI: 352094087230394) +2018/08/13 15:50:53 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:50:53 ruptelaNet.go:239: Close connection(client: [::1]:59996) +2018/08/13 15:50:57 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:51:33 ruptelaNet.go:170: New connection(client: [::1]:60000) +2018/08/13 15:51:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:51:33 ruptelaNet.go:217: Data received(client: [::1]:60000, IMEI: 352094087230394) +2018/08/13 15:51:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60000, IMEI: 352094087230394) +2018/08/13 15:51:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:51:35 ruptelaNet.go:217: Data received(client: [::1]:60000, IMEI: 352094087230394) +2018/08/13 15:51:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:51:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60000, IMEI: 352094087230394) +2018/08/13 15:51:36 ruptelaNet.go:239: Close connection(client: [::1]:60000) +2018/08/13 15:52:33 ruptelaNet.go:170: New connection(client: [::1]:60001) +2018/08/13 15:52:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:52:33 ruptelaNet.go:217: Data received(client: [::1]:60001, IMEI: 352094087230394) +2018/08/13 15:52:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60001, IMEI: 352094087230394) +2018/08/13 15:52:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:52:35 ruptelaNet.go:217: Data received(client: [::1]:60001, IMEI: 352094087230394) +2018/08/13 15:52:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:52:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60001, IMEI: 352094087230394) +2018/08/13 15:52:37 ruptelaNet.go:239: Close connection(client: [::1]:60001) +2018/08/13 15:53:37 ruptelaNet.go:170: New connection(client: [::1]:60006) +2018/08/13 15:53:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:53:37 ruptelaNet.go:217: Data received(client: [::1]:60006, IMEI: 352094087230394) +2018/08/13 15:53:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60006, IMEI: 352094087230394) +2018/08/13 15:53:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:53:41 ruptelaNet.go:217: Data received(client: [::1]:60006, IMEI: 352094087230394) +2018/08/13 15:53:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:53:41 ruptelaNet.go:231: Sent ACK (client: [::1]:60006, IMEI: 352094087230394) +2018/08/13 15:53:42 ruptelaNet.go:239: Close connection(client: [::1]:60006) +2018/08/13 15:54:33 ruptelaNet.go:170: New connection(client: [::1]:60008) +2018/08/13 15:54:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:54:33 ruptelaNet.go:217: Data received(client: [::1]:60008, IMEI: 352094087230394) +2018/08/13 15:54:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60008, IMEI: 352094087230394) +2018/08/13 15:54:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:54:35 ruptelaNet.go:217: Data received(client: [::1]:60008, IMEI: 352094087230394) +2018/08/13 15:54:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:54:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60008, IMEI: 352094087230394) +2018/08/13 15:54:36 ruptelaNet.go:239: Close connection(client: [::1]:60008) +2018/08/13 15:55:11 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:56:07 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:56:33 ruptelaNet.go:170: New connection(client: [::1]:60034) +2018/08/13 15:56:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:56:33 ruptelaNet.go:217: Data received(client: [::1]:60034, IMEI: 352094087230394) +2018/08/13 15:56:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60034, IMEI: 352094087230394) +2018/08/13 15:56:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:56:35 ruptelaNet.go:217: Data received(client: [::1]:60034, IMEI: 352094087230394) +2018/08/13 15:56:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:56:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60034, IMEI: 352094087230394) +2018/08/13 15:56:37 ruptelaNet.go:239: Close connection(client: [::1]:60034) +2018/08/13 15:57:33 ruptelaNet.go:170: New connection(client: [::1]:60038) +2018/08/13 15:57:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:57:33 ruptelaNet.go:217: Data received(client: [::1]:60038, IMEI: 352094087230394) +2018/08/13 15:57:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60038, IMEI: 352094087230394) +2018/08/13 15:57:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:57:35 ruptelaNet.go:217: Data received(client: [::1]:60038, IMEI: 352094087230394) +2018/08/13 15:57:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:57:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60038, IMEI: 352094087230394) +2018/08/13 15:57:37 ruptelaNet.go:239: Close connection(client: [::1]:60038) +2018/08/13 15:58:33 ruptelaNet.go:170: New connection(client: [::1]:60046) +2018/08/13 15:58:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:58:33 ruptelaNet.go:217: Data received(client: [::1]:60046, IMEI: 352094087230394) +2018/08/13 15:58:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60046, IMEI: 352094087230394) +2018/08/13 15:58:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:58:35 ruptelaNet.go:217: Data received(client: [::1]:60046, IMEI: 352094087230394) +2018/08/13 15:58:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:58:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60046, IMEI: 352094087230394) +2018/08/13 15:58:37 ruptelaNet.go:239: Close connection(client: [::1]:60046) +2018/08/13 15:59:33 ruptelaNet.go:170: New connection(client: [::1]:60049) +2018/08/13 15:59:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:59:33 ruptelaNet.go:217: Data received(client: [::1]:60049, IMEI: 352094087230394) +2018/08/13 15:59:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60049, IMEI: 352094087230394) +2018/08/13 15:59:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:59:36 ruptelaNet.go:217: Data received(client: [::1]:60049, IMEI: 352094087230394) +2018/08/13 15:59:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:59:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60049, IMEI: 352094087230394) +2018/08/13 15:59:37 ruptelaNet.go:239: Close connection(client: [::1]:60049) +2018/08/13 16:00:34 ruptelaNet.go:170: New connection(client: [::1]:60052) +2018/08/13 16:00:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:00:34 ruptelaNet.go:217: Data received(client: [::1]:60052, IMEI: 352094087230394) +2018/08/13 16:00:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60052, IMEI: 352094087230394) +2018/08/13 16:00:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:00:36 ruptelaNet.go:217: Data received(client: [::1]:60052, IMEI: 352094087230394) +2018/08/13 16:00:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:00:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60052, IMEI: 352094087230394) +2018/08/13 16:00:37 ruptelaNet.go:239: Close connection(client: [::1]:60052) +2018/08/13 16:01:34 ruptelaNet.go:170: New connection(client: [::1]:60057) +2018/08/13 16:01:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:01:34 ruptelaNet.go:217: Data received(client: [::1]:60057, IMEI: 352094087230394) +2018/08/13 16:01:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60057, IMEI: 352094087230394) +2018/08/13 16:01:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:01:36 ruptelaNet.go:217: Data received(client: [::1]:60057, IMEI: 352094087230394) +2018/08/13 16:01:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:01:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60057, IMEI: 352094087230394) +2018/08/13 16:01:37 ruptelaNet.go:239: Close connection(client: [::1]:60057) +2018/08/13 16:02:12 ruptelaNet.go:170: New connection(client: [::1]:60059) +2018/08/13 16:02:13 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:02:13 ruptelaNet.go:217: Data received(client: [::1]:60059, IMEI: 352094087982671) +2018/08/13 16:02:13 ruptelaNet.go:231: Sent ACK (client: [::1]:60059, IMEI: 352094087982671) +2018/08/13 16:02:17 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:02:17 ruptelaNet.go:217: Data received(client: [::1]:60059, IMEI: 352094087982671) +2018/08/13 16:02:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:02:17 ruptelaNet.go:231: Sent ACK (client: [::1]:60059, IMEI: 352094087982671) +2018/08/13 16:02:19 ruptelaNet.go:239: Close connection(client: [::1]:60059) +2018/08/13 16:02:34 ruptelaNet.go:170: New connection(client: [::1]:60060) +2018/08/13 16:02:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:02:34 ruptelaNet.go:217: Data received(client: [::1]:60060, IMEI: 352094087230394) +2018/08/13 16:02:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60060, IMEI: 352094087230394) +2018/08/13 16:02:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:02:36 ruptelaNet.go:217: Data received(client: [::1]:60060, IMEI: 352094087230394) +2018/08/13 16:02:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:02:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60060, IMEI: 352094087230394) +2018/08/13 16:02:37 ruptelaNet.go:239: Close connection(client: [::1]:60060) +2018/08/13 16:02:42 ruptelaNet.go:170: New connection(client: [::1]:60061) +2018/08/13 16:02:43 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:02:43 ruptelaNet.go:217: Data received(client: [::1]:60061, IMEI: 352094087982671) +2018/08/13 16:02:43 ruptelaNet.go:231: Sent ACK (client: [::1]:60061, IMEI: 352094087982671) +2018/08/13 16:02:47 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:02:47 ruptelaNet.go:217: Data received(client: [::1]:60061, IMEI: 352094087982671) +2018/08/13 16:02:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:02:47 ruptelaNet.go:231: Sent ACK (client: [::1]:60061, IMEI: 352094087982671) +2018/08/13 16:02:49 ruptelaNet.go:239: Close connection(client: [::1]:60061) +2018/08/13 16:03:12 ruptelaNet.go:170: New connection(client: [::1]:60066) +2018/08/13 16:03:14 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:03:14 ruptelaNet.go:217: Data received(client: [::1]:60066, IMEI: 352094087982671) +2018/08/13 16:03:14 ruptelaNet.go:231: Sent ACK (client: [::1]:60066, IMEI: 352094087982671) +2018/08/13 16:03:18 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:03:18 ruptelaNet.go:217: Data received(client: [::1]:60066, IMEI: 352094087982671) +2018/08/13 16:03:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:03:18 ruptelaNet.go:231: Sent ACK (client: [::1]:60066, IMEI: 352094087982671) +2018/08/13 16:03:20 ruptelaNet.go:239: Close connection(client: [::1]:60066) +2018/08/13 16:03:34 ruptelaNet.go:170: New connection(client: [::1]:60069) +2018/08/13 16:03:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:03:34 ruptelaNet.go:217: Data received(client: [::1]:60069, IMEI: 352094087230394) +2018/08/13 16:03:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60069, IMEI: 352094087230394) +2018/08/13 16:03:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:03:36 ruptelaNet.go:217: Data received(client: [::1]:60069, IMEI: 352094087230394) +2018/08/13 16:03:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:03:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60069, IMEI: 352094087230394) +2018/08/13 16:03:37 ruptelaNet.go:239: Close connection(client: [::1]:60069) +2018/08/13 16:03:43 ruptelaNet.go:170: New connection(client: [::1]:60074) +2018/08/13 16:03:44 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:03:44 ruptelaNet.go:217: Data received(client: [::1]:60074, IMEI: 352094087982671) +2018/08/13 16:03:44 ruptelaNet.go:231: Sent ACK (client: [::1]:60074, IMEI: 352094087982671) +2018/08/13 16:03:47 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:03:47 ruptelaNet.go:217: Data received(client: [::1]:60074, IMEI: 352094087982671) +2018/08/13 16:03:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:03:47 ruptelaNet.go:231: Sent ACK (client: [::1]:60074, IMEI: 352094087982671) +2018/08/13 16:03:51 ruptelaNet.go:239: Close connection(client: [::1]:60074) +2018/08/13 16:04:14 ruptelaNet.go:170: New connection(client: [::1]:60079) +2018/08/13 16:04:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:04:15 ruptelaNet.go:217: Data received(client: [::1]:60079, IMEI: 352094087982671) +2018/08/13 16:04:15 ruptelaNet.go:231: Sent ACK (client: [::1]:60079, IMEI: 352094087982671) +2018/08/13 16:04:19 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:04:19 ruptelaNet.go:217: Data received(client: [::1]:60079, IMEI: 352094087982671) +2018/08/13 16:04:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:04:19 ruptelaNet.go:231: Sent ACK (client: [::1]:60079, IMEI: 352094087982671) +2018/08/13 16:04:22 ruptelaNet.go:239: Close connection(client: [::1]:60079) +2018/08/13 16:04:34 ruptelaNet.go:170: New connection(client: [::1]:60080) +2018/08/13 16:04:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:04:34 ruptelaNet.go:217: Data received(client: [::1]:60080, IMEI: 352094087230394) +2018/08/13 16:04:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60080, IMEI: 352094087230394) +2018/08/13 16:04:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:04:36 ruptelaNet.go:217: Data received(client: [::1]:60080, IMEI: 352094087230394) +2018/08/13 16:04:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:04:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60080, IMEI: 352094087230394) +2018/08/13 16:04:40 ruptelaNet.go:239: Close connection(client: [::1]:60080) +2018/08/13 16:04:45 ruptelaNet.go:170: New connection(client: [::1]:60081) +2018/08/13 16:04:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:04:46 ruptelaNet.go:217: Data received(client: [::1]:60081, IMEI: 352094087982671) +2018/08/13 16:04:46 ruptelaNet.go:231: Sent ACK (client: [::1]:60081, IMEI: 352094087982671) +2018/08/13 16:04:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:04:50 ruptelaNet.go:217: Data received(client: [::1]:60081, IMEI: 352094087982671) +2018/08/13 16:04:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:04:50 ruptelaNet.go:231: Sent ACK (client: [::1]:60081, IMEI: 352094087982671) +2018/08/13 16:04:53 ruptelaNet.go:239: Close connection(client: [::1]:60081) +2018/08/13 16:05:17 ruptelaNet.go:170: New connection(client: [::1]:60083) +2018/08/13 16:05:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:05:17 ruptelaNet.go:217: Data received(client: [::1]:60083, IMEI: 352094087982671) +2018/08/13 16:05:17 ruptelaNet.go:231: Sent ACK (client: [::1]:60083, IMEI: 352094087982671) +2018/08/13 16:05:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:05:21 ruptelaNet.go:217: Data received(client: [::1]:60083, IMEI: 352094087982671) +2018/08/13 16:05:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:05:21 ruptelaNet.go:231: Sent ACK (client: [::1]:60083, IMEI: 352094087982671) +2018/08/13 16:05:23 ruptelaNet.go:239: Close connection(client: [::1]:60083) +2018/08/13 16:05:34 ruptelaNet.go:170: New connection(client: [::1]:60084) +2018/08/13 16:05:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:05:34 ruptelaNet.go:217: Data received(client: [::1]:60084, IMEI: 352094087230394) +2018/08/13 16:05:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60084, IMEI: 352094087230394) +2018/08/13 16:05:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:05:36 ruptelaNet.go:217: Data received(client: [::1]:60084, IMEI: 352094087230394) +2018/08/13 16:05:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:05:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60084, IMEI: 352094087230394) +2018/08/13 16:05:37 ruptelaNet.go:239: Close connection(client: [::1]:60084) +2018/08/13 16:05:46 ruptelaNet.go:170: New connection(client: [::1]:60085) +2018/08/13 16:05:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:05:47 ruptelaNet.go:217: Data received(client: [::1]:60085, IMEI: 352094087982671) +2018/08/13 16:05:47 ruptelaNet.go:231: Sent ACK (client: [::1]:60085, IMEI: 352094087982671) +2018/08/13 16:05:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:05:50 ruptelaNet.go:217: Data received(client: [::1]:60085, IMEI: 352094087982671) +2018/08/13 16:05:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:05:50 ruptelaNet.go:231: Sent ACK (client: [::1]:60085, IMEI: 352094087982671) +2018/08/13 16:05:53 ruptelaNet.go:239: Close connection(client: [::1]:60085) +2018/08/13 16:06:16 ruptelaNet.go:170: New connection(client: [::1]:60087) +2018/08/13 16:06:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:06:17 ruptelaNet.go:217: Data received(client: [::1]:60087, IMEI: 352094087982671) +2018/08/13 16:06:17 ruptelaNet.go:231: Sent ACK (client: [::1]:60087, IMEI: 352094087982671) +2018/08/13 16:06:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:06:20 ruptelaNet.go:217: Data received(client: [::1]:60087, IMEI: 352094087982671) +2018/08/13 16:06:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:06:20 ruptelaNet.go:231: Sent ACK (client: [::1]:60087, IMEI: 352094087982671) +2018/08/13 16:06:24 ruptelaNet.go:239: Close connection(client: [::1]:60087) +2018/08/13 16:06:34 ruptelaNet.go:170: New connection(client: [::1]:60091) +2018/08/13 16:06:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:06:34 ruptelaNet.go:217: Data received(client: [::1]:60091, IMEI: 352094087230394) +2018/08/13 16:06:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60091, IMEI: 352094087230394) +2018/08/13 16:06:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:06:36 ruptelaNet.go:217: Data received(client: [::1]:60091, IMEI: 352094087230394) +2018/08/13 16:06:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:06:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60091, IMEI: 352094087230394) +2018/08/13 16:06:37 ruptelaNet.go:239: Close connection(client: [::1]:60091) +2018/08/13 16:06:47 ruptelaNet.go:170: New connection(client: [::1]:60092) +2018/08/13 16:06:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:06:48 ruptelaNet.go:217: Data received(client: [::1]:60092, IMEI: 352094087982671) +2018/08/13 16:06:48 ruptelaNet.go:231: Sent ACK (client: [::1]:60092, IMEI: 352094087982671) +2018/08/13 16:06:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:06:51 ruptelaNet.go:217: Data received(client: [::1]:60092, IMEI: 352094087982671) +2018/08/13 16:06:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:06:51 ruptelaNet.go:231: Sent ACK (client: [::1]:60092, IMEI: 352094087982671) +2018/08/13 16:06:58 ruptelaNet.go:239: Close connection(client: [::1]:60092) +2018/08/13 16:07:21 ruptelaNet.go:170: New connection(client: [::1]:60094) +2018/08/13 16:07:22 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:07:22 ruptelaNet.go:217: Data received(client: [::1]:60094, IMEI: 352094087982671) +2018/08/13 16:07:22 ruptelaNet.go:231: Sent ACK (client: [::1]:60094, IMEI: 352094087982671) +2018/08/13 16:07:26 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:07:26 ruptelaNet.go:217: Data received(client: [::1]:60094, IMEI: 352094087982671) +2018/08/13 16:07:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:07:26 ruptelaNet.go:231: Sent ACK (client: [::1]:60094, IMEI: 352094087982671) +2018/08/13 16:07:29 ruptelaNet.go:239: Close connection(client: [::1]:60094) +2018/08/13 16:07:34 ruptelaNet.go:170: New connection(client: [::1]:60095) +2018/08/13 16:07:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:07:34 ruptelaNet.go:217: Data received(client: [::1]:60095, IMEI: 352094087230394) +2018/08/13 16:07:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60095, IMEI: 352094087230394) +2018/08/13 16:07:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:07:36 ruptelaNet.go:217: Data received(client: [::1]:60095, IMEI: 352094087230394) +2018/08/13 16:07:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:07:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60095, IMEI: 352094087230394) +2018/08/13 16:07:38 ruptelaNet.go:239: Close connection(client: [::1]:60095) +2018/08/13 16:07:52 ruptelaNet.go:170: New connection(client: [::1]:60103) +2018/08/13 16:07:53 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:07:53 ruptelaNet.go:217: Data received(client: [::1]:60103, IMEI: 352094087982671) +2018/08/13 16:07:53 ruptelaNet.go:231: Sent ACK (client: [::1]:60103, IMEI: 352094087982671) +2018/08/13 16:07:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:07:57 ruptelaNet.go:217: Data received(client: [::1]:60103, IMEI: 352094087982671) +2018/08/13 16:07:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:07:57 ruptelaNet.go:231: Sent ACK (client: [::1]:60103, IMEI: 352094087982671) +2018/08/13 16:08:00 ruptelaNet.go:239: Close connection(client: [::1]:60103) +2018/08/13 16:08:23 ruptelaNet.go:170: New connection(client: [::1]:60113) +2018/08/13 16:08:24 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:08:24 ruptelaNet.go:217: Data received(client: [::1]:60113, IMEI: 352094087982671) +2018/08/13 16:08:24 ruptelaNet.go:231: Sent ACK (client: [::1]:60113, IMEI: 352094087982671) +2018/08/13 16:08:27 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:08:27 ruptelaNet.go:217: Data received(client: [::1]:60113, IMEI: 352094087982671) +2018/08/13 16:08:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:08:28 ruptelaNet.go:231: Sent ACK (client: [::1]:60113, IMEI: 352094087982671) +2018/08/13 16:08:30 ruptelaNet.go:239: Close connection(client: [::1]:60113) +2018/08/13 16:08:35 ruptelaNet.go:170: New connection(client: [::1]:60114) +2018/08/13 16:08:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:08:35 ruptelaNet.go:217: Data received(client: [::1]:60114, IMEI: 352094087230394) +2018/08/13 16:08:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60114, IMEI: 352094087230394) +2018/08/13 16:08:37 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:08:37 ruptelaNet.go:217: Data received(client: [::1]:60114, IMEI: 352094087230394) +2018/08/13 16:08:37 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:08:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60114, IMEI: 352094087230394) +2018/08/13 16:08:38 ruptelaNet.go:239: Close connection(client: [::1]:60114) +2018/08/13 16:08:53 ruptelaNet.go:170: New connection(client: [::1]:60128) +2018/08/13 16:08:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:08:54 ruptelaNet.go:217: Data received(client: [::1]:60128, IMEI: 352094087982671) +2018/08/13 16:08:54 ruptelaNet.go:231: Sent ACK (client: [::1]:60128, IMEI: 352094087982671) +2018/08/13 16:08:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:08:57 ruptelaNet.go:217: Data received(client: [::1]:60128, IMEI: 352094087982671) +2018/08/13 16:08:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:08:57 ruptelaNet.go:231: Sent ACK (client: [::1]:60128, IMEI: 352094087982671) +2018/08/13 16:09:01 ruptelaNet.go:239: Close connection(client: [::1]:60128) +2018/08/13 16:09:24 ruptelaNet.go:170: New connection(client: [::1]:60313) +2018/08/13 16:09:25 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:09:25 ruptelaNet.go:217: Data received(client: [::1]:60313, IMEI: 352094087982671) +2018/08/13 16:09:25 ruptelaNet.go:231: Sent ACK (client: [::1]:60313, IMEI: 352094087982671) +2018/08/13 16:09:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:09:28 ruptelaNet.go:217: Data received(client: [::1]:60313, IMEI: 352094087982671) +2018/08/13 16:09:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:09:28 ruptelaNet.go:231: Sent ACK (client: [::1]:60313, IMEI: 352094087982671) +2018/08/13 16:09:30 ruptelaNet.go:239: Close connection(client: [::1]:60313) +2018/08/13 16:09:35 ruptelaNet.go:170: New connection(client: [::1]:60370) +2018/08/13 16:09:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:09:35 ruptelaNet.go:217: Data received(client: [::1]:60370, IMEI: 352094087230394) +2018/08/13 16:09:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60370, IMEI: 352094087230394) +2018/08/13 16:09:37 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:09:37 ruptelaNet.go:217: Data received(client: [::1]:60370, IMEI: 352094087230394) +2018/08/13 16:09:37 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:09:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60370, IMEI: 352094087230394) +2018/08/13 16:09:38 ruptelaNet.go:239: Close connection(client: [::1]:60370) +2018/08/13 16:09:53 ruptelaNet.go:170: New connection(client: [::1]:60462) +2018/08/13 16:09:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:09:54 ruptelaNet.go:217: Data received(client: [::1]:60462, IMEI: 352094087982671) +2018/08/13 16:09:54 ruptelaNet.go:231: Sent ACK (client: [::1]:60462, IMEI: 352094087982671) +2018/08/13 16:09:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:09:57 ruptelaNet.go:217: Data received(client: [::1]:60462, IMEI: 352094087982671) +2018/08/13 16:09:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:09:57 ruptelaNet.go:231: Sent ACK (client: [::1]:60462, IMEI: 352094087982671) +2018/08/13 16:09:59 ruptelaNet.go:239: Close connection(client: [::1]:60462) +2018/08/13 16:10:23 ruptelaNet.go:170: New connection(client: [::1]:60622) +2018/08/13 16:10:24 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:10:24 ruptelaNet.go:217: Data received(client: [::1]:60622, IMEI: 352094087982671) +2018/08/13 16:10:24 ruptelaNet.go:231: Sent ACK (client: [::1]:60622, IMEI: 352094087982671) +2018/08/13 16:10:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:10:28 ruptelaNet.go:217: Data received(client: [::1]:60622, IMEI: 352094087982671) +2018/08/13 16:10:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:10:28 ruptelaNet.go:231: Sent ACK (client: [::1]:60622, IMEI: 352094087982671) +2018/08/13 16:10:30 ruptelaNet.go:239: Close connection(client: [::1]:60622) +2018/08/13 16:10:35 ruptelaNet.go:170: New connection(client: [::1]:60685) +2018/08/13 16:10:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:10:35 ruptelaNet.go:217: Data received(client: [::1]:60685, IMEI: 352094087230394) +2018/08/13 16:10:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60685, IMEI: 352094087230394) +2018/08/13 16:10:37 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:10:37 ruptelaNet.go:217: Data received(client: [::1]:60685, IMEI: 352094087230394) +2018/08/13 16:10:37 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:10:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60685, IMEI: 352094087230394) +2018/08/13 16:10:38 ruptelaNet.go:239: Close connection(client: [::1]:60685) +2018/08/13 16:10:53 ruptelaNet.go:170: New connection(client: [::1]:60777) +2018/08/13 16:10:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:10:54 ruptelaNet.go:217: Data received(client: [::1]:60777, IMEI: 352094087982671) +2018/08/13 16:10:54 ruptelaNet.go:231: Sent ACK (client: [::1]:60777, IMEI: 352094087982671) +2018/08/13 16:10:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:10:57 ruptelaNet.go:217: Data received(client: [::1]:60777, IMEI: 352094087982671) +2018/08/13 16:10:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:10:57 ruptelaNet.go:231: Sent ACK (client: [::1]:60777, IMEI: 352094087982671) +2018/08/13 16:10:59 ruptelaNet.go:239: Close connection(client: [::1]:60777) +2018/08/13 16:11:23 ruptelaNet.go:170: New connection(client: [::1]:60930) +2018/08/13 16:11:24 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:11:24 ruptelaNet.go:217: Data received(client: [::1]:60930, IMEI: 352094087982671) +2018/08/13 16:11:24 ruptelaNet.go:231: Sent ACK (client: [::1]:60930, IMEI: 352094087982671) +2018/08/13 16:11:27 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:11:27 ruptelaNet.go:217: Data received(client: [::1]:60930, IMEI: 352094087982671) +2018/08/13 16:11:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:11:27 ruptelaNet.go:231: Sent ACK (client: [::1]:60930, IMEI: 352094087982671) +2018/08/13 16:11:30 ruptelaNet.go:239: Close connection(client: [::1]:60930) +2018/08/13 16:11:35 ruptelaNet.go:170: New connection(client: [::1]:60995) +2018/08/13 16:11:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:11:35 ruptelaNet.go:217: Data received(client: [::1]:60995, IMEI: 352094087230394) +2018/08/13 16:11:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60995, IMEI: 352094087230394) +2018/08/13 16:11:37 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:11:37 ruptelaNet.go:217: Data received(client: [::1]:60995, IMEI: 352094087230394) +2018/08/13 16:11:37 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:11:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60995, IMEI: 352094087230394) +2018/08/13 16:11:40 ruptelaNet.go:239: Close connection(client: [::1]:60995) +2018/08/13 16:11:53 ruptelaNet.go:170: New connection(client: [::1]:61088) +2018/08/13 16:11:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:11:54 ruptelaNet.go:217: Data received(client: [::1]:61088, IMEI: 352094087982671) +2018/08/13 16:11:54 ruptelaNet.go:231: Sent ACK (client: [::1]:61088, IMEI: 352094087982671) +2018/08/13 16:11:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:11:57 ruptelaNet.go:217: Data received(client: [::1]:61088, IMEI: 352094087982671) +2018/08/13 16:11:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:11:57 ruptelaNet.go:231: Sent ACK (client: [::1]:61088, IMEI: 352094087982671) +2018/08/13 16:11:59 ruptelaNet.go:239: Close connection(client: [::1]:61088) +2018/08/13 16:12:23 ruptelaNet.go:170: New connection(client: [::1]:61243) +2018/08/13 16:12:25 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:12:25 ruptelaNet.go:217: Data received(client: [::1]:61243, IMEI: 352094087982671) +2018/08/13 16:12:25 ruptelaNet.go:231: Sent ACK (client: [::1]:61243, IMEI: 352094087982671) +2018/08/13 16:12:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:12:28 ruptelaNet.go:217: Data received(client: [::1]:61243, IMEI: 352094087982671) +2018/08/13 16:12:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:12:28 ruptelaNet.go:231: Sent ACK (client: [::1]:61243, IMEI: 352094087982671) +2018/08/13 16:12:33 ruptelaNet.go:239: Close connection(client: [::1]:61243) +2018/08/13 16:12:35 ruptelaNet.go:170: New connection(client: [::1]:61308) +2018/08/13 16:12:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:12:35 ruptelaNet.go:217: Data received(client: [::1]:61308, IMEI: 352094087230394) +2018/08/13 16:12:35 ruptelaNet.go:231: Sent ACK (client: [::1]:61308, IMEI: 352094087230394) +2018/08/13 16:12:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:12:38 ruptelaNet.go:217: Data received(client: [::1]:61308, IMEI: 352094087230394) +2018/08/13 16:12:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:12:38 ruptelaNet.go:231: Sent ACK (client: [::1]:61308, IMEI: 352094087230394) +2018/08/13 16:12:38 ruptelaNet.go:239: Close connection(client: [::1]:61308) +2018/08/13 16:12:56 ruptelaNet.go:170: New connection(client: [::1]:61418) +2018/08/13 16:12:57 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:12:57 ruptelaNet.go:217: Data received(client: [::1]:61418, IMEI: 352094087982671) +2018/08/13 16:12:57 ruptelaNet.go:231: Sent ACK (client: [::1]:61418, IMEI: 352094087982671) +2018/08/13 16:13:00 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:13:00 ruptelaNet.go:217: Data received(client: [::1]:61418, IMEI: 352094087982671) +2018/08/13 16:13:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:13:00 ruptelaNet.go:231: Sent ACK (client: [::1]:61418, IMEI: 352094087982671) +2018/08/13 16:13:03 ruptelaNet.go:239: Close connection(client: [::1]:61418) +2018/08/13 16:13:26 ruptelaNet.go:170: New connection(client: [::1]:61574) +2018/08/13 16:13:27 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:13:27 ruptelaNet.go:217: Data received(client: [::1]:61574, IMEI: 352094087982671) +2018/08/13 16:13:27 ruptelaNet.go:231: Sent ACK (client: [::1]:61574, IMEI: 352094087982671) +2018/08/13 16:13:31 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:13:31 ruptelaNet.go:217: Data received(client: [::1]:61574, IMEI: 352094087982671) +2018/08/13 16:13:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:13:31 ruptelaNet.go:231: Sent ACK (client: [::1]:61574, IMEI: 352094087982671) +2018/08/13 16:13:35 ruptelaNet.go:170: New connection(client: [::1]:61622) +2018/08/13 16:13:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:13:35 ruptelaNet.go:217: Data received(client: [::1]:61622, IMEI: 352094087230394) +2018/08/13 16:13:35 ruptelaNet.go:231: Sent ACK (client: [::1]:61622, IMEI: 352094087230394) +2018/08/13 16:13:37 ruptelaNet.go:239: Close connection(client: [::1]:61574) +2018/08/13 16:13:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:13:38 ruptelaNet.go:217: Data received(client: [::1]:61622, IMEI: 352094087230394) +2018/08/13 16:13:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:13:38 ruptelaNet.go:231: Sent ACK (client: [::1]:61622, IMEI: 352094087230394) +2018/08/13 16:13:39 ruptelaNet.go:239: Close connection(client: [::1]:61622) +2018/08/13 16:14:00 ruptelaNet.go:170: New connection(client: [::1]:61748) +2018/08/13 16:14:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:14:01 ruptelaNet.go:217: Data received(client: [::1]:61748, IMEI: 352094087982671) +2018/08/13 16:14:01 ruptelaNet.go:231: Sent ACK (client: [::1]:61748, IMEI: 352094087982671) +2018/08/13 16:14:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:14:04 ruptelaNet.go:217: Data received(client: [::1]:61748, IMEI: 352094087982671) +2018/08/13 16:14:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:14:05 ruptelaNet.go:231: Sent ACK (client: [::1]:61748, IMEI: 352094087982671) +2018/08/13 16:14:07 ruptelaNet.go:239: Close connection(client: [::1]:61748) +2018/08/13 16:14:30 ruptelaNet.go:170: New connection(client: [::1]:61905) +2018/08/13 16:14:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:14:31 ruptelaNet.go:217: Data received(client: [::1]:61905, IMEI: 352094087982671) +2018/08/13 16:14:31 ruptelaNet.go:231: Sent ACK (client: [::1]:61905, IMEI: 352094087982671) +2018/08/13 16:14:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:14:35 ruptelaNet.go:217: Data received(client: [::1]:61905, IMEI: 352094087982671) +2018/08/13 16:14:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:14:35 ruptelaNet.go:231: Sent ACK (client: [::1]:61905, IMEI: 352094087982671) +2018/08/13 16:14:35 ruptelaNet.go:170: New connection(client: [::1]:61939) +2018/08/13 16:14:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:14:36 ruptelaNet.go:217: Data received(client: [::1]:61939, IMEI: 352094087230394) +2018/08/13 16:14:36 ruptelaNet.go:231: Sent ACK (client: [::1]:61939, IMEI: 352094087230394) +2018/08/13 16:14:37 ruptelaNet.go:239: Close connection(client: [::1]:61905) +2018/08/13 16:14:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:14:39 ruptelaNet.go:217: Data received(client: [::1]:61939, IMEI: 352094087230394) +2018/08/13 16:14:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:14:39 ruptelaNet.go:231: Sent ACK (client: [::1]:61939, IMEI: 352094087230394) +2018/08/13 16:14:40 ruptelaNet.go:239: Close connection(client: [::1]:61939) +2018/08/13 16:15:00 ruptelaNet.go:170: New connection(client: [::1]:62064) +2018/08/13 16:15:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:15:01 ruptelaNet.go:217: Data received(client: [::1]:62064, IMEI: 352094087982671) +2018/08/13 16:15:01 ruptelaNet.go:231: Sent ACK (client: [::1]:62064, IMEI: 352094087982671) +2018/08/13 16:15:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:15:04 ruptelaNet.go:217: Data received(client: [::1]:62064, IMEI: 352094087982671) +2018/08/13 16:15:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:15:04 ruptelaNet.go:231: Sent ACK (client: [::1]:62064, IMEI: 352094087982671) +2018/08/13 16:15:07 ruptelaNet.go:239: Close connection(client: [::1]:62064) +2018/08/13 16:15:30 ruptelaNet.go:170: New connection(client: [::1]:62213) +2018/08/13 16:15:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:15:31 ruptelaNet.go:217: Data received(client: [::1]:62213, IMEI: 352094087982671) +2018/08/13 16:15:31 ruptelaNet.go:231: Sent ACK (client: [::1]:62213, IMEI: 352094087982671) +2018/08/13 16:15:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:15:35 ruptelaNet.go:217: Data received(client: [::1]:62213, IMEI: 352094087982671) +2018/08/13 16:15:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:15:35 ruptelaNet.go:231: Sent ACK (client: [::1]:62213, IMEI: 352094087982671) +2018/08/13 16:15:36 ruptelaNet.go:170: New connection(client: [::1]:62247) +2018/08/13 16:15:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:15:36 ruptelaNet.go:217: Data received(client: [::1]:62247, IMEI: 352094087230394) +2018/08/13 16:15:36 ruptelaNet.go:231: Sent ACK (client: [::1]:62247, IMEI: 352094087230394) +2018/08/13 16:15:37 ruptelaNet.go:239: Close connection(client: [::1]:62213) +2018/08/13 16:15:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:15:39 ruptelaNet.go:217: Data received(client: [::1]:62247, IMEI: 352094087230394) +2018/08/13 16:15:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:15:39 ruptelaNet.go:231: Sent ACK (client: [::1]:62247, IMEI: 352094087230394) +2018/08/13 16:15:40 ruptelaNet.go:239: Close connection(client: [::1]:62247) +2018/08/13 16:16:00 ruptelaNet.go:170: New connection(client: [::1]:62366) +2018/08/13 16:16:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:16:01 ruptelaNet.go:217: Data received(client: [::1]:62366, IMEI: 352094087982671) +2018/08/13 16:16:01 ruptelaNet.go:231: Sent ACK (client: [::1]:62366, IMEI: 352094087982671) +2018/08/13 16:16:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:16:04 ruptelaNet.go:217: Data received(client: [::1]:62366, IMEI: 352094087982671) +2018/08/13 16:16:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:16:04 ruptelaNet.go:231: Sent ACK (client: [::1]:62366, IMEI: 352094087982671) +2018/08/13 16:16:07 ruptelaNet.go:239: Close connection(client: [::1]:62366) +2018/08/13 16:16:30 ruptelaNet.go:170: New connection(client: [::1]:62515) +2018/08/13 16:16:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:16:31 ruptelaNet.go:217: Data received(client: [::1]:62515, IMEI: 352094087982671) +2018/08/13 16:16:31 ruptelaNet.go:231: Sent ACK (client: [::1]:62515, IMEI: 352094087982671) +2018/08/13 16:16:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:16:34 ruptelaNet.go:217: Data received(client: [::1]:62515, IMEI: 352094087982671) +2018/08/13 16:16:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:16:34 ruptelaNet.go:231: Sent ACK (client: [::1]:62515, IMEI: 352094087982671) +2018/08/13 16:16:36 ruptelaNet.go:170: New connection(client: [::1]:62549) +2018/08/13 16:16:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:16:36 ruptelaNet.go:217: Data received(client: [::1]:62549, IMEI: 352094087230394) +2018/08/13 16:16:37 ruptelaNet.go:231: Sent ACK (client: [::1]:62549, IMEI: 352094087230394) +2018/08/13 16:16:37 ruptelaNet.go:239: Close connection(client: [::1]:62515) +2018/08/13 16:16:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:16:39 ruptelaNet.go:217: Data received(client: [::1]:62549, IMEI: 352094087230394) +2018/08/13 16:16:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:16:39 ruptelaNet.go:231: Sent ACK (client: [::1]:62549, IMEI: 352094087230394) +2018/08/13 16:16:41 ruptelaNet.go:239: Close connection(client: [::1]:62549) +2018/08/13 16:17:00 ruptelaNet.go:170: New connection(client: [::1]:62663) +2018/08/13 16:17:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:17:01 ruptelaNet.go:217: Data received(client: [::1]:62663, IMEI: 352094087982671) +2018/08/13 16:17:01 ruptelaNet.go:231: Sent ACK (client: [::1]:62663, IMEI: 352094087982671) +2018/08/13 16:17:05 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:17:05 ruptelaNet.go:217: Data received(client: [::1]:62663, IMEI: 352094087982671) +2018/08/13 16:17:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:17:05 ruptelaNet.go:231: Sent ACK (client: [::1]:62663, IMEI: 352094087982671) +2018/08/13 16:17:07 ruptelaNet.go:239: Close connection(client: [::1]:62663) +2018/08/13 16:17:30 ruptelaNet.go:170: New connection(client: [::1]:62818) +2018/08/13 16:17:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:17:31 ruptelaNet.go:217: Data received(client: [::1]:62818, IMEI: 352094087982671) +2018/08/13 16:17:31 ruptelaNet.go:231: Sent ACK (client: [::1]:62818, IMEI: 352094087982671) +2018/08/13 16:17:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:17:34 ruptelaNet.go:217: Data received(client: [::1]:62818, IMEI: 352094087982671) +2018/08/13 16:17:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:17:34 ruptelaNet.go:231: Sent ACK (client: [::1]:62818, IMEI: 352094087982671) +2018/08/13 16:17:36 ruptelaNet.go:170: New connection(client: [::1]:62852) +2018/08/13 16:17:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:17:36 ruptelaNet.go:217: Data received(client: [::1]:62852, IMEI: 352094087230394) +2018/08/13 16:17:36 ruptelaNet.go:231: Sent ACK (client: [::1]:62852, IMEI: 352094087230394) +2018/08/13 16:17:37 ruptelaNet.go:239: Close connection(client: [::1]:62818) +2018/08/13 16:17:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:17:39 ruptelaNet.go:217: Data received(client: [::1]:62852, IMEI: 352094087230394) +2018/08/13 16:17:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:17:39 ruptelaNet.go:231: Sent ACK (client: [::1]:62852, IMEI: 352094087230394) +2018/08/13 16:17:39 ruptelaNet.go:239: Close connection(client: [::1]:62852) +2018/08/13 16:18:00 ruptelaNet.go:170: New connection(client: [::1]:62974) +2018/08/13 16:18:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:18:01 ruptelaNet.go:217: Data received(client: [::1]:62974, IMEI: 352094087982671) +2018/08/13 16:18:01 ruptelaNet.go:231: Sent ACK (client: [::1]:62974, IMEI: 352094087982671) +2018/08/13 16:18:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:18:06 ruptelaNet.go:217: Data received(client: [::1]:62974, IMEI: 352094087982671) +2018/08/13 16:18:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:18:07 ruptelaNet.go:231: Sent ACK (client: [::1]:62974, IMEI: 352094087982671) +2018/08/13 16:18:09 ruptelaNet.go:239: Close connection(client: [::1]:62974) +2018/08/13 16:18:32 ruptelaNet.go:170: New connection(client: [::1]:63136) +2018/08/13 16:18:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:18:33 ruptelaNet.go:217: Data received(client: [::1]:63136, IMEI: 352094087982671) +2018/08/13 16:18:33 ruptelaNet.go:231: Sent ACK (client: [::1]:63136, IMEI: 352094087982671) +2018/08/13 16:18:36 ruptelaNet.go:170: New connection(client: [::1]:63159) +2018/08/13 16:18:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:18:36 ruptelaNet.go:217: Data received(client: [::1]:63159, IMEI: 352094087230394) +2018/08/13 16:18:36 ruptelaNet.go:231: Sent ACK (client: [::1]:63159, IMEI: 352094087230394) +2018/08/13 16:18:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:18:37 ruptelaNet.go:217: Data received(client: [::1]:63136, IMEI: 352094087982671) +2018/08/13 16:18:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:18:37 ruptelaNet.go:231: Sent ACK (client: [::1]:63136, IMEI: 352094087982671) +2018/08/13 16:18:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:18:39 ruptelaNet.go:217: Data received(client: [::1]:63159, IMEI: 352094087230394) +2018/08/13 16:18:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:18:39 ruptelaNet.go:231: Sent ACK (client: [::1]:63159, IMEI: 352094087230394) +2018/08/13 16:18:39 ruptelaNet.go:239: Close connection(client: [::1]:63136) +2018/08/13 16:18:39 ruptelaNet.go:239: Close connection(client: [::1]:63159) +2018/08/13 16:19:02 ruptelaNet.go:170: New connection(client: [::1]:63290) +2018/08/13 16:19:03 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:19:03 ruptelaNet.go:217: Data received(client: [::1]:63290, IMEI: 352094087982671) +2018/08/13 16:19:03 ruptelaNet.go:231: Sent ACK (client: [::1]:63290, IMEI: 352094087982671) +2018/08/13 16:19:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:19:06 ruptelaNet.go:217: Data received(client: [::1]:63290, IMEI: 352094087982671) +2018/08/13 16:19:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:19:07 ruptelaNet.go:231: Sent ACK (client: [::1]:63290, IMEI: 352094087982671) +2018/08/13 16:19:09 ruptelaNet.go:239: Close connection(client: [::1]:63290) +2018/08/13 16:19:32 ruptelaNet.go:170: New connection(client: [::1]:63438) +2018/08/13 16:19:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:19:33 ruptelaNet.go:217: Data received(client: [::1]:63438, IMEI: 352094087982671) +2018/08/13 16:19:33 ruptelaNet.go:231: Sent ACK (client: [::1]:63438, IMEI: 352094087982671) +2018/08/13 16:19:36 ruptelaNet.go:170: New connection(client: [::1]:63462) +2018/08/13 16:19:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:19:36 ruptelaNet.go:217: Data received(client: [::1]:63462, IMEI: 352094087230394) +2018/08/13 16:19:36 ruptelaNet.go:231: Sent ACK (client: [::1]:63462, IMEI: 352094087230394) +2018/08/13 16:19:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:19:37 ruptelaNet.go:217: Data received(client: [::1]:63438, IMEI: 352094087982671) +2018/08/13 16:19:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:19:37 ruptelaNet.go:231: Sent ACK (client: [::1]:63438, IMEI: 352094087982671) +2018/08/13 16:19:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:19:39 ruptelaNet.go:217: Data received(client: [::1]:63462, IMEI: 352094087230394) +2018/08/13 16:19:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:19:39 ruptelaNet.go:231: Sent ACK (client: [::1]:63462, IMEI: 352094087230394) +2018/08/13 16:19:40 ruptelaNet.go:239: Close connection(client: [::1]:63462) +2018/08/13 16:19:40 ruptelaNet.go:239: Close connection(client: [::1]:63438) +2018/08/13 16:20:03 ruptelaNet.go:170: New connection(client: [::1]:63598) +2018/08/13 16:20:04 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:20:04 ruptelaNet.go:217: Data received(client: [::1]:63598, IMEI: 352094087982671) +2018/08/13 16:20:04 ruptelaNet.go:231: Sent ACK (client: [::1]:63598, IMEI: 352094087982671) +2018/08/13 16:20:07 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:20:07 ruptelaNet.go:217: Data received(client: [::1]:63598, IMEI: 352094087982671) +2018/08/13 16:20:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:20:07 ruptelaNet.go:231: Sent ACK (client: [::1]:63598, IMEI: 352094087982671) +2018/08/13 16:20:10 ruptelaNet.go:239: Close connection(client: [::1]:63598) +2018/08/13 16:20:33 ruptelaNet.go:170: New connection(client: [::1]:63687) +2018/08/13 16:20:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:20:34 ruptelaNet.go:217: Data received(client: [::1]:63687, IMEI: 352094087982671) +2018/08/13 16:20:34 ruptelaNet.go:231: Sent ACK (client: [::1]:63687, IMEI: 352094087982671) +2018/08/13 16:20:36 ruptelaNet.go:170: New connection(client: [::1]:63698) +2018/08/13 16:20:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:20:36 ruptelaNet.go:217: Data received(client: [::1]:63698, IMEI: 352094087230394) +2018/08/13 16:20:36 ruptelaNet.go:231: Sent ACK (client: [::1]:63698, IMEI: 352094087230394) +2018/08/13 16:20:38 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:20:38 ruptelaNet.go:217: Data received(client: [::1]:63687, IMEI: 352094087982671) +2018/08/13 16:20:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:20:38 ruptelaNet.go:231: Sent ACK (client: [::1]:63687, IMEI: 352094087982671) +2018/08/13 16:20:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:20:39 ruptelaNet.go:217: Data received(client: [::1]:63698, IMEI: 352094087230394) +2018/08/13 16:20:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:20:39 ruptelaNet.go:231: Sent ACK (client: [::1]:63698, IMEI: 352094087230394) +2018/08/13 16:20:40 ruptelaNet.go:239: Close connection(client: [::1]:63687) +2018/08/13 16:20:41 ruptelaNet.go:239: Close connection(client: [::1]:63698) +2018/08/13 16:22:31 ruptelaNet.go:170: New connection(client: [::1]:63870) +2018/08/13 16:22:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:22:32 ruptelaNet.go:217: Data received(client: [::1]:63870, IMEI: 352094087982671) +2018/08/13 16:22:32 ruptelaNet.go:231: Sent ACK (client: [::1]:63870, IMEI: 352094087982671) +2018/08/13 16:22:36 ruptelaNet.go:170: New connection(client: [::1]:63886) +2018/08/13 16:22:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:22:36 ruptelaNet.go:217: Data received(client: [::1]:63886, IMEI: 352094087230394) +2018/08/13 16:22:36 ruptelaNet.go:231: Sent ACK (client: [::1]:63886, IMEI: 352094087230394) +2018/08/13 16:22:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:22:37 ruptelaNet.go:217: Data received(client: [::1]:63870, IMEI: 352094087982671) +2018/08/13 16:22:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:22:37 ruptelaNet.go:231: Sent ACK (client: [::1]:63870, IMEI: 352094087982671) +2018/08/13 16:22:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:22:38 ruptelaNet.go:217: Data received(client: [::1]:63886, IMEI: 352094087230394) +2018/08/13 16:22:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:22:38 ruptelaNet.go:231: Sent ACK (client: [::1]:63886, IMEI: 352094087230394) +2018/08/13 16:22:39 ruptelaNet.go:239: Close connection(client: [::1]:63870) +2018/08/13 16:22:40 ruptelaNet.go:239: Close connection(client: [::1]:63886) +2018/08/13 16:23:02 ruptelaNet.go:170: New connection(client: [::1]:63956) +2018/08/13 16:23:03 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:23:03 ruptelaNet.go:217: Data received(client: [::1]:63956, IMEI: 352094087982671) +2018/08/13 16:23:03 ruptelaNet.go:231: Sent ACK (client: [::1]:63956, IMEI: 352094087982671) +2018/08/13 16:23:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:23:06 ruptelaNet.go:217: Data received(client: [::1]:63956, IMEI: 352094087982671) +2018/08/13 16:23:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:23:06 ruptelaNet.go:231: Sent ACK (client: [::1]:63956, IMEI: 352094087982671) +2018/08/13 16:23:09 ruptelaNet.go:239: Close connection(client: [::1]:63956) +2018/08/13 16:23:32 ruptelaNet.go:170: New connection(client: [::1]:64033) +2018/08/13 16:23:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:23:33 ruptelaNet.go:217: Data received(client: [::1]:64033, IMEI: 352094087982671) +2018/08/13 16:23:33 ruptelaNet.go:231: Sent ACK (client: [::1]:64033, IMEI: 352094087982671) +2018/08/13 16:23:36 ruptelaNet.go:170: New connection(client: [::1]:64044) +2018/08/13 16:23:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:23:36 ruptelaNet.go:217: Data received(client: [::1]:64044, IMEI: 352094087230394) +2018/08/13 16:23:36 ruptelaNet.go:231: Sent ACK (client: [::1]:64044, IMEI: 352094087230394) +2018/08/13 16:23:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:23:37 ruptelaNet.go:217: Data received(client: [::1]:64033, IMEI: 352094087982671) +2018/08/13 16:23:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:23:37 ruptelaNet.go:231: Sent ACK (client: [::1]:64033, IMEI: 352094087982671) +2018/08/13 16:23:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:23:38 ruptelaNet.go:217: Data received(client: [::1]:64044, IMEI: 352094087230394) +2018/08/13 16:23:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:23:38 ruptelaNet.go:231: Sent ACK (client: [::1]:64044, IMEI: 352094087230394) +2018/08/13 16:23:39 ruptelaNet.go:239: Close connection(client: [::1]:64033) +2018/08/13 16:23:40 ruptelaNet.go:239: Close connection(client: [::1]:64044) +2018/08/13 16:24:02 ruptelaNet.go:170: New connection(client: [::1]:64111) +2018/08/13 16:24:03 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:24:03 ruptelaNet.go:217: Data received(client: [::1]:64111, IMEI: 352094087982671) +2018/08/13 16:24:03 ruptelaNet.go:231: Sent ACK (client: [::1]:64111, IMEI: 352094087982671) +2018/08/13 16:24:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:24:06 ruptelaNet.go:217: Data received(client: [::1]:64111, IMEI: 352094087982671) +2018/08/13 16:24:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:24:06 ruptelaNet.go:231: Sent ACK (client: [::1]:64111, IMEI: 352094087982671) +2018/08/13 16:24:08 ruptelaNet.go:239: Close connection(client: [::1]:64111) +2018/08/13 16:24:31 ruptelaNet.go:170: New connection(client: [::1]:64190) +2018/08/13 16:24:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:24:32 ruptelaNet.go:217: Data received(client: [::1]:64190, IMEI: 352094087982671) +2018/08/13 16:24:32 ruptelaNet.go:231: Sent ACK (client: [::1]:64190, IMEI: 352094087982671) +2018/08/13 16:24:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:24:35 ruptelaNet.go:217: Data received(client: [::1]:64190, IMEI: 352094087982671) +2018/08/13 16:24:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:24:35 ruptelaNet.go:231: Sent ACK (client: [::1]:64190, IMEI: 352094087982671) +2018/08/13 16:24:36 ruptelaNet.go:170: New connection(client: [::1]:64202) +2018/08/13 16:24:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:24:36 ruptelaNet.go:217: Data received(client: [::1]:64202, IMEI: 352094087230394) +2018/08/13 16:24:36 ruptelaNet.go:231: Sent ACK (client: [::1]:64202, IMEI: 352094087230394) +2018/08/13 16:24:37 ruptelaNet.go:239: Close connection(client: [::1]:64190) +2018/08/13 16:24:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:24:38 ruptelaNet.go:217: Data received(client: [::1]:64202, IMEI: 352094087230394) +2018/08/13 16:24:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:24:38 ruptelaNet.go:231: Sent ACK (client: [::1]:64202, IMEI: 352094087230394) +2018/08/13 16:24:39 ruptelaNet.go:239: Close connection(client: [::1]:64202) +2018/08/13 16:25:00 ruptelaNet.go:170: New connection(client: [::1]:64263) +2018/08/13 16:25:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:25:01 ruptelaNet.go:217: Data received(client: [::1]:64263, IMEI: 352094087982671) +2018/08/13 16:25:01 ruptelaNet.go:231: Sent ACK (client: [::1]:64263, IMEI: 352094087982671) +2018/08/13 16:25:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:25:04 ruptelaNet.go:217: Data received(client: [::1]:64263, IMEI: 352094087982671) +2018/08/13 16:25:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:25:04 ruptelaNet.go:231: Sent ACK (client: [::1]:64263, IMEI: 352094087982671) +2018/08/13 16:25:06 ruptelaNet.go:239: Close connection(client: [::1]:64263) +2018/08/13 16:25:11 ruptelaNet.go:170: New connection(client: [::1]:64295) +2018/08/13 16:25:11 ruptelaNet.go:170: New connection(client: [::1]:64296) +2018/08/13 16:25:26 ruptelaNet.go:239: Close connection(client: [::1]:64295) +2018/08/13 16:25:26 ruptelaNet.go:239: Close connection(client: [::1]:64296) +2018/08/13 16:25:26 ruptelaNet.go:170: New connection(client: [::1]:64338) +2018/08/13 16:25:26 ruptelaNet.go:170: New connection(client: [::1]:64337) +2018/08/13 16:25:29 ruptelaNet.go:170: New connection(client: [::1]:64344) +2018/08/13 16:25:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:25:31 ruptelaNet.go:217: Data received(client: [::1]:64344, IMEI: 352094087982671) +2018/08/13 16:25:31 ruptelaNet.go:231: Sent ACK (client: [::1]:64344, IMEI: 352094087982671) +2018/08/13 16:25:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:25:35 ruptelaNet.go:217: Data received(client: [::1]:64344, IMEI: 352094087982671) +2018/08/13 16:25:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:25:35 ruptelaNet.go:231: Sent ACK (client: [::1]:64344, IMEI: 352094087982671) +2018/08/13 16:25:36 ruptelaNet.go:170: New connection(client: [::1]:64360) +2018/08/13 16:25:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:25:36 ruptelaNet.go:217: Data received(client: [::1]:64360, IMEI: 352094087230394) +2018/08/13 16:25:36 ruptelaNet.go:231: Sent ACK (client: [::1]:64360, IMEI: 352094087230394) +2018/08/13 16:25:37 ruptelaNet.go:239: Close connection(client: [::1]:64344) +2018/08/13 16:25:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:25:38 ruptelaNet.go:217: Data received(client: [::1]:64360, IMEI: 352094087230394) +2018/08/13 16:25:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:25:38 ruptelaNet.go:231: Sent ACK (client: [::1]:64360, IMEI: 352094087230394) +2018/08/13 16:25:39 ruptelaNet.go:239: Close connection(client: [::1]:64360) +2018/08/13 16:25:42 ruptelaNet.go:239: Close connection(client: [::1]:64337) +2018/08/13 16:25:42 ruptelaNet.go:239: Close connection(client: [::1]:64338) +2018/08/13 16:26:00 ruptelaNet.go:170: New connection(client: [::1]:64422) +2018/08/13 16:26:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:26:01 ruptelaNet.go:217: Data received(client: [::1]:64422, IMEI: 352094087982671) +2018/08/13 16:26:01 ruptelaNet.go:231: Sent ACK (client: [::1]:64422, IMEI: 352094087982671) +2018/08/13 16:26:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:26:04 ruptelaNet.go:217: Data received(client: [::1]:64422, IMEI: 352094087982671) +2018/08/13 16:26:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:26:04 ruptelaNet.go:231: Sent ACK (client: [::1]:64422, IMEI: 352094087982671) +2018/08/13 16:26:06 ruptelaNet.go:239: Close connection(client: [::1]:64422) +2018/08/13 16:26:29 ruptelaNet.go:170: New connection(client: [::1]:64498) +2018/08/13 16:26:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:26:30 ruptelaNet.go:217: Data received(client: [::1]:64498, IMEI: 352094087982671) +2018/08/13 16:26:30 ruptelaNet.go:231: Sent ACK (client: [::1]:64498, IMEI: 352094087982671) +2018/08/13 16:26:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:26:34 ruptelaNet.go:217: Data received(client: [::1]:64498, IMEI: 352094087982671) +2018/08/13 16:26:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:26:34 ruptelaNet.go:231: Sent ACK (client: [::1]:64498, IMEI: 352094087982671) +2018/08/13 16:26:37 ruptelaNet.go:239: Close connection(client: [::1]:64498) +2018/08/13 16:26:37 ruptelaNet.go:170: New connection(client: [::1]:64519) +2018/08/13 16:26:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:26:37 ruptelaNet.go:217: Data received(client: [::1]:64519, IMEI: 352094087230394) +2018/08/13 16:26:37 ruptelaNet.go:231: Sent ACK (client: [::1]:64519, IMEI: 352094087230394) +2018/08/13 16:26:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:26:39 ruptelaNet.go:217: Data received(client: [::1]:64519, IMEI: 352094087230394) +2018/08/13 16:26:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:26:39 ruptelaNet.go:231: Sent ACK (client: [::1]:64519, IMEI: 352094087230394) +2018/08/13 16:26:40 ruptelaNet.go:239: Close connection(client: [::1]:64519) +2018/08/13 16:26:58 ruptelaNet.go:170: New connection(client: [::1]:64576) +2018/08/13 16:27:00 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:27:00 ruptelaNet.go:217: Data received(client: [::1]:64576, IMEI: 352094087982671) +2018/08/13 16:27:00 ruptelaNet.go:231: Sent ACK (client: [::1]:64576, IMEI: 352094087982671) +2018/08/13 16:27:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:27:04 ruptelaNet.go:217: Data received(client: [::1]:64576, IMEI: 352094087982671) +2018/08/13 16:27:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:27:04 ruptelaNet.go:231: Sent ACK (client: [::1]:64576, IMEI: 352094087982671) +2018/08/13 16:27:10 ruptelaNet.go:239: Close connection(client: [::1]:64576) +2018/08/13 16:27:33 ruptelaNet.go:170: New connection(client: [::1]:64661) +2018/08/13 16:27:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:27:34 ruptelaNet.go:217: Data received(client: [::1]:64661, IMEI: 352094087982671) +2018/08/13 16:27:34 ruptelaNet.go:231: Sent ACK (client: [::1]:64661, IMEI: 352094087982671) +2018/08/13 16:27:36 ruptelaNet.go:170: New connection(client: [::1]:64669) +2018/08/13 16:27:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:27:36 ruptelaNet.go:217: Data received(client: [::1]:64669, IMEI: 352094087230394) +2018/08/13 16:27:36 ruptelaNet.go:231: Sent ACK (client: [::1]:64669, IMEI: 352094087230394) +2018/08/13 16:27:38 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:27:38 ruptelaNet.go:217: Data received(client: [::1]:64661, IMEI: 352094087982671) +2018/08/13 16:27:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:27:38 ruptelaNet.go:231: Sent ACK (client: [::1]:64661, IMEI: 352094087982671) +2018/08/13 16:27:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:27:39 ruptelaNet.go:217: Data received(client: [::1]:64669, IMEI: 352094087230394) +2018/08/13 16:27:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:27:39 ruptelaNet.go:231: Sent ACK (client: [::1]:64669, IMEI: 352094087230394) +2018/08/13 16:27:39 ruptelaNet.go:239: Close connection(client: [::1]:64669) +2018/08/13 16:27:42 ruptelaNet.go:239: Close connection(client: [::1]:64661) +2018/08/13 16:28:03 ruptelaNet.go:170: New connection(client: [::1]:64744) +2018/08/13 16:28:04 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:28:04 ruptelaNet.go:217: Data received(client: [::1]:64744, IMEI: 352094087982671) +2018/08/13 16:28:04 ruptelaNet.go:231: Sent ACK (client: [::1]:64744, IMEI: 352094087982671) +2018/08/13 16:28:07 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:28:07 ruptelaNet.go:217: Data received(client: [::1]:64744, IMEI: 352094087982671) +2018/08/13 16:28:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:28:07 ruptelaNet.go:231: Sent ACK (client: [::1]:64744, IMEI: 352094087982671) +2018/08/13 16:28:09 ruptelaNet.go:239: Close connection(client: [::1]:64744) +2018/08/13 16:28:32 ruptelaNet.go:170: New connection(client: [::1]:64812) +2018/08/13 16:28:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:28:33 ruptelaNet.go:217: Data received(client: [::1]:64812, IMEI: 352094087982671) +2018/08/13 16:28:33 ruptelaNet.go:231: Sent ACK (client: [::1]:64812, IMEI: 352094087982671) +2018/08/13 16:28:37 ruptelaNet.go:170: New connection(client: [::1]:64825) +2018/08/13 16:28:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:28:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:28:37 ruptelaNet.go:217: Data received(client: [::1]:64812, IMEI: 352094087982671) +2018/08/13 16:28:37 ruptelaNet.go:217: Data received(client: [::1]:64825, IMEI: 352094087230394) +2018/08/13 16:28:37 ruptelaNet.go:231: Sent ACK (client: [::1]:64825, IMEI: 352094087230394) +2018/08/13 16:28:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:28:37 ruptelaNet.go:231: Sent ACK (client: [::1]:64812, IMEI: 352094087982671) +2018/08/13 16:28:39 ruptelaNet.go:239: Close connection(client: [::1]:64812) +2018/08/13 16:28:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:28:39 ruptelaNet.go:217: Data received(client: [::1]:64825, IMEI: 352094087230394) +2018/08/13 16:28:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:28:39 ruptelaNet.go:231: Sent ACK (client: [::1]:64825, IMEI: 352094087230394) +2018/08/13 16:28:40 ruptelaNet.go:239: Close connection(client: [::1]:64825) +2018/08/13 16:29:02 ruptelaNet.go:170: New connection(client: [::1]:64890) +2018/08/13 16:29:03 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:29:03 ruptelaNet.go:217: Data received(client: [::1]:64890, IMEI: 352094087982671) +2018/08/13 16:29:03 ruptelaNet.go:231: Sent ACK (client: [::1]:64890, IMEI: 352094087982671) +2018/08/13 16:29:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:29:06 ruptelaNet.go:217: Data received(client: [::1]:64890, IMEI: 352094087982671) +2018/08/13 16:29:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:29:06 ruptelaNet.go:231: Sent ACK (client: [::1]:64890, IMEI: 352094087982671) +2018/08/13 16:29:13 ruptelaNet.go:239: Close connection(client: [::1]:64890) +2018/08/13 16:29:36 ruptelaNet.go:170: New connection(client: [::1]:65036) +2018/08/13 16:29:37 ruptelaNet.go:170: New connection(client: [::1]:65043) +2018/08/13 16:29:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:29:37 ruptelaNet.go:217: Data received(client: [::1]:65043, IMEI: 352094087230394) +2018/08/13 16:29:37 ruptelaNet.go:231: Sent ACK (client: [::1]:65043, IMEI: 352094087230394) +2018/08/13 16:29:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:29:37 ruptelaNet.go:217: Data received(client: [::1]:65036, IMEI: 352094087982671) +2018/08/13 16:29:37 ruptelaNet.go:231: Sent ACK (client: [::1]:65036, IMEI: 352094087982671) +2018/08/13 16:29:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:29:39 ruptelaNet.go:217: Data received(client: [::1]:65043, IMEI: 352094087230394) +2018/08/13 16:29:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:29:39 ruptelaNet.go:231: Sent ACK (client: [::1]:65043, IMEI: 352094087230394) +2018/08/13 16:29:40 ruptelaNet.go:239: Close connection(client: [::1]:65043) +2018/08/13 16:29:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:29:41 ruptelaNet.go:217: Data received(client: [::1]:65036, IMEI: 352094087982671) +2018/08/13 16:29:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:29:41 ruptelaNet.go:231: Sent ACK (client: [::1]:65036, IMEI: 352094087982671) +2018/08/13 16:29:43 ruptelaNet.go:239: Close connection(client: [::1]:65036) +2018/08/13 16:30:06 ruptelaNet.go:170: New connection(client: [::1]:65193) +2018/08/13 16:30:07 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:30:07 ruptelaNet.go:217: Data received(client: [::1]:65193, IMEI: 352094087982671) +2018/08/13 16:30:07 ruptelaNet.go:231: Sent ACK (client: [::1]:65193, IMEI: 352094087982671) +2018/08/13 16:30:11 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:30:11 ruptelaNet.go:217: Data received(client: [::1]:65193, IMEI: 352094087982671) +2018/08/13 16:30:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:30:11 ruptelaNet.go:231: Sent ACK (client: [::1]:65193, IMEI: 352094087982671) +2018/08/13 16:30:13 ruptelaNet.go:239: Close connection(client: [::1]:65193) +2018/08/13 16:30:36 ruptelaNet.go:170: New connection(client: [::1]:65346) +2018/08/13 16:30:37 ruptelaNet.go:170: New connection(client: [::1]:65358) +2018/08/13 16:30:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:30:37 ruptelaNet.go:217: Data received(client: [::1]:65358, IMEI: 352094087230394) +2018/08/13 16:30:37 ruptelaNet.go:231: Sent ACK (client: [::1]:65358, IMEI: 352094087230394) +2018/08/13 16:30:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:30:37 ruptelaNet.go:217: Data received(client: [::1]:65346, IMEI: 352094087982671) +2018/08/13 16:30:37 ruptelaNet.go:231: Sent ACK (client: [::1]:65346, IMEI: 352094087982671) +2018/08/13 16:30:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:30:39 ruptelaNet.go:217: Data received(client: [::1]:65358, IMEI: 352094087230394) +2018/08/13 16:30:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:30:39 ruptelaNet.go:231: Sent ACK (client: [::1]:65358, IMEI: 352094087230394) +2018/08/13 16:30:40 ruptelaNet.go:239: Close connection(client: [::1]:65358) +2018/08/13 16:30:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:30:41 ruptelaNet.go:217: Data received(client: [::1]:65346, IMEI: 352094087982671) +2018/08/13 16:30:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:30:41 ruptelaNet.go:231: Sent ACK (client: [::1]:65346, IMEI: 352094087982671) +2018/08/13 16:30:43 ruptelaNet.go:239: Close connection(client: [::1]:65346) +2018/08/13 16:31:06 ruptelaNet.go:170: New connection(client: [::1]:65500) +2018/08/13 16:31:07 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:31:07 ruptelaNet.go:217: Data received(client: [::1]:65500, IMEI: 352094087982671) +2018/08/13 16:31:07 ruptelaNet.go:231: Sent ACK (client: [::1]:65500, IMEI: 352094087982671) +2018/08/13 16:31:11 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:31:11 ruptelaNet.go:217: Data received(client: [::1]:65500, IMEI: 352094087982671) +2018/08/13 16:31:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:31:11 ruptelaNet.go:231: Sent ACK (client: [::1]:65500, IMEI: 352094087982671) +2018/08/13 16:31:13 ruptelaNet.go:239: Close connection(client: [::1]:65500) +2018/08/13 16:31:37 ruptelaNet.go:170: New connection(client: [::1]:49279) +2018/08/13 16:31:37 ruptelaNet.go:170: New connection(client: [::1]:49280) +2018/08/13 16:31:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:31:37 ruptelaNet.go:217: Data received(client: [::1]:49279, IMEI: 352094087230394) +2018/08/13 16:31:37 ruptelaNet.go:231: Sent ACK (client: [::1]:49279, IMEI: 352094087230394) +2018/08/13 16:31:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:31:38 ruptelaNet.go:217: Data received(client: [::1]:49280, IMEI: 352094087982671) +2018/08/13 16:31:38 ruptelaNet.go:231: Sent ACK (client: [::1]:49280, IMEI: 352094087982671) +2018/08/13 16:31:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:31:39 ruptelaNet.go:217: Data received(client: [::1]:49279, IMEI: 352094087230394) +2018/08/13 16:31:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:31:39 ruptelaNet.go:231: Sent ACK (client: [::1]:49279, IMEI: 352094087230394) +2018/08/13 16:31:40 ruptelaNet.go:239: Close connection(client: [::1]:49279) +2018/08/13 16:31:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:31:41 ruptelaNet.go:217: Data received(client: [::1]:49280, IMEI: 352094087982671) +2018/08/13 16:31:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:31:41 ruptelaNet.go:231: Sent ACK (client: [::1]:49280, IMEI: 352094087982671) +2018/08/13 16:31:44 ruptelaNet.go:239: Close connection(client: [::1]:49280) +2018/08/13 16:32:07 ruptelaNet.go:170: New connection(client: [::1]:49434) +2018/08/13 16:32:08 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:32:08 ruptelaNet.go:217: Data received(client: [::1]:49434, IMEI: 352094087982671) +2018/08/13 16:32:08 ruptelaNet.go:231: Sent ACK (client: [::1]:49434, IMEI: 352094087982671) +2018/08/13 16:32:12 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:32:12 ruptelaNet.go:217: Data received(client: [::1]:49434, IMEI: 352094087982671) +2018/08/13 16:32:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:32:12 ruptelaNet.go:231: Sent ACK (client: [::1]:49434, IMEI: 352094087982671) +2018/08/13 16:32:14 ruptelaNet.go:239: Close connection(client: [::1]:49434) +2018/08/13 16:32:37 ruptelaNet.go:170: New connection(client: [::1]:49588) +2018/08/13 16:32:37 ruptelaNet.go:170: New connection(client: [::1]:49589) +2018/08/13 16:32:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:32:38 ruptelaNet.go:217: Data received(client: [::1]:49589, IMEI: 352094087230394) +2018/08/13 16:32:38 ruptelaNet.go:231: Sent ACK (client: [::1]:49589, IMEI: 352094087230394) +2018/08/13 16:32:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:32:38 ruptelaNet.go:217: Data received(client: [::1]:49588, IMEI: 352094087982671) +2018/08/13 16:32:38 ruptelaNet.go:231: Sent ACK (client: [::1]:49588, IMEI: 352094087982671) +2018/08/13 16:32:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:32:40 ruptelaNet.go:217: Data received(client: [::1]:49589, IMEI: 352094087230394) +2018/08/13 16:32:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:32:40 ruptelaNet.go:231: Sent ACK (client: [::1]:49589, IMEI: 352094087230394) +2018/08/13 16:32:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:32:41 ruptelaNet.go:217: Data received(client: [::1]:49588, IMEI: 352094087982671) +2018/08/13 16:32:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:32:41 ruptelaNet.go:231: Sent ACK (client: [::1]:49588, IMEI: 352094087982671) +2018/08/13 16:32:42 ruptelaNet.go:239: Close connection(client: [::1]:49589) +2018/08/13 16:32:48 ruptelaNet.go:239: Close connection(client: [::1]:49588) +2018/08/13 16:33:12 ruptelaNet.go:170: New connection(client: [::1]:49771) +2018/08/13 16:33:12 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:33:12 ruptelaNet.go:217: Data received(client: [::1]:49771, IMEI: 352094087982671) +2018/08/13 16:33:12 ruptelaNet.go:231: Sent ACK (client: [::1]:49771, IMEI: 352094087982671) +2018/08/13 16:33:15 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:33:15 ruptelaNet.go:217: Data received(client: [::1]:49771, IMEI: 352094087982671) +2018/08/13 16:33:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:33:15 ruptelaNet.go:231: Sent ACK (client: [::1]:49771, IMEI: 352094087982671) +2018/08/13 16:33:17 ruptelaNet.go:239: Close connection(client: [::1]:49771) +2018/08/13 16:33:37 ruptelaNet.go:170: New connection(client: [::1]:49904) +2018/08/13 16:33:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:33:37 ruptelaNet.go:217: Data received(client: [::1]:49904, IMEI: 352094087230394) +2018/08/13 16:33:37 ruptelaNet.go:231: Sent ACK (client: [::1]:49904, IMEI: 352094087230394) +2018/08/13 16:33:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:33:39 ruptelaNet.go:217: Data received(client: [::1]:49904, IMEI: 352094087230394) +2018/08/13 16:33:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:33:39 ruptelaNet.go:231: Sent ACK (client: [::1]:49904, IMEI: 352094087230394) +2018/08/13 16:33:40 ruptelaNet.go:170: New connection(client: [::1]:49916) +2018/08/13 16:33:40 ruptelaNet.go:239: Close connection(client: [::1]:49904) +2018/08/13 16:33:41 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:33:41 ruptelaNet.go:217: Data received(client: [::1]:49916, IMEI: 352094087982671) +2018/08/13 16:33:41 ruptelaNet.go:231: Sent ACK (client: [::1]:49916, IMEI: 352094087982671) +2018/08/13 16:33:44 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:33:44 ruptelaNet.go:217: Data received(client: [::1]:49916, IMEI: 352094087982671) +2018/08/13 16:33:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:33:44 ruptelaNet.go:231: Sent ACK (client: [::1]:49916, IMEI: 352094087982671) +2018/08/13 16:33:47 ruptelaNet.go:239: Close connection(client: [::1]:49916) +2018/08/13 16:34:10 ruptelaNet.go:170: New connection(client: [::1]:50074) +2018/08/13 16:34:11 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:34:11 ruptelaNet.go:217: Data received(client: [::1]:50074, IMEI: 352094087982671) +2018/08/13 16:34:11 ruptelaNet.go:231: Sent ACK (client: [::1]:50074, IMEI: 352094087982671) +2018/08/13 16:34:15 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:34:15 ruptelaNet.go:217: Data received(client: [::1]:50074, IMEI: 352094087982671) +2018/08/13 16:34:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:34:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50074, IMEI: 352094087982671) +2018/08/13 16:34:17 ruptelaNet.go:239: Close connection(client: [::1]:50074) +2018/08/13 16:34:37 ruptelaNet.go:170: New connection(client: [::1]:50216) +2018/08/13 16:34:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:34:37 ruptelaNet.go:217: Data received(client: [::1]:50216, IMEI: 352094087230394) +2018/08/13 16:34:37 ruptelaNet.go:231: Sent ACK (client: [::1]:50216, IMEI: 352094087230394) +2018/08/13 16:34:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:34:39 ruptelaNet.go:217: Data received(client: [::1]:50216, IMEI: 352094087230394) +2018/08/13 16:34:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:34:39 ruptelaNet.go:231: Sent ACK (client: [::1]:50216, IMEI: 352094087230394) +2018/08/13 16:34:40 ruptelaNet.go:170: New connection(client: [::1]:50224) +2018/08/13 16:34:41 ruptelaNet.go:239: Close connection(client: [::1]:50216) +2018/08/13 16:34:41 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:34:41 ruptelaNet.go:217: Data received(client: [::1]:50224, IMEI: 352094087982671) +2018/08/13 16:34:41 ruptelaNet.go:231: Sent ACK (client: [::1]:50224, IMEI: 352094087982671) +2018/08/13 16:34:46 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:34:46 ruptelaNet.go:217: Data received(client: [::1]:50224, IMEI: 352094087982671) +2018/08/13 16:34:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:34:46 ruptelaNet.go:231: Sent ACK (client: [::1]:50224, IMEI: 352094087982671) +2018/08/13 16:34:48 ruptelaNet.go:239: Close connection(client: [::1]:50224) +2018/08/13 16:35:10 ruptelaNet.go:170: New connection(client: [::1]:50375) +2018/08/13 16:35:12 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:35:12 ruptelaNet.go:217: Data received(client: [::1]:50375, IMEI: 352094087982671) +2018/08/13 16:35:12 ruptelaNet.go:231: Sent ACK (client: [::1]:50375, IMEI: 352094087982671) +2018/08/13 16:35:15 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:35:15 ruptelaNet.go:217: Data received(client: [::1]:50375, IMEI: 352094087982671) +2018/08/13 16:35:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:35:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50375, IMEI: 352094087982671) +2018/08/13 16:35:17 ruptelaNet.go:239: Close connection(client: [::1]:50375) +2018/08/13 16:35:37 ruptelaNet.go:170: New connection(client: [::1]:50444) +2018/08/13 16:35:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:35:37 ruptelaNet.go:217: Data received(client: [::1]:50444, IMEI: 352094087230394) +2018/08/13 16:35:37 ruptelaNet.go:231: Sent ACK (client: [::1]:50444, IMEI: 352094087230394) +2018/08/13 16:35:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:35:39 ruptelaNet.go:217: Data received(client: [::1]:50444, IMEI: 352094087230394) +2018/08/13 16:35:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:35:39 ruptelaNet.go:231: Sent ACK (client: [::1]:50444, IMEI: 352094087230394) +2018/08/13 16:35:40 ruptelaNet.go:170: New connection(client: [::1]:50450) +2018/08/13 16:35:40 ruptelaNet.go:239: Close connection(client: [::1]:50444) +2018/08/13 16:35:41 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:35:41 ruptelaNet.go:217: Data received(client: [::1]:50450, IMEI: 352094087982671) +2018/08/13 16:35:41 ruptelaNet.go:231: Sent ACK (client: [::1]:50450, IMEI: 352094087982671) +2018/08/13 16:35:44 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:35:44 ruptelaNet.go:217: Data received(client: [::1]:50450, IMEI: 352094087982671) +2018/08/13 16:35:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:35:44 ruptelaNet.go:231: Sent ACK (client: [::1]:50450, IMEI: 352094087982671) +2018/08/13 16:35:50 ruptelaNet.go:239: Close connection(client: [::1]:50450) +2018/08/13 16:36:14 ruptelaNet.go:170: New connection(client: [::1]:50523) +2018/08/13 16:36:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:36:15 ruptelaNet.go:217: Data received(client: [::1]:50523, IMEI: 352094087982671) +2018/08/13 16:36:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50523, IMEI: 352094087982671) +2018/08/13 16:36:18 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:36:18 ruptelaNet.go:217: Data received(client: [::1]:50523, IMEI: 352094087982671) +2018/08/13 16:36:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:36:18 ruptelaNet.go:231: Sent ACK (client: [::1]:50523, IMEI: 352094087982671) +2018/08/13 16:36:20 ruptelaNet.go:239: Close connection(client: [::1]:50523) +2018/08/13 16:36:38 ruptelaNet.go:170: New connection(client: [::1]:50587) +2018/08/13 16:36:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:36:38 ruptelaNet.go:217: Data received(client: [::1]:50587, IMEI: 352094087230394) +2018/08/13 16:36:38 ruptelaNet.go:231: Sent ACK (client: [::1]:50587, IMEI: 352094087230394) +2018/08/13 16:36:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:36:40 ruptelaNet.go:217: Data received(client: [::1]:50587, IMEI: 352094087230394) +2018/08/13 16:36:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:36:40 ruptelaNet.go:231: Sent ACK (client: [::1]:50587, IMEI: 352094087230394) +2018/08/13 16:36:42 ruptelaNet.go:239: Close connection(client: [::1]:50587) +2018/08/13 16:36:44 ruptelaNet.go:170: New connection(client: [::1]:50603) +2018/08/13 16:36:45 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:36:45 ruptelaNet.go:217: Data received(client: [::1]:50603, IMEI: 352094087982671) +2018/08/13 16:36:45 ruptelaNet.go:231: Sent ACK (client: [::1]:50603, IMEI: 352094087982671) +2018/08/13 16:36:49 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:36:49 ruptelaNet.go:217: Data received(client: [::1]:50603, IMEI: 352094087982671) +2018/08/13 16:36:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:36:49 ruptelaNet.go:231: Sent ACK (client: [::1]:50603, IMEI: 352094087982671) +2018/08/13 16:36:51 ruptelaNet.go:239: Close connection(client: [::1]:50603) +2018/08/13 16:37:14 ruptelaNet.go:170: New connection(client: [::1]:50680) +2018/08/13 16:37:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:37:15 ruptelaNet.go:217: Data received(client: [::1]:50680, IMEI: 352094087982671) +2018/08/13 16:37:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50680, IMEI: 352094087982671) +2018/08/13 16:37:19 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:37:19 ruptelaNet.go:217: Data received(client: [::1]:50680, IMEI: 352094087982671) +2018/08/13 16:37:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:37:19 ruptelaNet.go:231: Sent ACK (client: [::1]:50680, IMEI: 352094087982671) +2018/08/13 16:37:21 ruptelaNet.go:239: Close connection(client: [::1]:50680) +2018/08/13 16:37:38 ruptelaNet.go:170: New connection(client: [::1]:50741) +2018/08/13 16:37:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:37:38 ruptelaNet.go:217: Data received(client: [::1]:50741, IMEI: 352094087230394) +2018/08/13 16:37:38 ruptelaNet.go:231: Sent ACK (client: [::1]:50741, IMEI: 352094087230394) +2018/08/13 16:37:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:37:40 ruptelaNet.go:217: Data received(client: [::1]:50741, IMEI: 352094087230394) +2018/08/13 16:37:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:37:40 ruptelaNet.go:231: Sent ACK (client: [::1]:50741, IMEI: 352094087230394) +2018/08/13 16:37:41 ruptelaNet.go:239: Close connection(client: [::1]:50741) +2018/08/13 16:37:44 ruptelaNet.go:170: New connection(client: [::1]:50759) +2018/08/13 16:37:45 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:37:45 ruptelaNet.go:217: Data received(client: [::1]:50759, IMEI: 352094087982671) +2018/08/13 16:37:45 ruptelaNet.go:231: Sent ACK (client: [::1]:50759, IMEI: 352094087982671) +2018/08/13 16:37:49 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:37:49 ruptelaNet.go:217: Data received(client: [::1]:50759, IMEI: 352094087982671) +2018/08/13 16:37:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:37:49 ruptelaNet.go:231: Sent ACK (client: [::1]:50759, IMEI: 352094087982671) +2018/08/13 16:37:51 ruptelaNet.go:239: Close connection(client: [::1]:50759) +2018/08/13 16:38:14 ruptelaNet.go:170: New connection(client: [::1]:50837) +2018/08/13 16:38:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:38:15 ruptelaNet.go:217: Data received(client: [::1]:50837, IMEI: 352094087982671) +2018/08/13 16:38:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50837, IMEI: 352094087982671) +2018/08/13 16:38:18 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:38:18 ruptelaNet.go:217: Data received(client: [::1]:50837, IMEI: 352094087982671) +2018/08/13 16:38:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:38:18 ruptelaNet.go:231: Sent ACK (client: [::1]:50837, IMEI: 352094087982671) +2018/08/13 16:38:21 ruptelaNet.go:239: Close connection(client: [::1]:50837) +2018/08/13 16:38:38 ruptelaNet.go:170: New connection(client: [::1]:50899) +2018/08/13 16:38:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:38:38 ruptelaNet.go:217: Data received(client: [::1]:50899, IMEI: 352094087230394) +2018/08/13 16:38:38 ruptelaNet.go:231: Sent ACK (client: [::1]:50899, IMEI: 352094087230394) +2018/08/13 16:38:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:38:40 ruptelaNet.go:217: Data received(client: [::1]:50899, IMEI: 352094087230394) +2018/08/13 16:38:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:38:40 ruptelaNet.go:231: Sent ACK (client: [::1]:50899, IMEI: 352094087230394) +2018/08/13 16:38:42 ruptelaNet.go:239: Close connection(client: [::1]:50899) +2018/08/13 16:38:44 ruptelaNet.go:170: New connection(client: [::1]:50915) +2018/08/13 16:38:45 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:38:45 ruptelaNet.go:217: Data received(client: [::1]:50915, IMEI: 352094087982671) +2018/08/13 16:38:45 ruptelaNet.go:231: Sent ACK (client: [::1]:50915, IMEI: 352094087982671) +2018/08/13 16:38:48 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:38:48 ruptelaNet.go:217: Data received(client: [::1]:50915, IMEI: 352094087982671) +2018/08/13 16:38:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:38:48 ruptelaNet.go:231: Sent ACK (client: [::1]:50915, IMEI: 352094087982671) +2018/08/13 16:38:50 ruptelaNet.go:239: Close connection(client: [::1]:50915) +2018/08/13 16:39:14 ruptelaNet.go:170: New connection(client: [::1]:50992) +2018/08/13 16:39:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:39:15 ruptelaNet.go:217: Data received(client: [::1]:50992, IMEI: 352094087982671) +2018/08/13 16:39:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50992, IMEI: 352094087982671) +2018/08/13 16:39:19 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:39:19 ruptelaNet.go:217: Data received(client: [::1]:50992, IMEI: 352094087982671) +2018/08/13 16:39:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:39:19 ruptelaNet.go:231: Sent ACK (client: [::1]:50992, IMEI: 352094087982671) +2018/08/13 16:39:21 ruptelaNet.go:239: Close connection(client: [::1]:50992) +2018/08/13 16:39:38 ruptelaNet.go:170: New connection(client: [::1]:51055) +2018/08/13 16:39:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:39:38 ruptelaNet.go:217: Data received(client: [::1]:51055, IMEI: 352094087230394) +2018/08/13 16:39:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51055, IMEI: 352094087230394) +2018/08/13 16:39:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:39:40 ruptelaNet.go:217: Data received(client: [::1]:51055, IMEI: 352094087230394) +2018/08/13 16:39:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:39:40 ruptelaNet.go:231: Sent ACK (client: [::1]:51055, IMEI: 352094087230394) +2018/08/13 16:39:42 ruptelaNet.go:239: Close connection(client: [::1]:51055) +2018/08/13 16:39:44 ruptelaNet.go:170: New connection(client: [::1]:51071) +2018/08/13 16:39:45 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:39:45 ruptelaNet.go:217: Data received(client: [::1]:51071, IMEI: 352094087982671) +2018/08/13 16:39:45 ruptelaNet.go:231: Sent ACK (client: [::1]:51071, IMEI: 352094087982671) +2018/08/13 16:39:48 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:39:49 ruptelaNet.go:217: Data received(client: [::1]:51071, IMEI: 352094087982671) +2018/08/13 16:39:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:39:49 ruptelaNet.go:231: Sent ACK (client: [::1]:51071, IMEI: 352094087982671) +2018/08/13 16:39:51 ruptelaNet.go:239: Close connection(client: [::1]:51071) +2018/08/13 16:40:14 ruptelaNet.go:170: New connection(client: [::1]:51148) +2018/08/13 16:40:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:40:15 ruptelaNet.go:217: Data received(client: [::1]:51148, IMEI: 352094087982671) +2018/08/13 16:40:15 ruptelaNet.go:231: Sent ACK (client: [::1]:51148, IMEI: 352094087982671) +2018/08/13 16:40:19 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:40:19 ruptelaNet.go:217: Data received(client: [::1]:51148, IMEI: 352094087982671) +2018/08/13 16:40:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:40:19 ruptelaNet.go:231: Sent ACK (client: [::1]:51148, IMEI: 352094087982671) +2018/08/13 16:40:21 ruptelaNet.go:239: Close connection(client: [::1]:51148) +2018/08/13 16:40:38 ruptelaNet.go:170: New connection(client: [::1]:51208) +2018/08/13 16:40:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:40:38 ruptelaNet.go:217: Data received(client: [::1]:51208, IMEI: 352094087230394) +2018/08/13 16:40:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51208, IMEI: 352094087230394) +2018/08/13 16:40:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:40:40 ruptelaNet.go:217: Data received(client: [::1]:51208, IMEI: 352094087230394) +2018/08/13 16:40:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:40:40 ruptelaNet.go:231: Sent ACK (client: [::1]:51208, IMEI: 352094087230394) +2018/08/13 16:40:42 ruptelaNet.go:239: Close connection(client: [::1]:51208) +2018/08/13 16:40:46 ruptelaNet.go:170: New connection(client: [::1]:51230) +2018/08/13 16:40:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:40:47 ruptelaNet.go:217: Data received(client: [::1]:51230, IMEI: 352094087982671) +2018/08/13 16:40:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51230, IMEI: 352094087982671) +2018/08/13 16:40:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:40:50 ruptelaNet.go:217: Data received(client: [::1]:51230, IMEI: 352094087982671) +2018/08/13 16:40:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:40:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51230, IMEI: 352094087982671) +2018/08/13 16:40:53 ruptelaNet.go:239: Close connection(client: [::1]:51230) +2018/08/13 16:41:16 ruptelaNet.go:170: New connection(client: [::1]:51306) +2018/08/13 16:41:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:41:17 ruptelaNet.go:217: Data received(client: [::1]:51306, IMEI: 352094087982671) +2018/08/13 16:41:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51306, IMEI: 352094087982671) +2018/08/13 16:41:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:41:20 ruptelaNet.go:217: Data received(client: [::1]:51306, IMEI: 352094087982671) +2018/08/13 16:41:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:41:20 ruptelaNet.go:231: Sent ACK (client: [::1]:51306, IMEI: 352094087982671) +2018/08/13 16:41:23 ruptelaNet.go:239: Close connection(client: [::1]:51306) +2018/08/13 16:41:38 ruptelaNet.go:170: New connection(client: [::1]:51357) +2018/08/13 16:41:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:41:38 ruptelaNet.go:217: Data received(client: [::1]:51357, IMEI: 352094087230394) +2018/08/13 16:41:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51357, IMEI: 352094087230394) +2018/08/13 16:41:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:41:41 ruptelaNet.go:217: Data received(client: [::1]:51357, IMEI: 352094087230394) +2018/08/13 16:41:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:41:41 ruptelaNet.go:231: Sent ACK (client: [::1]:51357, IMEI: 352094087230394) +2018/08/13 16:41:42 ruptelaNet.go:239: Close connection(client: [::1]:51357) +2018/08/13 16:41:46 ruptelaNet.go:170: New connection(client: [::1]:51378) +2018/08/13 16:41:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:41:47 ruptelaNet.go:217: Data received(client: [::1]:51378, IMEI: 352094087982671) +2018/08/13 16:41:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51378, IMEI: 352094087982671) +2018/08/13 16:41:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:41:50 ruptelaNet.go:217: Data received(client: [::1]:51378, IMEI: 352094087982671) +2018/08/13 16:41:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:41:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51378, IMEI: 352094087982671) +2018/08/13 16:41:53 ruptelaNet.go:239: Close connection(client: [::1]:51378) +2018/08/13 16:42:16 ruptelaNet.go:170: New connection(client: [::1]:51450) +2018/08/13 16:42:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:42:17 ruptelaNet.go:217: Data received(client: [::1]:51450, IMEI: 352094087982671) +2018/08/13 16:42:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51450, IMEI: 352094087982671) +2018/08/13 16:42:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:42:21 ruptelaNet.go:217: Data received(client: [::1]:51450, IMEI: 352094087982671) +2018/08/13 16:42:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:42:21 ruptelaNet.go:231: Sent ACK (client: [::1]:51450, IMEI: 352094087982671) +2018/08/13 16:42:23 ruptelaNet.go:239: Close connection(client: [::1]:51450) +2018/08/13 16:42:38 ruptelaNet.go:170: New connection(client: [::1]:51506) +2018/08/13 16:42:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:42:38 ruptelaNet.go:217: Data received(client: [::1]:51506, IMEI: 352094087230394) +2018/08/13 16:42:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51506, IMEI: 352094087230394) +2018/08/13 16:42:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:42:41 ruptelaNet.go:217: Data received(client: [::1]:51506, IMEI: 352094087230394) +2018/08/13 16:42:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:42:41 ruptelaNet.go:231: Sent ACK (client: [::1]:51506, IMEI: 352094087230394) +2018/08/13 16:42:42 ruptelaNet.go:239: Close connection(client: [::1]:51506) +2018/08/13 16:42:46 ruptelaNet.go:170: New connection(client: [::1]:51529) +2018/08/13 16:42:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:42:47 ruptelaNet.go:217: Data received(client: [::1]:51529, IMEI: 352094087982671) +2018/08/13 16:42:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51529, IMEI: 352094087982671) +2018/08/13 16:42:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:42:50 ruptelaNet.go:217: Data received(client: [::1]:51529, IMEI: 352094087982671) +2018/08/13 16:42:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:42:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51529, IMEI: 352094087982671) +2018/08/13 16:42:53 ruptelaNet.go:239: Close connection(client: [::1]:51529) +2018/08/13 16:43:16 ruptelaNet.go:170: New connection(client: [::1]:51608) +2018/08/13 16:43:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:43:17 ruptelaNet.go:217: Data received(client: [::1]:51608, IMEI: 352094087982671) +2018/08/13 16:43:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51608, IMEI: 352094087982671) +2018/08/13 16:43:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:43:21 ruptelaNet.go:217: Data received(client: [::1]:51608, IMEI: 352094087982671) +2018/08/13 16:43:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:43:21 ruptelaNet.go:231: Sent ACK (client: [::1]:51608, IMEI: 352094087982671) +2018/08/13 16:43:23 ruptelaNet.go:239: Close connection(client: [::1]:51608) +2018/08/13 16:43:38 ruptelaNet.go:170: New connection(client: [::1]:51664) +2018/08/13 16:43:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:43:38 ruptelaNet.go:217: Data received(client: [::1]:51664, IMEI: 352094087230394) +2018/08/13 16:43:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51664, IMEI: 352094087230394) +2018/08/13 16:43:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:43:40 ruptelaNet.go:217: Data received(client: [::1]:51664, IMEI: 352094087230394) +2018/08/13 16:43:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:43:40 ruptelaNet.go:231: Sent ACK (client: [::1]:51664, IMEI: 352094087230394) +2018/08/13 16:43:42 ruptelaNet.go:239: Close connection(client: [::1]:51664) +2018/08/13 16:43:46 ruptelaNet.go:170: New connection(client: [::1]:51685) +2018/08/13 16:43:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:43:47 ruptelaNet.go:217: Data received(client: [::1]:51685, IMEI: 352094087982671) +2018/08/13 16:43:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51685, IMEI: 352094087982671) +2018/08/13 16:43:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:43:50 ruptelaNet.go:217: Data received(client: [::1]:51685, IMEI: 352094087982671) +2018/08/13 16:43:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:43:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51685, IMEI: 352094087982671) +2018/08/13 16:43:53 ruptelaNet.go:239: Close connection(client: [::1]:51685) +2018/08/13 16:44:16 ruptelaNet.go:170: New connection(client: [::1]:51762) +2018/08/13 16:44:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:44:17 ruptelaNet.go:217: Data received(client: [::1]:51762, IMEI: 352094087982671) +2018/08/13 16:44:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51762, IMEI: 352094087982671) +2018/08/13 16:44:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:44:21 ruptelaNet.go:217: Data received(client: [::1]:51762, IMEI: 352094087982671) +2018/08/13 16:44:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:44:21 ruptelaNet.go:231: Sent ACK (client: [::1]:51762, IMEI: 352094087982671) +2018/08/13 16:44:23 ruptelaNet.go:239: Close connection(client: [::1]:51762) +2018/08/13 16:44:38 ruptelaNet.go:170: New connection(client: [::1]:51819) +2018/08/13 16:44:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:44:38 ruptelaNet.go:217: Data received(client: [::1]:51819, IMEI: 352094087230394) +2018/08/13 16:44:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51819, IMEI: 352094087230394) +2018/08/13 16:44:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:44:40 ruptelaNet.go:217: Data received(client: [::1]:51819, IMEI: 352094087230394) +2018/08/13 16:44:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:44:40 ruptelaNet.go:231: Sent ACK (client: [::1]:51819, IMEI: 352094087230394) +2018/08/13 16:44:42 ruptelaNet.go:239: Close connection(client: [::1]:51819) +2018/08/13 16:44:47 ruptelaNet.go:170: New connection(client: [::1]:51843) +2018/08/13 16:44:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:44:47 ruptelaNet.go:217: Data received(client: [::1]:51843, IMEI: 352094087982671) +2018/08/13 16:44:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51843, IMEI: 352094087982671) +2018/08/13 16:44:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:44:50 ruptelaNet.go:217: Data received(client: [::1]:51843, IMEI: 352094087982671) +2018/08/13 16:44:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:44:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51843, IMEI: 352094087982671) +2018/08/13 16:44:53 ruptelaNet.go:239: Close connection(client: [::1]:51843) +2018/08/13 16:45:16 ruptelaNet.go:170: New connection(client: [::1]:51915) +2018/08/13 16:45:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:45:17 ruptelaNet.go:217: Data received(client: [::1]:51915, IMEI: 352094087982671) +2018/08/13 16:45:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51915, IMEI: 352094087982671) +2018/08/13 16:45:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:45:21 ruptelaNet.go:217: Data received(client: [::1]:51915, IMEI: 352094087982671) +2018/08/13 16:45:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:45:21 ruptelaNet.go:231: Sent ACK (client: [::1]:51915, IMEI: 352094087982671) +2018/08/13 16:45:23 ruptelaNet.go:239: Close connection(client: [::1]:51915) +2018/08/13 16:45:39 ruptelaNet.go:170: New connection(client: [::1]:51971) +2018/08/13 16:45:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:45:39 ruptelaNet.go:217: Data received(client: [::1]:51971, IMEI: 352094087230394) +2018/08/13 16:45:39 ruptelaNet.go:231: Sent ACK (client: [::1]:51971, IMEI: 352094087230394) +2018/08/13 16:45:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:45:41 ruptelaNet.go:217: Data received(client: [::1]:51971, IMEI: 352094087230394) +2018/08/13 16:45:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:45:41 ruptelaNet.go:231: Sent ACK (client: [::1]:51971, IMEI: 352094087230394) +2018/08/13 16:45:42 ruptelaNet.go:239: Close connection(client: [::1]:51971) +2018/08/13 16:45:46 ruptelaNet.go:170: New connection(client: [::1]:51990) +2018/08/13 16:45:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:45:47 ruptelaNet.go:217: Data received(client: [::1]:51990, IMEI: 352094087982671) +2018/08/13 16:45:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51990, IMEI: 352094087982671) +2018/08/13 16:45:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:45:51 ruptelaNet.go:217: Data received(client: [::1]:51990, IMEI: 352094087982671) +2018/08/13 16:45:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:45:51 ruptelaNet.go:231: Sent ACK (client: [::1]:51990, IMEI: 352094087982671) +2018/08/13 16:45:55 ruptelaNet.go:239: Close connection(client: [::1]:51990) +2018/08/13 16:46:18 ruptelaNet.go:170: New connection(client: [::1]:52071) +2018/08/13 16:46:19 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:46:19 ruptelaNet.go:217: Data received(client: [::1]:52071, IMEI: 352094087982671) +2018/08/13 16:46:19 ruptelaNet.go:231: Sent ACK (client: [::1]:52071, IMEI: 352094087982671) +2018/08/13 16:46:23 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:46:23 ruptelaNet.go:217: Data received(client: [::1]:52071, IMEI: 352094087982671) +2018/08/13 16:46:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:46:23 ruptelaNet.go:231: Sent ACK (client: [::1]:52071, IMEI: 352094087982671) +2018/08/13 16:46:25 ruptelaNet.go:239: Close connection(client: [::1]:52071) +2018/08/13 16:46:35 ruptelaNet.go:170: New connection(client: [::1]:52109) +2018/08/13 16:46:38 ruptelaNet.go:170: New connection(client: [::1]:52115) +2018/08/13 16:46:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:46:38 ruptelaNet.go:217: Data received(client: [::1]:52115, IMEI: 352094087230394) +2018/08/13 16:46:38 ruptelaNet.go:231: Sent ACK (client: [::1]:52115, IMEI: 352094087230394) +2018/08/13 16:46:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:46:41 ruptelaNet.go:217: Data received(client: [::1]:52115, IMEI: 352094087230394) +2018/08/13 16:46:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:46:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52115, IMEI: 352094087230394) +2018/08/13 16:46:42 ruptelaNet.go:239: Close connection(client: [::1]:52115) +2018/08/13 16:46:48 ruptelaNet.go:170: New connection(client: [::1]:52142) +2018/08/13 16:46:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:46:49 ruptelaNet.go:217: Data received(client: [::1]:52142, IMEI: 352094087982671) +2018/08/13 16:46:49 ruptelaNet.go:231: Sent ACK (client: [::1]:52142, IMEI: 352094087982671) +2018/08/13 16:46:51 ruptelaNet.go:239: Close connection(client: [::1]:52109) +2018/08/13 16:46:51 ruptelaNet.go:170: New connection(client: [::1]:52150) +2018/08/13 16:46:53 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:46:53 ruptelaNet.go:217: Data received(client: [::1]:52142, IMEI: 352094087982671) +2018/08/13 16:46:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:46:53 ruptelaNet.go:231: Sent ACK (client: [::1]:52142, IMEI: 352094087982671) +2018/08/13 16:46:55 ruptelaNet.go:239: Close connection(client: [::1]:52142) +2018/08/13 16:47:07 ruptelaNet.go:239: Close connection(client: [::1]:52150) +2018/08/13 16:47:18 ruptelaNet.go:170: New connection(client: [::1]:52219) +2018/08/13 16:47:19 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:47:19 ruptelaNet.go:217: Data received(client: [::1]:52219, IMEI: 352094087982671) +2018/08/13 16:47:19 ruptelaNet.go:231: Sent ACK (client: [::1]:52219, IMEI: 352094087982671) +2018/08/13 16:47:23 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:47:23 ruptelaNet.go:217: Data received(client: [::1]:52219, IMEI: 352094087982671) +2018/08/13 16:47:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:47:23 ruptelaNet.go:231: Sent ACK (client: [::1]:52219, IMEI: 352094087982671) +2018/08/13 16:47:25 ruptelaNet.go:239: Close connection(client: [::1]:52219) +2018/08/13 16:47:38 ruptelaNet.go:170: New connection(client: [::1]:52264) +2018/08/13 16:47:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:47:38 ruptelaNet.go:217: Data received(client: [::1]:52264, IMEI: 352094087230394) +2018/08/13 16:47:38 ruptelaNet.go:231: Sent ACK (client: [::1]:52264, IMEI: 352094087230394) +2018/08/13 16:47:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:47:41 ruptelaNet.go:217: Data received(client: [::1]:52264, IMEI: 352094087230394) +2018/08/13 16:47:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:47:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52264, IMEI: 352094087230394) +2018/08/13 16:47:42 ruptelaNet.go:239: Close connection(client: [::1]:52264) +2018/08/13 16:47:47 ruptelaNet.go:170: New connection(client: [::1]:52290) +2018/08/13 16:47:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:47:49 ruptelaNet.go:217: Data received(client: [::1]:52290, IMEI: 352094087982671) +2018/08/13 16:47:49 ruptelaNet.go:231: Sent ACK (client: [::1]:52290, IMEI: 352094087982671) +2018/08/13 16:47:52 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:47:52 ruptelaNet.go:217: Data received(client: [::1]:52290, IMEI: 352094087982671) +2018/08/13 16:47:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:47:52 ruptelaNet.go:231: Sent ACK (client: [::1]:52290, IMEI: 352094087982671) +2018/08/13 16:47:54 ruptelaNet.go:239: Close connection(client: [::1]:52290) +2018/08/13 16:48:17 ruptelaNet.go:170: New connection(client: [::1]:52366) +2018/08/13 16:48:18 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:48:18 ruptelaNet.go:217: Data received(client: [::1]:52366, IMEI: 352094087982671) +2018/08/13 16:48:18 ruptelaNet.go:231: Sent ACK (client: [::1]:52366, IMEI: 352094087982671) +2018/08/13 16:48:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:48:21 ruptelaNet.go:217: Data received(client: [::1]:52366, IMEI: 352094087982671) +2018/08/13 16:48:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:48:21 ruptelaNet.go:231: Sent ACK (client: [::1]:52366, IMEI: 352094087982671) +2018/08/13 16:48:24 ruptelaNet.go:239: Close connection(client: [::1]:52366) +2018/08/13 16:48:38 ruptelaNet.go:170: New connection(client: [::1]:52414) +2018/08/13 16:48:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:48:38 ruptelaNet.go:217: Data received(client: [::1]:52414, IMEI: 352094087230394) +2018/08/13 16:48:38 ruptelaNet.go:231: Sent ACK (client: [::1]:52414, IMEI: 352094087230394) +2018/08/13 16:48:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:48:41 ruptelaNet.go:217: Data received(client: [::1]:52414, IMEI: 352094087230394) +2018/08/13 16:48:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:48:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52414, IMEI: 352094087230394) +2018/08/13 16:48:42 ruptelaNet.go:239: Close connection(client: [::1]:52414) +2018/08/13 16:48:47 ruptelaNet.go:170: New connection(client: [::1]:52435) +2018/08/13 16:48:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:48:48 ruptelaNet.go:217: Data received(client: [::1]:52435, IMEI: 352094087982671) +2018/08/13 16:48:48 ruptelaNet.go:231: Sent ACK (client: [::1]:52435, IMEI: 352094087982671) +2018/08/13 16:48:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:48:51 ruptelaNet.go:217: Data received(client: [::1]:52435, IMEI: 352094087982671) +2018/08/13 16:48:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:48:51 ruptelaNet.go:231: Sent ACK (client: [::1]:52435, IMEI: 352094087982671) +2018/08/13 16:48:54 ruptelaNet.go:239: Close connection(client: [::1]:52435) +2018/08/13 16:49:17 ruptelaNet.go:170: New connection(client: [::1]:52505) +2018/08/13 16:49:18 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:49:18 ruptelaNet.go:217: Data received(client: [::1]:52505, IMEI: 352094087982671) +2018/08/13 16:49:18 ruptelaNet.go:231: Sent ACK (client: [::1]:52505, IMEI: 352094087982671) +2018/08/13 16:49:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:49:21 ruptelaNet.go:217: Data received(client: [::1]:52505, IMEI: 352094087982671) +2018/08/13 16:49:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:49:21 ruptelaNet.go:231: Sent ACK (client: [::1]:52505, IMEI: 352094087982671) +2018/08/13 16:49:23 ruptelaNet.go:239: Close connection(client: [::1]:52505) +2018/08/13 16:49:39 ruptelaNet.go:170: New connection(client: [::1]:52566) +2018/08/13 16:49:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:49:39 ruptelaNet.go:217: Data received(client: [::1]:52566, IMEI: 352094087230394) +2018/08/13 16:49:39 ruptelaNet.go:231: Sent ACK (client: [::1]:52566, IMEI: 352094087230394) +2018/08/13 16:49:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:49:41 ruptelaNet.go:217: Data received(client: [::1]:52566, IMEI: 352094087230394) +2018/08/13 16:49:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:49:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52566, IMEI: 352094087230394) +2018/08/13 16:49:42 ruptelaNet.go:239: Close connection(client: [::1]:52566) +2018/08/13 16:49:46 ruptelaNet.go:170: New connection(client: [::1]:52588) +2018/08/13 16:49:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:49:47 ruptelaNet.go:217: Data received(client: [::1]:52588, IMEI: 352094087982671) +2018/08/13 16:49:47 ruptelaNet.go:231: Sent ACK (client: [::1]:52588, IMEI: 352094087982671) +2018/08/13 16:49:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:49:50 ruptelaNet.go:217: Data received(client: [::1]:52588, IMEI: 352094087982671) +2018/08/13 16:49:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:49:50 ruptelaNet.go:231: Sent ACK (client: [::1]:52588, IMEI: 352094087982671) +2018/08/13 16:49:53 ruptelaNet.go:239: Close connection(client: [::1]:52588) +2018/08/13 16:50:16 ruptelaNet.go:170: New connection(client: [::1]:52743) +2018/08/13 16:50:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:50:17 ruptelaNet.go:217: Data received(client: [::1]:52743, IMEI: 352094087982671) +2018/08/13 16:50:17 ruptelaNet.go:231: Sent ACK (client: [::1]:52743, IMEI: 352094087982671) +2018/08/13 16:50:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:50:21 ruptelaNet.go:217: Data received(client: [::1]:52743, IMEI: 352094087982671) +2018/08/13 16:50:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:50:21 ruptelaNet.go:231: Sent ACK (client: [::1]:52743, IMEI: 352094087982671) +2018/08/13 16:50:23 ruptelaNet.go:239: Close connection(client: [::1]:52743) +2018/08/13 16:50:39 ruptelaNet.go:170: New connection(client: [::1]:52867) +2018/08/13 16:50:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:50:39 ruptelaNet.go:217: Data received(client: [::1]:52867, IMEI: 352094087230394) +2018/08/13 16:50:39 ruptelaNet.go:231: Sent ACK (client: [::1]:52867, IMEI: 352094087230394) +2018/08/13 16:50:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:50:41 ruptelaNet.go:217: Data received(client: [::1]:52867, IMEI: 352094087230394) +2018/08/13 16:50:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:50:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52867, IMEI: 352094087230394) +2018/08/13 16:50:42 ruptelaNet.go:239: Close connection(client: [::1]:52867) +2018/08/13 16:50:46 ruptelaNet.go:170: New connection(client: [::1]:52903) +2018/08/13 16:50:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:50:47 ruptelaNet.go:217: Data received(client: [::1]:52903, IMEI: 352094087982671) +2018/08/13 16:50:47 ruptelaNet.go:231: Sent ACK (client: [::1]:52903, IMEI: 352094087982671) +2018/08/13 16:50:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:50:50 ruptelaNet.go:217: Data received(client: [::1]:52903, IMEI: 352094087982671) +2018/08/13 16:50:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:50:50 ruptelaNet.go:231: Sent ACK (client: [::1]:52903, IMEI: 352094087982671) +2018/08/13 16:50:53 ruptelaNet.go:239: Close connection(client: [::1]:52903) +2018/08/13 16:51:16 ruptelaNet.go:170: New connection(client: [::1]:53055) +2018/08/13 16:51:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:51:17 ruptelaNet.go:217: Data received(client: [::1]:53055, IMEI: 352094087982671) +2018/08/13 16:51:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53055, IMEI: 352094087982671) +2018/08/13 16:51:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:51:20 ruptelaNet.go:217: Data received(client: [::1]:53055, IMEI: 352094087982671) +2018/08/13 16:51:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:51:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53055, IMEI: 352094087982671) +2018/08/13 16:51:23 ruptelaNet.go:239: Close connection(client: [::1]:53055) +2018/08/13 16:51:39 ruptelaNet.go:170: New connection(client: [::1]:53149) +2018/08/13 16:51:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:51:39 ruptelaNet.go:217: Data received(client: [::1]:53149, IMEI: 352094087230394) +2018/08/13 16:51:39 ruptelaNet.go:231: Sent ACK (client: [::1]:53149, IMEI: 352094087230394) +2018/08/13 16:51:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:51:41 ruptelaNet.go:217: Data received(client: [::1]:53149, IMEI: 352094087230394) +2018/08/13 16:51:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:51:41 ruptelaNet.go:231: Sent ACK (client: [::1]:53149, IMEI: 352094087230394) +2018/08/13 16:51:42 ruptelaNet.go:239: Close connection(client: [::1]:53149) +2018/08/13 16:51:46 ruptelaNet.go:170: New connection(client: [::1]:53165) +2018/08/13 16:51:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:51:47 ruptelaNet.go:217: Data received(client: [::1]:53165, IMEI: 352094087982671) +2018/08/13 16:51:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53165, IMEI: 352094087982671) +2018/08/13 16:51:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:51:51 ruptelaNet.go:217: Data received(client: [::1]:53165, IMEI: 352094087982671) +2018/08/13 16:51:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:51:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53165, IMEI: 352094087982671) +2018/08/13 16:51:54 ruptelaNet.go:239: Close connection(client: [::1]:53165) +2018/08/13 16:52:16 ruptelaNet.go:170: New connection(client: [::1]:53242) +2018/08/13 16:52:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:52:17 ruptelaNet.go:217: Data received(client: [::1]:53242, IMEI: 352094087982671) +2018/08/13 16:52:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53242, IMEI: 352094087982671) +2018/08/13 16:52:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:52:20 ruptelaNet.go:217: Data received(client: [::1]:53242, IMEI: 352094087982671) +2018/08/13 16:52:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:52:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53242, IMEI: 352094087982671) +2018/08/13 16:52:23 ruptelaNet.go:239: Close connection(client: [::1]:53242) +2018/08/13 16:52:39 ruptelaNet.go:170: New connection(client: [::1]:53292) +2018/08/13 16:52:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:52:39 ruptelaNet.go:217: Data received(client: [::1]:53292, IMEI: 352094087230394) +2018/08/13 16:52:39 ruptelaNet.go:231: Sent ACK (client: [::1]:53292, IMEI: 352094087230394) +2018/08/13 16:52:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:52:41 ruptelaNet.go:217: Data received(client: [::1]:53292, IMEI: 352094087230394) +2018/08/13 16:52:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:52:41 ruptelaNet.go:231: Sent ACK (client: [::1]:53292, IMEI: 352094087230394) +2018/08/13 16:52:42 ruptelaNet.go:239: Close connection(client: [::1]:53292) +2018/08/13 16:52:46 ruptelaNet.go:170: New connection(client: [::1]:53309) +2018/08/13 16:52:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:52:47 ruptelaNet.go:217: Data received(client: [::1]:53309, IMEI: 352094087982671) +2018/08/13 16:52:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53309, IMEI: 352094087982671) +2018/08/13 16:52:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:52:51 ruptelaNet.go:217: Data received(client: [::1]:53309, IMEI: 352094087982671) +2018/08/13 16:52:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:52:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53309, IMEI: 352094087982671) +2018/08/13 16:52:53 ruptelaNet.go:239: Close connection(client: [::1]:53309) +2018/08/13 16:53:16 ruptelaNet.go:170: New connection(client: [::1]:53380) +2018/08/13 16:53:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:53:17 ruptelaNet.go:217: Data received(client: [::1]:53380, IMEI: 352094087982671) +2018/08/13 16:53:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53380, IMEI: 352094087982671) +2018/08/13 16:53:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:53:21 ruptelaNet.go:217: Data received(client: [::1]:53380, IMEI: 352094087982671) +2018/08/13 16:53:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:53:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53380, IMEI: 352094087982671) +2018/08/13 16:53:23 ruptelaNet.go:239: Close connection(client: [::1]:53380) +2018/08/13 16:53:39 ruptelaNet.go:170: New connection(client: [::1]:53432) +2018/08/13 16:53:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:53:39 ruptelaNet.go:217: Data received(client: [::1]:53432, IMEI: 352094087230394) +2018/08/13 16:53:39 ruptelaNet.go:231: Sent ACK (client: [::1]:53432, IMEI: 352094087230394) +2018/08/13 16:53:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:53:41 ruptelaNet.go:217: Data received(client: [::1]:53432, IMEI: 352094087230394) +2018/08/13 16:53:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:53:41 ruptelaNet.go:231: Sent ACK (client: [::1]:53432, IMEI: 352094087230394) +2018/08/13 16:53:42 ruptelaNet.go:239: Close connection(client: [::1]:53432) +2018/08/13 16:53:46 ruptelaNet.go:170: New connection(client: [::1]:53447) +2018/08/13 16:53:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:53:47 ruptelaNet.go:217: Data received(client: [::1]:53447, IMEI: 352094087982671) +2018/08/13 16:53:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53447, IMEI: 352094087982671) +2018/08/13 16:53:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:53:50 ruptelaNet.go:217: Data received(client: [::1]:53447, IMEI: 352094087982671) +2018/08/13 16:53:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:53:50 ruptelaNet.go:231: Sent ACK (client: [::1]:53447, IMEI: 352094087982671) +2018/08/13 16:53:53 ruptelaNet.go:239: Close connection(client: [::1]:53447) +2018/08/13 16:54:16 ruptelaNet.go:170: New connection(client: [::1]:53518) +2018/08/13 16:54:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:54:17 ruptelaNet.go:217: Data received(client: [::1]:53518, IMEI: 352094087982671) +2018/08/13 16:54:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53518, IMEI: 352094087982671) +2018/08/13 16:54:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:54:21 ruptelaNet.go:217: Data received(client: [::1]:53518, IMEI: 352094087982671) +2018/08/13 16:54:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:54:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53518, IMEI: 352094087982671) +2018/08/13 16:54:23 ruptelaNet.go:239: Close connection(client: [::1]:53518) +2018/08/13 16:54:39 ruptelaNet.go:170: New connection(client: [::1]:53575) +2018/08/13 16:54:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:54:39 ruptelaNet.go:217: Data received(client: [::1]:53575, IMEI: 352094087230394) +2018/08/13 16:54:39 ruptelaNet.go:231: Sent ACK (client: [::1]:53575, IMEI: 352094087230394) +2018/08/13 16:54:42 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:54:42 ruptelaNet.go:217: Data received(client: [::1]:53575, IMEI: 352094087230394) +2018/08/13 16:54:42 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:54:42 ruptelaNet.go:231: Sent ACK (client: [::1]:53575, IMEI: 352094087230394) +2018/08/13 16:54:43 ruptelaNet.go:239: Close connection(client: [::1]:53575) +2018/08/13 16:54:46 ruptelaNet.go:170: New connection(client: [::1]:53593) +2018/08/13 16:54:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:54:47 ruptelaNet.go:217: Data received(client: [::1]:53593, IMEI: 352094087982671) +2018/08/13 16:54:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53593, IMEI: 352094087982671) +2018/08/13 16:54:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:54:50 ruptelaNet.go:217: Data received(client: [::1]:53593, IMEI: 352094087982671) +2018/08/13 16:54:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:54:50 ruptelaNet.go:231: Sent ACK (client: [::1]:53593, IMEI: 352094087982671) +2018/08/13 16:54:53 ruptelaNet.go:239: Close connection(client: [::1]:53593) +2018/08/13 16:55:16 ruptelaNet.go:170: New connection(client: [::1]:53670) +2018/08/13 16:55:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:55:17 ruptelaNet.go:217: Data received(client: [::1]:53670, IMEI: 352094087982671) +2018/08/13 16:55:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53670, IMEI: 352094087982671) +2018/08/13 16:55:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:55:21 ruptelaNet.go:217: Data received(client: [::1]:53670, IMEI: 352094087982671) +2018/08/13 16:55:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:55:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53670, IMEI: 352094087982671) +2018/08/13 16:55:23 ruptelaNet.go:239: Close connection(client: [::1]:53670) +2018/08/13 16:55:39 ruptelaNet.go:170: New connection(client: [::1]:53728) +2018/08/13 16:55:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:55:40 ruptelaNet.go:217: Data received(client: [::1]:53728, IMEI: 352094087230394) +2018/08/13 16:55:40 ruptelaNet.go:231: Sent ACK (client: [::1]:53728, IMEI: 352094087230394) +2018/08/13 16:55:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:55:43 ruptelaNet.go:217: Data received(client: [::1]:53728, IMEI: 352094087230394) +2018/08/13 16:55:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:55:43 ruptelaNet.go:231: Sent ACK (client: [::1]:53728, IMEI: 352094087230394) +2018/08/13 16:55:44 ruptelaNet.go:239: Close connection(client: [::1]:53728) +2018/08/13 16:55:46 ruptelaNet.go:170: New connection(client: [::1]:53747) +2018/08/13 16:55:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:55:47 ruptelaNet.go:217: Data received(client: [::1]:53747, IMEI: 352094087982671) +2018/08/13 16:55:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53747, IMEI: 352094087982671) +2018/08/13 16:55:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:55:50 ruptelaNet.go:217: Data received(client: [::1]:53747, IMEI: 352094087982671) +2018/08/13 16:55:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:55:50 ruptelaNet.go:231: Sent ACK (client: [::1]:53747, IMEI: 352094087982671) +2018/08/13 16:55:53 ruptelaNet.go:239: Close connection(client: [::1]:53747) +2018/08/13 16:56:16 ruptelaNet.go:170: New connection(client: [::1]:53821) +2018/08/13 16:56:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:56:17 ruptelaNet.go:217: Data received(client: [::1]:53821, IMEI: 352094087982671) +2018/08/13 16:56:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53821, IMEI: 352094087982671) +2018/08/13 16:56:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:56:20 ruptelaNet.go:217: Data received(client: [::1]:53821, IMEI: 352094087982671) +2018/08/13 16:56:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:56:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53821, IMEI: 352094087982671) +2018/08/13 16:56:23 ruptelaNet.go:239: Close connection(client: [::1]:53821) +2018/08/13 16:56:40 ruptelaNet.go:170: New connection(client: [::1]:53882) +2018/08/13 16:56:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:56:40 ruptelaNet.go:217: Data received(client: [::1]:53882, IMEI: 352094087230394) +2018/08/13 16:56:40 ruptelaNet.go:231: Sent ACK (client: [::1]:53882, IMEI: 352094087230394) +2018/08/13 16:56:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:56:43 ruptelaNet.go:217: Data received(client: [::1]:53882, IMEI: 352094087230394) +2018/08/13 16:56:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:56:43 ruptelaNet.go:231: Sent ACK (client: [::1]:53882, IMEI: 352094087230394) +2018/08/13 16:56:43 ruptelaNet.go:239: Close connection(client: [::1]:53882) +2018/08/13 16:56:46 ruptelaNet.go:170: New connection(client: [::1]:53898) +2018/08/13 16:56:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:56:47 ruptelaNet.go:217: Data received(client: [::1]:53898, IMEI: 352094087982671) +2018/08/13 16:56:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53898, IMEI: 352094087982671) +2018/08/13 16:56:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:56:51 ruptelaNet.go:217: Data received(client: [::1]:53898, IMEI: 352094087982671) +2018/08/13 16:56:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:56:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53898, IMEI: 352094087982671) +2018/08/13 16:56:53 ruptelaNet.go:239: Close connection(client: [::1]:53898) +2018/08/13 16:57:16 ruptelaNet.go:170: New connection(client: [::1]:53975) +2018/08/13 16:57:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:57:17 ruptelaNet.go:217: Data received(client: [::1]:53975, IMEI: 352094087982671) +2018/08/13 16:57:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53975, IMEI: 352094087982671) +2018/08/13 16:57:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:57:21 ruptelaNet.go:217: Data received(client: [::1]:53975, IMEI: 352094087982671) +2018/08/13 16:57:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:57:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53975, IMEI: 352094087982671) +2018/08/13 16:57:25 ruptelaNet.go:239: Close connection(client: [::1]:53975) +2018/08/13 16:57:40 ruptelaNet.go:170: New connection(client: [::1]:54036) +2018/08/13 16:57:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:57:40 ruptelaNet.go:217: Data received(client: [::1]:54036, IMEI: 352094087230394) +2018/08/13 16:57:40 ruptelaNet.go:231: Sent ACK (client: [::1]:54036, IMEI: 352094087230394) +2018/08/13 16:57:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:57:43 ruptelaNet.go:217: Data received(client: [::1]:54036, IMEI: 352094087230394) +2018/08/13 16:57:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:57:43 ruptelaNet.go:231: Sent ACK (client: [::1]:54036, IMEI: 352094087230394) +2018/08/13 16:57:43 ruptelaNet.go:239: Close connection(client: [::1]:54036) +2018/08/13 16:57:48 ruptelaNet.go:170: New connection(client: [::1]:54058) +2018/08/13 16:57:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:57:49 ruptelaNet.go:217: Data received(client: [::1]:54058, IMEI: 352094087982671) +2018/08/13 16:57:49 ruptelaNet.go:231: Sent ACK (client: [::1]:54058, IMEI: 352094087982671) +2018/08/13 16:57:53 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:57:53 ruptelaNet.go:217: Data received(client: [::1]:54058, IMEI: 352094087982671) +2018/08/13 16:57:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:57:53 ruptelaNet.go:231: Sent ACK (client: [::1]:54058, IMEI: 352094087982671) +2018/08/13 16:57:55 ruptelaNet.go:239: Close connection(client: [::1]:54058) +2018/08/13 16:58:18 ruptelaNet.go:170: New connection(client: [::1]:54138) +2018/08/13 16:58:19 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:58:19 ruptelaNet.go:217: Data received(client: [::1]:54138, IMEI: 352094087982671) +2018/08/13 16:58:19 ruptelaNet.go:231: Sent ACK (client: [::1]:54138, IMEI: 352094087982671) +2018/08/13 16:58:23 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:58:23 ruptelaNet.go:217: Data received(client: [::1]:54138, IMEI: 352094087982671) +2018/08/13 16:58:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:58:23 ruptelaNet.go:231: Sent ACK (client: [::1]:54138, IMEI: 352094087982671) +2018/08/13 16:58:25 ruptelaNet.go:239: Close connection(client: [::1]:54138) +2018/08/13 16:58:40 ruptelaNet.go:170: New connection(client: [::1]:54194) +2018/08/13 16:58:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:58:40 ruptelaNet.go:217: Data received(client: [::1]:54194, IMEI: 352094087230394) +2018/08/13 16:58:40 ruptelaNet.go:231: Sent ACK (client: [::1]:54194, IMEI: 352094087230394) +2018/08/13 16:58:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:58:43 ruptelaNet.go:217: Data received(client: [::1]:54194, IMEI: 352094087230394) +2018/08/13 16:58:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:58:43 ruptelaNet.go:231: Sent ACK (client: [::1]:54194, IMEI: 352094087230394) +2018/08/13 16:58:44 ruptelaNet.go:239: Close connection(client: [::1]:54194) +2018/08/13 16:58:48 ruptelaNet.go:170: New connection(client: [::1]:54215) +2018/08/13 16:58:50 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:58:50 ruptelaNet.go:217: Data received(client: [::1]:54215, IMEI: 352094087982671) +2018/08/13 16:58:50 ruptelaNet.go:231: Sent ACK (client: [::1]:54215, IMEI: 352094087982671) +2018/08/13 16:58:54 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:58:54 ruptelaNet.go:217: Data received(client: [::1]:54215, IMEI: 352094087982671) +2018/08/13 16:58:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:58:54 ruptelaNet.go:231: Sent ACK (client: [::1]:54215, IMEI: 352094087982671) +2018/08/13 16:58:56 ruptelaNet.go:239: Close connection(client: [::1]:54215) +2018/08/13 16:59:19 ruptelaNet.go:170: New connection(client: [::1]:54297) +2018/08/13 16:59:21 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:59:21 ruptelaNet.go:217: Data received(client: [::1]:54297, IMEI: 352094087982671) +2018/08/13 16:59:21 ruptelaNet.go:231: Sent ACK (client: [::1]:54297, IMEI: 352094087982671) +2018/08/13 16:59:24 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:59:24 ruptelaNet.go:217: Data received(client: [::1]:54297, IMEI: 352094087982671) +2018/08/13 16:59:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:59:24 ruptelaNet.go:231: Sent ACK (client: [::1]:54297, IMEI: 352094087982671) +2018/08/13 16:59:27 ruptelaNet.go:239: Close connection(client: [::1]:54297) +2018/08/13 16:59:40 ruptelaNet.go:170: New connection(client: [::1]:54350) +2018/08/13 16:59:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:59:40 ruptelaNet.go:217: Data received(client: [::1]:54350, IMEI: 352094087230394) +2018/08/13 16:59:40 ruptelaNet.go:231: Sent ACK (client: [::1]:54350, IMEI: 352094087230394) +2018/08/13 16:59:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:59:43 ruptelaNet.go:217: Data received(client: [::1]:54350, IMEI: 352094087230394) +2018/08/13 16:59:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:59:43 ruptelaNet.go:231: Sent ACK (client: [::1]:54350, IMEI: 352094087230394) +2018/08/13 16:59:44 ruptelaNet.go:239: Close connection(client: [::1]:54350) +2018/08/13 16:59:51 ruptelaNet.go:170: New connection(client: [::1]:54381) +2018/08/13 16:59:51 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:59:51 ruptelaNet.go:217: Data received(client: [::1]:54381, IMEI: 352094087982671) +2018/08/13 16:59:51 ruptelaNet.go:231: Sent ACK (client: [::1]:54381, IMEI: 352094087982671) +2018/08/13 16:59:55 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:59:55 ruptelaNet.go:217: Data received(client: [::1]:54381, IMEI: 352094087982671) +2018/08/13 16:59:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:59:55 ruptelaNet.go:231: Sent ACK (client: [::1]:54381, IMEI: 352094087982671) +2018/08/13 16:59:57 ruptelaNet.go:239: Close connection(client: [::1]:54381) +2018/08/13 17:00:20 ruptelaNet.go:170: New connection(client: [::1]:54453) +2018/08/13 17:00:21 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:00:21 ruptelaNet.go:217: Data received(client: [::1]:54453, IMEI: 352094087982671) +2018/08/13 17:00:21 ruptelaNet.go:231: Sent ACK (client: [::1]:54453, IMEI: 352094087982671) +2018/08/13 17:00:25 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:00:25 ruptelaNet.go:217: Data received(client: [::1]:54453, IMEI: 352094087982671) +2018/08/13 17:00:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:00:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54453, IMEI: 352094087982671) +2018/08/13 17:00:27 ruptelaNet.go:239: Close connection(client: [::1]:54453) +2018/08/13 17:00:41 ruptelaNet.go:170: New connection(client: [::1]:54504) +2018/08/13 17:00:41 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:00:41 ruptelaNet.go:217: Data received(client: [::1]:54504, IMEI: 352094087230394) +2018/08/13 17:00:41 ruptelaNet.go:231: Sent ACK (client: [::1]:54504, IMEI: 352094087230394) +2018/08/13 17:00:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:00:43 ruptelaNet.go:217: Data received(client: [::1]:54504, IMEI: 352094087230394) +2018/08/13 17:00:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:00:43 ruptelaNet.go:231: Sent ACK (client: [::1]:54504, IMEI: 352094087230394) +2018/08/13 17:00:44 ruptelaNet.go:239: Close connection(client: [::1]:54504) +2018/08/13 17:00:50 ruptelaNet.go:170: New connection(client: [::1]:54529) +2018/08/13 17:00:51 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:00:51 ruptelaNet.go:217: Data received(client: [::1]:54529, IMEI: 352094087982671) +2018/08/13 17:00:51 ruptelaNet.go:231: Sent ACK (client: [::1]:54529, IMEI: 352094087982671) +2018/08/13 17:00:55 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:00:55 ruptelaNet.go:217: Data received(client: [::1]:54529, IMEI: 352094087982671) +2018/08/13 17:00:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:00:55 ruptelaNet.go:231: Sent ACK (client: [::1]:54529, IMEI: 352094087982671) +2018/08/13 17:00:57 ruptelaNet.go:239: Close connection(client: [::1]:54529) +2018/08/13 17:55:22 ruptelaNet.go:170: New connection(client: [::1]:54654) +2018/08/13 17:55:23 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:55:23 ruptelaNet.go:217: Data received(client: [::1]:54654, IMEI: 352094087982671) +2018/08/13 17:55:23 ruptelaNet.go:231: Sent ACK (client: [::1]:54654, IMEI: 352094087982671) +2018/08/13 17:55:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:55:28 ruptelaNet.go:217: Data received(client: [::1]:54654, IMEI: 352094087982671) +2018/08/13 17:55:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:55:28 ruptelaNet.go:231: Sent ACK (client: [::1]:54654, IMEI: 352094087982671) +2018/08/13 17:55:31 ruptelaNet.go:239: Close connection(client: [::1]:54654) +2018/08/13 17:55:45 ruptelaNet.go:170: New connection(client: [::1]:54704) +2018/08/13 17:55:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:55:46 ruptelaNet.go:217: Data received(client: [::1]:54704, IMEI: 352094087230394) +2018/08/13 17:55:46 ruptelaNet.go:231: Sent ACK (client: [::1]:54704, IMEI: 352094087230394) +2018/08/13 17:55:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:55:48 ruptelaNet.go:217: Data received(client: [::1]:54704, IMEI: 352094087230394) +2018/08/13 17:55:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:55:48 ruptelaNet.go:231: Sent ACK (client: [::1]:54704, IMEI: 352094087230394) +2018/08/13 17:55:49 ruptelaNet.go:239: Close connection(client: [::1]:54704) +2018/08/13 17:55:53 ruptelaNet.go:170: New connection(client: [::1]:54729) +2018/08/13 17:55:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:55:54 ruptelaNet.go:217: Data received(client: [::1]:54729, IMEI: 352094087982671) +2018/08/13 17:55:54 ruptelaNet.go:231: Sent ACK (client: [::1]:54729, IMEI: 352094087982671) +2018/08/13 17:55:58 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:55:58 ruptelaNet.go:217: Data received(client: [::1]:54729, IMEI: 352094087982671) +2018/08/13 17:55:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:55:58 ruptelaNet.go:231: Sent ACK (client: [::1]:54729, IMEI: 352094087982671) +2018/08/13 17:56:01 ruptelaNet.go:239: Close connection(client: [::1]:54729) +2018/08/13 17:56:24 ruptelaNet.go:170: New connection(client: [::1]:54798) +2018/08/13 17:56:26 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:56:26 ruptelaNet.go:217: Data received(client: [::1]:54798, IMEI: 352094087982671) +2018/08/13 17:56:26 ruptelaNet.go:231: Sent ACK (client: [::1]:54798, IMEI: 352094087982671) +2018/08/13 17:56:32 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:56:32 ruptelaNet.go:217: Data received(client: [::1]:54798, IMEI: 352094087982671) +2018/08/13 17:56:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:56:32 ruptelaNet.go:231: Sent ACK (client: [::1]:54798, IMEI: 352094087982671) +2018/08/13 17:56:38 ruptelaNet.go:239: Close connection(client: [::1]:54798) +2018/08/13 17:56:46 ruptelaNet.go:170: New connection(client: [::1]:54850) +2018/08/13 17:56:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:56:46 ruptelaNet.go:217: Data received(client: [::1]:54850, IMEI: 352094087230394) +2018/08/13 17:56:46 ruptelaNet.go:231: Sent ACK (client: [::1]:54850, IMEI: 352094087230394) +2018/08/13 17:56:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:56:48 ruptelaNet.go:217: Data received(client: [::1]:54850, IMEI: 352094087230394) +2018/08/13 17:56:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:56:48 ruptelaNet.go:231: Sent ACK (client: [::1]:54850, IMEI: 352094087230394) +2018/08/13 17:56:49 ruptelaNet.go:239: Close connection(client: [::1]:54850) +2018/08/13 17:57:02 ruptelaNet.go:170: New connection(client: [::1]:54895) +2018/08/13 17:57:02 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:57:02 ruptelaNet.go:217: Data received(client: [::1]:54895, IMEI: 352094087982671) +2018/08/13 17:57:02 ruptelaNet.go:231: Sent ACK (client: [::1]:54895, IMEI: 352094087982671) +2018/08/13 17:57:05 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:57:05 ruptelaNet.go:217: Data received(client: [::1]:54895, IMEI: 352094087982671) +2018/08/13 17:57:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:57:05 ruptelaNet.go:231: Sent ACK (client: [::1]:54895, IMEI: 352094087982671) +2018/08/13 17:57:08 ruptelaNet.go:239: Close connection(client: [::1]:54895) +2018/08/13 17:57:35 ruptelaNet.go:170: New connection(client: [::1]:54975) +2018/08/13 17:57:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:57:36 ruptelaNet.go:217: Data received(client: [::1]:54975, IMEI: 352094087982671) +2018/08/13 17:57:36 ruptelaNet.go:231: Sent ACK (client: [::1]:54975, IMEI: 352094087982671) +2018/08/13 17:57:39 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:57:39 ruptelaNet.go:217: Data received(client: [::1]:54975, IMEI: 352094087982671) +2018/08/13 17:57:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:57:39 ruptelaNet.go:231: Sent ACK (client: [::1]:54975, IMEI: 352094087982671) +2018/08/13 17:57:42 ruptelaNet.go:239: Close connection(client: [::1]:54975) +2018/08/13 17:57:46 ruptelaNet.go:170: New connection(client: [::1]:55007) +2018/08/13 17:57:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:57:46 ruptelaNet.go:217: Data received(client: [::1]:55007, IMEI: 352094087230394) +2018/08/13 17:57:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55007, IMEI: 352094087230394) +2018/08/13 17:57:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:57:48 ruptelaNet.go:217: Data received(client: [::1]:55007, IMEI: 352094087230394) +2018/08/13 17:57:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:57:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55007, IMEI: 352094087230394) +2018/08/13 17:57:49 ruptelaNet.go:239: Close connection(client: [::1]:55007) +2018/08/13 17:58:13 ruptelaNet.go:170: New connection(client: [::1]:55074) +2018/08/13 17:58:14 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:58:14 ruptelaNet.go:217: Data received(client: [::1]:55074, IMEI: 352094087982671) +2018/08/13 17:58:14 ruptelaNet.go:231: Sent ACK (client: [::1]:55074, IMEI: 352094087982671) +2018/08/13 17:58:18 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:58:18 ruptelaNet.go:217: Data received(client: [::1]:55074, IMEI: 352094087982671) +2018/08/13 17:58:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:58:18 ruptelaNet.go:231: Sent ACK (client: [::1]:55074, IMEI: 352094087982671) +2018/08/13 17:58:25 ruptelaNet.go:239: Close connection(client: [::1]:55074) +2018/08/13 17:58:46 ruptelaNet.go:170: New connection(client: [::1]:55155) +2018/08/13 17:58:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:58:46 ruptelaNet.go:217: Data received(client: [::1]:55155, IMEI: 352094087230394) +2018/08/13 17:58:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55155, IMEI: 352094087230394) +2018/08/13 17:58:48 ruptelaNet.go:170: New connection(client: [::1]:55161) +2018/08/13 17:58:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:58:48 ruptelaNet.go:217: Data received(client: [::1]:55155, IMEI: 352094087230394) +2018/08/13 17:58:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:58:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55155, IMEI: 352094087230394) +2018/08/13 17:58:49 ruptelaNet.go:239: Close connection(client: [::1]:55155) +2018/08/13 17:58:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:58:49 ruptelaNet.go:217: Data received(client: [::1]:55161, IMEI: 352094087982671) +2018/08/13 17:58:49 ruptelaNet.go:231: Sent ACK (client: [::1]:55161, IMEI: 352094087982671) +2018/08/13 17:58:52 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:58:52 ruptelaNet.go:217: Data received(client: [::1]:55161, IMEI: 352094087982671) +2018/08/13 17:58:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:58:52 ruptelaNet.go:231: Sent ACK (client: [::1]:55161, IMEI: 352094087982671) +2018/08/13 17:58:56 ruptelaNet.go:239: Close connection(client: [::1]:55161) +2018/08/13 17:59:26 ruptelaNet.go:170: New connection(client: [::1]:55259) +2018/08/13 17:59:27 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:59:27 ruptelaNet.go:217: Data received(client: [::1]:55259, IMEI: 352094087982671) +2018/08/13 17:59:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55259, IMEI: 352094087982671) +2018/08/13 17:59:31 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:59:31 ruptelaNet.go:217: Data received(client: [::1]:55259, IMEI: 352094087982671) +2018/08/13 17:59:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:59:31 ruptelaNet.go:231: Sent ACK (client: [::1]:55259, IMEI: 352094087982671) +2018/08/13 17:59:38 ruptelaNet.go:239: Close connection(client: [::1]:55259) +2018/08/13 17:59:46 ruptelaNet.go:170: New connection(client: [::1]:55313) +2018/08/13 17:59:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:59:46 ruptelaNet.go:217: Data received(client: [::1]:55313, IMEI: 352094087230394) +2018/08/13 17:59:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55313, IMEI: 352094087230394) +2018/08/13 17:59:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:59:48 ruptelaNet.go:217: Data received(client: [::1]:55313, IMEI: 352094087230394) +2018/08/13 17:59:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:59:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55313, IMEI: 352094087230394) +2018/08/13 17:59:49 ruptelaNet.go:239: Close connection(client: [::1]:55313) +2018/08/13 18:00:01 ruptelaNet.go:170: New connection(client: [::1]:55356) +2018/08/13 18:00:02 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:00:02 ruptelaNet.go:217: Data received(client: [::1]:55356, IMEI: 352094087982671) +2018/08/13 18:00:02 ruptelaNet.go:231: Sent ACK (client: [::1]:55356, IMEI: 352094087982671) +2018/08/13 18:00:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:00:06 ruptelaNet.go:217: Data received(client: [::1]:55356, IMEI: 352094087982671) +2018/08/13 18:00:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:00:06 ruptelaNet.go:231: Sent ACK (client: [::1]:55356, IMEI: 352094087982671) +2018/08/13 18:00:14 ruptelaNet.go:239: Close connection(client: [::1]:55356) +2018/08/13 18:00:41 ruptelaNet.go:170: New connection(client: [::1]:55457) +2018/08/13 18:00:43 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:00:43 ruptelaNet.go:217: Data received(client: [::1]:55457, IMEI: 352094087982671) +2018/08/13 18:00:43 ruptelaNet.go:231: Sent ACK (client: [::1]:55457, IMEI: 352094087982671) +2018/08/13 18:00:46 ruptelaNet.go:170: New connection(client: [::1]:55468) +2018/08/13 18:00:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:00:46 ruptelaNet.go:217: Data received(client: [::1]:55468, IMEI: 352094087230394) +2018/08/13 18:00:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55468, IMEI: 352094087230394) +2018/08/13 18:00:47 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:00:47 ruptelaNet.go:217: Data received(client: [::1]:55457, IMEI: 352094087982671) +2018/08/13 18:00:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:00:47 ruptelaNet.go:231: Sent ACK (client: [::1]:55457, IMEI: 352094087982671) +2018/08/13 18:00:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:00:48 ruptelaNet.go:217: Data received(client: [::1]:55468, IMEI: 352094087230394) +2018/08/13 18:00:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:00:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55468, IMEI: 352094087230394) +2018/08/13 18:00:49 ruptelaNet.go:239: Close connection(client: [::1]:55468) +2018/08/13 18:00:52 ruptelaNet.go:239: Close connection(client: [::1]:55457) +2018/08/13 18:01:15 ruptelaNet.go:170: New connection(client: [::1]:55540) +2018/08/13 18:01:16 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:01:16 ruptelaNet.go:217: Data received(client: [::1]:55540, IMEI: 352094087982671) +2018/08/13 18:01:16 ruptelaNet.go:231: Sent ACK (client: [::1]:55540, IMEI: 352094087982671) +2018/08/13 18:01:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:01:20 ruptelaNet.go:217: Data received(client: [::1]:55540, IMEI: 352094087982671) +2018/08/13 18:01:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:01:20 ruptelaNet.go:231: Sent ACK (client: [::1]:55540, IMEI: 352094087982671) +2018/08/13 18:01:42 ruptelaNet.go:239: Close connection(client: [::1]:55540) +2018/08/13 18:01:47 ruptelaNet.go:170: New connection(client: [::1]:55622) +2018/08/13 18:01:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:01:47 ruptelaNet.go:217: Data received(client: [::1]:55622, IMEI: 352094087230394) +2018/08/13 18:01:47 ruptelaNet.go:231: Sent ACK (client: [::1]:55622, IMEI: 352094087230394) +2018/08/13 18:01:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:01:50 ruptelaNet.go:217: Data received(client: [::1]:55622, IMEI: 352094087230394) +2018/08/13 18:01:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:01:50 ruptelaNet.go:231: Sent ACK (client: [::1]:55622, IMEI: 352094087230394) +2018/08/13 18:01:51 ruptelaNet.go:239: Close connection(client: [::1]:55622) +2018/08/13 18:02:05 ruptelaNet.go:170: New connection(client: [::1]:55672) +2018/08/13 18:02:06 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:02:06 ruptelaNet.go:217: Data received(client: [::1]:55672, IMEI: 352094087982671) +2018/08/13 18:02:06 ruptelaNet.go:231: Sent ACK (client: [::1]:55672, IMEI: 352094087982671) +2018/08/13 18:02:10 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:02:10 ruptelaNet.go:217: Data received(client: [::1]:55672, IMEI: 352094087982671) +2018/08/13 18:02:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:02:10 ruptelaNet.go:231: Sent ACK (client: [::1]:55672, IMEI: 352094087982671) +2018/08/13 18:02:14 ruptelaNet.go:239: Close connection(client: [::1]:55672) +2018/08/13 18:02:36 ruptelaNet.go:170: New connection(client: [::1]:55747) +2018/08/13 18:02:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:02:37 ruptelaNet.go:217: Data received(client: [::1]:55747, IMEI: 352094087982671) +2018/08/13 18:02:37 ruptelaNet.go:231: Sent ACK (client: [::1]:55747, IMEI: 352094087982671) +2018/08/13 18:02:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:02:41 ruptelaNet.go:217: Data received(client: [::1]:55747, IMEI: 352094087982671) +2018/08/13 18:02:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:02:41 ruptelaNet.go:231: Sent ACK (client: [::1]:55747, IMEI: 352094087982671) +2018/08/13 18:02:44 ruptelaNet.go:239: Close connection(client: [::1]:55747) +2018/08/13 18:02:46 ruptelaNet.go:170: New connection(client: [::1]:55777) +2018/08/13 18:02:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:02:46 ruptelaNet.go:217: Data received(client: [::1]:55777, IMEI: 352094087230394) +2018/08/13 18:02:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55777, IMEI: 352094087230394) +2018/08/13 18:02:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:02:48 ruptelaNet.go:217: Data received(client: [::1]:55777, IMEI: 352094087230394) +2018/08/13 18:02:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:02:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55777, IMEI: 352094087230394) +2018/08/13 18:02:49 ruptelaNet.go:239: Close connection(client: [::1]:55777) +2018/08/13 18:03:07 ruptelaNet.go:170: New connection(client: [::1]:55828) +2018/08/13 18:03:09 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:03:09 ruptelaNet.go:217: Data received(client: [::1]:55828, IMEI: 352094087982671) +2018/08/13 18:03:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55828, IMEI: 352094087982671) +2018/08/13 18:03:12 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:03:12 ruptelaNet.go:217: Data received(client: [::1]:55828, IMEI: 352094087982671) +2018/08/13 18:03:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:03:12 ruptelaNet.go:231: Sent ACK (client: [::1]:55828, IMEI: 352094087982671) +2018/08/13 18:03:15 ruptelaNet.go:239: Close connection(client: [::1]:55828) +2018/08/13 18:03:41 ruptelaNet.go:170: New connection(client: [::1]:55918) +2018/08/13 18:03:42 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:03:42 ruptelaNet.go:217: Data received(client: [::1]:55918, IMEI: 352094087982671) +2018/08/13 18:03:42 ruptelaNet.go:231: Sent ACK (client: [::1]:55918, IMEI: 352094087982671) +2018/08/13 18:03:46 ruptelaNet.go:170: New connection(client: [::1]:55932) +2018/08/13 18:03:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:03:46 ruptelaNet.go:217: Data received(client: [::1]:55932, IMEI: 352094087230394) +2018/08/13 18:03:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55932, IMEI: 352094087230394) +2018/08/13 18:03:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:03:49 ruptelaNet.go:217: Data received(client: [::1]:55932, IMEI: 352094087230394) +2018/08/13 18:03:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:03:49 ruptelaNet.go:231: Sent ACK (client: [::1]:55932, IMEI: 352094087230394) +2018/08/13 18:03:49 ruptelaNet.go:239: Close connection(client: [::1]:55932) +2018/08/13 18:03:52 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:03:52 ruptelaNet.go:217: Data received(client: [::1]:55918, IMEI: 352094087982671) +2018/08/13 18:03:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:03:52 ruptelaNet.go:231: Sent ACK (client: [::1]:55918, IMEI: 352094087982671) +2018/08/13 18:03:54 ruptelaNet.go:239: Close connection(client: [::1]:55918) +2018/08/13 18:04:17 ruptelaNet.go:170: New connection(client: [::1]:56009) +2018/08/13 18:04:18 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:04:18 ruptelaNet.go:217: Data received(client: [::1]:56009, IMEI: 352094087982671) +2018/08/13 18:04:18 ruptelaNet.go:231: Sent ACK (client: [::1]:56009, IMEI: 352094087982671) +2018/08/13 18:04:22 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:04:22 ruptelaNet.go:217: Data received(client: [::1]:56009, IMEI: 352094087982671) +2018/08/13 18:04:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:04:22 ruptelaNet.go:231: Sent ACK (client: [::1]:56009, IMEI: 352094087982671) +2018/08/13 18:04:24 ruptelaNet.go:239: Close connection(client: [::1]:56009) +2018/08/13 18:04:46 ruptelaNet.go:170: New connection(client: [::1]:56089) +2018/08/13 18:04:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:04:46 ruptelaNet.go:217: Data received(client: [::1]:56089, IMEI: 352094087230394) +2018/08/13 18:04:46 ruptelaNet.go:231: Sent ACK (client: [::1]:56089, IMEI: 352094087230394) +2018/08/13 18:04:48 ruptelaNet.go:170: New connection(client: [::1]:56090) +2018/08/13 18:04:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:04:49 ruptelaNet.go:217: Data received(client: [::1]:56089, IMEI: 352094087230394) +2018/08/13 18:04:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:04:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56089, IMEI: 352094087230394) +2018/08/13 18:06:04 ruptelaNet.go:239: Close connection(client: [::1]:56089) +2018/08/13 18:06:04 ruptelaNet.go:239: Close connection(client: [::1]:56090) +2018/08/13 18:06:25 ruptelaNet.go:170: New connection(client: [::1]:56169) +2018/08/13 18:06:26 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:06:27 ruptelaNet.go:217: Data received(client: [::1]:56169, IMEI: 352094087982671) +2018/08/13 18:06:27 ruptelaNet.go:231: Sent ACK (client: [::1]:56169, IMEI: 352094087982671) +2018/08/13 18:06:31 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:06:31 ruptelaNet.go:217: Data received(client: [::1]:56169, IMEI: 352094087982671) +2018/08/13 18:06:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:06:31 ruptelaNet.go:231: Sent ACK (client: [::1]:56169, IMEI: 352094087982671) +2018/08/13 18:06:38 ruptelaNet.go:239: Close connection(client: [::1]:56169) +2018/08/13 18:06:47 ruptelaNet.go:170: New connection(client: [::1]:56222) +2018/08/13 18:06:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:06:47 ruptelaNet.go:217: Data received(client: [::1]:56222, IMEI: 352094087230394) +2018/08/13 18:06:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56222, IMEI: 352094087230394) +2018/08/13 18:06:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:06:49 ruptelaNet.go:217: Data received(client: [::1]:56222, IMEI: 352094087230394) +2018/08/13 18:06:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:06:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56222, IMEI: 352094087230394) +2018/08/13 18:06:50 ruptelaNet.go:239: Close connection(client: [::1]:56222) +2018/08/13 18:07:01 ruptelaNet.go:170: New connection(client: [::1]:56266) +2018/08/13 18:07:02 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:07:02 ruptelaNet.go:217: Data received(client: [::1]:56266, IMEI: 352094087982671) +2018/08/13 18:07:02 ruptelaNet.go:231: Sent ACK (client: [::1]:56266, IMEI: 352094087982671) +2018/08/13 18:07:08 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:07:08 ruptelaNet.go:217: Data received(client: [::1]:56266, IMEI: 352094087982671) +2018/08/13 18:07:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:07:08 ruptelaNet.go:231: Sent ACK (client: [::1]:56266, IMEI: 352094087982671) +2018/08/13 18:07:11 ruptelaNet.go:239: Close connection(client: [::1]:56266) +2018/08/13 18:07:40 ruptelaNet.go:170: New connection(client: [::1]:56366) +2018/08/13 18:07:42 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:07:42 ruptelaNet.go:217: Data received(client: [::1]:56366, IMEI: 352094087982671) +2018/08/13 18:07:42 ruptelaNet.go:231: Sent ACK (client: [::1]:56366, IMEI: 352094087982671) +2018/08/13 18:07:45 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:07:45 ruptelaNet.go:217: Data received(client: [::1]:56366, IMEI: 352094087982671) +2018/08/13 18:07:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:07:45 ruptelaNet.go:231: Sent ACK (client: [::1]:56366, IMEI: 352094087982671) +2018/08/13 18:07:47 ruptelaNet.go:170: New connection(client: [::1]:56384) +2018/08/13 18:07:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:07:47 ruptelaNet.go:217: Data received(client: [::1]:56384, IMEI: 352094087230394) +2018/08/13 18:07:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56384, IMEI: 352094087230394) +2018/08/13 18:07:48 ruptelaNet.go:239: Close connection(client: [::1]:56366) +2018/08/13 18:07:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:07:49 ruptelaNet.go:217: Data received(client: [::1]:56384, IMEI: 352094087230394) +2018/08/13 18:07:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:07:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56384, IMEI: 352094087230394) +2018/08/13 18:07:50 ruptelaNet.go:239: Close connection(client: [::1]:56384) +2018/08/13 18:08:14 ruptelaNet.go:170: New connection(client: [::1]:56455) +2018/08/13 18:08:16 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:08:16 ruptelaNet.go:217: Data received(client: [::1]:56455, IMEI: 352094087982671) +2018/08/13 18:08:16 ruptelaNet.go:231: Sent ACK (client: [::1]:56455, IMEI: 352094087982671) +2018/08/13 18:08:26 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:08:26 ruptelaNet.go:217: Data received(client: [::1]:56455, IMEI: 352094087982671) +2018/08/13 18:08:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:08:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56455, IMEI: 352094087982671) +2018/08/13 18:08:28 ruptelaNet.go:239: Close connection(client: [::1]:56455) +2018/08/13 18:08:47 ruptelaNet.go:170: New connection(client: [::1]:56538) +2018/08/13 18:08:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:08:47 ruptelaNet.go:217: Data received(client: [::1]:56538, IMEI: 352094087230394) +2018/08/13 18:08:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56538, IMEI: 352094087230394) +2018/08/13 18:08:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:08:49 ruptelaNet.go:217: Data received(client: [::1]:56538, IMEI: 352094087230394) +2018/08/13 18:08:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:08:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56538, IMEI: 352094087230394) +2018/08/13 18:08:51 ruptelaNet.go:239: Close connection(client: [::1]:56538) +2018/08/13 18:08:51 ruptelaNet.go:170: New connection(client: [::1]:56550) +2018/08/13 18:08:52 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:08:52 ruptelaNet.go:217: Data received(client: [::1]:56550, IMEI: 352094087982671) +2018/08/13 18:08:52 ruptelaNet.go:231: Sent ACK (client: [::1]:56550, IMEI: 352094087982671) +2018/08/13 18:08:56 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:08:56 ruptelaNet.go:217: Data received(client: [::1]:56550, IMEI: 352094087982671) +2018/08/13 18:08:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:08:56 ruptelaNet.go:231: Sent ACK (client: [::1]:56550, IMEI: 352094087982671) +2018/08/13 18:09:01 ruptelaNet.go:239: Close connection(client: [::1]:56550) +2018/08/13 18:09:32 ruptelaNet.go:170: New connection(client: [::1]:56656) +2018/08/13 18:09:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:09:33 ruptelaNet.go:217: Data received(client: [::1]:56656, IMEI: 352094087982671) +2018/08/13 18:09:33 ruptelaNet.go:231: Sent ACK (client: [::1]:56656, IMEI: 352094087982671) +2018/08/13 18:09:44 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:09:44 ruptelaNet.go:217: Data received(client: [::1]:56656, IMEI: 352094087982671) +2018/08/13 18:09:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:09:44 ruptelaNet.go:231: Sent ACK (client: [::1]:56656, IMEI: 352094087982671) +2018/08/13 18:09:46 ruptelaNet.go:239: Close connection(client: [::1]:56656) +2018/08/13 18:09:47 ruptelaNet.go:170: New connection(client: [::1]:56694) +2018/08/13 18:09:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:09:47 ruptelaNet.go:217: Data received(client: [::1]:56694, IMEI: 352094087230394) +2018/08/13 18:09:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56694, IMEI: 352094087230394) +2018/08/13 18:09:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:09:49 ruptelaNet.go:217: Data received(client: [::1]:56694, IMEI: 352094087230394) +2018/08/13 18:09:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:09:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56694, IMEI: 352094087230394) +2018/08/13 18:09:50 ruptelaNet.go:239: Close connection(client: [::1]:56694) +2018/08/13 18:10:09 ruptelaNet.go:170: New connection(client: [::1]:56753) +2018/08/13 18:10:10 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:10:10 ruptelaNet.go:217: Data received(client: [::1]:56753, IMEI: 352094087982671) +2018/08/13 18:10:10 ruptelaNet.go:231: Sent ACK (client: [::1]:56753, IMEI: 352094087982671) +2018/08/13 18:10:15 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:10:15 ruptelaNet.go:217: Data received(client: [::1]:56753, IMEI: 352094087982671) +2018/08/13 18:10:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:10:15 ruptelaNet.go:231: Sent ACK (client: [::1]:56753, IMEI: 352094087982671) +2018/08/13 18:10:18 ruptelaNet.go:239: Close connection(client: [::1]:56753) +2018/08/13 18:10:47 ruptelaNet.go:170: New connection(client: [::1]:56855) +2018/08/13 18:10:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:10:47 ruptelaNet.go:217: Data received(client: [::1]:56855, IMEI: 352094087230394) +2018/08/13 18:10:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56855, IMEI: 352094087230394) +2018/08/13 18:10:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:10:49 ruptelaNet.go:217: Data received(client: [::1]:56855, IMEI: 352094087230394) +2018/08/13 18:10:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:10:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56855, IMEI: 352094087230394) +2018/08/13 18:10:51 ruptelaNet.go:239: Close connection(client: [::1]:56855) +2018/08/13 18:10:51 ruptelaNet.go:170: New connection(client: [::1]:56861) +2018/08/13 18:10:52 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:10:52 ruptelaNet.go:217: Data received(client: [::1]:56861, IMEI: 352094087982671) +2018/08/13 18:10:52 ruptelaNet.go:231: Sent ACK (client: [::1]:56861, IMEI: 352094087982671) +2018/08/13 18:10:55 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:10:55 ruptelaNet.go:217: Data received(client: [::1]:56861, IMEI: 352094087982671) +2018/08/13 18:10:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:10:55 ruptelaNet.go:231: Sent ACK (client: [::1]:56861, IMEI: 352094087982671) +2018/08/13 18:10:57 ruptelaNet.go:239: Close connection(client: [::1]:56861) +2018/08/13 18:11:24 ruptelaNet.go:170: New connection(client: [::1]:56939) +2018/08/13 18:11:26 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:11:26 ruptelaNet.go:217: Data received(client: [::1]:56939, IMEI: 352094087982671) +2018/08/13 18:11:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56939, IMEI: 352094087982671) +2018/08/13 18:11:30 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:11:30 ruptelaNet.go:217: Data received(client: [::1]:56939, IMEI: 352094087982671) +2018/08/13 18:11:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:11:30 ruptelaNet.go:231: Sent ACK (client: [::1]:56939, IMEI: 352094087982671) +2018/08/13 18:11:37 ruptelaNet.go:239: Close connection(client: [::1]:56939) +2018/08/13 18:11:47 ruptelaNet.go:170: New connection(client: [::1]:57000) +2018/08/13 18:11:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:11:47 ruptelaNet.go:217: Data received(client: [::1]:57000, IMEI: 352094087230394) +2018/08/13 18:11:47 ruptelaNet.go:231: Sent ACK (client: [::1]:57000, IMEI: 352094087230394) +2018/08/13 18:11:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:11:49 ruptelaNet.go:217: Data received(client: [::1]:57000, IMEI: 352094087230394) +2018/08/13 18:11:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:11:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57000, IMEI: 352094087230394) +2018/08/13 18:11:51 ruptelaNet.go:239: Close connection(client: [::1]:57000) +2018/08/13 18:12:00 ruptelaNet.go:170: New connection(client: [::1]:57031) +2018/08/13 18:12:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:12:01 ruptelaNet.go:217: Data received(client: [::1]:57031, IMEI: 352094087982671) +2018/08/13 18:12:01 ruptelaNet.go:231: Sent ACK (client: [::1]:57031, IMEI: 352094087982671) +2018/08/13 18:12:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:12:06 ruptelaNet.go:217: Data received(client: [::1]:57031, IMEI: 352094087982671) +2018/08/13 18:12:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:12:06 ruptelaNet.go:231: Sent ACK (client: [::1]:57031, IMEI: 352094087982671) +2018/08/13 18:12:08 ruptelaNet.go:239: Close connection(client: [::1]:57031) +2018/08/13 18:12:31 ruptelaNet.go:170: New connection(client: [::1]:57112) +2018/08/13 18:12:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:12:32 ruptelaNet.go:217: Data received(client: [::1]:57112, IMEI: 352094087982671) +2018/08/13 18:12:32 ruptelaNet.go:231: Sent ACK (client: [::1]:57112, IMEI: 352094087982671) +2018/08/13 18:12:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:12:35 ruptelaNet.go:217: Data received(client: [::1]:57112, IMEI: 352094087982671) +2018/08/13 18:12:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:12:35 ruptelaNet.go:231: Sent ACK (client: [::1]:57112, IMEI: 352094087982671) +2018/08/13 18:12:43 ruptelaNet.go:239: Close connection(client: [::1]:57112) +2018/08/13 18:12:47 ruptelaNet.go:170: New connection(client: [::1]:57153) +2018/08/13 18:12:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:12:47 ruptelaNet.go:217: Data received(client: [::1]:57153, IMEI: 352094087230394) +2018/08/13 18:12:47 ruptelaNet.go:231: Sent ACK (client: [::1]:57153, IMEI: 352094087230394) +2018/08/13 18:12:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:12:49 ruptelaNet.go:217: Data received(client: [::1]:57153, IMEI: 352094087230394) +2018/08/13 18:12:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:12:49 ruptelaNet.go:231: Sent ACK (client: [::1]:57153, IMEI: 352094087230394) +2018/08/13 18:12:51 ruptelaNet.go:239: Close connection(client: [::1]:57153) +2018/08/13 18:13:11 ruptelaNet.go:170: New connection(client: [::1]:57212) +2018/08/13 18:13:12 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:13:12 ruptelaNet.go:217: Data received(client: [::1]:57212, IMEI: 352094087982671) +2018/08/13 18:13:12 ruptelaNet.go:231: Sent ACK (client: [::1]:57212, IMEI: 352094087982671) +2018/08/13 18:13:22 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:13:22 ruptelaNet.go:217: Data received(client: [::1]:57212, IMEI: 352094087982671) +2018/08/13 18:13:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:13:22 ruptelaNet.go:231: Sent ACK (client: [::1]:57212, IMEI: 352094087982671) +2018/08/13 18:13:34 ruptelaNet.go:239: Close connection(client: [::1]:57212) +2018/08/13 18:13:47 ruptelaNet.go:170: New connection(client: [::1]:57300) +2018/08/13 18:13:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:13:48 ruptelaNet.go:217: Data received(client: [::1]:57300, IMEI: 352094087230394) +2018/08/13 18:13:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57300, IMEI: 352094087230394) +2018/08/13 18:13:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:13:50 ruptelaNet.go:217: Data received(client: [::1]:57300, IMEI: 352094087230394) +2018/08/13 18:13:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:13:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57300, IMEI: 352094087230394) +2018/08/13 18:13:51 ruptelaNet.go:239: Close connection(client: [::1]:57300) +2018/08/13 18:14:06 ruptelaNet.go:170: New connection(client: [::1]:57348) +2018/08/13 18:14:07 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:14:07 ruptelaNet.go:217: Data received(client: [::1]:57348, IMEI: 352094087982671) +2018/08/13 18:14:07 ruptelaNet.go:231: Sent ACK (client: [::1]:57348, IMEI: 352094087982671) +2018/08/13 18:14:11 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:14:11 ruptelaNet.go:217: Data received(client: [::1]:57348, IMEI: 352094087982671) +2018/08/13 18:14:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:14:11 ruptelaNet.go:231: Sent ACK (client: [::1]:57348, IMEI: 352094087982671) +2018/08/13 18:14:17 ruptelaNet.go:239: Close connection(client: [::1]:57348) +2018/08/13 18:14:40 ruptelaNet.go:170: New connection(client: [::1]:57432) +2018/08/13 18:14:42 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:14:42 ruptelaNet.go:217: Data received(client: [::1]:57432, IMEI: 352094087982671) +2018/08/13 18:14:42 ruptelaNet.go:231: Sent ACK (client: [::1]:57432, IMEI: 352094087982671) +2018/08/13 18:14:46 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:14:46 ruptelaNet.go:217: Data received(client: [::1]:57432, IMEI: 352094087982671) +2018/08/13 18:14:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:14:46 ruptelaNet.go:231: Sent ACK (client: [::1]:57432, IMEI: 352094087982671) +2018/08/13 18:14:47 ruptelaNet.go:170: New connection(client: [::1]:57454) +2018/08/13 18:14:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:14:48 ruptelaNet.go:217: Data received(client: [::1]:57454, IMEI: 352094087230394) +2018/08/13 18:14:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57454, IMEI: 352094087230394) +2018/08/13 18:14:48 ruptelaNet.go:239: Close connection(client: [::1]:57432) +2018/08/13 18:14:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:14:50 ruptelaNet.go:217: Data received(client: [::1]:57454, IMEI: 352094087230394) +2018/08/13 18:14:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:14:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57454, IMEI: 352094087230394) +2018/08/13 18:14:51 ruptelaNet.go:239: Close connection(client: [::1]:57454) +2018/08/13 18:15:15 ruptelaNet.go:170: New connection(client: [::1]:57523) +2018/08/13 18:15:16 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:15:16 ruptelaNet.go:217: Data received(client: [::1]:57523, IMEI: 352094087982671) +2018/08/13 18:15:16 ruptelaNet.go:231: Sent ACK (client: [::1]:57523, IMEI: 352094087982671) +2018/08/13 18:15:29 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:15:29 ruptelaNet.go:217: Data received(client: [::1]:57523, IMEI: 352094087982671) +2018/08/13 18:15:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:15:29 ruptelaNet.go:231: Sent ACK (client: [::1]:57523, IMEI: 352094087982671) +2018/08/13 18:15:48 ruptelaNet.go:170: New connection(client: [::1]:57606) +2018/08/13 18:15:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:15:48 ruptelaNet.go:217: Data received(client: [::1]:57606, IMEI: 352094087230394) +2018/08/13 18:15:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57606, IMEI: 352094087230394) +2018/08/13 18:15:49 ruptelaNet.go:239: Close connection(client: [::1]:57523) +2018/08/13 18:15:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:15:50 ruptelaNet.go:217: Data received(client: [::1]:57606, IMEI: 352094087230394) +2018/08/13 18:15:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:15:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57606, IMEI: 352094087230394) +2018/08/13 18:15:51 ruptelaNet.go:239: Close connection(client: [::1]:57606) +2018/08/13 18:16:12 ruptelaNet.go:170: New connection(client: [::1]:57667) +2018/08/13 18:16:13 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:16:13 ruptelaNet.go:217: Data received(client: [::1]:57667, IMEI: 352094087982671) +2018/08/13 18:16:13 ruptelaNet.go:231: Sent ACK (client: [::1]:57667, IMEI: 352094087982671) +2018/08/13 18:16:17 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:16:17 ruptelaNet.go:217: Data received(client: [::1]:57667, IMEI: 352094087982671) +2018/08/13 18:16:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:16:17 ruptelaNet.go:231: Sent ACK (client: [::1]:57667, IMEI: 352094087982671) +2018/08/13 18:16:29 ruptelaNet.go:239: Close connection(client: [::1]:57667) +2018/08/13 18:16:48 ruptelaNet.go:170: New connection(client: [::1]:57744) +2018/08/13 18:16:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:16:48 ruptelaNet.go:217: Data received(client: [::1]:57744, IMEI: 352094087230394) +2018/08/13 18:16:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57744, IMEI: 352094087230394) +2018/08/13 18:16:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:16:50 ruptelaNet.go:217: Data received(client: [::1]:57744, IMEI: 352094087230394) +2018/08/13 18:16:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:16:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57744, IMEI: 352094087230394) +2018/08/13 18:16:51 ruptelaNet.go:239: Close connection(client: [::1]:57744) +2018/08/13 18:16:52 ruptelaNet.go:170: New connection(client: [::1]:57755) +2018/08/13 18:16:53 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:16:53 ruptelaNet.go:217: Data received(client: [::1]:57755, IMEI: 352094087982671) +2018/08/13 18:16:53 ruptelaNet.go:231: Sent ACK (client: [::1]:57755, IMEI: 352094087982671) +2018/08/13 18:16:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:16:57 ruptelaNet.go:217: Data received(client: [::1]:57755, IMEI: 352094087982671) +2018/08/13 18:16:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:16:57 ruptelaNet.go:231: Sent ACK (client: [::1]:57755, IMEI: 352094087982671) +2018/08/13 18:17:11 ruptelaNet.go:239: Close connection(client: [::1]:57755) +2018/08/13 18:18:44 ruptelaNet.go:170: New connection(client: [::1]:57934) +2018/08/13 18:18:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:18:47 ruptelaNet.go:217: Data received(client: [::1]:57934, IMEI: 352094087982671) +2018/08/13 18:18:47 ruptelaNet.go:231: Sent ACK (client: [::1]:57934, IMEI: 352094087982671) +2018/08/13 18:18:48 ruptelaNet.go:170: New connection(client: [::1]:57945) +2018/08/13 18:18:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:18:48 ruptelaNet.go:217: Data received(client: [::1]:57945, IMEI: 352094087230394) +2018/08/13 18:18:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57945, IMEI: 352094087230394) +2018/08/13 18:18:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:18:50 ruptelaNet.go:217: Data received(client: [::1]:57945, IMEI: 352094087230394) +2018/08/13 18:18:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:18:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57945, IMEI: 352094087230394) +2018/08/13 18:18:51 ruptelaNet.go:239: Close connection(client: [::1]:57945) +2018/08/13 18:18:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:18:57 ruptelaNet.go:217: Data received(client: [::1]:57934, IMEI: 352094087982671) +2018/08/13 18:18:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:18:57 ruptelaNet.go:231: Sent ACK (client: [::1]:57934, IMEI: 352094087982671) +2018/08/13 18:19:00 ruptelaNet.go:239: Close connection(client: [::1]:57934) +2018/08/13 18:19:23 ruptelaNet.go:170: New connection(client: [::1]:58032) +2018/08/13 18:19:25 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:19:25 ruptelaNet.go:217: Data received(client: [::1]:58032, IMEI: 352094087982671) +2018/08/13 18:19:25 ruptelaNet.go:231: Sent ACK (client: [::1]:58032, IMEI: 352094087982671) +2018/08/13 18:19:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:19:28 ruptelaNet.go:217: Data received(client: [::1]:58032, IMEI: 352094087982671) +2018/08/13 18:19:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:19:28 ruptelaNet.go:231: Sent ACK (client: [::1]:58032, IMEI: 352094087982671) +2018/08/13 18:19:37 ruptelaNet.go:239: Close connection(client: [::1]:58032) +2018/08/13 18:19:48 ruptelaNet.go:170: New connection(client: [::1]:58097) +2018/08/13 18:19:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:19:48 ruptelaNet.go:217: Data received(client: [::1]:58097, IMEI: 352094087230394) +2018/08/13 18:19:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58097, IMEI: 352094087230394) +2018/08/13 18:19:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:19:50 ruptelaNet.go:217: Data received(client: [::1]:58097, IMEI: 352094087230394) +2018/08/13 18:19:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:19:50 ruptelaNet.go:231: Sent ACK (client: [::1]:58097, IMEI: 352094087230394) +2018/08/13 18:19:51 ruptelaNet.go:239: Close connection(client: [::1]:58097) +2018/08/13 18:20:00 ruptelaNet.go:170: New connection(client: [::1]:58130) +2018/08/13 18:20:02 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:20:02 ruptelaNet.go:217: Data received(client: [::1]:58130, IMEI: 352094087982671) +2018/08/13 18:20:02 ruptelaNet.go:231: Sent ACK (client: [::1]:58130, IMEI: 352094087982671) +2018/08/13 18:20:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:20:06 ruptelaNet.go:217: Data received(client: [::1]:58130, IMEI: 352094087982671) +2018/08/13 18:20:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:20:06 ruptelaNet.go:231: Sent ACK (client: [::1]:58130, IMEI: 352094087982671) +2018/08/13 18:20:09 ruptelaNet.go:239: Close connection(client: [::1]:58130) +2018/08/13 18:20:31 ruptelaNet.go:170: New connection(client: [::1]:58207) +2018/08/13 18:20:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:20:32 ruptelaNet.go:217: Data received(client: [::1]:58207, IMEI: 352094087982671) +2018/08/13 18:20:32 ruptelaNet.go:231: Sent ACK (client: [::1]:58207, IMEI: 352094087982671) +2018/08/13 18:20:36 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:20:36 ruptelaNet.go:217: Data received(client: [::1]:58207, IMEI: 352094087982671) +2018/08/13 18:20:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:20:36 ruptelaNet.go:231: Sent ACK (client: [::1]:58207, IMEI: 352094087982671) +2018/08/13 18:20:40 ruptelaNet.go:239: Close connection(client: [::1]:58207) +2018/08/13 18:20:48 ruptelaNet.go:170: New connection(client: [::1]:58247) +2018/08/13 18:20:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:20:48 ruptelaNet.go:217: Data received(client: [::1]:58247, IMEI: 352094087230394) +2018/08/13 18:20:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58247, IMEI: 352094087230394) +2018/08/13 18:20:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:20:51 ruptelaNet.go:217: Data received(client: [::1]:58247, IMEI: 352094087230394) +2018/08/13 18:20:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:20:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58247, IMEI: 352094087230394) +2018/08/13 18:20:52 ruptelaNet.go:239: Close connection(client: [::1]:58247) +2018/08/13 18:21:03 ruptelaNet.go:170: New connection(client: [::1]:58279) +2018/08/13 18:21:05 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:21:05 ruptelaNet.go:217: Data received(client: [::1]:58279, IMEI: 352094087982671) +2018/08/13 18:21:05 ruptelaNet.go:231: Sent ACK (client: [::1]:58279, IMEI: 352094087982671) +2018/08/13 18:21:08 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:21:08 ruptelaNet.go:217: Data received(client: [::1]:58279, IMEI: 352094087982671) +2018/08/13 18:21:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:21:08 ruptelaNet.go:231: Sent ACK (client: [::1]:58279, IMEI: 352094087982671) +2018/08/13 18:21:24 ruptelaNet.go:239: Close connection(client: [::1]:58279) +2018/08/13 18:21:47 ruptelaNet.go:170: New connection(client: [::1]:58387) +2018/08/13 18:21:48 ruptelaNet.go:170: New connection(client: [::1]:58390) +2018/08/13 18:21:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:21:48 ruptelaNet.go:217: Data received(client: [::1]:58390, IMEI: 352094087230394) +2018/08/13 18:21:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58390, IMEI: 352094087230394) +2018/08/13 18:21:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:21:49 ruptelaNet.go:217: Data received(client: [::1]:58387, IMEI: 352094087982671) +2018/08/13 18:21:49 ruptelaNet.go:231: Sent ACK (client: [::1]:58387, IMEI: 352094087982671) +2018/08/13 18:21:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:21:51 ruptelaNet.go:217: Data received(client: [::1]:58390, IMEI: 352094087230394) +2018/08/13 18:21:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:21:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58390, IMEI: 352094087230394) +2018/08/13 18:21:52 ruptelaNet.go:239: Close connection(client: [::1]:58390) +2018/08/13 18:21:52 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:21:52 ruptelaNet.go:217: Data received(client: [::1]:58387, IMEI: 352094087982671) +2018/08/13 18:21:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:21:52 ruptelaNet.go:231: Sent ACK (client: [::1]:58387, IMEI: 352094087982671) +2018/08/13 18:21:55 ruptelaNet.go:239: Close connection(client: [::1]:58387) +2018/08/13 18:22:17 ruptelaNet.go:170: New connection(client: [::1]:58466) +2018/08/13 18:22:18 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:22:18 ruptelaNet.go:217: Data received(client: [::1]:58466, IMEI: 352094087982671) +2018/08/13 18:22:18 ruptelaNet.go:231: Sent ACK (client: [::1]:58466, IMEI: 352094087982671) +2018/08/13 18:22:22 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:22:22 ruptelaNet.go:217: Data received(client: [::1]:58466, IMEI: 352094087982671) +2018/08/13 18:22:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:22:22 ruptelaNet.go:231: Sent ACK (client: [::1]:58466, IMEI: 352094087982671) +2018/08/13 18:22:24 ruptelaNet.go:239: Close connection(client: [::1]:58466) +2018/08/13 18:22:48 ruptelaNet.go:170: New connection(client: [::1]:58546) +2018/08/13 18:22:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:22:48 ruptelaNet.go:217: Data received(client: [::1]:58546, IMEI: 352094087230394) +2018/08/13 18:22:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58546, IMEI: 352094087230394) +2018/08/13 18:22:53 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:22:53 ruptelaNet.go:217: Data received(client: [::1]:58546, IMEI: 352094087230394) +2018/08/13 18:22:53 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:22:53 ruptelaNet.go:231: Sent ACK (client: [::1]:58546, IMEI: 352094087230394) +2018/08/13 18:22:53 ruptelaNet.go:170: New connection(client: [::1]:58557) +2018/08/13 18:22:54 ruptelaNet.go:239: Close connection(client: [::1]:58546) +2018/08/13 18:22:55 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:22:55 ruptelaNet.go:217: Data received(client: [::1]:58557, IMEI: 352094087982671) +2018/08/13 18:22:55 ruptelaNet.go:231: Sent ACK (client: [::1]:58557, IMEI: 352094087982671) +2018/08/13 18:22:58 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:22:58 ruptelaNet.go:217: Data received(client: [::1]:58557, IMEI: 352094087982671) +2018/08/13 18:22:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:22:58 ruptelaNet.go:231: Sent ACK (client: [::1]:58557, IMEI: 352094087982671) +2018/08/13 18:23:01 ruptelaNet.go:239: Close connection(client: [::1]:58557) +2018/08/13 18:23:37 ruptelaNet.go:170: New connection(client: [::1]:58658) +2018/08/13 18:23:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:23:38 ruptelaNet.go:217: Data received(client: [::1]:58658, IMEI: 352094087982671) +2018/08/13 18:23:38 ruptelaNet.go:231: Sent ACK (client: [::1]:58658, IMEI: 352094087982671) +2018/08/13 18:23:42 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:23:42 ruptelaNet.go:217: Data received(client: [::1]:58658, IMEI: 352094087982671) +2018/08/13 18:23:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:23:42 ruptelaNet.go:231: Sent ACK (client: [::1]:58658, IMEI: 352094087982671) +2018/08/13 18:23:44 ruptelaNet.go:239: Close connection(client: [::1]:58658) +2018/08/13 18:23:48 ruptelaNet.go:170: New connection(client: [::1]:58685) +2018/08/13 18:23:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:23:48 ruptelaNet.go:217: Data received(client: [::1]:58685, IMEI: 352094087230394) +2018/08/13 18:23:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58685, IMEI: 352094087230394) +2018/08/13 18:23:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:23:51 ruptelaNet.go:217: Data received(client: [::1]:58685, IMEI: 352094087230394) +2018/08/13 18:23:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:23:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58685, IMEI: 352094087230394) +2018/08/13 18:23:51 ruptelaNet.go:239: Close connection(client: [::1]:58685) +2018/08/13 18:24:07 ruptelaNet.go:170: New connection(client: [::1]:58732) +2018/08/13 18:24:08 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:24:08 ruptelaNet.go:217: Data received(client: [::1]:58732, IMEI: 352094087982671) +2018/08/13 18:24:08 ruptelaNet.go:231: Sent ACK (client: [::1]:58732, IMEI: 352094087982671) +2018/08/13 18:24:12 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:24:12 ruptelaNet.go:217: Data received(client: [::1]:58732, IMEI: 352094087982671) +2018/08/13 18:24:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:24:12 ruptelaNet.go:231: Sent ACK (client: [::1]:58732, IMEI: 352094087982671) +2018/08/13 18:24:15 ruptelaNet.go:239: Close connection(client: [::1]:58732) +2018/08/13 18:24:37 ruptelaNet.go:170: New connection(client: [::1]:58800) +2018/08/13 18:24:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:24:38 ruptelaNet.go:217: Data received(client: [::1]:58800, IMEI: 352094087982671) +2018/08/13 18:24:38 ruptelaNet.go:231: Sent ACK (client: [::1]:58800, IMEI: 352094087982671) +2018/08/13 18:24:42 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:24:42 ruptelaNet.go:217: Data received(client: [::1]:58800, IMEI: 352094087982671) +2018/08/13 18:24:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:24:42 ruptelaNet.go:231: Sent ACK (client: [::1]:58800, IMEI: 352094087982671) +2018/08/13 18:24:44 ruptelaNet.go:239: Close connection(client: [::1]:58800) +2018/08/13 18:24:49 ruptelaNet.go:170: New connection(client: [::1]:58829) +2018/08/13 18:24:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:24:49 ruptelaNet.go:217: Data received(client: [::1]:58829, IMEI: 352094087230394) +2018/08/13 18:24:49 ruptelaNet.go:231: Sent ACK (client: [::1]:58829, IMEI: 352094087230394) +2018/08/13 18:24:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:24:51 ruptelaNet.go:217: Data received(client: [::1]:58829, IMEI: 352094087230394) +2018/08/13 18:24:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:24:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58829, IMEI: 352094087230394) +2018/08/13 18:24:52 ruptelaNet.go:239: Close connection(client: [::1]:58829) +2018/08/13 18:25:07 ruptelaNet.go:170: New connection(client: [::1]:58879) +2018/08/13 18:25:08 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:25:08 ruptelaNet.go:217: Data received(client: [::1]:58879, IMEI: 352094087982671) +2018/08/13 18:25:08 ruptelaNet.go:231: Sent ACK (client: [::1]:58879, IMEI: 352094087982671) +2018/08/13 18:25:12 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:25:12 ruptelaNet.go:217: Data received(client: [::1]:58879, IMEI: 352094087982671) +2018/08/13 18:25:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:25:12 ruptelaNet.go:231: Sent ACK (client: [::1]:58879, IMEI: 352094087982671) +2018/08/13 18:25:18 ruptelaNet.go:239: Close connection(client: [::1]:58879) +2018/08/13 18:25:41 ruptelaNet.go:170: New connection(client: [::1]:58966) +2018/08/13 18:25:42 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:25:42 ruptelaNet.go:217: Data received(client: [::1]:58966, IMEI: 352094087982671) +2018/08/13 18:25:42 ruptelaNet.go:231: Sent ACK (client: [::1]:58966, IMEI: 352094087982671) +2018/08/13 18:25:46 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:25:46 ruptelaNet.go:217: Data received(client: [::1]:58966, IMEI: 352094087982671) +2018/08/13 18:25:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:25:46 ruptelaNet.go:231: Sent ACK (client: [::1]:58966, IMEI: 352094087982671) +2018/08/13 18:25:49 ruptelaNet.go:170: New connection(client: [::1]:58987) +2018/08/13 18:25:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:25:49 ruptelaNet.go:217: Data received(client: [::1]:58987, IMEI: 352094087230394) +2018/08/13 18:25:49 ruptelaNet.go:231: Sent ACK (client: [::1]:58987, IMEI: 352094087230394) +2018/08/13 18:25:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:25:51 ruptelaNet.go:217: Data received(client: [::1]:58987, IMEI: 352094087230394) +2018/08/13 18:25:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:25:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58987, IMEI: 352094087230394) +2018/08/13 18:25:54 ruptelaNet.go:239: Close connection(client: [::1]:58987) +2018/08/13 18:25:54 ruptelaNet.go:239: Close connection(client: [::1]:58966) +2018/08/13 18:26:27 ruptelaNet.go:170: New connection(client: [::1]:59081) +2018/08/13 18:26:27 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:26:27 ruptelaNet.go:217: Data received(client: [::1]:59081, IMEI: 352094087982671) +2018/08/13 18:26:27 ruptelaNet.go:231: Sent ACK (client: [::1]:59081, IMEI: 352094087982671) +2018/08/13 18:26:31 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:26:31 ruptelaNet.go:217: Data received(client: [::1]:59081, IMEI: 352094087982671) +2018/08/13 18:26:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:26:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59081, IMEI: 352094087982671) +2018/08/13 18:26:34 ruptelaNet.go:239: Close connection(client: [::1]:59081) +2018/08/13 18:26:49 ruptelaNet.go:170: New connection(client: [::1]:59137) +2018/08/13 18:26:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:26:49 ruptelaNet.go:217: Data received(client: [::1]:59137, IMEI: 352094087230394) +2018/08/13 18:26:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59137, IMEI: 352094087230394) +2018/08/13 18:26:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:26:51 ruptelaNet.go:217: Data received(client: [::1]:59137, IMEI: 352094087230394) +2018/08/13 18:26:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:26:51 ruptelaNet.go:231: Sent ACK (client: [::1]:59137, IMEI: 352094087230394) +2018/08/13 18:26:52 ruptelaNet.go:239: Close connection(client: [::1]:59137) +2018/08/13 18:27:02 ruptelaNet.go:170: New connection(client: [::1]:59170) +2018/08/13 18:27:04 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:27:04 ruptelaNet.go:217: Data received(client: [::1]:59170, IMEI: 352094087982671) +2018/08/13 18:27:04 ruptelaNet.go:231: Sent ACK (client: [::1]:59170, IMEI: 352094087982671) +2018/08/13 18:27:07 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:27:07 ruptelaNet.go:217: Data received(client: [::1]:59170, IMEI: 352094087982671) +2018/08/13 18:27:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:27:07 ruptelaNet.go:231: Sent ACK (client: [::1]:59170, IMEI: 352094087982671) +2018/08/13 18:27:11 ruptelaNet.go:239: Close connection(client: [::1]:59170) +2018/08/13 18:27:46 ruptelaNet.go:170: New connection(client: [::1]:59281) +2018/08/13 18:27:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:27:47 ruptelaNet.go:217: Data received(client: [::1]:59281, IMEI: 352094087982671) +2018/08/13 18:27:47 ruptelaNet.go:231: Sent ACK (client: [::1]:59281, IMEI: 352094087982671) +2018/08/13 18:27:49 ruptelaNet.go:170: New connection(client: [::1]:59290) +2018/08/13 18:27:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:27:49 ruptelaNet.go:217: Data received(client: [::1]:59290, IMEI: 352094087230394) +2018/08/13 18:27:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59290, IMEI: 352094087230394) +2018/08/13 18:27:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:27:51 ruptelaNet.go:217: Data received(client: [::1]:59281, IMEI: 352094087982671) +2018/08/13 18:27:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:27:51 ruptelaNet.go:231: Sent ACK (client: [::1]:59281, IMEI: 352094087982671) +2018/08/13 18:27:52 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:27:52 ruptelaNet.go:217: Data received(client: [::1]:59290, IMEI: 352094087230394) +2018/08/13 18:27:52 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:27:52 ruptelaNet.go:231: Sent ACK (client: [::1]:59290, IMEI: 352094087230394) +2018/08/13 18:27:53 ruptelaNet.go:239: Close connection(client: [::1]:59290) +2018/08/13 18:28:02 ruptelaNet.go:239: Close connection(client: [::1]:59281) +2018/08/13 18:28:25 ruptelaNet.go:170: New connection(client: [::1]:59380) +2018/08/13 18:28:27 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:28:27 ruptelaNet.go:217: Data received(client: [::1]:59380, IMEI: 352094087982671) +2018/08/13 18:28:27 ruptelaNet.go:231: Sent ACK (client: [::1]:59380, IMEI: 352094087982671) +2018/08/13 18:28:30 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:28:30 ruptelaNet.go:217: Data received(client: [::1]:59380, IMEI: 352094087982671) +2018/08/13 18:28:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:28:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59380, IMEI: 352094087982671) +2018/08/13 18:28:37 ruptelaNet.go:239: Close connection(client: [::1]:59380) +2018/08/13 18:28:49 ruptelaNet.go:170: New connection(client: [::1]:59439) +2018/08/13 18:28:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:28:49 ruptelaNet.go:217: Data received(client: [::1]:59439, IMEI: 352094087230394) +2018/08/13 18:28:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59439, IMEI: 352094087230394) +2018/08/13 18:28:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:28:51 ruptelaNet.go:217: Data received(client: [::1]:59439, IMEI: 352094087230394) +2018/08/13 18:28:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:28:51 ruptelaNet.go:231: Sent ACK (client: [::1]:59439, IMEI: 352094087230394) +2018/08/13 18:28:52 ruptelaNet.go:239: Close connection(client: [::1]:59439) +2018/08/13 18:28:59 ruptelaNet.go:170: New connection(client: [::1]:59462) +2018/08/13 18:29:00 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:29:00 ruptelaNet.go:217: Data received(client: [::1]:59462, IMEI: 352094087982671) +2018/08/13 18:29:00 ruptelaNet.go:231: Sent ACK (client: [::1]:59462, IMEI: 352094087982671) +2018/08/13 18:29:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:29:04 ruptelaNet.go:217: Data received(client: [::1]:59462, IMEI: 352094087982671) +2018/08/13 18:29:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:29:04 ruptelaNet.go:231: Sent ACK (client: [::1]:59462, IMEI: 352094087982671) +2018/08/13 18:29:06 ruptelaNet.go:239: Close connection(client: [::1]:59462) +2018/08/13 18:29:29 ruptelaNet.go:170: New connection(client: [::1]:59534) +2018/08/13 18:29:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:29:30 ruptelaNet.go:217: Data received(client: [::1]:59534, IMEI: 352094087982671) +2018/08/13 18:29:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59534, IMEI: 352094087982671) +2018/08/13 18:29:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:29:34 ruptelaNet.go:217: Data received(client: [::1]:59534, IMEI: 352094087982671) +2018/08/13 18:29:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:29:34 ruptelaNet.go:231: Sent ACK (client: [::1]:59534, IMEI: 352094087982671) +2018/08/13 18:29:36 ruptelaNet.go:239: Close connection(client: [::1]:59534) +2018/08/13 18:29:49 ruptelaNet.go:170: New connection(client: [::1]:59579) +2018/08/13 18:29:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:29:49 ruptelaNet.go:217: Data received(client: [::1]:59579, IMEI: 352094087230394) +2018/08/13 18:29:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59579, IMEI: 352094087230394) +2018/08/13 18:29:52 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:29:52 ruptelaNet.go:217: Data received(client: [::1]:59579, IMEI: 352094087230394) +2018/08/13 18:29:52 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:29:52 ruptelaNet.go:231: Sent ACK (client: [::1]:59579, IMEI: 352094087230394) +2018/08/13 18:29:53 ruptelaNet.go:239: Close connection(client: [::1]:59579) +2018/08/13 18:29:59 ruptelaNet.go:170: New connection(client: [::1]:59608) +2018/08/13 18:30:00 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:30:00 ruptelaNet.go:217: Data received(client: [::1]:59608, IMEI: 352094087982671) +2018/08/13 18:30:00 ruptelaNet.go:231: Sent ACK (client: [::1]:59608, IMEI: 352094087982671) +2018/08/13 18:30:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:30:04 ruptelaNet.go:217: Data received(client: [::1]:59608, IMEI: 352094087982671) +2018/08/13 18:30:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:30:04 ruptelaNet.go:231: Sent ACK (client: [::1]:59608, IMEI: 352094087982671) +2018/08/13 18:30:06 ruptelaNet.go:239: Close connection(client: [::1]:59608) +2018/08/13 18:30:29 ruptelaNet.go:170: New connection(client: [::1]:59685) +2018/08/13 18:30:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:30:30 ruptelaNet.go:217: Data received(client: [::1]:59685, IMEI: 352094087982671) +2018/08/13 18:30:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59685, IMEI: 352094087982671) +2018/08/13 18:30:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:30:34 ruptelaNet.go:217: Data received(client: [::1]:59685, IMEI: 352094087982671) +2018/08/13 18:30:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:30:34 ruptelaNet.go:231: Sent ACK (client: [::1]:59685, IMEI: 352094087982671) +2018/08/13 18:30:36 ruptelaNet.go:239: Close connection(client: [::1]:59685) +2018/08/13 18:30:49 ruptelaNet.go:170: New connection(client: [::1]:59737) +2018/08/13 18:30:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:30:49 ruptelaNet.go:217: Data received(client: [::1]:59737, IMEI: 352094087230394) +2018/08/13 18:30:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59737, IMEI: 352094087230394) +2018/08/13 18:30:53 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:30:53 ruptelaNet.go:217: Data received(client: [::1]:59737, IMEI: 352094087230394) +2018/08/13 18:30:53 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:30:53 ruptelaNet.go:231: Sent ACK (client: [::1]:59737, IMEI: 352094087230394) +2018/08/13 18:30:54 ruptelaNet.go:239: Close connection(client: [::1]:59737) +2018/08/13 18:30:59 ruptelaNet.go:170: New connection(client: [::1]:59763) +2018/08/13 18:31:00 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:31:00 ruptelaNet.go:217: Data received(client: [::1]:59763, IMEI: 352094087982671) +2018/08/13 18:31:00 ruptelaNet.go:231: Sent ACK (client: [::1]:59763, IMEI: 352094087982671) +2018/08/13 18:31:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:31:04 ruptelaNet.go:217: Data received(client: [::1]:59763, IMEI: 352094087982671) +2018/08/13 18:31:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:31:04 ruptelaNet.go:231: Sent ACK (client: [::1]:59763, IMEI: 352094087982671) +2018/08/13 18:31:07 ruptelaNet.go:239: Close connection(client: [::1]:59763) +2018/08/13 18:31:37 ruptelaNet.go:170: New connection(client: [::1]:59860) +2018/08/13 18:31:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:31:38 ruptelaNet.go:217: Data received(client: [::1]:59860, IMEI: 352094087982671) +2018/08/13 18:31:38 ruptelaNet.go:231: Sent ACK (client: [::1]:59860, IMEI: 352094087982671) +2018/08/13 18:31:44 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:31:44 ruptelaNet.go:217: Data received(client: [::1]:59860, IMEI: 352094087982671) +2018/08/13 18:31:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:31:44 ruptelaNet.go:231: Sent ACK (client: [::1]:59860, IMEI: 352094087982671) +2018/08/13 18:31:50 ruptelaNet.go:239: Close connection(client: [::1]:59860) +2018/08/13 18:31:50 ruptelaNet.go:170: New connection(client: [::1]:59892) +2018/08/13 18:31:50 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:31:50 ruptelaNet.go:217: Data received(client: [::1]:59892, IMEI: 352094087230394) +2018/08/13 18:31:50 ruptelaNet.go:231: Sent ACK (client: [::1]:59892, IMEI: 352094087230394) +2018/08/13 18:31:53 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:31:53 ruptelaNet.go:217: Data received(client: [::1]:59892, IMEI: 352094087230394) +2018/08/13 18:31:53 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:31:53 ruptelaNet.go:231: Sent ACK (client: [::1]:59892, IMEI: 352094087230394) +2018/08/13 18:31:53 ruptelaNet.go:239: Close connection(client: [::1]:59892) +2018/08/13 18:32:29 ruptelaNet.go:170: New connection(client: [::1]:59988) +2018/08/13 18:32:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:32:29 ruptelaNet.go:217: Data received(client: [::1]:59988, IMEI: 352094087982671) +2018/08/13 18:32:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59988, IMEI: 352094087982671) +2018/08/13 18:32:33 ruptelaNet.go:151: Signal: interrupt +2018/08/13 18:32:33 ruptelaNet.go:239: Close connection(client: [::1]:59988) +2018/08/14 10:47:23 ruptelaNet.go:145: listening: [::]:4000 +2018/08/14 10:47:23 ruptelaNet.go:170: New connection(client: [::1]:51062) +2018/08/14 10:47:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:47:23 ruptelaNet.go:217: Data received(client: [::1]:51062, IMEI: 352094087230394) +2018/08/14 10:47:23 ruptelaNet.go:231: Sent ACK (client: [::1]:51062, IMEI: 352094087230394) +2018/08/14 10:47:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:47:25 ruptelaNet.go:217: Data received(client: [::1]:51062, IMEI: 352094087230394) +2018/08/14 10:47:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:47:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51062, IMEI: 352094087230394) +2018/08/14 10:47:26 ruptelaNet.go:239: Close connection(client: [::1]:51062) +2018/08/14 10:48:23 ruptelaNet.go:170: New connection(client: [::1]:51218) +2018/08/14 10:48:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:48:23 ruptelaNet.go:217: Data received(client: [::1]:51218, IMEI: 352094087230394) +2018/08/14 10:48:23 ruptelaNet.go:231: Sent ACK (client: [::1]:51218, IMEI: 352094087230394) +2018/08/14 10:48:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:48:25 ruptelaNet.go:217: Data received(client: [::1]:51218, IMEI: 352094087230394) +2018/08/14 10:48:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:48:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51218, IMEI: 352094087230394) +2018/08/14 10:48:26 ruptelaNet.go:239: Close connection(client: [::1]:51218) +2018/08/14 10:49:23 ruptelaNet.go:170: New connection(client: [::1]:51373) +2018/08/14 10:49:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:49:23 ruptelaNet.go:217: Data received(client: [::1]:51373, IMEI: 352094087230394) +2018/08/14 10:49:23 ruptelaNet.go:231: Sent ACK (client: [::1]:51373, IMEI: 352094087230394) +2018/08/14 10:49:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:49:25 ruptelaNet.go:217: Data received(client: [::1]:51373, IMEI: 352094087230394) +2018/08/14 10:49:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:49:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51373, IMEI: 352094087230394) +2018/08/14 10:49:26 ruptelaNet.go:239: Close connection(client: [::1]:51373) +2018/08/14 10:50:23 ruptelaNet.go:170: New connection(client: [::1]:51513) +2018/08/14 10:50:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:50:23 ruptelaNet.go:217: Data received(client: [::1]:51513, IMEI: 352094087230394) +2018/08/14 10:50:23 ruptelaNet.go:231: Sent ACK (client: [::1]:51513, IMEI: 352094087230394) +2018/08/14 10:50:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:50:25 ruptelaNet.go:217: Data received(client: [::1]:51513, IMEI: 352094087230394) +2018/08/14 10:50:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:50:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51513, IMEI: 352094087230394) +2018/08/14 10:50:26 ruptelaNet.go:239: Close connection(client: [::1]:51513) +2018/08/14 10:51:24 ruptelaNet.go:170: New connection(client: [::1]:51661) +2018/08/14 10:51:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:51:24 ruptelaNet.go:217: Data received(client: [::1]:51661, IMEI: 352094087230394) +2018/08/14 10:51:24 ruptelaNet.go:231: Sent ACK (client: [::1]:51661, IMEI: 352094087230394) +2018/08/14 10:51:25 ruptelaNet.go:170: New connection(client: [::1]:51664) +2018/08/14 10:51:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:51:26 ruptelaNet.go:217: Data received(client: [::1]:51661, IMEI: 352094087230394) +2018/08/14 10:51:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:51:26 ruptelaNet.go:231: Sent ACK (client: [::1]:51661, IMEI: 352094087230394) +2018/08/14 10:51:27 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:51:27 ruptelaNet.go:217: Data received(client: [::1]:51664, IMEI: 352094087982671) +2018/08/14 10:51:27 ruptelaNet.go:231: Sent ACK (client: [::1]:51664, IMEI: 352094087982671) +2018/08/14 10:51:27 ruptelaNet.go:239: Close connection(client: [::1]:51661) +2018/08/14 10:51:30 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:51:30 ruptelaNet.go:217: Data received(client: [::1]:51664, IMEI: 352094087982671) +2018/08/14 10:51:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:51:30 ruptelaNet.go:231: Sent ACK (client: [::1]:51664, IMEI: 352094087982671) +2018/08/14 10:51:33 ruptelaNet.go:239: Close connection(client: [::1]:51664) +2018/08/14 10:51:55 ruptelaNet.go:170: New connection(client: [::1]:51738) +2018/08/14 10:51:57 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:51:57 ruptelaNet.go:217: Data received(client: [::1]:51738, IMEI: 352094087982671) +2018/08/14 10:51:57 ruptelaNet.go:231: Sent ACK (client: [::1]:51738, IMEI: 352094087982671) +2018/08/14 10:52:00 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:52:00 ruptelaNet.go:217: Data received(client: [::1]:51738, IMEI: 352094087982671) +2018/08/14 10:52:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:52:00 ruptelaNet.go:231: Sent ACK (client: [::1]:51738, IMEI: 352094087982671) +2018/08/14 10:52:03 ruptelaNet.go:239: Close connection(client: [::1]:51738) +2018/08/14 10:52:25 ruptelaNet.go:170: New connection(client: [::1]:51814) +2018/08/14 10:52:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:52:25 ruptelaNet.go:217: Data received(client: [::1]:51814, IMEI: 352094087230394) +2018/08/14 10:52:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51814, IMEI: 352094087230394) +2018/08/14 10:52:27 ruptelaNet.go:170: New connection(client: [::1]:51820) +2018/08/14 10:52:28 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:52:28 ruptelaNet.go:217: Data received(client: [::1]:51820, IMEI: 352094087982671) +2018/08/14 10:52:28 ruptelaNet.go:231: Sent ACK (client: [::1]:51820, IMEI: 352094087982671) +2018/08/14 10:52:30 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:52:30 ruptelaNet.go:217: Data received(client: [::1]:51814, IMEI: 352094087230394) +2018/08/14 10:52:30 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:52:30 ruptelaNet.go:231: Sent ACK (client: [::1]:51814, IMEI: 352094087230394) +2018/08/14 10:52:31 ruptelaNet.go:239: Close connection(client: [::1]:51814) +2018/08/14 10:52:32 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:52:32 ruptelaNet.go:217: Data received(client: [::1]:51820, IMEI: 352094087982671) +2018/08/14 10:52:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:52:32 ruptelaNet.go:231: Sent ACK (client: [::1]:51820, IMEI: 352094087982671) +2018/08/14 10:52:35 ruptelaNet.go:239: Close connection(client: [::1]:51820) +2018/08/14 10:52:57 ruptelaNet.go:170: New connection(client: [::1]:51894) +2018/08/14 10:52:59 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:52:59 ruptelaNet.go:217: Data received(client: [::1]:51894, IMEI: 352094087982671) +2018/08/14 10:52:59 ruptelaNet.go:231: Sent ACK (client: [::1]:51894, IMEI: 352094087982671) +2018/08/14 10:53:02 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:53:02 ruptelaNet.go:217: Data received(client: [::1]:51894, IMEI: 352094087982671) +2018/08/14 10:53:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:53:02 ruptelaNet.go:231: Sent ACK (client: [::1]:51894, IMEI: 352094087982671) +2018/08/14 10:53:05 ruptelaNet.go:239: Close connection(client: [::1]:51894) +2018/08/14 10:53:26 ruptelaNet.go:170: New connection(client: [::1]:51962) +2018/08/14 10:53:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:53:26 ruptelaNet.go:217: Data received(client: [::1]:51962, IMEI: 352094087230394) +2018/08/14 10:53:26 ruptelaNet.go:231: Sent ACK (client: [::1]:51962, IMEI: 352094087230394) +2018/08/14 10:53:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:53:28 ruptelaNet.go:217: Data received(client: [::1]:51962, IMEI: 352094087230394) +2018/08/14 10:53:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:53:28 ruptelaNet.go:231: Sent ACK (client: [::1]:51962, IMEI: 352094087230394) +2018/08/14 10:53:30 ruptelaNet.go:239: Close connection(client: [::1]:51962) +2018/08/14 10:53:30 ruptelaNet.go:170: New connection(client: [::1]:51970) +2018/08/14 10:53:31 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:53:31 ruptelaNet.go:217: Data received(client: [::1]:51970, IMEI: 352094087982671) +2018/08/14 10:53:31 ruptelaNet.go:231: Sent ACK (client: [::1]:51970, IMEI: 352094087982671) +2018/08/14 10:53:35 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:53:35 ruptelaNet.go:217: Data received(client: [::1]:51970, IMEI: 352094087982671) +2018/08/14 10:53:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:53:35 ruptelaNet.go:231: Sent ACK (client: [::1]:51970, IMEI: 352094087982671) +2018/08/14 10:53:37 ruptelaNet.go:239: Close connection(client: [::1]:51970) +2018/08/14 10:54:00 ruptelaNet.go:170: New connection(client: [::1]:52047) +2018/08/14 10:54:01 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:54:01 ruptelaNet.go:217: Data received(client: [::1]:52047, IMEI: 352094087982671) +2018/08/14 10:54:01 ruptelaNet.go:231: Sent ACK (client: [::1]:52047, IMEI: 352094087982671) +2018/08/14 10:54:05 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:54:05 ruptelaNet.go:217: Data received(client: [::1]:52047, IMEI: 352094087982671) +2018/08/14 10:54:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:54:05 ruptelaNet.go:231: Sent ACK (client: [::1]:52047, IMEI: 352094087982671) +2018/08/14 10:54:07 ruptelaNet.go:239: Close connection(client: [::1]:52047) +2018/08/14 10:54:24 ruptelaNet.go:170: New connection(client: [::1]:52117) +2018/08/14 10:54:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:54:24 ruptelaNet.go:217: Data received(client: [::1]:52117, IMEI: 352094087230394) +2018/08/14 10:54:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52117, IMEI: 352094087230394) +2018/08/14 10:54:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:54:27 ruptelaNet.go:217: Data received(client: [::1]:52117, IMEI: 352094087230394) +2018/08/14 10:54:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:54:27 ruptelaNet.go:231: Sent ACK (client: [::1]:52117, IMEI: 352094087230394) +2018/08/14 10:54:28 ruptelaNet.go:239: Close connection(client: [::1]:52117) +2018/08/14 10:54:30 ruptelaNet.go:170: New connection(client: [::1]:52133) +2018/08/14 10:54:32 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:54:32 ruptelaNet.go:217: Data received(client: [::1]:52133, IMEI: 352094087982671) +2018/08/14 10:54:32 ruptelaNet.go:231: Sent ACK (client: [::1]:52133, IMEI: 352094087982671) +2018/08/14 10:54:35 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:54:35 ruptelaNet.go:217: Data received(client: [::1]:52133, IMEI: 352094087982671) +2018/08/14 10:54:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:54:35 ruptelaNet.go:231: Sent ACK (client: [::1]:52133, IMEI: 352094087982671) +2018/08/14 10:54:38 ruptelaNet.go:239: Close connection(client: [::1]:52133) +2018/08/14 10:55:00 ruptelaNet.go:170: New connection(client: [::1]:52209) +2018/08/14 10:55:02 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:55:02 ruptelaNet.go:217: Data received(client: [::1]:52209, IMEI: 352094087982671) +2018/08/14 10:55:02 ruptelaNet.go:231: Sent ACK (client: [::1]:52209, IMEI: 352094087982671) +2018/08/14 10:55:07 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:55:07 ruptelaNet.go:217: Data received(client: [::1]:52209, IMEI: 352094087982671) +2018/08/14 10:55:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:55:07 ruptelaNet.go:231: Sent ACK (client: [::1]:52209, IMEI: 352094087982671) +2018/08/14 10:55:09 ruptelaNet.go:239: Close connection(client: [::1]:52209) +2018/08/14 10:55:26 ruptelaNet.go:170: New connection(client: [::1]:52272) +2018/08/14 10:55:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:55:26 ruptelaNet.go:217: Data received(client: [::1]:52272, IMEI: 352094087230394) +2018/08/14 10:55:26 ruptelaNet.go:231: Sent ACK (client: [::1]:52272, IMEI: 352094087230394) +2018/08/14 10:55:30 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:55:30 ruptelaNet.go:217: Data received(client: [::1]:52272, IMEI: 352094087230394) +2018/08/14 10:55:30 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:55:30 ruptelaNet.go:231: Sent ACK (client: [::1]:52272, IMEI: 352094087230394) +2018/08/14 10:55:31 ruptelaNet.go:239: Close connection(client: [::1]:52272) +2018/08/14 10:55:32 ruptelaNet.go:170: New connection(client: [::1]:52288) +2018/08/14 10:55:33 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:55:33 ruptelaNet.go:217: Data received(client: [::1]:52288, IMEI: 352094087982671) +2018/08/14 10:55:33 ruptelaNet.go:231: Sent ACK (client: [::1]:52288, IMEI: 352094087982671) +2018/08/14 10:55:41 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:55:41 ruptelaNet.go:217: Data received(client: [::1]:52288, IMEI: 352094087982671) +2018/08/14 10:55:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:55:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52288, IMEI: 352094087982671) +2018/08/14 10:55:57 ruptelaNet.go:239: Close connection(client: [::1]:52288) +2018/08/14 10:56:11 ruptelaNet.go:170: New connection(client: [::1]:52385) +2018/08/14 10:56:13 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:56:13 ruptelaNet.go:217: Data received(client: [::1]:52385, IMEI: 352094087982671) +2018/08/14 10:56:13 ruptelaNet.go:231: Sent ACK (client: [::1]:52385, IMEI: 352094087982671) +2018/08/14 10:56:16 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:56:16 ruptelaNet.go:217: Data received(client: [::1]:52385, IMEI: 352094087982671) +2018/08/14 10:56:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:56:16 ruptelaNet.go:231: Sent ACK (client: [::1]:52385, IMEI: 352094087982671) +2018/08/14 10:56:18 ruptelaNet.go:239: Close connection(client: [::1]:52385) +2018/08/14 10:56:24 ruptelaNet.go:170: New connection(client: [::1]:52416) +2018/08/14 10:56:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:56:24 ruptelaNet.go:217: Data received(client: [::1]:52416, IMEI: 352094087230394) +2018/08/14 10:56:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52416, IMEI: 352094087230394) +2018/08/14 10:56:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:56:27 ruptelaNet.go:217: Data received(client: [::1]:52416, IMEI: 352094087230394) +2018/08/14 10:56:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:56:27 ruptelaNet.go:231: Sent ACK (client: [::1]:52416, IMEI: 352094087230394) +2018/08/14 10:56:28 ruptelaNet.go:239: Close connection(client: [::1]:52416) +2018/08/14 10:56:41 ruptelaNet.go:170: New connection(client: [::1]:52454) +2018/08/14 10:56:43 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:56:43 ruptelaNet.go:217: Data received(client: [::1]:52454, IMEI: 352094087982671) +2018/08/14 10:56:43 ruptelaNet.go:231: Sent ACK (client: [::1]:52454, IMEI: 352094087982671) +2018/08/14 10:56:46 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:56:46 ruptelaNet.go:217: Data received(client: [::1]:52454, IMEI: 352094087982671) +2018/08/14 10:56:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:56:46 ruptelaNet.go:231: Sent ACK (client: [::1]:52454, IMEI: 352094087982671) +2018/08/14 10:56:48 ruptelaNet.go:239: Close connection(client: [::1]:52454) +2018/08/14 11:00:21 ruptelaNet.go:170: New connection(client: [::1]:52502) +2018/08/14 11:00:22 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:00:22 ruptelaNet.go:217: Data received(client: [::1]:52502, IMEI: 352094087982671) +2018/08/14 11:00:22 ruptelaNet.go:231: Sent ACK (client: [::1]:52502, IMEI: 352094087982671) +2018/08/14 11:00:23 ruptelaNet.go:170: New connection(client: [::1]:52513) +2018/08/14 11:00:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:00:23 ruptelaNet.go:217: Data received(client: [::1]:52513, IMEI: 352094087230394) +2018/08/14 11:00:23 ruptelaNet.go:231: Sent ACK (client: [::1]:52513, IMEI: 352094087230394) +2018/08/14 11:00:25 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:00:25 ruptelaNet.go:217: Data received(client: [::1]:52502, IMEI: 352094087982671) +2018/08/14 11:00:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:00:25 ruptelaNet.go:231: Sent ACK (client: [::1]:52502, IMEI: 352094087982671) +2018/08/14 11:00:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:00:25 ruptelaNet.go:217: Data received(client: [::1]:52513, IMEI: 352094087230394) +2018/08/14 11:00:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:00:25 ruptelaNet.go:231: Sent ACK (client: [::1]:52513, IMEI: 352094087230394) +2018/08/14 11:00:26 ruptelaNet.go:239: Close connection(client: [::1]:52513) +2018/08/14 11:00:27 ruptelaNet.go:239: Close connection(client: [::1]:52502) +2018/08/14 11:00:50 ruptelaNet.go:170: New connection(client: [::1]:52575) +2018/08/14 11:00:51 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:00:51 ruptelaNet.go:217: Data received(client: [::1]:52575, IMEI: 352094087982671) +2018/08/14 11:00:51 ruptelaNet.go:231: Sent ACK (client: [::1]:52575, IMEI: 352094087982671) +2018/08/14 11:00:56 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:00:56 ruptelaNet.go:217: Data received(client: [::1]:52575, IMEI: 352094087982671) +2018/08/14 11:00:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:00:56 ruptelaNet.go:231: Sent ACK (client: [::1]:52575, IMEI: 352094087982671) +2018/08/14 11:00:58 ruptelaNet.go:239: Close connection(client: [::1]:52575) +2018/08/14 11:01:21 ruptelaNet.go:170: New connection(client: [::1]:52634) +2018/08/14 11:01:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:01:24 ruptelaNet.go:217: Data received(client: [::1]:52634, IMEI: 352094087982671) +2018/08/14 11:01:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52634, IMEI: 352094087982671) +2018/08/14 11:01:24 ruptelaNet.go:170: New connection(client: [::1]:52643) +2018/08/14 11:01:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:01:24 ruptelaNet.go:217: Data received(client: [::1]:52643, IMEI: 352094087230394) +2018/08/14 11:01:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52643, IMEI: 352094087230394) +2018/08/14 11:01:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:01:28 ruptelaNet.go:217: Data received(client: [::1]:52643, IMEI: 352094087230394) +2018/08/14 11:01:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:01:28 ruptelaNet.go:231: Sent ACK (client: [::1]:52643, IMEI: 352094087230394) +2018/08/14 11:01:28 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:01:28 ruptelaNet.go:217: Data received(client: [::1]:52634, IMEI: 352094087982671) +2018/08/14 11:01:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:01:28 ruptelaNet.go:231: Sent ACK (client: [::1]:52634, IMEI: 352094087982671) +2018/08/14 11:01:29 ruptelaNet.go:239: Close connection(client: [::1]:52643) +2018/08/14 11:01:31 ruptelaNet.go:239: Close connection(client: [::1]:52634) +2018/08/14 11:01:54 ruptelaNet.go:170: New connection(client: [::1]:52695) +2018/08/14 11:01:55 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:01:55 ruptelaNet.go:217: Data received(client: [::1]:52695, IMEI: 352094087982671) +2018/08/14 11:01:55 ruptelaNet.go:231: Sent ACK (client: [::1]:52695, IMEI: 352094087982671) +2018/08/14 11:01:59 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:01:59 ruptelaNet.go:217: Data received(client: [::1]:52695, IMEI: 352094087982671) +2018/08/14 11:01:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:01:59 ruptelaNet.go:231: Sent ACK (client: [::1]:52695, IMEI: 352094087982671) +2018/08/14 11:02:01 ruptelaNet.go:239: Close connection(client: [::1]:52695) +2018/08/14 11:02:24 ruptelaNet.go:170: New connection(client: [::1]:52751) +2018/08/14 11:02:24 ruptelaNet.go:170: New connection(client: [::1]:52752) +2018/08/14 11:02:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:02:24 ruptelaNet.go:217: Data received(client: [::1]:52752, IMEI: 352094087230394) +2018/08/14 11:02:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52752, IMEI: 352094087230394) +2018/08/14 11:02:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:02:25 ruptelaNet.go:217: Data received(client: [::1]:52751, IMEI: 352094087982671) +2018/08/14 11:02:25 ruptelaNet.go:231: Sent ACK (client: [::1]:52751, IMEI: 352094087982671) +2018/08/14 11:02:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:02:26 ruptelaNet.go:217: Data received(client: [::1]:52752, IMEI: 352094087230394) +2018/08/14 11:02:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:02:26 ruptelaNet.go:231: Sent ACK (client: [::1]:52752, IMEI: 352094087230394) +2018/08/14 11:02:27 ruptelaNet.go:239: Close connection(client: [::1]:52752) +2018/08/14 11:02:28 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:02:28 ruptelaNet.go:217: Data received(client: [::1]:52751, IMEI: 352094087982671) +2018/08/14 11:02:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:02:28 ruptelaNet.go:231: Sent ACK (client: [::1]:52751, IMEI: 352094087982671) +2018/08/14 11:02:31 ruptelaNet.go:239: Close connection(client: [::1]:52751) +2018/08/14 11:02:55 ruptelaNet.go:170: New connection(client: [::1]:52813) +2018/08/14 11:02:55 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:02:55 ruptelaNet.go:217: Data received(client: [::1]:52813, IMEI: 352094087982671) +2018/08/14 11:02:55 ruptelaNet.go:231: Sent ACK (client: [::1]:52813, IMEI: 352094087982671) +2018/08/14 11:02:59 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:02:59 ruptelaNet.go:217: Data received(client: [::1]:52813, IMEI: 352094087982671) +2018/08/14 11:02:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:02:59 ruptelaNet.go:231: Sent ACK (client: [::1]:52813, IMEI: 352094087982671) +2018/08/14 11:03:02 ruptelaNet.go:239: Close connection(client: [::1]:52813) +2018/08/14 11:03:24 ruptelaNet.go:170: New connection(client: [::1]:52869) +2018/08/14 11:03:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:03:24 ruptelaNet.go:217: Data received(client: [::1]:52869, IMEI: 352094087230394) +2018/08/14 11:03:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52869, IMEI: 352094087230394) +2018/08/14 11:03:25 ruptelaNet.go:170: New connection(client: [::1]:52874) +2018/08/14 11:03:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:03:26 ruptelaNet.go:217: Data received(client: [::1]:52874, IMEI: 352094087982671) +2018/08/14 11:03:26 ruptelaNet.go:231: Sent ACK (client: [::1]:52874, IMEI: 352094087982671) +2018/08/14 11:03:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:03:27 ruptelaNet.go:217: Data received(client: [::1]:52869, IMEI: 352094087230394) +2018/08/14 11:03:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:03:27 ruptelaNet.go:231: Sent ACK (client: [::1]:52869, IMEI: 352094087230394) +2018/08/14 11:03:27 ruptelaNet.go:239: Close connection(client: [::1]:52869) +2018/08/14 11:03:30 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:03:30 ruptelaNet.go:217: Data received(client: [::1]:52874, IMEI: 352094087982671) +2018/08/14 11:03:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:03:30 ruptelaNet.go:231: Sent ACK (client: [::1]:52874, IMEI: 352094087982671) +2018/08/14 11:03:32 ruptelaNet.go:239: Close connection(client: [::1]:52874) +2018/08/14 11:03:55 ruptelaNet.go:170: New connection(client: [::1]:52921) +2018/08/14 11:03:56 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:03:56 ruptelaNet.go:217: Data received(client: [::1]:52921, IMEI: 352094087982671) +2018/08/14 11:03:56 ruptelaNet.go:231: Sent ACK (client: [::1]:52921, IMEI: 352094087982671) +2018/08/14 11:04:01 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:04:01 ruptelaNet.go:217: Data received(client: [::1]:52921, IMEI: 352094087982671) +2018/08/14 11:04:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:04:01 ruptelaNet.go:231: Sent ACK (client: [::1]:52921, IMEI: 352094087982671) +2018/08/14 11:04:07 ruptelaNet.go:239: Close connection(client: [::1]:52921) +2018/08/14 11:04:24 ruptelaNet.go:170: New connection(client: [::1]:52979) +2018/08/14 11:04:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:04:24 ruptelaNet.go:217: Data received(client: [::1]:52979, IMEI: 352094087230394) +2018/08/14 11:04:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52979, IMEI: 352094087230394) +2018/08/14 11:04:26 ruptelaNet.go:170: New connection(client: [::1]:52984) +2018/08/14 11:04:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:04:26 ruptelaNet.go:217: Data received(client: [::1]:52979, IMEI: 352094087230394) +2018/08/14 11:04:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:04:26 ruptelaNet.go:231: Sent ACK (client: [::1]:52979, IMEI: 352094087230394) +2018/08/14 11:04:27 ruptelaNet.go:239: Close connection(client: [::1]:52979) +2018/08/14 11:04:27 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:04:27 ruptelaNet.go:217: Data received(client: [::1]:52984, IMEI: 352094087982671) +2018/08/14 11:04:27 ruptelaNet.go:231: Sent ACK (client: [::1]:52984, IMEI: 352094087982671) +2018/08/14 11:04:30 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:04:30 ruptelaNet.go:217: Data received(client: [::1]:52984, IMEI: 352094087982671) +2018/08/14 11:04:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:04:30 ruptelaNet.go:231: Sent ACK (client: [::1]:52984, IMEI: 352094087982671) +2018/08/14 11:04:32 ruptelaNet.go:239: Close connection(client: [::1]:52984) +2018/08/14 11:04:55 ruptelaNet.go:170: New connection(client: [::1]:53041) +2018/08/14 11:04:56 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:04:56 ruptelaNet.go:217: Data received(client: [::1]:53041, IMEI: 352094087982671) +2018/08/14 11:04:56 ruptelaNet.go:231: Sent ACK (client: [::1]:53041, IMEI: 352094087982671) +2018/08/14 11:04:59 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:04:59 ruptelaNet.go:217: Data received(client: [::1]:53041, IMEI: 352094087982671) +2018/08/14 11:04:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:04:59 ruptelaNet.go:231: Sent ACK (client: [::1]:53041, IMEI: 352094087982671) +2018/08/14 11:05:02 ruptelaNet.go:239: Close connection(client: [::1]:53041) +2018/08/14 11:05:24 ruptelaNet.go:170: New connection(client: [::1]:53098) +2018/08/14 11:05:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:05:24 ruptelaNet.go:217: Data received(client: [::1]:53098, IMEI: 352094087230394) +2018/08/14 11:05:24 ruptelaNet.go:231: Sent ACK (client: [::1]:53098, IMEI: 352094087230394) +2018/08/14 11:05:25 ruptelaNet.go:170: New connection(client: [::1]:53101) +2018/08/14 11:05:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:05:26 ruptelaNet.go:217: Data received(client: [::1]:53098, IMEI: 352094087230394) +2018/08/14 11:05:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:05:26 ruptelaNet.go:217: Data received(client: [::1]:53101, IMEI: 352094087982671) +2018/08/14 11:05:26 ruptelaNet.go:231: Sent ACK (client: [::1]:53101, IMEI: 352094087982671) +2018/08/14 11:05:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:05:26 ruptelaNet.go:231: Sent ACK (client: [::1]:53098, IMEI: 352094087230394) +2018/08/14 11:05:27 ruptelaNet.go:239: Close connection(client: [::1]:53098) +2018/08/14 11:05:29 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:05:29 ruptelaNet.go:217: Data received(client: [::1]:53101, IMEI: 352094087982671) +2018/08/14 11:05:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:05:29 ruptelaNet.go:231: Sent ACK (client: [::1]:53101, IMEI: 352094087982671) +2018/08/14 11:05:36 ruptelaNet.go:239: Close connection(client: [::1]:53101) +2018/08/14 11:05:59 ruptelaNet.go:170: New connection(client: [::1]:53169) +2018/08/14 11:06:00 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:06:00 ruptelaNet.go:217: Data received(client: [::1]:53169, IMEI: 352094087982671) +2018/08/14 11:06:00 ruptelaNet.go:231: Sent ACK (client: [::1]:53169, IMEI: 352094087982671) +2018/08/14 11:06:04 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:06:04 ruptelaNet.go:217: Data received(client: [::1]:53169, IMEI: 352094087982671) +2018/08/14 11:06:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:06:04 ruptelaNet.go:231: Sent ACK (client: [::1]:53169, IMEI: 352094087982671) +2018/08/14 11:06:07 ruptelaNet.go:239: Close connection(client: [::1]:53169) +2018/08/14 11:06:24 ruptelaNet.go:170: New connection(client: [::1]:53222) +2018/08/14 11:06:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:06:24 ruptelaNet.go:217: Data received(client: [::1]:53222, IMEI: 352094087230394) +2018/08/14 11:06:24 ruptelaNet.go:231: Sent ACK (client: [::1]:53222, IMEI: 352094087230394) +2018/08/14 11:06:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:06:26 ruptelaNet.go:217: Data received(client: [::1]:53222, IMEI: 352094087230394) +2018/08/14 11:06:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:06:26 ruptelaNet.go:231: Sent ACK (client: [::1]:53222, IMEI: 352094087230394) +2018/08/14 11:06:28 ruptelaNet.go:239: Close connection(client: [::1]:53222) +2018/08/14 11:06:47 ruptelaNet.go:170: New connection(client: [::1]:53275) +2018/08/14 11:06:48 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:06:48 ruptelaNet.go:217: Data received(client: [::1]:53275, IMEI: 352094087982671) +2018/08/14 11:06:48 ruptelaNet.go:231: Sent ACK (client: [::1]:53275, IMEI: 352094087982671) +2018/08/14 11:06:51 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:06:51 ruptelaNet.go:217: Data received(client: [::1]:53275, IMEI: 352094087982671) +2018/08/14 11:06:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:06:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53275, IMEI: 352094087982671) +2018/08/14 11:06:54 ruptelaNet.go:239: Close connection(client: [::1]:53275) +2018/08/14 11:07:16 ruptelaNet.go:170: New connection(client: [::1]:53334) +2018/08/14 11:07:17 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:07:17 ruptelaNet.go:217: Data received(client: [::1]:53334, IMEI: 352094087982671) +2018/08/14 11:07:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53334, IMEI: 352094087982671) +2018/08/14 11:07:20 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:07:20 ruptelaNet.go:217: Data received(client: [::1]:53334, IMEI: 352094087982671) +2018/08/14 11:07:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:07:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53334, IMEI: 352094087982671) +2018/08/14 11:07:23 ruptelaNet.go:239: Close connection(client: [::1]:53334) +2018/08/14 11:07:25 ruptelaNet.go:170: New connection(client: [::1]:53353) +2018/08/14 11:07:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:07:25 ruptelaNet.go:217: Data received(client: [::1]:53353, IMEI: 352094087230394) +2018/08/14 11:07:25 ruptelaNet.go:231: Sent ACK (client: [::1]:53353, IMEI: 352094087230394) +2018/08/14 11:07:31 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:07:31 ruptelaNet.go:217: Data received(client: [::1]:53353, IMEI: 352094087230394) +2018/08/14 11:07:31 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:07:31 ruptelaNet.go:231: Sent ACK (client: [::1]:53353, IMEI: 352094087230394) +2018/08/14 11:07:32 ruptelaNet.go:239: Close connection(client: [::1]:53353) +2018/08/14 11:07:46 ruptelaNet.go:170: New connection(client: [::1]:53397) +2018/08/14 11:07:47 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:07:47 ruptelaNet.go:217: Data received(client: [::1]:53397, IMEI: 352094087982671) +2018/08/14 11:07:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53397, IMEI: 352094087982671) +2018/08/14 11:07:51 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:07:51 ruptelaNet.go:217: Data received(client: [::1]:53397, IMEI: 352094087982671) +2018/08/14 11:07:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:07:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53397, IMEI: 352094087982671) +2018/08/14 11:07:53 ruptelaNet.go:239: Close connection(client: [::1]:53397) +2018/08/14 11:08:16 ruptelaNet.go:170: New connection(client: [::1]:53449) +2018/08/14 11:08:17 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:08:17 ruptelaNet.go:217: Data received(client: [::1]:53449, IMEI: 352094087982671) +2018/08/14 11:08:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53449, IMEI: 352094087982671) +2018/08/14 11:08:20 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:08:20 ruptelaNet.go:217: Data received(client: [::1]:53449, IMEI: 352094087982671) +2018/08/14 11:08:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:08:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53449, IMEI: 352094087982671) +2018/08/14 11:08:23 ruptelaNet.go:239: Close connection(client: [::1]:53449) +2018/08/14 11:08:24 ruptelaNet.go:170: New connection(client: [::1]:53469) +2018/08/14 11:08:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:08:25 ruptelaNet.go:217: Data received(client: [::1]:53469, IMEI: 352094087230394) +2018/08/14 11:08:25 ruptelaNet.go:231: Sent ACK (client: [::1]:53469, IMEI: 352094087230394) +2018/08/14 11:08:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:08:27 ruptelaNet.go:217: Data received(client: [::1]:53469, IMEI: 352094087230394) +2018/08/14 11:08:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:08:27 ruptelaNet.go:231: Sent ACK (client: [::1]:53469, IMEI: 352094087230394) +2018/08/14 11:08:28 ruptelaNet.go:239: Close connection(client: [::1]:53469) +2018/08/14 11:08:46 ruptelaNet.go:170: New connection(client: [::1]:53512) +2018/08/14 11:08:48 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:08:48 ruptelaNet.go:217: Data received(client: [::1]:53512, IMEI: 352094087982671) +2018/08/14 11:08:48 ruptelaNet.go:231: Sent ACK (client: [::1]:53512, IMEI: 352094087982671) +2018/08/14 11:08:53 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:08:53 ruptelaNet.go:217: Data received(client: [::1]:53512, IMEI: 352094087982671) +2018/08/14 11:08:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:08:53 ruptelaNet.go:231: Sent ACK (client: [::1]:53512, IMEI: 352094087982671) +2018/08/14 11:08:57 ruptelaNet.go:239: Close connection(client: [::1]:53512) +2018/08/14 11:09:20 ruptelaNet.go:170: New connection(client: [::1]:53576) +2018/08/14 11:09:21 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:09:21 ruptelaNet.go:217: Data received(client: [::1]:53576, IMEI: 352094087982671) +2018/08/14 11:09:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53576, IMEI: 352094087982671) +2018/08/14 11:09:24 ruptelaNet.go:170: New connection(client: [::1]:53585) +2018/08/14 11:09:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:09:24 ruptelaNet.go:217: Data received(client: [::1]:53585, IMEI: 352094087230394) +2018/08/14 11:09:24 ruptelaNet.go:231: Sent ACK (client: [::1]:53585, IMEI: 352094087230394) +2018/08/14 11:09:25 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:09:25 ruptelaNet.go:217: Data received(client: [::1]:53576, IMEI: 352094087982671) +2018/08/14 11:09:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:09:25 ruptelaNet.go:231: Sent ACK (client: [::1]:53576, IMEI: 352094087982671) +2018/08/14 11:09:27 ruptelaNet.go:239: Close connection(client: [::1]:53576) +2018/08/14 11:09:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:09:27 ruptelaNet.go:217: Data received(client: [::1]:53585, IMEI: 352094087230394) +2018/08/14 11:09:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:09:27 ruptelaNet.go:231: Sent ACK (client: [::1]:53585, IMEI: 352094087230394) +2018/08/14 11:09:28 ruptelaNet.go:239: Close connection(client: [::1]:53585) +2018/08/14 11:09:51 ruptelaNet.go:170: New connection(client: [::1]:53642) +2018/08/14 11:09:51 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:09:51 ruptelaNet.go:217: Data received(client: [::1]:53642, IMEI: 352094087982671) +2018/08/14 11:09:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53642, IMEI: 352094087982671) +2018/08/14 11:09:55 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:09:55 ruptelaNet.go:217: Data received(client: [::1]:53642, IMEI: 352094087982671) +2018/08/14 11:09:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:09:55 ruptelaNet.go:231: Sent ACK (client: [::1]:53642, IMEI: 352094087982671) +2018/08/14 11:09:57 ruptelaNet.go:239: Close connection(client: [::1]:53642) +2018/08/14 11:10:21 ruptelaNet.go:170: New connection(client: [::1]:53787) +2018/08/14 11:10:22 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:10:22 ruptelaNet.go:217: Data received(client: [::1]:53787, IMEI: 352094087982671) +2018/08/14 11:10:22 ruptelaNet.go:231: Sent ACK (client: [::1]:53787, IMEI: 352094087982671) +2018/08/14 11:10:25 ruptelaNet.go:170: New connection(client: [::1]:53801) +2018/08/14 11:10:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:10:25 ruptelaNet.go:217: Data received(client: [::1]:53801, IMEI: 352094087230394) +2018/08/14 11:10:25 ruptelaNet.go:231: Sent ACK (client: [::1]:53801, IMEI: 352094087230394) +2018/08/14 11:10:26 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:10:26 ruptelaNet.go:217: Data received(client: [::1]:53787, IMEI: 352094087982671) +2018/08/14 11:10:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:10:26 ruptelaNet.go:231: Sent ACK (client: [::1]:53787, IMEI: 352094087982671) +2018/08/14 11:10:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:10:27 ruptelaNet.go:217: Data received(client: [::1]:53801, IMEI: 352094087230394) +2018/08/14 11:10:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:10:27 ruptelaNet.go:231: Sent ACK (client: [::1]:53801, IMEI: 352094087230394) +2018/08/14 11:10:28 ruptelaNet.go:239: Close connection(client: [::1]:53801) +2018/08/14 11:10:28 ruptelaNet.go:239: Close connection(client: [::1]:53787) +2018/08/14 11:10:51 ruptelaNet.go:170: New connection(client: [::1]:53927) +2018/08/14 11:10:53 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:10:53 ruptelaNet.go:217: Data received(client: [::1]:53927, IMEI: 352094087982671) +2018/08/14 11:10:53 ruptelaNet.go:231: Sent ACK (client: [::1]:53927, IMEI: 352094087982671) +2018/08/14 11:10:56 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:10:56 ruptelaNet.go:217: Data received(client: [::1]:53927, IMEI: 352094087982671) +2018/08/14 11:10:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:10:56 ruptelaNet.go:231: Sent ACK (client: [::1]:53927, IMEI: 352094087982671) +2018/08/14 11:11:00 ruptelaNet.go:239: Close connection(client: [::1]:53927) +2018/08/14 11:11:23 ruptelaNet.go:170: New connection(client: [::1]:54064) +2018/08/14 11:11:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:11:25 ruptelaNet.go:217: Data received(client: [::1]:54064, IMEI: 352094087982671) +2018/08/14 11:11:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54064, IMEI: 352094087982671) +2018/08/14 11:11:25 ruptelaNet.go:170: New connection(client: [::1]:54071) +2018/08/14 11:11:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:11:25 ruptelaNet.go:217: Data received(client: [::1]:54071, IMEI: 352094087230394) +2018/08/14 11:11:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54071, IMEI: 352094087230394) +2018/08/14 11:11:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:11:27 ruptelaNet.go:217: Data received(client: [::1]:54071, IMEI: 352094087230394) +2018/08/14 11:11:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:11:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54071, IMEI: 352094087230394) +2018/08/14 11:11:28 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:11:28 ruptelaNet.go:217: Data received(client: [::1]:54064, IMEI: 352094087982671) +2018/08/14 11:11:28 ruptelaNet.go:239: Close connection(client: [::1]:54071) +2018/08/14 11:11:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:11:28 ruptelaNet.go:231: Sent ACK (client: [::1]:54064, IMEI: 352094087982671) +2018/08/14 11:11:31 ruptelaNet.go:239: Close connection(client: [::1]:54064) +2018/08/14 11:12:03 ruptelaNet.go:170: New connection(client: [::1]:54243) +2018/08/14 11:12:06 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:12:06 ruptelaNet.go:217: Data received(client: [::1]:54243, IMEI: 352094087982671) +2018/08/14 11:12:06 ruptelaNet.go:231: Sent ACK (client: [::1]:54243, IMEI: 352094087982671) +2018/08/14 11:12:10 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:12:10 ruptelaNet.go:217: Data received(client: [::1]:54243, IMEI: 352094087982671) +2018/08/14 11:12:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:12:10 ruptelaNet.go:231: Sent ACK (client: [::1]:54243, IMEI: 352094087982671) +2018/08/14 11:12:12 ruptelaNet.go:239: Close connection(client: [::1]:54243) +2018/08/14 11:12:25 ruptelaNet.go:170: New connection(client: [::1]:54351) +2018/08/14 11:12:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:12:25 ruptelaNet.go:217: Data received(client: [::1]:54351, IMEI: 352094087230394) +2018/08/14 11:12:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54351, IMEI: 352094087230394) +2018/08/14 11:12:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:12:28 ruptelaNet.go:217: Data received(client: [::1]:54351, IMEI: 352094087230394) +2018/08/14 11:12:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:12:28 ruptelaNet.go:231: Sent ACK (client: [::1]:54351, IMEI: 352094087230394) +2018/08/14 11:12:29 ruptelaNet.go:239: Close connection(client: [::1]:54351) +2018/08/14 11:12:35 ruptelaNet.go:170: New connection(client: [::1]:54394) +2018/08/14 11:12:36 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:12:36 ruptelaNet.go:217: Data received(client: [::1]:54394, IMEI: 352094087982671) +2018/08/14 11:12:36 ruptelaNet.go:231: Sent ACK (client: [::1]:54394, IMEI: 352094087982671) +2018/08/14 11:12:41 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:12:41 ruptelaNet.go:217: Data received(client: [::1]:54394, IMEI: 352094087982671) +2018/08/14 11:12:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:12:41 ruptelaNet.go:231: Sent ACK (client: [::1]:54394, IMEI: 352094087982671) +2018/08/14 11:12:45 ruptelaNet.go:239: Close connection(client: [::1]:54394) +2018/08/14 11:13:07 ruptelaNet.go:170: New connection(client: [::1]:54531) +2018/08/14 11:13:09 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:13:09 ruptelaNet.go:217: Data received(client: [::1]:54531, IMEI: 352094087982671) +2018/08/14 11:13:09 ruptelaNet.go:231: Sent ACK (client: [::1]:54531, IMEI: 352094087982671) +2018/08/14 11:13:17 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:13:17 ruptelaNet.go:217: Data received(client: [::1]:54531, IMEI: 352094087982671) +2018/08/14 11:13:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:13:17 ruptelaNet.go:231: Sent ACK (client: [::1]:54531, IMEI: 352094087982671) +2018/08/14 11:13:25 ruptelaNet.go:239: Close connection(client: [::1]:54531) +2018/08/14 11:13:26 ruptelaNet.go:170: New connection(client: [::1]:54601) +2018/08/14 11:13:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:13:26 ruptelaNet.go:217: Data received(client: [::1]:54601, IMEI: 352094087230394) +2018/08/14 11:13:26 ruptelaNet.go:231: Sent ACK (client: [::1]:54601, IMEI: 352094087230394) +2018/08/14 11:13:31 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:13:31 ruptelaNet.go:217: Data received(client: [::1]:54601, IMEI: 352094087230394) +2018/08/14 11:13:31 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:13:31 ruptelaNet.go:231: Sent ACK (client: [::1]:54601, IMEI: 352094087230394) +2018/08/14 11:13:32 ruptelaNet.go:239: Close connection(client: [::1]:54601) +2018/08/14 11:13:46 ruptelaNet.go:170: New connection(client: [::1]:54644) +2018/08/14 11:13:48 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:13:48 ruptelaNet.go:217: Data received(client: [::1]:54644, IMEI: 352094087982671) +2018/08/14 11:13:48 ruptelaNet.go:231: Sent ACK (client: [::1]:54644, IMEI: 352094087982671) +2018/08/14 11:13:52 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:13:52 ruptelaNet.go:217: Data received(client: [::1]:54644, IMEI: 352094087982671) +2018/08/14 11:13:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:13:52 ruptelaNet.go:231: Sent ACK (client: [::1]:54644, IMEI: 352094087982671) +2018/08/14 11:13:56 ruptelaNet.go:239: Close connection(client: [::1]:54644) +2018/08/14 11:14:18 ruptelaNet.go:170: New connection(client: [::1]:54708) +2018/08/14 11:14:19 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:14:19 ruptelaNet.go:217: Data received(client: [::1]:54708, IMEI: 352094087982671) +2018/08/14 11:14:19 ruptelaNet.go:231: Sent ACK (client: [::1]:54708, IMEI: 352094087982671) +2018/08/14 11:14:23 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:14:23 ruptelaNet.go:217: Data received(client: [::1]:54708, IMEI: 352094087982671) +2018/08/14 11:14:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:14:23 ruptelaNet.go:231: Sent ACK (client: [::1]:54708, IMEI: 352094087982671) +2018/08/14 11:14:25 ruptelaNet.go:170: New connection(client: [::1]:54722) +2018/08/14 11:14:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:14:25 ruptelaNet.go:217: Data received(client: [::1]:54722, IMEI: 352094087230394) +2018/08/14 11:14:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54722, IMEI: 352094087230394) +2018/08/14 11:14:25 ruptelaNet.go:239: Close connection(client: [::1]:54708) +2018/08/14 11:14:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:14:27 ruptelaNet.go:217: Data received(client: [::1]:54722, IMEI: 352094087230394) +2018/08/14 11:14:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:14:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54722, IMEI: 352094087230394) +2018/08/14 11:14:28 ruptelaNet.go:239: Close connection(client: [::1]:54722) +2018/08/14 11:14:48 ruptelaNet.go:170: New connection(client: [::1]:54770) +2018/08/14 11:14:49 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:14:49 ruptelaNet.go:217: Data received(client: [::1]:54770, IMEI: 352094087982671) +2018/08/14 11:14:49 ruptelaNet.go:231: Sent ACK (client: [::1]:54770, IMEI: 352094087982671) +2018/08/14 11:14:53 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:14:53 ruptelaNet.go:217: Data received(client: [::1]:54770, IMEI: 352094087982671) +2018/08/14 11:14:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:14:53 ruptelaNet.go:231: Sent ACK (client: [::1]:54770, IMEI: 352094087982671) +2018/08/14 11:14:55 ruptelaNet.go:239: Close connection(client: [::1]:54770) +2018/08/14 11:15:18 ruptelaNet.go:170: New connection(client: [::1]:54837) +2018/08/14 11:15:20 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:15:20 ruptelaNet.go:217: Data received(client: [::1]:54837, IMEI: 352094087982671) +2018/08/14 11:15:20 ruptelaNet.go:231: Sent ACK (client: [::1]:54837, IMEI: 352094087982671) +2018/08/14 11:15:24 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:15:24 ruptelaNet.go:217: Data received(client: [::1]:54837, IMEI: 352094087982671) +2018/08/14 11:15:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:15:24 ruptelaNet.go:231: Sent ACK (client: [::1]:54837, IMEI: 352094087982671) +2018/08/14 11:15:24 ruptelaNet.go:170: New connection(client: [::1]:54850) +2018/08/14 11:15:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:15:24 ruptelaNet.go:217: Data received(client: [::1]:54850, IMEI: 352094087230394) +2018/08/14 11:15:24 ruptelaNet.go:231: Sent ACK (client: [::1]:54850, IMEI: 352094087230394) +2018/08/14 11:15:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:15:27 ruptelaNet.go:217: Data received(client: [::1]:54850, IMEI: 352094087230394) +2018/08/14 11:15:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:15:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54850, IMEI: 352094087230394) +2018/08/14 11:15:28 ruptelaNet.go:239: Close connection(client: [::1]:54850) +2018/08/14 11:15:28 ruptelaNet.go:239: Close connection(client: [::1]:54837) +2018/08/14 11:15:51 ruptelaNet.go:170: New connection(client: [::1]:54906) +2018/08/14 11:15:52 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:15:52 ruptelaNet.go:217: Data received(client: [::1]:54906, IMEI: 352094087982671) +2018/08/14 11:15:52 ruptelaNet.go:231: Sent ACK (client: [::1]:54906, IMEI: 352094087982671) +2018/08/14 11:15:56 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:15:56 ruptelaNet.go:217: Data received(client: [::1]:54906, IMEI: 352094087982671) +2018/08/14 11:15:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:15:56 ruptelaNet.go:231: Sent ACK (client: [::1]:54906, IMEI: 352094087982671) +2018/08/14 11:15:59 ruptelaNet.go:239: Close connection(client: [::1]:54906) +2018/08/14 11:16:22 ruptelaNet.go:170: New connection(client: [::1]:54964) +2018/08/14 11:16:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:16:23 ruptelaNet.go:217: Data received(client: [::1]:54964, IMEI: 352094087982671) +2018/08/14 11:16:23 ruptelaNet.go:231: Sent ACK (client: [::1]:54964, IMEI: 352094087982671) +2018/08/14 11:16:25 ruptelaNet.go:170: New connection(client: [::1]:54969) +2018/08/14 11:16:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:16:25 ruptelaNet.go:217: Data received(client: [::1]:54969, IMEI: 352094087230394) +2018/08/14 11:16:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54969, IMEI: 352094087230394) +2018/08/14 11:16:27 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:16:27 ruptelaNet.go:217: Data received(client: [::1]:54964, IMEI: 352094087982671) +2018/08/14 11:16:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:16:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54964, IMEI: 352094087982671) +2018/08/14 11:16:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:16:27 ruptelaNet.go:217: Data received(client: [::1]:54969, IMEI: 352094087230394) +2018/08/14 11:16:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:16:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54969, IMEI: 352094087230394) +2018/08/14 11:16:28 ruptelaNet.go:239: Close connection(client: [::1]:54969) +2018/08/14 11:16:29 ruptelaNet.go:239: Close connection(client: [::1]:54964) +2018/08/14 11:16:54 ruptelaNet.go:170: New connection(client: [::1]:55022) +2018/08/14 11:16:56 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:16:56 ruptelaNet.go:217: Data received(client: [::1]:55022, IMEI: 352094087982671) +2018/08/14 11:16:56 ruptelaNet.go:231: Sent ACK (client: [::1]:55022, IMEI: 352094087982671) +2018/08/14 11:16:59 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:16:59 ruptelaNet.go:217: Data received(client: [::1]:55022, IMEI: 352094087982671) +2018/08/14 11:17:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:17:00 ruptelaNet.go:231: Sent ACK (client: [::1]:55022, IMEI: 352094087982671) +2018/08/14 11:17:02 ruptelaNet.go:239: Close connection(client: [::1]:55022) +2018/08/14 11:17:25 ruptelaNet.go:170: New connection(client: [::1]:55080) +2018/08/14 11:17:25 ruptelaNet.go:170: New connection(client: [::1]:55081) +2018/08/14 11:17:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:17:25 ruptelaNet.go:217: Data received(client: [::1]:55081, IMEI: 352094087230394) +2018/08/14 11:17:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55081, IMEI: 352094087230394) +2018/08/14 11:17:27 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:17:27 ruptelaNet.go:217: Data received(client: [::1]:55080, IMEI: 352094087982671) +2018/08/14 11:17:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55080, IMEI: 352094087982671) +2018/08/14 11:17:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:17:28 ruptelaNet.go:217: Data received(client: [::1]:55081, IMEI: 352094087230394) +2018/08/14 11:17:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:17:28 ruptelaNet.go:231: Sent ACK (client: [::1]:55081, IMEI: 352094087230394) +2018/08/14 11:17:28 ruptelaNet.go:239: Close connection(client: [::1]:55081) +2018/08/14 11:17:30 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:17:30 ruptelaNet.go:217: Data received(client: [::1]:55080, IMEI: 352094087982671) +2018/08/14 11:17:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:17:30 ruptelaNet.go:231: Sent ACK (client: [::1]:55080, IMEI: 352094087982671) +2018/08/14 11:17:34 ruptelaNet.go:239: Close connection(client: [::1]:55080) +2018/08/14 11:17:55 ruptelaNet.go:170: New connection(client: [::1]:55142) +2018/08/14 11:17:56 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:17:56 ruptelaNet.go:217: Data received(client: [::1]:55142, IMEI: 352094087982671) +2018/08/14 11:17:56 ruptelaNet.go:231: Sent ACK (client: [::1]:55142, IMEI: 352094087982671) +2018/08/14 11:18:00 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:18:00 ruptelaNet.go:217: Data received(client: [::1]:55142, IMEI: 352094087982671) +2018/08/14 11:18:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:18:00 ruptelaNet.go:231: Sent ACK (client: [::1]:55142, IMEI: 352094087982671) +2018/08/14 11:18:06 ruptelaNet.go:239: Close connection(client: [::1]:55142) +2018/08/14 11:18:25 ruptelaNet.go:170: New connection(client: [::1]:55200) +2018/08/14 11:18:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:18:25 ruptelaNet.go:217: Data received(client: [::1]:55200, IMEI: 352094087230394) +2018/08/14 11:18:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55200, IMEI: 352094087230394) +2018/08/14 11:18:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:18:27 ruptelaNet.go:217: Data received(client: [::1]:55200, IMEI: 352094087230394) +2018/08/14 11:18:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:18:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55200, IMEI: 352094087230394) +2018/08/14 11:18:27 ruptelaNet.go:239: Close connection(client: [::1]:55200) +2018/08/14 11:18:29 ruptelaNet.go:170: New connection(client: [::1]:55209) +2018/08/14 11:18:30 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:18:30 ruptelaNet.go:217: Data received(client: [::1]:55209, IMEI: 352094087982671) +2018/08/14 11:18:30 ruptelaNet.go:231: Sent ACK (client: [::1]:55209, IMEI: 352094087982671) +2018/08/14 11:18:34 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:18:34 ruptelaNet.go:217: Data received(client: [::1]:55209, IMEI: 352094087982671) +2018/08/14 11:18:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:18:34 ruptelaNet.go:231: Sent ACK (client: [::1]:55209, IMEI: 352094087982671) +2018/08/14 11:18:41 ruptelaNet.go:239: Close connection(client: [::1]:55209) +2018/08/14 11:18:59 ruptelaNet.go:170: New connection(client: [::1]:55271) +2018/08/14 11:19:00 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:19:00 ruptelaNet.go:217: Data received(client: [::1]:55271, IMEI: 352094087982671) +2018/08/14 11:19:00 ruptelaNet.go:231: Sent ACK (client: [::1]:55271, IMEI: 352094087982671) +2018/08/14 11:19:04 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:19:04 ruptelaNet.go:217: Data received(client: [::1]:55271, IMEI: 352094087982671) +2018/08/14 11:19:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:19:04 ruptelaNet.go:231: Sent ACK (client: [::1]:55271, IMEI: 352094087982671) +2018/08/14 11:19:09 ruptelaNet.go:239: Close connection(client: [::1]:55271) +2018/08/14 11:19:25 ruptelaNet.go:170: New connection(client: [::1]:55321) +2018/08/14 11:19:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:19:25 ruptelaNet.go:217: Data received(client: [::1]:55321, IMEI: 352094087230394) +2018/08/14 11:19:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55321, IMEI: 352094087230394) +2018/08/14 11:19:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:19:27 ruptelaNet.go:217: Data received(client: [::1]:55321, IMEI: 352094087230394) +2018/08/14 11:19:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:19:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55321, IMEI: 352094087230394) +2018/08/14 11:19:28 ruptelaNet.go:239: Close connection(client: [::1]:55321) +2018/08/14 11:19:31 ruptelaNet.go:170: New connection(client: [::1]:55330) +2018/08/14 11:19:32 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:19:32 ruptelaNet.go:217: Data received(client: [::1]:55330, IMEI: 352094087982671) +2018/08/14 11:19:32 ruptelaNet.go:231: Sent ACK (client: [::1]:55330, IMEI: 352094087982671) +2018/08/14 11:19:35 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:19:35 ruptelaNet.go:217: Data received(client: [::1]:55330, IMEI: 352094087982671) +2018/08/14 11:19:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:19:35 ruptelaNet.go:231: Sent ACK (client: [::1]:55330, IMEI: 352094087982671) +2018/08/14 11:19:37 ruptelaNet.go:239: Close connection(client: [::1]:55330) +2018/08/14 11:20:01 ruptelaNet.go:170: New connection(client: [::1]:55388) +2018/08/14 11:20:02 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:20:02 ruptelaNet.go:217: Data received(client: [::1]:55388, IMEI: 352094087982671) +2018/08/14 11:20:02 ruptelaNet.go:231: Sent ACK (client: [::1]:55388, IMEI: 352094087982671) +2018/08/14 11:20:06 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:20:06 ruptelaNet.go:217: Data received(client: [::1]:55388, IMEI: 352094087982671) +2018/08/14 11:20:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:20:06 ruptelaNet.go:231: Sent ACK (client: [::1]:55388, IMEI: 352094087982671) +2018/08/14 11:20:10 ruptelaNet.go:239: Close connection(client: [::1]:55388) +2018/08/14 11:20:25 ruptelaNet.go:170: New connection(client: [::1]:55432) +2018/08/14 11:20:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:20:25 ruptelaNet.go:217: Data received(client: [::1]:55432, IMEI: 352094087230394) +2018/08/14 11:20:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55432, IMEI: 352094087230394) +2018/08/14 11:20:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:20:27 ruptelaNet.go:217: Data received(client: [::1]:55432, IMEI: 352094087230394) +2018/08/14 11:20:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:20:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55432, IMEI: 352094087230394) +2018/08/14 11:20:28 ruptelaNet.go:239: Close connection(client: [::1]:55432) +2018/08/14 11:20:32 ruptelaNet.go:170: New connection(client: [::1]:55445) +2018/08/14 11:20:34 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:20:34 ruptelaNet.go:217: Data received(client: [::1]:55445, IMEI: 352094087982671) +2018/08/14 11:20:34 ruptelaNet.go:231: Sent ACK (client: [::1]:55445, IMEI: 352094087982671) +2018/08/14 11:20:37 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:20:37 ruptelaNet.go:217: Data received(client: [::1]:55445, IMEI: 352094087982671) +2018/08/14 11:20:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:20:37 ruptelaNet.go:231: Sent ACK (client: [::1]:55445, IMEI: 352094087982671) +2018/08/14 11:20:40 ruptelaNet.go:239: Close connection(client: [::1]:55445) +2018/08/14 11:21:03 ruptelaNet.go:170: New connection(client: [::1]:55502) +2018/08/14 11:21:04 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:21:04 ruptelaNet.go:217: Data received(client: [::1]:55502, IMEI: 352094087982671) +2018/08/14 11:21:04 ruptelaNet.go:231: Sent ACK (client: [::1]:55502, IMEI: 352094087982671) +2018/08/14 11:21:09 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:21:09 ruptelaNet.go:217: Data received(client: [::1]:55502, IMEI: 352094087982671) +2018/08/14 11:21:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:21:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55502, IMEI: 352094087982671) +2018/08/14 11:21:11 ruptelaNet.go:239: Close connection(client: [::1]:55502) +2018/08/14 11:21:25 ruptelaNet.go:170: New connection(client: [::1]:55550) +2018/08/14 11:21:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:21:25 ruptelaNet.go:217: Data received(client: [::1]:55550, IMEI: 352094087230394) +2018/08/14 11:21:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55550, IMEI: 352094087230394) +2018/08/14 11:21:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:21:27 ruptelaNet.go:217: Data received(client: [::1]:55550, IMEI: 352094087230394) +2018/08/14 11:21:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:21:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55550, IMEI: 352094087230394) +2018/08/14 11:21:28 ruptelaNet.go:239: Close connection(client: [::1]:55550) +2018/08/14 11:21:35 ruptelaNet.go:170: New connection(client: [::1]:55569) +2018/08/14 11:21:35 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:21:35 ruptelaNet.go:217: Data received(client: [::1]:55569, IMEI: 352094087982671) +2018/08/14 11:21:35 ruptelaNet.go:231: Sent ACK (client: [::1]:55569, IMEI: 352094087982671) +2018/08/14 11:21:39 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:21:39 ruptelaNet.go:217: Data received(client: [::1]:55569, IMEI: 352094087982671) +2018/08/14 11:21:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:21:39 ruptelaNet.go:231: Sent ACK (client: [::1]:55569, IMEI: 352094087982671) +2018/08/14 11:21:41 ruptelaNet.go:239: Close connection(client: [::1]:55569) +2018/08/14 11:22:04 ruptelaNet.go:170: New connection(client: [::1]:55630) +2018/08/14 11:22:05 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:22:05 ruptelaNet.go:217: Data received(client: [::1]:55630, IMEI: 352094087982671) +2018/08/14 11:22:05 ruptelaNet.go:231: Sent ACK (client: [::1]:55630, IMEI: 352094087982671) +2018/08/14 11:22:09 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:22:09 ruptelaNet.go:217: Data received(client: [::1]:55630, IMEI: 352094087982671) +2018/08/14 11:22:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:22:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55630, IMEI: 352094087982671) +2018/08/14 11:22:11 ruptelaNet.go:239: Close connection(client: [::1]:55630) +2018/08/14 11:22:25 ruptelaNet.go:170: New connection(client: [::1]:55667) +2018/08/14 11:22:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:22:25 ruptelaNet.go:217: Data received(client: [::1]:55667, IMEI: 352094087230394) +2018/08/14 11:22:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55667, IMEI: 352094087230394) +2018/08/14 11:22:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:22:27 ruptelaNet.go:217: Data received(client: [::1]:55667, IMEI: 352094087230394) +2018/08/14 11:22:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:22:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55667, IMEI: 352094087230394) +2018/08/14 11:22:28 ruptelaNet.go:239: Close connection(client: [::1]:55667) +2018/08/14 11:22:34 ruptelaNet.go:170: New connection(client: [::1]:55689) +2018/08/14 11:22:35 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:22:35 ruptelaNet.go:217: Data received(client: [::1]:55689, IMEI: 352094087982671) +2018/08/14 11:22:35 ruptelaNet.go:231: Sent ACK (client: [::1]:55689, IMEI: 352094087982671) +2018/08/14 11:22:40 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:22:40 ruptelaNet.go:217: Data received(client: [::1]:55689, IMEI: 352094087982671) +2018/08/14 11:22:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:22:40 ruptelaNet.go:231: Sent ACK (client: [::1]:55689, IMEI: 352094087982671) +2018/08/14 11:22:42 ruptelaNet.go:239: Close connection(client: [::1]:55689) +2018/08/14 11:23:05 ruptelaNet.go:170: New connection(client: [::1]:55750) +2018/08/14 11:23:06 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:23:06 ruptelaNet.go:217: Data received(client: [::1]:55750, IMEI: 352094087982671) +2018/08/14 11:23:06 ruptelaNet.go:231: Sent ACK (client: [::1]:55750, IMEI: 352094087982671) +2018/08/14 11:23:09 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:23:09 ruptelaNet.go:217: Data received(client: [::1]:55750, IMEI: 352094087982671) +2018/08/14 11:23:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:23:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55750, IMEI: 352094087982671) +2018/08/14 11:23:12 ruptelaNet.go:239: Close connection(client: [::1]:55750) +2018/08/14 11:23:25 ruptelaNet.go:170: New connection(client: [::1]:55791) +2018/08/14 11:23:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:23:25 ruptelaNet.go:217: Data received(client: [::1]:55791, IMEI: 352094087230394) +2018/08/14 11:23:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55791, IMEI: 352094087230394) +2018/08/14 11:23:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:23:27 ruptelaNet.go:217: Data received(client: [::1]:55791, IMEI: 352094087230394) +2018/08/14 11:23:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:23:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55791, IMEI: 352094087230394) +2018/08/14 11:23:28 ruptelaNet.go:239: Close connection(client: [::1]:55791) +2018/08/14 11:23:35 ruptelaNet.go:170: New connection(client: [::1]:55812) +2018/08/14 11:23:36 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:23:36 ruptelaNet.go:217: Data received(client: [::1]:55812, IMEI: 352094087982671) +2018/08/14 11:23:36 ruptelaNet.go:231: Sent ACK (client: [::1]:55812, IMEI: 352094087982671) +2018/08/14 11:23:40 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:23:40 ruptelaNet.go:217: Data received(client: [::1]:55812, IMEI: 352094087982671) +2018/08/14 11:23:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:23:40 ruptelaNet.go:231: Sent ACK (client: [::1]:55812, IMEI: 352094087982671) +2018/08/14 11:23:45 ruptelaNet.go:239: Close connection(client: [::1]:55812) +2018/08/14 11:24:08 ruptelaNet.go:170: New connection(client: [::1]:55870) +2018/08/14 11:24:08 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:24:08 ruptelaNet.go:217: Data received(client: [::1]:55870, IMEI: 352094087982671) +2018/08/14 11:24:08 ruptelaNet.go:231: Sent ACK (client: [::1]:55870, IMEI: 352094087982671) +2018/08/14 11:24:12 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:24:12 ruptelaNet.go:217: Data received(client: [::1]:55870, IMEI: 352094087982671) +2018/08/14 11:24:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:24:12 ruptelaNet.go:231: Sent ACK (client: [::1]:55870, IMEI: 352094087982671) +2018/08/14 11:24:15 ruptelaNet.go:239: Close connection(client: [::1]:55870) +2018/08/14 11:24:25 ruptelaNet.go:170: New connection(client: [::1]:55909) +2018/08/14 11:24:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:24:25 ruptelaNet.go:217: Data received(client: [::1]:55909, IMEI: 352094087230394) +2018/08/14 11:24:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55909, IMEI: 352094087230394) +2018/08/14 11:24:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:24:28 ruptelaNet.go:217: Data received(client: [::1]:55909, IMEI: 352094087230394) +2018/08/14 11:24:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:24:28 ruptelaNet.go:231: Sent ACK (client: [::1]:55909, IMEI: 352094087230394) +2018/08/14 11:24:29 ruptelaNet.go:239: Close connection(client: [::1]:55909) +2018/08/14 11:24:37 ruptelaNet.go:170: New connection(client: [::1]:55935) +2018/08/14 11:24:38 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:24:38 ruptelaNet.go:217: Data received(client: [::1]:55935, IMEI: 352094087982671) +2018/08/14 11:24:38 ruptelaNet.go:231: Sent ACK (client: [::1]:55935, IMEI: 352094087982671) +2018/08/14 11:24:43 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:24:43 ruptelaNet.go:217: Data received(client: [::1]:55935, IMEI: 352094087982671) +2018/08/14 11:24:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:24:43 ruptelaNet.go:231: Sent ACK (client: [::1]:55935, IMEI: 352094087982671) +2018/08/14 11:24:45 ruptelaNet.go:239: Close connection(client: [::1]:55935) +2018/08/14 11:25:08 ruptelaNet.go:170: New connection(client: [::1]:55997) +2018/08/14 11:25:09 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:25:09 ruptelaNet.go:217: Data received(client: [::1]:55997, IMEI: 352094087982671) +2018/08/14 11:25:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55997, IMEI: 352094087982671) +2018/08/14 11:25:14 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:25:14 ruptelaNet.go:217: Data received(client: [::1]:55997, IMEI: 352094087982671) +2018/08/14 11:25:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:25:14 ruptelaNet.go:231: Sent ACK (client: [::1]:55997, IMEI: 352094087982671) +2018/08/14 11:25:16 ruptelaNet.go:239: Close connection(client: [::1]:55997) +2018/08/14 11:25:25 ruptelaNet.go:170: New connection(client: [::1]:56041) +2018/08/14 11:25:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:25:26 ruptelaNet.go:217: Data received(client: [::1]:56041, IMEI: 352094087230394) +2018/08/14 11:25:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56041, IMEI: 352094087230394) +2018/08/14 11:25:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:25:28 ruptelaNet.go:217: Data received(client: [::1]:56041, IMEI: 352094087230394) +2018/08/14 11:25:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:25:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56041, IMEI: 352094087230394) +2018/08/14 11:25:29 ruptelaNet.go:239: Close connection(client: [::1]:56041) +2018/08/14 11:25:39 ruptelaNet.go:170: New connection(client: [::1]:56068) +2018/08/14 11:25:40 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:25:40 ruptelaNet.go:217: Data received(client: [::1]:56068, IMEI: 352094087982671) +2018/08/14 11:25:40 ruptelaNet.go:231: Sent ACK (client: [::1]:56068, IMEI: 352094087982671) +2018/08/14 11:25:46 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:25:46 ruptelaNet.go:217: Data received(client: [::1]:56068, IMEI: 352094087982671) +2018/08/14 11:25:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:25:46 ruptelaNet.go:231: Sent ACK (client: [::1]:56068, IMEI: 352094087982671) +2018/08/14 11:25:48 ruptelaNet.go:239: Close connection(client: [::1]:56068) +2018/08/14 11:26:12 ruptelaNet.go:170: New connection(client: [::1]:56135) +2018/08/14 11:26:12 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:26:12 ruptelaNet.go:217: Data received(client: [::1]:56135, IMEI: 352094087982671) +2018/08/14 11:26:12 ruptelaNet.go:231: Sent ACK (client: [::1]:56135, IMEI: 352094087982671) +2018/08/14 11:26:16 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:26:16 ruptelaNet.go:217: Data received(client: [::1]:56135, IMEI: 352094087982671) +2018/08/14 11:26:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:26:16 ruptelaNet.go:231: Sent ACK (client: [::1]:56135, IMEI: 352094087982671) +2018/08/14 11:26:22 ruptelaNet.go:239: Close connection(client: [::1]:56135) +2018/08/14 11:26:26 ruptelaNet.go:170: New connection(client: [::1]:56166) +2018/08/14 11:26:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:26:26 ruptelaNet.go:217: Data received(client: [::1]:56166, IMEI: 352094087230394) +2018/08/14 11:26:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56166, IMEI: 352094087230394) +2018/08/14 11:26:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:26:28 ruptelaNet.go:217: Data received(client: [::1]:56166, IMEI: 352094087230394) +2018/08/14 11:26:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:26:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56166, IMEI: 352094087230394) +2018/08/14 11:26:29 ruptelaNet.go:239: Close connection(client: [::1]:56166) +2018/08/14 11:26:29 ruptelaNet.go:170: New connection(client: [::1]:56176) +2018/08/14 11:26:46 ruptelaNet.go:239: Close connection(client: [::1]:56176) +2018/08/14 11:26:46 ruptelaNet.go:170: New connection(client: [::1]:56208) +2018/08/14 11:26:46 ruptelaNet.go:170: New connection(client: [::1]:56207) +2018/08/14 11:26:46 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:26:46 ruptelaNet.go:217: Data received(client: [::1]:56207, IMEI: 352094087982671) +2018/08/14 11:26:46 ruptelaNet.go:231: Sent ACK (client: [::1]:56207, IMEI: 352094087982671) +2018/08/14 11:26:50 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:26:50 ruptelaNet.go:217: Data received(client: [::1]:56207, IMEI: 352094087982671) +2018/08/14 11:26:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:26:50 ruptelaNet.go:231: Sent ACK (client: [::1]:56207, IMEI: 352094087982671) +2018/08/14 11:26:56 ruptelaNet.go:239: Close connection(client: [::1]:56207) +2018/08/14 11:27:00 ruptelaNet.go:239: Close connection(client: [::1]:56208) +2018/08/14 11:27:19 ruptelaNet.go:170: New connection(client: [::1]:56274) +2018/08/14 11:27:20 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:27:20 ruptelaNet.go:217: Data received(client: [::1]:56274, IMEI: 352094087982671) +2018/08/14 11:27:20 ruptelaNet.go:231: Sent ACK (client: [::1]:56274, IMEI: 352094087982671) +2018/08/14 11:27:25 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:27:25 ruptelaNet.go:217: Data received(client: [::1]:56274, IMEI: 352094087982671) +2018/08/14 11:27:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:27:25 ruptelaNet.go:231: Sent ACK (client: [::1]:56274, IMEI: 352094087982671) +2018/08/14 11:27:26 ruptelaNet.go:170: New connection(client: [::1]:56290) +2018/08/14 11:27:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:27:26 ruptelaNet.go:217: Data received(client: [::1]:56290, IMEI: 352094087230394) +2018/08/14 11:27:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56290, IMEI: 352094087230394) +2018/08/14 11:27:27 ruptelaNet.go:239: Close connection(client: [::1]:56274) +2018/08/14 11:27:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:27:28 ruptelaNet.go:217: Data received(client: [::1]:56290, IMEI: 352094087230394) +2018/08/14 11:27:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:27:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56290, IMEI: 352094087230394) +2018/08/14 11:27:29 ruptelaNet.go:239: Close connection(client: [::1]:56290) +2018/08/14 11:27:50 ruptelaNet.go:170: New connection(client: [::1]:56343) +2018/08/14 11:27:52 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:27:52 ruptelaNet.go:217: Data received(client: [::1]:56343, IMEI: 352094087982671) +2018/08/14 11:27:52 ruptelaNet.go:231: Sent ACK (client: [::1]:56343, IMEI: 352094087982671) +2018/08/14 11:27:55 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:27:55 ruptelaNet.go:217: Data received(client: [::1]:56343, IMEI: 352094087982671) +2018/08/14 11:27:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:27:55 ruptelaNet.go:231: Sent ACK (client: [::1]:56343, IMEI: 352094087982671) +2018/08/14 11:27:58 ruptelaNet.go:239: Close connection(client: [::1]:56343) +2018/08/14 11:28:21 ruptelaNet.go:170: New connection(client: [::1]:56403) +2018/08/14 11:28:22 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:28:22 ruptelaNet.go:217: Data received(client: [::1]:56403, IMEI: 352094087982671) +2018/08/14 11:28:22 ruptelaNet.go:231: Sent ACK (client: [::1]:56403, IMEI: 352094087982671) +2018/08/14 11:28:26 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:28:26 ruptelaNet.go:217: Data received(client: [::1]:56403, IMEI: 352094087982671) +2018/08/14 11:28:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:28:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56403, IMEI: 352094087982671) +2018/08/14 11:28:26 ruptelaNet.go:170: New connection(client: [::1]:56413) +2018/08/14 11:28:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:28:26 ruptelaNet.go:217: Data received(client: [::1]:56413, IMEI: 352094087230394) +2018/08/14 11:28:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56413, IMEI: 352094087230394) +2018/08/14 11:28:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:28:28 ruptelaNet.go:217: Data received(client: [::1]:56413, IMEI: 352094087230394) +2018/08/14 11:28:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:28:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56413, IMEI: 352094087230394) +2018/08/14 11:28:28 ruptelaNet.go:239: Close connection(client: [::1]:56403) +2018/08/14 11:28:30 ruptelaNet.go:239: Close connection(client: [::1]:56413) +2018/08/14 11:28:51 ruptelaNet.go:170: New connection(client: [::1]:56461) +2018/08/14 11:28:52 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:28:52 ruptelaNet.go:217: Data received(client: [::1]:56461, IMEI: 352094087982671) +2018/08/14 11:28:52 ruptelaNet.go:231: Sent ACK (client: [::1]:56461, IMEI: 352094087982671) +2018/08/14 11:28:56 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:28:56 ruptelaNet.go:217: Data received(client: [::1]:56461, IMEI: 352094087982671) +2018/08/14 11:28:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:28:56 ruptelaNet.go:231: Sent ACK (client: [::1]:56461, IMEI: 352094087982671) +2018/08/14 11:28:59 ruptelaNet.go:239: Close connection(client: [::1]:56461) +2018/08/14 11:29:22 ruptelaNet.go:170: New connection(client: [::1]:56524) +2018/08/14 11:29:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:29:23 ruptelaNet.go:217: Data received(client: [::1]:56524, IMEI: 352094087982671) +2018/08/14 11:29:23 ruptelaNet.go:231: Sent ACK (client: [::1]:56524, IMEI: 352094087982671) +2018/08/14 11:29:27 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:29:27 ruptelaNet.go:217: Data received(client: [::1]:56524, IMEI: 352094087982671) +2018/08/14 11:29:27 ruptelaNet.go:170: New connection(client: [::1]:56533) +2018/08/14 11:29:27 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:29:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:29:27 ruptelaNet.go:217: Data received(client: [::1]:56533, IMEI: 352094087230394) +2018/08/14 11:29:27 ruptelaNet.go:231: Sent ACK (client: [::1]:56533, IMEI: 352094087230394) +2018/08/14 11:29:27 ruptelaNet.go:231: Sent ACK (client: [::1]:56524, IMEI: 352094087982671) +2018/08/14 11:29:29 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:29:29 ruptelaNet.go:217: Data received(client: [::1]:56533, IMEI: 352094087230394) +2018/08/14 11:29:29 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:29:29 ruptelaNet.go:231: Sent ACK (client: [::1]:56533, IMEI: 352094087230394) +2018/08/14 11:29:29 ruptelaNet.go:239: Close connection(client: [::1]:56524) +2018/08/14 11:29:30 ruptelaNet.go:239: Close connection(client: [::1]:56533) +2018/08/14 11:29:52 ruptelaNet.go:170: New connection(client: [::1]:56583) +2018/08/14 11:29:53 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:29:53 ruptelaNet.go:217: Data received(client: [::1]:56583, IMEI: 352094087982671) +2018/08/14 11:29:53 ruptelaNet.go:231: Sent ACK (client: [::1]:56583, IMEI: 352094087982671) +2018/08/14 11:29:57 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:29:57 ruptelaNet.go:217: Data received(client: [::1]:56583, IMEI: 352094087982671) +2018/08/14 11:29:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:29:57 ruptelaNet.go:231: Sent ACK (client: [::1]:56583, IMEI: 352094087982671) +2018/08/14 11:30:00 ruptelaNet.go:239: Close connection(client: [::1]:56583) +2018/08/14 11:30:23 ruptelaNet.go:170: New connection(client: [::1]:56642) +2018/08/14 11:30:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:30:25 ruptelaNet.go:217: Data received(client: [::1]:56642, IMEI: 352094087982671) +2018/08/14 11:30:25 ruptelaNet.go:231: Sent ACK (client: [::1]:56642, IMEI: 352094087982671) +2018/08/14 11:30:26 ruptelaNet.go:170: New connection(client: [::1]:56650) +2018/08/14 11:30:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:30:26 ruptelaNet.go:217: Data received(client: [::1]:56650, IMEI: 352094087230394) +2018/08/14 11:30:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56650, IMEI: 352094087230394) +2018/08/14 11:30:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:30:28 ruptelaNet.go:217: Data received(client: [::1]:56650, IMEI: 352094087230394) +2018/08/14 11:30:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:30:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56650, IMEI: 352094087230394) +2018/08/14 11:30:29 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:30:29 ruptelaNet.go:217: Data received(client: [::1]:56642, IMEI: 352094087982671) +2018/08/14 11:30:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:30:29 ruptelaNet.go:231: Sent ACK (client: [::1]:56642, IMEI: 352094087982671) +2018/08/14 11:30:29 ruptelaNet.go:239: Close connection(client: [::1]:56650) +2018/08/14 11:30:31 ruptelaNet.go:239: Close connection(client: [::1]:56642) +2018/08/14 11:30:54 ruptelaNet.go:170: New connection(client: [::1]:56704) +2018/08/14 11:30:55 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:30:55 ruptelaNet.go:217: Data received(client: [::1]:56704, IMEI: 352094087982671) +2018/08/14 11:30:55 ruptelaNet.go:231: Sent ACK (client: [::1]:56704, IMEI: 352094087982671) +2018/08/14 11:30:58 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:30:58 ruptelaNet.go:217: Data received(client: [::1]:56704, IMEI: 352094087982671) +2018/08/14 11:30:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:30:58 ruptelaNet.go:231: Sent ACK (client: [::1]:56704, IMEI: 352094087982671) +2018/08/14 11:31:01 ruptelaNet.go:239: Close connection(client: [::1]:56704) +2018/08/14 11:31:12 ruptelaNet.go:151: Signal: interrupt +2018/08/14 11:56:14 ruptelaNet.go:145: listening: [::]:4000 +2018/08/14 11:56:18 ruptelaNet.go:170: New connection(client: [::1]:59896) +2018/08/14 11:56:20 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:56:20 ruptelaNet.go:217: Data received(client: [::1]:59896, IMEI: 352094087982671) +2018/08/14 11:56:20 ruptelaNet.go:231: Sent ACK (client: [::1]:59896, IMEI: 352094087982671) +2018/08/14 11:56:24 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:56:24 ruptelaNet.go:217: Data received(client: [::1]:59896, IMEI: 352094087982671) +2018/08/14 11:56:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:56:24 ruptelaNet.go:231: Sent ACK (client: [::1]:59896, IMEI: 352094087982671) +2018/08/14 11:56:26 ruptelaNet.go:239: Close connection(client: [::1]:59896) +2018/08/14 11:56:29 ruptelaNet.go:170: New connection(client: [::1]:59917) +2018/08/14 11:56:29 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:56:29 ruptelaNet.go:217: Data received(client: [::1]:59917, IMEI: 352094087230394) +2018/08/14 11:56:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59917, IMEI: 352094087230394) +2018/08/14 11:56:31 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:56:31 ruptelaNet.go:217: Data received(client: [::1]:59917, IMEI: 352094087230394) +2018/08/14 11:56:31 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:56:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59917, IMEI: 352094087230394) +2018/08/14 11:56:32 ruptelaNet.go:239: Close connection(client: [::1]:59917) +2018/08/14 11:56:48 ruptelaNet.go:170: New connection(client: [::1]:59950) +2018/08/14 11:56:50 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:56:50 ruptelaNet.go:217: Data received(client: [::1]:59950, IMEI: 352094087982671) +2018/08/14 11:56:50 ruptelaNet.go:231: Sent ACK (client: [::1]:59950, IMEI: 352094087982671) +2018/08/14 11:56:53 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:56:53 ruptelaNet.go:217: Data received(client: [::1]:59950, IMEI: 352094087982671) +2018/08/14 11:56:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:56:53 ruptelaNet.go:231: Sent ACK (client: [::1]:59950, IMEI: 352094087982671) +2018/08/14 11:56:55 ruptelaNet.go:239: Close connection(client: [::1]:59950) +2018/08/14 11:57:18 ruptelaNet.go:170: New connection(client: [::1]:60004) +2018/08/14 11:57:19 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:57:19 ruptelaNet.go:217: Data received(client: [::1]:60004, IMEI: 352094087982671) +2018/08/14 11:57:19 ruptelaNet.go:231: Sent ACK (client: [::1]:60004, IMEI: 352094087982671) +2018/08/14 11:57:22 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:57:22 ruptelaNet.go:217: Data received(client: [::1]:60004, IMEI: 352094087982671) +2018/08/14 11:57:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:57:22 ruptelaNet.go:231: Sent ACK (client: [::1]:60004, IMEI: 352094087982671) +2018/08/14 11:57:24 ruptelaNet.go:239: Close connection(client: [::1]:60004) +2018/08/14 11:57:29 ruptelaNet.go:170: New connection(client: [::1]:60031) +2018/08/14 11:57:29 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:57:29 ruptelaNet.go:217: Data received(client: [::1]:60031, IMEI: 352094087230394) +2018/08/14 11:57:29 ruptelaNet.go:231: Sent ACK (client: [::1]:60031, IMEI: 352094087230394) +2018/08/14 11:57:31 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:57:31 ruptelaNet.go:217: Data received(client: [::1]:60031, IMEI: 352094087230394) +2018/08/14 11:57:31 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:57:31 ruptelaNet.go:231: Sent ACK (client: [::1]:60031, IMEI: 352094087230394) +2018/08/14 11:57:32 ruptelaNet.go:239: Close connection(client: [::1]:60031) +2018/08/14 11:57:47 ruptelaNet.go:170: New connection(client: [::1]:60067) +2018/08/14 11:57:49 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:57:49 ruptelaNet.go:217: Data received(client: [::1]:60067, IMEI: 352094087982671) +2018/08/14 11:57:49 ruptelaNet.go:231: Sent ACK (client: [::1]:60067, IMEI: 352094087982671) +2018/08/14 11:57:52 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:57:52 ruptelaNet.go:217: Data received(client: [::1]:60067, IMEI: 352094087982671) +2018/08/14 11:57:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:57:52 ruptelaNet.go:231: Sent ACK (client: [::1]:60067, IMEI: 352094087982671) +2018/08/14 11:57:54 ruptelaNet.go:239: Close connection(client: [::1]:60067) +2018/08/14 11:58:00 ruptelaNet.go:151: Signal: interrupt +2018/08/14 11:59:09 ruptelaNet.go:145: listening: [::]:4000 +2018/08/14 12:03:33 ruptelaNet.go:151: Signal: interrupt +2018/09/04 12:34:50 deviceServer.go:89: PID file will be created +2018/09/04 12:34:50 deviceServer.go:92: PID: 72036 +2018/09/04 12:34:50 deviceServer.go:98: PID file created +2018/09/04 12:34:50 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:35:01 ruptelaNet.go:156: Signal: interrupt +2018/09/04 12:49:29 deviceServer.go:89: PID file will be created +2018/09/04 12:49:29 deviceServer.go:92: PID: 72843 +2018/09/04 12:49:29 deviceServer.go:98: PID file created +2018/09/04 12:49:29 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:50:00 deviceServer.go:89: PID file will be created +2018/09/04 12:50:00 deviceServer.go:92: PID: 72914 +2018/09/04 12:50:00 deviceServer.go:98: PID file created +2018/09/04 12:50:00 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:50:18 ruptelaNet.go:156: Signal: interrupt +2018/09/04 12:52:51 deviceServer.go:89: PID file will be created +2018/09/04 12:52:51 deviceServer.go:92: PID: 73033 +2018/09/04 12:52:51 deviceServer.go:98: PID file created +2018/09/04 12:52:51 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:53:15 ruptelaNet.go:156: Signal: interrupt +2018/09/04 12:57:20 deviceServer.go:89: PID file will be created +2018/09/04 12:57:20 deviceServer.go:92: PID: 73366 +2018/09/04 12:57:20 deviceServer.go:98: PID file created +2018/09/04 12:57:20 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:57:51 deviceServer.go:89: PID file will be created +2018/09/04 12:57:51 deviceServer.go:92: PID: 73378 +2018/09/04 12:57:51 deviceServer.go:98: PID file created +2018/09/04 12:57:51 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:58:22 deviceServer.go:89: PID file will be created +2018/09/04 12:58:22 deviceServer.go:92: PID: 73389 +2018/09/04 12:58:22 deviceServer.go:98: PID file created +2018/09/04 12:58:22 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:58:53 deviceServer.go:89: PID file will be created +2018/09/04 12:58:53 deviceServer.go:92: PID: 73401 +2018/09/04 12:58:53 deviceServer.go:98: PID file created +2018/09/04 12:58:53 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:59:24 deviceServer.go:89: PID file will be created +2018/09/04 12:59:24 deviceServer.go:92: PID: 73412 +2018/09/04 12:59:24 deviceServer.go:98: PID file created +2018/09/04 12:59:24 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:59:55 deviceServer.go:89: PID file will be created +2018/09/04 12:59:55 deviceServer.go:92: PID: 73424 +2018/09/04 12:59:55 deviceServer.go:98: PID file created +2018/09/04 12:59:55 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:00:26 deviceServer.go:89: PID file will be created +2018/09/04 13:00:26 deviceServer.go:92: PID: 73436 +2018/09/04 13:00:26 deviceServer.go:98: PID file created +2018/09/04 13:00:26 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:00:57 deviceServer.go:89: PID file will be created +2018/09/04 13:00:57 deviceServer.go:92: PID: 73449 +2018/09/04 13:00:57 deviceServer.go:98: PID file created +2018/09/04 13:00:57 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:01:28 deviceServer.go:89: PID file will be created +2018/09/04 13:01:28 deviceServer.go:92: PID: 73460 +2018/09/04 13:01:28 deviceServer.go:98: PID file created +2018/09/04 13:01:28 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:01:59 deviceServer.go:89: PID file will be created +2018/09/04 13:01:59 deviceServer.go:92: PID: 73472 +2018/09/04 13:01:59 deviceServer.go:98: PID file created +2018/09/04 13:01:59 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:02:30 deviceServer.go:89: PID file will be created +2018/09/04 13:02:30 deviceServer.go:92: PID: 73483 +2018/09/04 13:02:30 deviceServer.go:98: PID file created +2018/09/04 13:02:30 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:03:01 deviceServer.go:89: PID file will be created +2018/09/04 13:03:01 deviceServer.go:92: PID: 73495 +2018/09/04 13:03:01 deviceServer.go:98: PID file created +2018/09/04 13:03:01 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:03:32 deviceServer.go:89: PID file will be created +2018/09/04 13:03:32 deviceServer.go:92: PID: 73507 +2018/09/04 13:03:32 deviceServer.go:98: PID file created +2018/09/04 13:03:32 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:03:40 ruptelaNet.go:156: Signal: interrupt +2018/09/06 20:06:21 deviceServer.go:89: PID file will be created +2018/09/06 20:06:21 deviceServer.go:92: PID: 2145 +2018/09/06 20:06:21 deviceServer.go:98: PID file created +2018/09/06 20:06:21 ruptelaNet.go:150: listening: [::]:4000 +2018/09/06 20:06:29 ruptelaNet.go:156: Signal: interrupt +2018/09/06 20:07:29 deviceServer.go:89: PID file will be created +2018/09/06 20:07:29 deviceServer.go:92: PID: 2173 +2018/09/06 20:07:29 deviceServer.go:98: PID file created +2018/09/06 20:07:29 ruptelaNet.go:150: listening: [::]:4000 +2018/09/06 20:07:40 ruptelaNet.go:156: Signal: interrupt +2018/09/06 20:11:08 deviceServer.go:89: PID file will be created +2018/09/06 20:11:08 deviceServer.go:92: PID: 2212 +2018/09/06 20:11:08 deviceServer.go:98: PID file created +2018/09/06 20:11:08 ruptelaNet.go:150: listening: [::]:4000 +2018/09/06 20:11:39 deviceServer.go:89: PID file will be created +2018/09/06 20:11:39 deviceServer.go:92: PID: 2282 +2018/09/06 20:11:39 deviceServer.go:98: PID file created +2018/09/06 20:11:39 ruptelaNet.go:150: listening: [::]:4000 +2018/09/06 20:11:56 ruptelaNet.go:156: Signal: interrupt +2018/09/15 16:48:55 deviceServer.go:89: PID file will be created +2018/09/15 16:48:55 deviceServer.go:92: PID: 9828 +2018/09/15 16:48:55 deviceServer.go:98: PID file created +2018/09/15 16:48:55 ruptelaNet.go:151: listening: [::]:4000 +2018/09/15 16:49:14 ruptelaNet.go:176: teltonika New connection(client: [::1]:63162) +2018/09/15 16:49:14 ruptelaNet.go:179: teltonika addrString = [::1]:63162) +2018/09/15 16:49:14 ruptelaNet.go:310: data packet length : 15 +2018/09/15 16:49:14 ruptelaNet.go:226: Data received(client: [::1]:63162, IMEI: 352094089712860) +2018/09/15 16:49:14 ruptelaNet.go:240: Sent ACK (client: [::1]:63162, IMEI: 352094089712860) +2018/09/15 16:49:17 ruptelaNet.go:310: data packet length : 978 +2018/09/15 16:49:17 ruptelaNet.go:226: Data received(client: [::1]:63162, IMEI: 352094089712860) +2018/09/15 16:49:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/15 16:49:17 ruptelaNet.go:240: Sent ACK (client: [::1]:63162, IMEI: 352094089712860) +2018/09/15 16:49:17 ruptelaNet.go:248: teltonika Close connection(client: [::1]:63162) +2018/09/15 16:50:15 ruptelaNet.go:176: teltonika New connection(client: [::1]:63171) +2018/09/15 16:50:15 ruptelaNet.go:179: teltonika addrString = [::1]:63171) +2018/09/15 16:50:15 ruptelaNet.go:310: data packet length : 15 +2018/09/15 16:50:15 ruptelaNet.go:226: Data received(client: [::1]:63171, IMEI: 352094089712860) +2018/09/15 16:50:15 ruptelaNet.go:240: Sent ACK (client: [::1]:63171, IMEI: 352094089712860) +2018/09/15 16:50:19 ruptelaNet.go:157: Signal: interrupt +2018/09/15 16:50:19 ruptelaNet.go:248: teltonika Close connection(client: [::1]:63171) +2018/09/16 00:49:00 deviceServer.go:89: PID file will be created +2018/09/16 00:49:00 deviceServer.go:92: PID: 12115 +2018/09/16 00:49:00 deviceServer.go:98: PID file created +2018/09/16 00:49:00 ruptelaNet.go:168: listening: [::]:4000 +2018/09/16 00:49:28 ruptelaNet.go:193: teltonika New connection(client: [::1]:51015) +2018/09/16 00:49:28 ruptelaNet.go:340: data packet length : 15 +2018/09/16 00:49:28 ruptelaNet.go:253: Data received(client: [::1]:51015, IMEI: 352094089712860) +2018/09/16 00:49:28 ruptelaNet.go:270: Sent ACK (client: [::1]:51015, IMEI: 352094089712860) +2018/09/16 00:49:30 ruptelaNet.go:340: data packet length : 978 +2018/09/16 00:49:30 ruptelaNet.go:253: Data received(client: [::1]:51015, IMEI: 352094089712860) +2018/09/16 00:49:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:49:30 ruptelaNet.go:270: Sent ACK (client: [::1]:51015, IMEI: 352094089712860) +2018/09/16 00:49:30 ruptelaNet.go:278: teltonika Close connection(client: [::1]:51015) +2018/09/16 00:50:28 ruptelaNet.go:193: teltonika New connection(client: [::1]:51019) +2018/09/16 00:50:28 ruptelaNet.go:340: data packet length : 15 +2018/09/16 00:50:28 ruptelaNet.go:253: Data received(client: [::1]:51019, IMEI: 352094089712860) +2018/09/16 00:50:28 ruptelaNet.go:270: Sent ACK (client: [::1]:51019, IMEI: 352094089712860) +2018/09/16 00:50:29 ruptelaNet.go:340: data packet length : 978 +2018/09/16 00:50:29 ruptelaNet.go:253: Data received(client: [::1]:51019, IMEI: 352094089712860) +2018/09/16 00:50:29 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:50:29 ruptelaNet.go:270: Sent ACK (client: [::1]:51019, IMEI: 352094089712860) +2018/09/16 00:50:30 ruptelaNet.go:278: teltonika Close connection(client: [::1]:51019) +2018/09/16 00:51:28 ruptelaNet.go:193: teltonika New connection(client: [::1]:51044) +2018/09/16 00:51:28 ruptelaNet.go:340: data packet length : 15 +2018/09/16 00:51:28 ruptelaNet.go:253: Data received(client: [::1]:51044, IMEI: 352094089712860) +2018/09/16 00:51:28 ruptelaNet.go:270: Sent ACK (client: [::1]:51044, IMEI: 352094089712860) +2018/09/16 00:51:30 ruptelaNet.go:340: data packet length : 978 +2018/09/16 00:51:30 ruptelaNet.go:253: Data received(client: [::1]:51044, IMEI: 352094089712860) +2018/09/16 00:51:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:51:30 ruptelaNet.go:270: Sent ACK (client: [::1]:51044, IMEI: 352094089712860) +2018/09/16 00:51:31 ruptelaNet.go:278: teltonika Close connection(client: [::1]:51044) +2018/09/16 00:51:41 ruptelaNet.go:174: Signal: interrupt +2018/09/16 00:56:10 deviceServer.go:89: PID file will be created +2018/09/16 00:56:10 deviceServer.go:92: PID: 12215 +2018/09/16 00:56:10 deviceServer.go:98: PID file created +2018/09/16 00:56:10 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 00:56:28 ruptelaNet.go:199: teltonika New connection(client: [::1]:51090) +2018/09/16 00:56:28 ruptelaNet.go:347: data packet length : 15 +2018/09/16 00:56:28 ruptelaNet.go:259: Data received(client: [::1]:51090, IMEI: 352094089712860) +2018/09/16 00:56:28 ruptelaNet.go:276: Sent ACK (client: [::1]:51090, IMEI: 352094089712860) +2018/09/16 00:56:30 ruptelaNet.go:347: data packet length : 978 +2018/09/16 00:56:30 ruptelaNet.go:259: Data received(client: [::1]:51090, IMEI: 352094089712860) +2018/09/16 00:56:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:56:30 ruptelaNet.go:276: Sent ACK (client: [::1]:51090, IMEI: 352094089712860) +2018/09/16 00:56:31 ruptelaNet.go:285: teltonika Close connection(client: [::1]:51090) +2018/09/16 00:57:28 ruptelaNet.go:199: teltonika New connection(client: [::1]:51421) +2018/09/16 00:57:28 ruptelaNet.go:347: data packet length : 15 +2018/09/16 00:57:28 ruptelaNet.go:259: Data received(client: [::1]:51421, IMEI: 352094089712860) +2018/09/16 00:57:28 ruptelaNet.go:276: Sent ACK (client: [::1]:51421, IMEI: 352094089712860) +2018/09/16 00:57:30 ruptelaNet.go:347: data packet length : 978 +2018/09/16 00:57:30 ruptelaNet.go:259: Data received(client: [::1]:51421, IMEI: 352094089712860) +2018/09/16 00:57:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:57:30 ruptelaNet.go:276: Sent ACK (client: [::1]:51421, IMEI: 352094089712860) +2018/09/16 00:57:31 ruptelaNet.go:285: teltonika Close connection(client: [::1]:51421) +2018/09/16 00:58:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:51732) +2018/09/16 00:58:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 00:58:29 ruptelaNet.go:259: Data received(client: [::1]:51732, IMEI: 352094089712860) +2018/09/16 00:58:29 ruptelaNet.go:276: Sent ACK (client: [::1]:51732, IMEI: 352094089712860) +2018/09/16 00:58:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 00:58:31 ruptelaNet.go:259: Data received(client: [::1]:51732, IMEI: 352094089712860) +2018/09/16 00:58:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:58:31 ruptelaNet.go:276: Sent ACK (client: [::1]:51732, IMEI: 352094089712860) +2018/09/16 00:58:31 ruptelaNet.go:285: teltonika Close connection(client: [::1]:51732) +2018/09/16 00:59:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:52035) +2018/09/16 00:59:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 00:59:29 ruptelaNet.go:259: Data received(client: [::1]:52035, IMEI: 352094089712860) +2018/09/16 00:59:29 ruptelaNet.go:276: Sent ACK (client: [::1]:52035, IMEI: 352094089712860) +2018/09/16 00:59:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 00:59:31 ruptelaNet.go:259: Data received(client: [::1]:52035, IMEI: 352094089712860) +2018/09/16 00:59:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:59:31 ruptelaNet.go:276: Sent ACK (client: [::1]:52035, IMEI: 352094089712860) +2018/09/16 00:59:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:52035) +2018/09/16 01:00:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:52329) +2018/09/16 01:00:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:00:29 ruptelaNet.go:259: Data received(client: [::1]:52329, IMEI: 352094089712860) +2018/09/16 01:00:29 ruptelaNet.go:276: Sent ACK (client: [::1]:52329, IMEI: 352094089712860) +2018/09/16 01:00:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:00:31 ruptelaNet.go:259: Data received(client: [::1]:52329, IMEI: 352094089712860) +2018/09/16 01:00:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:00:31 ruptelaNet.go:276: Sent ACK (client: [::1]:52329, IMEI: 352094089712860) +2018/09/16 01:00:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:52329) +2018/09/16 01:01:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:52634) +2018/09/16 01:01:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:01:29 ruptelaNet.go:259: Data received(client: [::1]:52634, IMEI: 352094089712860) +2018/09/16 01:01:29 ruptelaNet.go:276: Sent ACK (client: [::1]:52634, IMEI: 352094089712860) +2018/09/16 01:01:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:01:31 ruptelaNet.go:259: Data received(client: [::1]:52634, IMEI: 352094089712860) +2018/09/16 01:01:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:01:31 ruptelaNet.go:276: Sent ACK (client: [::1]:52634, IMEI: 352094089712860) +2018/09/16 01:01:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:52634) +2018/09/16 01:02:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:52947) +2018/09/16 01:02:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:02:29 ruptelaNet.go:259: Data received(client: [::1]:52947, IMEI: 352094089712860) +2018/09/16 01:02:29 ruptelaNet.go:276: Sent ACK (client: [::1]:52947, IMEI: 352094089712860) +2018/09/16 01:02:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:02:31 ruptelaNet.go:259: Data received(client: [::1]:52947, IMEI: 352094089712860) +2018/09/16 01:02:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:02:31 ruptelaNet.go:276: Sent ACK (client: [::1]:52947, IMEI: 352094089712860) +2018/09/16 01:02:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:52947) +2018/09/16 01:03:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:53226) +2018/09/16 01:03:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:03:29 ruptelaNet.go:259: Data received(client: [::1]:53226, IMEI: 352094089712860) +2018/09/16 01:03:29 ruptelaNet.go:276: Sent ACK (client: [::1]:53226, IMEI: 352094089712860) +2018/09/16 01:03:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:03:32 ruptelaNet.go:259: Data received(client: [::1]:53226, IMEI: 352094089712860) +2018/09/16 01:03:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:03:32 ruptelaNet.go:276: Sent ACK (client: [::1]:53226, IMEI: 352094089712860) +2018/09/16 01:03:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53226) +2018/09/16 01:04:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:53402) +2018/09/16 01:04:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:04:29 ruptelaNet.go:259: Data received(client: [::1]:53402, IMEI: 352094089712860) +2018/09/16 01:04:29 ruptelaNet.go:276: Sent ACK (client: [::1]:53402, IMEI: 352094089712860) +2018/09/16 01:04:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:04:31 ruptelaNet.go:259: Data received(client: [::1]:53402, IMEI: 352094089712860) +2018/09/16 01:04:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:04:31 ruptelaNet.go:276: Sent ACK (client: [::1]:53402, IMEI: 352094089712860) +2018/09/16 01:04:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53402) +2018/09/16 01:05:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:53565) +2018/09/16 01:05:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:05:29 ruptelaNet.go:259: Data received(client: [::1]:53565, IMEI: 352094089712860) +2018/09/16 01:05:29 ruptelaNet.go:276: Sent ACK (client: [::1]:53565, IMEI: 352094089712860) +2018/09/16 01:05:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:05:31 ruptelaNet.go:259: Data received(client: [::1]:53565, IMEI: 352094089712860) +2018/09/16 01:05:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:05:31 ruptelaNet.go:276: Sent ACK (client: [::1]:53565, IMEI: 352094089712860) +2018/09/16 01:05:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53565) +2018/09/16 01:06:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:53720) +2018/09/16 01:06:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:06:30 ruptelaNet.go:259: Data received(client: [::1]:53720, IMEI: 352094089712860) +2018/09/16 01:06:30 ruptelaNet.go:276: Sent ACK (client: [::1]:53720, IMEI: 352094089712860) +2018/09/16 01:06:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:06:31 ruptelaNet.go:259: Data received(client: [::1]:53720, IMEI: 352094089712860) +2018/09/16 01:06:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:06:32 ruptelaNet.go:276: Sent ACK (client: [::1]:53720, IMEI: 352094089712860) +2018/09/16 01:06:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53720) +2018/09/16 01:07:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:53830) +2018/09/16 01:07:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:07:30 ruptelaNet.go:259: Data received(client: [::1]:53830, IMEI: 352094089712860) +2018/09/16 01:07:30 ruptelaNet.go:276: Sent ACK (client: [::1]:53830, IMEI: 352094089712860) +2018/09/16 01:07:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:07:32 ruptelaNet.go:259: Data received(client: [::1]:53830, IMEI: 352094089712860) +2018/09/16 01:07:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:07:32 ruptelaNet.go:276: Sent ACK (client: [::1]:53830, IMEI: 352094089712860) +2018/09/16 01:07:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53830) +2018/09/16 01:08:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:53944) +2018/09/16 01:08:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:08:30 ruptelaNet.go:259: Data received(client: [::1]:53944, IMEI: 352094089712860) +2018/09/16 01:08:30 ruptelaNet.go:276: Sent ACK (client: [::1]:53944, IMEI: 352094089712860) +2018/09/16 01:08:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:08:31 ruptelaNet.go:259: Data received(client: [::1]:53944, IMEI: 352094089712860) +2018/09/16 01:08:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:08:31 ruptelaNet.go:276: Sent ACK (client: [::1]:53944, IMEI: 352094089712860) +2018/09/16 01:08:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53944) +2018/09/16 01:09:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54049) +2018/09/16 01:09:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:09:30 ruptelaNet.go:259: Data received(client: [::1]:54049, IMEI: 352094089712860) +2018/09/16 01:09:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54049, IMEI: 352094089712860) +2018/09/16 01:09:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:09:32 ruptelaNet.go:259: Data received(client: [::1]:54049, IMEI: 352094089712860) +2018/09/16 01:09:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:09:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54049, IMEI: 352094089712860) +2018/09/16 01:09:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54049) +2018/09/16 01:10:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54160) +2018/09/16 01:10:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:10:30 ruptelaNet.go:259: Data received(client: [::1]:54160, IMEI: 352094089712860) +2018/09/16 01:10:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54160, IMEI: 352094089712860) +2018/09/16 01:10:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:10:32 ruptelaNet.go:259: Data received(client: [::1]:54160, IMEI: 352094089712860) +2018/09/16 01:10:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:10:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54160, IMEI: 352094089712860) +2018/09/16 01:10:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54160) +2018/09/16 01:11:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54276) +2018/09/16 01:11:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:11:30 ruptelaNet.go:259: Data received(client: [::1]:54276, IMEI: 352094089712860) +2018/09/16 01:11:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54276, IMEI: 352094089712860) +2018/09/16 01:11:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:11:32 ruptelaNet.go:259: Data received(client: [::1]:54276, IMEI: 352094089712860) +2018/09/16 01:11:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:11:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54276, IMEI: 352094089712860) +2018/09/16 01:11:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54276) +2018/09/16 01:12:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54402) +2018/09/16 01:12:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:12:30 ruptelaNet.go:259: Data received(client: [::1]:54402, IMEI: 352094089712860) +2018/09/16 01:12:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54402, IMEI: 352094089712860) +2018/09/16 01:12:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:12:32 ruptelaNet.go:259: Data received(client: [::1]:54402, IMEI: 352094089712860) +2018/09/16 01:12:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:12:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54402, IMEI: 352094089712860) +2018/09/16 01:12:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54402) +2018/09/16 01:13:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54523) +2018/09/16 01:13:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:13:30 ruptelaNet.go:259: Data received(client: [::1]:54523, IMEI: 352094089712860) +2018/09/16 01:13:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54523, IMEI: 352094089712860) +2018/09/16 01:13:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:13:32 ruptelaNet.go:259: Data received(client: [::1]:54523, IMEI: 352094089712860) +2018/09/16 01:13:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:13:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54523, IMEI: 352094089712860) +2018/09/16 01:13:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54523) +2018/09/16 01:14:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:54649) +2018/09/16 01:14:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:14:31 ruptelaNet.go:259: Data received(client: [::1]:54649, IMEI: 352094089712860) +2018/09/16 01:14:31 ruptelaNet.go:276: Sent ACK (client: [::1]:54649, IMEI: 352094089712860) +2018/09/16 01:14:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:14:33 ruptelaNet.go:259: Data received(client: [::1]:54649, IMEI: 352094089712860) +2018/09/16 01:14:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:14:33 ruptelaNet.go:276: Sent ACK (client: [::1]:54649, IMEI: 352094089712860) +2018/09/16 01:14:36 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54649) +2018/09/16 01:15:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54769) +2018/09/16 01:15:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:15:30 ruptelaNet.go:259: Data received(client: [::1]:54769, IMEI: 352094089712860) +2018/09/16 01:15:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54769, IMEI: 352094089712860) +2018/09/16 01:15:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:15:32 ruptelaNet.go:259: Data received(client: [::1]:54769, IMEI: 352094089712860) +2018/09/16 01:15:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:15:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54769, IMEI: 352094089712860) +2018/09/16 01:15:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54769) +2018/09/16 01:16:32 ruptelaNet.go:199: teltonika New connection(client: [::1]:54884) +2018/09/16 01:16:32 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:16:32 ruptelaNet.go:259: Data received(client: [::1]:54884, IMEI: 352094089712860) +2018/09/16 01:16:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54884, IMEI: 352094089712860) +2018/09/16 01:16:34 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:16:34 ruptelaNet.go:259: Data received(client: [::1]:54884, IMEI: 352094089712860) +2018/09/16 01:16:34 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:16:34 ruptelaNet.go:276: Sent ACK (client: [::1]:54884, IMEI: 352094089712860) +2018/09/16 01:16:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54884) +2018/09/16 01:17:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:54994) +2018/09/16 01:17:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:17:31 ruptelaNet.go:259: Data received(client: [::1]:54994, IMEI: 352094089712860) +2018/09/16 01:17:31 ruptelaNet.go:276: Sent ACK (client: [::1]:54994, IMEI: 352094089712860) +2018/09/16 01:17:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:17:33 ruptelaNet.go:259: Data received(client: [::1]:54994, IMEI: 352094089712860) +2018/09/16 01:17:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:17:33 ruptelaNet.go:276: Sent ACK (client: [::1]:54994, IMEI: 352094089712860) +2018/09/16 01:17:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54994) +2018/09/16 01:18:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55107) +2018/09/16 01:18:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:18:31 ruptelaNet.go:259: Data received(client: [::1]:55107, IMEI: 352094089712860) +2018/09/16 01:18:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55107, IMEI: 352094089712860) +2018/09/16 01:18:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:18:33 ruptelaNet.go:259: Data received(client: [::1]:55107, IMEI: 352094089712860) +2018/09/16 01:18:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:18:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55107, IMEI: 352094089712860) +2018/09/16 01:18:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55107) +2018/09/16 01:19:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:55231) +2018/09/16 01:19:34 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:19:34 ruptelaNet.go:259: Data received(client: [::1]:55231, IMEI: 352094089712860) +2018/09/16 01:19:34 ruptelaNet.go:276: Sent ACK (client: [::1]:55231, IMEI: 352094089712860) +2018/09/16 01:19:39 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:19:39 ruptelaNet.go:259: Data received(client: [::1]:55231, IMEI: 352094089712860) +2018/09/16 01:19:39 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:19:39 ruptelaNet.go:276: Sent ACK (client: [::1]:55231, IMEI: 352094089712860) +2018/09/16 01:19:40 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55231) +2018/09/16 01:20:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55347) +2018/09/16 01:20:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:20:31 ruptelaNet.go:259: Data received(client: [::1]:55347, IMEI: 352094089712860) +2018/09/16 01:20:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55347, IMEI: 352094089712860) +2018/09/16 01:20:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:20:33 ruptelaNet.go:259: Data received(client: [::1]:55347, IMEI: 352094089712860) +2018/09/16 01:20:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:20:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55347, IMEI: 352094089712860) +2018/09/16 01:20:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55347) +2018/09/16 01:21:08 ruptelaNet.go:199: teltonika New connection(client: [::1]:55418) +2018/09/16 01:21:24 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55418) +2018/09/16 01:21:24 ruptelaNet.go:199: teltonika New connection(client: [::1]:55448) +2018/09/16 01:21:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55462) +2018/09/16 01:21:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:21:31 ruptelaNet.go:259: Data received(client: [::1]:55462, IMEI: 352094089712860) +2018/09/16 01:21:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55462, IMEI: 352094089712860) +2018/09/16 01:21:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:21:33 ruptelaNet.go:259: Data received(client: [::1]:55462, IMEI: 352094089712860) +2018/09/16 01:21:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:21:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55462, IMEI: 352094089712860) +2018/09/16 01:21:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55462) +2018/09/16 01:21:40 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55448) +2018/09/16 01:22:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55573) +2018/09/16 01:22:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:22:31 ruptelaNet.go:259: Data received(client: [::1]:55573, IMEI: 352094089712860) +2018/09/16 01:22:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55573, IMEI: 352094089712860) +2018/09/16 01:22:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:22:33 ruptelaNet.go:259: Data received(client: [::1]:55573, IMEI: 352094089712860) +2018/09/16 01:22:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:22:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55573, IMEI: 352094089712860) +2018/09/16 01:22:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55573) +2018/09/16 01:23:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55688) +2018/09/16 01:23:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:23:31 ruptelaNet.go:259: Data received(client: [::1]:55688, IMEI: 352094089712860) +2018/09/16 01:23:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55688, IMEI: 352094089712860) +2018/09/16 01:23:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:23:33 ruptelaNet.go:259: Data received(client: [::1]:55688, IMEI: 352094089712860) +2018/09/16 01:23:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:23:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55688, IMEI: 352094089712860) +2018/09/16 01:23:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55688) +2018/09/16 01:23:45 ruptelaNet.go:180: Signal: interrupt +2018/09/16 01:40:09 deviceServer.go:89: PID file will be created +2018/09/16 01:40:09 deviceServer.go:92: PID: 12644 +2018/09/16 01:40:09 deviceServer.go:98: PID file created +2018/09/16 01:40:09 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 01:40:33 ruptelaNet.go:199: teltonika New connection(client: [::1]:60118) +2018/09/16 01:40:33 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:40:33 ruptelaNet.go:259: Data received(client: [::1]:60118, IMEI: 352094089712860) +2018/09/16 01:40:33 ruptelaNet.go:276: Sent ACK (client: [::1]:60118, IMEI: 352094089712860) +2018/09/16 01:40:35 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:40:35 ruptelaNet.go:259: Data received(client: [::1]:60118, IMEI: 352094089712860) +2018/09/16 01:40:35 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:40:35 ruptelaNet.go:276: Sent ACK (client: [::1]:60118, IMEI: 352094089712860) +2018/09/16 01:40:36 ruptelaNet.go:285: teltonika Close connection(client: [::1]:60118) +2018/09/16 01:40:38 ruptelaNet.go:180: Signal: interrupt +2018/09/16 01:45:56 deviceServer.go:89: PID file will be created +2018/09/16 01:45:56 deviceServer.go:92: PID: 12696 +2018/09/16 01:45:56 deviceServer.go:98: PID file created +2018/09/16 01:45:56 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 01:46:33 ruptelaNet.go:199: teltonika New connection(client: [::1]:61997) +2018/09/16 01:46:33 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:46:33 ruptelaNet.go:259: Data received(client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 01:46:33 ruptelaNet.go:276: Sent ACK (client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 01:46:35 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:46:35 ruptelaNet.go:259: Data received(client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 01:46:35 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:46:35 ruptelaNet.go:276: Sent ACK (client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 01:46:36 ruptelaNet.go:285: teltonika Close connection(client: [::1]:61997) +2018/09/16 01:46:44 ruptelaNet.go:199: teltonika New connection(client: [::1]:62049) +2018/09/16 01:46:45 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:46:45 ruptelaNet.go:259: Data received(client: [::1]:62049, IMEI: 352094087982671) +2018/09/16 01:46:45 ruptelaNet.go:276: Sent ACK (client: [::1]:62049, IMEI: 352094087982671) +2018/09/16 01:46:48 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:46:48 ruptelaNet.go:259: Data received(client: [::1]:62049, IMEI: 352094087982671) +2018/09/16 01:46:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:46:48 ruptelaNet.go:276: Sent ACK (client: [::1]:62049, IMEI: 352094087982671) +2018/09/16 01:46:50 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62049) +2018/09/16 01:47:14 ruptelaNet.go:199: teltonika New connection(client: [::1]:62207) +2018/09/16 01:47:15 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:47:15 ruptelaNet.go:259: Data received(client: [::1]:62207, IMEI: 352094087982671) +2018/09/16 01:47:15 ruptelaNet.go:276: Sent ACK (client: [::1]:62207, IMEI: 352094087982671) +2018/09/16 01:47:18 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:47:18 ruptelaNet.go:259: Data received(client: [::1]:62207, IMEI: 352094087982671) +2018/09/16 01:47:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:47:18 ruptelaNet.go:276: Sent ACK (client: [::1]:62207, IMEI: 352094087982671) +2018/09/16 01:47:20 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62207) +2018/09/16 01:47:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:62301) +2018/09/16 01:47:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:47:34 ruptelaNet.go:259: Data received(client: [::1]:62301, IMEI: 352094089712860) +2018/09/16 01:47:34 ruptelaNet.go:276: Sent ACK (client: [::1]:62301, IMEI: 352094089712860) +2018/09/16 01:47:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:47:36 ruptelaNet.go:259: Data received(client: [::1]:62301, IMEI: 352094089712860) +2018/09/16 01:47:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:47:36 ruptelaNet.go:276: Sent ACK (client: [::1]:62301, IMEI: 352094089712860) +2018/09/16 01:47:36 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62301) +2018/09/16 01:47:44 ruptelaNet.go:199: teltonika New connection(client: [::1]:62357) +2018/09/16 01:47:45 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:47:45 ruptelaNet.go:259: Data received(client: [::1]:62357, IMEI: 352094087982671) +2018/09/16 01:47:45 ruptelaNet.go:276: Sent ACK (client: [::1]:62357, IMEI: 352094087982671) +2018/09/16 01:47:48 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:47:48 ruptelaNet.go:259: Data received(client: [::1]:62357, IMEI: 352094087982671) +2018/09/16 01:47:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:47:48 ruptelaNet.go:276: Sent ACK (client: [::1]:62357, IMEI: 352094087982671) +2018/09/16 01:47:50 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62357) +2018/09/16 01:48:13 ruptelaNet.go:199: teltonika New connection(client: [::1]:62507) +2018/09/16 01:48:14 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:48:14 ruptelaNet.go:259: Data received(client: [::1]:62507, IMEI: 352094087982671) +2018/09/16 01:48:14 ruptelaNet.go:276: Sent ACK (client: [::1]:62507, IMEI: 352094087982671) +2018/09/16 01:48:17 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:48:17 ruptelaNet.go:259: Data received(client: [::1]:62507, IMEI: 352094087982671) +2018/09/16 01:48:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:48:17 ruptelaNet.go:276: Sent ACK (client: [::1]:62507, IMEI: 352094087982671) +2018/09/16 01:48:19 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62507) +2018/09/16 01:48:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:62615) +2018/09/16 01:48:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:48:34 ruptelaNet.go:259: Data received(client: [::1]:62615, IMEI: 352094089712860) +2018/09/16 01:48:34 ruptelaNet.go:276: Sent ACK (client: [::1]:62615, IMEI: 352094089712860) +2018/09/16 01:48:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:48:36 ruptelaNet.go:259: Data received(client: [::1]:62615, IMEI: 352094089712860) +2018/09/16 01:48:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:48:36 ruptelaNet.go:276: Sent ACK (client: [::1]:62615, IMEI: 352094089712860) +2018/09/16 01:48:37 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62615) +2018/09/16 01:48:43 ruptelaNet.go:199: teltonika New connection(client: [::1]:62662) +2018/09/16 01:48:44 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:48:44 ruptelaNet.go:259: Data received(client: [::1]:62662, IMEI: 352094087982671) +2018/09/16 01:48:44 ruptelaNet.go:276: Sent ACK (client: [::1]:62662, IMEI: 352094087982671) +2018/09/16 01:48:47 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:48:47 ruptelaNet.go:259: Data received(client: [::1]:62662, IMEI: 352094087982671) +2018/09/16 01:48:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:48:47 ruptelaNet.go:276: Sent ACK (client: [::1]:62662, IMEI: 352094087982671) +2018/09/16 01:48:49 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62662) +2018/09/16 01:49:13 ruptelaNet.go:199: teltonika New connection(client: [::1]:62816) +2018/09/16 01:49:14 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:49:14 ruptelaNet.go:259: Data received(client: [::1]:62816, IMEI: 352094087982671) +2018/09/16 01:49:14 ruptelaNet.go:276: Sent ACK (client: [::1]:62816, IMEI: 352094087982671) +2018/09/16 01:49:17 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:49:17 ruptelaNet.go:259: Data received(client: [::1]:62816, IMEI: 352094087982671) +2018/09/16 01:49:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:49:17 ruptelaNet.go:276: Sent ACK (client: [::1]:62816, IMEI: 352094087982671) +2018/09/16 01:49:19 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62816) +2018/09/16 01:49:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:62924) +2018/09/16 01:49:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:49:34 ruptelaNet.go:259: Data received(client: [::1]:62924, IMEI: 352094089712860) +2018/09/16 01:49:34 ruptelaNet.go:276: Sent ACK (client: [::1]:62924, IMEI: 352094089712860) +2018/09/16 01:49:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:49:36 ruptelaNet.go:259: Data received(client: [::1]:62924, IMEI: 352094089712860) +2018/09/16 01:49:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:49:36 ruptelaNet.go:276: Sent ACK (client: [::1]:62924, IMEI: 352094089712860) +2018/09/16 01:49:37 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62924) +2018/09/16 01:49:43 ruptelaNet.go:199: teltonika New connection(client: [::1]:62972) +2018/09/16 01:49:44 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:49:44 ruptelaNet.go:259: Data received(client: [::1]:62972, IMEI: 352094087982671) +2018/09/16 01:49:44 ruptelaNet.go:276: Sent ACK (client: [::1]:62972, IMEI: 352094087982671) +2018/09/16 01:49:48 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:49:48 ruptelaNet.go:259: Data received(client: [::1]:62972, IMEI: 352094087982671) +2018/09/16 01:49:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:49:48 ruptelaNet.go:276: Sent ACK (client: [::1]:62972, IMEI: 352094087982671) +2018/09/16 01:49:50 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62972) +2018/09/16 01:50:13 ruptelaNet.go:199: teltonika New connection(client: [::1]:63127) +2018/09/16 01:50:14 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:50:14 ruptelaNet.go:259: Data received(client: [::1]:63127, IMEI: 352094087982671) +2018/09/16 01:50:14 ruptelaNet.go:276: Sent ACK (client: [::1]:63127, IMEI: 352094087982671) +2018/09/16 01:50:17 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:50:17 ruptelaNet.go:259: Data received(client: [::1]:63127, IMEI: 352094087982671) +2018/09/16 01:50:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:50:17 ruptelaNet.go:276: Sent ACK (client: [::1]:63127, IMEI: 352094087982671) +2018/09/16 01:50:19 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63127) +2018/09/16 01:50:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:63236) +2018/09/16 01:50:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:50:34 ruptelaNet.go:259: Data received(client: [::1]:63236, IMEI: 352094089712860) +2018/09/16 01:50:34 ruptelaNet.go:276: Sent ACK (client: [::1]:63236, IMEI: 352094089712860) +2018/09/16 01:50:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:50:36 ruptelaNet.go:259: Data received(client: [::1]:63236, IMEI: 352094089712860) +2018/09/16 01:50:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:50:36 ruptelaNet.go:276: Sent ACK (client: [::1]:63236, IMEI: 352094089712860) +2018/09/16 01:50:37 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63236) +2018/09/16 01:50:42 ruptelaNet.go:199: teltonika New connection(client: [::1]:63276) +2018/09/16 01:50:43 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:50:43 ruptelaNet.go:259: Data received(client: [::1]:63276, IMEI: 352094087982671) +2018/09/16 01:50:43 ruptelaNet.go:276: Sent ACK (client: [::1]:63276, IMEI: 352094087982671) +2018/09/16 01:50:46 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:50:46 ruptelaNet.go:259: Data received(client: [::1]:63276, IMEI: 352094087982671) +2018/09/16 01:50:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:50:46 ruptelaNet.go:276: Sent ACK (client: [::1]:63276, IMEI: 352094087982671) +2018/09/16 01:50:48 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63276) +2018/09/16 01:51:12 ruptelaNet.go:199: teltonika New connection(client: [::1]:63433) +2018/09/16 01:51:13 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:51:13 ruptelaNet.go:259: Data received(client: [::1]:63433, IMEI: 352094087982671) +2018/09/16 01:51:13 ruptelaNet.go:276: Sent ACK (client: [::1]:63433, IMEI: 352094087982671) +2018/09/16 01:51:16 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:51:16 ruptelaNet.go:259: Data received(client: [::1]:63433, IMEI: 352094087982671) +2018/09/16 01:51:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:51:16 ruptelaNet.go:276: Sent ACK (client: [::1]:63433, IMEI: 352094087982671) +2018/09/16 01:51:18 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63433) +2018/09/16 01:51:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:63547) +2018/09/16 01:51:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:51:34 ruptelaNet.go:259: Data received(client: [::1]:63547, IMEI: 352094089712860) +2018/09/16 01:51:34 ruptelaNet.go:276: Sent ACK (client: [::1]:63547, IMEI: 352094089712860) +2018/09/16 01:51:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:51:36 ruptelaNet.go:259: Data received(client: [::1]:63547, IMEI: 352094089712860) +2018/09/16 01:51:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:51:36 ruptelaNet.go:276: Sent ACK (client: [::1]:63547, IMEI: 352094089712860) +2018/09/16 01:51:37 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63547) +2018/09/16 01:51:41 ruptelaNet.go:199: teltonika New connection(client: [::1]:63581) +2018/09/16 01:51:42 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:51:42 ruptelaNet.go:259: Data received(client: [::1]:63581, IMEI: 352094087982671) +2018/09/16 01:51:42 ruptelaNet.go:276: Sent ACK (client: [::1]:63581, IMEI: 352094087982671) +2018/09/16 01:51:45 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:51:45 ruptelaNet.go:259: Data received(client: [::1]:63581, IMEI: 352094087982671) +2018/09/16 01:51:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:51:45 ruptelaNet.go:276: Sent ACK (client: [::1]:63581, IMEI: 352094087982671) +2018/09/16 01:51:47 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63581) +2018/09/16 01:52:11 ruptelaNet.go:199: teltonika New connection(client: [::1]:63699) +2018/09/16 01:52:12 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:52:12 ruptelaNet.go:259: Data received(client: [::1]:63699, IMEI: 352094087982671) +2018/09/16 01:52:12 ruptelaNet.go:276: Sent ACK (client: [::1]:63699, IMEI: 352094087982671) +2018/09/16 01:52:15 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:52:15 ruptelaNet.go:259: Data received(client: [::1]:63699, IMEI: 352094087982671) +2018/09/16 01:52:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:52:15 ruptelaNet.go:276: Sent ACK (client: [::1]:63699, IMEI: 352094087982671) +2018/09/16 01:52:17 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63699) +2018/09/16 01:52:19 ruptelaNet.go:180: Signal: interrupt +2018/09/16 02:17:32 deviceServer.go:89: PID file will be created +2018/09/16 02:17:32 deviceServer.go:92: PID: 13096 +2018/09/16 02:17:32 deviceServer.go:98: PID file created +2018/09/16 02:17:32 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 02:17:35 ruptelaNet.go:199: teltonika New connection(client: [::1]:51047) +2018/09/16 02:17:36 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:17:36 ruptelaNet.go:259: Data received(client: [::1]:51047, IMEI: 352094087982671) +2018/09/16 02:17:36 ruptelaNet.go:276: Sent ACK (client: [::1]:51047, IMEI: 352094087982671) +2018/09/16 02:17:37 ruptelaNet.go:199: teltonika New connection(client: [::1]:51053) +2018/09/16 02:17:37 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:17:37 ruptelaNet.go:259: Data received(client: [::1]:51053, IMEI: 352094089712860) +2018/09/16 02:17:37 ruptelaNet.go:276: Sent ACK (client: [::1]:51053, IMEI: 352094089712860) +2018/09/16 02:17:38 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:17:38 ruptelaNet.go:259: Data received(client: [::1]:51047, IMEI: 352094087982671) +2018/09/16 02:17:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:17:38 ruptelaNet.go:276: Sent ACK (client: [::1]:51047, IMEI: 352094087982671) +2018/09/16 02:17:39 ruptelaNet.go:353: data packet length : 978 +2018/09/16 02:17:39 ruptelaNet.go:259: Data received(client: [::1]:51053, IMEI: 352094089712860) +2018/09/16 02:17:39 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:17:39 ruptelaNet.go:276: Sent ACK (client: [::1]:51053, IMEI: 352094089712860) +2018/09/16 02:17:40 ruptelaNet.go:289: teltonika Close connection with duration 2.762724477 s (client: [::1]:51053) +2018/09/16 02:17:41 ruptelaNet.go:289: teltonika Close connection with duration 6.061902747 s (client: [::1]:51047) +2018/09/16 02:18:03 ruptelaNet.go:199: teltonika New connection(client: [::1]:51117) +2018/09/16 02:18:04 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:18:04 ruptelaNet.go:259: Data received(client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 02:18:04 ruptelaNet.go:276: Sent ACK (client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 02:18:07 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:18:07 ruptelaNet.go:259: Data received(client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 02:18:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:18:07 ruptelaNet.go:276: Sent ACK (client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 02:18:09 ruptelaNet.go:289: teltonika Close connection with duration 6.141166679 s (client: [::1]:51117) +2018/09/16 02:18:32 ruptelaNet.go:199: teltonika New connection(client: [::1]:51179) +2018/09/16 02:18:33 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:18:33 ruptelaNet.go:259: Data received(client: [::1]:51179, IMEI: 352094087982671) +2018/09/16 02:18:33 ruptelaNet.go:276: Sent ACK (client: [::1]:51179, IMEI: 352094087982671) +2018/09/16 02:18:36 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:18:36 ruptelaNet.go:259: Data received(client: [::1]:51179, IMEI: 352094087982671) +2018/09/16 02:18:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:18:36 ruptelaNet.go:276: Sent ACK (client: [::1]:51179, IMEI: 352094087982671) +2018/09/16 02:18:37 ruptelaNet.go:199: teltonika New connection(client: [::1]:51191) +2018/09/16 02:18:37 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:18:37 ruptelaNet.go:259: Data received(client: [::1]:51191, IMEI: 352094089712860) +2018/09/16 02:18:37 ruptelaNet.go:276: Sent ACK (client: [::1]:51191, IMEI: 352094089712860) +2018/09/16 02:18:38 ruptelaNet.go:289: teltonika Close connection with duration 6.026642737 s (client: [::1]:51179) +2018/09/16 02:18:39 ruptelaNet.go:353: data packet length : 978 +2018/09/16 02:18:39 ruptelaNet.go:259: Data received(client: [::1]:51191, IMEI: 352094089712860) +2018/09/16 02:18:39 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:18:39 ruptelaNet.go:276: Sent ACK (client: [::1]:51191, IMEI: 352094089712860) +2018/09/16 02:18:40 ruptelaNet.go:289: teltonika Close connection with duration 3.144702962 s (client: [::1]:51191) +2018/09/16 02:19:01 ruptelaNet.go:199: teltonika New connection(client: [::1]:51239) +2018/09/16 02:19:02 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:19:02 ruptelaNet.go:259: Data received(client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 02:19:02 ruptelaNet.go:276: Sent ACK (client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 02:19:05 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:19:05 ruptelaNet.go:259: Data received(client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 02:19:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:19:05 ruptelaNet.go:276: Sent ACK (client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 02:19:07 ruptelaNet.go:289: teltonika Close connection with duration 6.039040345 s (client: [::1]:51239) +2018/09/16 02:19:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:51298) +2018/09/16 02:19:31 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:19:31 ruptelaNet.go:259: Data received(client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 02:19:31 ruptelaNet.go:276: Sent ACK (client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 02:19:34 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:19:34 ruptelaNet.go:259: Data received(client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 02:19:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:19:34 ruptelaNet.go:276: Sent ACK (client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 02:19:36 ruptelaNet.go:289: teltonika Close connection with duration 6.233994019 s (client: [::1]:51298) +2018/09/16 02:19:39 ruptelaNet.go:199: teltonika New connection(client: [::1]:51317) +2018/09/16 02:19:40 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:19:40 ruptelaNet.go:259: Data received(client: [::1]:51317, IMEI: 352094089712860) +2018/09/16 02:19:40 ruptelaNet.go:276: Sent ACK (client: [::1]:51317, IMEI: 352094089712860) +2018/09/16 02:19:43 ruptelaNet.go:353: data packet length : 978 +2018/09/16 02:19:43 ruptelaNet.go:259: Data received(client: [::1]:51317, IMEI: 352094089712860) +2018/09/16 02:19:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:19:43 ruptelaNet.go:276: Sent ACK (client: [::1]:51317, IMEI: 352094089712860) +2018/09/16 02:19:44 ruptelaNet.go:289: teltonika Close connection with duration 5.012382417 s (client: [::1]:51317) +2018/09/16 02:19:59 ruptelaNet.go:199: teltonika New connection(client: [::1]:51358) +2018/09/16 02:20:00 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:20:00 ruptelaNet.go:259: Data received(client: [::1]:51358, IMEI: 352094087982671) +2018/09/16 02:20:00 ruptelaNet.go:276: Sent ACK (client: [::1]:51358, IMEI: 352094087982671) +2018/09/16 02:20:03 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:20:03 ruptelaNet.go:259: Data received(client: [::1]:51358, IMEI: 352094087982671) +2018/09/16 02:20:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:20:03 ruptelaNet.go:276: Sent ACK (client: [::1]:51358, IMEI: 352094087982671) +2018/09/16 02:20:05 ruptelaNet.go:289: teltonika Close connection with duration 5.934158028 s (client: [::1]:51358) +2018/09/16 02:20:18 ruptelaNet.go:180: Signal: interrupt +2018/09/16 02:20:43 deviceServer.go:89: PID file will be created +2018/09/16 02:20:43 deviceServer.go:92: PID: 13164 +2018/09/16 02:20:43 deviceServer.go:98: PID file created +2018/09/16 02:20:43 ruptelaNet.go:175: listening: [::]:4000 +2018/09/16 02:20:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:51468) +2018/09/16 02:20:47 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:20:47 ruptelaNet.go:260: Data received(client: [::1]:51468, IMEI: 352094087982671) +2018/09/16 02:20:47 ruptelaNet.go:277: Sent ACK (client: [::1]:51468, IMEI: 352094087982671) +2018/09/16 02:20:50 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:20:50 ruptelaNet.go:260: Data received(client: [::1]:51468, IMEI: 352094087982671) +2018/09/16 02:20:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:20:50 ruptelaNet.go:277: Sent ACK (client: [::1]:51468, IMEI: 352094087982671) +2018/09/16 02:20:52 ruptelaNet.go:290: teltonika Close connection with duration 5.87 s (client: [::1]:51468) +2018/09/16 02:21:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:51534) +2018/09/16 02:21:16 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:21:16 ruptelaNet.go:260: Data received(client: [::1]:51534, IMEI: 352094087982671) +2018/09/16 02:21:16 ruptelaNet.go:277: Sent ACK (client: [::1]:51534, IMEI: 352094087982671) +2018/09/16 02:21:19 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:21:19 ruptelaNet.go:260: Data received(client: [::1]:51534, IMEI: 352094087982671) +2018/09/16 02:21:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:21:19 ruptelaNet.go:277: Sent ACK (client: [::1]:51534, IMEI: 352094087982671) +2018/09/16 02:21:21 ruptelaNet.go:290: teltonika Close connection with duration 6.14 s (client: [::1]:51534) +2018/09/16 02:21:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:51599) +2018/09/16 02:21:44 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:21:44 ruptelaNet.go:260: Data received(client: [::1]:51599, IMEI: 352094089712860) +2018/09/16 02:21:44 ruptelaNet.go:277: Sent ACK (client: [::1]:51599, IMEI: 352094089712860) +2018/09/16 02:21:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:51600) +2018/09/16 02:21:45 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:21:45 ruptelaNet.go:260: Data received(client: [::1]:51600, IMEI: 352094087982671) +2018/09/16 02:21:45 ruptelaNet.go:277: Sent ACK (client: [::1]:51600, IMEI: 352094087982671) +2018/09/16 02:21:46 ruptelaNet.go:354: data packet length : 978 +2018/09/16 02:21:46 ruptelaNet.go:260: Data received(client: [::1]:51599, IMEI: 352094089712860) +2018/09/16 02:21:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:21:46 ruptelaNet.go:277: Sent ACK (client: [::1]:51599, IMEI: 352094089712860) +2018/09/16 02:21:47 ruptelaNet.go:290: teltonika Close connection with duration 2.76 s (client: [::1]:51599) +2018/09/16 02:21:48 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:21:48 ruptelaNet.go:260: Data received(client: [::1]:51600, IMEI: 352094087982671) +2018/09/16 02:21:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:21:48 ruptelaNet.go:277: Sent ACK (client: [::1]:51600, IMEI: 352094087982671) +2018/09/16 02:21:50 ruptelaNet.go:290: teltonika Close connection with duration 5.69 s (client: [::1]:51600) +2018/09/16 02:22:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:51670) +2018/09/16 02:22:14 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:22:14 ruptelaNet.go:260: Data received(client: [::1]:51670, IMEI: 352094087982671) +2018/09/16 02:22:14 ruptelaNet.go:277: Sent ACK (client: [::1]:51670, IMEI: 352094087982671) +2018/09/16 02:22:17 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:22:17 ruptelaNet.go:260: Data received(client: [::1]:51670, IMEI: 352094087982671) +2018/09/16 02:22:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:22:17 ruptelaNet.go:277: Sent ACK (client: [::1]:51670, IMEI: 352094087982671) +2018/09/16 02:22:19 ruptelaNet.go:290: teltonika Close connection with duration 6.04 s (client: [::1]:51670) +2018/09/16 02:22:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:51730) +2018/09/16 02:22:38 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:22:38 ruptelaNet.go:260: Data received(client: [::1]:51730, IMEI: 352094089712860) +2018/09/16 02:22:38 ruptelaNet.go:277: Sent ACK (client: [::1]:51730, IMEI: 352094089712860) +2018/09/16 02:22:40 ruptelaNet.go:354: data packet length : 978 +2018/09/16 02:22:40 ruptelaNet.go:260: Data received(client: [::1]:51730, IMEI: 352094089712860) +2018/09/16 02:22:40 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:22:40 ruptelaNet.go:277: Sent ACK (client: [::1]:51730, IMEI: 352094089712860) +2018/09/16 02:22:42 ruptelaNet.go:290: teltonika Close connection with duration 3.89 s (client: [::1]:51730) +2018/09/16 02:22:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:51741) +2018/09/16 02:22:43 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:22:43 ruptelaNet.go:260: Data received(client: [::1]:51741, IMEI: 352094087982671) +2018/09/16 02:22:43 ruptelaNet.go:277: Sent ACK (client: [::1]:51741, IMEI: 352094087982671) +2018/09/16 02:22:46 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:22:46 ruptelaNet.go:260: Data received(client: [::1]:51741, IMEI: 352094087982671) +2018/09/16 02:22:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:22:46 ruptelaNet.go:277: Sent ACK (client: [::1]:51741, IMEI: 352094087982671) +2018/09/16 02:22:48 ruptelaNet.go:290: teltonika Close connection with duration 6.35 s (client: [::1]:51741) +2018/09/16 02:23:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:51806) +2018/09/16 02:23:12 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:23:12 ruptelaNet.go:260: Data received(client: [::1]:51806, IMEI: 352094087982671) +2018/09/16 02:23:12 ruptelaNet.go:277: Sent ACK (client: [::1]:51806, IMEI: 352094087982671) +2018/09/16 02:23:15 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:23:15 ruptelaNet.go:260: Data received(client: [::1]:51806, IMEI: 352094087982671) +2018/09/16 02:23:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:23:15 ruptelaNet.go:277: Sent ACK (client: [::1]:51806, IMEI: 352094087982671) +2018/09/16 02:23:17 ruptelaNet.go:290: teltonika Close connection with duration 6.04 s (client: [::1]:51806) +2018/09/16 02:23:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:51862) +2018/09/16 02:23:37 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:23:37 ruptelaNet.go:260: Data received(client: [::1]:51862, IMEI: 352094089712860) +2018/09/16 02:23:37 ruptelaNet.go:277: Sent ACK (client: [::1]:51862, IMEI: 352094089712860) +2018/09/16 02:23:39 ruptelaNet.go:354: data packet length : 978 +2018/09/16 02:23:39 ruptelaNet.go:260: Data received(client: [::1]:51862, IMEI: 352094089712860) +2018/09/16 02:23:39 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:23:39 ruptelaNet.go:277: Sent ACK (client: [::1]:51862, IMEI: 352094089712860) +2018/09/16 02:23:40 ruptelaNet.go:290: teltonika Close connection with duration 2.76 s (client: [::1]:51862) +2018/09/16 02:23:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:51869) +2018/09/16 02:23:41 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:23:41 ruptelaNet.go:260: Data received(client: [::1]:51869, IMEI: 352094087982671) +2018/09/16 02:23:41 ruptelaNet.go:277: Sent ACK (client: [::1]:51869, IMEI: 352094087982671) +2018/09/16 02:23:44 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:23:44 ruptelaNet.go:260: Data received(client: [::1]:51869, IMEI: 352094087982671) +2018/09/16 02:23:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:23:44 ruptelaNet.go:277: Sent ACK (client: [::1]:51869, IMEI: 352094087982671) +2018/09/16 02:23:46 ruptelaNet.go:290: teltonika Close connection with duration 5.93 s (client: [::1]:51869) +2018/09/16 02:24:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:51939) +2018/09/16 02:24:10 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:24:10 ruptelaNet.go:260: Data received(client: [::1]:51939, IMEI: 352094087982671) +2018/09/16 02:24:10 ruptelaNet.go:277: Sent ACK (client: [::1]:51939, IMEI: 352094087982671) +2018/09/16 02:24:13 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:24:13 ruptelaNet.go:260: Data received(client: [::1]:51939, IMEI: 352094087982671) +2018/09/16 02:24:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:24:13 ruptelaNet.go:277: Sent ACK (client: [::1]:51939, IMEI: 352094087982671) +2018/09/16 02:24:15 ruptelaNet.go:290: teltonika Close connection with duration 5.94 s (client: [::1]:51939) +2018/09/16 02:24:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:52009) +2018/09/16 02:24:39 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:24:39 ruptelaNet.go:260: Data received(client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 02:24:39 ruptelaNet.go:277: Sent ACK (client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 02:24:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:52015) +2018/09/16 02:24:40 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:24:40 ruptelaNet.go:260: Data received(client: [::1]:52015, IMEI: 352094089712860) +2018/09/16 02:24:40 ruptelaNet.go:277: Sent ACK (client: [::1]:52015, IMEI: 352094089712860) +2018/09/16 02:24:42 ruptelaNet.go:354: data packet length : 978 +2018/09/16 02:24:42 ruptelaNet.go:260: Data received(client: [::1]:52015, IMEI: 352094089712860) +2018/09/16 02:24:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:24:42 ruptelaNet.go:277: Sent ACK (client: [::1]:52015, IMEI: 352094089712860) +2018/09/16 02:24:42 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:24:42 ruptelaNet.go:260: Data received(client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 02:24:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:24:42 ruptelaNet.go:277: Sent ACK (client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 02:24:43 ruptelaNet.go:290: teltonika Close connection with duration 2.87 s (client: [::1]:52015) +2018/09/16 02:24:44 ruptelaNet.go:290: teltonika Close connection with duration 6.34 s (client: [::1]:52009) +2018/09/16 02:25:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:52079) +2018/09/16 02:25:08 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:25:08 ruptelaNet.go:260: Data received(client: [::1]:52079, IMEI: 352094087982671) +2018/09/16 02:25:08 ruptelaNet.go:277: Sent ACK (client: [::1]:52079, IMEI: 352094087982671) +2018/09/16 02:25:11 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:25:11 ruptelaNet.go:260: Data received(client: [::1]:52079, IMEI: 352094087982671) +2018/09/16 02:25:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:25:11 ruptelaNet.go:277: Sent ACK (client: [::1]:52079, IMEI: 352094087982671) +2018/09/16 02:25:13 ruptelaNet.go:290: teltonika Close connection with duration 6.04 s (client: [::1]:52079) +2018/09/16 02:25:36 ruptelaNet.go:181: Signal: interrupt +2018/09/16 02:25:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:52142) +2018/09/16 02:25:36 ruptelaNet.go:290: teltonika Close connection with duration 0 s (client: [::1]:52142) +2018/09/16 02:28:34 deviceServer.go:89: PID file will be created +2018/09/16 02:28:34 deviceServer.go:92: PID: 13270 +2018/09/16 02:28:34 deviceServer.go:98: PID file created +2018/09/16 02:28:34 ruptelaNet.go:175: listening: [::]:4000 +2018/09/16 02:28:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:52583) +2018/09/16 02:28:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:28:38 ruptelaNet.go:261: Data received(client: [::1]:52583, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:28:38 ruptelaNet.go:278: Sent ACK (client: [::1]:52583, IMEI: 352094087982671) +2018/09/16 02:28:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:52587) +2018/09/16 02:28:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:28:38 ruptelaNet.go:261: Data received(client: [::1]:52587, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:28:38 ruptelaNet.go:278: Sent ACK (client: [::1]:52587, IMEI: 352094089712860) +2018/09/16 02:28:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:28:41 ruptelaNet.go:261: Data received(client: [::1]:52587, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 02:28:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:28:41 ruptelaNet.go:278: Sent ACK (client: [::1]:52587, IMEI: 352094089712860) +2018/09/16 02:28:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:28:41 ruptelaNet.go:261: Data received(client: [::1]:52583, IMEI: 352094087982671) with duration 4.23 s +2018/09/16 02:28:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:28:41 ruptelaNet.go:278: Sent ACK (client: [::1]:52583, IMEI: 352094087982671) +2018/09/16 02:28:42 ruptelaNet.go:291: teltonika Close connection with duration 3.89 s (client: [::1]:52587) +2018/09/16 02:28:43 ruptelaNet.go:291: teltonika Close connection with duration 6.35 s (client: [::1]:52583) +2018/09/16 02:29:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:52646) +2018/09/16 02:29:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:29:07 ruptelaNet.go:261: Data received(client: [::1]:52646, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 02:29:07 ruptelaNet.go:278: Sent ACK (client: [::1]:52646, IMEI: 352094087982671) +2018/09/16 02:29:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:29:10 ruptelaNet.go:261: Data received(client: [::1]:52646, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 02:29:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:29:10 ruptelaNet.go:278: Sent ACK (client: [::1]:52646, IMEI: 352094087982671) +2018/09/16 02:29:12 ruptelaNet.go:291: teltonika Close connection with duration 5.79 s (client: [::1]:52646) +2018/09/16 02:29:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:52715) +2018/09/16 02:29:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:29:36 ruptelaNet.go:261: Data received(client: [::1]:52715, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 02:29:36 ruptelaNet.go:278: Sent ACK (client: [::1]:52715, IMEI: 352094087982671) +2018/09/16 02:29:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:52724) +2018/09/16 02:29:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:29:38 ruptelaNet.go:261: Data received(client: [::1]:52724, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:29:38 ruptelaNet.go:278: Sent ACK (client: [::1]:52724, IMEI: 352094089712860) +2018/09/16 02:29:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:29:40 ruptelaNet.go:261: Data received(client: [::1]:52715, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 02:29:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:29:40 ruptelaNet.go:278: Sent ACK (client: [::1]:52715, IMEI: 352094087982671) +2018/09/16 02:29:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:29:41 ruptelaNet.go:261: Data received(client: [::1]:52724, IMEI: 352094089712860) with duration 2.56 s +2018/09/16 02:29:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:29:41 ruptelaNet.go:278: Sent ACK (client: [::1]:52724, IMEI: 352094089712860) +2018/09/16 02:29:42 ruptelaNet.go:291: teltonika Close connection with duration 6.45 s (client: [::1]:52715) +2018/09/16 02:29:42 ruptelaNet.go:291: teltonika Close connection with duration 3.79 s (client: [::1]:52724) +2018/09/16 02:29:43 ruptelaNet.go:181: Signal: interrupt +2018/09/16 02:31:03 deviceServer.go:89: PID file will be created +2018/09/16 02:31:03 deviceServer.go:92: PID: 13331 +2018/09/16 02:31:03 deviceServer.go:98: PID file created +2018/09/16 02:31:03 ruptelaNet.go:175: listening: [::]:4000 +2018/09/16 02:31:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:52928) +2018/09/16 02:31:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:31:06 ruptelaNet.go:261: Data received(client: [::1]:52928, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:31:06 ruptelaNet.go:278: Sent ACK (client: [::1]:52928, IMEI: 352094087982671) +2018/09/16 02:31:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:31:08 ruptelaNet.go:261: Data received(client: [::1]:52928, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:31:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:31:09 ruptelaNet.go:278: Sent ACK (client: [::1]:52928, IMEI: 352094087982671) +2018/09/16 02:31:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52928, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:31:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:52990) +2018/09/16 02:31:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:31:34 ruptelaNet.go:261: Data received(client: [::1]:52990, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:31:34 ruptelaNet.go:278: Sent ACK (client: [::1]:52990, IMEI: 352094087982671) +2018/09/16 02:31:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:31:37 ruptelaNet.go:261: Data received(client: [::1]:52990, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 02:31:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:31:37 ruptelaNet.go:278: Sent ACK (client: [::1]:52990, IMEI: 352094087982671) +2018/09/16 02:31:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:53005) +2018/09/16 02:31:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:31:38 ruptelaNet.go:261: Data received(client: [::1]:53005, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:31:38 ruptelaNet.go:278: Sent ACK (client: [::1]:53005, IMEI: 352094089712860) +2018/09/16 02:31:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52990, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 02:31:40 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:31:40 ruptelaNet.go:261: Data received(client: [::1]:53005, IMEI: 352094089712860) with duration 2.16 s +2018/09/16 02:31:40 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:31:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53005, IMEI: 352094089712860) +2018/09/16 02:31:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53005, IMEI: 352094089712860) with duration 2.95 s +2018/09/16 02:32:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:53061) +2018/09/16 02:32:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:32:03 ruptelaNet.go:261: Data received(client: [::1]:53061, IMEI: 352094087982671) with duration 0.8 s +2018/09/16 02:32:03 ruptelaNet.go:278: Sent ACK (client: [::1]:53061, IMEI: 352094087982671) +2018/09/16 02:32:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:32:06 ruptelaNet.go:261: Data received(client: [::1]:53061, IMEI: 352094087982671) with duration 3.6 s +2018/09/16 02:32:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:32:06 ruptelaNet.go:278: Sent ACK (client: [::1]:53061, IMEI: 352094087982671) +2018/09/16 02:32:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53061, IMEI: 352094087982671) with duration 5.72 s +2018/09/16 02:32:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:53127) +2018/09/16 02:32:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:32:32 ruptelaNet.go:261: Data received(client: [::1]:53127, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:32:32 ruptelaNet.go:278: Sent ACK (client: [::1]:53127, IMEI: 352094087982671) +2018/09/16 02:32:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:32:35 ruptelaNet.go:261: Data received(client: [::1]:53127, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:32:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:32:35 ruptelaNet.go:278: Sent ACK (client: [::1]:53127, IMEI: 352094087982671) +2018/09/16 02:32:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53127, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:32:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:53145) +2018/09/16 02:32:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:32:38 ruptelaNet.go:261: Data received(client: [::1]:53145, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:32:38 ruptelaNet.go:278: Sent ACK (client: [::1]:53145, IMEI: 352094089712860) +2018/09/16 02:32:40 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:32:40 ruptelaNet.go:261: Data received(client: [::1]:53145, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 02:32:40 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:32:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53145, IMEI: 352094089712860) +2018/09/16 02:32:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53145, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 02:33:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:53194) +2018/09/16 02:33:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:33:01 ruptelaNet.go:261: Data received(client: [::1]:53194, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:33:01 ruptelaNet.go:278: Sent ACK (client: [::1]:53194, IMEI: 352094087982671) +2018/09/16 02:33:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:33:04 ruptelaNet.go:261: Data received(client: [::1]:53194, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 02:33:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:33:04 ruptelaNet.go:278: Sent ACK (client: [::1]:53194, IMEI: 352094087982671) +2018/09/16 02:33:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53194, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 02:33:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:53255) +2018/09/16 02:33:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:33:30 ruptelaNet.go:261: Data received(client: [::1]:53255, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:33:30 ruptelaNet.go:278: Sent ACK (client: [::1]:53255, IMEI: 352094087982671) +2018/09/16 02:33:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:33:33 ruptelaNet.go:261: Data received(client: [::1]:53255, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 02:33:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:33:33 ruptelaNet.go:278: Sent ACK (client: [::1]:53255, IMEI: 352094087982671) +2018/09/16 02:33:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53255, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 02:33:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:53274) +2018/09/16 02:33:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:33:38 ruptelaNet.go:261: Data received(client: [::1]:53274, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:33:38 ruptelaNet.go:278: Sent ACK (client: [::1]:53274, IMEI: 352094089712860) +2018/09/16 02:33:40 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:33:40 ruptelaNet.go:261: Data received(client: [::1]:53274, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 02:33:40 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:33:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53274, IMEI: 352094089712860) +2018/09/16 02:33:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53274, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 02:33:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:53319) +2018/09/16 02:33:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:33:59 ruptelaNet.go:261: Data received(client: [::1]:53319, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:33:59 ruptelaNet.go:278: Sent ACK (client: [::1]:53319, IMEI: 352094087982671) +2018/09/16 02:34:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:34:02 ruptelaNet.go:261: Data received(client: [::1]:53319, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 02:34:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:34:02 ruptelaNet.go:278: Sent ACK (client: [::1]:53319, IMEI: 352094087982671) +2018/09/16 02:34:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53319, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 02:34:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:53385) +2018/09/16 02:34:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:34:28 ruptelaNet.go:261: Data received(client: [::1]:53385, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:34:28 ruptelaNet.go:278: Sent ACK (client: [::1]:53385, IMEI: 352094087982671) +2018/09/16 02:34:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:34:31 ruptelaNet.go:261: Data received(client: [::1]:53385, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:34:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:34:31 ruptelaNet.go:278: Sent ACK (client: [::1]:53385, IMEI: 352094087982671) +2018/09/16 02:34:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53385, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:34:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:53408) +2018/09/16 02:34:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:34:39 ruptelaNet.go:261: Data received(client: [::1]:53408, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:34:39 ruptelaNet.go:278: Sent ACK (client: [::1]:53408, IMEI: 352094089712860) +2018/09/16 02:34:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:34:41 ruptelaNet.go:261: Data received(client: [::1]:53408, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 02:34:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:34:41 ruptelaNet.go:278: Sent ACK (client: [::1]:53408, IMEI: 352094089712860) +2018/09/16 02:34:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53408, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 02:34:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:53451) +2018/09/16 02:34:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:34:57 ruptelaNet.go:261: Data received(client: [::1]:53451, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 02:34:57 ruptelaNet.go:278: Sent ACK (client: [::1]:53451, IMEI: 352094087982671) +2018/09/16 02:35:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:35:00 ruptelaNet.go:261: Data received(client: [::1]:53451, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 02:35:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:35:00 ruptelaNet.go:278: Sent ACK (client: [::1]:53451, IMEI: 352094087982671) +2018/09/16 02:35:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53451, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 02:35:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:53507) +2018/09/16 02:35:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:35:26 ruptelaNet.go:261: Data received(client: [::1]:53507, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 02:35:26 ruptelaNet.go:278: Sent ACK (client: [::1]:53507, IMEI: 352094087982671) +2018/09/16 02:35:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:35:29 ruptelaNet.go:261: Data received(client: [::1]:53507, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 02:35:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:35:29 ruptelaNet.go:278: Sent ACK (client: [::1]:53507, IMEI: 352094087982671) +2018/09/16 02:35:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53507, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 02:35:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:53534) +2018/09/16 02:35:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:35:39 ruptelaNet.go:261: Data received(client: [::1]:53534, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:35:39 ruptelaNet.go:278: Sent ACK (client: [::1]:53534, IMEI: 352094089712860) +2018/09/16 02:35:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:35:43 ruptelaNet.go:261: Data received(client: [::1]:53534, IMEI: 352094089712860) with duration 4.61 s +2018/09/16 02:35:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:35:43 ruptelaNet.go:278: Sent ACK (client: [::1]:53534, IMEI: 352094089712860) +2018/09/16 02:35:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53534, IMEI: 352094089712860) with duration 7.05 s +2018/09/16 02:35:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:53565) +2018/09/16 02:35:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:35:55 ruptelaNet.go:261: Data received(client: [::1]:53565, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:35:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53565, IMEI: 352094087982671) +2018/09/16 02:35:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:35:58 ruptelaNet.go:261: Data received(client: [::1]:53565, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 02:35:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:35:58 ruptelaNet.go:278: Sent ACK (client: [::1]:53565, IMEI: 352094087982671) +2018/09/16 02:36:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53565, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 02:36:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:53632) +2018/09/16 02:36:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:36:24 ruptelaNet.go:261: Data received(client: [::1]:53632, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:36:24 ruptelaNet.go:278: Sent ACK (client: [::1]:53632, IMEI: 352094087982671) +2018/09/16 02:36:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:36:27 ruptelaNet.go:261: Data received(client: [::1]:53632, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 02:36:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:36:27 ruptelaNet.go:278: Sent ACK (client: [::1]:53632, IMEI: 352094087982671) +2018/09/16 02:36:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53632, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 02:36:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:53674) +2018/09/16 02:36:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:36:39 ruptelaNet.go:261: Data received(client: [::1]:53674, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:36:39 ruptelaNet.go:278: Sent ACK (client: [::1]:53674, IMEI: 352094089712860) +2018/09/16 02:36:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:36:41 ruptelaNet.go:261: Data received(client: [::1]:53674, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 02:36:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:36:41 ruptelaNet.go:278: Sent ACK (client: [::1]:53674, IMEI: 352094089712860) +2018/09/16 02:36:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53674, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 02:36:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:53702) +2018/09/16 02:36:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:36:53 ruptelaNet.go:261: Data received(client: [::1]:53702, IMEI: 352094087982671) with duration 1 s +2018/09/16 02:36:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53702, IMEI: 352094087982671) +2018/09/16 02:36:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:36:57 ruptelaNet.go:261: Data received(client: [::1]:53702, IMEI: 352094087982671) with duration 4.5 s +2018/09/16 02:36:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:36:57 ruptelaNet.go:278: Sent ACK (client: [::1]:53702, IMEI: 352094087982671) +2018/09/16 02:36:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53702, IMEI: 352094087982671) with duration 6.63 s +2018/09/16 02:37:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:53759) +2018/09/16 02:37:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:37:23 ruptelaNet.go:261: Data received(client: [::1]:53759, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:37:23 ruptelaNet.go:278: Sent ACK (client: [::1]:53759, IMEI: 352094087982671) +2018/09/16 02:37:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:37:26 ruptelaNet.go:261: Data received(client: [::1]:53759, IMEI: 352094087982671) with duration 3.73 s +2018/09/16 02:37:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:37:26 ruptelaNet.go:278: Sent ACK (client: [::1]:53759, IMEI: 352094087982671) +2018/09/16 02:37:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53759, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 02:37:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:53813) +2018/09/16 02:37:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:37:49 ruptelaNet.go:261: Data received(client: [::1]:53813, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:37:49 ruptelaNet.go:278: Sent ACK (client: [::1]:53813, IMEI: 352094089712860) +2018/09/16 02:37:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:53819) +2018/09/16 02:37:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:37:52 ruptelaNet.go:261: Data received(client: [::1]:53819, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 02:37:52 ruptelaNet.go:278: Sent ACK (client: [::1]:53819, IMEI: 352094087982671) +2018/09/16 02:37:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:37:55 ruptelaNet.go:261: Data received(client: [::1]:53819, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 02:37:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:37:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53819, IMEI: 352094087982671) +2018/09/16 02:37:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:37:56 ruptelaNet.go:261: Data received(client: [::1]:53813, IMEI: 352094089712860) with duration 6.82 s +2018/09/16 02:37:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:37:56 ruptelaNet.go:278: Sent ACK (client: [::1]:53813, IMEI: 352094089712860) +2018/09/16 02:37:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53813, IMEI: 352094089712860) with duration 7.58 s +2018/09/16 02:37:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53819, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 02:38:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:53871) +2018/09/16 02:38:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:38:21 ruptelaNet.go:261: Data received(client: [::1]:53871, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 02:38:21 ruptelaNet.go:278: Sent ACK (client: [::1]:53871, IMEI: 352094087982671) +2018/09/16 02:38:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:38:25 ruptelaNet.go:261: Data received(client: [::1]:53871, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 02:38:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:38:25 ruptelaNet.go:278: Sent ACK (client: [::1]:53871, IMEI: 352094087982671) +2018/09/16 02:38:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53871, IMEI: 352094087982671) with duration 6.56 s +2018/09/16 02:38:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:53917) +2018/09/16 02:38:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:38:41 ruptelaNet.go:261: Data received(client: [::1]:53917, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:38:41 ruptelaNet.go:278: Sent ACK (client: [::1]:53917, IMEI: 352094089712860) +2018/09/16 02:38:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:38:44 ruptelaNet.go:261: Data received(client: [::1]:53917, IMEI: 352094089712860) with duration 2.45 s +2018/09/16 02:38:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:38:44 ruptelaNet.go:278: Sent ACK (client: [::1]:53917, IMEI: 352094089712860) +2018/09/16 02:38:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53917, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 02:38:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:53936) +2018/09/16 02:38:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:38:51 ruptelaNet.go:261: Data received(client: [::1]:53936, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:38:51 ruptelaNet.go:278: Sent ACK (client: [::1]:53936, IMEI: 352094087982671) +2018/09/16 02:38:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:38:54 ruptelaNet.go:261: Data received(client: [::1]:53936, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:38:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:38:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53936, IMEI: 352094087982671) +2018/09/16 02:38:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53936, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 02:39:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:53990) +2018/09/16 02:39:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:39:20 ruptelaNet.go:261: Data received(client: [::1]:53990, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:39:20 ruptelaNet.go:278: Sent ACK (client: [::1]:53990, IMEI: 352094087982671) +2018/09/16 02:39:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:39:24 ruptelaNet.go:261: Data received(client: [::1]:53990, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 02:39:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:39:24 ruptelaNet.go:278: Sent ACK (client: [::1]:53990, IMEI: 352094087982671) +2018/09/16 02:39:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53990, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 02:39:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:54033) +2018/09/16 02:39:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:39:41 ruptelaNet.go:261: Data received(client: [::1]:54033, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:39:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54033, IMEI: 352094089712860) +2018/09/16 02:39:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:39:44 ruptelaNet.go:261: Data received(client: [::1]:54033, IMEI: 352094089712860) with duration 2.36 s +2018/09/16 02:39:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:39:44 ruptelaNet.go:278: Sent ACK (client: [::1]:54033, IMEI: 352094089712860) +2018/09/16 02:39:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54033, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 02:39:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:54052) +2018/09/16 02:39:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:39:49 ruptelaNet.go:261: Data received(client: [::1]:54052, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:39:49 ruptelaNet.go:278: Sent ACK (client: [::1]:54052, IMEI: 352094087982671) +2018/09/16 02:39:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:39:52 ruptelaNet.go:261: Data received(client: [::1]:54052, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:39:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:39:52 ruptelaNet.go:278: Sent ACK (client: [::1]:54052, IMEI: 352094087982671) +2018/09/16 02:39:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54052, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:40:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:54104) +2018/09/16 02:40:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:40:18 ruptelaNet.go:261: Data received(client: [::1]:54104, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 02:40:18 ruptelaNet.go:278: Sent ACK (client: [::1]:54104, IMEI: 352094087982671) +2018/09/16 02:40:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:40:21 ruptelaNet.go:261: Data received(client: [::1]:54104, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 02:40:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:40:21 ruptelaNet.go:278: Sent ACK (client: [::1]:54104, IMEI: 352094087982671) +2018/09/16 02:40:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54104, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 02:40:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54147) +2018/09/16 02:40:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:40:39 ruptelaNet.go:261: Data received(client: [::1]:54147, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:40:39 ruptelaNet.go:278: Sent ACK (client: [::1]:54147, IMEI: 352094089712860) +2018/09/16 02:40:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:40:41 ruptelaNet.go:261: Data received(client: [::1]:54147, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 02:40:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:40:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54147, IMEI: 352094089712860) +2018/09/16 02:40:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54147, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 02:40:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:54155) +2018/09/16 02:40:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:40:47 ruptelaNet.go:261: Data received(client: [::1]:54155, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 02:40:47 ruptelaNet.go:278: Sent ACK (client: [::1]:54155, IMEI: 352094087982671) +2018/09/16 02:40:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:40:50 ruptelaNet.go:261: Data received(client: [::1]:54155, IMEI: 352094087982671) with duration 4.21 s +2018/09/16 02:40:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:40:50 ruptelaNet.go:278: Sent ACK (client: [::1]:54155, IMEI: 352094087982671) +2018/09/16 02:40:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54155, IMEI: 352094087982671) with duration 6.36 s +2018/09/16 02:41:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54221) +2018/09/16 02:41:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:41:16 ruptelaNet.go:261: Data received(client: [::1]:54221, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 02:41:16 ruptelaNet.go:278: Sent ACK (client: [::1]:54221, IMEI: 352094087982671) +2018/09/16 02:41:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:41:20 ruptelaNet.go:261: Data received(client: [::1]:54221, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 02:41:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:41:20 ruptelaNet.go:278: Sent ACK (client: [::1]:54221, IMEI: 352094087982671) +2018/09/16 02:41:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54221, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 02:41:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54274) +2018/09/16 02:41:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:41:39 ruptelaNet.go:261: Data received(client: [::1]:54274, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:41:39 ruptelaNet.go:278: Sent ACK (client: [::1]:54274, IMEI: 352094089712860) +2018/09/16 02:41:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:41:41 ruptelaNet.go:261: Data received(client: [::1]:54274, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 02:41:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:41:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54274, IMEI: 352094089712860) +2018/09/16 02:41:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54274, IMEI: 352094089712860) with duration 3.09 s +2018/09/16 02:41:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:54286) +2018/09/16 02:41:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:41:45 ruptelaNet.go:261: Data received(client: [::1]:54286, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:41:45 ruptelaNet.go:278: Sent ACK (client: [::1]:54286, IMEI: 352094087982671) +2018/09/16 02:41:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:41:48 ruptelaNet.go:261: Data received(client: [::1]:54286, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 02:41:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:41:48 ruptelaNet.go:278: Sent ACK (client: [::1]:54286, IMEI: 352094087982671) +2018/09/16 02:41:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54286, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 02:42:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:54343) +2018/09/16 02:42:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:42:14 ruptelaNet.go:261: Data received(client: [::1]:54343, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:42:14 ruptelaNet.go:278: Sent ACK (client: [::1]:54343, IMEI: 352094087982671) +2018/09/16 02:42:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:42:17 ruptelaNet.go:261: Data received(client: [::1]:54343, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:42:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:42:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54343, IMEI: 352094087982671) +2018/09/16 02:42:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54343, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:42:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:54395) +2018/09/16 02:42:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:42:40 ruptelaNet.go:261: Data received(client: [::1]:54395, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:42:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54395, IMEI: 352094089712860) +2018/09/16 02:42:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:42:42 ruptelaNet.go:261: Data received(client: [::1]:54395, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 02:42:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:42:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54395, IMEI: 352094089712860) +2018/09/16 02:42:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:54401) +2018/09/16 02:42:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:42:43 ruptelaNet.go:261: Data received(client: [::1]:54401, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 02:42:43 ruptelaNet.go:278: Sent ACK (client: [::1]:54401, IMEI: 352094087982671) +2018/09/16 02:42:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54395, IMEI: 352094089712860) with duration 4.61 s +2018/09/16 02:42:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:42:46 ruptelaNet.go:261: Data received(client: [::1]:54401, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 02:42:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:42:46 ruptelaNet.go:278: Sent ACK (client: [::1]:54401, IMEI: 352094087982671) +2018/09/16 02:42:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54401, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:43:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:54460) +2018/09/16 02:43:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:43:12 ruptelaNet.go:261: Data received(client: [::1]:54460, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:43:12 ruptelaNet.go:278: Sent ACK (client: [::1]:54460, IMEI: 352094087982671) +2018/09/16 02:43:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:43:15 ruptelaNet.go:261: Data received(client: [::1]:54460, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:43:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:43:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54460, IMEI: 352094087982671) +2018/09/16 02:43:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54460, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 02:43:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54520) +2018/09/16 02:43:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:43:39 ruptelaNet.go:261: Data received(client: [::1]:54520, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:43:39 ruptelaNet.go:278: Sent ACK (client: [::1]:54520, IMEI: 352094089712860) +2018/09/16 02:43:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:54522) +2018/09/16 02:43:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:43:41 ruptelaNet.go:261: Data received(client: [::1]:54522, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:43:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54522, IMEI: 352094087982671) +2018/09/16 02:43:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:43:41 ruptelaNet.go:261: Data received(client: [::1]:54520, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 02:43:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:43:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54520, IMEI: 352094089712860) +2018/09/16 02:43:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54520, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 02:43:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:43:44 ruptelaNet.go:261: Data received(client: [::1]:54522, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:43:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:43:44 ruptelaNet.go:278: Sent ACK (client: [::1]:54522, IMEI: 352094087982671) +2018/09/16 02:43:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54522, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 02:44:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:54582) +2018/09/16 02:44:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:44:10 ruptelaNet.go:261: Data received(client: [::1]:54582, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 02:44:10 ruptelaNet.go:278: Sent ACK (client: [::1]:54582, IMEI: 352094087982671) +2018/09/16 02:44:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:44:13 ruptelaNet.go:261: Data received(client: [::1]:54582, IMEI: 352094087982671) with duration 3.57 s +2018/09/16 02:44:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:44:13 ruptelaNet.go:278: Sent ACK (client: [::1]:54582, IMEI: 352094087982671) +2018/09/16 02:44:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54582, IMEI: 352094087982671) with duration 5.72 s +2018/09/16 02:44:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:54644) +2018/09/16 02:44:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:44:39 ruptelaNet.go:261: Data received(client: [::1]:54644, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:44:39 ruptelaNet.go:278: Sent ACK (client: [::1]:54644, IMEI: 352094087982671) +2018/09/16 02:44:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:54648) +2018/09/16 02:44:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:44:40 ruptelaNet.go:261: Data received(client: [::1]:54648, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:44:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54648, IMEI: 352094089712860) +2018/09/16 02:44:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:44:42 ruptelaNet.go:261: Data received(client: [::1]:54648, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 02:44:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:44:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54648, IMEI: 352094089712860) +2018/09/16 02:44:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:44:42 ruptelaNet.go:261: Data received(client: [::1]:54644, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:44:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:44:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54644, IMEI: 352094087982671) +2018/09/16 02:44:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54648, IMEI: 352094089712860) with duration 3.24 s +2018/09/16 02:44:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54644, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:45:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:54712) +2018/09/16 02:45:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:45:08 ruptelaNet.go:261: Data received(client: [::1]:54712, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:45:08 ruptelaNet.go:278: Sent ACK (client: [::1]:54712, IMEI: 352094087982671) +2018/09/16 02:45:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:45:11 ruptelaNet.go:261: Data received(client: [::1]:54712, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 02:45:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:45:11 ruptelaNet.go:278: Sent ACK (client: [::1]:54712, IMEI: 352094087982671) +2018/09/16 02:45:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54712, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 02:45:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:54772) +2018/09/16 02:45:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:45:37 ruptelaNet.go:261: Data received(client: [::1]:54772, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 02:45:37 ruptelaNet.go:278: Sent ACK (client: [::1]:54772, IMEI: 352094087982671) +2018/09/16 02:45:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:45:40 ruptelaNet.go:261: Data received(client: [::1]:54772, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 02:45:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:45:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54772, IMEI: 352094087982671) +2018/09/16 02:45:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:54787) +2018/09/16 02:45:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:45:42 ruptelaNet.go:261: Data received(client: [::1]:54787, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:45:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54787, IMEI: 352094089712860) +2018/09/16 02:45:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54772, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 02:45:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:45:44 ruptelaNet.go:261: Data received(client: [::1]:54787, IMEI: 352094089712860) with duration 2.55 s +2018/09/16 02:45:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:45:44 ruptelaNet.go:278: Sent ACK (client: [::1]:54787, IMEI: 352094089712860) +2018/09/16 02:45:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54787, IMEI: 352094089712860) with duration 3.37 s +2018/09/16 02:46:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:54838) +2018/09/16 02:46:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:46:06 ruptelaNet.go:261: Data received(client: [::1]:54838, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 02:46:06 ruptelaNet.go:278: Sent ACK (client: [::1]:54838, IMEI: 352094087982671) +2018/09/16 02:46:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:46:09 ruptelaNet.go:261: Data received(client: [::1]:54838, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:46:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:46:09 ruptelaNet.go:278: Sent ACK (client: [::1]:54838, IMEI: 352094087982671) +2018/09/16 02:46:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54838, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 02:46:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:54901) +2018/09/16 02:46:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:46:35 ruptelaNet.go:261: Data received(client: [::1]:54901, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 02:46:35 ruptelaNet.go:278: Sent ACK (client: [::1]:54901, IMEI: 352094087982671) +2018/09/16 02:46:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:46:38 ruptelaNet.go:261: Data received(client: [::1]:54901, IMEI: 352094087982671) with duration 3.96 s +2018/09/16 02:46:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:46:38 ruptelaNet.go:278: Sent ACK (client: [::1]:54901, IMEI: 352094087982671) +2018/09/16 02:46:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54901, IMEI: 352094087982671) with duration 6.11 s +2018/09/16 02:46:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:54912) +2018/09/16 02:46:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:46:40 ruptelaNet.go:261: Data received(client: [::1]:54912, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:46:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54912, IMEI: 352094089712860) +2018/09/16 02:46:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:46:44 ruptelaNet.go:261: Data received(client: [::1]:54912, IMEI: 352094089712860) with duration 3.9 s +2018/09/16 02:46:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:46:44 ruptelaNet.go:278: Sent ACK (client: [::1]:54912, IMEI: 352094089712860) +2018/09/16 02:46:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54912, IMEI: 352094089712860) with duration 4.75 s +2018/09/16 02:47:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:54964) +2018/09/16 02:47:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:47:04 ruptelaNet.go:261: Data received(client: [::1]:54964, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:47:04 ruptelaNet.go:278: Sent ACK (client: [::1]:54964, IMEI: 352094087982671) +2018/09/16 02:47:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:47:07 ruptelaNet.go:261: Data received(client: [::1]:54964, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:47:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:47:07 ruptelaNet.go:278: Sent ACK (client: [::1]:54964, IMEI: 352094087982671) +2018/09/16 02:47:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54964, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:47:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:55023) +2018/09/16 02:47:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:47:33 ruptelaNet.go:261: Data received(client: [::1]:55023, IMEI: 352094087982671) with duration 1 s +2018/09/16 02:47:33 ruptelaNet.go:278: Sent ACK (client: [::1]:55023, IMEI: 352094087982671) +2018/09/16 02:47:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:47:36 ruptelaNet.go:261: Data received(client: [::1]:55023, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 02:47:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:47:36 ruptelaNet.go:278: Sent ACK (client: [::1]:55023, IMEI: 352094087982671) +2018/09/16 02:47:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55023, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 02:47:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:55039) +2018/09/16 02:47:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:47:41 ruptelaNet.go:261: Data received(client: [::1]:55039, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:47:41 ruptelaNet.go:278: Sent ACK (client: [::1]:55039, IMEI: 352094089712860) +2018/09/16 02:47:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:47:43 ruptelaNet.go:261: Data received(client: [::1]:55039, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 02:47:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:47:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55039, IMEI: 352094089712860) +2018/09/16 02:47:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55039, IMEI: 352094089712860) with duration 3.72 s +2018/09/16 02:48:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:55084) +2018/09/16 02:48:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:48:02 ruptelaNet.go:261: Data received(client: [::1]:55084, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 02:48:02 ruptelaNet.go:278: Sent ACK (client: [::1]:55084, IMEI: 352094087982671) +2018/09/16 02:48:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:48:05 ruptelaNet.go:261: Data received(client: [::1]:55084, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 02:48:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:48:05 ruptelaNet.go:278: Sent ACK (client: [::1]:55084, IMEI: 352094087982671) +2018/09/16 02:48:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55084, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:48:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:55145) +2018/09/16 02:48:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:48:31 ruptelaNet.go:261: Data received(client: [::1]:55145, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:48:31 ruptelaNet.go:278: Sent ACK (client: [::1]:55145, IMEI: 352094087982671) +2018/09/16 02:48:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:48:34 ruptelaNet.go:261: Data received(client: [::1]:55145, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:48:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:48:34 ruptelaNet.go:278: Sent ACK (client: [::1]:55145, IMEI: 352094087982671) +2018/09/16 02:48:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55145, IMEI: 352094087982671) with duration 6 s +2018/09/16 02:48:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:55168) +2018/09/16 02:48:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:48:40 ruptelaNet.go:261: Data received(client: [::1]:55168, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 02:48:40 ruptelaNet.go:278: Sent ACK (client: [::1]:55168, IMEI: 352094089712860) +2018/09/16 02:48:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:48:42 ruptelaNet.go:261: Data received(client: [::1]:55168, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 02:48:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:48:42 ruptelaNet.go:278: Sent ACK (client: [::1]:55168, IMEI: 352094089712860) +2018/09/16 02:48:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55168, IMEI: 352094089712860) with duration 3.08 s +2018/09/16 02:49:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:55213) +2018/09/16 02:49:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:49:00 ruptelaNet.go:261: Data received(client: [::1]:55213, IMEI: 352094087982671) with duration 0 s +2018/09/16 02:49:00 ruptelaNet.go:278: Sent ACK (client: [::1]:55213, IMEI: 352094087982671) +2018/09/16 02:49:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:49:03 ruptelaNet.go:261: Data received(client: [::1]:55213, IMEI: 352094087982671) with duration 2.75 s +2018/09/16 02:49:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:49:03 ruptelaNet.go:278: Sent ACK (client: [::1]:55213, IMEI: 352094087982671) +2018/09/16 02:49:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55213, IMEI: 352094087982671) with duration 4.81 s +2018/09/16 02:49:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:55274) +2018/09/16 02:49:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:49:29 ruptelaNet.go:261: Data received(client: [::1]:55274, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 02:49:29 ruptelaNet.go:278: Sent ACK (client: [::1]:55274, IMEI: 352094087982671) +2018/09/16 02:49:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:49:32 ruptelaNet.go:261: Data received(client: [::1]:55274, IMEI: 352094087982671) with duration 4 s +2018/09/16 02:49:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:49:32 ruptelaNet.go:278: Sent ACK (client: [::1]:55274, IMEI: 352094087982671) +2018/09/16 02:49:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55274, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 02:49:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:55297) +2018/09/16 02:49:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:49:40 ruptelaNet.go:261: Data received(client: [::1]:55297, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:49:40 ruptelaNet.go:278: Sent ACK (client: [::1]:55297, IMEI: 352094089712860) +2018/09/16 02:49:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:49:42 ruptelaNet.go:261: Data received(client: [::1]:55297, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 02:49:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:49:42 ruptelaNet.go:278: Sent ACK (client: [::1]:55297, IMEI: 352094089712860) +2018/09/16 02:49:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55297, IMEI: 352094089712860) with duration 4.84 s +2018/09/16 02:49:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:55338) +2018/09/16 02:49:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:49:58 ruptelaNet.go:261: Data received(client: [::1]:55338, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:49:58 ruptelaNet.go:278: Sent ACK (client: [::1]:55338, IMEI: 352094087982671) +2018/09/16 02:50:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:50:01 ruptelaNet.go:261: Data received(client: [::1]:55338, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 02:50:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:50:01 ruptelaNet.go:278: Sent ACK (client: [::1]:55338, IMEI: 352094087982671) +2018/09/16 02:50:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55338, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 02:50:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:55401) +2018/09/16 02:50:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:50:27 ruptelaNet.go:261: Data received(client: [::1]:55401, IMEI: 352094087982671) with duration 0.8 s +2018/09/16 02:50:27 ruptelaNet.go:278: Sent ACK (client: [::1]:55401, IMEI: 352094087982671) +2018/09/16 02:50:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:50:30 ruptelaNet.go:261: Data received(client: [::1]:55401, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 02:50:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:50:30 ruptelaNet.go:278: Sent ACK (client: [::1]:55401, IMEI: 352094087982671) +2018/09/16 02:50:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55401, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 02:50:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:55424) +2018/09/16 02:50:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:50:40 ruptelaNet.go:261: Data received(client: [::1]:55424, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:50:40 ruptelaNet.go:278: Sent ACK (client: [::1]:55424, IMEI: 352094089712860) +2018/09/16 02:50:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:50:42 ruptelaNet.go:261: Data received(client: [::1]:55424, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 02:50:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:50:42 ruptelaNet.go:278: Sent ACK (client: [::1]:55424, IMEI: 352094089712860) +2018/09/16 02:50:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55424, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 02:50:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:55463) +2018/09/16 02:50:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:50:56 ruptelaNet.go:261: Data received(client: [::1]:55463, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 02:50:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55463, IMEI: 352094087982671) +2018/09/16 02:50:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:50:59 ruptelaNet.go:261: Data received(client: [::1]:55463, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 02:50:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:50:59 ruptelaNet.go:278: Sent ACK (client: [::1]:55463, IMEI: 352094087982671) +2018/09/16 02:51:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55463, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 02:51:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:55520) +2018/09/16 02:51:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:51:25 ruptelaNet.go:261: Data received(client: [::1]:55520, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:51:25 ruptelaNet.go:278: Sent ACK (client: [::1]:55520, IMEI: 352094087982671) +2018/09/16 02:51:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:51:28 ruptelaNet.go:261: Data received(client: [::1]:55520, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:51:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:51:28 ruptelaNet.go:278: Sent ACK (client: [::1]:55520, IMEI: 352094087982671) +2018/09/16 02:51:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55520, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:51:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:55553) +2018/09/16 02:51:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:51:43 ruptelaNet.go:261: Data received(client: [::1]:55553, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:51:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55553, IMEI: 352094089712860) +2018/09/16 02:51:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:51:45 ruptelaNet.go:261: Data received(client: [::1]:55553, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 02:51:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:51:45 ruptelaNet.go:278: Sent ACK (client: [::1]:55553, IMEI: 352094089712860) +2018/09/16 02:51:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55553, IMEI: 352094089712860) with duration 3 s +2018/09/16 02:51:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:55578) +2018/09/16 02:51:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:51:54 ruptelaNet.go:261: Data received(client: [::1]:55578, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 02:51:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55578, IMEI: 352094087982671) +2018/09/16 02:51:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:51:57 ruptelaNet.go:261: Data received(client: [::1]:55578, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:51:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:51:57 ruptelaNet.go:278: Sent ACK (client: [::1]:55578, IMEI: 352094087982671) +2018/09/16 02:51:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55578, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 02:52:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:55643) +2018/09/16 02:52:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:52:23 ruptelaNet.go:261: Data received(client: [::1]:55643, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 02:52:23 ruptelaNet.go:278: Sent ACK (client: [::1]:55643, IMEI: 352094087982671) +2018/09/16 02:52:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:52:26 ruptelaNet.go:261: Data received(client: [::1]:55643, IMEI: 352094087982671) with duration 3.73 s +2018/09/16 02:52:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:52:26 ruptelaNet.go:278: Sent ACK (client: [::1]:55643, IMEI: 352094087982671) +2018/09/16 02:52:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55643, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 02:52:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:55684) +2018/09/16 02:52:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:52:41 ruptelaNet.go:261: Data received(client: [::1]:55684, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:52:41 ruptelaNet.go:278: Sent ACK (client: [::1]:55684, IMEI: 352094089712860) +2018/09/16 02:52:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:52:43 ruptelaNet.go:261: Data received(client: [::1]:55684, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 02:52:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:52:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55684, IMEI: 352094089712860) +2018/09/16 02:52:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55684, IMEI: 352094089712860) with duration 2.63 s +2018/09/16 02:52:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:55707) +2018/09/16 02:52:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:52:52 ruptelaNet.go:261: Data received(client: [::1]:55707, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 02:52:52 ruptelaNet.go:278: Sent ACK (client: [::1]:55707, IMEI: 352094087982671) +2018/09/16 02:52:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:52:55 ruptelaNet.go:261: Data received(client: [::1]:55707, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 02:52:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:52:55 ruptelaNet.go:278: Sent ACK (client: [::1]:55707, IMEI: 352094087982671) +2018/09/16 02:52:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55707, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 02:53:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:55772) +2018/09/16 02:53:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:53:21 ruptelaNet.go:261: Data received(client: [::1]:55772, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:53:21 ruptelaNet.go:278: Sent ACK (client: [::1]:55772, IMEI: 352094087982671) +2018/09/16 02:53:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:53:24 ruptelaNet.go:261: Data received(client: [::1]:55772, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 02:53:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:53:24 ruptelaNet.go:278: Sent ACK (client: [::1]:55772, IMEI: 352094087982671) +2018/09/16 02:53:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55772, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 02:53:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:55816) +2018/09/16 02:53:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:53:45 ruptelaNet.go:261: Data received(client: [::1]:55816, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:53:45 ruptelaNet.go:278: Sent ACK (client: [::1]:55816, IMEI: 352094089712860) +2018/09/16 02:53:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:53:47 ruptelaNet.go:261: Data received(client: [::1]:55816, IMEI: 352094089712860) with duration 2.56 s +2018/09/16 02:53:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:53:47 ruptelaNet.go:278: Sent ACK (client: [::1]:55816, IMEI: 352094089712860) +2018/09/16 02:53:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55816, IMEI: 352094089712860) with duration 4.2 s +2018/09/16 02:53:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:55828) +2018/09/16 02:53:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:53:50 ruptelaNet.go:261: Data received(client: [::1]:55828, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:53:50 ruptelaNet.go:278: Sent ACK (client: [::1]:55828, IMEI: 352094087982671) +2018/09/16 02:53:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:53:53 ruptelaNet.go:261: Data received(client: [::1]:55828, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:53:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:53:53 ruptelaNet.go:278: Sent ACK (client: [::1]:55828, IMEI: 352094087982671) +2018/09/16 02:53:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55828, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 02:54:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:55884) +2018/09/16 02:54:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:54:19 ruptelaNet.go:261: Data received(client: [::1]:55884, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 02:54:19 ruptelaNet.go:278: Sent ACK (client: [::1]:55884, IMEI: 352094087982671) +2018/09/16 02:54:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:54:22 ruptelaNet.go:261: Data received(client: [::1]:55884, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:54:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:54:22 ruptelaNet.go:278: Sent ACK (client: [::1]:55884, IMEI: 352094087982671) +2018/09/16 02:54:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55884, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:54:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:55931) +2018/09/16 02:54:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:54:41 ruptelaNet.go:261: Data received(client: [::1]:55931, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:54:41 ruptelaNet.go:278: Sent ACK (client: [::1]:55931, IMEI: 352094089712860) +2018/09/16 02:54:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:54:43 ruptelaNet.go:261: Data received(client: [::1]:55931, IMEI: 352094089712860) with duration 2.37 s +2018/09/16 02:54:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:54:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55931, IMEI: 352094089712860) +2018/09/16 02:54:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55931, IMEI: 352094089712860) with duration 3.79 s +2018/09/16 02:54:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:55948) +2018/09/16 02:54:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:54:48 ruptelaNet.go:261: Data received(client: [::1]:55948, IMEI: 352094087982671) with duration 0.81 s +2018/09/16 02:54:48 ruptelaNet.go:278: Sent ACK (client: [::1]:55948, IMEI: 352094087982671) +2018/09/16 02:54:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:54:51 ruptelaNet.go:261: Data received(client: [::1]:55948, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 02:54:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:54:51 ruptelaNet.go:278: Sent ACK (client: [::1]:55948, IMEI: 352094087982671) +2018/09/16 02:54:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55948, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 02:55:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:56000) +2018/09/16 02:55:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:55:17 ruptelaNet.go:261: Data received(client: [::1]:56000, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:55:17 ruptelaNet.go:278: Sent ACK (client: [::1]:56000, IMEI: 352094087982671) +2018/09/16 02:55:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:55:20 ruptelaNet.go:261: Data received(client: [::1]:56000, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 02:55:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:55:20 ruptelaNet.go:278: Sent ACK (client: [::1]:56000, IMEI: 352094087982671) +2018/09/16 02:55:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56000, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 02:55:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56048) +2018/09/16 02:55:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:55:41 ruptelaNet.go:261: Data received(client: [::1]:56048, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:55:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56048, IMEI: 352094089712860) +2018/09/16 02:55:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:55:43 ruptelaNet.go:261: Data received(client: [::1]:56048, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 02:55:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:55:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56048, IMEI: 352094089712860) +2018/09/16 02:55:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56048, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 02:55:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:56060) +2018/09/16 02:55:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:55:46 ruptelaNet.go:261: Data received(client: [::1]:56060, IMEI: 352094087982671) with duration 1.22 s +2018/09/16 02:55:46 ruptelaNet.go:278: Sent ACK (client: [::1]:56060, IMEI: 352094087982671) +2018/09/16 02:55:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:55:50 ruptelaNet.go:261: Data received(client: [::1]:56060, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 02:55:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:55:50 ruptelaNet.go:278: Sent ACK (client: [::1]:56060, IMEI: 352094087982671) +2018/09/16 02:55:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56060, IMEI: 352094087982671) with duration 6.46 s +2018/09/16 02:56:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:56123) +2018/09/16 02:56:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:56:15 ruptelaNet.go:261: Data received(client: [::1]:56123, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:56:15 ruptelaNet.go:278: Sent ACK (client: [::1]:56123, IMEI: 352094087982671) +2018/09/16 02:56:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:56:18 ruptelaNet.go:261: Data received(client: [::1]:56123, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:56:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:56:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56123, IMEI: 352094087982671) +2018/09/16 02:56:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56123, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 02:56:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56177) +2018/09/16 02:56:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:56:41 ruptelaNet.go:261: Data received(client: [::1]:56177, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:56:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56177, IMEI: 352094089712860) +2018/09/16 02:56:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:56:43 ruptelaNet.go:261: Data received(client: [::1]:56177, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 02:56:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:56:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56177, IMEI: 352094089712860) +2018/09/16 02:56:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:56184) +2018/09/16 02:56:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:56:44 ruptelaNet.go:261: Data received(client: [::1]:56184, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 02:56:44 ruptelaNet.go:278: Sent ACK (client: [::1]:56184, IMEI: 352094087982671) +2018/09/16 02:56:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56177, IMEI: 352094089712860) with duration 5.2 s +2018/09/16 02:56:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:56:47 ruptelaNet.go:261: Data received(client: [::1]:56184, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 02:56:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:56:47 ruptelaNet.go:278: Sent ACK (client: [::1]:56184, IMEI: 352094087982671) +2018/09/16 02:56:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56184, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 02:57:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:56251) +2018/09/16 02:57:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:57:13 ruptelaNet.go:261: Data received(client: [::1]:56251, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 02:57:13 ruptelaNet.go:278: Sent ACK (client: [::1]:56251, IMEI: 352094087982671) +2018/09/16 02:57:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:57:18 ruptelaNet.go:261: Data received(client: [::1]:56251, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 02:57:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:57:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56251, IMEI: 352094087982671) +2018/09/16 02:57:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56251, IMEI: 352094087982671) with duration 7.68 s +2018/09/16 02:57:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56312) +2018/09/16 02:57:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:57:41 ruptelaNet.go:261: Data received(client: [::1]:56312, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:57:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56312, IMEI: 352094089712860) +2018/09/16 02:57:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:57:43 ruptelaNet.go:261: Data received(client: [::1]:56312, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 02:57:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:57:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56312, IMEI: 352094089712860) +2018/09/16 02:57:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:56317) +2018/09/16 02:57:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56312, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 02:57:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:57:44 ruptelaNet.go:261: Data received(client: [::1]:56317, IMEI: 352094087982671) with duration 0.71 s +2018/09/16 02:57:44 ruptelaNet.go:278: Sent ACK (client: [::1]:56317, IMEI: 352094087982671) +2018/09/16 02:57:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:57:47 ruptelaNet.go:261: Data received(client: [::1]:56317, IMEI: 352094087982671) with duration 3.39 s +2018/09/16 02:57:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:57:47 ruptelaNet.go:278: Sent ACK (client: [::1]:56317, IMEI: 352094087982671) +2018/09/16 02:57:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56317, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 02:58:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:56381) +2018/09/16 02:58:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:58:13 ruptelaNet.go:261: Data received(client: [::1]:56381, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:58:13 ruptelaNet.go:278: Sent ACK (client: [::1]:56381, IMEI: 352094087982671) +2018/09/16 02:58:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:58:16 ruptelaNet.go:261: Data received(client: [::1]:56381, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 02:58:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:58:16 ruptelaNet.go:278: Sent ACK (client: [::1]:56381, IMEI: 352094087982671) +2018/09/16 02:58:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56381, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 02:58:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56437) +2018/09/16 02:58:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:58:41 ruptelaNet.go:261: Data received(client: [::1]:56437, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:58:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56437, IMEI: 352094089712860) +2018/09/16 02:58:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56438) +2018/09/16 02:58:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:58:42 ruptelaNet.go:261: Data received(client: [::1]:56438, IMEI: 352094087982671) with duration 0.83 s +2018/09/16 02:58:42 ruptelaNet.go:278: Sent ACK (client: [::1]:56438, IMEI: 352094087982671) +2018/09/16 02:58:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:58:43 ruptelaNet.go:261: Data received(client: [::1]:56437, IMEI: 352094089712860) with duration 2.06 s +2018/09/16 02:58:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:58:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56437, IMEI: 352094089712860) +2018/09/16 02:58:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56437, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 02:58:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:58:45 ruptelaNet.go:261: Data received(client: [::1]:56438, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 02:58:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:58:45 ruptelaNet.go:278: Sent ACK (client: [::1]:56438, IMEI: 352094087982671) +2018/09/16 02:58:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56438, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 02:59:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:56498) +2018/09/16 02:59:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:59:11 ruptelaNet.go:261: Data received(client: [::1]:56498, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:59:11 ruptelaNet.go:278: Sent ACK (client: [::1]:56498, IMEI: 352094087982671) +2018/09/16 02:59:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:59:14 ruptelaNet.go:261: Data received(client: [::1]:56498, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:59:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:59:14 ruptelaNet.go:278: Sent ACK (client: [::1]:56498, IMEI: 352094087982671) +2018/09/16 02:59:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56498, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 02:59:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:56562) +2018/09/16 02:59:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:59:40 ruptelaNet.go:261: Data received(client: [::1]:56562, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:59:40 ruptelaNet.go:278: Sent ACK (client: [::1]:56562, IMEI: 352094087982671) +2018/09/16 02:59:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:56568) +2018/09/16 02:59:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:59:42 ruptelaNet.go:261: Data received(client: [::1]:56568, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:59:42 ruptelaNet.go:278: Sent ACK (client: [::1]:56568, IMEI: 352094089712860) +2018/09/16 02:59:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:59:43 ruptelaNet.go:261: Data received(client: [::1]:56562, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:59:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:59:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56562, IMEI: 352094087982671) +2018/09/16 02:59:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:59:44 ruptelaNet.go:261: Data received(client: [::1]:56568, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 02:59:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:59:44 ruptelaNet.go:278: Sent ACK (client: [::1]:56568, IMEI: 352094089712860) +2018/09/16 02:59:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56562, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:59:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56568, IMEI: 352094089712860) with duration 3.08 s +2018/09/16 03:00:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:56622) +2018/09/16 03:00:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:00:09 ruptelaNet.go:261: Data received(client: [::1]:56622, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:00:09 ruptelaNet.go:278: Sent ACK (client: [::1]:56622, IMEI: 352094087982671) +2018/09/16 03:00:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:00:12 ruptelaNet.go:261: Data received(client: [::1]:56622, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:00:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:00:12 ruptelaNet.go:278: Sent ACK (client: [::1]:56622, IMEI: 352094087982671) +2018/09/16 03:00:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56622, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:00:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:56675) +2018/09/16 03:00:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:00:38 ruptelaNet.go:261: Data received(client: [::1]:56675, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 03:00:38 ruptelaNet.go:278: Sent ACK (client: [::1]:56675, IMEI: 352094087982671) +2018/09/16 03:00:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:00:41 ruptelaNet.go:261: Data received(client: [::1]:56675, IMEI: 352094087982671) with duration 4.03 s +2018/09/16 03:00:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:00:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56675, IMEI: 352094087982671) +2018/09/16 03:00:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56675, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 03:00:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:56687) +2018/09/16 03:00:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:00:44 ruptelaNet.go:261: Data received(client: [::1]:56687, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:00:44 ruptelaNet.go:278: Sent ACK (client: [::1]:56687, IMEI: 352094089712860) +2018/09/16 03:00:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:00:58 ruptelaNet.go:261: Data received(client: [::1]:56687, IMEI: 352094089712860) with duration 14.85 s +2018/09/16 03:00:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:00:58 ruptelaNet.go:278: Sent ACK (client: [::1]:56687, IMEI: 352094089712860) +2018/09/16 03:01:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56687, IMEI: 352094089712860) with duration 19.77 s +2018/09/16 03:01:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:56740) +2018/09/16 03:01:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:01:07 ruptelaNet.go:261: Data received(client: [::1]:56740, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 03:01:07 ruptelaNet.go:278: Sent ACK (client: [::1]:56740, IMEI: 352094087982671) +2018/09/16 03:01:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:01:10 ruptelaNet.go:261: Data received(client: [::1]:56740, IMEI: 352094087982671) with duration 4 s +2018/09/16 03:01:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:01:10 ruptelaNet.go:278: Sent ACK (client: [::1]:56740, IMEI: 352094087982671) +2018/09/16 03:01:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56740, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 03:01:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:56799) +2018/09/16 03:01:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:01:36 ruptelaNet.go:261: Data received(client: [::1]:56799, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:01:36 ruptelaNet.go:278: Sent ACK (client: [::1]:56799, IMEI: 352094087982671) +2018/09/16 03:01:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:01:39 ruptelaNet.go:261: Data received(client: [::1]:56799, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:01:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:01:39 ruptelaNet.go:278: Sent ACK (client: [::1]:56799, IMEI: 352094087982671) +2018/09/16 03:01:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56799, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:01:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56815) +2018/09/16 03:01:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:01:41 ruptelaNet.go:261: Data received(client: [::1]:56815, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:01:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56815, IMEI: 352094089712860) +2018/09/16 03:01:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:01:43 ruptelaNet.go:261: Data received(client: [::1]:56815, IMEI: 352094089712860) with duration 1.69 s +2018/09/16 03:01:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:01:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56815, IMEI: 352094089712860) +2018/09/16 03:01:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56815, IMEI: 352094089712860) with duration 3.56 s +2018/09/16 03:02:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:56861) +2018/09/16 03:02:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:02:05 ruptelaNet.go:261: Data received(client: [::1]:56861, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 03:02:05 ruptelaNet.go:278: Sent ACK (client: [::1]:56861, IMEI: 352094087982671) +2018/09/16 03:02:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:02:08 ruptelaNet.go:261: Data received(client: [::1]:56861, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 03:02:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:02:08 ruptelaNet.go:278: Sent ACK (client: [::1]:56861, IMEI: 352094087982671) +2018/09/16 03:02:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56861, IMEI: 352094087982671) with duration 6 s +2018/09/16 03:02:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:56921) +2018/09/16 03:02:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:02:34 ruptelaNet.go:261: Data received(client: [::1]:56921, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 03:02:34 ruptelaNet.go:278: Sent ACK (client: [::1]:56921, IMEI: 352094087982671) +2018/09/16 03:02:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:02:37 ruptelaNet.go:261: Data received(client: [::1]:56921, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 03:02:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:02:37 ruptelaNet.go:278: Sent ACK (client: [::1]:56921, IMEI: 352094087982671) +2018/09/16 03:02:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56921, IMEI: 352094087982671) with duration 6 s +2018/09/16 03:02:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:56942) +2018/09/16 03:02:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:02:43 ruptelaNet.go:261: Data received(client: [::1]:56942, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:02:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56942, IMEI: 352094089712860) +2018/09/16 03:02:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:02:46 ruptelaNet.go:261: Data received(client: [::1]:56942, IMEI: 352094089712860) with duration 2.11 s +2018/09/16 03:02:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:02:46 ruptelaNet.go:278: Sent ACK (client: [::1]:56942, IMEI: 352094089712860) +2018/09/16 03:02:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56942, IMEI: 352094089712860) with duration 3.04 s +2018/09/16 03:03:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:56983) +2018/09/16 03:03:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:03:03 ruptelaNet.go:261: Data received(client: [::1]:56983, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:03:03 ruptelaNet.go:278: Sent ACK (client: [::1]:56983, IMEI: 352094087982671) +2018/09/16 03:03:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:03:06 ruptelaNet.go:261: Data received(client: [::1]:56983, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:03:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:03:06 ruptelaNet.go:278: Sent ACK (client: [::1]:56983, IMEI: 352094087982671) +2018/09/16 03:03:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56983, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 03:03:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:57041) +2018/09/16 03:03:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:03:32 ruptelaNet.go:261: Data received(client: [::1]:57041, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:03:32 ruptelaNet.go:278: Sent ACK (client: [::1]:57041, IMEI: 352094087982671) +2018/09/16 03:03:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:03:35 ruptelaNet.go:261: Data received(client: [::1]:57041, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 03:03:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:03:35 ruptelaNet.go:278: Sent ACK (client: [::1]:57041, IMEI: 352094087982671) +2018/09/16 03:03:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57041, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:03:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57067) +2018/09/16 03:03:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:03:42 ruptelaNet.go:261: Data received(client: [::1]:57067, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:03:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57067, IMEI: 352094089712860) +2018/09/16 03:03:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:03:45 ruptelaNet.go:261: Data received(client: [::1]:57067, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 03:03:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:03:45 ruptelaNet.go:278: Sent ACK (client: [::1]:57067, IMEI: 352094089712860) +2018/09/16 03:03:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57067, IMEI: 352094089712860) with duration 4.17 s +2018/09/16 03:04:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:57104) +2018/09/16 03:04:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:04:01 ruptelaNet.go:261: Data received(client: [::1]:57104, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:04:01 ruptelaNet.go:278: Sent ACK (client: [::1]:57104, IMEI: 352094087982671) +2018/09/16 03:04:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:04:05 ruptelaNet.go:261: Data received(client: [::1]:57104, IMEI: 352094087982671) with duration 4.5 s +2018/09/16 03:04:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:04:05 ruptelaNet.go:278: Sent ACK (client: [::1]:57104, IMEI: 352094087982671) +2018/09/16 03:04:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57104, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 03:04:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:57159) +2018/09/16 03:04:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:04:31 ruptelaNet.go:261: Data received(client: [::1]:57159, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 03:04:31 ruptelaNet.go:278: Sent ACK (client: [::1]:57159, IMEI: 352094087982671) +2018/09/16 03:04:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:04:34 ruptelaNet.go:261: Data received(client: [::1]:57159, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:04:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:04:34 ruptelaNet.go:278: Sent ACK (client: [::1]:57159, IMEI: 352094087982671) +2018/09/16 03:04:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57159, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 03:04:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57180) +2018/09/16 03:04:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:04:42 ruptelaNet.go:261: Data received(client: [::1]:57180, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:04:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57180, IMEI: 352094089712860) +2018/09/16 03:04:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:04:44 ruptelaNet.go:261: Data received(client: [::1]:57180, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:04:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:04:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57180, IMEI: 352094089712860) +2018/09/16 03:04:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57180, IMEI: 352094089712860) with duration 2.68 s +2018/09/16 03:04:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:57224) +2018/09/16 03:05:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:05:00 ruptelaNet.go:261: Data received(client: [::1]:57224, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:05:00 ruptelaNet.go:278: Sent ACK (client: [::1]:57224, IMEI: 352094087982671) +2018/09/16 03:05:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:05:03 ruptelaNet.go:261: Data received(client: [::1]:57224, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 03:05:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:05:03 ruptelaNet.go:278: Sent ACK (client: [::1]:57224, IMEI: 352094087982671) +2018/09/16 03:05:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57224, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 03:05:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:57285) +2018/09/16 03:05:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:05:29 ruptelaNet.go:261: Data received(client: [::1]:57285, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:05:29 ruptelaNet.go:278: Sent ACK (client: [::1]:57285, IMEI: 352094087982671) +2018/09/16 03:05:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:05:32 ruptelaNet.go:261: Data received(client: [::1]:57285, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:05:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:05:32 ruptelaNet.go:278: Sent ACK (client: [::1]:57285, IMEI: 352094087982671) +2018/09/16 03:05:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57285, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:05:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57313) +2018/09/16 03:05:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:05:42 ruptelaNet.go:261: Data received(client: [::1]:57313, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:05:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57313, IMEI: 352094089712860) +2018/09/16 03:05:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:05:44 ruptelaNet.go:261: Data received(client: [::1]:57313, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 03:05:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:05:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57313, IMEI: 352094089712860) +2018/09/16 03:05:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57313, IMEI: 352094089712860) with duration 2.61 s +2018/09/16 03:05:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:57345) +2018/09/16 03:05:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:05:58 ruptelaNet.go:261: Data received(client: [::1]:57345, IMEI: 352094087982671) with duration 0.88 s +2018/09/16 03:05:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57345, IMEI: 352094087982671) +2018/09/16 03:06:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:06:01 ruptelaNet.go:261: Data received(client: [::1]:57345, IMEI: 352094087982671) with duration 3.75 s +2018/09/16 03:06:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:06:01 ruptelaNet.go:278: Sent ACK (client: [::1]:57345, IMEI: 352094087982671) +2018/09/16 03:06:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57345, IMEI: 352094087982671) with duration 6 s +2018/09/16 03:06:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:57399) +2018/09/16 03:06:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:06:27 ruptelaNet.go:261: Data received(client: [::1]:57399, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 03:06:27 ruptelaNet.go:278: Sent ACK (client: [::1]:57399, IMEI: 352094087982671) +2018/09/16 03:06:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:06:30 ruptelaNet.go:261: Data received(client: [::1]:57399, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 03:06:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:06:30 ruptelaNet.go:278: Sent ACK (client: [::1]:57399, IMEI: 352094087982671) +2018/09/16 03:06:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57399, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 03:06:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57434) +2018/09/16 03:06:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:06:43 ruptelaNet.go:261: Data received(client: [::1]:57434, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:06:43 ruptelaNet.go:278: Sent ACK (client: [::1]:57434, IMEI: 352094089712860) +2018/09/16 03:06:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:06:49 ruptelaNet.go:261: Data received(client: [::1]:57434, IMEI: 352094089712860) with duration 6.08 s +2018/09/16 03:06:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:06:49 ruptelaNet.go:278: Sent ACK (client: [::1]:57434, IMEI: 352094089712860) +2018/09/16 03:06:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57434, IMEI: 352094089712860) with duration 6.81 s +2018/09/16 03:06:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:57463) +2018/09/16 03:06:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:06:56 ruptelaNet.go:261: Data received(client: [::1]:57463, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 03:06:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57463, IMEI: 352094087982671) +2018/09/16 03:06:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:06:59 ruptelaNet.go:261: Data received(client: [::1]:57463, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:06:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:06:59 ruptelaNet.go:278: Sent ACK (client: [::1]:57463, IMEI: 352094087982671) +2018/09/16 03:07:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57463, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:07:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:57528) +2018/09/16 03:07:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:07:25 ruptelaNet.go:261: Data received(client: [::1]:57528, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 03:07:25 ruptelaNet.go:278: Sent ACK (client: [::1]:57528, IMEI: 352094087982671) +2018/09/16 03:07:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:07:28 ruptelaNet.go:261: Data received(client: [::1]:57528, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 03:07:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:07:28 ruptelaNet.go:278: Sent ACK (client: [::1]:57528, IMEI: 352094087982671) +2018/09/16 03:07:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57528, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 03:07:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57562) +2018/09/16 03:07:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:07:43 ruptelaNet.go:261: Data received(client: [::1]:57562, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:07:43 ruptelaNet.go:278: Sent ACK (client: [::1]:57562, IMEI: 352094089712860) +2018/09/16 03:07:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:07:45 ruptelaNet.go:261: Data received(client: [::1]:57562, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:07:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:07:45 ruptelaNet.go:278: Sent ACK (client: [::1]:57562, IMEI: 352094089712860) +2018/09/16 03:07:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57562, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 03:07:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:57589) +2018/09/16 03:07:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:07:54 ruptelaNet.go:261: Data received(client: [::1]:57589, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:07:54 ruptelaNet.go:278: Sent ACK (client: [::1]:57589, IMEI: 352094087982671) +2018/09/16 03:07:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:07:57 ruptelaNet.go:261: Data received(client: [::1]:57589, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 03:07:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:07:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57589, IMEI: 352094087982671) +2018/09/16 03:07:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57589, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:08:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:57654) +2018/09/16 03:08:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:08:26 ruptelaNet.go:261: Data received(client: [::1]:57654, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:08:26 ruptelaNet.go:278: Sent ACK (client: [::1]:57654, IMEI: 352094087982671) +2018/09/16 03:08:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:08:28 ruptelaNet.go:261: Data received(client: [::1]:57654, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:08:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:08:28 ruptelaNet.go:278: Sent ACK (client: [::1]:57654, IMEI: 352094087982671) +2018/09/16 03:08:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57654, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 03:08:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57688) +2018/09/16 03:08:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:08:42 ruptelaNet.go:261: Data received(client: [::1]:57688, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:08:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57688, IMEI: 352094089712860) +2018/09/16 03:08:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:08:44 ruptelaNet.go:261: Data received(client: [::1]:57688, IMEI: 352094089712860) with duration 2.37 s +2018/09/16 03:08:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:08:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57688, IMEI: 352094089712860) +2018/09/16 03:08:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57688, IMEI: 352094089712860) with duration 4.05 s +2018/09/16 03:08:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:57712) +2018/09/16 03:08:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:08:54 ruptelaNet.go:261: Data received(client: [::1]:57712, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:08:54 ruptelaNet.go:278: Sent ACK (client: [::1]:57712, IMEI: 352094087982671) +2018/09/16 03:08:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:08:57 ruptelaNet.go:261: Data received(client: [::1]:57712, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 03:08:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:08:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57712, IMEI: 352094087982671) +2018/09/16 03:08:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57712, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:09:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:57773) +2018/09/16 03:09:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:09:23 ruptelaNet.go:261: Data received(client: [::1]:57773, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:09:23 ruptelaNet.go:278: Sent ACK (client: [::1]:57773, IMEI: 352094087982671) +2018/09/16 03:09:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:09:26 ruptelaNet.go:261: Data received(client: [::1]:57773, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 03:09:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:09:26 ruptelaNet.go:278: Sent ACK (client: [::1]:57773, IMEI: 352094087982671) +2018/09/16 03:09:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57773, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 03:09:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57809) +2018/09/16 03:09:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:09:42 ruptelaNet.go:261: Data received(client: [::1]:57809, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:09:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57809, IMEI: 352094089712860) +2018/09/16 03:09:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:09:44 ruptelaNet.go:261: Data received(client: [::1]:57809, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 03:09:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:09:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57809, IMEI: 352094089712860) +2018/09/16 03:09:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57809, IMEI: 352094089712860) with duration 2.63 s +2018/09/16 03:09:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:57832) +2018/09/16 03:09:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:09:52 ruptelaNet.go:261: Data received(client: [::1]:57832, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:09:52 ruptelaNet.go:278: Sent ACK (client: [::1]:57832, IMEI: 352094087982671) +2018/09/16 03:09:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:09:56 ruptelaNet.go:261: Data received(client: [::1]:57832, IMEI: 352094087982671) with duration 4.32 s +2018/09/16 03:09:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:09:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57832, IMEI: 352094087982671) +2018/09/16 03:10:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57832, IMEI: 352094087982671) with duration 14.13 s +2018/09/16 03:10:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:57905) +2018/09/16 03:10:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:10:29 ruptelaNet.go:261: Data received(client: [::1]:57905, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:10:29 ruptelaNet.go:278: Sent ACK (client: [::1]:57905, IMEI: 352094087982671) +2018/09/16 03:10:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:10:32 ruptelaNet.go:261: Data received(client: [::1]:57905, IMEI: 352094087982671) with duration 3.63 s +2018/09/16 03:10:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:10:32 ruptelaNet.go:278: Sent ACK (client: [::1]:57905, IMEI: 352094087982671) +2018/09/16 03:10:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57905, IMEI: 352094087982671) with duration 5.69 s +2018/09/16 03:10:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57930) +2018/09/16 03:10:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:10:42 ruptelaNet.go:261: Data received(client: [::1]:57930, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:10:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57930, IMEI: 352094089712860) +2018/09/16 03:10:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:10:44 ruptelaNet.go:261: Data received(client: [::1]:57930, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:10:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:10:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57930, IMEI: 352094089712860) +2018/09/16 03:10:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57930, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 03:10:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:57959) +2018/09/16 03:10:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:10:58 ruptelaNet.go:261: Data received(client: [::1]:57959, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:10:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57959, IMEI: 352094087982671) +2018/09/16 03:11:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:11:01 ruptelaNet.go:261: Data received(client: [::1]:57959, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:11:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:11:01 ruptelaNet.go:278: Sent ACK (client: [::1]:57959, IMEI: 352094087982671) +2018/09/16 03:11:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57959, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:11:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:58013) +2018/09/16 03:11:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:11:27 ruptelaNet.go:261: Data received(client: [::1]:58013, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:11:27 ruptelaNet.go:278: Sent ACK (client: [::1]:58013, IMEI: 352094087982671) +2018/09/16 03:11:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:11:30 ruptelaNet.go:261: Data received(client: [::1]:58013, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 03:11:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:11:30 ruptelaNet.go:278: Sent ACK (client: [::1]:58013, IMEI: 352094087982671) +2018/09/16 03:11:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58013, IMEI: 352094087982671) with duration 6.18 s +2018/09/16 03:11:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:58050) +2018/09/16 03:11:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:11:42 ruptelaNet.go:261: Data received(client: [::1]:58050, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:11:42 ruptelaNet.go:278: Sent ACK (client: [::1]:58050, IMEI: 352094089712860) +2018/09/16 03:11:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:11:44 ruptelaNet.go:261: Data received(client: [::1]:58050, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 03:11:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:11:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58050, IMEI: 352094089712860) +2018/09/16 03:11:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58050, IMEI: 352094089712860) with duration 2.72 s +2018/09/16 03:11:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:58080) +2018/09/16 03:11:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:11:56 ruptelaNet.go:261: Data received(client: [::1]:58080, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:11:56 ruptelaNet.go:278: Sent ACK (client: [::1]:58080, IMEI: 352094087982671) +2018/09/16 03:11:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:11:59 ruptelaNet.go:261: Data received(client: [::1]:58080, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 03:11:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:11:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58080, IMEI: 352094087982671) +2018/09/16 03:12:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58080, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 03:12:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:58145) +2018/09/16 03:12:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:12:25 ruptelaNet.go:261: Data received(client: [::1]:58145, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 03:12:25 ruptelaNet.go:278: Sent ACK (client: [::1]:58145, IMEI: 352094087982671) +2018/09/16 03:12:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:12:28 ruptelaNet.go:261: Data received(client: [::1]:58145, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:12:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:12:28 ruptelaNet.go:278: Sent ACK (client: [::1]:58145, IMEI: 352094087982671) +2018/09/16 03:12:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58145, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:12:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58179) +2018/09/16 03:12:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:12:43 ruptelaNet.go:261: Data received(client: [::1]:58179, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:12:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58179, IMEI: 352094089712860) +2018/09/16 03:12:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:12:44 ruptelaNet.go:261: Data received(client: [::1]:58179, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 03:12:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:12:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58179, IMEI: 352094089712860) +2018/09/16 03:12:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58179, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 03:12:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:58209) +2018/09/16 03:12:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:12:54 ruptelaNet.go:261: Data received(client: [::1]:58209, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:12:54 ruptelaNet.go:278: Sent ACK (client: [::1]:58209, IMEI: 352094087982671) +2018/09/16 03:12:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:12:57 ruptelaNet.go:261: Data received(client: [::1]:58209, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 03:12:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:12:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58209, IMEI: 352094087982671) +2018/09/16 03:12:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58209, IMEI: 352094087982671) with duration 6.26 s +2018/09/16 03:13:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:58266) +2018/09/16 03:13:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:13:23 ruptelaNet.go:261: Data received(client: [::1]:58266, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:13:23 ruptelaNet.go:278: Sent ACK (client: [::1]:58266, IMEI: 352094087982671) +2018/09/16 03:13:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:13:26 ruptelaNet.go:261: Data received(client: [::1]:58266, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 03:13:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:13:26 ruptelaNet.go:278: Sent ACK (client: [::1]:58266, IMEI: 352094087982671) +2018/09/16 03:13:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58266, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:13:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58303) +2018/09/16 03:13:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:13:43 ruptelaNet.go:261: Data received(client: [::1]:58303, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:13:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58303, IMEI: 352094089712860) +2018/09/16 03:13:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:13:45 ruptelaNet.go:261: Data received(client: [::1]:58303, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 03:13:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:13:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58303, IMEI: 352094089712860) +2018/09/16 03:13:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58303, IMEI: 352094089712860) with duration 2.91 s +2018/09/16 03:13:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:58324) +2018/09/16 03:13:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:13:52 ruptelaNet.go:261: Data received(client: [::1]:58324, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 03:13:52 ruptelaNet.go:278: Sent ACK (client: [::1]:58324, IMEI: 352094087982671) +2018/09/16 03:13:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:13:55 ruptelaNet.go:261: Data received(client: [::1]:58324, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:13:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:13:55 ruptelaNet.go:278: Sent ACK (client: [::1]:58324, IMEI: 352094087982671) +2018/09/16 03:13:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58324, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 03:14:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:58383) +2018/09/16 03:14:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:14:21 ruptelaNet.go:261: Data received(client: [::1]:58383, IMEI: 352094087982671) with duration 0.78 s +2018/09/16 03:14:21 ruptelaNet.go:278: Sent ACK (client: [::1]:58383, IMEI: 352094087982671) +2018/09/16 03:14:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:14:24 ruptelaNet.go:261: Data received(client: [::1]:58383, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 03:14:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:14:24 ruptelaNet.go:278: Sent ACK (client: [::1]:58383, IMEI: 352094087982671) +2018/09/16 03:14:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58383, IMEI: 352094087982671) with duration 5.71 s +2018/09/16 03:14:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58428) +2018/09/16 03:14:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:14:43 ruptelaNet.go:261: Data received(client: [::1]:58428, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:14:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58428, IMEI: 352094089712860) +2018/09/16 03:14:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:14:45 ruptelaNet.go:261: Data received(client: [::1]:58428, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 03:14:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:14:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58428, IMEI: 352094089712860) +2018/09/16 03:14:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58428, IMEI: 352094089712860) with duration 3.09 s +2018/09/16 03:14:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:58442) +2018/09/16 03:14:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:14:50 ruptelaNet.go:261: Data received(client: [::1]:58442, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:14:50 ruptelaNet.go:278: Sent ACK (client: [::1]:58442, IMEI: 352094087982671) +2018/09/16 03:14:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:14:53 ruptelaNet.go:261: Data received(client: [::1]:58442, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 03:14:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:14:53 ruptelaNet.go:278: Sent ACK (client: [::1]:58442, IMEI: 352094087982671) +2018/09/16 03:14:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58442, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:15:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58499) +2018/09/16 03:15:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:15:19 ruptelaNet.go:261: Data received(client: [::1]:58499, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:15:19 ruptelaNet.go:278: Sent ACK (client: [::1]:58499, IMEI: 352094087982671) +2018/09/16 03:15:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:15:22 ruptelaNet.go:261: Data received(client: [::1]:58499, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 03:15:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:15:22 ruptelaNet.go:278: Sent ACK (client: [::1]:58499, IMEI: 352094087982671) +2018/09/16 03:15:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58499, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:15:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58549) +2018/09/16 03:15:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:15:43 ruptelaNet.go:261: Data received(client: [::1]:58549, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:15:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58549, IMEI: 352094089712860) +2018/09/16 03:15:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:15:45 ruptelaNet.go:261: Data received(client: [::1]:58549, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 03:15:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:15:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58549, IMEI: 352094089712860) +2018/09/16 03:15:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58549, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 03:15:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:58560) +2018/09/16 03:15:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:15:48 ruptelaNet.go:261: Data received(client: [::1]:58560, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:15:48 ruptelaNet.go:278: Sent ACK (client: [::1]:58560, IMEI: 352094087982671) +2018/09/16 03:15:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:15:51 ruptelaNet.go:261: Data received(client: [::1]:58560, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:15:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:15:51 ruptelaNet.go:278: Sent ACK (client: [::1]:58560, IMEI: 352094087982671) +2018/09/16 03:15:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58560, IMEI: 352094087982671) with duration 7.88 s +2018/09/16 03:16:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:58624) +2018/09/16 03:16:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:16:17 ruptelaNet.go:261: Data received(client: [::1]:58624, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 03:16:17 ruptelaNet.go:278: Sent ACK (client: [::1]:58624, IMEI: 352094087982671) +2018/09/16 03:16:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:16:20 ruptelaNet.go:261: Data received(client: [::1]:58624, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 03:16:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:16:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58624, IMEI: 352094087982671) +2018/09/16 03:16:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58624, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 03:16:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58678) +2018/09/16 03:16:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:16:43 ruptelaNet.go:261: Data received(client: [::1]:58678, IMEI: 352094089712860) with duration 0.26 s +2018/09/16 03:16:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58678, IMEI: 352094089712860) +2018/09/16 03:16:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:16:45 ruptelaNet.go:261: Data received(client: [::1]:58678, IMEI: 352094089712860) with duration 2.29 s +2018/09/16 03:16:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:16:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58678, IMEI: 352094089712860) +2018/09/16 03:16:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:58684) +2018/09/16 03:16:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58678, IMEI: 352094089712860) with duration 3.12 s +2018/09/16 03:16:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:16:46 ruptelaNet.go:261: Data received(client: [::1]:58684, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:16:46 ruptelaNet.go:278: Sent ACK (client: [::1]:58684, IMEI: 352094087982671) +2018/09/16 03:16:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:16:49 ruptelaNet.go:261: Data received(client: [::1]:58684, IMEI: 352094087982671) with duration 3.47 s +2018/09/16 03:16:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:58684, IMEI: 352094087982671) +2018/09/16 03:16:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58684, IMEI: 352094087982671) with duration 5.62 s +2018/09/16 03:17:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:58747) +2018/09/16 03:17:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:17:15 ruptelaNet.go:261: Data received(client: [::1]:58747, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 03:17:15 ruptelaNet.go:278: Sent ACK (client: [::1]:58747, IMEI: 352094087982671) +2018/09/16 03:17:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:17:18 ruptelaNet.go:261: Data received(client: [::1]:58747, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 03:17:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:17:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58747, IMEI: 352094087982671) +2018/09/16 03:17:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58747, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 03:17:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58805) +2018/09/16 03:17:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:17:43 ruptelaNet.go:261: Data received(client: [::1]:58805, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:17:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58805, IMEI: 352094089712860) +2018/09/16 03:17:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58810) +2018/09/16 03:17:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:17:44 ruptelaNet.go:261: Data received(client: [::1]:58810, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:17:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58810, IMEI: 352094087982671) +2018/09/16 03:17:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:17:45 ruptelaNet.go:261: Data received(client: [::1]:58805, IMEI: 352094089712860) with duration 1.84 s +2018/09/16 03:17:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:17:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58805, IMEI: 352094089712860) +2018/09/16 03:17:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58805, IMEI: 352094089712860) with duration 3.04 s +2018/09/16 03:17:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:17:47 ruptelaNet.go:261: Data received(client: [::1]:58810, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 03:17:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:17:47 ruptelaNet.go:278: Sent ACK (client: [::1]:58810, IMEI: 352094087982671) +2018/09/16 03:17:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58810, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:18:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:58866) +2018/09/16 03:18:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:18:13 ruptelaNet.go:261: Data received(client: [::1]:58866, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 03:18:13 ruptelaNet.go:278: Sent ACK (client: [::1]:58866, IMEI: 352094087982671) +2018/09/16 03:18:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:18:16 ruptelaNet.go:261: Data received(client: [::1]:58866, IMEI: 352094087982671) with duration 4.03 s +2018/09/16 03:18:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:58866, IMEI: 352094087982671) +2018/09/16 03:18:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58866, IMEI: 352094087982671) with duration 6.19 s +2018/09/16 03:18:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:58929) +2018/09/16 03:18:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:18:42 ruptelaNet.go:261: Data received(client: [::1]:58929, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:18:42 ruptelaNet.go:278: Sent ACK (client: [::1]:58929, IMEI: 352094087982671) +2018/09/16 03:18:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58935) +2018/09/16 03:18:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:18:44 ruptelaNet.go:261: Data received(client: [::1]:58935, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 03:18:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58935, IMEI: 352094089712860) +2018/09/16 03:18:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:18:45 ruptelaNet.go:261: Data received(client: [::1]:58929, IMEI: 352094087982671) with duration 3.74 s +2018/09/16 03:18:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:18:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58929, IMEI: 352094087982671) +2018/09/16 03:18:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:18:46 ruptelaNet.go:261: Data received(client: [::1]:58935, IMEI: 352094089712860) with duration 2.32 s +2018/09/16 03:18:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:18:46 ruptelaNet.go:278: Sent ACK (client: [::1]:58935, IMEI: 352094089712860) +2018/09/16 03:18:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58935, IMEI: 352094089712860) with duration 3.06 s +2018/09/16 03:18:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58929, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 03:19:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:58993) +2018/09/16 03:19:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:19:11 ruptelaNet.go:261: Data received(client: [::1]:58993, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 03:19:11 ruptelaNet.go:278: Sent ACK (client: [::1]:58993, IMEI: 352094087982671) +2018/09/16 03:19:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:19:14 ruptelaNet.go:261: Data received(client: [::1]:58993, IMEI: 352094087982671) with duration 4.32 s +2018/09/16 03:19:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:19:14 ruptelaNet.go:278: Sent ACK (client: [::1]:58993, IMEI: 352094087982671) +2018/09/16 03:19:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58993, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 03:19:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:59046) +2018/09/16 03:19:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:19:40 ruptelaNet.go:261: Data received(client: [::1]:59046, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 03:19:40 ruptelaNet.go:278: Sent ACK (client: [::1]:59046, IMEI: 352094087982671) +2018/09/16 03:19:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:19:43 ruptelaNet.go:261: Data received(client: [::1]:59046, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 03:19:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:19:43 ruptelaNet.go:278: Sent ACK (client: [::1]:59046, IMEI: 352094087982671) +2018/09/16 03:19:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:59058) +2018/09/16 03:19:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:19:43 ruptelaNet.go:261: Data received(client: [::1]:59058, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:19:43 ruptelaNet.go:278: Sent ACK (client: [::1]:59058, IMEI: 352094089712860) +2018/09/16 03:19:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:19:45 ruptelaNet.go:261: Data received(client: [::1]:59058, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 03:19:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59046, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 03:19:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:19:45 ruptelaNet.go:278: Sent ACK (client: [::1]:59058, IMEI: 352094089712860) +2018/09/16 03:19:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59058, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 03:20:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:59105) +2018/09/16 03:20:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:20:09 ruptelaNet.go:261: Data received(client: [::1]:59105, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 03:20:09 ruptelaNet.go:278: Sent ACK (client: [::1]:59105, IMEI: 352094087982671) +2018/09/16 03:20:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:20:12 ruptelaNet.go:261: Data received(client: [::1]:59105, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 03:20:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:20:12 ruptelaNet.go:278: Sent ACK (client: [::1]:59105, IMEI: 352094087982671) +2018/09/16 03:20:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59105, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 03:20:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:59163) +2018/09/16 03:20:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:20:38 ruptelaNet.go:261: Data received(client: [::1]:59163, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:20:38 ruptelaNet.go:278: Sent ACK (client: [::1]:59163, IMEI: 352094087982671) +2018/09/16 03:20:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:20:41 ruptelaNet.go:261: Data received(client: [::1]:59163, IMEI: 352094087982671) with duration 4.05 s +2018/09/16 03:20:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:20:41 ruptelaNet.go:278: Sent ACK (client: [::1]:59163, IMEI: 352094087982671) +2018/09/16 03:20:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59163, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 03:20:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59179) +2018/09/16 03:20:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:20:44 ruptelaNet.go:261: Data received(client: [::1]:59179, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:20:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59179, IMEI: 352094089712860) +2018/09/16 03:20:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:20:46 ruptelaNet.go:261: Data received(client: [::1]:59179, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:20:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:20:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59179, IMEI: 352094089712860) +2018/09/16 03:20:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59179, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:21:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:59229) +2018/09/16 03:21:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:21:07 ruptelaNet.go:261: Data received(client: [::1]:59229, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:21:07 ruptelaNet.go:278: Sent ACK (client: [::1]:59229, IMEI: 352094087982671) +2018/09/16 03:21:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:21:10 ruptelaNet.go:261: Data received(client: [::1]:59229, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:21:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:21:10 ruptelaNet.go:278: Sent ACK (client: [::1]:59229, IMEI: 352094087982671) +2018/09/16 03:21:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59229, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:21:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:59286) +2018/09/16 03:21:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:21:36 ruptelaNet.go:261: Data received(client: [::1]:59286, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:21:36 ruptelaNet.go:278: Sent ACK (client: [::1]:59286, IMEI: 352094087982671) +2018/09/16 03:21:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:21:39 ruptelaNet.go:261: Data received(client: [::1]:59286, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:21:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:21:39 ruptelaNet.go:278: Sent ACK (client: [::1]:59286, IMEI: 352094087982671) +2018/09/16 03:21:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59286, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 03:21:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:59303) +2018/09/16 03:21:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:21:44 ruptelaNet.go:261: Data received(client: [::1]:59303, IMEI: 352094089712860) with duration 0.24 s +2018/09/16 03:21:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59303, IMEI: 352094089712860) +2018/09/16 03:21:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:21:46 ruptelaNet.go:261: Data received(client: [::1]:59303, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 03:21:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:21:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59303, IMEI: 352094089712860) +2018/09/16 03:21:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59303, IMEI: 352094089712860) with duration 3.69 s +2018/09/16 03:22:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:59347) +2018/09/16 03:22:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:22:05 ruptelaNet.go:261: Data received(client: [::1]:59347, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:22:05 ruptelaNet.go:278: Sent ACK (client: [::1]:59347, IMEI: 352094087982671) +2018/09/16 03:22:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:22:08 ruptelaNet.go:261: Data received(client: [::1]:59347, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:22:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:22:08 ruptelaNet.go:278: Sent ACK (client: [::1]:59347, IMEI: 352094087982671) +2018/09/16 03:22:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59347, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:22:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:59407) +2018/09/16 03:22:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:22:34 ruptelaNet.go:261: Data received(client: [::1]:59407, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:22:34 ruptelaNet.go:278: Sent ACK (client: [::1]:59407, IMEI: 352094087982671) +2018/09/16 03:22:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:22:37 ruptelaNet.go:261: Data received(client: [::1]:59407, IMEI: 352094087982671) with duration 3.47 s +2018/09/16 03:22:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:22:37 ruptelaNet.go:278: Sent ACK (client: [::1]:59407, IMEI: 352094087982671) +2018/09/16 03:22:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59407, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 03:22:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59423) +2018/09/16 03:22:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:22:44 ruptelaNet.go:261: Data received(client: [::1]:59423, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:22:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59423, IMEI: 352094089712860) +2018/09/16 03:22:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:22:47 ruptelaNet.go:261: Data received(client: [::1]:59423, IMEI: 352094089712860) with duration 2.43 s +2018/09/16 03:22:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:22:47 ruptelaNet.go:278: Sent ACK (client: [::1]:59423, IMEI: 352094089712860) +2018/09/16 03:22:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59423, IMEI: 352094089712860) with duration 4.22 s +2018/09/16 03:23:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:59466) +2018/09/16 03:23:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:23:03 ruptelaNet.go:261: Data received(client: [::1]:59466, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:23:03 ruptelaNet.go:278: Sent ACK (client: [::1]:59466, IMEI: 352094087982671) +2018/09/16 03:23:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:23:06 ruptelaNet.go:261: Data received(client: [::1]:59466, IMEI: 352094087982671) with duration 4.06 s +2018/09/16 03:23:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:23:06 ruptelaNet.go:278: Sent ACK (client: [::1]:59466, IMEI: 352094087982671) +2018/09/16 03:23:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59466, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 03:23:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:59523) +2018/09/16 03:23:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:23:32 ruptelaNet.go:261: Data received(client: [::1]:59523, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:23:32 ruptelaNet.go:278: Sent ACK (client: [::1]:59523, IMEI: 352094087982671) +2018/09/16 03:23:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:23:35 ruptelaNet.go:261: Data received(client: [::1]:59523, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:23:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:23:35 ruptelaNet.go:278: Sent ACK (client: [::1]:59523, IMEI: 352094087982671) +2018/09/16 03:23:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59523, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 03:23:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59558) +2018/09/16 03:23:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:23:44 ruptelaNet.go:261: Data received(client: [::1]:59558, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:23:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59558, IMEI: 352094089712860) +2018/09/16 03:23:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:23:46 ruptelaNet.go:261: Data received(client: [::1]:59558, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 03:23:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:23:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59558, IMEI: 352094089712860) +2018/09/16 03:23:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59558, IMEI: 352094089712860) with duration 2.7 s +2018/09/16 03:24:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:59596) +2018/09/16 03:24:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:24:01 ruptelaNet.go:261: Data received(client: [::1]:59596, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:24:01 ruptelaNet.go:278: Sent ACK (client: [::1]:59596, IMEI: 352094087982671) +2018/09/16 03:24:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:24:04 ruptelaNet.go:261: Data received(client: [::1]:59596, IMEI: 352094087982671) with duration 4.02 s +2018/09/16 03:24:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:24:04 ruptelaNet.go:278: Sent ACK (client: [::1]:59596, IMEI: 352094087982671) +2018/09/16 03:24:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59596, IMEI: 352094087982671) with duration 6.23 s +2018/09/16 03:24:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:59655) +2018/09/16 03:24:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:24:30 ruptelaNet.go:261: Data received(client: [::1]:59655, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:24:30 ruptelaNet.go:278: Sent ACK (client: [::1]:59655, IMEI: 352094087982671) +2018/09/16 03:24:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:24:33 ruptelaNet.go:261: Data received(client: [::1]:59655, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 03:24:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:24:33 ruptelaNet.go:278: Sent ACK (client: [::1]:59655, IMEI: 352094087982671) +2018/09/16 03:24:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59655, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 03:24:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:59688) +2018/09/16 03:24:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:24:46 ruptelaNet.go:261: Data received(client: [::1]:59688, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 03:24:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59688, IMEI: 352094089712860) +2018/09/16 03:24:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:24:48 ruptelaNet.go:261: Data received(client: [::1]:59688, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 03:24:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:24:48 ruptelaNet.go:278: Sent ACK (client: [::1]:59688, IMEI: 352094089712860) +2018/09/16 03:24:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59688, IMEI: 352094089712860) with duration 3.99 s +2018/09/16 03:24:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59716) +2018/09/16 03:24:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:24:59 ruptelaNet.go:261: Data received(client: [::1]:59716, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 03:24:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59716, IMEI: 352094087982671) +2018/09/16 03:25:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:25:02 ruptelaNet.go:261: Data received(client: [::1]:59716, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 03:25:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:25:02 ruptelaNet.go:278: Sent ACK (client: [::1]:59716, IMEI: 352094087982671) +2018/09/16 03:25:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59716, IMEI: 352094087982671) with duration 6.69 s +2018/09/16 03:25:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:59776) +2018/09/16 03:25:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:25:29 ruptelaNet.go:261: Data received(client: [::1]:59776, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 03:25:29 ruptelaNet.go:278: Sent ACK (client: [::1]:59776, IMEI: 352094087982671) +2018/09/16 03:25:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:25:32 ruptelaNet.go:261: Data received(client: [::1]:59776, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 03:25:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:25:32 ruptelaNet.go:278: Sent ACK (client: [::1]:59776, IMEI: 352094087982671) +2018/09/16 03:25:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59776, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 03:25:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59807) +2018/09/16 03:25:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:25:44 ruptelaNet.go:261: Data received(client: [::1]:59807, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:25:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59807, IMEI: 352094089712860) +2018/09/16 03:25:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:25:46 ruptelaNet.go:261: Data received(client: [::1]:59807, IMEI: 352094089712860) with duration 2.01 s +2018/09/16 03:25:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:25:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59807, IMEI: 352094089712860) +2018/09/16 03:25:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59807, IMEI: 352094089712860) with duration 3.19 s +2018/09/16 03:25:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59838) +2018/09/16 03:25:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:25:58 ruptelaNet.go:261: Data received(client: [::1]:59838, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:25:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59838, IMEI: 352094087982671) +2018/09/16 03:26:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:26:01 ruptelaNet.go:261: Data received(client: [::1]:59838, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:26:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:26:01 ruptelaNet.go:278: Sent ACK (client: [::1]:59838, IMEI: 352094087982671) +2018/09/16 03:26:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59838, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:26:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:59893) +2018/09/16 03:26:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:26:27 ruptelaNet.go:261: Data received(client: [::1]:59893, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 03:26:27 ruptelaNet.go:278: Sent ACK (client: [::1]:59893, IMEI: 352094087982671) +2018/09/16 03:26:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:26:30 ruptelaNet.go:261: Data received(client: [::1]:59893, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 03:26:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:26:30 ruptelaNet.go:278: Sent ACK (client: [::1]:59893, IMEI: 352094087982671) +2018/09/16 03:26:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59893, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 03:26:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59930) +2018/09/16 03:26:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:26:44 ruptelaNet.go:261: Data received(client: [::1]:59930, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:26:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59930, IMEI: 352094089712860) +2018/09/16 03:26:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:26:46 ruptelaNet.go:261: Data received(client: [::1]:59930, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 03:26:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:26:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59930, IMEI: 352094089712860) +2018/09/16 03:26:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59930, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 03:26:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:59954) +2018/09/16 03:26:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:26:56 ruptelaNet.go:261: Data received(client: [::1]:59954, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:26:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59954, IMEI: 352094087982671) +2018/09/16 03:26:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:26:59 ruptelaNet.go:261: Data received(client: [::1]:59954, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:26:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:26:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59954, IMEI: 352094087982671) +2018/09/16 03:27:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59954, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:27:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:60015) +2018/09/16 03:27:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:27:25 ruptelaNet.go:261: Data received(client: [::1]:60015, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 03:27:25 ruptelaNet.go:278: Sent ACK (client: [::1]:60015, IMEI: 352094087982671) +2018/09/16 03:27:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:27:28 ruptelaNet.go:261: Data received(client: [::1]:60015, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 03:27:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:27:28 ruptelaNet.go:278: Sent ACK (client: [::1]:60015, IMEI: 352094087982671) +2018/09/16 03:27:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60015, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 03:27:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:60053) +2018/09/16 03:27:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:27:44 ruptelaNet.go:261: Data received(client: [::1]:60053, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:27:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60053, IMEI: 352094089712860) +2018/09/16 03:27:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:27:46 ruptelaNet.go:261: Data received(client: [::1]:60053, IMEI: 352094089712860) with duration 2 s +2018/09/16 03:27:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:27:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60053, IMEI: 352094089712860) +2018/09/16 03:27:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60053, IMEI: 352094089712860) with duration 4.3 s +2018/09/16 03:27:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:60071) +2018/09/16 03:27:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:27:54 ruptelaNet.go:261: Data received(client: [::1]:60071, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:27:54 ruptelaNet.go:278: Sent ACK (client: [::1]:60071, IMEI: 352094087982671) +2018/09/16 03:27:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:27:58 ruptelaNet.go:261: Data received(client: [::1]:60071, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 03:27:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:27:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60071, IMEI: 352094087982671) +2018/09/16 03:28:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60071, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 03:28:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:60128) +2018/09/16 03:28:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:28:23 ruptelaNet.go:261: Data received(client: [::1]:60128, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 03:28:23 ruptelaNet.go:278: Sent ACK (client: [::1]:60128, IMEI: 352094087982671) +2018/09/16 03:28:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:28:26 ruptelaNet.go:261: Data received(client: [::1]:60128, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 03:28:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:28:26 ruptelaNet.go:278: Sent ACK (client: [::1]:60128, IMEI: 352094087982671) +2018/09/16 03:28:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60128, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:28:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:60177) +2018/09/16 03:28:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:28:46 ruptelaNet.go:261: Data received(client: [::1]:60177, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:28:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60177, IMEI: 352094089712860) +2018/09/16 03:28:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:28:48 ruptelaNet.go:261: Data received(client: [::1]:60177, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 03:28:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:28:48 ruptelaNet.go:278: Sent ACK (client: [::1]:60177, IMEI: 352094089712860) +2018/09/16 03:28:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60177, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 03:28:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:60193) +2018/09/16 03:28:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:28:52 ruptelaNet.go:261: Data received(client: [::1]:60193, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:28:52 ruptelaNet.go:278: Sent ACK (client: [::1]:60193, IMEI: 352094087982671) +2018/09/16 03:28:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:28:55 ruptelaNet.go:261: Data received(client: [::1]:60193, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:28:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:28:55 ruptelaNet.go:278: Sent ACK (client: [::1]:60193, IMEI: 352094087982671) +2018/09/16 03:28:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60193, IMEI: 352094087982671) with duration 7.84 s +2018/09/16 03:29:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60251) +2018/09/16 03:29:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:29:21 ruptelaNet.go:261: Data received(client: [::1]:60251, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:29:21 ruptelaNet.go:278: Sent ACK (client: [::1]:60251, IMEI: 352094087982671) +2018/09/16 03:29:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:29:25 ruptelaNet.go:261: Data received(client: [::1]:60251, IMEI: 352094087982671) with duration 4.42 s +2018/09/16 03:29:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:60251, IMEI: 352094087982671) +2018/09/16 03:29:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60251, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 03:29:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:60303) +2018/09/16 03:29:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:29:44 ruptelaNet.go:261: Data received(client: [::1]:60303, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:29:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60303, IMEI: 352094089712860) +2018/09/16 03:29:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:29:46 ruptelaNet.go:261: Data received(client: [::1]:60303, IMEI: 352094089712860) with duration 2 s +2018/09/16 03:29:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:29:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60303, IMEI: 352094089712860) +2018/09/16 03:29:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60303, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:29:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:60317) +2018/09/16 03:29:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:29:51 ruptelaNet.go:261: Data received(client: [::1]:60317, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:29:51 ruptelaNet.go:278: Sent ACK (client: [::1]:60317, IMEI: 352094087982671) +2018/09/16 03:29:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:29:54 ruptelaNet.go:261: Data received(client: [::1]:60317, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:29:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:29:54 ruptelaNet.go:278: Sent ACK (client: [::1]:60317, IMEI: 352094087982671) +2018/09/16 03:29:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60317, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 03:30:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60373) +2018/09/16 03:30:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:30:20 ruptelaNet.go:261: Data received(client: [::1]:60373, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 03:30:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60373, IMEI: 352094087982671) +2018/09/16 03:30:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:30:23 ruptelaNet.go:261: Data received(client: [::1]:60373, IMEI: 352094087982671) with duration 4.22 s +2018/09/16 03:30:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:30:23 ruptelaNet.go:278: Sent ACK (client: [::1]:60373, IMEI: 352094087982671) +2018/09/16 03:30:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60373, IMEI: 352094087982671) with duration 6.37 s +2018/09/16 03:30:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:60425) +2018/09/16 03:30:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:30:46 ruptelaNet.go:261: Data received(client: [::1]:60425, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:30:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60425, IMEI: 352094089712860) +2018/09/16 03:30:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:60433) +2018/09/16 03:30:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:30:49 ruptelaNet.go:261: Data received(client: [::1]:60425, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:30:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:30:49 ruptelaNet.go:278: Sent ACK (client: [::1]:60425, IMEI: 352094089712860) +2018/09/16 03:30:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:30:49 ruptelaNet.go:261: Data received(client: [::1]:60433, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:30:49 ruptelaNet.go:278: Sent ACK (client: [::1]:60433, IMEI: 352094087982671) +2018/09/16 03:30:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60425, IMEI: 352094089712860) with duration 3.52 s +2018/09/16 03:30:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:30:52 ruptelaNet.go:261: Data received(client: [::1]:60433, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:30:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:30:52 ruptelaNet.go:278: Sent ACK (client: [::1]:60433, IMEI: 352094087982671) +2018/09/16 03:30:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60433, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 03:31:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:60496) +2018/09/16 03:31:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:31:18 ruptelaNet.go:261: Data received(client: [::1]:60496, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 03:31:18 ruptelaNet.go:278: Sent ACK (client: [::1]:60496, IMEI: 352094087982671) +2018/09/16 03:31:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:31:21 ruptelaNet.go:261: Data received(client: [::1]:60496, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 03:31:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:31:21 ruptelaNet.go:278: Sent ACK (client: [::1]:60496, IMEI: 352094087982671) +2018/09/16 03:31:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60496, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:31:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:60555) +2018/09/16 03:31:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:31:44 ruptelaNet.go:261: Data received(client: [::1]:60555, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:31:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60555, IMEI: 352094089712860) +2018/09/16 03:31:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:60559) +2018/09/16 03:31:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:31:47 ruptelaNet.go:261: Data received(client: [::1]:60555, IMEI: 352094089712860) with duration 2.07 s +2018/09/16 03:31:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:31:47 ruptelaNet.go:278: Sent ACK (client: [::1]:60555, IMEI: 352094089712860) +2018/09/16 03:31:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:31:47 ruptelaNet.go:261: Data received(client: [::1]:60559, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 03:31:47 ruptelaNet.go:278: Sent ACK (client: [::1]:60559, IMEI: 352094087982671) +2018/09/16 03:31:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60555, IMEI: 352094089712860) with duration 3.68 s +2018/09/16 03:31:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:31:50 ruptelaNet.go:261: Data received(client: [::1]:60559, IMEI: 352094087982671) with duration 4.07 s +2018/09/16 03:31:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:31:50 ruptelaNet.go:278: Sent ACK (client: [::1]:60559, IMEI: 352094087982671) +2018/09/16 03:31:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60559, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 03:32:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:60620) +2018/09/16 03:32:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:32:16 ruptelaNet.go:261: Data received(client: [::1]:60620, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:32:16 ruptelaNet.go:278: Sent ACK (client: [::1]:60620, IMEI: 352094087982671) +2018/09/16 03:32:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:32:19 ruptelaNet.go:261: Data received(client: [::1]:60620, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:32:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:32:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60620, IMEI: 352094087982671) +2018/09/16 03:32:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60620, IMEI: 352094087982671) with duration 6.28 s +2018/09/16 03:32:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:60680) +2018/09/16 03:32:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:60681) +2018/09/16 03:32:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:32:45 ruptelaNet.go:261: Data received(client: [::1]:60681, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:32:45 ruptelaNet.go:278: Sent ACK (client: [::1]:60681, IMEI: 352094089712860) +2018/09/16 03:32:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:32:45 ruptelaNet.go:261: Data received(client: [::1]:60680, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:32:45 ruptelaNet.go:278: Sent ACK (client: [::1]:60680, IMEI: 352094087982671) +2018/09/16 03:32:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:32:47 ruptelaNet.go:261: Data received(client: [::1]:60681, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 03:32:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:32:47 ruptelaNet.go:278: Sent ACK (client: [::1]:60681, IMEI: 352094089712860) +2018/09/16 03:32:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60681, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 03:32:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:32:48 ruptelaNet.go:261: Data received(client: [::1]:60680, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 03:32:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:32:48 ruptelaNet.go:278: Sent ACK (client: [::1]:60680, IMEI: 352094087982671) +2018/09/16 03:32:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60680, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 03:33:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:60741) +2018/09/16 03:33:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:33:14 ruptelaNet.go:261: Data received(client: [::1]:60741, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:33:14 ruptelaNet.go:278: Sent ACK (client: [::1]:60741, IMEI: 352094087982671) +2018/09/16 03:33:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:33:17 ruptelaNet.go:261: Data received(client: [::1]:60741, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 03:33:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:33:17 ruptelaNet.go:278: Sent ACK (client: [::1]:60741, IMEI: 352094087982671) +2018/09/16 03:33:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60741, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 03:33:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:60798) +2018/09/16 03:33:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:33:43 ruptelaNet.go:261: Data received(client: [::1]:60798, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:33:43 ruptelaNet.go:278: Sent ACK (client: [::1]:60798, IMEI: 352094087982671) +2018/09/16 03:33:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:33:46 ruptelaNet.go:261: Data received(client: [::1]:60798, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 03:33:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:33:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60798, IMEI: 352094087982671) +2018/09/16 03:33:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:60807) +2018/09/16 03:33:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:33:46 ruptelaNet.go:261: Data received(client: [::1]:60807, IMEI: 352094089712860) with duration 0.09 s +2018/09/16 03:33:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60807, IMEI: 352094089712860) +2018/09/16 03:33:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60798, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 03:33:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:33:48 ruptelaNet.go:261: Data received(client: [::1]:60807, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 03:33:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:33:48 ruptelaNet.go:278: Sent ACK (client: [::1]:60807, IMEI: 352094089712860) +2018/09/16 03:33:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60807, IMEI: 352094089712860) with duration 3.36 s +2018/09/16 03:34:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:60855) +2018/09/16 03:34:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:34:11 ruptelaNet.go:261: Data received(client: [::1]:60855, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:34:11 ruptelaNet.go:278: Sent ACK (client: [::1]:60855, IMEI: 352094087982671) +2018/09/16 03:34:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:34:14 ruptelaNet.go:261: Data received(client: [::1]:60855, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 03:34:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:34:14 ruptelaNet.go:278: Sent ACK (client: [::1]:60855, IMEI: 352094087982671) +2018/09/16 03:34:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60855, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 03:34:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:60915) +2018/09/16 03:34:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:34:40 ruptelaNet.go:261: Data received(client: [::1]:60915, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 03:34:40 ruptelaNet.go:278: Sent ACK (client: [::1]:60915, IMEI: 352094087982671) +2018/09/16 03:34:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:34:43 ruptelaNet.go:261: Data received(client: [::1]:60915, IMEI: 352094087982671) with duration 3.59 s +2018/09/16 03:34:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:34:43 ruptelaNet.go:278: Sent ACK (client: [::1]:60915, IMEI: 352094087982671) +2018/09/16 03:34:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:60925) +2018/09/16 03:34:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:34:45 ruptelaNet.go:261: Data received(client: [::1]:60925, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:34:45 ruptelaNet.go:278: Sent ACK (client: [::1]:60925, IMEI: 352094089712860) +2018/09/16 03:34:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60915, IMEI: 352094087982671) with duration 5.69 s +2018/09/16 03:34:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:34:47 ruptelaNet.go:261: Data received(client: [::1]:60925, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 03:34:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:34:47 ruptelaNet.go:278: Sent ACK (client: [::1]:60925, IMEI: 352094089712860) +2018/09/16 03:34:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60925, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 03:35:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:60974) +2018/09/16 03:35:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:35:09 ruptelaNet.go:261: Data received(client: [::1]:60974, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:35:09 ruptelaNet.go:278: Sent ACK (client: [::1]:60974, IMEI: 352094087982671) +2018/09/16 03:35:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:35:13 ruptelaNet.go:261: Data received(client: [::1]:60974, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 03:35:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:35:13 ruptelaNet.go:278: Sent ACK (client: [::1]:60974, IMEI: 352094087982671) +2018/09/16 03:35:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60974, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 03:35:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:61032) +2018/09/16 03:35:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:35:38 ruptelaNet.go:261: Data received(client: [::1]:61032, IMEI: 352094087982671) with duration 0.7 s +2018/09/16 03:35:38 ruptelaNet.go:278: Sent ACK (client: [::1]:61032, IMEI: 352094087982671) +2018/09/16 03:35:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:35:41 ruptelaNet.go:261: Data received(client: [::1]:61032, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 03:35:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:35:41 ruptelaNet.go:278: Sent ACK (client: [::1]:61032, IMEI: 352094087982671) +2018/09/16 03:35:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61032, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 03:35:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61048) +2018/09/16 03:35:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:35:45 ruptelaNet.go:261: Data received(client: [::1]:61048, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:35:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61048, IMEI: 352094089712860) +2018/09/16 03:35:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:35:47 ruptelaNet.go:261: Data received(client: [::1]:61048, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 03:35:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:35:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61048, IMEI: 352094089712860) +2018/09/16 03:35:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61048, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:36:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:61096) +2018/09/16 03:36:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:36:07 ruptelaNet.go:261: Data received(client: [::1]:61096, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 03:36:07 ruptelaNet.go:278: Sent ACK (client: [::1]:61096, IMEI: 352094087982671) +2018/09/16 03:36:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:36:10 ruptelaNet.go:261: Data received(client: [::1]:61096, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 03:36:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:36:10 ruptelaNet.go:278: Sent ACK (client: [::1]:61096, IMEI: 352094087982671) +2018/09/16 03:36:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61096, IMEI: 352094087982671) with duration 6 s +2018/09/16 03:36:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:61154) +2018/09/16 03:36:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:36:36 ruptelaNet.go:261: Data received(client: [::1]:61154, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:36:36 ruptelaNet.go:278: Sent ACK (client: [::1]:61154, IMEI: 352094087982671) +2018/09/16 03:36:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:36:39 ruptelaNet.go:261: Data received(client: [::1]:61154, IMEI: 352094087982671) with duration 4.12 s +2018/09/16 03:36:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:36:39 ruptelaNet.go:278: Sent ACK (client: [::1]:61154, IMEI: 352094087982671) +2018/09/16 03:36:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61154, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 03:36:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61176) +2018/09/16 03:36:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:36:45 ruptelaNet.go:261: Data received(client: [::1]:61176, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:36:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61176, IMEI: 352094089712860) +2018/09/16 03:36:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:36:47 ruptelaNet.go:261: Data received(client: [::1]:61176, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:36:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:36:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61176, IMEI: 352094089712860) +2018/09/16 03:36:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61176, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 03:37:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:61222) +2018/09/16 03:37:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:37:05 ruptelaNet.go:261: Data received(client: [::1]:61222, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:37:05 ruptelaNet.go:278: Sent ACK (client: [::1]:61222, IMEI: 352094087982671) +2018/09/16 03:37:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:37:08 ruptelaNet.go:261: Data received(client: [::1]:61222, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 03:37:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:37:08 ruptelaNet.go:278: Sent ACK (client: [::1]:61222, IMEI: 352094087982671) +2018/09/16 03:37:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61222, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:37:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:61287) +2018/09/16 03:37:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:37:34 ruptelaNet.go:261: Data received(client: [::1]:61287, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 03:37:34 ruptelaNet.go:278: Sent ACK (client: [::1]:61287, IMEI: 352094087982671) +2018/09/16 03:37:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:37:37 ruptelaNet.go:261: Data received(client: [::1]:61287, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 03:37:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:37:37 ruptelaNet.go:278: Sent ACK (client: [::1]:61287, IMEI: 352094087982671) +2018/09/16 03:37:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61287, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 03:37:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61310) +2018/09/16 03:37:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:37:45 ruptelaNet.go:261: Data received(client: [::1]:61310, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:37:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61310, IMEI: 352094089712860) +2018/09/16 03:37:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:37:47 ruptelaNet.go:261: Data received(client: [::1]:61310, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:37:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:37:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61310, IMEI: 352094089712860) +2018/09/16 03:37:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61310, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:38:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:61344) +2018/09/16 03:38:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:38:03 ruptelaNet.go:261: Data received(client: [::1]:61344, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:38:03 ruptelaNet.go:278: Sent ACK (client: [::1]:61344, IMEI: 352094087982671) +2018/09/16 03:38:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:38:06 ruptelaNet.go:261: Data received(client: [::1]:61344, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 03:38:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:38:06 ruptelaNet.go:278: Sent ACK (client: [::1]:61344, IMEI: 352094087982671) +2018/09/16 03:38:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61344, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:38:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:61399) +2018/09/16 03:38:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:38:32 ruptelaNet.go:261: Data received(client: [::1]:61399, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:38:32 ruptelaNet.go:278: Sent ACK (client: [::1]:61399, IMEI: 352094087982671) +2018/09/16 03:38:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:38:35 ruptelaNet.go:261: Data received(client: [::1]:61399, IMEI: 352094087982671) with duration 4 s +2018/09/16 03:38:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:38:35 ruptelaNet.go:278: Sent ACK (client: [::1]:61399, IMEI: 352094087982671) +2018/09/16 03:38:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61399, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 03:38:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61430) +2018/09/16 03:38:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:38:45 ruptelaNet.go:261: Data received(client: [::1]:61430, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:38:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61430, IMEI: 352094089712860) +2018/09/16 03:38:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:38:47 ruptelaNet.go:261: Data received(client: [::1]:61430, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 03:38:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:38:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61430, IMEI: 352094089712860) +2018/09/16 03:38:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61430, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:38:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:61444) +2018/09/16 03:39:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:61465) +2018/09/16 03:39:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:39:01 ruptelaNet.go:261: Data received(client: [::1]:61465, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 03:39:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61465, IMEI: 352094087982671) +2018/09/16 03:39:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:39:04 ruptelaNet.go:261: Data received(client: [::1]:61465, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:39:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:39:04 ruptelaNet.go:278: Sent ACK (client: [::1]:61465, IMEI: 352094087982671) +2018/09/16 03:39:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61465, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 03:39:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61444, IMEI: 0) with duration 15.58 s +2018/09/16 03:39:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:61477) +2018/09/16 03:39:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61477, IMEI: 0) with duration 15.53 s +2018/09/16 03:39:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:61526) +2018/09/16 03:39:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:39:30 ruptelaNet.go:261: Data received(client: [::1]:61526, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:39:30 ruptelaNet.go:278: Sent ACK (client: [::1]:61526, IMEI: 352094087982671) +2018/09/16 03:39:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:39:33 ruptelaNet.go:261: Data received(client: [::1]:61526, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:39:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:39:33 ruptelaNet.go:278: Sent ACK (client: [::1]:61526, IMEI: 352094087982671) +2018/09/16 03:39:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61526, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:39:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61553) +2018/09/16 03:39:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:39:45 ruptelaNet.go:261: Data received(client: [::1]:61553, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:39:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61553, IMEI: 352094089712860) +2018/09/16 03:39:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:39:47 ruptelaNet.go:261: Data received(client: [::1]:61553, IMEI: 352094089712860) with duration 2.11 s +2018/09/16 03:39:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:39:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61553, IMEI: 352094089712860) +2018/09/16 03:39:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61553, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 03:39:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:61561) +2018/09/16 03:39:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:61582) +2018/09/16 03:39:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:39:59 ruptelaNet.go:261: Data received(client: [::1]:61582, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:39:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61582, IMEI: 352094087982671) +2018/09/16 03:40:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:40:02 ruptelaNet.go:261: Data received(client: [::1]:61582, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:40:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:40:02 ruptelaNet.go:278: Sent ACK (client: [::1]:61582, IMEI: 352094087982671) +2018/09/16 03:40:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61561, IMEI: 0) with duration 15.45 s +2018/09/16 03:40:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:61595) +2018/09/16 03:40:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61582, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 03:40:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61595, IMEI: 0) with duration 15.52 s +2018/09/16 03:40:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:61642) +2018/09/16 03:40:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:40:28 ruptelaNet.go:261: Data received(client: [::1]:61642, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 03:40:28 ruptelaNet.go:278: Sent ACK (client: [::1]:61642, IMEI: 352094087982671) +2018/09/16 03:40:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:40:31 ruptelaNet.go:261: Data received(client: [::1]:61642, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 03:40:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:40:31 ruptelaNet.go:278: Sent ACK (client: [::1]:61642, IMEI: 352094087982671) +2018/09/16 03:40:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61642, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:40:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:61682) +2018/09/16 03:40:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:40:46 ruptelaNet.go:261: Data received(client: [::1]:61682, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:40:46 ruptelaNet.go:278: Sent ACK (client: [::1]:61682, IMEI: 352094089712860) +2018/09/16 03:40:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:40:48 ruptelaNet.go:261: Data received(client: [::1]:61682, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:40:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:40:48 ruptelaNet.go:278: Sent ACK (client: [::1]:61682, IMEI: 352094089712860) +2018/09/16 03:40:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61682, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:40:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:61703) +2018/09/16 03:40:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:40:57 ruptelaNet.go:261: Data received(client: [::1]:61703, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 03:40:57 ruptelaNet.go:278: Sent ACK (client: [::1]:61703, IMEI: 352094087982671) +2018/09/16 03:41:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:41:00 ruptelaNet.go:261: Data received(client: [::1]:61703, IMEI: 352094087982671) with duration 3.73 s +2018/09/16 03:41:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:41:00 ruptelaNet.go:278: Sent ACK (client: [::1]:61703, IMEI: 352094087982671) +2018/09/16 03:41:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61703, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 03:41:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:61765) +2018/09/16 03:41:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:41:26 ruptelaNet.go:261: Data received(client: [::1]:61765, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:41:26 ruptelaNet.go:278: Sent ACK (client: [::1]:61765, IMEI: 352094087982671) +2018/09/16 03:41:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:41:29 ruptelaNet.go:261: Data received(client: [::1]:61765, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 03:41:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:41:29 ruptelaNet.go:278: Sent ACK (client: [::1]:61765, IMEI: 352094087982671) +2018/09/16 03:41:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61765, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 03:41:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:61804) +2018/09/16 03:41:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:41:46 ruptelaNet.go:261: Data received(client: [::1]:61804, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:41:46 ruptelaNet.go:278: Sent ACK (client: [::1]:61804, IMEI: 352094089712860) +2018/09/16 03:41:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:41:47 ruptelaNet.go:261: Data received(client: [::1]:61804, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:41:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:41:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61804, IMEI: 352094089712860) +2018/09/16 03:41:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61804, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 03:41:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:61827) +2018/09/16 03:41:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:41:55 ruptelaNet.go:261: Data received(client: [::1]:61827, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:41:55 ruptelaNet.go:278: Sent ACK (client: [::1]:61827, IMEI: 352094087982671) +2018/09/16 03:41:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:41:58 ruptelaNet.go:261: Data received(client: [::1]:61827, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:41:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:41:58 ruptelaNet.go:278: Sent ACK (client: [::1]:61827, IMEI: 352094087982671) +2018/09/16 03:42:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61827, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:42:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:61889) +2018/09/16 03:42:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:42:24 ruptelaNet.go:261: Data received(client: [::1]:61889, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:42:24 ruptelaNet.go:278: Sent ACK (client: [::1]:61889, IMEI: 352094087982671) +2018/09/16 03:42:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:42:27 ruptelaNet.go:261: Data received(client: [::1]:61889, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:42:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:42:27 ruptelaNet.go:278: Sent ACK (client: [::1]:61889, IMEI: 352094087982671) +2018/09/16 03:42:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61889, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:42:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:61949) +2018/09/16 03:42:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:42:50 ruptelaNet.go:261: Data received(client: [::1]:61949, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:42:50 ruptelaNet.go:278: Sent ACK (client: [::1]:61949, IMEI: 352094089712860) +2018/09/16 03:42:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:61950) +2018/09/16 03:42:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:42:52 ruptelaNet.go:261: Data received(client: [::1]:61949, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:42:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:42:52 ruptelaNet.go:278: Sent ACK (client: [::1]:61949, IMEI: 352094089712860) +2018/09/16 03:42:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61949, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:42:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:42:53 ruptelaNet.go:261: Data received(client: [::1]:61950, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:42:53 ruptelaNet.go:278: Sent ACK (client: [::1]:61950, IMEI: 352094087982671) +2018/09/16 03:42:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:42:56 ruptelaNet.go:261: Data received(client: [::1]:61950, IMEI: 352094087982671) with duration 4.03 s +2018/09/16 03:42:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:42:56 ruptelaNet.go:278: Sent ACK (client: [::1]:61950, IMEI: 352094087982671) +2018/09/16 03:42:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61950, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:43:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62009) +2018/09/16 03:43:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:43:22 ruptelaNet.go:261: Data received(client: [::1]:62009, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:43:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62009, IMEI: 352094087982671) +2018/09/16 03:43:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:43:25 ruptelaNet.go:261: Data received(client: [::1]:62009, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 03:43:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:43:25 ruptelaNet.go:278: Sent ACK (client: [::1]:62009, IMEI: 352094087982671) +2018/09/16 03:43:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62009, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 03:43:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62061) +2018/09/16 03:43:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:43:46 ruptelaNet.go:261: Data received(client: [::1]:62061, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:43:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62061, IMEI: 352094089712860) +2018/09/16 03:43:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:43:48 ruptelaNet.go:261: Data received(client: [::1]:62061, IMEI: 352094089712860) with duration 2.27 s +2018/09/16 03:43:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:43:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62061, IMEI: 352094089712860) +2018/09/16 03:43:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62061, IMEI: 352094089712860) with duration 3.91 s +2018/09/16 03:43:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:62074) +2018/09/16 03:43:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:43:51 ruptelaNet.go:261: Data received(client: [::1]:62074, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:43:51 ruptelaNet.go:278: Sent ACK (client: [::1]:62074, IMEI: 352094087982671) +2018/09/16 03:43:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:43:55 ruptelaNet.go:261: Data received(client: [::1]:62074, IMEI: 352094087982671) with duration 4.42 s +2018/09/16 03:43:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:43:55 ruptelaNet.go:278: Sent ACK (client: [::1]:62074, IMEI: 352094087982671) +2018/09/16 03:43:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62074, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 03:44:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:62127) +2018/09/16 03:44:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:44:20 ruptelaNet.go:261: Data received(client: [::1]:62127, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 03:44:20 ruptelaNet.go:278: Sent ACK (client: [::1]:62127, IMEI: 352094087982671) +2018/09/16 03:44:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:44:23 ruptelaNet.go:261: Data received(client: [::1]:62127, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 03:44:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:44:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62127, IMEI: 352094087982671) +2018/09/16 03:44:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62127, IMEI: 352094087982671) with duration 6.09 s +2018/09/16 03:44:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62175) +2018/09/16 03:44:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:44:46 ruptelaNet.go:261: Data received(client: [::1]:62175, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:44:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62175, IMEI: 352094089712860) +2018/09/16 03:44:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:44:48 ruptelaNet.go:261: Data received(client: [::1]:62175, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 03:44:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:44:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62175, IMEI: 352094089712860) +2018/09/16 03:44:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:62183) +2018/09/16 03:44:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62175, IMEI: 352094089712860) with duration 2.69 s +2018/09/16 03:44:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:44:49 ruptelaNet.go:261: Data received(client: [::1]:62183, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 03:44:49 ruptelaNet.go:278: Sent ACK (client: [::1]:62183, IMEI: 352094087982671) +2018/09/16 03:44:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:44:52 ruptelaNet.go:261: Data received(client: [::1]:62183, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 03:44:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:44:52 ruptelaNet.go:278: Sent ACK (client: [::1]:62183, IMEI: 352094087982671) +2018/09/16 03:44:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62183, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 03:45:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:62235) +2018/09/16 03:45:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:45:18 ruptelaNet.go:261: Data received(client: [::1]:62235, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:45:18 ruptelaNet.go:278: Sent ACK (client: [::1]:62235, IMEI: 352094087982671) +2018/09/16 03:45:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:45:21 ruptelaNet.go:261: Data received(client: [::1]:62235, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:45:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:45:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62235, IMEI: 352094087982671) +2018/09/16 03:45:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62235, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:45:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62290) +2018/09/16 03:45:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:45:47 ruptelaNet.go:261: Data received(client: [::1]:62290, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:45:47 ruptelaNet.go:278: Sent ACK (client: [::1]:62290, IMEI: 352094087982671) +2018/09/16 03:45:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:62296) +2018/09/16 03:45:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:45:48 ruptelaNet.go:261: Data received(client: [::1]:62296, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:45:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62296, IMEI: 352094089712860) +2018/09/16 03:45:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:45:50 ruptelaNet.go:261: Data received(client: [::1]:62296, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 03:45:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:45:50 ruptelaNet.go:278: Sent ACK (client: [::1]:62296, IMEI: 352094089712860) +2018/09/16 03:45:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:45:50 ruptelaNet.go:261: Data received(client: [::1]:62290, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 03:45:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:45:50 ruptelaNet.go:278: Sent ACK (client: [::1]:62290, IMEI: 352094087982671) +2018/09/16 03:45:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62296, IMEI: 352094089712860) with duration 3.91 s +2018/09/16 03:45:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62290, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 03:46:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:62353) +2018/09/16 03:46:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:46:16 ruptelaNet.go:261: Data received(client: [::1]:62353, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 03:46:16 ruptelaNet.go:278: Sent ACK (client: [::1]:62353, IMEI: 352094087982671) +2018/09/16 03:46:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:46:19 ruptelaNet.go:261: Data received(client: [::1]:62353, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:46:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:46:19 ruptelaNet.go:278: Sent ACK (client: [::1]:62353, IMEI: 352094087982671) +2018/09/16 03:46:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62353, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 03:46:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:62413) +2018/09/16 03:46:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:46:45 ruptelaNet.go:261: Data received(client: [::1]:62413, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:46:45 ruptelaNet.go:278: Sent ACK (client: [::1]:62413, IMEI: 352094087982671) +2018/09/16 03:46:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62420) +2018/09/16 03:46:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:46:46 ruptelaNet.go:261: Data received(client: [::1]:62420, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:46:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62420, IMEI: 352094089712860) +2018/09/16 03:46:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:46:48 ruptelaNet.go:261: Data received(client: [::1]:62420, IMEI: 352094089712860) with duration 2.18 s +2018/09/16 03:46:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:46:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62420, IMEI: 352094089712860) +2018/09/16 03:46:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:46:48 ruptelaNet.go:261: Data received(client: [::1]:62413, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 03:46:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:46:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62413, IMEI: 352094087982671) +2018/09/16 03:46:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62420, IMEI: 352094089712860) with duration 3.31 s +2018/09/16 03:46:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62413, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 03:47:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:62474) +2018/09/16 03:47:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:47:14 ruptelaNet.go:261: Data received(client: [::1]:62474, IMEI: 352094087982671) with duration 0.84 s +2018/09/16 03:47:14 ruptelaNet.go:278: Sent ACK (client: [::1]:62474, IMEI: 352094087982671) +2018/09/16 03:47:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:47:17 ruptelaNet.go:261: Data received(client: [::1]:62474, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 03:47:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:47:17 ruptelaNet.go:278: Sent ACK (client: [::1]:62474, IMEI: 352094087982671) +2018/09/16 03:47:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62474, IMEI: 352094087982671) with duration 7.89 s +2018/09/16 03:47:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:62536) +2018/09/16 03:47:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:47:43 ruptelaNet.go:261: Data received(client: [::1]:62536, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:47:43 ruptelaNet.go:278: Sent ACK (client: [::1]:62536, IMEI: 352094087982671) +2018/09/16 03:47:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62546) +2018/09/16 03:47:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:47:46 ruptelaNet.go:261: Data received(client: [::1]:62546, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:47:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62546, IMEI: 352094089712860) +2018/09/16 03:47:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:47:47 ruptelaNet.go:261: Data received(client: [::1]:62536, IMEI: 352094087982671) with duration 4.36 s +2018/09/16 03:47:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:47:47 ruptelaNet.go:278: Sent ACK (client: [::1]:62536, IMEI: 352094087982671) +2018/09/16 03:47:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62536, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 03:47:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:47:49 ruptelaNet.go:261: Data received(client: [::1]:62546, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 03:47:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:47:49 ruptelaNet.go:278: Sent ACK (client: [::1]:62546, IMEI: 352094089712860) +2018/09/16 03:47:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62546, IMEI: 352094089712860) with duration 3.49 s +2018/09/16 03:48:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:62598) +2018/09/16 03:48:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:48:12 ruptelaNet.go:261: Data received(client: [::1]:62598, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 03:48:12 ruptelaNet.go:278: Sent ACK (client: [::1]:62598, IMEI: 352094087982671) +2018/09/16 03:48:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:48:15 ruptelaNet.go:261: Data received(client: [::1]:62598, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 03:48:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:48:15 ruptelaNet.go:278: Sent ACK (client: [::1]:62598, IMEI: 352094087982671) +2018/09/16 03:48:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62598, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 03:48:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:62661) +2018/09/16 03:48:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:48:41 ruptelaNet.go:261: Data received(client: [::1]:62661, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:48:41 ruptelaNet.go:278: Sent ACK (client: [::1]:62661, IMEI: 352094087982671) +2018/09/16 03:48:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:48:44 ruptelaNet.go:261: Data received(client: [::1]:62661, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 03:48:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:48:44 ruptelaNet.go:278: Sent ACK (client: [::1]:62661, IMEI: 352094087982671) +2018/09/16 03:48:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62674) +2018/09/16 03:48:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:48:46 ruptelaNet.go:261: Data received(client: [::1]:62674, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:48:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62674, IMEI: 352094089712860) +2018/09/16 03:48:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62661, IMEI: 352094087982671) with duration 6.63 s +2018/09/16 03:48:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:48:49 ruptelaNet.go:261: Data received(client: [::1]:62674, IMEI: 352094089712860) with duration 2.43 s +2018/09/16 03:48:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:48:49 ruptelaNet.go:278: Sent ACK (client: [::1]:62674, IMEI: 352094089712860) +2018/09/16 03:48:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62674, IMEI: 352094089712860) with duration 4.04 s +2018/09/16 03:49:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:62723) +2018/09/16 03:49:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:49:11 ruptelaNet.go:261: Data received(client: [::1]:62723, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:49:11 ruptelaNet.go:278: Sent ACK (client: [::1]:62723, IMEI: 352094087982671) +2018/09/16 03:49:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:49:14 ruptelaNet.go:261: Data received(client: [::1]:62723, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 03:49:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:49:14 ruptelaNet.go:278: Sent ACK (client: [::1]:62723, IMEI: 352094087982671) +2018/09/16 03:49:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62723, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 03:49:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:62779) +2018/09/16 03:49:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:49:40 ruptelaNet.go:261: Data received(client: [::1]:62779, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:49:40 ruptelaNet.go:278: Sent ACK (client: [::1]:62779, IMEI: 352094087982671) +2018/09/16 03:49:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:49:43 ruptelaNet.go:261: Data received(client: [::1]:62779, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:49:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:49:43 ruptelaNet.go:278: Sent ACK (client: [::1]:62779, IMEI: 352094087982671) +2018/09/16 03:49:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62779, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:49:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:62800) +2018/09/16 03:49:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:49:47 ruptelaNet.go:261: Data received(client: [::1]:62800, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:49:47 ruptelaNet.go:278: Sent ACK (client: [::1]:62800, IMEI: 352094089712860) +2018/09/16 03:49:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:49:50 ruptelaNet.go:261: Data received(client: [::1]:62800, IMEI: 352094089712860) with duration 3.14 s +2018/09/16 03:49:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:49:50 ruptelaNet.go:278: Sent ACK (client: [::1]:62800, IMEI: 352094089712860) +2018/09/16 03:49:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62800, IMEI: 352094089712860) with duration 3.94 s +2018/09/16 03:50:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:62845) +2018/09/16 03:50:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:50:09 ruptelaNet.go:261: Data received(client: [::1]:62845, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:50:09 ruptelaNet.go:278: Sent ACK (client: [::1]:62845, IMEI: 352094087982671) +2018/09/16 03:50:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:50:12 ruptelaNet.go:261: Data received(client: [::1]:62845, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 03:50:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:50:12 ruptelaNet.go:278: Sent ACK (client: [::1]:62845, IMEI: 352094087982671) +2018/09/16 03:50:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62845, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 03:50:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:62902) +2018/09/16 03:50:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:50:38 ruptelaNet.go:261: Data received(client: [::1]:62902, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:50:38 ruptelaNet.go:278: Sent ACK (client: [::1]:62902, IMEI: 352094087982671) +2018/09/16 03:50:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:50:41 ruptelaNet.go:261: Data received(client: [::1]:62902, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:50:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:50:41 ruptelaNet.go:278: Sent ACK (client: [::1]:62902, IMEI: 352094087982671) +2018/09/16 03:50:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62902, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:50:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:62925) +2018/09/16 03:50:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:50:47 ruptelaNet.go:261: Data received(client: [::1]:62925, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:50:47 ruptelaNet.go:278: Sent ACK (client: [::1]:62925, IMEI: 352094089712860) +2018/09/16 03:50:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:50:49 ruptelaNet.go:261: Data received(client: [::1]:62925, IMEI: 352094089712860) with duration 2.14 s +2018/09/16 03:50:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:50:49 ruptelaNet.go:278: Sent ACK (client: [::1]:62925, IMEI: 352094089712860) +2018/09/16 03:50:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62925, IMEI: 352094089712860) with duration 3.35 s +2018/09/16 03:51:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:62961) +2018/09/16 03:51:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:51:07 ruptelaNet.go:261: Data received(client: [::1]:62961, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:51:07 ruptelaNet.go:278: Sent ACK (client: [::1]:62961, IMEI: 352094087982671) +2018/09/16 03:51:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:51:10 ruptelaNet.go:261: Data received(client: [::1]:62961, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 03:51:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:51:10 ruptelaNet.go:278: Sent ACK (client: [::1]:62961, IMEI: 352094087982671) +2018/09/16 03:51:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62961, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 03:51:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:63020) +2018/09/16 03:51:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:51:37 ruptelaNet.go:261: Data received(client: [::1]:63020, IMEI: 352094087982671) with duration 1.61 s +2018/09/16 03:51:37 ruptelaNet.go:278: Sent ACK (client: [::1]:63020, IMEI: 352094087982671) +2018/09/16 03:51:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:51:40 ruptelaNet.go:261: Data received(client: [::1]:63020, IMEI: 352094087982671) with duration 4.59 s +2018/09/16 03:51:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:51:40 ruptelaNet.go:278: Sent ACK (client: [::1]:63020, IMEI: 352094087982671) +2018/09/16 03:51:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63020, IMEI: 352094087982671) with duration 6.79 s +2018/09/16 03:51:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63049) +2018/09/16 03:51:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:51:47 ruptelaNet.go:261: Data received(client: [::1]:63049, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:51:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63049, IMEI: 352094089712860) +2018/09/16 03:51:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:51:49 ruptelaNet.go:261: Data received(client: [::1]:63049, IMEI: 352094089712860) with duration 2.16 s +2018/09/16 03:51:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:51:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63049, IMEI: 352094089712860) +2018/09/16 03:51:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63049, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 03:52:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:63086) +2018/09/16 03:52:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:52:06 ruptelaNet.go:261: Data received(client: [::1]:63086, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 03:52:06 ruptelaNet.go:278: Sent ACK (client: [::1]:63086, IMEI: 352094087982671) +2018/09/16 03:52:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:52:10 ruptelaNet.go:261: Data received(client: [::1]:63086, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 03:52:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:52:10 ruptelaNet.go:278: Sent ACK (client: [::1]:63086, IMEI: 352094087982671) +2018/09/16 03:52:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63086, IMEI: 352094087982671) with duration 6.41 s +2018/09/16 03:52:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:63143) +2018/09/16 03:52:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:52:35 ruptelaNet.go:261: Data received(client: [::1]:63143, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 03:52:35 ruptelaNet.go:278: Sent ACK (client: [::1]:63143, IMEI: 352094087982671) +2018/09/16 03:52:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:52:38 ruptelaNet.go:261: Data received(client: [::1]:63143, IMEI: 352094087982671) with duration 3.56 s +2018/09/16 03:52:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:52:38 ruptelaNet.go:278: Sent ACK (client: [::1]:63143, IMEI: 352094087982671) +2018/09/16 03:52:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63143, IMEI: 352094087982671) with duration 5.71 s +2018/09/16 03:52:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63166) +2018/09/16 03:52:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:52:47 ruptelaNet.go:261: Data received(client: [::1]:63166, IMEI: 352094089712860) with duration 0.29 s +2018/09/16 03:52:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63166, IMEI: 352094089712860) +2018/09/16 03:52:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:52:49 ruptelaNet.go:261: Data received(client: [::1]:63166, IMEI: 352094089712860) with duration 2.44 s +2018/09/16 03:52:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:52:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63166, IMEI: 352094089712860) +2018/09/16 03:52:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63166, IMEI: 352094089712860) with duration 3.15 s +2018/09/16 03:53:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:63197) +2018/09/16 03:53:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:53:04 ruptelaNet.go:261: Data received(client: [::1]:63197, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:53:04 ruptelaNet.go:278: Sent ACK (client: [::1]:63197, IMEI: 352094087982671) +2018/09/16 03:53:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:53:07 ruptelaNet.go:261: Data received(client: [::1]:63197, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:53:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:53:07 ruptelaNet.go:278: Sent ACK (client: [::1]:63197, IMEI: 352094087982671) +2018/09/16 03:53:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63197, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:53:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:63258) +2018/09/16 03:53:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:53:33 ruptelaNet.go:261: Data received(client: [::1]:63258, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:53:33 ruptelaNet.go:278: Sent ACK (client: [::1]:63258, IMEI: 352094087982671) +2018/09/16 03:53:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:53:36 ruptelaNet.go:261: Data received(client: [::1]:63258, IMEI: 352094087982671) with duration 4.05 s +2018/09/16 03:53:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:53:36 ruptelaNet.go:278: Sent ACK (client: [::1]:63258, IMEI: 352094087982671) +2018/09/16 03:53:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63258, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:53:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63285) +2018/09/16 03:53:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:53:47 ruptelaNet.go:261: Data received(client: [::1]:63285, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:53:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63285, IMEI: 352094089712860) +2018/09/16 03:53:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:53:49 ruptelaNet.go:261: Data received(client: [::1]:63285, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:53:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:53:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63285, IMEI: 352094089712860) +2018/09/16 03:53:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63285, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 03:54:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63320) +2018/09/16 03:54:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:54:02 ruptelaNet.go:261: Data received(client: [::1]:63320, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:54:02 ruptelaNet.go:278: Sent ACK (client: [::1]:63320, IMEI: 352094087982671) +2018/09/16 03:54:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:54:05 ruptelaNet.go:261: Data received(client: [::1]:63320, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 03:54:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:54:05 ruptelaNet.go:278: Sent ACK (client: [::1]:63320, IMEI: 352094087982671) +2018/09/16 03:54:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63320, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:54:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:63377) +2018/09/16 03:54:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:54:32 ruptelaNet.go:261: Data received(client: [::1]:63377, IMEI: 352094087982671) with duration 1.43 s +2018/09/16 03:54:32 ruptelaNet.go:278: Sent ACK (client: [::1]:63377, IMEI: 352094087982671) +2018/09/16 03:54:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:54:35 ruptelaNet.go:261: Data received(client: [::1]:63377, IMEI: 352094087982671) with duration 4.32 s +2018/09/16 03:54:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:54:35 ruptelaNet.go:278: Sent ACK (client: [::1]:63377, IMEI: 352094087982671) +2018/09/16 03:54:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63377, IMEI: 352094087982671) with duration 6.39 s +2018/09/16 03:54:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63412) +2018/09/16 03:54:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:54:47 ruptelaNet.go:261: Data received(client: [::1]:63412, IMEI: 352094089712860) with duration 0.33 s +2018/09/16 03:54:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63412, IMEI: 352094089712860) +2018/09/16 03:54:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:54:49 ruptelaNet.go:261: Data received(client: [::1]:63412, IMEI: 352094089712860) with duration 2.37 s +2018/09/16 03:54:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:54:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63412, IMEI: 352094089712860) +2018/09/16 03:54:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63412, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 03:54:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:63439) +2018/09/16 03:55:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:55:00 ruptelaNet.go:261: Data received(client: [::1]:63439, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:55:00 ruptelaNet.go:278: Sent ACK (client: [::1]:63439, IMEI: 352094087982671) +2018/09/16 03:55:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:55:03 ruptelaNet.go:261: Data received(client: [::1]:63439, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:55:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:55:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63439, IMEI: 352094087982671) +2018/09/16 03:55:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63439, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:55:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:63491) +2018/09/16 03:55:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:55:29 ruptelaNet.go:261: Data received(client: [::1]:63491, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 03:55:29 ruptelaNet.go:278: Sent ACK (client: [::1]:63491, IMEI: 352094087982671) +2018/09/16 03:55:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:55:32 ruptelaNet.go:261: Data received(client: [::1]:63491, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:55:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:55:32 ruptelaNet.go:278: Sent ACK (client: [::1]:63491, IMEI: 352094087982671) +2018/09/16 03:55:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63491, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 03:55:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63529) +2018/09/16 03:55:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:55:47 ruptelaNet.go:261: Data received(client: [::1]:63529, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:55:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63529, IMEI: 352094089712860) +2018/09/16 03:55:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:55:50 ruptelaNet.go:261: Data received(client: [::1]:63529, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 03:55:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:55:50 ruptelaNet.go:278: Sent ACK (client: [::1]:63529, IMEI: 352094089712860) +2018/09/16 03:55:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63529, IMEI: 352094089712860) with duration 6.35 s +2018/09/16 03:55:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:63551) +2018/09/16 03:55:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:55:58 ruptelaNet.go:261: Data received(client: [::1]:63551, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 03:55:58 ruptelaNet.go:278: Sent ACK (client: [::1]:63551, IMEI: 352094087982671) +2018/09/16 03:56:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:56:01 ruptelaNet.go:261: Data received(client: [::1]:63551, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:56:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:56:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63551, IMEI: 352094087982671) +2018/09/16 03:56:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63551, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 03:56:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:63608) +2018/09/16 03:56:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:56:27 ruptelaNet.go:261: Data received(client: [::1]:63608, IMEI: 352094087982671) with duration 0.65 s +2018/09/16 03:56:27 ruptelaNet.go:278: Sent ACK (client: [::1]:63608, IMEI: 352094087982671) +2018/09/16 03:56:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:56:30 ruptelaNet.go:261: Data received(client: [::1]:63608, IMEI: 352094087982671) with duration 3.61 s +2018/09/16 03:56:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:56:30 ruptelaNet.go:278: Sent ACK (client: [::1]:63608, IMEI: 352094087982671) +2018/09/16 03:56:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63608, IMEI: 352094087982671) with duration 5.76 s +2018/09/16 03:56:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63648) +2018/09/16 03:56:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:56:47 ruptelaNet.go:261: Data received(client: [::1]:63648, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:56:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63648, IMEI: 352094089712860) +2018/09/16 03:56:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:56:49 ruptelaNet.go:261: Data received(client: [::1]:63648, IMEI: 352094089712860) with duration 2.14 s +2018/09/16 03:56:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:56:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63648, IMEI: 352094089712860) +2018/09/16 03:56:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63648, IMEI: 352094089712860) with duration 3.34 s +2018/09/16 03:56:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:63667) +2018/09/16 03:56:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:56:56 ruptelaNet.go:261: Data received(client: [::1]:63667, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 03:56:56 ruptelaNet.go:278: Sent ACK (client: [::1]:63667, IMEI: 352094087982671) +2018/09/16 03:56:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:56:59 ruptelaNet.go:261: Data received(client: [::1]:63667, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 03:56:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:56:59 ruptelaNet.go:278: Sent ACK (client: [::1]:63667, IMEI: 352094087982671) +2018/09/16 03:57:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63667, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 03:57:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:63728) +2018/09/16 03:57:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:57:25 ruptelaNet.go:261: Data received(client: [::1]:63728, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:57:25 ruptelaNet.go:278: Sent ACK (client: [::1]:63728, IMEI: 352094087982671) +2018/09/16 03:57:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:57:28 ruptelaNet.go:261: Data received(client: [::1]:63728, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:57:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:57:28 ruptelaNet.go:278: Sent ACK (client: [::1]:63728, IMEI: 352094087982671) +2018/09/16 03:57:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63728, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:57:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63775) +2018/09/16 03:57:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:57:47 ruptelaNet.go:261: Data received(client: [::1]:63775, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:57:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63775, IMEI: 352094089712860) +2018/09/16 03:57:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:57:52 ruptelaNet.go:261: Data received(client: [::1]:63775, IMEI: 352094089712860) with duration 4.77 s +2018/09/16 03:57:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:57:52 ruptelaNet.go:278: Sent ACK (client: [::1]:63775, IMEI: 352094089712860) +2018/09/16 03:57:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:63787) +2018/09/16 03:57:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:57:54 ruptelaNet.go:261: Data received(client: [::1]:63787, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 03:57:54 ruptelaNet.go:278: Sent ACK (client: [::1]:63787, IMEI: 352094087982671) +2018/09/16 03:57:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63775, IMEI: 352094089712860) with duration 6.94 s +2018/09/16 03:57:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:57:57 ruptelaNet.go:261: Data received(client: [::1]:63787, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 03:57:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:57:57 ruptelaNet.go:278: Sent ACK (client: [::1]:63787, IMEI: 352094087982671) +2018/09/16 03:57:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63787, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 03:58:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63848) +2018/09/16 03:58:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:58:23 ruptelaNet.go:261: Data received(client: [::1]:63848, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 03:58:23 ruptelaNet.go:278: Sent ACK (client: [::1]:63848, IMEI: 352094087982671) +2018/09/16 03:58:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:58:26 ruptelaNet.go:261: Data received(client: [::1]:63848, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 03:58:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:58:26 ruptelaNet.go:278: Sent ACK (client: [::1]:63848, IMEI: 352094087982671) +2018/09/16 03:58:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63848, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 03:58:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63900) +2018/09/16 03:58:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:58:47 ruptelaNet.go:261: Data received(client: [::1]:63900, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:58:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63900, IMEI: 352094089712860) +2018/09/16 03:58:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:58:50 ruptelaNet.go:261: Data received(client: [::1]:63900, IMEI: 352094089712860) with duration 2.47 s +2018/09/16 03:58:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:58:50 ruptelaNet.go:278: Sent ACK (client: [::1]:63900, IMEI: 352094089712860) +2018/09/16 03:58:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63900, IMEI: 352094089712860) with duration 3.89 s +2018/09/16 03:58:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:63911) +2018/09/16 03:58:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:58:52 ruptelaNet.go:261: Data received(client: [::1]:63911, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 03:58:52 ruptelaNet.go:278: Sent ACK (client: [::1]:63911, IMEI: 352094087982671) +2018/09/16 03:58:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:58:55 ruptelaNet.go:261: Data received(client: [::1]:63911, IMEI: 352094087982671) with duration 3.62 s +2018/09/16 03:58:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:58:55 ruptelaNet.go:278: Sent ACK (client: [::1]:63911, IMEI: 352094087982671) +2018/09/16 03:58:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63911, IMEI: 352094087982671) with duration 5.81 s +2018/09/16 03:59:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:63970) +2018/09/16 03:59:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:59:21 ruptelaNet.go:261: Data received(client: [::1]:63970, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:59:21 ruptelaNet.go:278: Sent ACK (client: [::1]:63970, IMEI: 352094087982671) +2018/09/16 03:59:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:59:24 ruptelaNet.go:261: Data received(client: [::1]:63970, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:59:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:59:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63970, IMEI: 352094087982671) +2018/09/16 03:59:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63970, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 03:59:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:64024) +2018/09/16 03:59:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:59:47 ruptelaNet.go:261: Data received(client: [::1]:64024, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:59:47 ruptelaNet.go:278: Sent ACK (client: [::1]:64024, IMEI: 352094089712860) +2018/09/16 03:59:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:64030) +2018/09/16 03:59:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:59:50 ruptelaNet.go:261: Data received(client: [::1]:64024, IMEI: 352094089712860) with duration 2.23 s +2018/09/16 03:59:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:59:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64024, IMEI: 352094089712860) +2018/09/16 03:59:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:59:50 ruptelaNet.go:261: Data received(client: [::1]:64030, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:59:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64030, IMEI: 352094087982671) +2018/09/16 03:59:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64024, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 03:59:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:59:53 ruptelaNet.go:261: Data received(client: [::1]:64030, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 03:59:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:59:53 ruptelaNet.go:278: Sent ACK (client: [::1]:64030, IMEI: 352094087982671) +2018/09/16 03:59:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64030, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:00:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:64084) +2018/09/16 04:00:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:00:19 ruptelaNet.go:261: Data received(client: [::1]:64084, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:00:19 ruptelaNet.go:278: Sent ACK (client: [::1]:64084, IMEI: 352094087982671) +2018/09/16 04:00:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:00:22 ruptelaNet.go:261: Data received(client: [::1]:64084, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:00:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:00:22 ruptelaNet.go:278: Sent ACK (client: [::1]:64084, IMEI: 352094087982671) +2018/09/16 04:00:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64084, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:00:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:64149) +2018/09/16 04:00:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64150) +2018/09/16 04:00:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:00:48 ruptelaNet.go:261: Data received(client: [::1]:64150, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:00:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64150, IMEI: 352094089712860) +2018/09/16 04:00:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:00:48 ruptelaNet.go:261: Data received(client: [::1]:64149, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 04:00:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64149, IMEI: 352094087982671) +2018/09/16 04:00:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:00:50 ruptelaNet.go:261: Data received(client: [::1]:64150, IMEI: 352094089712860) with duration 2.11 s +2018/09/16 04:00:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:00:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64150, IMEI: 352094089712860) +2018/09/16 04:00:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64150, IMEI: 352094089712860) with duration 2.93 s +2018/09/16 04:00:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:00:51 ruptelaNet.go:261: Data received(client: [::1]:64149, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 04:00:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:00:51 ruptelaNet.go:278: Sent ACK (client: [::1]:64149, IMEI: 352094087982671) +2018/09/16 04:00:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64149, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 04:01:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:64209) +2018/09/16 04:01:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:01:17 ruptelaNet.go:261: Data received(client: [::1]:64209, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:01:17 ruptelaNet.go:278: Sent ACK (client: [::1]:64209, IMEI: 352094087982671) +2018/09/16 04:01:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:01:20 ruptelaNet.go:261: Data received(client: [::1]:64209, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 04:01:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:01:20 ruptelaNet.go:278: Sent ACK (client: [::1]:64209, IMEI: 352094087982671) +2018/09/16 04:01:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64209, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:01:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:64268) +2018/09/16 04:01:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:01:46 ruptelaNet.go:261: Data received(client: [::1]:64268, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:01:46 ruptelaNet.go:278: Sent ACK (client: [::1]:64268, IMEI: 352094087982671) +2018/09/16 04:01:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64274) +2018/09/16 04:01:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:01:48 ruptelaNet.go:261: Data received(client: [::1]:64274, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:01:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64274, IMEI: 352094089712860) +2018/09/16 04:01:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:01:49 ruptelaNet.go:261: Data received(client: [::1]:64268, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:01:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:01:49 ruptelaNet.go:278: Sent ACK (client: [::1]:64268, IMEI: 352094087982671) +2018/09/16 04:01:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:01:50 ruptelaNet.go:261: Data received(client: [::1]:64274, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 04:01:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:01:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64274, IMEI: 352094089712860) +2018/09/16 04:01:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64274, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 04:01:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64268, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 04:02:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:64325) +2018/09/16 04:02:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:02:15 ruptelaNet.go:261: Data received(client: [::1]:64325, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:02:15 ruptelaNet.go:278: Sent ACK (client: [::1]:64325, IMEI: 352094087982671) +2018/09/16 04:02:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:02:18 ruptelaNet.go:261: Data received(client: [::1]:64325, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:02:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:02:18 ruptelaNet.go:278: Sent ACK (client: [::1]:64325, IMEI: 352094087982671) +2018/09/16 04:02:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64325, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:02:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:64388) +2018/09/16 04:02:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:02:44 ruptelaNet.go:261: Data received(client: [::1]:64388, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:02:44 ruptelaNet.go:278: Sent ACK (client: [::1]:64388, IMEI: 352094087982671) +2018/09/16 04:02:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:02:47 ruptelaNet.go:261: Data received(client: [::1]:64388, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:02:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:02:47 ruptelaNet.go:278: Sent ACK (client: [::1]:64388, IMEI: 352094087982671) +2018/09/16 04:02:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64398) +2018/09/16 04:02:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:02:48 ruptelaNet.go:261: Data received(client: [::1]:64398, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:02:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64398, IMEI: 352094089712860) +2018/09/16 04:02:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64388, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 04:02:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:02:50 ruptelaNet.go:261: Data received(client: [::1]:64398, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:02:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:02:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64398, IMEI: 352094089712860) +2018/09/16 04:02:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64398, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:03:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:64447) +2018/09/16 04:03:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:03:13 ruptelaNet.go:261: Data received(client: [::1]:64447, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:03:13 ruptelaNet.go:278: Sent ACK (client: [::1]:64447, IMEI: 352094087982671) +2018/09/16 04:03:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:03:16 ruptelaNet.go:261: Data received(client: [::1]:64447, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 04:03:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:03:16 ruptelaNet.go:278: Sent ACK (client: [::1]:64447, IMEI: 352094087982671) +2018/09/16 04:03:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64447, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 04:03:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:64508) +2018/09/16 04:03:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:03:42 ruptelaNet.go:261: Data received(client: [::1]:64508, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:03:42 ruptelaNet.go:278: Sent ACK (client: [::1]:64508, IMEI: 352094087982671) +2018/09/16 04:03:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:03:45 ruptelaNet.go:261: Data received(client: [::1]:64508, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 04:03:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:03:45 ruptelaNet.go:278: Sent ACK (client: [::1]:64508, IMEI: 352094087982671) +2018/09/16 04:03:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64508, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 04:03:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64522) +2018/09/16 04:03:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:03:48 ruptelaNet.go:261: Data received(client: [::1]:64522, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:03:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64522, IMEI: 352094089712860) +2018/09/16 04:03:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:03:50 ruptelaNet.go:261: Data received(client: [::1]:64522, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 04:03:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:03:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64522, IMEI: 352094089712860) +2018/09/16 04:03:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64522, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 04:04:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:64569) +2018/09/16 04:04:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:04:11 ruptelaNet.go:261: Data received(client: [::1]:64569, IMEI: 352094087982671) with duration 1 s +2018/09/16 04:04:11 ruptelaNet.go:278: Sent ACK (client: [::1]:64569, IMEI: 352094087982671) +2018/09/16 04:04:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:04:14 ruptelaNet.go:261: Data received(client: [::1]:64569, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 04:04:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:04:14 ruptelaNet.go:278: Sent ACK (client: [::1]:64569, IMEI: 352094087982671) +2018/09/16 04:04:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64569, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 04:04:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:64626) +2018/09/16 04:04:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:04:40 ruptelaNet.go:261: Data received(client: [::1]:64626, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:04:40 ruptelaNet.go:278: Sent ACK (client: [::1]:64626, IMEI: 352094087982671) +2018/09/16 04:04:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:04:43 ruptelaNet.go:261: Data received(client: [::1]:64626, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:04:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:04:43 ruptelaNet.go:278: Sent ACK (client: [::1]:64626, IMEI: 352094087982671) +2018/09/16 04:04:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64626, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:04:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64646) +2018/09/16 04:04:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:04:48 ruptelaNet.go:261: Data received(client: [::1]:64646, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 04:04:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64646, IMEI: 352094089712860) +2018/09/16 04:04:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:04:50 ruptelaNet.go:261: Data received(client: [::1]:64646, IMEI: 352094089712860) with duration 2.36 s +2018/09/16 04:04:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:04:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64646, IMEI: 352094089712860) +2018/09/16 04:04:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64646, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 04:05:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:64693) +2018/09/16 04:05:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:05:12 ruptelaNet.go:261: Data received(client: [::1]:64693, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:05:12 ruptelaNet.go:278: Sent ACK (client: [::1]:64693, IMEI: 352094087982671) +2018/09/16 04:05:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:05:15 ruptelaNet.go:261: Data received(client: [::1]:64693, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 04:05:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:05:15 ruptelaNet.go:278: Sent ACK (client: [::1]:64693, IMEI: 352094087982671) +2018/09/16 04:05:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64693, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:05:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:64749) +2018/09/16 04:05:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:05:40 ruptelaNet.go:261: Data received(client: [::1]:64749, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:05:40 ruptelaNet.go:278: Sent ACK (client: [::1]:64749, IMEI: 352094087982671) +2018/09/16 04:05:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:05:43 ruptelaNet.go:261: Data received(client: [::1]:64749, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 04:05:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:05:43 ruptelaNet.go:278: Sent ACK (client: [::1]:64749, IMEI: 352094087982671) +2018/09/16 04:05:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64749, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 04:05:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64772) +2018/09/16 04:05:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:05:48 ruptelaNet.go:261: Data received(client: [::1]:64772, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:05:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64772, IMEI: 352094089712860) +2018/09/16 04:05:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:05:50 ruptelaNet.go:261: Data received(client: [::1]:64772, IMEI: 352094089712860) with duration 2.18 s +2018/09/16 04:05:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:05:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64772, IMEI: 352094089712860) +2018/09/16 04:05:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64772, IMEI: 352094089712860) with duration 2.99 s +2018/09/16 04:06:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:64809) +2018/09/16 04:06:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:06:09 ruptelaNet.go:261: Data received(client: [::1]:64809, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:06:09 ruptelaNet.go:278: Sent ACK (client: [::1]:64809, IMEI: 352094087982671) +2018/09/16 04:06:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:06:12 ruptelaNet.go:261: Data received(client: [::1]:64809, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:06:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:06:12 ruptelaNet.go:278: Sent ACK (client: [::1]:64809, IMEI: 352094087982671) +2018/09/16 04:06:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64809, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:06:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:64878) +2018/09/16 04:06:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:06:38 ruptelaNet.go:261: Data received(client: [::1]:64878, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:06:38 ruptelaNet.go:278: Sent ACK (client: [::1]:64878, IMEI: 352094087982671) +2018/09/16 04:06:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:06:41 ruptelaNet.go:261: Data received(client: [::1]:64878, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:06:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:06:41 ruptelaNet.go:278: Sent ACK (client: [::1]:64878, IMEI: 352094087982671) +2018/09/16 04:06:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64878, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:06:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64902) +2018/09/16 04:06:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:06:48 ruptelaNet.go:261: Data received(client: [::1]:64902, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:06:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64902, IMEI: 352094089712860) +2018/09/16 04:06:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:06:50 ruptelaNet.go:261: Data received(client: [::1]:64902, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 04:06:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:06:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64902, IMEI: 352094089712860) +2018/09/16 04:06:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64902, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:07:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:64935) +2018/09/16 04:07:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:07:07 ruptelaNet.go:261: Data received(client: [::1]:64935, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 04:07:07 ruptelaNet.go:278: Sent ACK (client: [::1]:64935, IMEI: 352094087982671) +2018/09/16 04:07:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:07:10 ruptelaNet.go:261: Data received(client: [::1]:64935, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:07:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:07:10 ruptelaNet.go:278: Sent ACK (client: [::1]:64935, IMEI: 352094087982671) +2018/09/16 04:07:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64935, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:07:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:64996) +2018/09/16 04:07:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:07:36 ruptelaNet.go:261: Data received(client: [::1]:64996, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:07:36 ruptelaNet.go:278: Sent ACK (client: [::1]:64996, IMEI: 352094087982671) +2018/09/16 04:07:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:07:39 ruptelaNet.go:261: Data received(client: [::1]:64996, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 04:07:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:07:39 ruptelaNet.go:278: Sent ACK (client: [::1]:64996, IMEI: 352094087982671) +2018/09/16 04:07:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64996, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:07:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:65028) +2018/09/16 04:07:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:07:49 ruptelaNet.go:261: Data received(client: [::1]:65028, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:07:49 ruptelaNet.go:278: Sent ACK (client: [::1]:65028, IMEI: 352094089712860) +2018/09/16 04:07:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:07:51 ruptelaNet.go:261: Data received(client: [::1]:65028, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 04:07:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:07:51 ruptelaNet.go:278: Sent ACK (client: [::1]:65028, IMEI: 352094089712860) +2018/09/16 04:07:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65028, IMEI: 352094089712860) with duration 2.75 s +2018/09/16 04:08:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:65055) +2018/09/16 04:08:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:65062) +2018/09/16 04:08:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:08:05 ruptelaNet.go:261: Data received(client: [::1]:65062, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:08:05 ruptelaNet.go:278: Sent ACK (client: [::1]:65062, IMEI: 352094087982671) +2018/09/16 04:08:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:08:08 ruptelaNet.go:261: Data received(client: [::1]:65062, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:08:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:08:08 ruptelaNet.go:278: Sent ACK (client: [::1]:65062, IMEI: 352094087982671) +2018/09/16 04:08:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65062, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:08:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65055, IMEI: 0) with duration 15.61 s +2018/09/16 04:08:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:65088) +2018/09/16 04:08:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65088, IMEI: 0) with duration 15.56 s +2018/09/16 04:08:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:65120) +2018/09/16 04:08:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:08:34 ruptelaNet.go:261: Data received(client: [::1]:65120, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:08:34 ruptelaNet.go:278: Sent ACK (client: [::1]:65120, IMEI: 352094087982671) +2018/09/16 04:08:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:08:37 ruptelaNet.go:261: Data received(client: [::1]:65120, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:08:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:08:37 ruptelaNet.go:278: Sent ACK (client: [::1]:65120, IMEI: 352094087982671) +2018/09/16 04:08:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65120, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:08:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:65154) +2018/09/16 04:08:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:08:48 ruptelaNet.go:261: Data received(client: [::1]:65154, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:08:48 ruptelaNet.go:278: Sent ACK (client: [::1]:65154, IMEI: 352094089712860) +2018/09/16 04:08:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:08:50 ruptelaNet.go:261: Data received(client: [::1]:65154, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:08:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:08:50 ruptelaNet.go:278: Sent ACK (client: [::1]:65154, IMEI: 352094089712860) +2018/09/16 04:08:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65154, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 04:09:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:65181) +2018/09/16 04:09:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:09:03 ruptelaNet.go:261: Data received(client: [::1]:65181, IMEI: 352094087982671) with duration 1 s +2018/09/16 04:09:03 ruptelaNet.go:278: Sent ACK (client: [::1]:65181, IMEI: 352094087982671) +2018/09/16 04:09:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:09:06 ruptelaNet.go:261: Data received(client: [::1]:65181, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:09:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:09:06 ruptelaNet.go:278: Sent ACK (client: [::1]:65181, IMEI: 352094087982671) +2018/09/16 04:09:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65181, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:09:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:65233) +2018/09/16 04:09:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:09:32 ruptelaNet.go:261: Data received(client: [::1]:65233, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:09:32 ruptelaNet.go:278: Sent ACK (client: [::1]:65233, IMEI: 352094087982671) +2018/09/16 04:09:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:09:35 ruptelaNet.go:261: Data received(client: [::1]:65233, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:09:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:09:35 ruptelaNet.go:278: Sent ACK (client: [::1]:65233, IMEI: 352094087982671) +2018/09/16 04:09:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65233, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:09:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:65268) +2018/09/16 04:09:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:09:48 ruptelaNet.go:261: Data received(client: [::1]:65268, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:09:48 ruptelaNet.go:278: Sent ACK (client: [::1]:65268, IMEI: 352094089712860) +2018/09/16 04:09:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:09:51 ruptelaNet.go:261: Data received(client: [::1]:65268, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:09:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:09:51 ruptelaNet.go:278: Sent ACK (client: [::1]:65268, IMEI: 352094089712860) +2018/09/16 04:09:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65268, IMEI: 352094089712860) with duration 2.99 s +2018/09/16 04:10:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:65291) +2018/09/16 04:10:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:10:01 ruptelaNet.go:261: Data received(client: [::1]:65291, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:10:01 ruptelaNet.go:278: Sent ACK (client: [::1]:65291, IMEI: 352094087982671) +2018/09/16 04:10:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:10:04 ruptelaNet.go:261: Data received(client: [::1]:65291, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:10:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:10:04 ruptelaNet.go:278: Sent ACK (client: [::1]:65291, IMEI: 352094087982671) +2018/09/16 04:10:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65291, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 04:10:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:65343) +2018/09/16 04:10:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:10:30 ruptelaNet.go:261: Data received(client: [::1]:65343, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:10:30 ruptelaNet.go:278: Sent ACK (client: [::1]:65343, IMEI: 352094087982671) +2018/09/16 04:10:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:10:33 ruptelaNet.go:261: Data received(client: [::1]:65343, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:10:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:10:33 ruptelaNet.go:278: Sent ACK (client: [::1]:65343, IMEI: 352094087982671) +2018/09/16 04:10:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65343, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:10:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:65387) +2018/09/16 04:10:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:10:50 ruptelaNet.go:261: Data received(client: [::1]:65387, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:10:50 ruptelaNet.go:278: Sent ACK (client: [::1]:65387, IMEI: 352094089712860) +2018/09/16 04:10:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:10:53 ruptelaNet.go:261: Data received(client: [::1]:65387, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:10:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:10:53 ruptelaNet.go:278: Sent ACK (client: [::1]:65387, IMEI: 352094089712860) +2018/09/16 04:10:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65387, IMEI: 352094089712860) with duration 3.82 s +2018/09/16 04:10:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:65409) +2018/09/16 04:10:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:10:59 ruptelaNet.go:261: Data received(client: [::1]:65409, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 04:10:59 ruptelaNet.go:278: Sent ACK (client: [::1]:65409, IMEI: 352094087982671) +2018/09/16 04:11:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:11:02 ruptelaNet.go:261: Data received(client: [::1]:65409, IMEI: 352094087982671) with duration 4.27 s +2018/09/16 04:11:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:11:02 ruptelaNet.go:278: Sent ACK (client: [::1]:65409, IMEI: 352094087982671) +2018/09/16 04:11:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65409, IMEI: 352094087982671) with duration 6.43 s +2018/09/16 04:11:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:65464) +2018/09/16 04:11:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:11:28 ruptelaNet.go:261: Data received(client: [::1]:65464, IMEI: 352094087982671) with duration 0.86 s +2018/09/16 04:11:28 ruptelaNet.go:278: Sent ACK (client: [::1]:65464, IMEI: 352094087982671) +2018/09/16 04:11:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:11:31 ruptelaNet.go:261: Data received(client: [::1]:65464, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:11:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:11:31 ruptelaNet.go:278: Sent ACK (client: [::1]:65464, IMEI: 352094087982671) +2018/09/16 04:11:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65464, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:11:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:65514) +2018/09/16 04:11:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:11:51 ruptelaNet.go:261: Data received(client: [::1]:65514, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:11:51 ruptelaNet.go:278: Sent ACK (client: [::1]:65514, IMEI: 352094089712860) +2018/09/16 04:11:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:11:53 ruptelaNet.go:261: Data received(client: [::1]:65514, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:11:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:11:53 ruptelaNet.go:278: Sent ACK (client: [::1]:65514, IMEI: 352094089712860) +2018/09/16 04:11:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65514, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 04:11:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:65525) +2018/09/16 04:11:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:11:57 ruptelaNet.go:261: Data received(client: [::1]:65525, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:11:57 ruptelaNet.go:278: Sent ACK (client: [::1]:65525, IMEI: 352094087982671) +2018/09/16 04:12:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:12:00 ruptelaNet.go:261: Data received(client: [::1]:65525, IMEI: 352094087982671) with duration 3.66 s +2018/09/16 04:12:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:12:00 ruptelaNet.go:278: Sent ACK (client: [::1]:65525, IMEI: 352094087982671) +2018/09/16 04:12:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65525, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 04:12:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:49204) +2018/09/16 04:12:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:12:26 ruptelaNet.go:261: Data received(client: [::1]:49204, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 04:12:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49204, IMEI: 352094087982671) +2018/09/16 04:12:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:12:29 ruptelaNet.go:261: Data received(client: [::1]:49204, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 04:12:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:12:29 ruptelaNet.go:278: Sent ACK (client: [::1]:49204, IMEI: 352094087982671) +2018/09/16 04:12:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49204, IMEI: 352094087982671) with duration 6.28 s +2018/09/16 04:12:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49258) +2018/09/16 04:12:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:12:49 ruptelaNet.go:261: Data received(client: [::1]:49258, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:12:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49258, IMEI: 352094089712860) +2018/09/16 04:12:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:12:51 ruptelaNet.go:261: Data received(client: [::1]:49258, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:12:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:12:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49258, IMEI: 352094089712860) +2018/09/16 04:12:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49258, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:12:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:49269) +2018/09/16 04:12:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:12:55 ruptelaNet.go:261: Data received(client: [::1]:49269, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:12:55 ruptelaNet.go:278: Sent ACK (client: [::1]:49269, IMEI: 352094087982671) +2018/09/16 04:12:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:12:58 ruptelaNet.go:261: Data received(client: [::1]:49269, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:12:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:12:58 ruptelaNet.go:278: Sent ACK (client: [::1]:49269, IMEI: 352094087982671) +2018/09/16 04:13:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49269, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:13:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:49332) +2018/09/16 04:13:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:13:24 ruptelaNet.go:261: Data received(client: [::1]:49332, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:13:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49332, IMEI: 352094087982671) +2018/09/16 04:13:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:13:27 ruptelaNet.go:261: Data received(client: [::1]:49332, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:13:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:13:27 ruptelaNet.go:278: Sent ACK (client: [::1]:49332, IMEI: 352094087982671) +2018/09/16 04:13:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49332, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:13:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49381) +2018/09/16 04:13:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:13:49 ruptelaNet.go:261: Data received(client: [::1]:49381, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:13:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49381, IMEI: 352094089712860) +2018/09/16 04:13:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:13:51 ruptelaNet.go:261: Data received(client: [::1]:49381, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 04:13:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:13:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49381, IMEI: 352094089712860) +2018/09/16 04:13:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49381, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 04:13:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:49392) +2018/09/16 04:13:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:13:53 ruptelaNet.go:261: Data received(client: [::1]:49392, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 04:13:53 ruptelaNet.go:278: Sent ACK (client: [::1]:49392, IMEI: 352094087982671) +2018/09/16 04:13:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:13:56 ruptelaNet.go:261: Data received(client: [::1]:49392, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 04:13:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:13:56 ruptelaNet.go:278: Sent ACK (client: [::1]:49392, IMEI: 352094087982671) +2018/09/16 04:13:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49392, IMEI: 352094087982671) with duration 6.27 s +2018/09/16 04:14:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:49443) +2018/09/16 04:14:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:14:22 ruptelaNet.go:261: Data received(client: [::1]:49443, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:14:22 ruptelaNet.go:278: Sent ACK (client: [::1]:49443, IMEI: 352094087982671) +2018/09/16 04:14:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:14:25 ruptelaNet.go:261: Data received(client: [::1]:49443, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:14:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:14:25 ruptelaNet.go:278: Sent ACK (client: [::1]:49443, IMEI: 352094087982671) +2018/09/16 04:14:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49443, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:14:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49498) +2018/09/16 04:14:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:14:49 ruptelaNet.go:261: Data received(client: [::1]:49498, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:14:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49498, IMEI: 352094089712860) +2018/09/16 04:14:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:49504) +2018/09/16 04:14:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:14:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:14:51 ruptelaNet.go:261: Data received(client: [::1]:49498, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:14:51 ruptelaNet.go:261: Data received(client: [::1]:49504, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:14:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49504, IMEI: 352094087982671) +2018/09/16 04:14:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:14:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49498, IMEI: 352094089712860) +2018/09/16 04:14:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49498, IMEI: 352094089712860) with duration 3.08 s +2018/09/16 04:14:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:14:54 ruptelaNet.go:261: Data received(client: [::1]:49504, IMEI: 352094087982671) with duration 3.75 s +2018/09/16 04:14:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:14:54 ruptelaNet.go:278: Sent ACK (client: [::1]:49504, IMEI: 352094087982671) +2018/09/16 04:14:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49504, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 04:15:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:49561) +2018/09/16 04:15:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:15:20 ruptelaNet.go:261: Data received(client: [::1]:49561, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:15:20 ruptelaNet.go:278: Sent ACK (client: [::1]:49561, IMEI: 352094087982671) +2018/09/16 04:15:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:15:23 ruptelaNet.go:261: Data received(client: [::1]:49561, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:15:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:15:23 ruptelaNet.go:278: Sent ACK (client: [::1]:49561, IMEI: 352094087982671) +2018/09/16 04:15:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49561, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 04:15:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:49621) +2018/09/16 04:15:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:15:49 ruptelaNet.go:261: Data received(client: [::1]:49621, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 04:15:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49621, IMEI: 352094087982671) +2018/09/16 04:15:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49622) +2018/09/16 04:15:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:15:49 ruptelaNet.go:261: Data received(client: [::1]:49622, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:15:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49622, IMEI: 352094089712860) +2018/09/16 04:15:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:15:51 ruptelaNet.go:261: Data received(client: [::1]:49622, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 04:15:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:15:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49622, IMEI: 352094089712860) +2018/09/16 04:15:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49622, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:15:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:15:52 ruptelaNet.go:261: Data received(client: [::1]:49621, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:15:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:15:52 ruptelaNet.go:278: Sent ACK (client: [::1]:49621, IMEI: 352094087982671) +2018/09/16 04:15:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49621, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 04:16:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:49679) +2018/09/16 04:16:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:16:18 ruptelaNet.go:261: Data received(client: [::1]:49679, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:16:18 ruptelaNet.go:278: Sent ACK (client: [::1]:49679, IMEI: 352094087982671) +2018/09/16 04:16:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:16:21 ruptelaNet.go:261: Data received(client: [::1]:49679, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:16:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:16:21 ruptelaNet.go:278: Sent ACK (client: [::1]:49679, IMEI: 352094087982671) +2018/09/16 04:16:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49679, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:16:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:49738) +2018/09/16 04:16:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:16:47 ruptelaNet.go:261: Data received(client: [::1]:49738, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 04:16:47 ruptelaNet.go:278: Sent ACK (client: [::1]:49738, IMEI: 352094087982671) +2018/09/16 04:16:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49741) +2018/09/16 04:16:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:16:49 ruptelaNet.go:261: Data received(client: [::1]:49741, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49741, IMEI: 352094089712860) +2018/09/16 04:16:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:16:50 ruptelaNet.go:261: Data received(client: [::1]:49738, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:16:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:16:50 ruptelaNet.go:278: Sent ACK (client: [::1]:49738, IMEI: 352094087982671) +2018/09/16 04:16:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:16:51 ruptelaNet.go:261: Data received(client: [::1]:49741, IMEI: 352094089712860) with duration 2.2 s +2018/09/16 04:16:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:16:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49741, IMEI: 352094089712860) +2018/09/16 04:16:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49741, IMEI: 352094089712860) with duration 3.02 s +2018/09/16 04:16:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49738, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 04:17:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:49794) +2018/09/16 04:17:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:17:16 ruptelaNet.go:261: Data received(client: [::1]:49794, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 04:17:16 ruptelaNet.go:278: Sent ACK (client: [::1]:49794, IMEI: 352094087982671) +2018/09/16 04:17:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:17:19 ruptelaNet.go:261: Data received(client: [::1]:49794, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:17:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:17:19 ruptelaNet.go:278: Sent ACK (client: [::1]:49794, IMEI: 352094087982671) +2018/09/16 04:17:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49794, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 04:17:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:49859) +2018/09/16 04:17:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:17:45 ruptelaNet.go:261: Data received(client: [::1]:49859, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 04:17:45 ruptelaNet.go:278: Sent ACK (client: [::1]:49859, IMEI: 352094087982671) +2018/09/16 04:17:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:17:48 ruptelaNet.go:261: Data received(client: [::1]:49859, IMEI: 352094087982671) with duration 3.36 s +2018/09/16 04:17:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:17:48 ruptelaNet.go:278: Sent ACK (client: [::1]:49859, IMEI: 352094087982671) +2018/09/16 04:17:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49868) +2018/09/16 04:17:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:17:49 ruptelaNet.go:261: Data received(client: [::1]:49868, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:17:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49868, IMEI: 352094089712860) +2018/09/16 04:17:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49859, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 04:17:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:17:52 ruptelaNet.go:261: Data received(client: [::1]:49868, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:17:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:17:52 ruptelaNet.go:278: Sent ACK (client: [::1]:49868, IMEI: 352094089712860) +2018/09/16 04:17:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49868, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 04:18:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:49914) +2018/09/16 04:18:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:18:13 ruptelaNet.go:261: Data received(client: [::1]:49914, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 04:18:13 ruptelaNet.go:278: Sent ACK (client: [::1]:49914, IMEI: 352094087982671) +2018/09/16 04:18:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:18:16 ruptelaNet.go:261: Data received(client: [::1]:49914, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 04:18:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:49914, IMEI: 352094087982671) +2018/09/16 04:18:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49914, IMEI: 352094087982671) with duration 6.23 s +2018/09/16 04:18:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:49965) +2018/09/16 04:18:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:18:42 ruptelaNet.go:261: Data received(client: [::1]:49965, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:18:42 ruptelaNet.go:278: Sent ACK (client: [::1]:49965, IMEI: 352094087982671) +2018/09/16 04:18:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:18:45 ruptelaNet.go:261: Data received(client: [::1]:49965, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:18:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:18:45 ruptelaNet.go:278: Sent ACK (client: [::1]:49965, IMEI: 352094087982671) +2018/09/16 04:18:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49965, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:18:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:49984) +2018/09/16 04:18:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:18:50 ruptelaNet.go:261: Data received(client: [::1]:49984, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:18:50 ruptelaNet.go:278: Sent ACK (client: [::1]:49984, IMEI: 352094089712860) +2018/09/16 04:18:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:18:52 ruptelaNet.go:261: Data received(client: [::1]:49984, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:18:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:18:52 ruptelaNet.go:278: Sent ACK (client: [::1]:49984, IMEI: 352094089712860) +2018/09/16 04:18:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49984, IMEI: 352094089712860) with duration 4.4 s +2018/09/16 04:19:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:50026) +2018/09/16 04:19:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:19:11 ruptelaNet.go:261: Data received(client: [::1]:50026, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 04:19:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50026, IMEI: 352094087982671) +2018/09/16 04:19:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:19:14 ruptelaNet.go:261: Data received(client: [::1]:50026, IMEI: 352094087982671) with duration 3.67 s +2018/09/16 04:19:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:19:14 ruptelaNet.go:278: Sent ACK (client: [::1]:50026, IMEI: 352094087982671) +2018/09/16 04:19:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50026, IMEI: 352094087982671) with duration 5.79 s +2018/09/16 04:19:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:50079) +2018/09/16 04:19:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:19:40 ruptelaNet.go:261: Data received(client: [::1]:50079, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:19:40 ruptelaNet.go:278: Sent ACK (client: [::1]:50079, IMEI: 352094087982671) +2018/09/16 04:19:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:19:43 ruptelaNet.go:261: Data received(client: [::1]:50079, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:19:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:19:43 ruptelaNet.go:278: Sent ACK (client: [::1]:50079, IMEI: 352094087982671) +2018/09/16 04:19:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50079, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:19:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50101) +2018/09/16 04:19:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:19:50 ruptelaNet.go:261: Data received(client: [::1]:50101, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:19:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50101, IMEI: 352094089712860) +2018/09/16 04:19:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:19:52 ruptelaNet.go:261: Data received(client: [::1]:50101, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 04:19:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:19:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50101, IMEI: 352094089712860) +2018/09/16 04:19:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50101, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:20:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:50142) +2018/09/16 04:20:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:20:09 ruptelaNet.go:261: Data received(client: [::1]:50142, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 04:20:09 ruptelaNet.go:278: Sent ACK (client: [::1]:50142, IMEI: 352094087982671) +2018/09/16 04:20:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:20:12 ruptelaNet.go:261: Data received(client: [::1]:50142, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 04:20:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:20:12 ruptelaNet.go:278: Sent ACK (client: [::1]:50142, IMEI: 352094087982671) +2018/09/16 04:20:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50142, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 04:20:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:50205) +2018/09/16 04:20:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:20:38 ruptelaNet.go:261: Data received(client: [::1]:50205, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:20:38 ruptelaNet.go:278: Sent ACK (client: [::1]:50205, IMEI: 352094087982671) +2018/09/16 04:20:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:20:41 ruptelaNet.go:261: Data received(client: [::1]:50205, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:20:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:20:41 ruptelaNet.go:278: Sent ACK (client: [::1]:50205, IMEI: 352094087982671) +2018/09/16 04:20:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50205, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 04:20:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50235) +2018/09/16 04:20:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:20:50 ruptelaNet.go:261: Data received(client: [::1]:50235, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:20:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50235, IMEI: 352094089712860) +2018/09/16 04:20:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:20:52 ruptelaNet.go:261: Data received(client: [::1]:50235, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:20:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:20:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50235, IMEI: 352094089712860) +2018/09/16 04:20:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50235, IMEI: 352094089712860) with duration 3.45 s +2018/09/16 04:21:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:50264) +2018/09/16 04:21:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:21:07 ruptelaNet.go:261: Data received(client: [::1]:50264, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 04:21:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50264, IMEI: 352094087982671) +2018/09/16 04:21:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:21:10 ruptelaNet.go:261: Data received(client: [::1]:50264, IMEI: 352094087982671) with duration 3.75 s +2018/09/16 04:21:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:21:10 ruptelaNet.go:278: Sent ACK (client: [::1]:50264, IMEI: 352094087982671) +2018/09/16 04:21:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50264, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:21:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:50324) +2018/09/16 04:21:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:21:36 ruptelaNet.go:261: Data received(client: [::1]:50324, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 04:21:36 ruptelaNet.go:278: Sent ACK (client: [::1]:50324, IMEI: 352094087982671) +2018/09/16 04:21:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:21:39 ruptelaNet.go:261: Data received(client: [::1]:50324, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 04:21:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:21:39 ruptelaNet.go:278: Sent ACK (client: [::1]:50324, IMEI: 352094087982671) +2018/09/16 04:21:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50324, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:21:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50354) +2018/09/16 04:21:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:21:50 ruptelaNet.go:261: Data received(client: [::1]:50354, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:21:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50354, IMEI: 352094089712860) +2018/09/16 04:21:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:21:52 ruptelaNet.go:261: Data received(client: [::1]:50354, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:21:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:21:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50354, IMEI: 352094089712860) +2018/09/16 04:21:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50354, IMEI: 352094089712860) with duration 2.98 s +2018/09/16 04:22:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:50385) +2018/09/16 04:22:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:22:05 ruptelaNet.go:261: Data received(client: [::1]:50385, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:22:05 ruptelaNet.go:278: Sent ACK (client: [::1]:50385, IMEI: 352094087982671) +2018/09/16 04:22:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:22:08 ruptelaNet.go:261: Data received(client: [::1]:50385, IMEI: 352094087982671) with duration 3.59 s +2018/09/16 04:22:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:22:08 ruptelaNet.go:278: Sent ACK (client: [::1]:50385, IMEI: 352094087982671) +2018/09/16 04:22:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50385, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 04:22:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50449) +2018/09/16 04:22:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:22:34 ruptelaNet.go:261: Data received(client: [::1]:50449, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 04:22:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50449, IMEI: 352094087982671) +2018/09/16 04:22:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:22:37 ruptelaNet.go:261: Data received(client: [::1]:50449, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:22:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:22:37 ruptelaNet.go:278: Sent ACK (client: [::1]:50449, IMEI: 352094087982671) +2018/09/16 04:22:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50449, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:22:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50487) +2018/09/16 04:22:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:22:50 ruptelaNet.go:261: Data received(client: [::1]:50487, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:22:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50487, IMEI: 352094089712860) +2018/09/16 04:22:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:22:52 ruptelaNet.go:261: Data received(client: [::1]:50487, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 04:22:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:22:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50487, IMEI: 352094089712860) +2018/09/16 04:22:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50487, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 04:23:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:50512) +2018/09/16 04:23:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:23:03 ruptelaNet.go:261: Data received(client: [::1]:50512, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:23:03 ruptelaNet.go:278: Sent ACK (client: [::1]:50512, IMEI: 352094087982671) +2018/09/16 04:23:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:23:06 ruptelaNet.go:261: Data received(client: [::1]:50512, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 04:23:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:23:06 ruptelaNet.go:278: Sent ACK (client: [::1]:50512, IMEI: 352094087982671) +2018/09/16 04:23:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50512, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:23:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:50569) +2018/09/16 04:23:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:23:32 ruptelaNet.go:261: Data received(client: [::1]:50569, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:23:32 ruptelaNet.go:278: Sent ACK (client: [::1]:50569, IMEI: 352094087982671) +2018/09/16 04:23:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:23:35 ruptelaNet.go:261: Data received(client: [::1]:50569, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 04:23:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:23:35 ruptelaNet.go:278: Sent ACK (client: [::1]:50569, IMEI: 352094087982671) +2018/09/16 04:23:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50569, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:23:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50608) +2018/09/16 04:23:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:23:50 ruptelaNet.go:261: Data received(client: [::1]:50608, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:23:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50608, IMEI: 352094089712860) +2018/09/16 04:23:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:23:52 ruptelaNet.go:261: Data received(client: [::1]:50608, IMEI: 352094089712860) with duration 2.07 s +2018/09/16 04:23:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:23:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50608, IMEI: 352094089712860) +2018/09/16 04:23:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50608, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 04:24:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:50629) +2018/09/16 04:24:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:24:01 ruptelaNet.go:261: Data received(client: [::1]:50629, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 04:24:01 ruptelaNet.go:278: Sent ACK (client: [::1]:50629, IMEI: 352094087982671) +2018/09/16 04:24:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:24:04 ruptelaNet.go:261: Data received(client: [::1]:50629, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 04:24:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:24:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50629, IMEI: 352094087982671) +2018/09/16 04:24:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50629, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 04:24:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:50690) +2018/09/16 04:24:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:24:30 ruptelaNet.go:261: Data received(client: [::1]:50690, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:24:30 ruptelaNet.go:278: Sent ACK (client: [::1]:50690, IMEI: 352094087982671) +2018/09/16 04:24:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:24:33 ruptelaNet.go:261: Data received(client: [::1]:50690, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:24:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:24:33 ruptelaNet.go:278: Sent ACK (client: [::1]:50690, IMEI: 352094087982671) +2018/09/16 04:24:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50690, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:24:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50734) +2018/09/16 04:24:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:24:50 ruptelaNet.go:261: Data received(client: [::1]:50734, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:24:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50734, IMEI: 352094089712860) +2018/09/16 04:24:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:24:52 ruptelaNet.go:261: Data received(client: [::1]:50734, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:24:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:24:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50734, IMEI: 352094089712860) +2018/09/16 04:24:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50734, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 04:24:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:50752) +2018/09/16 04:24:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:24:59 ruptelaNet.go:261: Data received(client: [::1]:50752, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:24:59 ruptelaNet.go:278: Sent ACK (client: [::1]:50752, IMEI: 352094087982671) +2018/09/16 04:25:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:25:02 ruptelaNet.go:261: Data received(client: [::1]:50752, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:25:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:25:02 ruptelaNet.go:278: Sent ACK (client: [::1]:50752, IMEI: 352094087982671) +2018/09/16 04:25:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50752, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:25:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:50815) +2018/09/16 04:25:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:25:28 ruptelaNet.go:261: Data received(client: [::1]:50815, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:25:28 ruptelaNet.go:278: Sent ACK (client: [::1]:50815, IMEI: 352094087982671) +2018/09/16 04:25:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:25:31 ruptelaNet.go:261: Data received(client: [::1]:50815, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 04:25:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:25:31 ruptelaNet.go:278: Sent ACK (client: [::1]:50815, IMEI: 352094087982671) +2018/09/16 04:25:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50815, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 04:25:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50861) +2018/09/16 04:25:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:25:50 ruptelaNet.go:261: Data received(client: [::1]:50861, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:25:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50861, IMEI: 352094089712860) +2018/09/16 04:25:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:25:53 ruptelaNet.go:261: Data received(client: [::1]:50861, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:25:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:25:53 ruptelaNet.go:278: Sent ACK (client: [::1]:50861, IMEI: 352094089712860) +2018/09/16 04:25:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50861, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 04:25:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:50877) +2018/09/16 04:25:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:25:57 ruptelaNet.go:261: Data received(client: [::1]:50877, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 04:25:57 ruptelaNet.go:278: Sent ACK (client: [::1]:50877, IMEI: 352094087982671) +2018/09/16 04:26:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:26:00 ruptelaNet.go:261: Data received(client: [::1]:50877, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:26:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:26:00 ruptelaNet.go:278: Sent ACK (client: [::1]:50877, IMEI: 352094087982671) +2018/09/16 04:26:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50877, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:26:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50935) +2018/09/16 04:26:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:26:26 ruptelaNet.go:261: Data received(client: [::1]:50935, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:26:26 ruptelaNet.go:278: Sent ACK (client: [::1]:50935, IMEI: 352094087982671) +2018/09/16 04:26:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:26:29 ruptelaNet.go:261: Data received(client: [::1]:50935, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 04:26:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:26:29 ruptelaNet.go:278: Sent ACK (client: [::1]:50935, IMEI: 352094087982671) +2018/09/16 04:26:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50935, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 04:26:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50990) +2018/09/16 04:26:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:26:50 ruptelaNet.go:261: Data received(client: [::1]:50990, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:26:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50990, IMEI: 352094089712860) +2018/09/16 04:26:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:26:52 ruptelaNet.go:261: Data received(client: [::1]:50990, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 04:26:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:26:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50990, IMEI: 352094089712860) +2018/09/16 04:26:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50990, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 04:26:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:51001) +2018/09/16 04:26:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:26:55 ruptelaNet.go:261: Data received(client: [::1]:51001, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:26:55 ruptelaNet.go:278: Sent ACK (client: [::1]:51001, IMEI: 352094087982671) +2018/09/16 04:26:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:26:58 ruptelaNet.go:261: Data received(client: [::1]:51001, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 04:26:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:26:58 ruptelaNet.go:278: Sent ACK (client: [::1]:51001, IMEI: 352094087982671) +2018/09/16 04:27:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51001, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:27:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:51058) +2018/09/16 04:27:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:27:24 ruptelaNet.go:261: Data received(client: [::1]:51058, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:27:24 ruptelaNet.go:278: Sent ACK (client: [::1]:51058, IMEI: 352094087982671) +2018/09/16 04:27:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:27:27 ruptelaNet.go:261: Data received(client: [::1]:51058, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:27:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:27:27 ruptelaNet.go:278: Sent ACK (client: [::1]:51058, IMEI: 352094087982671) +2018/09/16 04:27:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51058, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:27:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:51111) +2018/09/16 04:27:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:27:50 ruptelaNet.go:261: Data received(client: [::1]:51111, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:27:50 ruptelaNet.go:278: Sent ACK (client: [::1]:51111, IMEI: 352094089712860) +2018/09/16 04:27:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:51117) +2018/09/16 04:27:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:27:53 ruptelaNet.go:261: Data received(client: [::1]:51111, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:27:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:27:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51111, IMEI: 352094089712860) +2018/09/16 04:27:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:27:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51111, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 04:27:53 ruptelaNet.go:261: Data received(client: [::1]:51117, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:27:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 04:27:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:27:56 ruptelaNet.go:261: Data received(client: [::1]:51117, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 04:27:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:27:56 ruptelaNet.go:278: Sent ACK (client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 04:27:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51117, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:28:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:51174) +2018/09/16 04:28:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:28:22 ruptelaNet.go:261: Data received(client: [::1]:51174, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:28:22 ruptelaNet.go:278: Sent ACK (client: [::1]:51174, IMEI: 352094087982671) +2018/09/16 04:28:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:28:25 ruptelaNet.go:261: Data received(client: [::1]:51174, IMEI: 352094087982671) with duration 4.02 s +2018/09/16 04:28:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:28:25 ruptelaNet.go:278: Sent ACK (client: [::1]:51174, IMEI: 352094087982671) +2018/09/16 04:28:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51174, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:28:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51239) +2018/09/16 04:28:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51240) +2018/09/16 04:28:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:28:51 ruptelaNet.go:261: Data received(client: [::1]:51240, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:28:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51240, IMEI: 352094089712860) +2018/09/16 04:28:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:28:51 ruptelaNet.go:261: Data received(client: [::1]:51239, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 04:28:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 04:28:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:28:53 ruptelaNet.go:261: Data received(client: [::1]:51240, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 04:28:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:28:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51240, IMEI: 352094089712860) +2018/09/16 04:28:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51240, IMEI: 352094089712860) with duration 2.75 s +2018/09/16 04:28:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:28:54 ruptelaNet.go:261: Data received(client: [::1]:51239, IMEI: 352094087982671) with duration 3.66 s +2018/09/16 04:28:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:28:54 ruptelaNet.go:278: Sent ACK (client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 04:28:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51239, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 04:29:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:51298) +2018/09/16 04:29:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:29:20 ruptelaNet.go:261: Data received(client: [::1]:51298, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:29:20 ruptelaNet.go:278: Sent ACK (client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 04:29:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:29:23 ruptelaNet.go:261: Data received(client: [::1]:51298, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:29:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:29:23 ruptelaNet.go:278: Sent ACK (client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 04:29:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51298, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:29:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:51355) +2018/09/16 04:29:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:29:49 ruptelaNet.go:261: Data received(client: [::1]:51355, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:29:49 ruptelaNet.go:278: Sent ACK (client: [::1]:51355, IMEI: 352094087982671) +2018/09/16 04:29:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51361) +2018/09/16 04:29:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:29:51 ruptelaNet.go:261: Data received(client: [::1]:51361, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:29:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51361, IMEI: 352094089712860) +2018/09/16 04:29:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:29:53 ruptelaNet.go:261: Data received(client: [::1]:51355, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 04:29:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:29:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51355, IMEI: 352094087982671) +2018/09/16 04:29:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:29:53 ruptelaNet.go:261: Data received(client: [::1]:51361, IMEI: 352094089712860) with duration 2.32 s +2018/09/16 04:29:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:29:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51361, IMEI: 352094089712860) +2018/09/16 04:29:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51361, IMEI: 352094089712860) with duration 3.14 s +2018/09/16 04:29:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51355, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 04:30:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:51418) +2018/09/16 04:30:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:30:18 ruptelaNet.go:261: Data received(client: [::1]:51418, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:30:18 ruptelaNet.go:278: Sent ACK (client: [::1]:51418, IMEI: 352094087982671) +2018/09/16 04:30:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:30:21 ruptelaNet.go:261: Data received(client: [::1]:51418, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:30:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:30:21 ruptelaNet.go:278: Sent ACK (client: [::1]:51418, IMEI: 352094087982671) +2018/09/16 04:30:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51418, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:30:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:51440) +2018/09/16 04:30:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51440, IMEI: 0) with duration 15.46 s +2018/09/16 04:30:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:51472) +2018/09/16 04:30:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:51480) +2018/09/16 04:30:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:30:47 ruptelaNet.go:261: Data received(client: [::1]:51480, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 04:30:47 ruptelaNet.go:278: Sent ACK (client: [::1]:51480, IMEI: 352094087982671) +2018/09/16 04:30:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:30:51 ruptelaNet.go:261: Data received(client: [::1]:51480, IMEI: 352094087982671) with duration 4.35 s +2018/09/16 04:30:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:30:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51480, IMEI: 352094087982671) +2018/09/16 04:30:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51487) +2018/09/16 04:30:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:30:51 ruptelaNet.go:261: Data received(client: [::1]:51487, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:30:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51487, IMEI: 352094089712860) +2018/09/16 04:30:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:30:53 ruptelaNet.go:261: Data received(client: [::1]:51487, IMEI: 352094089712860) with duration 2.01 s +2018/09/16 04:30:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:30:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51487, IMEI: 352094089712860) +2018/09/16 04:30:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51480, IMEI: 352094087982671) with duration 6.61 s +2018/09/16 04:30:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51487, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:31:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51472, IMEI: 0) with duration 15.53 s +2018/09/16 04:31:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:51535) +2018/09/16 04:31:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:31:16 ruptelaNet.go:261: Data received(client: [::1]:51535, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 04:31:16 ruptelaNet.go:278: Sent ACK (client: [::1]:51535, IMEI: 352094087982671) +2018/09/16 04:31:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:31:19 ruptelaNet.go:261: Data received(client: [::1]:51535, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 04:31:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:31:19 ruptelaNet.go:278: Sent ACK (client: [::1]:51535, IMEI: 352094087982671) +2018/09/16 04:31:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51535, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 04:31:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:51597) +2018/09/16 04:31:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:31:45 ruptelaNet.go:261: Data received(client: [::1]:51597, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:31:45 ruptelaNet.go:278: Sent ACK (client: [::1]:51597, IMEI: 352094087982671) +2018/09/16 04:31:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:31:48 ruptelaNet.go:261: Data received(client: [::1]:51597, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:31:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:31:48 ruptelaNet.go:278: Sent ACK (client: [::1]:51597, IMEI: 352094087982671) +2018/09/16 04:31:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51597, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:31:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51615) +2018/09/16 04:31:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:31:51 ruptelaNet.go:261: Data received(client: [::1]:51615, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:31:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51615, IMEI: 352094089712860) +2018/09/16 04:31:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:31:53 ruptelaNet.go:261: Data received(client: [::1]:51615, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:31:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:31:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51615, IMEI: 352094089712860) +2018/09/16 04:31:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51615, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:32:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:51657) +2018/09/16 04:32:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:32:14 ruptelaNet.go:261: Data received(client: [::1]:51657, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:32:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51657, IMEI: 352094087982671) +2018/09/16 04:32:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:32:17 ruptelaNet.go:261: Data received(client: [::1]:51657, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 04:32:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:32:17 ruptelaNet.go:278: Sent ACK (client: [::1]:51657, IMEI: 352094087982671) +2018/09/16 04:32:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51657, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 04:32:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:51716) +2018/09/16 04:32:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:32:43 ruptelaNet.go:261: Data received(client: [::1]:51716, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:32:43 ruptelaNet.go:278: Sent ACK (client: [::1]:51716, IMEI: 352094087982671) +2018/09/16 04:32:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:32:46 ruptelaNet.go:261: Data received(client: [::1]:51716, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 04:32:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:32:46 ruptelaNet.go:278: Sent ACK (client: [::1]:51716, IMEI: 352094087982671) +2018/09/16 04:32:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51716, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 04:32:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51734) +2018/09/16 04:32:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:32:51 ruptelaNet.go:261: Data received(client: [::1]:51734, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:32:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51734, IMEI: 352094089712860) +2018/09/16 04:32:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:32:53 ruptelaNet.go:261: Data received(client: [::1]:51734, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 04:32:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:32:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51734, IMEI: 352094089712860) +2018/09/16 04:32:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51734, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 04:33:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:51777) +2018/09/16 04:33:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:33:12 ruptelaNet.go:261: Data received(client: [::1]:51777, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:33:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51777, IMEI: 352094087982671) +2018/09/16 04:33:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:33:15 ruptelaNet.go:261: Data received(client: [::1]:51777, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:33:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:33:15 ruptelaNet.go:278: Sent ACK (client: [::1]:51777, IMEI: 352094087982671) +2018/09/16 04:33:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51777, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:33:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:51830) +2018/09/16 04:33:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:33:41 ruptelaNet.go:261: Data received(client: [::1]:51830, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 04:33:41 ruptelaNet.go:278: Sent ACK (client: [::1]:51830, IMEI: 352094087982671) +2018/09/16 04:33:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:33:44 ruptelaNet.go:261: Data received(client: [::1]:51830, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:33:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:33:44 ruptelaNet.go:278: Sent ACK (client: [::1]:51830, IMEI: 352094087982671) +2018/09/16 04:33:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51830, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 04:33:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51854) +2018/09/16 04:33:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:33:51 ruptelaNet.go:261: Data received(client: [::1]:51854, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:33:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51854, IMEI: 352094089712860) +2018/09/16 04:33:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:33:54 ruptelaNet.go:261: Data received(client: [::1]:51854, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 04:33:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:33:54 ruptelaNet.go:278: Sent ACK (client: [::1]:51854, IMEI: 352094089712860) +2018/09/16 04:33:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51854, IMEI: 352094089712860) with duration 3.68 s +2018/09/16 04:34:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:51891) +2018/09/16 04:34:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:34:10 ruptelaNet.go:261: Data received(client: [::1]:51891, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:34:10 ruptelaNet.go:278: Sent ACK (client: [::1]:51891, IMEI: 352094087982671) +2018/09/16 04:34:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:34:13 ruptelaNet.go:261: Data received(client: [::1]:51891, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:34:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:34:13 ruptelaNet.go:278: Sent ACK (client: [::1]:51891, IMEI: 352094087982671) +2018/09/16 04:34:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51891, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:34:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:51947) +2018/09/16 04:34:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:34:39 ruptelaNet.go:261: Data received(client: [::1]:51947, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:34:39 ruptelaNet.go:278: Sent ACK (client: [::1]:51947, IMEI: 352094087982671) +2018/09/16 04:34:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:34:42 ruptelaNet.go:261: Data received(client: [::1]:51947, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:34:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:34:42 ruptelaNet.go:278: Sent ACK (client: [::1]:51947, IMEI: 352094087982671) +2018/09/16 04:34:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51947, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 04:34:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51972) +2018/09/16 04:34:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:34:51 ruptelaNet.go:261: Data received(client: [::1]:51972, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:34:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51972, IMEI: 352094089712860) +2018/09/16 04:34:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:34:53 ruptelaNet.go:261: Data received(client: [::1]:51972, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:34:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:34:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51972, IMEI: 352094089712860) +2018/09/16 04:34:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51972, IMEI: 352094089712860) with duration 2.9 s +2018/09/16 04:35:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:52009) +2018/09/16 04:35:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:35:08 ruptelaNet.go:261: Data received(client: [::1]:52009, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:35:08 ruptelaNet.go:278: Sent ACK (client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 04:35:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:35:11 ruptelaNet.go:261: Data received(client: [::1]:52009, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:35:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:35:11 ruptelaNet.go:278: Sent ACK (client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 04:35:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52009, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:35:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:52070) +2018/09/16 04:35:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:35:37 ruptelaNet.go:261: Data received(client: [::1]:52070, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 04:35:37 ruptelaNet.go:278: Sent ACK (client: [::1]:52070, IMEI: 352094087982671) +2018/09/16 04:35:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:35:40 ruptelaNet.go:261: Data received(client: [::1]:52070, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 04:35:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:35:40 ruptelaNet.go:278: Sent ACK (client: [::1]:52070, IMEI: 352094087982671) +2018/09/16 04:35:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52070, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 04:35:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52098) +2018/09/16 04:35:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:35:52 ruptelaNet.go:261: Data received(client: [::1]:52098, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:35:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52098, IMEI: 352094089712860) +2018/09/16 04:35:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:35:54 ruptelaNet.go:261: Data received(client: [::1]:52098, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 04:35:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:35:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52098, IMEI: 352094089712860) +2018/09/16 04:35:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52098, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 04:36:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:52126) +2018/09/16 04:36:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:36:06 ruptelaNet.go:261: Data received(client: [::1]:52126, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 04:36:06 ruptelaNet.go:278: Sent ACK (client: [::1]:52126, IMEI: 352094087982671) +2018/09/16 04:36:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:36:09 ruptelaNet.go:261: Data received(client: [::1]:52126, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:36:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:36:09 ruptelaNet.go:278: Sent ACK (client: [::1]:52126, IMEI: 352094087982671) +2018/09/16 04:36:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52126, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:36:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:52184) +2018/09/16 04:36:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:36:35 ruptelaNet.go:261: Data received(client: [::1]:52184, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:36:35 ruptelaNet.go:278: Sent ACK (client: [::1]:52184, IMEI: 352094087982671) +2018/09/16 04:36:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:36:38 ruptelaNet.go:261: Data received(client: [::1]:52184, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:36:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:36:38 ruptelaNet.go:278: Sent ACK (client: [::1]:52184, IMEI: 352094087982671) +2018/09/16 04:36:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52184, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 04:36:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52217) +2018/09/16 04:36:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:36:52 ruptelaNet.go:261: Data received(client: [::1]:52217, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:36:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52217, IMEI: 352094089712860) +2018/09/16 04:36:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:36:54 ruptelaNet.go:261: Data received(client: [::1]:52217, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:36:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:36:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52217, IMEI: 352094089712860) +2018/09/16 04:36:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52217, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:37:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:52239) +2018/09/16 04:37:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:37:04 ruptelaNet.go:261: Data received(client: [::1]:52239, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:37:04 ruptelaNet.go:278: Sent ACK (client: [::1]:52239, IMEI: 352094087982671) +2018/09/16 04:37:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:37:07 ruptelaNet.go:261: Data received(client: [::1]:52239, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:37:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:37:07 ruptelaNet.go:278: Sent ACK (client: [::1]:52239, IMEI: 352094087982671) +2018/09/16 04:37:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52239, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:37:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:52299) +2018/09/16 04:37:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:37:33 ruptelaNet.go:261: Data received(client: [::1]:52299, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:37:33 ruptelaNet.go:278: Sent ACK (client: [::1]:52299, IMEI: 352094087982671) +2018/09/16 04:37:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:37:36 ruptelaNet.go:261: Data received(client: [::1]:52299, IMEI: 352094087982671) with duration 4.16 s +2018/09/16 04:37:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:37:36 ruptelaNet.go:278: Sent ACK (client: [::1]:52299, IMEI: 352094087982671) +2018/09/16 04:37:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52299, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 04:37:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:52338) +2018/09/16 04:37:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:37:51 ruptelaNet.go:261: Data received(client: [::1]:52338, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:37:51 ruptelaNet.go:278: Sent ACK (client: [::1]:52338, IMEI: 352094089712860) +2018/09/16 04:37:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:37:53 ruptelaNet.go:261: Data received(client: [::1]:52338, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:37:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:37:53 ruptelaNet.go:278: Sent ACK (client: [::1]:52338, IMEI: 352094089712860) +2018/09/16 04:37:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52338, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:38:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:52361) +2018/09/16 04:38:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:38:02 ruptelaNet.go:261: Data received(client: [::1]:52361, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 04:38:02 ruptelaNet.go:278: Sent ACK (client: [::1]:52361, IMEI: 352094087982671) +2018/09/16 04:38:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:38:05 ruptelaNet.go:261: Data received(client: [::1]:52361, IMEI: 352094087982671) with duration 3.46 s +2018/09/16 04:38:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:38:05 ruptelaNet.go:278: Sent ACK (client: [::1]:52361, IMEI: 352094087982671) +2018/09/16 04:38:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52361, IMEI: 352094087982671) with duration 5.61 s +2018/09/16 04:38:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:52415) +2018/09/16 04:38:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:38:30 ruptelaNet.go:261: Data received(client: [::1]:52415, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:38:30 ruptelaNet.go:278: Sent ACK (client: [::1]:52415, IMEI: 352094087982671) +2018/09/16 04:38:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:38:33 ruptelaNet.go:261: Data received(client: [::1]:52415, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:38:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:38:33 ruptelaNet.go:278: Sent ACK (client: [::1]:52415, IMEI: 352094087982671) +2018/09/16 04:38:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52415, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:38:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:52470) +2018/09/16 04:38:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:38:53 ruptelaNet.go:261: Data received(client: [::1]:52470, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:38:53 ruptelaNet.go:278: Sent ACK (client: [::1]:52470, IMEI: 352094089712860) +2018/09/16 04:38:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:38:55 ruptelaNet.go:261: Data received(client: [::1]:52470, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:38:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:38:55 ruptelaNet.go:278: Sent ACK (client: [::1]:52470, IMEI: 352094089712860) +2018/09/16 04:38:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52470, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 04:38:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:52482) +2018/09/16 04:38:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:38:59 ruptelaNet.go:261: Data received(client: [::1]:52482, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:38:59 ruptelaNet.go:278: Sent ACK (client: [::1]:52482, IMEI: 352094087982671) +2018/09/16 04:39:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:39:02 ruptelaNet.go:261: Data received(client: [::1]:52482, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:39:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:39:02 ruptelaNet.go:278: Sent ACK (client: [::1]:52482, IMEI: 352094087982671) +2018/09/16 04:39:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52482, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:39:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:52539) +2018/09/16 04:39:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:39:28 ruptelaNet.go:261: Data received(client: [::1]:52539, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 04:39:28 ruptelaNet.go:278: Sent ACK (client: [::1]:52539, IMEI: 352094087982671) +2018/09/16 04:39:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:39:31 ruptelaNet.go:261: Data received(client: [::1]:52539, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:39:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:39:31 ruptelaNet.go:278: Sent ACK (client: [::1]:52539, IMEI: 352094087982671) +2018/09/16 04:39:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52539, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 04:39:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52591) +2018/09/16 04:39:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:39:52 ruptelaNet.go:261: Data received(client: [::1]:52591, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:39:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52591, IMEI: 352094089712860) +2018/09/16 04:39:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:39:54 ruptelaNet.go:261: Data received(client: [::1]:52591, IMEI: 352094089712860) with duration 2.14 s +2018/09/16 04:39:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:39:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52591, IMEI: 352094089712860) +2018/09/16 04:39:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52591, IMEI: 352094089712860) with duration 2.83 s +2018/09/16 04:39:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:52603) +2018/09/16 04:39:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:39:57 ruptelaNet.go:261: Data received(client: [::1]:52603, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 04:39:57 ruptelaNet.go:278: Sent ACK (client: [::1]:52603, IMEI: 352094087982671) +2018/09/16 04:40:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:40:00 ruptelaNet.go:261: Data received(client: [::1]:52603, IMEI: 352094087982671) with duration 3.74 s +2018/09/16 04:40:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:40:00 ruptelaNet.go:278: Sent ACK (client: [::1]:52603, IMEI: 352094087982671) +2018/09/16 04:40:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52603, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 04:40:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:52656) +2018/09/16 04:40:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:40:27 ruptelaNet.go:261: Data received(client: [::1]:52656, IMEI: 352094087982671) with duration 1.94 s +2018/09/16 04:40:27 ruptelaNet.go:278: Sent ACK (client: [::1]:52656, IMEI: 352094087982671) +2018/09/16 04:40:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:40:30 ruptelaNet.go:261: Data received(client: [::1]:52656, IMEI: 352094087982671) with duration 4.81 s +2018/09/16 04:40:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:40:30 ruptelaNet.go:278: Sent ACK (client: [::1]:52656, IMEI: 352094087982671) +2018/09/16 04:40:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52656, IMEI: 352094087982671) with duration 6.96 s +2018/09/16 04:40:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52705) +2018/09/16 04:40:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:40:52 ruptelaNet.go:261: Data received(client: [::1]:52705, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 04:40:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52705, IMEI: 352094089712860) +2018/09/16 04:40:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:40:54 ruptelaNet.go:261: Data received(client: [::1]:52705, IMEI: 352094089712860) with duration 2.24 s +2018/09/16 04:40:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:40:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52705, IMEI: 352094089712860) +2018/09/16 04:40:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:52717) +2018/09/16 04:40:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52705, IMEI: 352094089712860) with duration 3.59 s +2018/09/16 04:40:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:40:56 ruptelaNet.go:261: Data received(client: [::1]:52717, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 04:40:56 ruptelaNet.go:278: Sent ACK (client: [::1]:52717, IMEI: 352094087982671) +2018/09/16 04:40:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:40:59 ruptelaNet.go:261: Data received(client: [::1]:52717, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:40:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:40:59 ruptelaNet.go:278: Sent ACK (client: [::1]:52717, IMEI: 352094087982671) +2018/09/16 04:41:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52717, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:41:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:52771) +2018/09/16 04:41:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:41:25 ruptelaNet.go:261: Data received(client: [::1]:52771, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:41:25 ruptelaNet.go:278: Sent ACK (client: [::1]:52771, IMEI: 352094087982671) +2018/09/16 04:41:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:41:28 ruptelaNet.go:261: Data received(client: [::1]:52771, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:41:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:41:28 ruptelaNet.go:278: Sent ACK (client: [::1]:52771, IMEI: 352094087982671) +2018/09/16 04:41:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52771, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:41:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52830) +2018/09/16 04:41:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:41:52 ruptelaNet.go:261: Data received(client: [::1]:52830, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:41:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52830, IMEI: 352094089712860) +2018/09/16 04:41:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:52836) +2018/09/16 04:41:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:41:54 ruptelaNet.go:261: Data received(client: [::1]:52830, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:41:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:41:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52830, IMEI: 352094089712860) +2018/09/16 04:41:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:41:54 ruptelaNet.go:261: Data received(client: [::1]:52836, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 04:41:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52836, IMEI: 352094087982671) +2018/09/16 04:41:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52830, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:41:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:41:57 ruptelaNet.go:261: Data received(client: [::1]:52836, IMEI: 352094087982671) with duration 4 s +2018/09/16 04:41:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:41:57 ruptelaNet.go:278: Sent ACK (client: [::1]:52836, IMEI: 352094087982671) +2018/09/16 04:41:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52836, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 04:42:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:52895) +2018/09/16 04:42:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:42:23 ruptelaNet.go:261: Data received(client: [::1]:52895, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:42:23 ruptelaNet.go:278: Sent ACK (client: [::1]:52895, IMEI: 352094087982671) +2018/09/16 04:42:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:42:26 ruptelaNet.go:261: Data received(client: [::1]:52895, IMEI: 352094087982671) with duration 4.06 s +2018/09/16 04:42:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:42:26 ruptelaNet.go:278: Sent ACK (client: [::1]:52895, IMEI: 352094087982671) +2018/09/16 04:42:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52895, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:42:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:52961) +2018/09/16 04:42:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52962) +2018/09/16 04:42:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:42:52 ruptelaNet.go:261: Data received(client: [::1]:52962, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:42:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52962, IMEI: 352094089712860) +2018/09/16 04:42:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:42:52 ruptelaNet.go:261: Data received(client: [::1]:52961, IMEI: 352094087982671) with duration 0.83 s +2018/09/16 04:42:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52961, IMEI: 352094087982671) +2018/09/16 04:42:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:42:54 ruptelaNet.go:261: Data received(client: [::1]:52962, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 04:42:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:42:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52962, IMEI: 352094089712860) +2018/09/16 04:42:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52962, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 04:42:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:42:55 ruptelaNet.go:261: Data received(client: [::1]:52961, IMEI: 352094087982671) with duration 3.62 s +2018/09/16 04:42:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:42:55 ruptelaNet.go:278: Sent ACK (client: [::1]:52961, IMEI: 352094087982671) +2018/09/16 04:42:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52961, IMEI: 352094087982671) with duration 5.7 s +2018/09/16 04:43:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:53025) +2018/09/16 04:43:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:43:21 ruptelaNet.go:261: Data received(client: [::1]:53025, IMEI: 352094087982671) with duration 1 s +2018/09/16 04:43:21 ruptelaNet.go:278: Sent ACK (client: [::1]:53025, IMEI: 352094087982671) +2018/09/16 04:43:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:43:24 ruptelaNet.go:261: Data received(client: [::1]:53025, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 04:43:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:43:24 ruptelaNet.go:278: Sent ACK (client: [::1]:53025, IMEI: 352094087982671) +2018/09/16 04:43:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53025, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 04:43:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:53092) +2018/09/16 04:43:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:43:50 ruptelaNet.go:261: Data received(client: [::1]:53092, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:43:50 ruptelaNet.go:278: Sent ACK (client: [::1]:53092, IMEI: 352094087982671) +2018/09/16 04:43:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:53098) +2018/09/16 04:43:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:43:52 ruptelaNet.go:261: Data received(client: [::1]:53098, IMEI: 352094089712860) with duration 0.05 s +2018/09/16 04:43:52 ruptelaNet.go:278: Sent ACK (client: [::1]:53098, IMEI: 352094089712860) +2018/09/16 04:43:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:43:53 ruptelaNet.go:261: Data received(client: [::1]:53092, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 04:43:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:43:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53092, IMEI: 352094087982671) +2018/09/16 04:43:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:43:54 ruptelaNet.go:261: Data received(client: [::1]:53098, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 04:43:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:43:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53098, IMEI: 352094089712860) +2018/09/16 04:43:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53098, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:43:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53092, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 04:44:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:53150) +2018/09/16 04:44:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:44:19 ruptelaNet.go:261: Data received(client: [::1]:53150, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:44:19 ruptelaNet.go:278: Sent ACK (client: [::1]:53150, IMEI: 352094087982671) +2018/09/16 04:44:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:44:22 ruptelaNet.go:261: Data received(client: [::1]:53150, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:44:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:44:22 ruptelaNet.go:278: Sent ACK (client: [::1]:53150, IMEI: 352094087982671) +2018/09/16 04:44:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53150, IMEI: 352094087982671) with duration 6.17 s +2018/09/16 04:44:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:53207) +2018/09/16 04:44:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:44:48 ruptelaNet.go:261: Data received(client: [::1]:53207, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:44:48 ruptelaNet.go:278: Sent ACK (client: [::1]:53207, IMEI: 352094087982671) +2018/09/16 04:44:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:44:51 ruptelaNet.go:261: Data received(client: [::1]:53207, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:44:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:44:51 ruptelaNet.go:278: Sent ACK (client: [::1]:53207, IMEI: 352094087982671) +2018/09/16 04:44:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:53219) +2018/09/16 04:44:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:44:52 ruptelaNet.go:261: Data received(client: [::1]:53219, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:44:52 ruptelaNet.go:278: Sent ACK (client: [::1]:53219, IMEI: 352094089712860) +2018/09/16 04:44:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53207, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 04:44:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:44:54 ruptelaNet.go:261: Data received(client: [::1]:53219, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 04:44:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:44:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53219, IMEI: 352094089712860) +2018/09/16 04:44:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53219, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:45:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:53267) +2018/09/16 04:45:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:45:17 ruptelaNet.go:261: Data received(client: [::1]:53267, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 04:45:17 ruptelaNet.go:278: Sent ACK (client: [::1]:53267, IMEI: 352094087982671) +2018/09/16 04:45:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:45:20 ruptelaNet.go:261: Data received(client: [::1]:53267, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 04:45:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:45:20 ruptelaNet.go:278: Sent ACK (client: [::1]:53267, IMEI: 352094087982671) +2018/09/16 04:45:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53267, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:45:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:53328) +2018/09/16 04:45:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:45:46 ruptelaNet.go:261: Data received(client: [::1]:53328, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:45:46 ruptelaNet.go:278: Sent ACK (client: [::1]:53328, IMEI: 352094087982671) +2018/09/16 04:45:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:45:49 ruptelaNet.go:261: Data received(client: [::1]:53328, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 04:45:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:45:49 ruptelaNet.go:278: Sent ACK (client: [::1]:53328, IMEI: 352094087982671) +2018/09/16 04:45:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53328, IMEI: 352094087982671) with duration 6.37 s +2018/09/16 04:45:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:53346) +2018/09/16 04:45:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:45:54 ruptelaNet.go:261: Data received(client: [::1]:53346, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:45:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53346, IMEI: 352094089712860) +2018/09/16 04:45:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:45:56 ruptelaNet.go:261: Data received(client: [::1]:53346, IMEI: 352094089712860) with duration 2.24 s +2018/09/16 04:45:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:45:56 ruptelaNet.go:278: Sent ACK (client: [::1]:53346, IMEI: 352094089712860) +2018/09/16 04:45:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53346, IMEI: 352094089712860) with duration 3.41 s +2018/09/16 04:46:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53390) +2018/09/16 04:46:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:46:15 ruptelaNet.go:261: Data received(client: [::1]:53390, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 04:46:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53390, IMEI: 352094087982671) +2018/09/16 04:46:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:46:18 ruptelaNet.go:261: Data received(client: [::1]:53390, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:46:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:46:18 ruptelaNet.go:278: Sent ACK (client: [::1]:53390, IMEI: 352094087982671) +2018/09/16 04:46:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53390, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:46:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:53448) +2018/09/16 04:46:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:46:44 ruptelaNet.go:261: Data received(client: [::1]:53448, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:46:44 ruptelaNet.go:278: Sent ACK (client: [::1]:53448, IMEI: 352094087982671) +2018/09/16 04:46:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:46:47 ruptelaNet.go:261: Data received(client: [::1]:53448, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:46:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:46:47 ruptelaNet.go:278: Sent ACK (client: [::1]:53448, IMEI: 352094087982671) +2018/09/16 04:46:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53448, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 04:46:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:53471) +2018/09/16 04:46:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:46:53 ruptelaNet.go:261: Data received(client: [::1]:53471, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:46:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53471, IMEI: 352094089712860) +2018/09/16 04:46:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:46:55 ruptelaNet.go:261: Data received(client: [::1]:53471, IMEI: 352094089712860) with duration 1.98 s +2018/09/16 04:46:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:46:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53471, IMEI: 352094089712860) +2018/09/16 04:46:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53471, IMEI: 352094089712860) with duration 2.8 s +2018/09/16 04:47:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:53518) +2018/09/16 04:47:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:47:13 ruptelaNet.go:261: Data received(client: [::1]:53518, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:47:13 ruptelaNet.go:278: Sent ACK (client: [::1]:53518, IMEI: 352094087982671) +2018/09/16 04:47:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:47:17 ruptelaNet.go:261: Data received(client: [::1]:53518, IMEI: 352094087982671) with duration 4.59 s +2018/09/16 04:47:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:47:17 ruptelaNet.go:278: Sent ACK (client: [::1]:53518, IMEI: 352094087982671) +2018/09/16 04:47:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53518, IMEI: 352094087982671) with duration 6.66 s +2018/09/16 04:47:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:53577) +2018/09/16 04:47:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:47:42 ruptelaNet.go:261: Data received(client: [::1]:53577, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:47:42 ruptelaNet.go:278: Sent ACK (client: [::1]:53577, IMEI: 352094087982671) +2018/09/16 04:47:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:47:45 ruptelaNet.go:261: Data received(client: [::1]:53577, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 04:47:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:47:45 ruptelaNet.go:278: Sent ACK (client: [::1]:53577, IMEI: 352094087982671) +2018/09/16 04:47:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53577, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 04:47:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:53606) +2018/09/16 04:47:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:47:55 ruptelaNet.go:261: Data received(client: [::1]:53606, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:47:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53606, IMEI: 352094089712860) +2018/09/16 04:47:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:47:57 ruptelaNet.go:261: Data received(client: [::1]:53606, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:47:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:47:57 ruptelaNet.go:278: Sent ACK (client: [::1]:53606, IMEI: 352094089712860) +2018/09/16 04:47:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53606, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:48:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:53637) +2018/09/16 04:48:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:48:11 ruptelaNet.go:261: Data received(client: [::1]:53637, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:48:11 ruptelaNet.go:278: Sent ACK (client: [::1]:53637, IMEI: 352094087982671) +2018/09/16 04:48:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:48:14 ruptelaNet.go:261: Data received(client: [::1]:53637, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:48:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:48:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53637, IMEI: 352094087982671) +2018/09/16 04:48:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53637, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:48:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:53695) +2018/09/16 04:48:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:48:40 ruptelaNet.go:261: Data received(client: [::1]:53695, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:48:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53695, IMEI: 352094087982671) +2018/09/16 04:48:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:48:43 ruptelaNet.go:261: Data received(client: [::1]:53695, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:48:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:48:43 ruptelaNet.go:278: Sent ACK (client: [::1]:53695, IMEI: 352094087982671) +2018/09/16 04:48:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53695, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 04:48:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:53726) +2018/09/16 04:48:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:48:54 ruptelaNet.go:261: Data received(client: [::1]:53726, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 04:48:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53726, IMEI: 352094089712860) +2018/09/16 04:48:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:48:56 ruptelaNet.go:261: Data received(client: [::1]:53726, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 04:48:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:48:56 ruptelaNet.go:278: Sent ACK (client: [::1]:53726, IMEI: 352094089712860) +2018/09/16 04:48:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53726, IMEI: 352094089712860) with duration 3.11 s +2018/09/16 04:49:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:53757) +2018/09/16 04:49:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:49:09 ruptelaNet.go:261: Data received(client: [::1]:53757, IMEI: 352094087982671) with duration 0.71 s +2018/09/16 04:49:09 ruptelaNet.go:278: Sent ACK (client: [::1]:53757, IMEI: 352094087982671) +2018/09/16 04:49:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:49:12 ruptelaNet.go:261: Data received(client: [::1]:53757, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 04:49:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:49:12 ruptelaNet.go:278: Sent ACK (client: [::1]:53757, IMEI: 352094087982671) +2018/09/16 04:49:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53757, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 04:49:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:53814) +2018/09/16 04:49:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:49:38 ruptelaNet.go:261: Data received(client: [::1]:53814, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:49:38 ruptelaNet.go:278: Sent ACK (client: [::1]:53814, IMEI: 352094087982671) +2018/09/16 04:49:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:49:41 ruptelaNet.go:261: Data received(client: [::1]:53814, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:49:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:49:41 ruptelaNet.go:278: Sent ACK (client: [::1]:53814, IMEI: 352094087982671) +2018/09/16 04:49:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53814, IMEI: 352094087982671) with duration 6.96 s +2018/09/16 04:49:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:53843) +2018/09/16 04:49:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:49:53 ruptelaNet.go:261: Data received(client: [::1]:53843, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:49:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53843, IMEI: 352094089712860) +2018/09/16 04:49:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:49:55 ruptelaNet.go:261: Data received(client: [::1]:53843, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 04:49:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:49:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53843, IMEI: 352094089712860) +2018/09/16 04:49:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53843, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:50:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:53871) +2018/09/16 04:50:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:50:08 ruptelaNet.go:261: Data received(client: [::1]:53871, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:50:08 ruptelaNet.go:278: Sent ACK (client: [::1]:53871, IMEI: 352094087982671) +2018/09/16 04:50:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:50:11 ruptelaNet.go:261: Data received(client: [::1]:53871, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:50:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:50:11 ruptelaNet.go:278: Sent ACK (client: [::1]:53871, IMEI: 352094087982671) +2018/09/16 04:50:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53871, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:50:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:53928) +2018/09/16 04:50:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:50:37 ruptelaNet.go:261: Data received(client: [::1]:53928, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 04:50:37 ruptelaNet.go:278: Sent ACK (client: [::1]:53928, IMEI: 352094087982671) +2018/09/16 04:50:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:50:40 ruptelaNet.go:261: Data received(client: [::1]:53928, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 04:50:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:50:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53928, IMEI: 352094087982671) +2018/09/16 04:50:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53928, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 04:50:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:53961) +2018/09/16 04:50:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:50:53 ruptelaNet.go:261: Data received(client: [::1]:53961, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:50:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53961, IMEI: 352094089712860) +2018/09/16 04:50:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:50:55 ruptelaNet.go:261: Data received(client: [::1]:53961, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:50:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:50:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53961, IMEI: 352094089712860) +2018/09/16 04:50:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53961, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:51:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:53987) +2018/09/16 04:51:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:51:06 ruptelaNet.go:261: Data received(client: [::1]:53987, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:51:06 ruptelaNet.go:278: Sent ACK (client: [::1]:53987, IMEI: 352094087982671) +2018/09/16 04:51:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:51:09 ruptelaNet.go:261: Data received(client: [::1]:53987, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:51:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:51:09 ruptelaNet.go:278: Sent ACK (client: [::1]:53987, IMEI: 352094087982671) +2018/09/16 04:51:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53987, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:51:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:54057) +2018/09/16 04:51:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:51:35 ruptelaNet.go:261: Data received(client: [::1]:54057, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:51:35 ruptelaNet.go:278: Sent ACK (client: [::1]:54057, IMEI: 352094087982671) +2018/09/16 04:51:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:51:38 ruptelaNet.go:261: Data received(client: [::1]:54057, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:51:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:51:38 ruptelaNet.go:278: Sent ACK (client: [::1]:54057, IMEI: 352094087982671) +2018/09/16 04:51:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54057, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 04:51:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:54095) +2018/09/16 04:51:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:51:54 ruptelaNet.go:261: Data received(client: [::1]:54095, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:51:54 ruptelaNet.go:278: Sent ACK (client: [::1]:54095, IMEI: 352094089712860) +2018/09/16 04:51:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:51:56 ruptelaNet.go:261: Data received(client: [::1]:54095, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 04:51:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:51:56 ruptelaNet.go:278: Sent ACK (client: [::1]:54095, IMEI: 352094089712860) +2018/09/16 04:51:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54095, IMEI: 352094089712860) with duration 3.24 s +2018/09/16 04:52:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:54112) +2018/09/16 04:52:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:52:04 ruptelaNet.go:261: Data received(client: [::1]:54112, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 04:52:04 ruptelaNet.go:278: Sent ACK (client: [::1]:54112, IMEI: 352094087982671) +2018/09/16 04:52:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:52:07 ruptelaNet.go:261: Data received(client: [::1]:54112, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:52:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:52:07 ruptelaNet.go:278: Sent ACK (client: [::1]:54112, IMEI: 352094087982671) +2018/09/16 04:52:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54112, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:52:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:54170) +2018/09/16 04:52:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:52:33 ruptelaNet.go:261: Data received(client: [::1]:54170, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:52:33 ruptelaNet.go:278: Sent ACK (client: [::1]:54170, IMEI: 352094087982671) +2018/09/16 04:52:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:52:36 ruptelaNet.go:261: Data received(client: [::1]:54170, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:52:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:52:36 ruptelaNet.go:278: Sent ACK (client: [::1]:54170, IMEI: 352094087982671) +2018/09/16 04:52:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54170, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 04:52:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54212) +2018/09/16 04:52:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:52:53 ruptelaNet.go:261: Data received(client: [::1]:54212, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:52:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54212, IMEI: 352094089712860) +2018/09/16 04:52:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:52:55 ruptelaNet.go:261: Data received(client: [::1]:54212, IMEI: 352094089712860) with duration 1.92 s +2018/09/16 04:52:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:52:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54212, IMEI: 352094089712860) +2018/09/16 04:52:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54212, IMEI: 352094089712860) with duration 2.61 s +2018/09/16 04:53:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:54234) +2018/09/16 04:53:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:53:02 ruptelaNet.go:261: Data received(client: [::1]:54234, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 04:53:02 ruptelaNet.go:278: Sent ACK (client: [::1]:54234, IMEI: 352094087982671) +2018/09/16 04:53:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:53:05 ruptelaNet.go:261: Data received(client: [::1]:54234, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:53:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:53:05 ruptelaNet.go:278: Sent ACK (client: [::1]:54234, IMEI: 352094087982671) +2018/09/16 04:53:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54234, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:53:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:54297) +2018/09/16 04:53:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:53:31 ruptelaNet.go:261: Data received(client: [::1]:54297, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:53:31 ruptelaNet.go:278: Sent ACK (client: [::1]:54297, IMEI: 352094087982671) +2018/09/16 04:53:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:53:34 ruptelaNet.go:261: Data received(client: [::1]:54297, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:53:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:53:34 ruptelaNet.go:278: Sent ACK (client: [::1]:54297, IMEI: 352094087982671) +2018/09/16 04:53:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54297, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 04:53:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54346) +2018/09/16 04:53:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:53:53 ruptelaNet.go:261: Data received(client: [::1]:54346, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:53:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54346, IMEI: 352094089712860) +2018/09/16 04:53:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:53:55 ruptelaNet.go:261: Data received(client: [::1]:54346, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:53:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:53:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54346, IMEI: 352094089712860) +2018/09/16 04:53:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54346, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:53:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:54359) +2018/09/16 04:54:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:54:00 ruptelaNet.go:261: Data received(client: [::1]:54359, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:54:00 ruptelaNet.go:278: Sent ACK (client: [::1]:54359, IMEI: 352094087982671) +2018/09/16 04:54:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:54:03 ruptelaNet.go:261: Data received(client: [::1]:54359, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:54:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:54:03 ruptelaNet.go:278: Sent ACK (client: [::1]:54359, IMEI: 352094087982671) +2018/09/16 04:54:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54359, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 04:54:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:54421) +2018/09/16 04:54:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:54:29 ruptelaNet.go:261: Data received(client: [::1]:54421, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:54:29 ruptelaNet.go:278: Sent ACK (client: [::1]:54421, IMEI: 352094087982671) +2018/09/16 04:54:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:54:32 ruptelaNet.go:261: Data received(client: [::1]:54421, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:54:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:54:32 ruptelaNet.go:278: Sent ACK (client: [::1]:54421, IMEI: 352094087982671) +2018/09/16 04:54:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54421, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:54:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54475) +2018/09/16 04:54:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:54:53 ruptelaNet.go:261: Data received(client: [::1]:54475, IMEI: 352094089712860) with duration 0.24 s +2018/09/16 04:54:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54475, IMEI: 352094089712860) +2018/09/16 04:54:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:54:55 ruptelaNet.go:261: Data received(client: [::1]:54475, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:54:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:54:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54475, IMEI: 352094089712860) +2018/09/16 04:54:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54475, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 04:54:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:54487) +2018/09/16 04:54:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:54:58 ruptelaNet.go:261: Data received(client: [::1]:54487, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:54:58 ruptelaNet.go:278: Sent ACK (client: [::1]:54487, IMEI: 352094087982671) +2018/09/16 04:55:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:55:01 ruptelaNet.go:261: Data received(client: [::1]:54487, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:55:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:55:01 ruptelaNet.go:278: Sent ACK (client: [::1]:54487, IMEI: 352094087982671) +2018/09/16 04:55:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54487, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:55:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:54543) +2018/09/16 04:55:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:55:27 ruptelaNet.go:261: Data received(client: [::1]:54543, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 04:55:27 ruptelaNet.go:278: Sent ACK (client: [::1]:54543, IMEI: 352094087982671) +2018/09/16 04:55:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:55:30 ruptelaNet.go:261: Data received(client: [::1]:54543, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:55:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:55:30 ruptelaNet.go:278: Sent ACK (client: [::1]:54543, IMEI: 352094087982671) +2018/09/16 04:55:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54543, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 04:55:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54596) +2018/09/16 04:55:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:55:53 ruptelaNet.go:261: Data received(client: [::1]:54596, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:55:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54596, IMEI: 352094089712860) +2018/09/16 04:55:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:55:55 ruptelaNet.go:261: Data received(client: [::1]:54596, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:55:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:55:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54596, IMEI: 352094089712860) +2018/09/16 04:55:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:54602) +2018/09/16 04:55:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54596, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 04:55:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:55:56 ruptelaNet.go:261: Data received(client: [::1]:54602, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 04:55:56 ruptelaNet.go:278: Sent ACK (client: [::1]:54602, IMEI: 352094087982671) +2018/09/16 04:55:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:55:59 ruptelaNet.go:261: Data received(client: [::1]:54602, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 04:55:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:55:59 ruptelaNet.go:278: Sent ACK (client: [::1]:54602, IMEI: 352094087982671) +2018/09/16 04:56:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54602, IMEI: 352094087982671) with duration 7.19 s +2018/09/16 04:56:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:54661) +2018/09/16 04:56:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:56:26 ruptelaNet.go:261: Data received(client: [::1]:54661, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 04:56:26 ruptelaNet.go:278: Sent ACK (client: [::1]:54661, IMEI: 352094087982671) +2018/09/16 04:56:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:56:29 ruptelaNet.go:261: Data received(client: [::1]:54661, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 04:56:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:56:29 ruptelaNet.go:278: Sent ACK (client: [::1]:54661, IMEI: 352094087982671) +2018/09/16 04:56:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54661, IMEI: 352094087982671) with duration 7.65 s +2018/09/16 04:56:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54718) +2018/09/16 04:56:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:56:53 ruptelaNet.go:261: Data received(client: [::1]:54718, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:56:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54718, IMEI: 352094089712860) +2018/09/16 04:56:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:56:55 ruptelaNet.go:261: Data received(client: [::1]:54718, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 04:56:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:56:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54718, IMEI: 352094089712860) +2018/09/16 04:56:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54718, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 04:56:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:54723) +2018/09/16 04:56:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:56:57 ruptelaNet.go:261: Data received(client: [::1]:54723, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:56:57 ruptelaNet.go:278: Sent ACK (client: [::1]:54723, IMEI: 352094087982671) +2018/09/16 04:57:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:57:00 ruptelaNet.go:261: Data received(client: [::1]:54723, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:57:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:57:00 ruptelaNet.go:278: Sent ACK (client: [::1]:54723, IMEI: 352094087982671) +2018/09/16 04:57:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54723, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 04:57:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:54786) +2018/09/16 04:57:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:57:26 ruptelaNet.go:261: Data received(client: [::1]:54786, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 04:57:26 ruptelaNet.go:278: Sent ACK (client: [::1]:54786, IMEI: 352094087982671) +2018/09/16 04:57:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:57:29 ruptelaNet.go:261: Data received(client: [::1]:54786, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 04:57:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:57:29 ruptelaNet.go:278: Sent ACK (client: [::1]:54786, IMEI: 352094087982671) +2018/09/16 04:57:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54786, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 04:57:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54847) +2018/09/16 04:57:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:57:53 ruptelaNet.go:261: Data received(client: [::1]:54847, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:57:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54847, IMEI: 352094089712860) +2018/09/16 04:57:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:54851) +2018/09/16 04:57:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:57:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:57:55 ruptelaNet.go:261: Data received(client: [::1]:54847, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:57:55 ruptelaNet.go:261: Data received(client: [::1]:54851, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:57:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54851, IMEI: 352094087982671) +2018/09/16 04:57:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:57:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54847, IMEI: 352094089712860) +2018/09/16 04:57:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54847, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 04:57:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:57:58 ruptelaNet.go:261: Data received(client: [::1]:54851, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 04:57:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:57:58 ruptelaNet.go:278: Sent ACK (client: [::1]:54851, IMEI: 352094087982671) +2018/09/16 04:58:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54851, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:58:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:54911) +2018/09/16 04:58:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:58:24 ruptelaNet.go:261: Data received(client: [::1]:54911, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:58:24 ruptelaNet.go:278: Sent ACK (client: [::1]:54911, IMEI: 352094087982671) +2018/09/16 04:58:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:58:27 ruptelaNet.go:261: Data received(client: [::1]:54911, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:58:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:58:27 ruptelaNet.go:278: Sent ACK (client: [::1]:54911, IMEI: 352094087982671) +2018/09/16 04:58:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54911, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:58:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:54972) +2018/09/16 04:58:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:58:53 ruptelaNet.go:261: Data received(client: [::1]:54972, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:58:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54972, IMEI: 352094087982671) +2018/09/16 04:58:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:54976) +2018/09/16 04:58:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:58:54 ruptelaNet.go:261: Data received(client: [::1]:54976, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:58:54 ruptelaNet.go:278: Sent ACK (client: [::1]:54976, IMEI: 352094089712860) +2018/09/16 04:58:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:58:56 ruptelaNet.go:261: Data received(client: [::1]:54976, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 04:58:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:58:56 ruptelaNet.go:278: Sent ACK (client: [::1]:54976, IMEI: 352094089712860) +2018/09/16 04:58:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:58:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54976, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 04:58:56 ruptelaNet.go:261: Data received(client: [::1]:54972, IMEI: 352094087982671) with duration 4.17 s +2018/09/16 04:58:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:58:56 ruptelaNet.go:278: Sent ACK (client: [::1]:54972, IMEI: 352094087982671) +2018/09/16 04:58:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54972, IMEI: 352094087982671) with duration 6.33 s +2018/09/16 04:59:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:55031) +2018/09/16 04:59:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:59:22 ruptelaNet.go:261: Data received(client: [::1]:55031, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:59:22 ruptelaNet.go:278: Sent ACK (client: [::1]:55031, IMEI: 352094087982671) +2018/09/16 04:59:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:59:25 ruptelaNet.go:261: Data received(client: [::1]:55031, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:59:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:59:25 ruptelaNet.go:278: Sent ACK (client: [::1]:55031, IMEI: 352094087982671) +2018/09/16 04:59:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55031, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:59:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:55088) +2018/09/16 04:59:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:59:51 ruptelaNet.go:261: Data received(client: [::1]:55088, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 04:59:51 ruptelaNet.go:278: Sent ACK (client: [::1]:55088, IMEI: 352094087982671) +2018/09/16 04:59:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55094) +2018/09/16 04:59:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:59:54 ruptelaNet.go:261: Data received(client: [::1]:55094, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:59:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55094, IMEI: 352094089712860) +2018/09/16 04:59:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:59:54 ruptelaNet.go:261: Data received(client: [::1]:55088, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 04:59:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:59:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55088, IMEI: 352094087982671) +2018/09/16 04:59:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:59:56 ruptelaNet.go:261: Data received(client: [::1]:55094, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:59:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:59:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55094, IMEI: 352094089712860) +2018/09/16 04:59:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55088, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:59:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55094, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 05:00:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:55147) +2018/09/16 05:00:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:00:20 ruptelaNet.go:261: Data received(client: [::1]:55147, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:00:20 ruptelaNet.go:278: Sent ACK (client: [::1]:55147, IMEI: 352094087982671) +2018/09/16 05:00:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:00:23 ruptelaNet.go:261: Data received(client: [::1]:55147, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:00:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:00:23 ruptelaNet.go:278: Sent ACK (client: [::1]:55147, IMEI: 352094087982671) +2018/09/16 05:00:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55147, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:00:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:55211) +2018/09/16 05:00:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:00:49 ruptelaNet.go:261: Data received(client: [::1]:55211, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:00:49 ruptelaNet.go:278: Sent ACK (client: [::1]:55211, IMEI: 352094087982671) +2018/09/16 05:00:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:00:52 ruptelaNet.go:261: Data received(client: [::1]:55211, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 05:00:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:00:52 ruptelaNet.go:278: Sent ACK (client: [::1]:55211, IMEI: 352094087982671) +2018/09/16 05:00:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55220) +2018/09/16 05:00:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:00:54 ruptelaNet.go:261: Data received(client: [::1]:55220, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:00:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55220, IMEI: 352094089712860) +2018/09/16 05:00:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55211, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 05:00:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:00:56 ruptelaNet.go:261: Data received(client: [::1]:55220, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 05:00:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:00:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55220, IMEI: 352094089712860) +2018/09/16 05:00:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55220, IMEI: 352094089712860) with duration 2.74 s +2018/09/16 05:01:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:55269) +2018/09/16 05:01:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:01:18 ruptelaNet.go:261: Data received(client: [::1]:55269, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 05:01:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55269, IMEI: 352094087982671) +2018/09/16 05:01:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:01:21 ruptelaNet.go:261: Data received(client: [::1]:55269, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:01:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:01:21 ruptelaNet.go:278: Sent ACK (client: [::1]:55269, IMEI: 352094087982671) +2018/09/16 05:01:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55269, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:01:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:55328) +2018/09/16 05:01:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:01:47 ruptelaNet.go:261: Data received(client: [::1]:55328, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 05:01:47 ruptelaNet.go:278: Sent ACK (client: [::1]:55328, IMEI: 352094087982671) +2018/09/16 05:01:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:01:50 ruptelaNet.go:261: Data received(client: [::1]:55328, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 05:01:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:01:50 ruptelaNet.go:278: Sent ACK (client: [::1]:55328, IMEI: 352094087982671) +2018/09/16 05:01:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55328, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:01:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55346) +2018/09/16 05:01:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:01:54 ruptelaNet.go:261: Data received(client: [::1]:55346, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:01:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55346, IMEI: 352094089712860) +2018/09/16 05:01:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:01:56 ruptelaNet.go:261: Data received(client: [::1]:55346, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 05:01:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:01:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55346, IMEI: 352094089712860) +2018/09/16 05:01:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55346, IMEI: 352094089712860) with duration 2.92 s +2018/09/16 05:02:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55389) +2018/09/16 05:02:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:02:16 ruptelaNet.go:261: Data received(client: [::1]:55389, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 05:02:16 ruptelaNet.go:278: Sent ACK (client: [::1]:55389, IMEI: 352094087982671) +2018/09/16 05:02:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:02:19 ruptelaNet.go:261: Data received(client: [::1]:55389, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 05:02:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:02:19 ruptelaNet.go:278: Sent ACK (client: [::1]:55389, IMEI: 352094087982671) +2018/09/16 05:02:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55389, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 05:02:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:55445) +2018/09/16 05:02:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:02:45 ruptelaNet.go:261: Data received(client: [::1]:55445, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:02:45 ruptelaNet.go:278: Sent ACK (client: [::1]:55445, IMEI: 352094087982671) +2018/09/16 05:02:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:02:48 ruptelaNet.go:261: Data received(client: [::1]:55445, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:02:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:02:48 ruptelaNet.go:278: Sent ACK (client: [::1]:55445, IMEI: 352094087982671) +2018/09/16 05:02:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55445, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:02:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55467) +2018/09/16 05:02:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:02:54 ruptelaNet.go:261: Data received(client: [::1]:55467, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:02:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55467, IMEI: 352094089712860) +2018/09/16 05:02:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:02:56 ruptelaNet.go:261: Data received(client: [::1]:55467, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:02:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:02:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55467, IMEI: 352094089712860) +2018/09/16 05:02:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55467, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 05:03:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:55510) +2018/09/16 05:03:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:03:14 ruptelaNet.go:261: Data received(client: [::1]:55510, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:03:14 ruptelaNet.go:278: Sent ACK (client: [::1]:55510, IMEI: 352094087982671) +2018/09/16 05:03:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:03:17 ruptelaNet.go:261: Data received(client: [::1]:55510, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:03:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:03:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55510, IMEI: 352094087982671) +2018/09/16 05:03:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55510, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:03:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:55572) +2018/09/16 05:03:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:03:43 ruptelaNet.go:261: Data received(client: [::1]:55572, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:03:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55572, IMEI: 352094087982671) +2018/09/16 05:03:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:03:46 ruptelaNet.go:261: Data received(client: [::1]:55572, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 05:03:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:03:46 ruptelaNet.go:278: Sent ACK (client: [::1]:55572, IMEI: 352094087982671) +2018/09/16 05:03:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55572, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 05:03:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55599) +2018/09/16 05:03:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:03:54 ruptelaNet.go:261: Data received(client: [::1]:55599, IMEI: 352094089712860) with duration 0.24 s +2018/09/16 05:03:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55599, IMEI: 352094089712860) +2018/09/16 05:03:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:03:56 ruptelaNet.go:261: Data received(client: [::1]:55599, IMEI: 352094089712860) with duration 2.22 s +2018/09/16 05:03:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:03:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55599, IMEI: 352094089712860) +2018/09/16 05:03:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55599, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 05:04:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:55637) +2018/09/16 05:04:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:04:12 ruptelaNet.go:261: Data received(client: [::1]:55637, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:04:12 ruptelaNet.go:278: Sent ACK (client: [::1]:55637, IMEI: 352094087982671) +2018/09/16 05:04:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:04:15 ruptelaNet.go:261: Data received(client: [::1]:55637, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 05:04:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:04:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55637, IMEI: 352094087982671) +2018/09/16 05:04:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55637, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:04:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:55701) +2018/09/16 05:04:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:04:41 ruptelaNet.go:261: Data received(client: [::1]:55701, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 05:04:41 ruptelaNet.go:278: Sent ACK (client: [::1]:55701, IMEI: 352094087982671) +2018/09/16 05:04:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:04:44 ruptelaNet.go:261: Data received(client: [::1]:55701, IMEI: 352094087982671) with duration 3.61 s +2018/09/16 05:04:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:04:44 ruptelaNet.go:278: Sent ACK (client: [::1]:55701, IMEI: 352094087982671) +2018/09/16 05:04:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55701, IMEI: 352094087982671) with duration 5.75 s +2018/09/16 05:04:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55732) +2018/09/16 05:04:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:04:54 ruptelaNet.go:261: Data received(client: [::1]:55732, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:04:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55732, IMEI: 352094089712860) +2018/09/16 05:04:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:04:56 ruptelaNet.go:261: Data received(client: [::1]:55732, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 05:04:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:04:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55732, IMEI: 352094089712860) +2018/09/16 05:04:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55732, IMEI: 352094089712860) with duration 3.19 s +2018/09/16 05:05:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:55759) +2018/09/16 05:05:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:05:10 ruptelaNet.go:261: Data received(client: [::1]:55759, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 05:05:10 ruptelaNet.go:278: Sent ACK (client: [::1]:55759, IMEI: 352094087982671) +2018/09/16 05:05:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:05:13 ruptelaNet.go:261: Data received(client: [::1]:55759, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 05:05:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:05:13 ruptelaNet.go:278: Sent ACK (client: [::1]:55759, IMEI: 352094087982671) +2018/09/16 05:05:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55759, IMEI: 352094087982671) with duration 6.09 s +2018/09/16 05:05:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:55816) +2018/09/16 05:05:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:05:39 ruptelaNet.go:261: Data received(client: [::1]:55816, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:05:39 ruptelaNet.go:278: Sent ACK (client: [::1]:55816, IMEI: 352094087982671) +2018/09/16 05:05:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:05:42 ruptelaNet.go:261: Data received(client: [::1]:55816, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:05:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:05:42 ruptelaNet.go:278: Sent ACK (client: [::1]:55816, IMEI: 352094087982671) +2018/09/16 05:05:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55816, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 05:05:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55849) +2018/09/16 05:05:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:05:54 ruptelaNet.go:261: Data received(client: [::1]:55849, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:05:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55849, IMEI: 352094089712860) +2018/09/16 05:05:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:05:56 ruptelaNet.go:261: Data received(client: [::1]:55849, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 05:05:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:05:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55849, IMEI: 352094089712860) +2018/09/16 05:05:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55849, IMEI: 352094089712860) with duration 3.14 s +2018/09/16 05:06:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:55872) +2018/09/16 05:06:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:06:09 ruptelaNet.go:261: Data received(client: [::1]:55872, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 05:06:09 ruptelaNet.go:278: Sent ACK (client: [::1]:55872, IMEI: 352094087982671) +2018/09/16 05:06:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:06:11 ruptelaNet.go:261: Data received(client: [::1]:55872, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 05:06:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:06:11 ruptelaNet.go:278: Sent ACK (client: [::1]:55872, IMEI: 352094087982671) +2018/09/16 05:06:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55872, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:06:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:55933) +2018/09/16 05:06:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:06:37 ruptelaNet.go:261: Data received(client: [::1]:55933, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 05:06:37 ruptelaNet.go:278: Sent ACK (client: [::1]:55933, IMEI: 352094087982671) +2018/09/16 05:06:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:06:40 ruptelaNet.go:261: Data received(client: [::1]:55933, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 05:06:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:06:40 ruptelaNet.go:278: Sent ACK (client: [::1]:55933, IMEI: 352094087982671) +2018/09/16 05:06:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55933, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 05:06:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55971) +2018/09/16 05:06:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:06:54 ruptelaNet.go:261: Data received(client: [::1]:55971, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:06:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55971, IMEI: 352094089712860) +2018/09/16 05:06:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:06:56 ruptelaNet.go:261: Data received(client: [::1]:55971, IMEI: 352094089712860) with duration 2.1 s +2018/09/16 05:06:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:06:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55971, IMEI: 352094089712860) +2018/09/16 05:06:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55971, IMEI: 352094089712860) with duration 3.06 s +2018/09/16 05:07:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:55993) +2018/09/16 05:07:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:07:06 ruptelaNet.go:261: Data received(client: [::1]:55993, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 05:07:06 ruptelaNet.go:278: Sent ACK (client: [::1]:55993, IMEI: 352094087982671) +2018/09/16 05:07:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:07:09 ruptelaNet.go:261: Data received(client: [::1]:55993, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 05:07:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:07:09 ruptelaNet.go:278: Sent ACK (client: [::1]:55993, IMEI: 352094087982671) +2018/09/16 05:07:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55993, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 05:07:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:56049) +2018/09/16 05:07:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:07:35 ruptelaNet.go:261: Data received(client: [::1]:56049, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:07:35 ruptelaNet.go:278: Sent ACK (client: [::1]:56049, IMEI: 352094087982671) +2018/09/16 05:07:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:07:38 ruptelaNet.go:261: Data received(client: [::1]:56049, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:07:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:07:38 ruptelaNet.go:278: Sent ACK (client: [::1]:56049, IMEI: 352094087982671) +2018/09/16 05:07:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56049, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:07:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56092) +2018/09/16 05:07:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:07:55 ruptelaNet.go:261: Data received(client: [::1]:56092, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:07:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56092, IMEI: 352094089712860) +2018/09/16 05:07:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:07:57 ruptelaNet.go:261: Data received(client: [::1]:56092, IMEI: 352094089712860) with duration 1.98 s +2018/09/16 05:07:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:07:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56092, IMEI: 352094089712860) +2018/09/16 05:07:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56092, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:08:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:56111) +2018/09/16 05:08:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:08:05 ruptelaNet.go:261: Data received(client: [::1]:56111, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:08:05 ruptelaNet.go:278: Sent ACK (client: [::1]:56111, IMEI: 352094087982671) +2018/09/16 05:08:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:08:07 ruptelaNet.go:261: Data received(client: [::1]:56111, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 05:08:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:08:07 ruptelaNet.go:278: Sent ACK (client: [::1]:56111, IMEI: 352094087982671) +2018/09/16 05:08:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56111, IMEI: 352094087982671) with duration 5.99 s +2018/09/16 05:08:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:56165) +2018/09/16 05:08:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:08:33 ruptelaNet.go:261: Data received(client: [::1]:56165, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:08:33 ruptelaNet.go:278: Sent ACK (client: [::1]:56165, IMEI: 352094087982671) +2018/09/16 05:08:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:08:36 ruptelaNet.go:261: Data received(client: [::1]:56165, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 05:08:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:08:36 ruptelaNet.go:278: Sent ACK (client: [::1]:56165, IMEI: 352094087982671) +2018/09/16 05:08:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56165, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 05:08:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56209) +2018/09/16 05:08:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:08:55 ruptelaNet.go:261: Data received(client: [::1]:56209, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:08:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56209, IMEI: 352094089712860) +2018/09/16 05:08:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:08:56 ruptelaNet.go:261: Data received(client: [::1]:56209, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 05:08:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:08:56 ruptelaNet.go:278: Sent ACK (client: [::1]:56209, IMEI: 352094089712860) +2018/09/16 05:08:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56209, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 05:09:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:56221) +2018/09/16 05:09:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:09:02 ruptelaNet.go:261: Data received(client: [::1]:56221, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 05:09:02 ruptelaNet.go:278: Sent ACK (client: [::1]:56221, IMEI: 352094087982671) +2018/09/16 05:09:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:09:05 ruptelaNet.go:261: Data received(client: [::1]:56221, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 05:09:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:09:05 ruptelaNet.go:278: Sent ACK (client: [::1]:56221, IMEI: 352094087982671) +2018/09/16 05:09:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56221, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 05:09:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:56274) +2018/09/16 05:09:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:09:31 ruptelaNet.go:261: Data received(client: [::1]:56274, IMEI: 352094087982671) with duration 1.18 s +2018/09/16 05:09:31 ruptelaNet.go:278: Sent ACK (client: [::1]:56274, IMEI: 352094087982671) +2018/09/16 05:09:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:09:34 ruptelaNet.go:261: Data received(client: [::1]:56274, IMEI: 352094087982671) with duration 3.64 s +2018/09/16 05:09:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:09:34 ruptelaNet.go:278: Sent ACK (client: [::1]:56274, IMEI: 352094087982671) +2018/09/16 05:09:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56274, IMEI: 352094087982671) with duration 5.69 s +2018/09/16 05:09:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56328) +2018/09/16 05:09:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:09:55 ruptelaNet.go:261: Data received(client: [::1]:56328, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:09:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56328, IMEI: 352094089712860) +2018/09/16 05:09:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:09:57 ruptelaNet.go:261: Data received(client: [::1]:56328, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 05:09:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:09:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56328, IMEI: 352094089712860) +2018/09/16 05:09:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56328, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 05:09:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:56334) +2018/09/16 05:10:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:10:00 ruptelaNet.go:261: Data received(client: [::1]:56334, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:10:00 ruptelaNet.go:278: Sent ACK (client: [::1]:56334, IMEI: 352094087982671) +2018/09/16 05:10:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:10:03 ruptelaNet.go:261: Data received(client: [::1]:56334, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:10:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:10:03 ruptelaNet.go:278: Sent ACK (client: [::1]:56334, IMEI: 352094087982671) +2018/09/16 05:10:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56334, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:10:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:56391) +2018/09/16 05:10:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:10:29 ruptelaNet.go:261: Data received(client: [::1]:56391, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 05:10:29 ruptelaNet.go:278: Sent ACK (client: [::1]:56391, IMEI: 352094087982671) +2018/09/16 05:10:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:10:32 ruptelaNet.go:261: Data received(client: [::1]:56391, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:10:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:10:32 ruptelaNet.go:278: Sent ACK (client: [::1]:56391, IMEI: 352094087982671) +2018/09/16 05:10:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56391, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:10:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56447) +2018/09/16 05:10:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:10:55 ruptelaNet.go:261: Data received(client: [::1]:56447, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:10:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56447, IMEI: 352094089712860) +2018/09/16 05:10:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:10:57 ruptelaNet.go:261: Data received(client: [::1]:56447, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 05:10:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:10:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56447, IMEI: 352094089712860) +2018/09/16 05:10:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:56452) +2018/09/16 05:10:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56447, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:10:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:10:58 ruptelaNet.go:261: Data received(client: [::1]:56452, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 05:10:58 ruptelaNet.go:278: Sent ACK (client: [::1]:56452, IMEI: 352094087982671) +2018/09/16 05:11:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:11:01 ruptelaNet.go:261: Data received(client: [::1]:56452, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 05:11:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:11:01 ruptelaNet.go:278: Sent ACK (client: [::1]:56452, IMEI: 352094087982671) +2018/09/16 05:11:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56452, IMEI: 352094087982671) with duration 6 s +2018/09/16 05:11:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:56511) +2018/09/16 05:11:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:11:27 ruptelaNet.go:261: Data received(client: [::1]:56511, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 05:11:27 ruptelaNet.go:278: Sent ACK (client: [::1]:56511, IMEI: 352094087982671) +2018/09/16 05:11:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:11:30 ruptelaNet.go:261: Data received(client: [::1]:56511, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 05:11:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:11:30 ruptelaNet.go:278: Sent ACK (client: [::1]:56511, IMEI: 352094087982671) +2018/09/16 05:11:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56511, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 05:11:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56571) +2018/09/16 05:11:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:11:55 ruptelaNet.go:261: Data received(client: [::1]:56571, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:11:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56571, IMEI: 352094089712860) +2018/09/16 05:11:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56572) +2018/09/16 05:11:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:11:56 ruptelaNet.go:261: Data received(client: [::1]:56572, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:11:56 ruptelaNet.go:278: Sent ACK (client: [::1]:56572, IMEI: 352094087982671) +2018/09/16 05:11:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:11:57 ruptelaNet.go:261: Data received(client: [::1]:56571, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 05:11:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:11:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56571, IMEI: 352094089712860) +2018/09/16 05:11:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56571, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 05:11:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:11:59 ruptelaNet.go:261: Data received(client: [::1]:56572, IMEI: 352094087982671) with duration 4.06 s +2018/09/16 05:11:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:11:59 ruptelaNet.go:278: Sent ACK (client: [::1]:56572, IMEI: 352094087982671) +2018/09/16 05:12:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56572, IMEI: 352094087982671) with duration 8.36 s +2018/09/16 05:12:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:56637) +2018/09/16 05:12:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:12:25 ruptelaNet.go:261: Data received(client: [::1]:56637, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:12:25 ruptelaNet.go:278: Sent ACK (client: [::1]:56637, IMEI: 352094087982671) +2018/09/16 05:12:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:12:28 ruptelaNet.go:261: Data received(client: [::1]:56637, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:12:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:12:28 ruptelaNet.go:278: Sent ACK (client: [::1]:56637, IMEI: 352094087982671) +2018/09/16 05:12:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56637, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:12:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:56691) +2018/09/16 05:12:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:12:54 ruptelaNet.go:261: Data received(client: [::1]:56691, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:12:54 ruptelaNet.go:278: Sent ACK (client: [::1]:56691, IMEI: 352094087982671) +2018/09/16 05:12:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56697) +2018/09/16 05:12:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:12:55 ruptelaNet.go:261: Data received(client: [::1]:56697, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:12:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56697, IMEI: 352094089712860) +2018/09/16 05:12:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:12:57 ruptelaNet.go:261: Data received(client: [::1]:56691, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:12:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:12:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56691, IMEI: 352094087982671) +2018/09/16 05:12:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:12:57 ruptelaNet.go:261: Data received(client: [::1]:56697, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 05:12:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:12:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56697, IMEI: 352094089712860) +2018/09/16 05:12:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56697, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 05:12:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56691, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:13:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:56758) +2018/09/16 05:13:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:13:23 ruptelaNet.go:261: Data received(client: [::1]:56758, IMEI: 352094087982671) with duration 0 s +2018/09/16 05:13:23 ruptelaNet.go:278: Sent ACK (client: [::1]:56758, IMEI: 352094087982671) +2018/09/16 05:13:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:13:26 ruptelaNet.go:261: Data received(client: [::1]:56758, IMEI: 352094087982671) with duration 2.9 s +2018/09/16 05:13:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:13:26 ruptelaNet.go:278: Sent ACK (client: [::1]:56758, IMEI: 352094087982671) +2018/09/16 05:13:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56758, IMEI: 352094087982671) with duration 5.22 s +2018/09/16 05:13:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:56810) +2018/09/16 05:13:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:13:52 ruptelaNet.go:261: Data received(client: [::1]:56810, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:13:52 ruptelaNet.go:278: Sent ACK (client: [::1]:56810, IMEI: 352094087982671) +2018/09/16 05:13:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56821) +2018/09/16 05:13:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:13:55 ruptelaNet.go:261: Data received(client: [::1]:56821, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:13:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56821, IMEI: 352094089712860) +2018/09/16 05:13:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:13:56 ruptelaNet.go:261: Data received(client: [::1]:56810, IMEI: 352094087982671) with duration 4.28 s +2018/09/16 05:13:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:13:56 ruptelaNet.go:278: Sent ACK (client: [::1]:56810, IMEI: 352094087982671) +2018/09/16 05:13:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:13:57 ruptelaNet.go:261: Data received(client: [::1]:56821, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 05:13:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:13:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56821, IMEI: 352094089712860) +2018/09/16 05:13:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56810, IMEI: 352094087982671) with duration 6.74 s +2018/09/16 05:13:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56821, IMEI: 352094089712860) with duration 3.09 s +2018/09/16 05:14:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:56881) +2018/09/16 05:14:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:14:21 ruptelaNet.go:261: Data received(client: [::1]:56881, IMEI: 352094087982671) with duration 1 s +2018/09/16 05:14:21 ruptelaNet.go:278: Sent ACK (client: [::1]:56881, IMEI: 352094087982671) +2018/09/16 05:14:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:14:24 ruptelaNet.go:261: Data received(client: [::1]:56881, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:14:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:14:24 ruptelaNet.go:278: Sent ACK (client: [::1]:56881, IMEI: 352094087982671) +2018/09/16 05:14:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56881, IMEI: 352094087982671) with duration 6.54 s +2018/09/16 05:14:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:56940) +2018/09/16 05:14:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:14:50 ruptelaNet.go:261: Data received(client: [::1]:56940, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:14:50 ruptelaNet.go:278: Sent ACK (client: [::1]:56940, IMEI: 352094087982671) +2018/09/16 05:14:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:14:53 ruptelaNet.go:261: Data received(client: [::1]:56940, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 05:14:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:14:53 ruptelaNet.go:278: Sent ACK (client: [::1]:56940, IMEI: 352094087982671) +2018/09/16 05:14:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56951) +2018/09/16 05:14:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:14:55 ruptelaNet.go:261: Data received(client: [::1]:56951, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:14:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56951, IMEI: 352094089712860) +2018/09/16 05:14:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56940, IMEI: 352094087982671) with duration 5.99 s +2018/09/16 05:14:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:14:57 ruptelaNet.go:261: Data received(client: [::1]:56951, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 05:14:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:14:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56951, IMEI: 352094089712860) +2018/09/16 05:14:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56951, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:15:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:56994) +2018/09/16 05:15:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:15:19 ruptelaNet.go:261: Data received(client: [::1]:56994, IMEI: 352094087982671) with duration 1 s +2018/09/16 05:15:19 ruptelaNet.go:278: Sent ACK (client: [::1]:56994, IMEI: 352094087982671) +2018/09/16 05:15:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:15:22 ruptelaNet.go:261: Data received(client: [::1]:56994, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 05:15:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:15:22 ruptelaNet.go:278: Sent ACK (client: [::1]:56994, IMEI: 352094087982671) +2018/09/16 05:15:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56994, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:15:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:57056) +2018/09/16 05:15:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:15:48 ruptelaNet.go:261: Data received(client: [::1]:57056, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:15:48 ruptelaNet.go:278: Sent ACK (client: [::1]:57056, IMEI: 352094087982671) +2018/09/16 05:15:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:15:51 ruptelaNet.go:261: Data received(client: [::1]:57056, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:15:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:15:51 ruptelaNet.go:278: Sent ACK (client: [::1]:57056, IMEI: 352094087982671) +2018/09/16 05:15:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57056, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:15:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:57072) +2018/09/16 05:15:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:15:55 ruptelaNet.go:261: Data received(client: [::1]:57072, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:15:55 ruptelaNet.go:278: Sent ACK (client: [::1]:57072, IMEI: 352094089712860) +2018/09/16 05:15:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:15:57 ruptelaNet.go:261: Data received(client: [::1]:57072, IMEI: 352094089712860) with duration 2.06 s +2018/09/16 05:15:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:15:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57072, IMEI: 352094089712860) +2018/09/16 05:15:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57072, IMEI: 352094089712860) with duration 2.88 s +2018/09/16 05:16:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:57108) +2018/09/16 05:16:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:16:17 ruptelaNet.go:261: Data received(client: [::1]:57108, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:16:17 ruptelaNet.go:278: Sent ACK (client: [::1]:57108, IMEI: 352094087982671) +2018/09/16 05:16:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:16:20 ruptelaNet.go:261: Data received(client: [::1]:57108, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:16:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:16:20 ruptelaNet.go:278: Sent ACK (client: [::1]:57108, IMEI: 352094087982671) +2018/09/16 05:16:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57108, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 05:16:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:57163) +2018/09/16 05:16:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:16:46 ruptelaNet.go:261: Data received(client: [::1]:57163, IMEI: 352094087982671) with duration 0.77 s +2018/09/16 05:16:46 ruptelaNet.go:278: Sent ACK (client: [::1]:57163, IMEI: 352094087982671) +2018/09/16 05:16:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:16:49 ruptelaNet.go:261: Data received(client: [::1]:57163, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 05:16:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:57163, IMEI: 352094087982671) +2018/09/16 05:16:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57163, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 05:16:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:57187) +2018/09/16 05:16:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:16:55 ruptelaNet.go:261: Data received(client: [::1]:57187, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:16:55 ruptelaNet.go:278: Sent ACK (client: [::1]:57187, IMEI: 352094089712860) +2018/09/16 05:16:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:16:57 ruptelaNet.go:261: Data received(client: [::1]:57187, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 05:16:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:16:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57187, IMEI: 352094089712860) +2018/09/16 05:16:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57187, IMEI: 352094089712860) with duration 2.57 s +2018/09/16 05:17:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:57225) +2018/09/16 05:17:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:17:15 ruptelaNet.go:261: Data received(client: [::1]:57225, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 05:17:15 ruptelaNet.go:278: Sent ACK (client: [::1]:57225, IMEI: 352094087982671) +2018/09/16 05:17:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:17:18 ruptelaNet.go:261: Data received(client: [::1]:57225, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:17:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:17:18 ruptelaNet.go:278: Sent ACK (client: [::1]:57225, IMEI: 352094087982671) +2018/09/16 05:17:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57225, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 05:17:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57279) +2018/09/16 05:17:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:17:44 ruptelaNet.go:261: Data received(client: [::1]:57279, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:17:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57279, IMEI: 352094087982671) +2018/09/16 05:17:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:17:47 ruptelaNet.go:261: Data received(client: [::1]:57279, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:17:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:17:47 ruptelaNet.go:278: Sent ACK (client: [::1]:57279, IMEI: 352094087982671) +2018/09/16 05:17:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57279, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:17:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57306) +2018/09/16 05:17:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:17:56 ruptelaNet.go:261: Data received(client: [::1]:57306, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:17:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57306, IMEI: 352094089712860) +2018/09/16 05:17:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:17:57 ruptelaNet.go:261: Data received(client: [::1]:57306, IMEI: 352094089712860) with duration 1.87 s +2018/09/16 05:17:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:17:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57306, IMEI: 352094089712860) +2018/09/16 05:17:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57306, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 05:18:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:57341) +2018/09/16 05:18:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:18:13 ruptelaNet.go:261: Data received(client: [::1]:57341, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:18:13 ruptelaNet.go:278: Sent ACK (client: [::1]:57341, IMEI: 352094087982671) +2018/09/16 05:18:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:18:16 ruptelaNet.go:261: Data received(client: [::1]:57341, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:18:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:57341, IMEI: 352094087982671) +2018/09/16 05:18:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57341, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 05:18:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:57399) +2018/09/16 05:18:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:18:42 ruptelaNet.go:261: Data received(client: [::1]:57399, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:18:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57399, IMEI: 352094087982671) +2018/09/16 05:18:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:18:45 ruptelaNet.go:261: Data received(client: [::1]:57399, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:18:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:18:45 ruptelaNet.go:278: Sent ACK (client: [::1]:57399, IMEI: 352094087982671) +2018/09/16 05:18:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57399, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 05:18:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57431) +2018/09/16 05:18:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:18:56 ruptelaNet.go:261: Data received(client: [::1]:57431, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:18:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57431, IMEI: 352094089712860) +2018/09/16 05:18:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:18:58 ruptelaNet.go:261: Data received(client: [::1]:57431, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 05:18:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:18:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57431, IMEI: 352094089712860) +2018/09/16 05:18:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57431, IMEI: 352094089712860) with duration 2.68 s +2018/09/16 05:19:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:57464) +2018/09/16 05:19:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:19:11 ruptelaNet.go:261: Data received(client: [::1]:57464, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:19:11 ruptelaNet.go:278: Sent ACK (client: [::1]:57464, IMEI: 352094087982671) +2018/09/16 05:19:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:19:14 ruptelaNet.go:261: Data received(client: [::1]:57464, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 05:19:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:19:14 ruptelaNet.go:278: Sent ACK (client: [::1]:57464, IMEI: 352094087982671) +2018/09/16 05:19:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57464, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 05:19:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:57485) +2018/09/16 05:19:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57485, IMEI: 0) with duration 15.56 s +2018/09/16 05:19:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:57516) +2018/09/16 05:19:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:57517) +2018/09/16 05:19:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:19:40 ruptelaNet.go:261: Data received(client: [::1]:57517, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:19:40 ruptelaNet.go:278: Sent ACK (client: [::1]:57517, IMEI: 352094087982671) +2018/09/16 05:19:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:19:44 ruptelaNet.go:261: Data received(client: [::1]:57517, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 05:19:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:19:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57517, IMEI: 352094087982671) +2018/09/16 05:19:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57517, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 05:19:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57516, IMEI: 0) with duration 15.47 s +2018/09/16 05:19:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57555) +2018/09/16 05:19:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:19:56 ruptelaNet.go:261: Data received(client: [::1]:57555, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:19:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57555, IMEI: 352094089712860) +2018/09/16 05:19:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:19:58 ruptelaNet.go:261: Data received(client: [::1]:57555, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 05:19:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:19:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57555, IMEI: 352094089712860) +2018/09/16 05:19:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57555, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:20:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:57577) +2018/09/16 05:20:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:20:09 ruptelaNet.go:261: Data received(client: [::1]:57577, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:20:09 ruptelaNet.go:278: Sent ACK (client: [::1]:57577, IMEI: 352094087982671) +2018/09/16 05:20:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:20:12 ruptelaNet.go:261: Data received(client: [::1]:57577, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:20:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:20:12 ruptelaNet.go:278: Sent ACK (client: [::1]:57577, IMEI: 352094087982671) +2018/09/16 05:20:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57577, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:20:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:57641) +2018/09/16 05:20:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:20:38 ruptelaNet.go:261: Data received(client: [::1]:57641, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 05:20:38 ruptelaNet.go:278: Sent ACK (client: [::1]:57641, IMEI: 352094087982671) +2018/09/16 05:20:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:20:41 ruptelaNet.go:261: Data received(client: [::1]:57641, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:20:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:20:41 ruptelaNet.go:278: Sent ACK (client: [::1]:57641, IMEI: 352094087982671) +2018/09/16 05:20:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57641, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:20:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57675) +2018/09/16 05:20:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:20:56 ruptelaNet.go:261: Data received(client: [::1]:57675, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:20:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57675, IMEI: 352094089712860) +2018/09/16 05:20:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:20:58 ruptelaNet.go:261: Data received(client: [::1]:57675, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:20:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:20:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57675, IMEI: 352094089712860) +2018/09/16 05:20:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57675, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:21:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:57698) +2018/09/16 05:21:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:21:07 ruptelaNet.go:261: Data received(client: [::1]:57698, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 05:21:07 ruptelaNet.go:278: Sent ACK (client: [::1]:57698, IMEI: 352094087982671) +2018/09/16 05:21:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:21:10 ruptelaNet.go:261: Data received(client: [::1]:57698, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 05:21:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:21:10 ruptelaNet.go:278: Sent ACK (client: [::1]:57698, IMEI: 352094087982671) +2018/09/16 05:21:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57698, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 05:21:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:57753) +2018/09/16 05:21:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:21:36 ruptelaNet.go:261: Data received(client: [::1]:57753, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:21:36 ruptelaNet.go:278: Sent ACK (client: [::1]:57753, IMEI: 352094087982671) +2018/09/16 05:21:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:21:39 ruptelaNet.go:261: Data received(client: [::1]:57753, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:21:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:21:39 ruptelaNet.go:278: Sent ACK (client: [::1]:57753, IMEI: 352094087982671) +2018/09/16 05:21:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57753, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 05:21:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57798) +2018/09/16 05:21:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:21:56 ruptelaNet.go:261: Data received(client: [::1]:57798, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:21:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57798, IMEI: 352094089712860) +2018/09/16 05:21:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:21:58 ruptelaNet.go:261: Data received(client: [::1]:57798, IMEI: 352094089712860) with duration 2.06 s +2018/09/16 05:21:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:21:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57798, IMEI: 352094089712860) +2018/09/16 05:21:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57798, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:22:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:57813) +2018/09/16 05:22:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:22:05 ruptelaNet.go:261: Data received(client: [::1]:57813, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:22:05 ruptelaNet.go:278: Sent ACK (client: [::1]:57813, IMEI: 352094087982671) +2018/09/16 05:22:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:22:09 ruptelaNet.go:261: Data received(client: [::1]:57813, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 05:22:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:22:09 ruptelaNet.go:278: Sent ACK (client: [::1]:57813, IMEI: 352094087982671) +2018/09/16 05:22:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57813, IMEI: 352094087982671) with duration 15.97 s +2018/09/16 05:22:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57895) +2018/09/16 05:22:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:22:44 ruptelaNet.go:261: Data received(client: [::1]:57895, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:22:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57895, IMEI: 352094087982671) +2018/09/16 05:22:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:22:47 ruptelaNet.go:261: Data received(client: [::1]:57895, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 05:22:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:22:47 ruptelaNet.go:278: Sent ACK (client: [::1]:57895, IMEI: 352094087982671) +2018/09/16 05:22:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57895, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 05:22:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57923) +2018/09/16 05:22:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:22:56 ruptelaNet.go:261: Data received(client: [::1]:57923, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:22:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57923, IMEI: 352094089712860) +2018/09/16 05:22:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:22:58 ruptelaNet.go:261: Data received(client: [::1]:57923, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:22:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:22:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57923, IMEI: 352094089712860) +2018/09/16 05:22:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57923, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:23:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:57950) +2018/09/16 05:23:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:23:13 ruptelaNet.go:261: Data received(client: [::1]:57950, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 05:23:13 ruptelaNet.go:278: Sent ACK (client: [::1]:57950, IMEI: 352094087982671) +2018/09/16 05:23:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:23:16 ruptelaNet.go:261: Data received(client: [::1]:57950, IMEI: 352094087982671) with duration 4.04 s +2018/09/16 05:23:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:23:16 ruptelaNet.go:278: Sent ACK (client: [::1]:57950, IMEI: 352094087982671) +2018/09/16 05:23:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57950, IMEI: 352094087982671) with duration 6.18 s +2018/09/16 05:23:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:58009) +2018/09/16 05:23:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:23:42 ruptelaNet.go:261: Data received(client: [::1]:58009, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:23:42 ruptelaNet.go:278: Sent ACK (client: [::1]:58009, IMEI: 352094087982671) +2018/09/16 05:23:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:23:45 ruptelaNet.go:261: Data received(client: [::1]:58009, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:23:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:23:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58009, IMEI: 352094087982671) +2018/09/16 05:23:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58009, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:23:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:58038) +2018/09/16 05:23:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:23:56 ruptelaNet.go:261: Data received(client: [::1]:58038, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:23:56 ruptelaNet.go:278: Sent ACK (client: [::1]:58038, IMEI: 352094089712860) +2018/09/16 05:23:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:23:58 ruptelaNet.go:261: Data received(client: [::1]:58038, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 05:23:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:23:58 ruptelaNet.go:278: Sent ACK (client: [::1]:58038, IMEI: 352094089712860) +2018/09/16 05:23:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58038, IMEI: 352094089712860) with duration 2.69 s +2018/09/16 05:24:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:58070) +2018/09/16 05:24:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:24:11 ruptelaNet.go:261: Data received(client: [::1]:58070, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:24:11 ruptelaNet.go:278: Sent ACK (client: [::1]:58070, IMEI: 352094087982671) +2018/09/16 05:24:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:24:14 ruptelaNet.go:261: Data received(client: [::1]:58070, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:24:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:24:14 ruptelaNet.go:278: Sent ACK (client: [::1]:58070, IMEI: 352094087982671) +2018/09/16 05:24:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58070, IMEI: 352094087982671) with duration 6 s +2018/09/16 05:24:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:58125) +2018/09/16 05:24:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:24:40 ruptelaNet.go:261: Data received(client: [::1]:58125, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 05:24:40 ruptelaNet.go:278: Sent ACK (client: [::1]:58125, IMEI: 352094087982671) +2018/09/16 05:24:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:24:43 ruptelaNet.go:261: Data received(client: [::1]:58125, IMEI: 352094087982671) with duration 4.04 s +2018/09/16 05:24:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:24:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58125, IMEI: 352094087982671) +2018/09/16 05:24:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58125, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:24:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:58153) +2018/09/16 05:24:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:24:56 ruptelaNet.go:261: Data received(client: [::1]:58153, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:24:56 ruptelaNet.go:278: Sent ACK (client: [::1]:58153, IMEI: 352094089712860) +2018/09/16 05:24:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:24:58 ruptelaNet.go:261: Data received(client: [::1]:58153, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 05:24:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:24:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58153, IMEI: 352094089712860) +2018/09/16 05:24:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58153, IMEI: 352094089712860) with duration 2.99 s +2018/09/16 05:25:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:58185) +2018/09/16 05:25:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:25:09 ruptelaNet.go:261: Data received(client: [::1]:58185, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:25:09 ruptelaNet.go:278: Sent ACK (client: [::1]:58185, IMEI: 352094087982671) +2018/09/16 05:25:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:25:12 ruptelaNet.go:261: Data received(client: [::1]:58185, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:25:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:25:12 ruptelaNet.go:278: Sent ACK (client: [::1]:58185, IMEI: 352094087982671) +2018/09/16 05:25:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58185, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 05:25:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:58244) +2018/09/16 05:25:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:25:38 ruptelaNet.go:261: Data received(client: [::1]:58244, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:25:38 ruptelaNet.go:278: Sent ACK (client: [::1]:58244, IMEI: 352094087982671) +2018/09/16 05:25:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:25:41 ruptelaNet.go:261: Data received(client: [::1]:58244, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:25:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:25:41 ruptelaNet.go:278: Sent ACK (client: [::1]:58244, IMEI: 352094087982671) +2018/09/16 05:25:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58244, IMEI: 352094087982671) with duration 5.99 s +2018/09/16 05:25:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58283) +2018/09/16 05:25:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:25:57 ruptelaNet.go:261: Data received(client: [::1]:58283, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:25:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58283, IMEI: 352094089712860) +2018/09/16 05:25:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:25:59 ruptelaNet.go:261: Data received(client: [::1]:58283, IMEI: 352094089712860) with duration 2.49 s +2018/09/16 05:25:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:25:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58283, IMEI: 352094089712860) +2018/09/16 05:26:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58283, IMEI: 352094089712860) with duration 3.21 s +2018/09/16 05:26:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:58305) +2018/09/16 05:26:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:26:07 ruptelaNet.go:261: Data received(client: [::1]:58305, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:26:07 ruptelaNet.go:278: Sent ACK (client: [::1]:58305, IMEI: 352094087982671) +2018/09/16 05:26:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:26:10 ruptelaNet.go:261: Data received(client: [::1]:58305, IMEI: 352094087982671) with duration 3.74 s +2018/09/16 05:26:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:26:10 ruptelaNet.go:278: Sent ACK (client: [::1]:58305, IMEI: 352094087982671) +2018/09/16 05:26:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58305, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 05:26:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:58358) +2018/09/16 05:26:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:26:37 ruptelaNet.go:261: Data received(client: [::1]:58358, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 05:26:37 ruptelaNet.go:278: Sent ACK (client: [::1]:58358, IMEI: 352094087982671) +2018/09/16 05:26:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:26:40 ruptelaNet.go:261: Data received(client: [::1]:58358, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 05:26:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:26:40 ruptelaNet.go:278: Sent ACK (client: [::1]:58358, IMEI: 352094087982671) +2018/09/16 05:26:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58358, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 05:26:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58397) +2018/09/16 05:26:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:26:57 ruptelaNet.go:261: Data received(client: [::1]:58397, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:26:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58397, IMEI: 352094089712860) +2018/09/16 05:26:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:26:59 ruptelaNet.go:261: Data received(client: [::1]:58397, IMEI: 352094089712860) with duration 2.3 s +2018/09/16 05:26:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:26:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58397, IMEI: 352094089712860) +2018/09/16 05:27:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58397, IMEI: 352094089712860) with duration 3.12 s +2018/09/16 05:27:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:58414) +2018/09/16 05:27:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:27:05 ruptelaNet.go:261: Data received(client: [::1]:58414, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:27:05 ruptelaNet.go:278: Sent ACK (client: [::1]:58414, IMEI: 352094087982671) +2018/09/16 05:27:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:27:08 ruptelaNet.go:261: Data received(client: [::1]:58414, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 05:27:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:27:08 ruptelaNet.go:278: Sent ACK (client: [::1]:58414, IMEI: 352094087982671) +2018/09/16 05:27:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58414, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 05:27:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:58472) +2018/09/16 05:27:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:27:34 ruptelaNet.go:261: Data received(client: [::1]:58472, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:27:34 ruptelaNet.go:278: Sent ACK (client: [::1]:58472, IMEI: 352094087982671) +2018/09/16 05:27:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:27:37 ruptelaNet.go:261: Data received(client: [::1]:58472, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:27:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:27:37 ruptelaNet.go:278: Sent ACK (client: [::1]:58472, IMEI: 352094087982671) +2018/09/16 05:27:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58472, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:27:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58522) +2018/09/16 05:27:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:27:57 ruptelaNet.go:261: Data received(client: [::1]:58522, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:27:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58522, IMEI: 352094089712860) +2018/09/16 05:27:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:27:59 ruptelaNet.go:261: Data received(client: [::1]:58522, IMEI: 352094089712860) with duration 2.19 s +2018/09/16 05:27:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:27:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58522, IMEI: 352094089712860) +2018/09/16 05:28:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58522, IMEI: 352094089712860) with duration 3.63 s +2018/09/16 05:28:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:58534) +2018/09/16 05:28:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:28:03 ruptelaNet.go:261: Data received(client: [::1]:58534, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 05:28:03 ruptelaNet.go:278: Sent ACK (client: [::1]:58534, IMEI: 352094087982671) +2018/09/16 05:28:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:28:07 ruptelaNet.go:261: Data received(client: [::1]:58534, IMEI: 352094087982671) with duration 4.71 s +2018/09/16 05:28:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:28:07 ruptelaNet.go:278: Sent ACK (client: [::1]:58534, IMEI: 352094087982671) +2018/09/16 05:28:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58534, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 05:28:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:58604) +2018/09/16 05:28:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:28:33 ruptelaNet.go:261: Data received(client: [::1]:58604, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 05:28:33 ruptelaNet.go:278: Sent ACK (client: [::1]:58604, IMEI: 352094087982671) +2018/09/16 05:28:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:28:36 ruptelaNet.go:261: Data received(client: [::1]:58604, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 05:28:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:28:36 ruptelaNet.go:278: Sent ACK (client: [::1]:58604, IMEI: 352094087982671) +2018/09/16 05:28:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58604, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 05:28:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58656) +2018/09/16 05:28:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:28:57 ruptelaNet.go:261: Data received(client: [::1]:58656, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:28:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58656, IMEI: 352094089712860) +2018/09/16 05:28:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:28:59 ruptelaNet.go:261: Data received(client: [::1]:58656, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 05:28:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:28:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58656, IMEI: 352094089712860) +2018/09/16 05:28:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58656, IMEI: 352094089712860) with duration 2.6 s +2018/09/16 05:29:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:58664) +2018/09/16 05:29:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:29:02 ruptelaNet.go:261: Data received(client: [::1]:58664, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 05:29:02 ruptelaNet.go:278: Sent ACK (client: [::1]:58664, IMEI: 352094087982671) +2018/09/16 05:29:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:29:05 ruptelaNet.go:261: Data received(client: [::1]:58664, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 05:29:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:29:05 ruptelaNet.go:278: Sent ACK (client: [::1]:58664, IMEI: 352094087982671) +2018/09/16 05:29:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58664, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 05:29:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:58721) +2018/09/16 05:29:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:29:31 ruptelaNet.go:261: Data received(client: [::1]:58721, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:29:31 ruptelaNet.go:278: Sent ACK (client: [::1]:58721, IMEI: 352094087982671) +2018/09/16 05:29:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:29:34 ruptelaNet.go:261: Data received(client: [::1]:58721, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:29:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:29:34 ruptelaNet.go:278: Sent ACK (client: [::1]:58721, IMEI: 352094087982671) +2018/09/16 05:29:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58721, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 05:29:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58781) +2018/09/16 05:29:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:29:57 ruptelaNet.go:261: Data received(client: [::1]:58781, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:29:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58781, IMEI: 352094089712860) +2018/09/16 05:29:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:29:59 ruptelaNet.go:261: Data received(client: [::1]:58781, IMEI: 352094089712860) with duration 2 s +2018/09/16 05:29:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:29:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58781, IMEI: 352094089712860) +2018/09/16 05:29:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:58787) +2018/09/16 05:30:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58781, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 05:30:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:30:00 ruptelaNet.go:261: Data received(client: [::1]:58787, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:30:00 ruptelaNet.go:278: Sent ACK (client: [::1]:58787, IMEI: 352094087982671) +2018/09/16 05:30:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:30:03 ruptelaNet.go:261: Data received(client: [::1]:58787, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:30:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:30:03 ruptelaNet.go:278: Sent ACK (client: [::1]:58787, IMEI: 352094087982671) +2018/09/16 05:30:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58787, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 05:30:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:58843) +2018/09/16 05:30:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:30:29 ruptelaNet.go:261: Data received(client: [::1]:58843, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:30:29 ruptelaNet.go:278: Sent ACK (client: [::1]:58843, IMEI: 352094087982671) +2018/09/16 05:30:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:30:32 ruptelaNet.go:261: Data received(client: [::1]:58843, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 05:30:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:30:32 ruptelaNet.go:278: Sent ACK (client: [::1]:58843, IMEI: 352094087982671) +2018/09/16 05:30:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58843, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 05:30:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58897) +2018/09/16 05:30:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:30:57 ruptelaNet.go:261: Data received(client: [::1]:58897, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:30:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58897, IMEI: 352094089712860) +2018/09/16 05:30:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58898) +2018/09/16 05:30:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:30:58 ruptelaNet.go:261: Data received(client: [::1]:58898, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:30:58 ruptelaNet.go:278: Sent ACK (client: [::1]:58898, IMEI: 352094087982671) +2018/09/16 05:30:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:30:59 ruptelaNet.go:261: Data received(client: [::1]:58897, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 05:30:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:30:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58897, IMEI: 352094089712860) +2018/09/16 05:31:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58897, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 05:31:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:31:01 ruptelaNet.go:261: Data received(client: [::1]:58898, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 05:31:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:31:01 ruptelaNet.go:278: Sent ACK (client: [::1]:58898, IMEI: 352094087982671) +2018/09/16 05:31:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58898, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 05:31:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:58961) +2018/09/16 05:31:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:31:27 ruptelaNet.go:261: Data received(client: [::1]:58961, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 05:31:27 ruptelaNet.go:278: Sent ACK (client: [::1]:58961, IMEI: 352094087982671) +2018/09/16 05:31:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:31:30 ruptelaNet.go:261: Data received(client: [::1]:58961, IMEI: 352094087982671) with duration 3.93 s +2018/09/16 05:31:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:31:30 ruptelaNet.go:278: Sent ACK (client: [::1]:58961, IMEI: 352094087982671) +2018/09/16 05:31:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58961, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 05:31:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:59018) +2018/09/16 05:31:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:31:56 ruptelaNet.go:261: Data received(client: [::1]:59018, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:31:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59018, IMEI: 352094087982671) +2018/09/16 05:31:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59024) +2018/09/16 05:31:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:31:57 ruptelaNet.go:261: Data received(client: [::1]:59024, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:31:57 ruptelaNet.go:278: Sent ACK (client: [::1]:59024, IMEI: 352094089712860) +2018/09/16 05:31:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:31:59 ruptelaNet.go:261: Data received(client: [::1]:59018, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:31:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:31:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59018, IMEI: 352094087982671) +2018/09/16 05:31:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:31:59 ruptelaNet.go:261: Data received(client: [::1]:59024, IMEI: 352094089712860) with duration 2.27 s +2018/09/16 05:31:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:31:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59024, IMEI: 352094089712860) +2018/09/16 05:32:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59024, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 05:32:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59018, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:32:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:59077) +2018/09/16 05:32:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:32:25 ruptelaNet.go:261: Data received(client: [::1]:59077, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:32:25 ruptelaNet.go:278: Sent ACK (client: [::1]:59077, IMEI: 352094087982671) +2018/09/16 05:32:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:32:28 ruptelaNet.go:261: Data received(client: [::1]:59077, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:32:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:32:28 ruptelaNet.go:278: Sent ACK (client: [::1]:59077, IMEI: 352094087982671) +2018/09/16 05:32:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59077, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 05:32:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:59131) +2018/09/16 05:32:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:32:54 ruptelaNet.go:261: Data received(client: [::1]:59131, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:32:54 ruptelaNet.go:278: Sent ACK (client: [::1]:59131, IMEI: 352094087982671) +2018/09/16 05:32:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:32:58 ruptelaNet.go:261: Data received(client: [::1]:59131, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 05:32:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59142) +2018/09/16 05:32:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:32:58 ruptelaNet.go:261: Data received(client: [::1]:59142, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:32:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59142, IMEI: 352094089712860) +2018/09/16 05:32:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:32:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59131, IMEI: 352094087982671) +2018/09/16 05:33:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:33:00 ruptelaNet.go:261: Data received(client: [::1]:59142, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:33:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:33:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59142, IMEI: 352094089712860) +2018/09/16 05:33:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59131, IMEI: 352094087982671) with duration 6.43 s +2018/09/16 05:33:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59142, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:33:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:59188) +2018/09/16 05:33:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:33:23 ruptelaNet.go:261: Data received(client: [::1]:59188, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:33:23 ruptelaNet.go:278: Sent ACK (client: [::1]:59188, IMEI: 352094087982671) +2018/09/16 05:33:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:33:26 ruptelaNet.go:261: Data received(client: [::1]:59188, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:33:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:33:26 ruptelaNet.go:278: Sent ACK (client: [::1]:59188, IMEI: 352094087982671) +2018/09/16 05:33:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59188, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 05:33:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:59251) +2018/09/16 05:33:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:33:52 ruptelaNet.go:261: Data received(client: [::1]:59251, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:33:52 ruptelaNet.go:278: Sent ACK (client: [::1]:59251, IMEI: 352094087982671) +2018/09/16 05:33:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:33:56 ruptelaNet.go:261: Data received(client: [::1]:59251, IMEI: 352094087982671) with duration 4.26 s +2018/09/16 05:33:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:33:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59251, IMEI: 352094087982671) +2018/09/16 05:33:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59263) +2018/09/16 05:33:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:33:57 ruptelaNet.go:261: Data received(client: [::1]:59263, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:33:57 ruptelaNet.go:278: Sent ACK (client: [::1]:59263, IMEI: 352094089712860) +2018/09/16 05:33:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59251, IMEI: 352094087982671) with duration 6.32 s +2018/09/16 05:33:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:33:59 ruptelaNet.go:261: Data received(client: [::1]:59263, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:33:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:33:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59263, IMEI: 352094089712860) +2018/09/16 05:34:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59263, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:34:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:59305) +2018/09/16 05:34:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:34:21 ruptelaNet.go:261: Data received(client: [::1]:59305, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 05:34:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59305, IMEI: 352094087982671) +2018/09/16 05:34:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:34:24 ruptelaNet.go:261: Data received(client: [::1]:59305, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 05:34:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:34:24 ruptelaNet.go:278: Sent ACK (client: [::1]:59305, IMEI: 352094087982671) +2018/09/16 05:34:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59305, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:34:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:59373) +2018/09/16 05:34:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:34:50 ruptelaNet.go:261: Data received(client: [::1]:59373, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:34:50 ruptelaNet.go:278: Sent ACK (client: [::1]:59373, IMEI: 352094087982671) +2018/09/16 05:34:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:34:53 ruptelaNet.go:261: Data received(client: [::1]:59373, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 05:34:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:34:53 ruptelaNet.go:278: Sent ACK (client: [::1]:59373, IMEI: 352094087982671) +2018/09/16 05:34:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59373, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 05:34:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59389) +2018/09/16 05:34:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:34:57 ruptelaNet.go:261: Data received(client: [::1]:59389, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:34:57 ruptelaNet.go:278: Sent ACK (client: [::1]:59389, IMEI: 352094089712860) +2018/09/16 05:34:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:34:59 ruptelaNet.go:261: Data received(client: [::1]:59389, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 05:34:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:34:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59389, IMEI: 352094089712860) +2018/09/16 05:35:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59389, IMEI: 352094089712860) with duration 2.79 s +2018/09/16 05:35:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59431) +2018/09/16 05:35:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:35:19 ruptelaNet.go:261: Data received(client: [::1]:59431, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 05:35:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59431, IMEI: 352094087982671) +2018/09/16 05:35:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:35:22 ruptelaNet.go:261: Data received(client: [::1]:59431, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:35:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:35:22 ruptelaNet.go:278: Sent ACK (client: [::1]:59431, IMEI: 352094087982671) +2018/09/16 05:35:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59431, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 05:35:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:59489) +2018/09/16 05:35:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:35:49 ruptelaNet.go:261: Data received(client: [::1]:59489, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:35:49 ruptelaNet.go:278: Sent ACK (client: [::1]:59489, IMEI: 352094087982671) +2018/09/16 05:35:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:35:51 ruptelaNet.go:261: Data received(client: [::1]:59489, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 05:35:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:35:51 ruptelaNet.go:278: Sent ACK (client: [::1]:59489, IMEI: 352094087982671) +2018/09/16 05:35:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59489, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 05:35:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59512) +2018/09/16 05:35:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:35:58 ruptelaNet.go:261: Data received(client: [::1]:59512, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:35:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59512, IMEI: 352094089712860) +2018/09/16 05:36:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:36:00 ruptelaNet.go:261: Data received(client: [::1]:59512, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:36:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:36:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59512, IMEI: 352094089712860) +2018/09/16 05:36:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59512, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:36:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:59543) +2018/09/16 05:36:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:36:17 ruptelaNet.go:261: Data received(client: [::1]:59543, IMEI: 352094087982671) with duration 0.75 s +2018/09/16 05:36:17 ruptelaNet.go:278: Sent ACK (client: [::1]:59543, IMEI: 352094087982671) +2018/09/16 05:36:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:36:20 ruptelaNet.go:261: Data received(client: [::1]:59543, IMEI: 352094087982671) with duration 3.62 s +2018/09/16 05:36:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:36:20 ruptelaNet.go:278: Sent ACK (client: [::1]:59543, IMEI: 352094087982671) +2018/09/16 05:36:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59543, IMEI: 352094087982671) with duration 5.77 s +2018/09/16 05:36:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:59609) +2018/09/16 05:36:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:36:49 ruptelaNet.go:261: Data received(client: [::1]:59609, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:36:49 ruptelaNet.go:278: Sent ACK (client: [::1]:59609, IMEI: 352094087982671) +2018/09/16 05:36:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:36:52 ruptelaNet.go:261: Data received(client: [::1]:59609, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:36:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:36:52 ruptelaNet.go:278: Sent ACK (client: [::1]:59609, IMEI: 352094087982671) +2018/09/16 05:36:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59609, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:36:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59631) +2018/09/16 05:36:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:36:58 ruptelaNet.go:261: Data received(client: [::1]:59631, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:36:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59631, IMEI: 352094089712860) +2018/09/16 05:36:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:36:59 ruptelaNet.go:261: Data received(client: [::1]:59631, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:37:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:37:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59631, IMEI: 352094089712860) +2018/09/16 05:37:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59631, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:37:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:59669) +2018/09/16 05:37:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:37:17 ruptelaNet.go:261: Data received(client: [::1]:59669, IMEI: 352094087982671) with duration 0.76 s +2018/09/16 05:37:17 ruptelaNet.go:278: Sent ACK (client: [::1]:59669, IMEI: 352094087982671) +2018/09/16 05:37:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:37:20 ruptelaNet.go:261: Data received(client: [::1]:59669, IMEI: 352094087982671) with duration 3.53 s +2018/09/16 05:37:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:37:20 ruptelaNet.go:278: Sent ACK (client: [::1]:59669, IMEI: 352094087982671) +2018/09/16 05:37:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59669, IMEI: 352094087982671) with duration 5.68 s +2018/09/16 05:37:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:59726) +2018/09/16 05:37:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:37:47 ruptelaNet.go:261: Data received(client: [::1]:59726, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:37:47 ruptelaNet.go:278: Sent ACK (client: [::1]:59726, IMEI: 352094087982671) +2018/09/16 05:37:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:37:49 ruptelaNet.go:261: Data received(client: [::1]:59726, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 05:37:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:37:49 ruptelaNet.go:278: Sent ACK (client: [::1]:59726, IMEI: 352094087982671) +2018/09/16 05:37:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59726, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 05:37:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59750) +2018/09/16 05:37:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:37:58 ruptelaNet.go:261: Data received(client: [::1]:59750, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:37:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59750, IMEI: 352094089712860) +2018/09/16 05:38:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:38:00 ruptelaNet.go:261: Data received(client: [::1]:59750, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:38:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:38:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59750, IMEI: 352094089712860) +2018/09/16 05:38:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59750, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:38:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:59785) +2018/09/16 05:38:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:38:15 ruptelaNet.go:261: Data received(client: [::1]:59785, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:38:15 ruptelaNet.go:278: Sent ACK (client: [::1]:59785, IMEI: 352094087982671) +2018/09/16 05:38:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:38:18 ruptelaNet.go:261: Data received(client: [::1]:59785, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:38:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:38:18 ruptelaNet.go:278: Sent ACK (client: [::1]:59785, IMEI: 352094087982671) +2018/09/16 05:38:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59785, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:38:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59846) +2018/09/16 05:38:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:38:44 ruptelaNet.go:261: Data received(client: [::1]:59846, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 05:38:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59846, IMEI: 352094087982671) +2018/09/16 05:38:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:38:47 ruptelaNet.go:261: Data received(client: [::1]:59846, IMEI: 352094087982671) with duration 3.34 s +2018/09/16 05:38:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:38:47 ruptelaNet.go:278: Sent ACK (client: [::1]:59846, IMEI: 352094087982671) +2018/09/16 05:38:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59846, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 05:38:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59874) +2018/09/16 05:38:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:38:58 ruptelaNet.go:261: Data received(client: [::1]:59874, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:38:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59874, IMEI: 352094089712860) +2018/09/16 05:39:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:39:00 ruptelaNet.go:261: Data received(client: [::1]:59874, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 05:39:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:39:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59874, IMEI: 352094089712860) +2018/09/16 05:39:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59874, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:39:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:59901) +2018/09/16 05:39:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:39:12 ruptelaNet.go:261: Data received(client: [::1]:59901, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:39:12 ruptelaNet.go:278: Sent ACK (client: [::1]:59901, IMEI: 352094087982671) +2018/09/16 05:39:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:39:15 ruptelaNet.go:261: Data received(client: [::1]:59901, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 05:39:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:39:15 ruptelaNet.go:278: Sent ACK (client: [::1]:59901, IMEI: 352094087982671) +2018/09/16 05:39:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59901, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 05:39:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:59964) +2018/09/16 05:39:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:39:42 ruptelaNet.go:261: Data received(client: [::1]:59964, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 05:39:42 ruptelaNet.go:278: Sent ACK (client: [::1]:59964, IMEI: 352094087982671) +2018/09/16 05:39:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:39:44 ruptelaNet.go:261: Data received(client: [::1]:59964, IMEI: 352094087982671) with duration 3.67 s +2018/09/16 05:39:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:39:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59964, IMEI: 352094087982671) +2018/09/16 05:39:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59964, IMEI: 352094087982671) with duration 5.88 s +2018/09/16 05:39:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60002) +2018/09/16 05:39:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:39:58 ruptelaNet.go:261: Data received(client: [::1]:60002, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:39:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60002, IMEI: 352094089712860) +2018/09/16 05:40:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:40:00 ruptelaNet.go:261: Data received(client: [::1]:60002, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:40:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:40:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60002, IMEI: 352094089712860) +2018/09/16 05:40:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60002, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:40:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:60023) +2018/09/16 05:40:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:40:10 ruptelaNet.go:261: Data received(client: [::1]:60023, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:40:10 ruptelaNet.go:278: Sent ACK (client: [::1]:60023, IMEI: 352094087982671) +2018/09/16 05:40:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:40:14 ruptelaNet.go:261: Data received(client: [::1]:60023, IMEI: 352094087982671) with duration 4.16 s +2018/09/16 05:40:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:40:14 ruptelaNet.go:278: Sent ACK (client: [::1]:60023, IMEI: 352094087982671) +2018/09/16 05:40:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60023, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 05:40:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:60080) +2018/09/16 05:40:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:40:39 ruptelaNet.go:261: Data received(client: [::1]:60080, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:40:39 ruptelaNet.go:278: Sent ACK (client: [::1]:60080, IMEI: 352094087982671) +2018/09/16 05:40:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:40:42 ruptelaNet.go:261: Data received(client: [::1]:60080, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:40:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:40:42 ruptelaNet.go:278: Sent ACK (client: [::1]:60080, IMEI: 352094087982671) +2018/09/16 05:40:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60080, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:40:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60120) +2018/09/16 05:40:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:40:58 ruptelaNet.go:261: Data received(client: [::1]:60120, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:40:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60120, IMEI: 352094089712860) +2018/09/16 05:41:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:41:00 ruptelaNet.go:261: Data received(client: [::1]:60120, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 05:41:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:41:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60120, IMEI: 352094089712860) +2018/09/16 05:41:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60120, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 05:41:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:60141) +2018/09/16 05:41:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:41:08 ruptelaNet.go:261: Data received(client: [::1]:60141, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:41:08 ruptelaNet.go:278: Sent ACK (client: [::1]:60141, IMEI: 352094087982671) +2018/09/16 05:41:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:41:11 ruptelaNet.go:261: Data received(client: [::1]:60141, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:41:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:41:11 ruptelaNet.go:278: Sent ACK (client: [::1]:60141, IMEI: 352094087982671) +2018/09/16 05:41:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60141, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:41:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:60199) +2018/09/16 05:41:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:41:37 ruptelaNet.go:261: Data received(client: [::1]:60199, IMEI: 352094087982671) with duration 0.56 s +2018/09/16 05:41:37 ruptelaNet.go:278: Sent ACK (client: [::1]:60199, IMEI: 352094087982671) +2018/09/16 05:41:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:41:40 ruptelaNet.go:261: Data received(client: [::1]:60199, IMEI: 352094087982671) with duration 3.32 s +2018/09/16 05:41:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:41:40 ruptelaNet.go:278: Sent ACK (client: [::1]:60199, IMEI: 352094087982671) +2018/09/16 05:41:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60199, IMEI: 352094087982671) with duration 5.48 s +2018/09/16 05:41:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60245) +2018/09/16 05:41:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:41:59 ruptelaNet.go:261: Data received(client: [::1]:60245, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 05:41:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60245, IMEI: 352094089712860) +2018/09/16 05:42:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:42:00 ruptelaNet.go:261: Data received(client: [::1]:60245, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 05:42:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:42:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60245, IMEI: 352094089712860) +2018/09/16 05:42:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60245, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 05:42:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:60262) +2018/09/16 05:42:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:42:06 ruptelaNet.go:261: Data received(client: [::1]:60262, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 05:42:06 ruptelaNet.go:278: Sent ACK (client: [::1]:60262, IMEI: 352094087982671) +2018/09/16 05:42:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:42:09 ruptelaNet.go:261: Data received(client: [::1]:60262, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:42:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:42:09 ruptelaNet.go:278: Sent ACK (client: [::1]:60262, IMEI: 352094087982671) +2018/09/16 05:42:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60262, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:42:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:60319) +2018/09/16 05:42:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:42:35 ruptelaNet.go:261: Data received(client: [::1]:60319, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:42:35 ruptelaNet.go:278: Sent ACK (client: [::1]:60319, IMEI: 352094087982671) +2018/09/16 05:42:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:42:38 ruptelaNet.go:261: Data received(client: [::1]:60319, IMEI: 352094087982671) with duration 4.12 s +2018/09/16 05:42:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:42:38 ruptelaNet.go:278: Sent ACK (client: [::1]:60319, IMEI: 352094087982671) +2018/09/16 05:42:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60319, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 05:42:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60365) +2018/09/16 05:42:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:42:58 ruptelaNet.go:261: Data received(client: [::1]:60365, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:42:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60365, IMEI: 352094089712860) +2018/09/16 05:43:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:43:00 ruptelaNet.go:261: Data received(client: [::1]:60365, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:43:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:43:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60365, IMEI: 352094089712860) +2018/09/16 05:43:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60365, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:43:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:60381) +2018/09/16 05:43:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:43:04 ruptelaNet.go:261: Data received(client: [::1]:60381, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 05:43:04 ruptelaNet.go:278: Sent ACK (client: [::1]:60381, IMEI: 352094087982671) +2018/09/16 05:43:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:43:07 ruptelaNet.go:261: Data received(client: [::1]:60381, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:43:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:43:07 ruptelaNet.go:278: Sent ACK (client: [::1]:60381, IMEI: 352094087982671) +2018/09/16 05:43:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60381, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:43:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:60441) +2018/09/16 05:43:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:43:34 ruptelaNet.go:261: Data received(client: [::1]:60441, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 05:43:34 ruptelaNet.go:278: Sent ACK (client: [::1]:60441, IMEI: 352094087982671) +2018/09/16 05:43:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:43:36 ruptelaNet.go:261: Data received(client: [::1]:60441, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 05:43:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:43:36 ruptelaNet.go:278: Sent ACK (client: [::1]:60441, IMEI: 352094087982671) +2018/09/16 05:43:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60441, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 05:43:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60490) +2018/09/16 05:43:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:43:58 ruptelaNet.go:261: Data received(client: [::1]:60490, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:43:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60490, IMEI: 352094089712860) +2018/09/16 05:44:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:44:00 ruptelaNet.go:261: Data received(client: [::1]:60490, IMEI: 352094089712860) with duration 2.09 s +2018/09/16 05:44:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:44:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60490, IMEI: 352094089712860) +2018/09/16 05:44:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60490, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:44:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:60496) +2018/09/16 05:44:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:44:02 ruptelaNet.go:261: Data received(client: [::1]:60496, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 05:44:02 ruptelaNet.go:278: Sent ACK (client: [::1]:60496, IMEI: 352094087982671) +2018/09/16 05:44:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:44:05 ruptelaNet.go:261: Data received(client: [::1]:60496, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 05:44:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:44:05 ruptelaNet.go:278: Sent ACK (client: [::1]:60496, IMEI: 352094087982671) +2018/09/16 05:44:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60496, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 05:44:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:60557) +2018/09/16 05:44:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:44:31 ruptelaNet.go:261: Data received(client: [::1]:60557, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:44:31 ruptelaNet.go:278: Sent ACK (client: [::1]:60557, IMEI: 352094087982671) +2018/09/16 05:44:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:44:34 ruptelaNet.go:261: Data received(client: [::1]:60557, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 05:44:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:44:34 ruptelaNet.go:278: Sent ACK (client: [::1]:60557, IMEI: 352094087982671) +2018/09/16 05:44:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60557, IMEI: 352094087982671) with duration 6.99 s +2018/09/16 05:44:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60617) +2018/09/16 05:44:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:44:59 ruptelaNet.go:261: Data received(client: [::1]:60617, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:44:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60617, IMEI: 352094089712860) +2018/09/16 05:44:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60618) +2018/09/16 05:45:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:45:00 ruptelaNet.go:261: Data received(client: [::1]:60618, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:45:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60618, IMEI: 352094087982671) +2018/09/16 05:45:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:45:01 ruptelaNet.go:261: Data received(client: [::1]:60617, IMEI: 352094089712860) with duration 2.53 s +2018/09/16 05:45:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:45:01 ruptelaNet.go:278: Sent ACK (client: [::1]:60617, IMEI: 352094089712860) +2018/09/16 05:45:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60617, IMEI: 352094089712860) with duration 3.35 s +2018/09/16 05:45:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:45:03 ruptelaNet.go:261: Data received(client: [::1]:60618, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:45:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:45:03 ruptelaNet.go:278: Sent ACK (client: [::1]:60618, IMEI: 352094087982671) +2018/09/16 05:45:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60618, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 05:45:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:60675) +2018/09/16 05:45:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:45:29 ruptelaNet.go:261: Data received(client: [::1]:60675, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 05:45:29 ruptelaNet.go:278: Sent ACK (client: [::1]:60675, IMEI: 352094087982671) +2018/09/16 05:45:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:45:32 ruptelaNet.go:261: Data received(client: [::1]:60675, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 05:45:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:45:32 ruptelaNet.go:278: Sent ACK (client: [::1]:60675, IMEI: 352094087982671) +2018/09/16 05:45:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60675, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 05:45:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60735) +2018/09/16 05:45:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:45:58 ruptelaNet.go:261: Data received(client: [::1]:60735, IMEI: 352094087982671) with duration 0.74 s +2018/09/16 05:45:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60735, IMEI: 352094087982671) +2018/09/16 05:45:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60736) +2018/09/16 05:45:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:45:59 ruptelaNet.go:261: Data received(client: [::1]:60736, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:45:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60736, IMEI: 352094089712860) +2018/09/16 05:46:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:46:01 ruptelaNet.go:261: Data received(client: [::1]:60736, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 05:46:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:46:01 ruptelaNet.go:278: Sent ACK (client: [::1]:60736, IMEI: 352094089712860) +2018/09/16 05:46:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60736, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 05:46:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:46:02 ruptelaNet.go:261: Data received(client: [::1]:60735, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 05:46:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:46:02 ruptelaNet.go:278: Sent ACK (client: [::1]:60735, IMEI: 352094087982671) +2018/09/16 05:46:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60735, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 05:46:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:60794) +2018/09/16 05:46:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:46:27 ruptelaNet.go:261: Data received(client: [::1]:60794, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:46:27 ruptelaNet.go:278: Sent ACK (client: [::1]:60794, IMEI: 352094087982671) +2018/09/16 05:46:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:46:30 ruptelaNet.go:261: Data received(client: [::1]:60794, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 05:46:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:46:30 ruptelaNet.go:278: Sent ACK (client: [::1]:60794, IMEI: 352094087982671) +2018/09/16 05:46:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60794, IMEI: 352094087982671) with duration 6.18 s +2018/09/16 05:46:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:60856) +2018/09/16 05:46:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:46:57 ruptelaNet.go:261: Data received(client: [::1]:60856, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 05:46:57 ruptelaNet.go:278: Sent ACK (client: [::1]:60856, IMEI: 352094087982671) +2018/09/16 05:46:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60862) +2018/09/16 05:46:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:46:59 ruptelaNet.go:261: Data received(client: [::1]:60862, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:46:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60862, IMEI: 352094089712860) +2018/09/16 05:46:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:46:59 ruptelaNet.go:261: Data received(client: [::1]:60856, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 05:46:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:46:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60856, IMEI: 352094087982671) +2018/09/16 05:47:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:47:01 ruptelaNet.go:261: Data received(client: [::1]:60862, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 05:47:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:47:01 ruptelaNet.go:278: Sent ACK (client: [::1]:60862, IMEI: 352094089712860) +2018/09/16 05:47:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60856, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 05:47:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60862, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 05:47:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:60917) +2018/09/16 05:47:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:47:25 ruptelaNet.go:261: Data received(client: [::1]:60917, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 05:47:25 ruptelaNet.go:278: Sent ACK (client: [::1]:60917, IMEI: 352094087982671) +2018/09/16 05:47:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:47:28 ruptelaNet.go:261: Data received(client: [::1]:60917, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:47:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:47:28 ruptelaNet.go:278: Sent ACK (client: [::1]:60917, IMEI: 352094087982671) +2018/09/16 05:47:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60917, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:47:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:60979) +2018/09/16 05:47:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:47:54 ruptelaNet.go:261: Data received(client: [::1]:60979, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 05:47:54 ruptelaNet.go:278: Sent ACK (client: [::1]:60979, IMEI: 352094087982671) +2018/09/16 05:47:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:47:57 ruptelaNet.go:261: Data received(client: [::1]:60979, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 05:47:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:47:57 ruptelaNet.go:278: Sent ACK (client: [::1]:60979, IMEI: 352094087982671) +2018/09/16 05:47:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60990) +2018/09/16 05:47:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:47:59 ruptelaNet.go:261: Data received(client: [::1]:60990, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:47:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60990, IMEI: 352094089712860) +2018/09/16 05:48:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60979, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 05:48:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:48:01 ruptelaNet.go:261: Data received(client: [::1]:60990, IMEI: 352094089712860) with duration 2.45 s +2018/09/16 05:48:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:48:01 ruptelaNet.go:278: Sent ACK (client: [::1]:60990, IMEI: 352094089712860) +2018/09/16 05:48:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60990, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 05:48:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:61042) +2018/09/16 05:48:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:48:23 ruptelaNet.go:261: Data received(client: [::1]:61042, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:48:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61042, IMEI: 352094087982671) +2018/09/16 05:48:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:48:27 ruptelaNet.go:261: Data received(client: [::1]:61042, IMEI: 352094087982671) with duration 4.31 s +2018/09/16 05:48:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:48:27 ruptelaNet.go:278: Sent ACK (client: [::1]:61042, IMEI: 352094087982671) +2018/09/16 05:48:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61042, IMEI: 352094087982671) with duration 6.5 s +2018/09/16 05:48:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:61110) +2018/09/16 05:48:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:48:52 ruptelaNet.go:261: Data received(client: [::1]:61110, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 05:48:52 ruptelaNet.go:278: Sent ACK (client: [::1]:61110, IMEI: 352094087982671) +2018/09/16 05:48:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:48:55 ruptelaNet.go:261: Data received(client: [::1]:61110, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 05:48:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:48:55 ruptelaNet.go:278: Sent ACK (client: [::1]:61110, IMEI: 352094087982671) +2018/09/16 05:48:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61110, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 05:48:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61122) +2018/09/16 05:48:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:48:59 ruptelaNet.go:261: Data received(client: [::1]:61122, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:48:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61122, IMEI: 352094089712860) +2018/09/16 05:49:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:49:01 ruptelaNet.go:261: Data received(client: [::1]:61122, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 05:49:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:49:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61122, IMEI: 352094089712860) +2018/09/16 05:49:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61122, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 05:49:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61164) +2018/09/16 05:49:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:49:21 ruptelaNet.go:261: Data received(client: [::1]:61164, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 05:49:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61164, IMEI: 352094087982671) +2018/09/16 05:49:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:49:24 ruptelaNet.go:261: Data received(client: [::1]:61164, IMEI: 352094087982671) with duration 3.72 s +2018/09/16 05:49:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:49:24 ruptelaNet.go:278: Sent ACK (client: [::1]:61164, IMEI: 352094087982671) +2018/09/16 05:49:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61164, IMEI: 352094087982671) with duration 5.79 s +2018/09/16 05:49:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:61219) +2018/09/16 05:49:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:49:50 ruptelaNet.go:261: Data received(client: [::1]:61219, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:49:50 ruptelaNet.go:278: Sent ACK (client: [::1]:61219, IMEI: 352094087982671) +2018/09/16 05:49:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:49:53 ruptelaNet.go:261: Data received(client: [::1]:61219, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 05:49:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:49:53 ruptelaNet.go:278: Sent ACK (client: [::1]:61219, IMEI: 352094087982671) +2018/09/16 05:49:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61219, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 05:49:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61240) +2018/09/16 05:49:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:49:59 ruptelaNet.go:261: Data received(client: [::1]:61240, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:49:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61240, IMEI: 352094089712860) +2018/09/16 05:50:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:50:01 ruptelaNet.go:261: Data received(client: [::1]:61240, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:50:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:50:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61240, IMEI: 352094089712860) +2018/09/16 05:50:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61240, IMEI: 352094089712860) with duration 3.58 s +2018/09/16 05:50:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:61278) +2018/09/16 05:50:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:50:19 ruptelaNet.go:261: Data received(client: [::1]:61278, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:50:19 ruptelaNet.go:278: Sent ACK (client: [::1]:61278, IMEI: 352094087982671) +2018/09/16 05:50:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:50:22 ruptelaNet.go:261: Data received(client: [::1]:61278, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:50:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:50:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61278, IMEI: 352094087982671) +2018/09/16 05:50:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61278, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:50:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:61333) +2018/09/16 05:50:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:50:48 ruptelaNet.go:261: Data received(client: [::1]:61333, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 05:50:48 ruptelaNet.go:278: Sent ACK (client: [::1]:61333, IMEI: 352094087982671) +2018/09/16 05:50:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:50:51 ruptelaNet.go:261: Data received(client: [::1]:61333, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 05:50:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:50:51 ruptelaNet.go:278: Sent ACK (client: [::1]:61333, IMEI: 352094087982671) +2018/09/16 05:50:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61333, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:50:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61360) +2018/09/16 05:50:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:50:59 ruptelaNet.go:261: Data received(client: [::1]:61360, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:50:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61360, IMEI: 352094089712860) +2018/09/16 05:51:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:51:01 ruptelaNet.go:261: Data received(client: [::1]:61360, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 05:51:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:51:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61360, IMEI: 352094089712860) +2018/09/16 05:51:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61360, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:51:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:61394) +2018/09/16 05:51:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:51:17 ruptelaNet.go:261: Data received(client: [::1]:61394, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:51:17 ruptelaNet.go:278: Sent ACK (client: [::1]:61394, IMEI: 352094087982671) +2018/09/16 05:51:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:51:20 ruptelaNet.go:261: Data received(client: [::1]:61394, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 05:51:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:51:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61394, IMEI: 352094087982671) +2018/09/16 05:51:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61394, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 05:51:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61458) +2018/09/16 05:51:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:51:46 ruptelaNet.go:261: Data received(client: [::1]:61458, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:51:46 ruptelaNet.go:278: Sent ACK (client: [::1]:61458, IMEI: 352094087982671) +2018/09/16 05:51:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:51:49 ruptelaNet.go:261: Data received(client: [::1]:61458, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:51:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:51:49 ruptelaNet.go:278: Sent ACK (client: [::1]:61458, IMEI: 352094087982671) +2018/09/16 05:51:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61458, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:51:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61490) +2018/09/16 05:51:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:51:59 ruptelaNet.go:261: Data received(client: [::1]:61490, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:51:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61490, IMEI: 352094089712860) +2018/09/16 05:52:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:52:01 ruptelaNet.go:261: Data received(client: [::1]:61490, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:52:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:52:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61490, IMEI: 352094089712860) +2018/09/16 05:52:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61490, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 05:52:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:61523) +2018/09/16 05:52:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:52:15 ruptelaNet.go:261: Data received(client: [::1]:61523, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:52:15 ruptelaNet.go:278: Sent ACK (client: [::1]:61523, IMEI: 352094087982671) +2018/09/16 05:52:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:52:18 ruptelaNet.go:261: Data received(client: [::1]:61523, IMEI: 352094087982671) with duration 4.11 s +2018/09/16 05:52:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:52:18 ruptelaNet.go:278: Sent ACK (client: [::1]:61523, IMEI: 352094087982671) +2018/09/16 05:52:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61523, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:52:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:61584) +2018/09/16 05:52:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:52:44 ruptelaNet.go:261: Data received(client: [::1]:61584, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:52:44 ruptelaNet.go:278: Sent ACK (client: [::1]:61584, IMEI: 352094087982671) +2018/09/16 05:52:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:52:47 ruptelaNet.go:261: Data received(client: [::1]:61584, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:52:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:52:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61584, IMEI: 352094087982671) +2018/09/16 05:52:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61584, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 05:52:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61619) +2018/09/16 05:52:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:52:59 ruptelaNet.go:261: Data received(client: [::1]:61619, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:52:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61619, IMEI: 352094089712860) +2018/09/16 05:53:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:53:01 ruptelaNet.go:261: Data received(client: [::1]:61619, IMEI: 352094089712860) with duration 2 s +2018/09/16 05:53:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:53:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61619, IMEI: 352094089712860) +2018/09/16 05:53:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61619, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 05:53:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:61647) +2018/09/16 05:53:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:53:13 ruptelaNet.go:261: Data received(client: [::1]:61647, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 05:53:13 ruptelaNet.go:278: Sent ACK (client: [::1]:61647, IMEI: 352094087982671) +2018/09/16 05:53:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:53:16 ruptelaNet.go:261: Data received(client: [::1]:61647, IMEI: 352094087982671) with duration 4.06 s +2018/09/16 05:53:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:53:16 ruptelaNet.go:278: Sent ACK (client: [::1]:61647, IMEI: 352094087982671) +2018/09/16 05:53:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61647, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 05:53:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:61708) +2018/09/16 05:53:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:53:42 ruptelaNet.go:261: Data received(client: [::1]:61708, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:53:42 ruptelaNet.go:278: Sent ACK (client: [::1]:61708, IMEI: 352094087982671) +2018/09/16 05:53:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:53:45 ruptelaNet.go:261: Data received(client: [::1]:61708, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:53:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:53:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61708, IMEI: 352094087982671) +2018/09/16 05:53:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61708, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:53:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61747) +2018/09/16 05:53:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:53:59 ruptelaNet.go:261: Data received(client: [::1]:61747, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:53:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61747, IMEI: 352094089712860) +2018/09/16 05:54:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:54:01 ruptelaNet.go:261: Data received(client: [::1]:61747, IMEI: 352094089712860) with duration 1.92 s +2018/09/16 05:54:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:54:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61747, IMEI: 352094089712860) +2018/09/16 05:54:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61747, IMEI: 352094089712860) with duration 2.63 s +2018/09/16 05:54:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:61768) +2018/09/16 05:54:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:54:11 ruptelaNet.go:261: Data received(client: [::1]:61768, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 05:54:11 ruptelaNet.go:278: Sent ACK (client: [::1]:61768, IMEI: 352094087982671) +2018/09/16 05:54:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:54:14 ruptelaNet.go:261: Data received(client: [::1]:61768, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 05:54:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:54:14 ruptelaNet.go:278: Sent ACK (client: [::1]:61768, IMEI: 352094087982671) +2018/09/16 05:54:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61768, IMEI: 352094087982671) with duration 6.41 s +2018/09/16 05:54:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:61827) +2018/09/16 05:54:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:54:40 ruptelaNet.go:261: Data received(client: [::1]:61827, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 05:54:40 ruptelaNet.go:278: Sent ACK (client: [::1]:61827, IMEI: 352094087982671) +2018/09/16 05:54:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:54:43 ruptelaNet.go:261: Data received(client: [::1]:61827, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 05:54:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:54:43 ruptelaNet.go:278: Sent ACK (client: [::1]:61827, IMEI: 352094087982671) +2018/09/16 05:54:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61827, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:54:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61871) +2018/09/16 05:54:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:54:59 ruptelaNet.go:261: Data received(client: [::1]:61871, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:54:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61871, IMEI: 352094089712860) +2018/09/16 05:55:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:55:01 ruptelaNet.go:261: Data received(client: [::1]:61871, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:55:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:55:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61871, IMEI: 352094089712860) +2018/09/16 05:55:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61871, IMEI: 352094089712860) with duration 2.68 s +2018/09/16 05:55:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:61892) +2018/09/16 05:55:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:55:09 ruptelaNet.go:261: Data received(client: [::1]:61892, IMEI: 352094087982671) with duration 0.79 s +2018/09/16 05:55:09 ruptelaNet.go:278: Sent ACK (client: [::1]:61892, IMEI: 352094087982671) +2018/09/16 05:55:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:55:12 ruptelaNet.go:261: Data received(client: [::1]:61892, IMEI: 352094087982671) with duration 3.35 s +2018/09/16 05:55:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:55:12 ruptelaNet.go:278: Sent ACK (client: [::1]:61892, IMEI: 352094087982671) +2018/09/16 05:55:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61892, IMEI: 352094087982671) with duration 5.6 s +2018/09/16 05:55:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:61946) +2018/09/16 05:55:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:55:37 ruptelaNet.go:261: Data received(client: [::1]:61946, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:55:37 ruptelaNet.go:278: Sent ACK (client: [::1]:61946, IMEI: 352094087982671) +2018/09/16 05:55:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:55:40 ruptelaNet.go:261: Data received(client: [::1]:61946, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:55:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:55:40 ruptelaNet.go:278: Sent ACK (client: [::1]:61946, IMEI: 352094087982671) +2018/09/16 05:55:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61946, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:56:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:61997) +2018/09/16 05:56:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:56:00 ruptelaNet.go:261: Data received(client: [::1]:61997, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:56:00 ruptelaNet.go:278: Sent ACK (client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 05:56:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:56:02 ruptelaNet.go:261: Data received(client: [::1]:61997, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:56:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:56:02 ruptelaNet.go:278: Sent ACK (client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 05:56:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61997, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:56:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:62005) +2018/09/16 05:56:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:56:07 ruptelaNet.go:261: Data received(client: [::1]:62005, IMEI: 352094087982671) with duration 1.18 s +2018/09/16 05:56:07 ruptelaNet.go:278: Sent ACK (client: [::1]:62005, IMEI: 352094087982671) +2018/09/16 05:56:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:56:09 ruptelaNet.go:261: Data received(client: [::1]:62005, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 05:56:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:56:09 ruptelaNet.go:278: Sent ACK (client: [::1]:62005, IMEI: 352094087982671) +2018/09/16 05:56:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62005, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 05:56:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:62064) +2018/09/16 05:56:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:56:35 ruptelaNet.go:261: Data received(client: [::1]:62064, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:56:35 ruptelaNet.go:278: Sent ACK (client: [::1]:62064, IMEI: 352094087982671) +2018/09/16 05:56:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:56:38 ruptelaNet.go:261: Data received(client: [::1]:62064, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 05:56:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:56:38 ruptelaNet.go:278: Sent ACK (client: [::1]:62064, IMEI: 352094087982671) +2018/09/16 05:56:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62064, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 05:57:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62119) +2018/09/16 05:57:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:57:00 ruptelaNet.go:261: Data received(client: [::1]:62119, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:57:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62119, IMEI: 352094089712860) +2018/09/16 05:57:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:57:02 ruptelaNet.go:261: Data received(client: [::1]:62119, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 05:57:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:57:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62119, IMEI: 352094089712860) +2018/09/16 05:57:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62119, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:57:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:62126) +2018/09/16 05:57:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:57:04 ruptelaNet.go:261: Data received(client: [::1]:62126, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:57:04 ruptelaNet.go:278: Sent ACK (client: [::1]:62126, IMEI: 352094087982671) +2018/09/16 05:57:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:57:08 ruptelaNet.go:261: Data received(client: [::1]:62126, IMEI: 352094087982671) with duration 4.61 s +2018/09/16 05:57:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:57:08 ruptelaNet.go:278: Sent ACK (client: [::1]:62126, IMEI: 352094087982671) +2018/09/16 05:57:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62126, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 05:57:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:62188) +2018/09/16 05:57:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:57:34 ruptelaNet.go:261: Data received(client: [::1]:62188, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:57:34 ruptelaNet.go:278: Sent ACK (client: [::1]:62188, IMEI: 352094087982671) +2018/09/16 05:57:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:57:37 ruptelaNet.go:261: Data received(client: [::1]:62188, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 05:57:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:57:37 ruptelaNet.go:278: Sent ACK (client: [::1]:62188, IMEI: 352094087982671) +2018/09/16 05:57:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62188, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:58:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62237) +2018/09/16 05:58:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:58:00 ruptelaNet.go:261: Data received(client: [::1]:62237, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:58:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62237, IMEI: 352094089712860) +2018/09/16 05:58:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:58:02 ruptelaNet.go:261: Data received(client: [::1]:62237, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 05:58:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:58:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62237, IMEI: 352094089712860) +2018/09/16 05:58:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:62244) +2018/09/16 05:58:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62237, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 05:58:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:58:03 ruptelaNet.go:261: Data received(client: [::1]:62244, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 05:58:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62244, IMEI: 352094087982671) +2018/09/16 05:58:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:58:06 ruptelaNet.go:261: Data received(client: [::1]:62244, IMEI: 352094087982671) with duration 3.74 s +2018/09/16 05:58:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:58:06 ruptelaNet.go:278: Sent ACK (client: [::1]:62244, IMEI: 352094087982671) +2018/09/16 05:58:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62244, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 05:58:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:62301) +2018/09/16 05:58:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:58:32 ruptelaNet.go:261: Data received(client: [::1]:62301, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:58:32 ruptelaNet.go:278: Sent ACK (client: [::1]:62301, IMEI: 352094087982671) +2018/09/16 05:58:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:58:35 ruptelaNet.go:261: Data received(client: [::1]:62301, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:58:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:58:35 ruptelaNet.go:278: Sent ACK (client: [::1]:62301, IMEI: 352094087982671) +2018/09/16 05:58:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62301, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 05:59:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62363) +2018/09/16 05:59:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:59:00 ruptelaNet.go:261: Data received(client: [::1]:62363, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:59:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62363, IMEI: 352094089712860) +2018/09/16 05:59:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:62366) +2018/09/16 05:59:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:59:01 ruptelaNet.go:261: Data received(client: [::1]:62366, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 05:59:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62366, IMEI: 352094087982671) +2018/09/16 05:59:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:59:02 ruptelaNet.go:261: Data received(client: [::1]:62363, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 05:59:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:59:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62363, IMEI: 352094089712860) +2018/09/16 05:59:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62363, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 05:59:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:59:04 ruptelaNet.go:261: Data received(client: [::1]:62366, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 05:59:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:59:04 ruptelaNet.go:278: Sent ACK (client: [::1]:62366, IMEI: 352094087982671) +2018/09/16 05:59:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62366, IMEI: 352094087982671) with duration 5.81 s +2018/09/16 05:59:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:62425) +2018/09/16 05:59:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:59:30 ruptelaNet.go:261: Data received(client: [::1]:62425, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 05:59:30 ruptelaNet.go:278: Sent ACK (client: [::1]:62425, IMEI: 352094087982671) +2018/09/16 05:59:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:59:33 ruptelaNet.go:261: Data received(client: [::1]:62425, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 05:59:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:59:33 ruptelaNet.go:278: Sent ACK (client: [::1]:62425, IMEI: 352094087982671) +2018/09/16 05:59:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62425, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 05:59:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:62485) +2018/09/16 06:00:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:00:00 ruptelaNet.go:261: Data received(client: [::1]:62485, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:00:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62485, IMEI: 352094087982671) +2018/09/16 06:00:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62488) +2018/09/16 06:00:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:00:00 ruptelaNet.go:261: Data received(client: [::1]:62488, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:00:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62488, IMEI: 352094089712860) +2018/09/16 06:00:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:00:02 ruptelaNet.go:261: Data received(client: [::1]:62488, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 06:00:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:00:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62488, IMEI: 352094089712860) +2018/09/16 06:00:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:00:02 ruptelaNet.go:261: Data received(client: [::1]:62485, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 06:00:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:00:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62485, IMEI: 352094087982671) +2018/09/16 06:00:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62488, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:00:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62485, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:00:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:62547) +2018/09/16 06:00:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:00:28 ruptelaNet.go:261: Data received(client: [::1]:62547, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 06:00:28 ruptelaNet.go:278: Sent ACK (client: [::1]:62547, IMEI: 352094087982671) +2018/09/16 06:00:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:00:31 ruptelaNet.go:261: Data received(client: [::1]:62547, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:00:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:00:31 ruptelaNet.go:278: Sent ACK (client: [::1]:62547, IMEI: 352094087982671) +2018/09/16 06:00:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62547, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 06:00:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:62607) +2018/09/16 06:00:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:00:58 ruptelaNet.go:261: Data received(client: [::1]:62607, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:00:58 ruptelaNet.go:278: Sent ACK (client: [::1]:62607, IMEI: 352094087982671) +2018/09/16 06:01:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62618) +2018/09/16 06:01:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:01:00 ruptelaNet.go:261: Data received(client: [::1]:62618, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:01:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62618, IMEI: 352094089712860) +2018/09/16 06:01:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:01:01 ruptelaNet.go:261: Data received(client: [::1]:62607, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 06:01:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:01:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62607, IMEI: 352094087982671) +2018/09/16 06:01:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:01:03 ruptelaNet.go:261: Data received(client: [::1]:62618, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 06:01:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:01:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62618, IMEI: 352094089712860) +2018/09/16 06:01:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62607, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 06:01:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62618, IMEI: 352094089712860) with duration 3.58 s +2018/09/16 06:01:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:62671) +2018/09/16 06:01:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:01:26 ruptelaNet.go:261: Data received(client: [::1]:62671, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 06:01:26 ruptelaNet.go:278: Sent ACK (client: [::1]:62671, IMEI: 352094087982671) +2018/09/16 06:01:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:01:29 ruptelaNet.go:261: Data received(client: [::1]:62671, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:01:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:01:29 ruptelaNet.go:278: Sent ACK (client: [::1]:62671, IMEI: 352094087982671) +2018/09/16 06:01:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62671, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:01:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:62726) +2018/09/16 06:01:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:01:55 ruptelaNet.go:261: Data received(client: [::1]:62726, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 06:01:55 ruptelaNet.go:278: Sent ACK (client: [::1]:62726, IMEI: 352094087982671) +2018/09/16 06:01:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:01:58 ruptelaNet.go:261: Data received(client: [::1]:62726, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 06:01:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:01:58 ruptelaNet.go:278: Sent ACK (client: [::1]:62726, IMEI: 352094087982671) +2018/09/16 06:02:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62726, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 06:02:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62740) +2018/09/16 06:02:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:02:00 ruptelaNet.go:261: Data received(client: [::1]:62740, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:02:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62740, IMEI: 352094089712860) +2018/09/16 06:02:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:02:02 ruptelaNet.go:261: Data received(client: [::1]:62740, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:02:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:02:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62740, IMEI: 352094089712860) +2018/09/16 06:02:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62740, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 06:02:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:62787) +2018/09/16 06:02:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:02:24 ruptelaNet.go:261: Data received(client: [::1]:62787, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:02:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62787, IMEI: 352094087982671) +2018/09/16 06:02:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:02:27 ruptelaNet.go:261: Data received(client: [::1]:62787, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 06:02:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:02:27 ruptelaNet.go:278: Sent ACK (client: [::1]:62787, IMEI: 352094087982671) +2018/09/16 06:02:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62787, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:02:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:62847) +2018/09/16 06:02:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:02:53 ruptelaNet.go:261: Data received(client: [::1]:62847, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:02:53 ruptelaNet.go:278: Sent ACK (client: [::1]:62847, IMEI: 352094087982671) +2018/09/16 06:02:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:02:56 ruptelaNet.go:261: Data received(client: [::1]:62847, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:02:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:02:56 ruptelaNet.go:278: Sent ACK (client: [::1]:62847, IMEI: 352094087982671) +2018/09/16 06:02:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62847, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:03:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:62864) +2018/09/16 06:03:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:03:01 ruptelaNet.go:261: Data received(client: [::1]:62864, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:03:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62864, IMEI: 352094089712860) +2018/09/16 06:03:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:03:03 ruptelaNet.go:261: Data received(client: [::1]:62864, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 06:03:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:03:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62864, IMEI: 352094089712860) +2018/09/16 06:03:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62864, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 06:03:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62901) +2018/09/16 06:03:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:03:22 ruptelaNet.go:261: Data received(client: [::1]:62901, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:03:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62901, IMEI: 352094087982671) +2018/09/16 06:03:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:03:25 ruptelaNet.go:261: Data received(client: [::1]:62901, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:03:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:03:25 ruptelaNet.go:278: Sent ACK (client: [::1]:62901, IMEI: 352094087982671) +2018/09/16 06:03:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62901, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 06:03:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:62969) +2018/09/16 06:03:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:03:51 ruptelaNet.go:261: Data received(client: [::1]:62969, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 06:03:51 ruptelaNet.go:278: Sent ACK (client: [::1]:62969, IMEI: 352094087982671) +2018/09/16 06:03:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:03:54 ruptelaNet.go:261: Data received(client: [::1]:62969, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:03:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:03:54 ruptelaNet.go:278: Sent ACK (client: [::1]:62969, IMEI: 352094087982671) +2018/09/16 06:03:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62969, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:04:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:62989) +2018/09/16 06:04:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:04:01 ruptelaNet.go:261: Data received(client: [::1]:62989, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:04:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62989, IMEI: 352094089712860) +2018/09/16 06:04:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:04:03 ruptelaNet.go:261: Data received(client: [::1]:62989, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:04:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:04:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62989, IMEI: 352094089712860) +2018/09/16 06:04:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62989, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 06:04:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:63026) +2018/09/16 06:04:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:04:20 ruptelaNet.go:261: Data received(client: [::1]:63026, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:04:20 ruptelaNet.go:278: Sent ACK (client: [::1]:63026, IMEI: 352094087982671) +2018/09/16 06:04:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:04:23 ruptelaNet.go:261: Data received(client: [::1]:63026, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:04:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:04:23 ruptelaNet.go:278: Sent ACK (client: [::1]:63026, IMEI: 352094087982671) +2018/09/16 06:04:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63026, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:04:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:63087) +2018/09/16 06:04:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:04:49 ruptelaNet.go:261: Data received(client: [::1]:63087, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:04:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63087, IMEI: 352094087982671) +2018/09/16 06:04:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:04:52 ruptelaNet.go:261: Data received(client: [::1]:63087, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:04:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:04:52 ruptelaNet.go:278: Sent ACK (client: [::1]:63087, IMEI: 352094087982671) +2018/09/16 06:04:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63087, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:05:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:63113) +2018/09/16 06:05:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:05:02 ruptelaNet.go:261: Data received(client: [::1]:63113, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:05:02 ruptelaNet.go:278: Sent ACK (client: [::1]:63113, IMEI: 352094089712860) +2018/09/16 06:05:07 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:05:07 ruptelaNet.go:261: Data received(client: [::1]:63113, IMEI: 352094089712860) with duration 5.24 s +2018/09/16 06:05:07 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:05:07 ruptelaNet.go:278: Sent ACK (client: [::1]:63113, IMEI: 352094089712860) +2018/09/16 06:05:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63113, IMEI: 352094089712860) with duration 6.02 s +2018/09/16 06:05:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:63142) +2018/09/16 06:05:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:05:19 ruptelaNet.go:261: Data received(client: [::1]:63142, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 06:05:19 ruptelaNet.go:278: Sent ACK (client: [::1]:63142, IMEI: 352094087982671) +2018/09/16 06:05:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:05:21 ruptelaNet.go:261: Data received(client: [::1]:63142, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:05:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:05:21 ruptelaNet.go:278: Sent ACK (client: [::1]:63142, IMEI: 352094087982671) +2018/09/16 06:05:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63142, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 06:05:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:63205) +2018/09/16 06:05:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:05:48 ruptelaNet.go:261: Data received(client: [::1]:63205, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 06:05:48 ruptelaNet.go:278: Sent ACK (client: [::1]:63205, IMEI: 352094087982671) +2018/09/16 06:05:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:05:50 ruptelaNet.go:261: Data received(client: [::1]:63205, IMEI: 352094087982671) with duration 3.93 s +2018/09/16 06:05:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:05:50 ruptelaNet.go:278: Sent ACK (client: [::1]:63205, IMEI: 352094087982671) +2018/09/16 06:05:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63205, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 06:06:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:63237) +2018/09/16 06:06:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:06:02 ruptelaNet.go:261: Data received(client: [::1]:63237, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:06:02 ruptelaNet.go:278: Sent ACK (client: [::1]:63237, IMEI: 352094089712860) +2018/09/16 06:06:04 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:06:04 ruptelaNet.go:261: Data received(client: [::1]:63237, IMEI: 352094089712860) with duration 2.16 s +2018/09/16 06:06:04 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:06:04 ruptelaNet.go:278: Sent ACK (client: [::1]:63237, IMEI: 352094089712860) +2018/09/16 06:06:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63237, IMEI: 352094089712860) with duration 3.7 s +2018/09/16 06:06:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:63264) +2018/09/16 06:06:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:06:17 ruptelaNet.go:261: Data received(client: [::1]:63264, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:06:17 ruptelaNet.go:278: Sent ACK (client: [::1]:63264, IMEI: 352094087982671) +2018/09/16 06:06:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:06:19 ruptelaNet.go:261: Data received(client: [::1]:63264, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:06:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:06:19 ruptelaNet.go:278: Sent ACK (client: [::1]:63264, IMEI: 352094087982671) +2018/09/16 06:06:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63264, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 06:06:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:63324) +2018/09/16 06:06:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:06:45 ruptelaNet.go:261: Data received(client: [::1]:63324, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:06:45 ruptelaNet.go:278: Sent ACK (client: [::1]:63324, IMEI: 352094087982671) +2018/09/16 06:06:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:06:48 ruptelaNet.go:261: Data received(client: [::1]:63324, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 06:06:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:06:48 ruptelaNet.go:278: Sent ACK (client: [::1]:63324, IMEI: 352094087982671) +2018/09/16 06:06:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63324, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:07:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63360) +2018/09/16 06:07:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:07:01 ruptelaNet.go:261: Data received(client: [::1]:63360, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:07:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63360, IMEI: 352094089712860) +2018/09/16 06:07:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:07:03 ruptelaNet.go:261: Data received(client: [::1]:63360, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 06:07:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:07:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63360, IMEI: 352094089712860) +2018/09/16 06:07:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63360, IMEI: 352094089712860) with duration 2.88 s +2018/09/16 06:07:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:63386) +2018/09/16 06:07:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:07:15 ruptelaNet.go:261: Data received(client: [::1]:63386, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 06:07:15 ruptelaNet.go:278: Sent ACK (client: [::1]:63386, IMEI: 352094087982671) +2018/09/16 06:07:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:07:17 ruptelaNet.go:261: Data received(client: [::1]:63386, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:07:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:07:17 ruptelaNet.go:278: Sent ACK (client: [::1]:63386, IMEI: 352094087982671) +2018/09/16 06:07:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63386, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 06:07:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:63437) +2018/09/16 06:07:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:07:43 ruptelaNet.go:261: Data received(client: [::1]:63437, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:07:43 ruptelaNet.go:278: Sent ACK (client: [::1]:63437, IMEI: 352094087982671) +2018/09/16 06:07:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:07:46 ruptelaNet.go:261: Data received(client: [::1]:63437, IMEI: 352094087982671) with duration 3.61 s +2018/09/16 06:07:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:07:46 ruptelaNet.go:278: Sent ACK (client: [::1]:63437, IMEI: 352094087982671) +2018/09/16 06:07:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63437, IMEI: 352094087982671) with duration 5.75 s +2018/09/16 06:08:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63477) +2018/09/16 06:08:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:08:01 ruptelaNet.go:261: Data received(client: [::1]:63477, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:08:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63477, IMEI: 352094089712860) +2018/09/16 06:08:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:08:03 ruptelaNet.go:261: Data received(client: [::1]:63477, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 06:08:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:08:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63477, IMEI: 352094089712860) +2018/09/16 06:08:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63477, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 06:08:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:63498) +2018/09/16 06:08:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:08:13 ruptelaNet.go:261: Data received(client: [::1]:63498, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:08:13 ruptelaNet.go:278: Sent ACK (client: [::1]:63498, IMEI: 352094087982671) +2018/09/16 06:08:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:08:16 ruptelaNet.go:261: Data received(client: [::1]:63498, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:08:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:08:16 ruptelaNet.go:278: Sent ACK (client: [::1]:63498, IMEI: 352094087982671) +2018/09/16 06:08:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63498, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:08:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:63556) +2018/09/16 06:08:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:08:41 ruptelaNet.go:261: Data received(client: [::1]:63556, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 06:08:41 ruptelaNet.go:278: Sent ACK (client: [::1]:63556, IMEI: 352094087982671) +2018/09/16 06:08:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:08:44 ruptelaNet.go:261: Data received(client: [::1]:63556, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:08:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:08:44 ruptelaNet.go:278: Sent ACK (client: [::1]:63556, IMEI: 352094087982671) +2018/09/16 06:08:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63556, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:09:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63596) +2018/09/16 06:09:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:09:01 ruptelaNet.go:261: Data received(client: [::1]:63596, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:09:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63596, IMEI: 352094089712860) +2018/09/16 06:09:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:09:03 ruptelaNet.go:261: Data received(client: [::1]:63596, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:09:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:09:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63596, IMEI: 352094089712860) +2018/09/16 06:09:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63596, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:09:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:63614) +2018/09/16 06:09:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:09:10 ruptelaNet.go:261: Data received(client: [::1]:63614, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:09:10 ruptelaNet.go:278: Sent ACK (client: [::1]:63614, IMEI: 352094087982671) +2018/09/16 06:09:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:09:13 ruptelaNet.go:261: Data received(client: [::1]:63614, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:09:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:09:13 ruptelaNet.go:278: Sent ACK (client: [::1]:63614, IMEI: 352094087982671) +2018/09/16 06:09:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63614, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:09:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:63672) +2018/09/16 06:09:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:09:39 ruptelaNet.go:261: Data received(client: [::1]:63672, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:09:39 ruptelaNet.go:278: Sent ACK (client: [::1]:63672, IMEI: 352094087982671) +2018/09/16 06:09:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:09:42 ruptelaNet.go:261: Data received(client: [::1]:63672, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 06:09:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:09:42 ruptelaNet.go:278: Sent ACK (client: [::1]:63672, IMEI: 352094087982671) +2018/09/16 06:09:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63672, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:10:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63723) +2018/09/16 06:10:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:10:01 ruptelaNet.go:261: Data received(client: [::1]:63723, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:10:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63723, IMEI: 352094089712860) +2018/09/16 06:10:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:10:03 ruptelaNet.go:261: Data received(client: [::1]:63723, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:10:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:10:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63723, IMEI: 352094089712860) +2018/09/16 06:10:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63723, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 06:10:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:63735) +2018/09/16 06:10:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:10:08 ruptelaNet.go:261: Data received(client: [::1]:63735, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:10:08 ruptelaNet.go:278: Sent ACK (client: [::1]:63735, IMEI: 352094087982671) +2018/09/16 06:10:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:10:11 ruptelaNet.go:261: Data received(client: [::1]:63735, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 06:10:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:10:11 ruptelaNet.go:278: Sent ACK (client: [::1]:63735, IMEI: 352094087982671) +2018/09/16 06:10:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63735, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 06:10:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:63796) +2018/09/16 06:10:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:10:37 ruptelaNet.go:261: Data received(client: [::1]:63796, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 06:10:37 ruptelaNet.go:278: Sent ACK (client: [::1]:63796, IMEI: 352094087982671) +2018/09/16 06:10:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:10:40 ruptelaNet.go:261: Data received(client: [::1]:63796, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 06:10:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:10:40 ruptelaNet.go:278: Sent ACK (client: [::1]:63796, IMEI: 352094087982671) +2018/09/16 06:10:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63796, IMEI: 352094087982671) with duration 6 s +2018/09/16 06:11:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63846) +2018/09/16 06:11:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:11:01 ruptelaNet.go:261: Data received(client: [::1]:63846, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:11:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63846, IMEI: 352094089712860) +2018/09/16 06:11:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:11:03 ruptelaNet.go:261: Data received(client: [::1]:63846, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 06:11:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:11:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63846, IMEI: 352094089712860) +2018/09/16 06:11:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63846, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:11:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:63856) +2018/09/16 06:11:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:11:06 ruptelaNet.go:261: Data received(client: [::1]:63856, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 06:11:06 ruptelaNet.go:278: Sent ACK (client: [::1]:63856, IMEI: 352094087982671) +2018/09/16 06:11:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:11:09 ruptelaNet.go:261: Data received(client: [::1]:63856, IMEI: 352094087982671) with duration 4.12 s +2018/09/16 06:11:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:11:09 ruptelaNet.go:278: Sent ACK (client: [::1]:63856, IMEI: 352094087982671) +2018/09/16 06:11:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63856, IMEI: 352094087982671) with duration 8.66 s +2018/09/16 06:11:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:63916) +2018/09/16 06:11:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:11:35 ruptelaNet.go:261: Data received(client: [::1]:63916, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 06:11:35 ruptelaNet.go:278: Sent ACK (client: [::1]:63916, IMEI: 352094087982671) +2018/09/16 06:11:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:11:39 ruptelaNet.go:261: Data received(client: [::1]:63916, IMEI: 352094087982671) with duration 4.28 s +2018/09/16 06:11:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:11:39 ruptelaNet.go:278: Sent ACK (client: [::1]:63916, IMEI: 352094087982671) +2018/09/16 06:11:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63916, IMEI: 352094087982671) with duration 6.43 s +2018/09/16 06:12:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63975) +2018/09/16 06:12:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:12:01 ruptelaNet.go:261: Data received(client: [::1]:63975, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:12:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63975, IMEI: 352094089712860) +2018/09/16 06:12:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:12:03 ruptelaNet.go:261: Data received(client: [::1]:63975, IMEI: 352094089712860) with duration 2 s +2018/09/16 06:12:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:12:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63975, IMEI: 352094089712860) +2018/09/16 06:12:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:63981) +2018/09/16 06:12:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63975, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 06:12:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:12:04 ruptelaNet.go:261: Data received(client: [::1]:63981, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:12:04 ruptelaNet.go:278: Sent ACK (client: [::1]:63981, IMEI: 352094087982671) +2018/09/16 06:12:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:12:07 ruptelaNet.go:261: Data received(client: [::1]:63981, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 06:12:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:12:07 ruptelaNet.go:278: Sent ACK (client: [::1]:63981, IMEI: 352094087982671) +2018/09/16 06:12:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63981, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 06:12:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:64040) +2018/09/16 06:12:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:12:33 ruptelaNet.go:261: Data received(client: [::1]:64040, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:12:33 ruptelaNet.go:278: Sent ACK (client: [::1]:64040, IMEI: 352094087982671) +2018/09/16 06:12:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:12:36 ruptelaNet.go:261: Data received(client: [::1]:64040, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 06:12:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:12:36 ruptelaNet.go:278: Sent ACK (client: [::1]:64040, IMEI: 352094087982671) +2018/09/16 06:12:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64040, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 06:13:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:64098) +2018/09/16 06:13:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:64097) +2018/09/16 06:13:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:13:01 ruptelaNet.go:261: Data received(client: [::1]:64098, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:13:01 ruptelaNet.go:278: Sent ACK (client: [::1]:64098, IMEI: 352094089712860) +2018/09/16 06:13:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:13:02 ruptelaNet.go:261: Data received(client: [::1]:64097, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:13:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64097, IMEI: 352094087982671) +2018/09/16 06:13:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:13:03 ruptelaNet.go:261: Data received(client: [::1]:64098, IMEI: 352094089712860) with duration 2.07 s +2018/09/16 06:13:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:13:03 ruptelaNet.go:278: Sent ACK (client: [::1]:64098, IMEI: 352094089712860) +2018/09/16 06:13:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64098, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:13:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:13:05 ruptelaNet.go:261: Data received(client: [::1]:64097, IMEI: 352094087982671) with duration 3.44 s +2018/09/16 06:13:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:13:05 ruptelaNet.go:278: Sent ACK (client: [::1]:64097, IMEI: 352094087982671) +2018/09/16 06:13:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64097, IMEI: 352094087982671) with duration 5.5 s +2018/09/16 06:13:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:64152) +2018/09/16 06:13:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:13:30 ruptelaNet.go:261: Data received(client: [::1]:64152, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 06:13:30 ruptelaNet.go:278: Sent ACK (client: [::1]:64152, IMEI: 352094087982671) +2018/09/16 06:13:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:13:33 ruptelaNet.go:261: Data received(client: [::1]:64152, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:13:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:13:33 ruptelaNet.go:278: Sent ACK (client: [::1]:64152, IMEI: 352094087982671) +2018/09/16 06:13:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64152, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:13:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:64215) +2018/09/16 06:14:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:14:00 ruptelaNet.go:261: Data received(client: [::1]:64215, IMEI: 352094087982671) with duration 1.17 s +2018/09/16 06:14:00 ruptelaNet.go:278: Sent ACK (client: [::1]:64215, IMEI: 352094087982671) +2018/09/16 06:14:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:64221) +2018/09/16 06:14:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:14:02 ruptelaNet.go:261: Data received(client: [::1]:64221, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:14:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64221, IMEI: 352094089712860) +2018/09/16 06:14:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:14:02 ruptelaNet.go:261: Data received(client: [::1]:64215, IMEI: 352094087982671) with duration 3.56 s +2018/09/16 06:14:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:14:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64215, IMEI: 352094087982671) +2018/09/16 06:14:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64215, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 06:14:04 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:14:04 ruptelaNet.go:261: Data received(client: [::1]:64221, IMEI: 352094089712860) with duration 2.88 s +2018/09/16 06:14:05 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:14:05 ruptelaNet.go:278: Sent ACK (client: [::1]:64221, IMEI: 352094089712860) +2018/09/16 06:14:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64221, IMEI: 352094089712860) with duration 5.32 s +2018/09/16 06:14:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:64278) +2018/09/16 06:14:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:14:28 ruptelaNet.go:261: Data received(client: [::1]:64278, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 06:14:28 ruptelaNet.go:278: Sent ACK (client: [::1]:64278, IMEI: 352094087982671) +2018/09/16 06:14:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:14:30 ruptelaNet.go:261: Data received(client: [::1]:64278, IMEI: 352094087982671) with duration 3.75 s +2018/09/16 06:14:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:14:30 ruptelaNet.go:278: Sent ACK (client: [::1]:64278, IMEI: 352094087982671) +2018/09/16 06:14:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64278, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 06:14:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:64337) +2018/09/16 06:14:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:14:56 ruptelaNet.go:261: Data received(client: [::1]:64337, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 06:14:56 ruptelaNet.go:278: Sent ACK (client: [::1]:64337, IMEI: 352094087982671) +2018/09/16 06:14:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:14:59 ruptelaNet.go:261: Data received(client: [::1]:64337, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:14:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:14:59 ruptelaNet.go:278: Sent ACK (client: [::1]:64337, IMEI: 352094087982671) +2018/09/16 06:15:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64337, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 06:15:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:64348) +2018/09/16 06:15:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:15:02 ruptelaNet.go:261: Data received(client: [::1]:64348, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:15:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64348, IMEI: 352094089712860) +2018/09/16 06:15:04 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:15:04 ruptelaNet.go:261: Data received(client: [::1]:64348, IMEI: 352094089712860) with duration 2.01 s +2018/09/16 06:15:04 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:15:04 ruptelaNet.go:278: Sent ACK (client: [::1]:64348, IMEI: 352094089712860) +2018/09/16 06:15:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64348, IMEI: 352094089712860) with duration 2.72 s +2018/09/16 06:15:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:64395) +2018/09/16 06:15:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:15:25 ruptelaNet.go:261: Data received(client: [::1]:64395, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:15:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64395, IMEI: 352094087982671) +2018/09/16 06:15:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:15:28 ruptelaNet.go:261: Data received(client: [::1]:64395, IMEI: 352094087982671) with duration 3.56 s +2018/09/16 06:15:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:15:28 ruptelaNet.go:278: Sent ACK (client: [::1]:64395, IMEI: 352094087982671) +2018/09/16 06:15:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64395, IMEI: 352094087982671) with duration 6.53 s +2018/09/16 06:15:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:64451) +2018/09/16 06:15:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:15:54 ruptelaNet.go:261: Data received(client: [::1]:64451, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:15:54 ruptelaNet.go:278: Sent ACK (client: [::1]:64451, IMEI: 352094087982671) +2018/09/16 06:15:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:15:58 ruptelaNet.go:261: Data received(client: [::1]:64451, IMEI: 352094087982671) with duration 4.27 s +2018/09/16 06:15:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:15:58 ruptelaNet.go:278: Sent ACK (client: [::1]:64451, IMEI: 352094087982671) +2018/09/16 06:16:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64451, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 06:16:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:64473) +2018/09/16 06:16:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:16:03 ruptelaNet.go:261: Data received(client: [::1]:64473, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:16:03 ruptelaNet.go:278: Sent ACK (client: [::1]:64473, IMEI: 352094089712860) +2018/09/16 06:16:05 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:16:05 ruptelaNet.go:261: Data received(client: [::1]:64473, IMEI: 352094089712860) with duration 2.21 s +2018/09/16 06:16:05 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:16:05 ruptelaNet.go:278: Sent ACK (client: [::1]:64473, IMEI: 352094089712860) +2018/09/16 06:16:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64473, IMEI: 352094089712860) with duration 2.95 s +2018/09/16 06:16:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:64514) +2018/09/16 06:16:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:16:24 ruptelaNet.go:261: Data received(client: [::1]:64514, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:16:24 ruptelaNet.go:278: Sent ACK (client: [::1]:64514, IMEI: 352094087982671) +2018/09/16 06:16:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:16:26 ruptelaNet.go:261: Data received(client: [::1]:64514, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 06:16:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:16:26 ruptelaNet.go:278: Sent ACK (client: [::1]:64514, IMEI: 352094087982671) +2018/09/16 06:16:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64514, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 06:16:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:64569) +2018/09/16 06:16:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:16:51 ruptelaNet.go:261: Data received(client: [::1]:64569, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:16:51 ruptelaNet.go:278: Sent ACK (client: [::1]:64569, IMEI: 352094087982671) +2018/09/16 06:16:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:16:54 ruptelaNet.go:261: Data received(client: [::1]:64569, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:16:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:16:54 ruptelaNet.go:278: Sent ACK (client: [::1]:64569, IMEI: 352094087982671) +2018/09/16 06:16:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64569, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 06:17:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:64592) +2018/09/16 06:17:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:17:02 ruptelaNet.go:261: Data received(client: [::1]:64592, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:17:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64592, IMEI: 352094089712860) +2018/09/16 06:17:04 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:17:04 ruptelaNet.go:261: Data received(client: [::1]:64592, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 06:17:04 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:17:04 ruptelaNet.go:278: Sent ACK (client: [::1]:64592, IMEI: 352094089712860) +2018/09/16 06:17:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64592, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:17:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:64626) +2018/09/16 06:17:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:17:20 ruptelaNet.go:261: Data received(client: [::1]:64626, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:17:20 ruptelaNet.go:278: Sent ACK (client: [::1]:64626, IMEI: 352094087982671) +2018/09/16 06:17:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:17:23 ruptelaNet.go:261: Data received(client: [::1]:64626, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 06:17:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:17:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64626, IMEI: 352094087982671) +2018/09/16 06:17:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64626, IMEI: 352094087982671) with duration 6.17 s +2018/09/16 06:17:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64687) +2018/09/16 06:17:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:17:49 ruptelaNet.go:261: Data received(client: [::1]:64687, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:17:49 ruptelaNet.go:278: Sent ACK (client: [::1]:64687, IMEI: 352094087982671) +2018/09/16 06:17:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:17:52 ruptelaNet.go:261: Data received(client: [::1]:64687, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:17:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:17:52 ruptelaNet.go:278: Sent ACK (client: [::1]:64687, IMEI: 352094087982671) +2018/09/16 06:17:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64687, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 06:18:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:64717) +2018/09/16 06:18:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:18:02 ruptelaNet.go:261: Data received(client: [::1]:64717, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:18:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64717, IMEI: 352094089712860) +2018/09/16 06:18:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:64745) +2018/09/16 06:18:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:18:18 ruptelaNet.go:261: Data received(client: [::1]:64745, IMEI: 352094087982671) with duration 0.85 s +2018/09/16 06:18:18 ruptelaNet.go:278: Sent ACK (client: [::1]:64745, IMEI: 352094087982671) +2018/09/16 06:18:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:18:21 ruptelaNet.go:261: Data received(client: [::1]:64745, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:18:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:18:21 ruptelaNet.go:278: Sent ACK (client: [::1]:64745, IMEI: 352094087982671) +2018/09/16 06:18:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64745, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:18:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:64808) +2018/09/16 06:18:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:18:47 ruptelaNet.go:261: Data received(client: [::1]:64808, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 06:18:47 ruptelaNet.go:278: Sent ACK (client: [::1]:64808, IMEI: 352094087982671) +2018/09/16 06:18:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:18:50 ruptelaNet.go:261: Data received(client: [::1]:64808, IMEI: 352094087982671) with duration 3.72 s +2018/09/16 06:18:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:18:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64808, IMEI: 352094087982671) +2018/09/16 06:18:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64808, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 06:19:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:64865) +2018/09/16 06:19:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:19:16 ruptelaNet.go:261: Data received(client: [::1]:64865, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 06:19:16 ruptelaNet.go:278: Sent ACK (client: [::1]:64865, IMEI: 352094087982671) +2018/09/16 06:19:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:19:19 ruptelaNet.go:261: Data received(client: [::1]:64865, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:19:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:19:19 ruptelaNet.go:278: Sent ACK (client: [::1]:64865, IMEI: 352094087982671) +2018/09/16 06:19:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64865, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 06:19:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:64918) +2018/09/16 06:19:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:19:40 ruptelaNet.go:261: Data received(client: [::1]:64918, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:19:40 ruptelaNet.go:278: Sent ACK (client: [::1]:64918, IMEI: 352094089712860) +2018/09/16 06:19:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:19:42 ruptelaNet.go:261: Data received(client: [::1]:64918, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:19:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:19:42 ruptelaNet.go:278: Sent ACK (client: [::1]:64918, IMEI: 352094089712860) +2018/09/16 06:19:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64918, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 06:19:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:64925) +2018/09/16 06:19:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:19:45 ruptelaNet.go:261: Data received(client: [::1]:64925, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 06:19:45 ruptelaNet.go:278: Sent ACK (client: [::1]:64925, IMEI: 352094087982671) +2018/09/16 06:19:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:19:48 ruptelaNet.go:261: Data received(client: [::1]:64925, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:19:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:19:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64925, IMEI: 352094087982671) +2018/09/16 06:19:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64925, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:20:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:64978) +2018/09/16 06:20:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:20:10 ruptelaNet.go:261: Data received(client: [::1]:64978, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:20:10 ruptelaNet.go:278: Sent ACK (client: [::1]:64978, IMEI: 352094089712860) +2018/09/16 06:20:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:20:13 ruptelaNet.go:261: Data received(client: [::1]:64978, IMEI: 352094089712860) with duration 2.26 s +2018/09/16 06:20:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:20:13 ruptelaNet.go:278: Sent ACK (client: [::1]:64978, IMEI: 352094089712860) +2018/09/16 06:20:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:64985) +2018/09/16 06:20:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64978, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 06:20:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:20:14 ruptelaNet.go:261: Data received(client: [::1]:64985, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:20:14 ruptelaNet.go:278: Sent ACK (client: [::1]:64985, IMEI: 352094087982671) +2018/09/16 06:20:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:20:17 ruptelaNet.go:261: Data received(client: [::1]:64985, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:20:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:20:17 ruptelaNet.go:278: Sent ACK (client: [::1]:64985, IMEI: 352094087982671) +2018/09/16 06:20:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64985, IMEI: 352094087982671) with duration 6 s +2018/09/16 06:20:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:65048) +2018/09/16 06:20:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:20:43 ruptelaNet.go:261: Data received(client: [::1]:65048, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 06:20:43 ruptelaNet.go:278: Sent ACK (client: [::1]:65048, IMEI: 352094087982671) +2018/09/16 06:20:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:20:46 ruptelaNet.go:261: Data received(client: [::1]:65048, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 06:20:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:20:46 ruptelaNet.go:278: Sent ACK (client: [::1]:65048, IMEI: 352094087982671) +2018/09/16 06:20:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65048, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 06:21:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:65104) +2018/09/16 06:21:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:21:09 ruptelaNet.go:261: Data received(client: [::1]:65104, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:21:09 ruptelaNet.go:278: Sent ACK (client: [::1]:65104, IMEI: 352094089712860) +2018/09/16 06:21:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:65111) +2018/09/16 06:21:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:21:12 ruptelaNet.go:261: Data received(client: [::1]:65104, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 06:21:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:21:12 ruptelaNet.go:278: Sent ACK (client: [::1]:65104, IMEI: 352094089712860) +2018/09/16 06:21:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65104, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:21:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:21:13 ruptelaNet.go:261: Data received(client: [::1]:65111, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 06:21:13 ruptelaNet.go:278: Sent ACK (client: [::1]:65111, IMEI: 352094087982671) +2018/09/16 06:21:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:21:15 ruptelaNet.go:261: Data received(client: [::1]:65111, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 06:21:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:21:15 ruptelaNet.go:278: Sent ACK (client: [::1]:65111, IMEI: 352094087982671) +2018/09/16 06:21:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65111, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 06:21:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:65169) +2018/09/16 06:21:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:21:41 ruptelaNet.go:261: Data received(client: [::1]:65169, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:21:41 ruptelaNet.go:278: Sent ACK (client: [::1]:65169, IMEI: 352094087982671) +2018/09/16 06:21:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:21:44 ruptelaNet.go:261: Data received(client: [::1]:65169, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 06:21:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:21:44 ruptelaNet.go:278: Sent ACK (client: [::1]:65169, IMEI: 352094087982671) +2018/09/16 06:21:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65169, IMEI: 352094087982671) with duration 5.81 s +2018/09/16 06:22:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65229) +2018/09/16 06:22:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65230) +2018/09/16 06:22:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:22:10 ruptelaNet.go:261: Data received(client: [::1]:65230, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:22:10 ruptelaNet.go:278: Sent ACK (client: [::1]:65230, IMEI: 352094089712860) +2018/09/16 06:22:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:22:10 ruptelaNet.go:261: Data received(client: [::1]:65229, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 06:22:10 ruptelaNet.go:278: Sent ACK (client: [::1]:65229, IMEI: 352094087982671) +2018/09/16 06:22:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:22:12 ruptelaNet.go:261: Data received(client: [::1]:65230, IMEI: 352094089712860) with duration 2.31 s +2018/09/16 06:22:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:22:12 ruptelaNet.go:278: Sent ACK (client: [::1]:65230, IMEI: 352094089712860) +2018/09/16 06:22:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65230, IMEI: 352094089712860) with duration 3.13 s +2018/09/16 06:22:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:22:14 ruptelaNet.go:261: Data received(client: [::1]:65229, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 06:22:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:22:14 ruptelaNet.go:278: Sent ACK (client: [::1]:65229, IMEI: 352094087982671) +2018/09/16 06:22:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65229, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 06:22:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64717, IMEI: 352094089712860) with duration 255.51 s +2018/09/16 06:22:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:65288) +2018/09/16 06:22:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:22:39 ruptelaNet.go:261: Data received(client: [::1]:65288, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 06:22:39 ruptelaNet.go:278: Sent ACK (client: [::1]:65288, IMEI: 352094087982671) +2018/09/16 06:22:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:22:43 ruptelaNet.go:261: Data received(client: [::1]:65288, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 06:22:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:22:43 ruptelaNet.go:278: Sent ACK (client: [::1]:65288, IMEI: 352094087982671) +2018/09/16 06:22:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65288, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 06:23:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:65349) +2018/09/16 06:23:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:23:08 ruptelaNet.go:261: Data received(client: [::1]:65349, IMEI: 352094087982671) with duration 0.87 s +2018/09/16 06:23:08 ruptelaNet.go:278: Sent ACK (client: [::1]:65349, IMEI: 352094087982671) +2018/09/16 06:23:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65355) +2018/09/16 06:23:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:23:10 ruptelaNet.go:261: Data received(client: [::1]:65355, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:23:10 ruptelaNet.go:278: Sent ACK (client: [::1]:65355, IMEI: 352094089712860) +2018/09/16 06:23:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:23:11 ruptelaNet.go:261: Data received(client: [::1]:65349, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 06:23:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:23:11 ruptelaNet.go:278: Sent ACK (client: [::1]:65349, IMEI: 352094087982671) +2018/09/16 06:23:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:23:12 ruptelaNet.go:261: Data received(client: [::1]:65355, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:23:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:23:12 ruptelaNet.go:278: Sent ACK (client: [::1]:65355, IMEI: 352094089712860) +2018/09/16 06:23:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65355, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:23:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65349, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 06:23:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:65404) +2018/09/16 06:23:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:23:37 ruptelaNet.go:261: Data received(client: [::1]:65404, IMEI: 352094087982671) with duration 0.74 s +2018/09/16 06:23:37 ruptelaNet.go:278: Sent ACK (client: [::1]:65404, IMEI: 352094087982671) +2018/09/16 06:23:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:23:41 ruptelaNet.go:261: Data received(client: [::1]:65404, IMEI: 352094087982671) with duration 4.02 s +2018/09/16 06:23:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:23:41 ruptelaNet.go:278: Sent ACK (client: [::1]:65404, IMEI: 352094087982671) +2018/09/16 06:23:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65404, IMEI: 352094087982671) with duration 6.17 s +2018/09/16 06:24:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:65468) +2018/09/16 06:24:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:24:07 ruptelaNet.go:261: Data received(client: [::1]:65468, IMEI: 352094087982671) with duration 1.17 s +2018/09/16 06:24:07 ruptelaNet.go:278: Sent ACK (client: [::1]:65468, IMEI: 352094087982671) +2018/09/16 06:24:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:24:09 ruptelaNet.go:261: Data received(client: [::1]:65468, IMEI: 352094087982671) with duration 4 s +2018/09/16 06:24:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:24:09 ruptelaNet.go:278: Sent ACK (client: [::1]:65468, IMEI: 352094087982671) +2018/09/16 06:24:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65475) +2018/09/16 06:24:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:24:10 ruptelaNet.go:261: Data received(client: [::1]:65475, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:24:10 ruptelaNet.go:278: Sent ACK (client: [::1]:65475, IMEI: 352094089712860) +2018/09/16 06:24:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65468, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:24:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:24:12 ruptelaNet.go:261: Data received(client: [::1]:65475, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 06:24:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:24:12 ruptelaNet.go:278: Sent ACK (client: [::1]:65475, IMEI: 352094089712860) +2018/09/16 06:24:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65475, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 06:24:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:65527) +2018/09/16 06:24:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:24:35 ruptelaNet.go:261: Data received(client: [::1]:65527, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 06:24:35 ruptelaNet.go:278: Sent ACK (client: [::1]:65527, IMEI: 352094087982671) +2018/09/16 06:24:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:24:39 ruptelaNet.go:261: Data received(client: [::1]:65527, IMEI: 352094087982671) with duration 4.23 s +2018/09/16 06:24:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:24:39 ruptelaNet.go:278: Sent ACK (client: [::1]:65527, IMEI: 352094087982671) +2018/09/16 06:24:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65527, IMEI: 352094087982671) with duration 6.37 s +2018/09/16 06:25:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:49207) +2018/09/16 06:25:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:25:05 ruptelaNet.go:261: Data received(client: [::1]:49207, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:25:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49207, IMEI: 352094087982671) +2018/09/16 06:25:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:25:07 ruptelaNet.go:261: Data received(client: [::1]:49207, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:25:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:25:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49207, IMEI: 352094087982671) +2018/09/16 06:25:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49207, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:25:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:49222) +2018/09/16 06:25:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:25:11 ruptelaNet.go:261: Data received(client: [::1]:49222, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:25:11 ruptelaNet.go:278: Sent ACK (client: [::1]:49222, IMEI: 352094089712860) +2018/09/16 06:25:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:25:13 ruptelaNet.go:261: Data received(client: [::1]:49222, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 06:25:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:25:13 ruptelaNet.go:278: Sent ACK (client: [::1]:49222, IMEI: 352094089712860) +2018/09/16 06:25:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49222, IMEI: 352094089712860) with duration 3.79 s +2018/09/16 06:25:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:49269) +2018/09/16 06:25:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:25:34 ruptelaNet.go:261: Data received(client: [::1]:49269, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:25:34 ruptelaNet.go:278: Sent ACK (client: [::1]:49269, IMEI: 352094087982671) +2018/09/16 06:25:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:25:37 ruptelaNet.go:261: Data received(client: [::1]:49269, IMEI: 352094087982671) with duration 4.14 s +2018/09/16 06:25:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:25:37 ruptelaNet.go:278: Sent ACK (client: [::1]:49269, IMEI: 352094087982671) +2018/09/16 06:25:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49269, IMEI: 352094087982671) with duration 6.25 s +2018/09/16 06:26:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:49328) +2018/09/16 06:26:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:26:03 ruptelaNet.go:261: Data received(client: [::1]:49328, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:26:03 ruptelaNet.go:278: Sent ACK (client: [::1]:49328, IMEI: 352094087982671) +2018/09/16 06:26:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:26:05 ruptelaNet.go:261: Data received(client: [::1]:49328, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:26:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:26:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49328, IMEI: 352094087982671) +2018/09/16 06:26:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49328, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:26:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:49349) +2018/09/16 06:26:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:26:10 ruptelaNet.go:261: Data received(client: [::1]:49349, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:26:10 ruptelaNet.go:278: Sent ACK (client: [::1]:49349, IMEI: 352094089712860) +2018/09/16 06:26:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:26:12 ruptelaNet.go:261: Data received(client: [::1]:49349, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 06:26:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:26:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49349, IMEI: 352094089712860) +2018/09/16 06:26:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49349, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:26:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:49391) +2018/09/16 06:26:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:26:31 ruptelaNet.go:261: Data received(client: [::1]:49391, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:26:31 ruptelaNet.go:278: Sent ACK (client: [::1]:49391, IMEI: 352094087982671) +2018/09/16 06:26:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:26:34 ruptelaNet.go:261: Data received(client: [::1]:49391, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:26:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:26:34 ruptelaNet.go:278: Sent ACK (client: [::1]:49391, IMEI: 352094087982671) +2018/09/16 06:26:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49391, IMEI: 352094087982671) with duration 6.28 s +2018/09/16 06:27:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:49452) +2018/09/16 06:27:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:27:00 ruptelaNet.go:261: Data received(client: [::1]:49452, IMEI: 352094087982671) with duration 0.71 s +2018/09/16 06:27:00 ruptelaNet.go:278: Sent ACK (client: [::1]:49452, IMEI: 352094087982671) +2018/09/16 06:27:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:27:03 ruptelaNet.go:261: Data received(client: [::1]:49452, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 06:27:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:27:03 ruptelaNet.go:278: Sent ACK (client: [::1]:49452, IMEI: 352094087982671) +2018/09/16 06:27:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49452, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:27:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:49478) +2018/09/16 06:27:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:27:10 ruptelaNet.go:261: Data received(client: [::1]:49478, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:27:10 ruptelaNet.go:278: Sent ACK (client: [::1]:49478, IMEI: 352094089712860) +2018/09/16 06:27:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:27:12 ruptelaNet.go:261: Data received(client: [::1]:49478, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 06:27:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:27:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49478, IMEI: 352094089712860) +2018/09/16 06:27:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49478, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 06:27:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:49514) +2018/09/16 06:27:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:27:30 ruptelaNet.go:261: Data received(client: [::1]:49514, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:27:30 ruptelaNet.go:278: Sent ACK (client: [::1]:49514, IMEI: 352094087982671) +2018/09/16 06:27:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:27:32 ruptelaNet.go:261: Data received(client: [::1]:49514, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:27:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:27:32 ruptelaNet.go:278: Sent ACK (client: [::1]:49514, IMEI: 352094087982671) +2018/09/16 06:27:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49514, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:27:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:49569) +2018/09/16 06:27:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:27:58 ruptelaNet.go:261: Data received(client: [::1]:49569, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 06:27:58 ruptelaNet.go:278: Sent ACK (client: [::1]:49569, IMEI: 352094087982671) +2018/09/16 06:28:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:28:01 ruptelaNet.go:261: Data received(client: [::1]:49569, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:28:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:28:01 ruptelaNet.go:278: Sent ACK (client: [::1]:49569, IMEI: 352094087982671) +2018/09/16 06:28:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49569, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 06:28:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:49590) +2018/09/16 06:28:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:28:11 ruptelaNet.go:261: Data received(client: [::1]:49590, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 06:28:11 ruptelaNet.go:278: Sent ACK (client: [::1]:49590, IMEI: 352094089712860) +2018/09/16 06:28:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:28:12 ruptelaNet.go:261: Data received(client: [::1]:49590, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 06:28:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:28:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49590, IMEI: 352094089712860) +2018/09/16 06:28:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49590, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:28:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:49626) +2018/09/16 06:28:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:28:28 ruptelaNet.go:261: Data received(client: [::1]:49626, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:28:28 ruptelaNet.go:278: Sent ACK (client: [::1]:49626, IMEI: 352094087982671) +2018/09/16 06:28:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:28:31 ruptelaNet.go:261: Data received(client: [::1]:49626, IMEI: 352094087982671) with duration 4.43 s +2018/09/16 06:28:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:28:31 ruptelaNet.go:278: Sent ACK (client: [::1]:49626, IMEI: 352094087982671) +2018/09/16 06:28:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49626, IMEI: 352094087982671) with duration 6.4 s +2018/09/16 06:28:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:49686) +2018/09/16 06:28:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:28:56 ruptelaNet.go:261: Data received(client: [::1]:49686, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 06:28:56 ruptelaNet.go:278: Sent ACK (client: [::1]:49686, IMEI: 352094087982671) +2018/09/16 06:28:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:28:59 ruptelaNet.go:261: Data received(client: [::1]:49686, IMEI: 352094087982671) with duration 4.1 s +2018/09/16 06:28:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:28:59 ruptelaNet.go:278: Sent ACK (client: [::1]:49686, IMEI: 352094087982671) +2018/09/16 06:29:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49686, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 06:29:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:49718) +2018/09/16 06:29:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:29:10 ruptelaNet.go:261: Data received(client: [::1]:49718, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:29:10 ruptelaNet.go:278: Sent ACK (client: [::1]:49718, IMEI: 352094089712860) +2018/09/16 06:29:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:29:12 ruptelaNet.go:261: Data received(client: [::1]:49718, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 06:29:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:29:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49718, IMEI: 352094089712860) +2018/09/16 06:29:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49718, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 06:29:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49746) +2018/09/16 06:29:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:29:25 ruptelaNet.go:261: Data received(client: [::1]:49746, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 06:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:49746, IMEI: 352094087982671) +2018/09/16 06:29:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:29:29 ruptelaNet.go:261: Data received(client: [::1]:49746, IMEI: 352094087982671) with duration 4.5 s +2018/09/16 06:29:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:29:29 ruptelaNet.go:278: Sent ACK (client: [::1]:49746, IMEI: 352094087982671) +2018/09/16 06:29:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49746, IMEI: 352094087982671) with duration 6.56 s +2018/09/16 06:29:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:49808) +2018/09/16 06:29:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:29:54 ruptelaNet.go:261: Data received(client: [::1]:49808, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 06:29:54 ruptelaNet.go:278: Sent ACK (client: [::1]:49808, IMEI: 352094087982671) +2018/09/16 06:29:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:29:57 ruptelaNet.go:261: Data received(client: [::1]:49808, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 06:29:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:29:57 ruptelaNet.go:278: Sent ACK (client: [::1]:49808, IMEI: 352094087982671) +2018/09/16 06:30:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49808, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 06:30:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:49843) +2018/09/16 06:30:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:30:11 ruptelaNet.go:261: Data received(client: [::1]:49843, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:30:11 ruptelaNet.go:278: Sent ACK (client: [::1]:49843, IMEI: 352094089712860) +2018/09/16 06:30:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:30:13 ruptelaNet.go:261: Data received(client: [::1]:49843, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:30:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:30:13 ruptelaNet.go:278: Sent ACK (client: [::1]:49843, IMEI: 352094089712860) +2018/09/16 06:30:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49843, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 06:30:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:49868) +2018/09/16 06:30:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:30:24 ruptelaNet.go:261: Data received(client: [::1]:49868, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:30:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49868, IMEI: 352094087982671) +2018/09/16 06:30:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:30:27 ruptelaNet.go:261: Data received(client: [::1]:49868, IMEI: 352094087982671) with duration 4.82 s +2018/09/16 06:30:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:30:27 ruptelaNet.go:278: Sent ACK (client: [::1]:49868, IMEI: 352094087982671) +2018/09/16 06:30:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49868, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 06:30:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:49934) +2018/09/16 06:30:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:30:53 ruptelaNet.go:261: Data received(client: [::1]:49934, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 06:30:53 ruptelaNet.go:278: Sent ACK (client: [::1]:49934, IMEI: 352094087982671) +2018/09/16 06:30:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:30:56 ruptelaNet.go:261: Data received(client: [::1]:49934, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:30:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:30:56 ruptelaNet.go:278: Sent ACK (client: [::1]:49934, IMEI: 352094087982671) +2018/09/16 06:30:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49934, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:31:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:49974) +2018/09/16 06:31:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:31:11 ruptelaNet.go:261: Data received(client: [::1]:49974, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:31:11 ruptelaNet.go:278: Sent ACK (client: [::1]:49974, IMEI: 352094089712860) +2018/09/16 06:31:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:31:13 ruptelaNet.go:261: Data received(client: [::1]:49974, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 06:31:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:31:13 ruptelaNet.go:278: Sent ACK (client: [::1]:49974, IMEI: 352094089712860) +2018/09/16 06:31:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49974, IMEI: 352094089712860) with duration 2.99 s +2018/09/16 06:31:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:49992) +2018/09/16 06:31:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:31:22 ruptelaNet.go:261: Data received(client: [::1]:49992, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:31:22 ruptelaNet.go:278: Sent ACK (client: [::1]:49992, IMEI: 352094087982671) +2018/09/16 06:31:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:31:26 ruptelaNet.go:261: Data received(client: [::1]:49992, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:31:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:31:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49992, IMEI: 352094087982671) +2018/09/16 06:31:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49992, IMEI: 352094087982671) with duration 6.66 s +2018/09/16 06:31:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:50061) +2018/09/16 06:31:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:31:52 ruptelaNet.go:261: Data received(client: [::1]:50061, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:31:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50061, IMEI: 352094087982671) +2018/09/16 06:31:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:31:54 ruptelaNet.go:261: Data received(client: [::1]:50061, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 06:31:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:31:54 ruptelaNet.go:278: Sent ACK (client: [::1]:50061, IMEI: 352094087982671) +2018/09/16 06:31:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50061, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 06:32:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50104) +2018/09/16 06:32:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:32:11 ruptelaNet.go:261: Data received(client: [::1]:50104, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:32:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50104, IMEI: 352094089712860) +2018/09/16 06:32:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:32:13 ruptelaNet.go:261: Data received(client: [::1]:50104, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 06:32:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:32:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50104, IMEI: 352094089712860) +2018/09/16 06:32:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50104, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 06:32:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:50120) +2018/09/16 06:32:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:32:20 ruptelaNet.go:261: Data received(client: [::1]:50120, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:32:20 ruptelaNet.go:278: Sent ACK (client: [::1]:50120, IMEI: 352094087982671) +2018/09/16 06:32:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:32:23 ruptelaNet.go:261: Data received(client: [::1]:50120, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:32:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:32:23 ruptelaNet.go:278: Sent ACK (client: [::1]:50120, IMEI: 352094087982671) +2018/09/16 06:32:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50120, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:32:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:50185) +2018/09/16 06:32:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:32:49 ruptelaNet.go:261: Data received(client: [::1]:50185, IMEI: 352094087982671) with duration 0.01 s +2018/09/16 06:32:49 ruptelaNet.go:278: Sent ACK (client: [::1]:50185, IMEI: 352094087982671) +2018/09/16 06:32:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:32:52 ruptelaNet.go:261: Data received(client: [::1]:50185, IMEI: 352094087982671) with duration 2.86 s +2018/09/16 06:32:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:32:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50185, IMEI: 352094087982671) +2018/09/16 06:32:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50185, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 06:33:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50228) +2018/09/16 06:33:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:33:11 ruptelaNet.go:261: Data received(client: [::1]:50228, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:33:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50228, IMEI: 352094089712860) +2018/09/16 06:33:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:33:13 ruptelaNet.go:261: Data received(client: [::1]:50228, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:33:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:33:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50228, IMEI: 352094089712860) +2018/09/16 06:33:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50228, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:33:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:50239) +2018/09/16 06:33:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:33:18 ruptelaNet.go:261: Data received(client: [::1]:50239, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:33:18 ruptelaNet.go:278: Sent ACK (client: [::1]:50239, IMEI: 352094087982671) +2018/09/16 06:33:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:33:21 ruptelaNet.go:261: Data received(client: [::1]:50239, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 06:33:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:33:21 ruptelaNet.go:278: Sent ACK (client: [::1]:50239, IMEI: 352094087982671) +2018/09/16 06:33:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50239, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 06:33:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:50304) +2018/09/16 06:33:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:33:48 ruptelaNet.go:261: Data received(client: [::1]:50304, IMEI: 352094087982671) with duration 0.84 s +2018/09/16 06:33:48 ruptelaNet.go:278: Sent ACK (client: [::1]:50304, IMEI: 352094087982671) +2018/09/16 06:33:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:33:50 ruptelaNet.go:261: Data received(client: [::1]:50304, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 06:33:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:33:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50304, IMEI: 352094087982671) +2018/09/16 06:33:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50304, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 06:34:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50354) +2018/09/16 06:34:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:34:11 ruptelaNet.go:261: Data received(client: [::1]:50354, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:34:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50354, IMEI: 352094089712860) +2018/09/16 06:34:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:34:13 ruptelaNet.go:261: Data received(client: [::1]:50354, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 06:34:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:34:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50354, IMEI: 352094089712860) +2018/09/16 06:34:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50354, IMEI: 352094089712860) with duration 2.6 s +2018/09/16 06:34:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:50365) +2018/09/16 06:34:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:34:17 ruptelaNet.go:261: Data received(client: [::1]:50365, IMEI: 352094087982671) with duration 1.84 s +2018/09/16 06:34:17 ruptelaNet.go:278: Sent ACK (client: [::1]:50365, IMEI: 352094087982671) +2018/09/16 06:34:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:34:20 ruptelaNet.go:261: Data received(client: [::1]:50365, IMEI: 352094087982671) with duration 4.77 s +2018/09/16 06:34:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:34:20 ruptelaNet.go:278: Sent ACK (client: [::1]:50365, IMEI: 352094087982671) +2018/09/16 06:34:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50365, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 06:34:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:50418) +2018/09/16 06:34:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:34:46 ruptelaNet.go:261: Data received(client: [::1]:50418, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 06:34:46 ruptelaNet.go:278: Sent ACK (client: [::1]:50418, IMEI: 352094087982671) +2018/09/16 06:34:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:34:49 ruptelaNet.go:261: Data received(client: [::1]:50418, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:34:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:34:49 ruptelaNet.go:278: Sent ACK (client: [::1]:50418, IMEI: 352094087982671) +2018/09/16 06:34:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50418, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 06:35:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50467) +2018/09/16 06:35:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:35:11 ruptelaNet.go:261: Data received(client: [::1]:50467, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:35:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50467, IMEI: 352094089712860) +2018/09/16 06:35:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:35:13 ruptelaNet.go:261: Data received(client: [::1]:50467, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:35:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:35:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50467, IMEI: 352094089712860) +2018/09/16 06:35:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50467, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 06:35:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:50478) +2018/09/16 06:35:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:35:15 ruptelaNet.go:261: Data received(client: [::1]:50478, IMEI: 352094087982671) with duration 0 s +2018/09/16 06:35:15 ruptelaNet.go:278: Sent ACK (client: [::1]:50478, IMEI: 352094087982671) +2018/09/16 06:35:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:35:18 ruptelaNet.go:261: Data received(client: [::1]:50478, IMEI: 352094087982671) with duration 2.87 s +2018/09/16 06:35:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:35:18 ruptelaNet.go:278: Sent ACK (client: [::1]:50478, IMEI: 352094087982671) +2018/09/16 06:35:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50478, IMEI: 352094087982671) with duration 5.02 s +2018/09/16 06:35:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:50535) +2018/09/16 06:35:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:35:45 ruptelaNet.go:261: Data received(client: [::1]:50535, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 06:35:45 ruptelaNet.go:278: Sent ACK (client: [::1]:50535, IMEI: 352094087982671) +2018/09/16 06:35:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:35:48 ruptelaNet.go:261: Data received(client: [::1]:50535, IMEI: 352094087982671) with duration 4.47 s +2018/09/16 06:35:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:35:48 ruptelaNet.go:278: Sent ACK (client: [::1]:50535, IMEI: 352094087982671) +2018/09/16 06:35:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50535, IMEI: 352094087982671) with duration 6.72 s +2018/09/16 06:36:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50591) +2018/09/16 06:36:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:36:11 ruptelaNet.go:261: Data received(client: [::1]:50591, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:36:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50591, IMEI: 352094089712860) +2018/09/16 06:36:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:50596) +2018/09/16 06:36:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:36:13 ruptelaNet.go:261: Data received(client: [::1]:50591, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 06:36:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:36:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50591, IMEI: 352094089712860) +2018/09/16 06:36:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:36:13 ruptelaNet.go:261: Data received(client: [::1]:50596, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 06:36:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50596, IMEI: 352094087982671) +2018/09/16 06:36:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50591, IMEI: 352094089712860) with duration 3.11 s +2018/09/16 06:36:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:36:18 ruptelaNet.go:261: Data received(client: [::1]:50596, IMEI: 352094087982671) with duration 5.64 s +2018/09/16 06:36:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:36:18 ruptelaNet.go:278: Sent ACK (client: [::1]:50596, IMEI: 352094087982671) +2018/09/16 06:36:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50596, IMEI: 352094087982671) with duration 7.68 s +2018/09/16 06:36:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:50655) +2018/09/16 06:36:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:36:45 ruptelaNet.go:261: Data received(client: [::1]:50655, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 06:36:45 ruptelaNet.go:278: Sent ACK (client: [::1]:50655, IMEI: 352094087982671) +2018/09/16 06:36:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:36:47 ruptelaNet.go:261: Data received(client: [::1]:50655, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 06:36:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:36:47 ruptelaNet.go:278: Sent ACK (client: [::1]:50655, IMEI: 352094087982671) +2018/09/16 06:36:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50655, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:37:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50710) +2018/09/16 06:37:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:37:11 ruptelaNet.go:261: Data received(client: [::1]:50710, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:37:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50710, IMEI: 352094089712860) +2018/09/16 06:37:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:50711) +2018/09/16 06:37:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:37:13 ruptelaNet.go:261: Data received(client: [::1]:50710, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:37:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:37:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50710, IMEI: 352094089712860) +2018/09/16 06:37:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:37:13 ruptelaNet.go:261: Data received(client: [::1]:50711, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:37:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50711, IMEI: 352094087982671) +2018/09/16 06:37:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50710, IMEI: 352094089712860) with duration 2.63 s +2018/09/16 06:37:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:37:16 ruptelaNet.go:261: Data received(client: [::1]:50711, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 06:37:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:37:16 ruptelaNet.go:278: Sent ACK (client: [::1]:50711, IMEI: 352094087982671) +2018/09/16 06:37:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50711, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 06:37:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:50768) +2018/09/16 06:37:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:37:42 ruptelaNet.go:261: Data received(client: [::1]:50768, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 06:37:42 ruptelaNet.go:278: Sent ACK (client: [::1]:50768, IMEI: 352094087982671) +2018/09/16 06:37:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:37:45 ruptelaNet.go:261: Data received(client: [::1]:50768, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:37:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:37:45 ruptelaNet.go:278: Sent ACK (client: [::1]:50768, IMEI: 352094087982671) +2018/09/16 06:37:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50768, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 06:38:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:50834) +2018/09/16 06:38:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50835) +2018/09/16 06:38:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:38:11 ruptelaNet.go:261: Data received(client: [::1]:50835, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:38:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50835, IMEI: 352094089712860) +2018/09/16 06:38:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:38:12 ruptelaNet.go:261: Data received(client: [::1]:50834, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:38:12 ruptelaNet.go:278: Sent ACK (client: [::1]:50834, IMEI: 352094087982671) +2018/09/16 06:38:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:38:13 ruptelaNet.go:261: Data received(client: [::1]:50835, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:38:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:38:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50835, IMEI: 352094089712860) +2018/09/16 06:38:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50835, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:38:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:38:15 ruptelaNet.go:261: Data received(client: [::1]:50834, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 06:38:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:38:15 ruptelaNet.go:278: Sent ACK (client: [::1]:50834, IMEI: 352094087982671) +2018/09/16 06:38:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50834, IMEI: 352094087982671) with duration 6.49 s +2018/09/16 06:38:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:50896) +2018/09/16 06:38:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:38:41 ruptelaNet.go:261: Data received(client: [::1]:50896, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 06:38:41 ruptelaNet.go:278: Sent ACK (client: [::1]:50896, IMEI: 352094087982671) +2018/09/16 06:38:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:38:43 ruptelaNet.go:261: Data received(client: [::1]:50896, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 06:38:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:38:43 ruptelaNet.go:278: Sent ACK (client: [::1]:50896, IMEI: 352094087982671) +2018/09/16 06:38:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50896, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 06:39:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:50962) +2018/09/16 06:39:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:39:09 ruptelaNet.go:261: Data received(client: [::1]:50962, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:39:09 ruptelaNet.go:278: Sent ACK (client: [::1]:50962, IMEI: 352094087982671) +2018/09/16 06:39:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50968) +2018/09/16 06:39:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:39:11 ruptelaNet.go:261: Data received(client: [::1]:50968, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:39:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50968, IMEI: 352094089712860) +2018/09/16 06:39:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:39:12 ruptelaNet.go:261: Data received(client: [::1]:50962, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 06:39:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:39:12 ruptelaNet.go:278: Sent ACK (client: [::1]:50962, IMEI: 352094087982671) +2018/09/16 06:39:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:39:13 ruptelaNet.go:261: Data received(client: [::1]:50968, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:39:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:39:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50968, IMEI: 352094089712860) +2018/09/16 06:39:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50968, IMEI: 352094089712860) with duration 2.64 s +2018/09/16 06:39:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50962, IMEI: 352094087982671) with duration 8.16 s +2018/09/16 06:39:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:51017) +2018/09/16 06:39:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:39:38 ruptelaNet.go:261: Data received(client: [::1]:51017, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:39:38 ruptelaNet.go:278: Sent ACK (client: [::1]:51017, IMEI: 352094087982671) +2018/09/16 06:39:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:39:41 ruptelaNet.go:261: Data received(client: [::1]:51017, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 06:39:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:39:41 ruptelaNet.go:278: Sent ACK (client: [::1]:51017, IMEI: 352094087982671) +2018/09/16 06:39:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51017, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 06:40:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:51077) +2018/09/16 06:40:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:40:07 ruptelaNet.go:261: Data received(client: [::1]:51077, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 06:40:07 ruptelaNet.go:278: Sent ACK (client: [::1]:51077, IMEI: 352094087982671) +2018/09/16 06:40:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:40:10 ruptelaNet.go:261: Data received(client: [::1]:51077, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 06:40:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:40:10 ruptelaNet.go:278: Sent ACK (client: [::1]:51077, IMEI: 352094087982671) +2018/09/16 06:40:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:51087) +2018/09/16 06:40:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:40:11 ruptelaNet.go:261: Data received(client: [::1]:51087, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:40:11 ruptelaNet.go:278: Sent ACK (client: [::1]:51087, IMEI: 352094089712860) +2018/09/16 06:40:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51077, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 06:40:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:40:14 ruptelaNet.go:261: Data received(client: [::1]:51087, IMEI: 352094089712860) with duration 2.11 s +2018/09/16 06:40:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:40:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51087, IMEI: 352094089712860) +2018/09/16 06:40:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51087, IMEI: 352094089712860) with duration 2.93 s +2018/09/16 06:40:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:51134) +2018/09/16 06:40:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:40:37 ruptelaNet.go:261: Data received(client: [::1]:51134, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 06:40:37 ruptelaNet.go:278: Sent ACK (client: [::1]:51134, IMEI: 352094087982671) +2018/09/16 06:40:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:40:39 ruptelaNet.go:261: Data received(client: [::1]:51134, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:40:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:40:39 ruptelaNet.go:278: Sent ACK (client: [::1]:51134, IMEI: 352094087982671) +2018/09/16 06:40:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51134, IMEI: 352094087982671) with duration 6.61 s +2018/09/16 06:41:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:51194) +2018/09/16 06:41:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:41:06 ruptelaNet.go:261: Data received(client: [::1]:51194, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:41:06 ruptelaNet.go:278: Sent ACK (client: [::1]:51194, IMEI: 352094087982671) +2018/09/16 06:41:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:41:08 ruptelaNet.go:261: Data received(client: [::1]:51194, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:41:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:41:08 ruptelaNet.go:278: Sent ACK (client: [::1]:51194, IMEI: 352094087982671) +2018/09/16 06:41:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51194, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:41:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51214) +2018/09/16 06:41:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:41:12 ruptelaNet.go:261: Data received(client: [::1]:51214, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:41:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51214, IMEI: 352094089712860) +2018/09/16 06:41:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:41:13 ruptelaNet.go:261: Data received(client: [::1]:51214, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 06:41:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:41:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51214, IMEI: 352094089712860) +2018/09/16 06:41:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51214, IMEI: 352094089712860) with duration 2.75 s +2018/09/16 06:41:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:51258) +2018/09/16 06:41:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:41:34 ruptelaNet.go:261: Data received(client: [::1]:51258, IMEI: 352094087982671) with duration 0.81 s +2018/09/16 06:41:34 ruptelaNet.go:278: Sent ACK (client: [::1]:51258, IMEI: 352094087982671) +2018/09/16 06:41:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:41:37 ruptelaNet.go:261: Data received(client: [::1]:51258, IMEI: 352094087982671) with duration 3.17 s +2018/09/16 06:41:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:41:37 ruptelaNet.go:278: Sent ACK (client: [::1]:51258, IMEI: 352094087982671) +2018/09/16 06:41:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51258, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 06:42:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:51314) +2018/09/16 06:42:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:42:02 ruptelaNet.go:261: Data received(client: [::1]:51314, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:42:02 ruptelaNet.go:278: Sent ACK (client: [::1]:51314, IMEI: 352094087982671) +2018/09/16 06:42:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:42:05 ruptelaNet.go:261: Data received(client: [::1]:51314, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 06:42:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:42:05 ruptelaNet.go:278: Sent ACK (client: [::1]:51314, IMEI: 352094087982671) +2018/09/16 06:42:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51314, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:42:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51337) +2018/09/16 06:42:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:42:12 ruptelaNet.go:261: Data received(client: [::1]:51337, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:42:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51337, IMEI: 352094089712860) +2018/09/16 06:42:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:42:14 ruptelaNet.go:261: Data received(client: [::1]:51337, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 06:42:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:42:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51337, IMEI: 352094089712860) +2018/09/16 06:42:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51337, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 06:42:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:51374) +2018/09/16 06:42:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:42:31 ruptelaNet.go:261: Data received(client: [::1]:51374, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:42:31 ruptelaNet.go:278: Sent ACK (client: [::1]:51374, IMEI: 352094087982671) +2018/09/16 06:42:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:42:34 ruptelaNet.go:261: Data received(client: [::1]:51374, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:42:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:42:34 ruptelaNet.go:278: Sent ACK (client: [::1]:51374, IMEI: 352094087982671) +2018/09/16 06:42:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51374, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:42:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:51427) +2018/09/16 06:43:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:43:00 ruptelaNet.go:261: Data received(client: [::1]:51427, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 06:43:00 ruptelaNet.go:278: Sent ACK (client: [::1]:51427, IMEI: 352094087982671) +2018/09/16 06:43:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:43:03 ruptelaNet.go:261: Data received(client: [::1]:51427, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:43:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:43:03 ruptelaNet.go:278: Sent ACK (client: [::1]:51427, IMEI: 352094087982671) +2018/09/16 06:43:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51427, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:43:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:51456) +2018/09/16 06:43:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:43:13 ruptelaNet.go:261: Data received(client: [::1]:51456, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:43:13 ruptelaNet.go:278: Sent ACK (client: [::1]:51456, IMEI: 352094089712860) +2018/09/16 06:43:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:43:15 ruptelaNet.go:261: Data received(client: [::1]:51456, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:43:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:43:15 ruptelaNet.go:278: Sent ACK (client: [::1]:51456, IMEI: 352094089712860) +2018/09/16 06:43:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51456, IMEI: 352094089712860) with duration 2.69 s +2018/09/16 06:43:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:51484) +2018/09/16 06:43:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:43:29 ruptelaNet.go:261: Data received(client: [::1]:51484, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 06:43:29 ruptelaNet.go:278: Sent ACK (client: [::1]:51484, IMEI: 352094087982671) +2018/09/16 06:43:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:43:32 ruptelaNet.go:261: Data received(client: [::1]:51484, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:43:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:43:32 ruptelaNet.go:278: Sent ACK (client: [::1]:51484, IMEI: 352094087982671) +2018/09/16 06:43:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51484, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:43:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:51549) +2018/09/16 06:43:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:43:58 ruptelaNet.go:261: Data received(client: [::1]:51549, IMEI: 352094087982671) with duration 0 s +2018/09/16 06:43:58 ruptelaNet.go:278: Sent ACK (client: [::1]:51549, IMEI: 352094087982671) +2018/09/16 06:44:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:44:01 ruptelaNet.go:261: Data received(client: [::1]:51549, IMEI: 352094087982671) with duration 2.76 s +2018/09/16 06:44:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:44:01 ruptelaNet.go:278: Sent ACK (client: [::1]:51549, IMEI: 352094087982671) +2018/09/16 06:44:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51549, IMEI: 352094087982671) with duration 4.87 s +2018/09/16 06:44:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51575) +2018/09/16 06:44:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:44:12 ruptelaNet.go:261: Data received(client: [::1]:51575, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:44:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51575, IMEI: 352094089712860) +2018/09/16 06:44:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:44:14 ruptelaNet.go:261: Data received(client: [::1]:51575, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 06:44:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:44:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51575, IMEI: 352094089712860) +2018/09/16 06:44:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51575, IMEI: 352094089712860) with duration 2.72 s +2018/09/16 06:44:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:51604) +2018/09/16 06:44:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:44:27 ruptelaNet.go:261: Data received(client: [::1]:51604, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 06:44:27 ruptelaNet.go:278: Sent ACK (client: [::1]:51604, IMEI: 352094087982671) +2018/09/16 06:44:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:44:30 ruptelaNet.go:261: Data received(client: [::1]:51604, IMEI: 352094087982671) with duration 3.7 s +2018/09/16 06:44:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:44:30 ruptelaNet.go:278: Sent ACK (client: [::1]:51604, IMEI: 352094087982671) +2018/09/16 06:44:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51604, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 06:44:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:51665) +2018/09/16 06:44:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:44:57 ruptelaNet.go:261: Data received(client: [::1]:51665, IMEI: 352094087982671) with duration 1.3 s +2018/09/16 06:44:57 ruptelaNet.go:278: Sent ACK (client: [::1]:51665, IMEI: 352094087982671) +2018/09/16 06:44:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:44:59 ruptelaNet.go:261: Data received(client: [::1]:51665, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:44:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:44:59 ruptelaNet.go:278: Sent ACK (client: [::1]:51665, IMEI: 352094087982671) +2018/09/16 06:45:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51665, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:45:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51702) +2018/09/16 06:45:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:45:12 ruptelaNet.go:261: Data received(client: [::1]:51702, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:45:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51702, IMEI: 352094089712860) +2018/09/16 06:45:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:45:14 ruptelaNet.go:261: Data received(client: [::1]:51702, IMEI: 352094089712860) with duration 2.27 s +2018/09/16 06:45:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:45:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51702, IMEI: 352094089712860) +2018/09/16 06:45:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51702, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:45:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:51723) +2018/09/16 06:45:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:45:25 ruptelaNet.go:261: Data received(client: [::1]:51723, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:45:25 ruptelaNet.go:278: Sent ACK (client: [::1]:51723, IMEI: 352094087982671) +2018/09/16 06:45:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:45:28 ruptelaNet.go:261: Data received(client: [::1]:51723, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:45:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:45:28 ruptelaNet.go:278: Sent ACK (client: [::1]:51723, IMEI: 352094087982671) +2018/09/16 06:45:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51723, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:45:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:51779) +2018/09/16 06:45:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:45:54 ruptelaNet.go:261: Data received(client: [::1]:51779, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:45:54 ruptelaNet.go:278: Sent ACK (client: [::1]:51779, IMEI: 352094087982671) +2018/09/16 06:45:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:45:57 ruptelaNet.go:261: Data received(client: [::1]:51779, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 06:45:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:45:57 ruptelaNet.go:278: Sent ACK (client: [::1]:51779, IMEI: 352094087982671) +2018/09/16 06:45:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51779, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 06:46:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51824) +2018/09/16 06:46:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:46:12 ruptelaNet.go:261: Data received(client: [::1]:51824, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:46:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51824, IMEI: 352094089712860) +2018/09/16 06:46:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:46:14 ruptelaNet.go:261: Data received(client: [::1]:51824, IMEI: 352094089712860) with duration 1.98 s +2018/09/16 06:46:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:46:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51824, IMEI: 352094089712860) +2018/09/16 06:46:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51824, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:46:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:51845) +2018/09/16 06:46:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:46:23 ruptelaNet.go:261: Data received(client: [::1]:51845, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:46:23 ruptelaNet.go:278: Sent ACK (client: [::1]:51845, IMEI: 352094087982671) +2018/09/16 06:46:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:46:26 ruptelaNet.go:261: Data received(client: [::1]:51845, IMEI: 352094087982671) with duration 3.72 s +2018/09/16 06:46:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:46:26 ruptelaNet.go:278: Sent ACK (client: [::1]:51845, IMEI: 352094087982671) +2018/09/16 06:46:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51845, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:46:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51899) +2018/09/16 06:46:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:46:52 ruptelaNet.go:261: Data received(client: [::1]:51899, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:46:52 ruptelaNet.go:278: Sent ACK (client: [::1]:51899, IMEI: 352094087982671) +2018/09/16 06:46:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:46:55 ruptelaNet.go:261: Data received(client: [::1]:51899, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:46:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:46:55 ruptelaNet.go:278: Sent ACK (client: [::1]:51899, IMEI: 352094087982671) +2018/09/16 06:46:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51899, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 06:47:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51944) +2018/09/16 06:47:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:47:12 ruptelaNet.go:261: Data received(client: [::1]:51944, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:47:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51944, IMEI: 352094089712860) +2018/09/16 06:47:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:47:14 ruptelaNet.go:261: Data received(client: [::1]:51944, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:47:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:47:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51944, IMEI: 352094089712860) +2018/09/16 06:47:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51944, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:47:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:51964) +2018/09/16 06:47:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:47:21 ruptelaNet.go:261: Data received(client: [::1]:51964, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:47:21 ruptelaNet.go:278: Sent ACK (client: [::1]:51964, IMEI: 352094087982671) +2018/09/16 06:47:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:47:25 ruptelaNet.go:261: Data received(client: [::1]:51964, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 06:47:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:47:25 ruptelaNet.go:278: Sent ACK (client: [::1]:51964, IMEI: 352094087982671) +2018/09/16 06:47:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51964, IMEI: 352094087982671) with duration 6.32 s +2018/09/16 06:47:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:52023) +2018/09/16 06:47:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:47:50 ruptelaNet.go:261: Data received(client: [::1]:52023, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 06:47:50 ruptelaNet.go:278: Sent ACK (client: [::1]:52023, IMEI: 352094087982671) +2018/09/16 06:47:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:47:53 ruptelaNet.go:261: Data received(client: [::1]:52023, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:47:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:47:53 ruptelaNet.go:278: Sent ACK (client: [::1]:52023, IMEI: 352094087982671) +2018/09/16 06:47:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52023, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 06:48:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52071) +2018/09/16 06:48:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:48:13 ruptelaNet.go:261: Data received(client: [::1]:52071, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:48:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52071, IMEI: 352094089712860) +2018/09/16 06:48:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:48:15 ruptelaNet.go:261: Data received(client: [::1]:52071, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:48:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:48:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52071, IMEI: 352094089712860) +2018/09/16 06:48:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52071, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 06:48:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:52083) +2018/09/16 06:48:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:48:19 ruptelaNet.go:261: Data received(client: [::1]:52083, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 06:48:19 ruptelaNet.go:278: Sent ACK (client: [::1]:52083, IMEI: 352094087982671) +2018/09/16 06:48:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:48:22 ruptelaNet.go:261: Data received(client: [::1]:52083, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 06:48:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:48:22 ruptelaNet.go:278: Sent ACK (client: [::1]:52083, IMEI: 352094087982671) +2018/09/16 06:48:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52083, IMEI: 352094087982671) with duration 5.76 s +2018/09/16 06:48:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:52149) +2018/09/16 06:48:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:48:48 ruptelaNet.go:261: Data received(client: [::1]:52149, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:48:48 ruptelaNet.go:278: Sent ACK (client: [::1]:52149, IMEI: 352094087982671) +2018/09/16 06:48:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:48:51 ruptelaNet.go:261: Data received(client: [::1]:52149, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:48:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:48:51 ruptelaNet.go:278: Sent ACK (client: [::1]:52149, IMEI: 352094087982671) +2018/09/16 06:48:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52149, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:49:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:52205) +2018/09/16 06:49:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:49:12 ruptelaNet.go:261: Data received(client: [::1]:52205, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:49:12 ruptelaNet.go:278: Sent ACK (client: [::1]:52205, IMEI: 352094089712860) +2018/09/16 06:49:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:49:14 ruptelaNet.go:261: Data received(client: [::1]:52205, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 06:49:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:49:14 ruptelaNet.go:278: Sent ACK (client: [::1]:52205, IMEI: 352094089712860) +2018/09/16 06:49:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52205, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 06:49:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:52216) +2018/09/16 06:49:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:49:18 ruptelaNet.go:261: Data received(client: [::1]:52216, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:49:18 ruptelaNet.go:278: Sent ACK (client: [::1]:52216, IMEI: 352094087982671) +2018/09/16 06:49:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:49:20 ruptelaNet.go:261: Data received(client: [::1]:52216, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 06:49:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:49:20 ruptelaNet.go:278: Sent ACK (client: [::1]:52216, IMEI: 352094087982671) +2018/09/16 06:49:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52216, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:49:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:52271) +2018/09/16 06:49:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:49:47 ruptelaNet.go:261: Data received(client: [::1]:52271, IMEI: 352094087982671) with duration 2.01 s +2018/09/16 06:49:47 ruptelaNet.go:278: Sent ACK (client: [::1]:52271, IMEI: 352094087982671) +2018/09/16 06:49:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:49:50 ruptelaNet.go:261: Data received(client: [::1]:52271, IMEI: 352094087982671) with duration 4.86 s +2018/09/16 06:49:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:49:50 ruptelaNet.go:278: Sent ACK (client: [::1]:52271, IMEI: 352094087982671) +2018/09/16 06:49:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52271, IMEI: 352094087982671) with duration 6.97 s +2018/09/16 06:50:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52331) +2018/09/16 06:50:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:50:13 ruptelaNet.go:261: Data received(client: [::1]:52331, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:50:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52331, IMEI: 352094089712860) +2018/09/16 06:50:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:50:15 ruptelaNet.go:261: Data received(client: [::1]:52331, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 06:50:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:50:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52331, IMEI: 352094089712860) +2018/09/16 06:50:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:52337) +2018/09/16 06:50:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52331, IMEI: 352094089712860) with duration 3.26 s +2018/09/16 06:50:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:50:17 ruptelaNet.go:261: Data received(client: [::1]:52337, IMEI: 352094087982671) with duration 1.31 s +2018/09/16 06:50:17 ruptelaNet.go:278: Sent ACK (client: [::1]:52337, IMEI: 352094087982671) +2018/09/16 06:50:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:50:19 ruptelaNet.go:261: Data received(client: [::1]:52337, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:50:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:50:19 ruptelaNet.go:278: Sent ACK (client: [::1]:52337, IMEI: 352094087982671) +2018/09/16 06:50:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52337, IMEI: 352094087982671) with duration 6.25 s +2018/09/16 06:50:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:52394) +2018/09/16 06:50:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:50:46 ruptelaNet.go:261: Data received(client: [::1]:52394, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:50:46 ruptelaNet.go:278: Sent ACK (client: [::1]:52394, IMEI: 352094087982671) +2018/09/16 06:50:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:50:48 ruptelaNet.go:261: Data received(client: [::1]:52394, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:50:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:50:48 ruptelaNet.go:278: Sent ACK (client: [::1]:52394, IMEI: 352094087982671) +2018/09/16 06:50:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52394, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:51:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52455) +2018/09/16 06:51:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:51:13 ruptelaNet.go:261: Data received(client: [::1]:52455, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:51:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52455, IMEI: 352094089712860) +2018/09/16 06:51:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52456) +2018/09/16 06:51:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:51:14 ruptelaNet.go:261: Data received(client: [::1]:52456, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 06:51:14 ruptelaNet.go:278: Sent ACK (client: [::1]:52456, IMEI: 352094087982671) +2018/09/16 06:51:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:51:15 ruptelaNet.go:261: Data received(client: [::1]:52455, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 06:51:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:51:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52455, IMEI: 352094089712860) +2018/09/16 06:51:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52455, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 06:51:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:51:17 ruptelaNet.go:261: Data received(client: [::1]:52456, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:51:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:51:17 ruptelaNet.go:278: Sent ACK (client: [::1]:52456, IMEI: 352094087982671) +2018/09/16 06:51:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52456, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:51:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:52515) +2018/09/16 06:51:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:51:43 ruptelaNet.go:261: Data received(client: [::1]:52515, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:51:43 ruptelaNet.go:278: Sent ACK (client: [::1]:52515, IMEI: 352094087982671) +2018/09/16 06:51:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:51:46 ruptelaNet.go:261: Data received(client: [::1]:52515, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 06:51:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:51:46 ruptelaNet.go:278: Sent ACK (client: [::1]:52515, IMEI: 352094087982671) +2018/09/16 06:51:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52515, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 06:52:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:52576) +2018/09/16 06:52:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:52:12 ruptelaNet.go:261: Data received(client: [::1]:52576, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 06:52:12 ruptelaNet.go:278: Sent ACK (client: [::1]:52576, IMEI: 352094087982671) +2018/09/16 06:52:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52582) +2018/09/16 06:52:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:52:13 ruptelaNet.go:261: Data received(client: [::1]:52582, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:52:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52582, IMEI: 352094089712860) +2018/09/16 06:52:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:52:15 ruptelaNet.go:261: Data received(client: [::1]:52582, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 06:52:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:52:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52582, IMEI: 352094089712860) +2018/09/16 06:52:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:52:15 ruptelaNet.go:261: Data received(client: [::1]:52576, IMEI: 352094087982671) with duration 3.66 s +2018/09/16 06:52:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:52:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52576, IMEI: 352094087982671) +2018/09/16 06:52:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52582, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 06:52:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52576, IMEI: 352094087982671) with duration 5.81 s +2018/09/16 06:52:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:52640) +2018/09/16 06:52:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:52:42 ruptelaNet.go:261: Data received(client: [::1]:52640, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 06:52:42 ruptelaNet.go:278: Sent ACK (client: [::1]:52640, IMEI: 352094087982671) +2018/09/16 06:52:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:52:44 ruptelaNet.go:261: Data received(client: [::1]:52640, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:52:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:52:44 ruptelaNet.go:278: Sent ACK (client: [::1]:52640, IMEI: 352094087982671) +2018/09/16 06:52:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52640, IMEI: 352094087982671) with duration 6.96 s +2018/09/16 06:53:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:52695) +2018/09/16 06:53:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:53:10 ruptelaNet.go:261: Data received(client: [::1]:52695, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:53:10 ruptelaNet.go:278: Sent ACK (client: [::1]:52695, IMEI: 352094087982671) +2018/09/16 06:53:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52705) +2018/09/16 06:53:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:53:13 ruptelaNet.go:261: Data received(client: [::1]:52705, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:53:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52705, IMEI: 352094089712860) +2018/09/16 06:53:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:53:14 ruptelaNet.go:261: Data received(client: [::1]:52695, IMEI: 352094087982671) with duration 4.17 s +2018/09/16 06:53:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:53:14 ruptelaNet.go:278: Sent ACK (client: [::1]:52695, IMEI: 352094087982671) +2018/09/16 06:53:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:53:15 ruptelaNet.go:261: Data received(client: [::1]:52705, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 06:53:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:53:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52705, IMEI: 352094089712860) +2018/09/16 06:53:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52695, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 06:53:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52705, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:53:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:52758) +2018/09/16 06:53:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:53:39 ruptelaNet.go:261: Data received(client: [::1]:52758, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 06:53:39 ruptelaNet.go:278: Sent ACK (client: [::1]:52758, IMEI: 352094087982671) +2018/09/16 06:53:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:53:43 ruptelaNet.go:261: Data received(client: [::1]:52758, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:53:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:53:43 ruptelaNet.go:278: Sent ACK (client: [::1]:52758, IMEI: 352094087982671) +2018/09/16 06:53:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52758, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 06:54:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:52823) +2018/09/16 06:54:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:54:08 ruptelaNet.go:261: Data received(client: [::1]:52823, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 06:54:08 ruptelaNet.go:278: Sent ACK (client: [::1]:52823, IMEI: 352094087982671) +2018/09/16 06:54:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:54:11 ruptelaNet.go:261: Data received(client: [::1]:52823, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 06:54:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:54:11 ruptelaNet.go:278: Sent ACK (client: [::1]:52823, IMEI: 352094087982671) +2018/09/16 06:54:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52823, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 06:54:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:52839) +2018/09/16 06:54:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:54:15 ruptelaNet.go:261: Data received(client: [::1]:52839, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:54:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52839, IMEI: 352094089712860) +2018/09/16 06:54:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:54:17 ruptelaNet.go:261: Data received(client: [::1]:52839, IMEI: 352094089712860) with duration 2.12 s +2018/09/16 06:54:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:54:17 ruptelaNet.go:278: Sent ACK (client: [::1]:52839, IMEI: 352094089712860) +2018/09/16 06:54:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52839, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 06:54:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:52886) +2018/09/16 06:54:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:54:37 ruptelaNet.go:261: Data received(client: [::1]:52886, IMEI: 352094087982671) with duration 0.81 s +2018/09/16 06:54:37 ruptelaNet.go:278: Sent ACK (client: [::1]:52886, IMEI: 352094087982671) +2018/09/16 06:54:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:54:40 ruptelaNet.go:261: Data received(client: [::1]:52886, IMEI: 352094087982671) with duration 3.26 s +2018/09/16 06:54:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:54:40 ruptelaNet.go:278: Sent ACK (client: [::1]:52886, IMEI: 352094087982671) +2018/09/16 06:54:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52886, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 06:55:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:52935) +2018/09/16 06:55:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:55:05 ruptelaNet.go:261: Data received(client: [::1]:52935, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:55:05 ruptelaNet.go:278: Sent ACK (client: [::1]:52935, IMEI: 352094087982671) +2018/09/16 06:55:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:55:08 ruptelaNet.go:261: Data received(client: [::1]:52935, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:55:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:55:08 ruptelaNet.go:278: Sent ACK (client: [::1]:52935, IMEI: 352094087982671) +2018/09/16 06:55:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52935, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 06:55:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52955) +2018/09/16 06:55:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:55:13 ruptelaNet.go:261: Data received(client: [::1]:52955, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:55:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52955, IMEI: 352094089712860) +2018/09/16 06:55:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:55:15 ruptelaNet.go:261: Data received(client: [::1]:52955, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 06:55:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:55:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52955, IMEI: 352094089712860) +2018/09/16 06:55:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52955, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:55:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:52997) +2018/09/16 06:55:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:55:35 ruptelaNet.go:261: Data received(client: [::1]:52997, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 06:55:35 ruptelaNet.go:278: Sent ACK (client: [::1]:52997, IMEI: 352094087982671) +2018/09/16 06:55:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:55:37 ruptelaNet.go:261: Data received(client: [::1]:52997, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 06:55:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:55:37 ruptelaNet.go:278: Sent ACK (client: [::1]:52997, IMEI: 352094087982671) +2018/09/16 06:55:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52997, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 06:56:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:53058) +2018/09/16 06:56:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:56:04 ruptelaNet.go:261: Data received(client: [::1]:53058, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 06:56:04 ruptelaNet.go:278: Sent ACK (client: [::1]:53058, IMEI: 352094087982671) +2018/09/16 06:56:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:56:07 ruptelaNet.go:261: Data received(client: [::1]:53058, IMEI: 352094087982671) with duration 4.18 s +2018/09/16 06:56:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:56:07 ruptelaNet.go:278: Sent ACK (client: [::1]:53058, IMEI: 352094087982671) +2018/09/16 06:56:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53058, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 06:56:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:53081) +2018/09/16 06:56:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:56:13 ruptelaNet.go:261: Data received(client: [::1]:53081, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:56:13 ruptelaNet.go:278: Sent ACK (client: [::1]:53081, IMEI: 352094089712860) +2018/09/16 06:56:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:56:15 ruptelaNet.go:261: Data received(client: [::1]:53081, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:56:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:56:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53081, IMEI: 352094089712860) +2018/09/16 06:56:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53081, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 06:56:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:53122) +2018/09/16 06:56:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:56:33 ruptelaNet.go:261: Data received(client: [::1]:53122, IMEI: 352094087982671) with duration 0.36 s +2018/09/16 06:56:33 ruptelaNet.go:278: Sent ACK (client: [::1]:53122, IMEI: 352094087982671) +2018/09/16 06:56:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:56:36 ruptelaNet.go:261: Data received(client: [::1]:53122, IMEI: 352094087982671) with duration 3.23 s +2018/09/16 06:56:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:56:36 ruptelaNet.go:278: Sent ACK (client: [::1]:53122, IMEI: 352094087982671) +2018/09/16 06:56:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53122, IMEI: 352094087982671) with duration 5.38 s +2018/09/16 06:57:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:53181) +2018/09/16 06:57:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:57:01 ruptelaNet.go:261: Data received(client: [::1]:53181, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:57:01 ruptelaNet.go:278: Sent ACK (client: [::1]:53181, IMEI: 352094087982671) +2018/09/16 06:57:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:57:04 ruptelaNet.go:261: Data received(client: [::1]:53181, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:57:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:57:04 ruptelaNet.go:278: Sent ACK (client: [::1]:53181, IMEI: 352094087982671) +2018/09/16 06:57:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53181, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 06:57:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:53214) +2018/09/16 06:57:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:57:13 ruptelaNet.go:261: Data received(client: [::1]:53214, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:57:13 ruptelaNet.go:278: Sent ACK (client: [::1]:53214, IMEI: 352094089712860) +2018/09/16 06:57:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:57:15 ruptelaNet.go:261: Data received(client: [::1]:53214, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:57:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:57:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53214, IMEI: 352094089712860) +2018/09/16 06:57:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53214, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 06:57:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:53245) +2018/09/16 06:57:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:57:30 ruptelaNet.go:261: Data received(client: [::1]:53245, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:57:30 ruptelaNet.go:278: Sent ACK (client: [::1]:53245, IMEI: 352094087982671) +2018/09/16 06:57:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:57:33 ruptelaNet.go:261: Data received(client: [::1]:53245, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:57:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:57:33 ruptelaNet.go:278: Sent ACK (client: [::1]:53245, IMEI: 352094087982671) +2018/09/16 06:57:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53245, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 06:57:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:53303) +2018/09/16 06:58:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:58:00 ruptelaNet.go:261: Data received(client: [::1]:53303, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 06:58:00 ruptelaNet.go:278: Sent ACK (client: [::1]:53303, IMEI: 352094087982671) +2018/09/16 06:58:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:58:03 ruptelaNet.go:261: Data received(client: [::1]:53303, IMEI: 352094087982671) with duration 4.33 s +2018/09/16 06:58:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:58:03 ruptelaNet.go:278: Sent ACK (client: [::1]:53303, IMEI: 352094087982671) +2018/09/16 06:58:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53303, IMEI: 352094087982671) with duration 6.58 s +2018/09/16 06:58:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53337) +2018/09/16 06:58:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:58:14 ruptelaNet.go:261: Data received(client: [::1]:53337, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:58:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53337, IMEI: 352094089712860) +2018/09/16 06:58:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:58:16 ruptelaNet.go:261: Data received(client: [::1]:53337, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:58:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:58:16 ruptelaNet.go:278: Sent ACK (client: [::1]:53337, IMEI: 352094089712860) +2018/09/16 06:58:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53337, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 06:58:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:53360) +2018/09/16 06:58:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:58:28 ruptelaNet.go:261: Data received(client: [::1]:53360, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 06:58:28 ruptelaNet.go:278: Sent ACK (client: [::1]:53360, IMEI: 352094087982671) +2018/09/16 06:58:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:58:31 ruptelaNet.go:261: Data received(client: [::1]:53360, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:58:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:58:31 ruptelaNet.go:278: Sent ACK (client: [::1]:53360, IMEI: 352094087982671) +2018/09/16 06:58:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53360, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 06:58:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:53419) +2018/09/16 06:58:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:58:58 ruptelaNet.go:261: Data received(client: [::1]:53419, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 06:58:58 ruptelaNet.go:278: Sent ACK (client: [::1]:53419, IMEI: 352094087982671) +2018/09/16 06:59:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:53427) +2018/09/16 06:59:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:59:00 ruptelaNet.go:261: Data received(client: [::1]:53419, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 06:59:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:59:00 ruptelaNet.go:278: Sent ACK (client: [::1]:53419, IMEI: 352094087982671) +2018/09/16 06:59:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53419, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 06:59:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53456) +2018/09/16 06:59:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:59:14 ruptelaNet.go:261: Data received(client: [::1]:53456, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:59:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53456, IMEI: 352094089712860) +2018/09/16 06:59:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53427, IMEI: 0) with duration 15.53 s +2018/09/16 06:59:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:53462) +2018/09/16 06:59:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:59:16 ruptelaNet.go:261: Data received(client: [::1]:53456, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 06:59:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:59:16 ruptelaNet.go:278: Sent ACK (client: [::1]:53456, IMEI: 352094089712860) +2018/09/16 06:59:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53456, IMEI: 352094089712860) with duration 2.79 s +2018/09/16 06:59:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:53481) +2018/09/16 06:59:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:59:27 ruptelaNet.go:261: Data received(client: [::1]:53481, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:59:27 ruptelaNet.go:278: Sent ACK (client: [::1]:53481, IMEI: 352094087982671) +2018/09/16 06:59:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:59:29 ruptelaNet.go:261: Data received(client: [::1]:53481, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:59:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:59:29 ruptelaNet.go:278: Sent ACK (client: [::1]:53481, IMEI: 352094087982671) +2018/09/16 06:59:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53481, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 06:59:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53462, IMEI: 0) with duration 15.46 s +2018/09/16 06:59:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:53538) +2018/09/16 06:59:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:59:55 ruptelaNet.go:261: Data received(client: [::1]:53538, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 06:59:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53538, IMEI: 352094087982671) +2018/09/16 06:59:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:59:58 ruptelaNet.go:261: Data received(client: [::1]:53538, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:59:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:59:58 ruptelaNet.go:278: Sent ACK (client: [::1]:53538, IMEI: 352094087982671) +2018/09/16 07:00:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53538, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 07:00:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53579) +2018/09/16 07:00:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:00:14 ruptelaNet.go:261: Data received(client: [::1]:53579, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:00:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53579, IMEI: 352094089712860) +2018/09/16 07:00:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:00:15 ruptelaNet.go:261: Data received(client: [::1]:53579, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 07:00:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:00:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53579, IMEI: 352094089712860) +2018/09/16 07:00:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53579, IMEI: 352094089712860) with duration 3.02 s +2018/09/16 07:00:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:53601) +2018/09/16 07:00:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:00:24 ruptelaNet.go:261: Data received(client: [::1]:53601, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 07:00:24 ruptelaNet.go:278: Sent ACK (client: [::1]:53601, IMEI: 352094087982671) +2018/09/16 07:00:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:00:27 ruptelaNet.go:261: Data received(client: [::1]:53601, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 07:00:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:00:27 ruptelaNet.go:278: Sent ACK (client: [::1]:53601, IMEI: 352094087982671) +2018/09/16 07:00:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53601, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 07:00:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:53666) +2018/09/16 07:00:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:00:54 ruptelaNet.go:261: Data received(client: [::1]:53666, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 07:00:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53666, IMEI: 352094087982671) +2018/09/16 07:00:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:00:57 ruptelaNet.go:261: Data received(client: [::1]:53666, IMEI: 352094087982671) with duration 4.07 s +2018/09/16 07:00:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:00:57 ruptelaNet.go:278: Sent ACK (client: [::1]:53666, IMEI: 352094087982671) +2018/09/16 07:00:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53666, IMEI: 352094087982671) with duration 6.41 s +2018/09/16 07:01:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:53710) +2018/09/16 07:01:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:01:15 ruptelaNet.go:261: Data received(client: [::1]:53710, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:01:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53710, IMEI: 352094089712860) +2018/09/16 07:01:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:01:17 ruptelaNet.go:261: Data received(client: [::1]:53710, IMEI: 352094089712860) with duration 2.52 s +2018/09/16 07:01:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:01:17 ruptelaNet.go:278: Sent ACK (client: [::1]:53710, IMEI: 352094089712860) +2018/09/16 07:01:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53710, IMEI: 352094089712860) with duration 3.89 s +2018/09/16 07:01:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:53726) +2018/09/16 07:01:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:01:22 ruptelaNet.go:261: Data received(client: [::1]:53726, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 07:01:22 ruptelaNet.go:278: Sent ACK (client: [::1]:53726, IMEI: 352094087982671) +2018/09/16 07:01:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:01:25 ruptelaNet.go:261: Data received(client: [::1]:53726, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 07:01:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:01:25 ruptelaNet.go:278: Sent ACK (client: [::1]:53726, IMEI: 352094087982671) +2018/09/16 07:01:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53726, IMEI: 352094087982671) with duration 5.77 s +2018/09/16 07:01:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:53780) +2018/09/16 07:01:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:01:52 ruptelaNet.go:261: Data received(client: [::1]:53780, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:01:52 ruptelaNet.go:278: Sent ACK (client: [::1]:53780, IMEI: 352094087982671) +2018/09/16 07:01:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:01:54 ruptelaNet.go:261: Data received(client: [::1]:53780, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:01:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:01:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53780, IMEI: 352094087982671) +2018/09/16 07:01:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53780, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 07:02:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53831) +2018/09/16 07:02:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:02:14 ruptelaNet.go:261: Data received(client: [::1]:53831, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:02:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53831, IMEI: 352094089712860) +2018/09/16 07:02:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:02:16 ruptelaNet.go:261: Data received(client: [::1]:53831, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 07:02:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:02:16 ruptelaNet.go:278: Sent ACK (client: [::1]:53831, IMEI: 352094089712860) +2018/09/16 07:02:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53831, IMEI: 352094089712860) with duration 2.8 s +2018/09/16 07:02:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:53842) +2018/09/16 07:02:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:02:21 ruptelaNet.go:261: Data received(client: [::1]:53842, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:02:21 ruptelaNet.go:278: Sent ACK (client: [::1]:53842, IMEI: 352094087982671) +2018/09/16 07:02:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:02:23 ruptelaNet.go:261: Data received(client: [::1]:53842, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:02:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:02:23 ruptelaNet.go:278: Sent ACK (client: [::1]:53842, IMEI: 352094087982671) +2018/09/16 07:02:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53842, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:02:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:53899) +2018/09/16 07:02:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:02:50 ruptelaNet.go:261: Data received(client: [::1]:53899, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:02:50 ruptelaNet.go:278: Sent ACK (client: [::1]:53899, IMEI: 352094087982671) +2018/09/16 07:02:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:02:53 ruptelaNet.go:261: Data received(client: [::1]:53899, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:02:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:02:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53899, IMEI: 352094087982671) +2018/09/16 07:02:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53899, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 07:03:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53950) +2018/09/16 07:03:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:03:14 ruptelaNet.go:261: Data received(client: [::1]:53950, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:03:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53950, IMEI: 352094089712860) +2018/09/16 07:03:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:03:16 ruptelaNet.go:261: Data received(client: [::1]:53950, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 07:03:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:03:16 ruptelaNet.go:278: Sent ACK (client: [::1]:53950, IMEI: 352094089712860) +2018/09/16 07:03:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53950, IMEI: 352094089712860) with duration 3.58 s +2018/09/16 07:03:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:53962) +2018/09/16 07:03:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:03:19 ruptelaNet.go:261: Data received(client: [::1]:53962, IMEI: 352094087982671) with duration 0.79 s +2018/09/16 07:03:19 ruptelaNet.go:278: Sent ACK (client: [::1]:53962, IMEI: 352094087982671) +2018/09/16 07:03:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:03:21 ruptelaNet.go:261: Data received(client: [::1]:53962, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 07:03:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:03:21 ruptelaNet.go:278: Sent ACK (client: [::1]:53962, IMEI: 352094087982671) +2018/09/16 07:03:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53962, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 07:03:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:54026) +2018/09/16 07:03:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:03:48 ruptelaNet.go:261: Data received(client: [::1]:54026, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 07:03:48 ruptelaNet.go:278: Sent ACK (client: [::1]:54026, IMEI: 352094087982671) +2018/09/16 07:03:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:03:50 ruptelaNet.go:261: Data received(client: [::1]:54026, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 07:03:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:03:50 ruptelaNet.go:278: Sent ACK (client: [::1]:54026, IMEI: 352094087982671) +2018/09/16 07:03:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54026, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 07:04:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:54074) +2018/09/16 07:04:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:04:14 ruptelaNet.go:261: Data received(client: [::1]:54074, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:04:14 ruptelaNet.go:278: Sent ACK (client: [::1]:54074, IMEI: 352094089712860) +2018/09/16 07:04:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54080) +2018/09/16 07:04:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:04:17 ruptelaNet.go:261: Data received(client: [::1]:54080, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 07:04:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54080, IMEI: 352094087982671) +2018/09/16 07:04:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:04:18 ruptelaNet.go:261: Data received(client: [::1]:54074, IMEI: 352094089712860) with duration 3.68 s +2018/09/16 07:04:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:04:18 ruptelaNet.go:278: Sent ACK (client: [::1]:54074, IMEI: 352094089712860) +2018/09/16 07:04:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:04:19 ruptelaNet.go:261: Data received(client: [::1]:54080, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 07:04:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:04:19 ruptelaNet.go:278: Sent ACK (client: [::1]:54080, IMEI: 352094087982671) +2018/09/16 07:04:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54074, IMEI: 352094089712860) with duration 4.88 s +2018/09/16 07:04:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54080, IMEI: 352094087982671) with duration 5.79 s +2018/09/16 07:04:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:54137) +2018/09/16 07:04:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:04:45 ruptelaNet.go:261: Data received(client: [::1]:54137, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:04:45 ruptelaNet.go:278: Sent ACK (client: [::1]:54137, IMEI: 352094087982671) +2018/09/16 07:04:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:04:48 ruptelaNet.go:261: Data received(client: [::1]:54137, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:04:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:04:48 ruptelaNet.go:278: Sent ACK (client: [::1]:54137, IMEI: 352094087982671) +2018/09/16 07:04:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54137, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 07:05:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:54195) +2018/09/16 07:05:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:05:15 ruptelaNet.go:261: Data received(client: [::1]:54195, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 07:05:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54195, IMEI: 352094087982671) +2018/09/16 07:05:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:54201) +2018/09/16 07:05:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:05:16 ruptelaNet.go:261: Data received(client: [::1]:54201, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:05:16 ruptelaNet.go:278: Sent ACK (client: [::1]:54201, IMEI: 352094089712860) +2018/09/16 07:05:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:05:17 ruptelaNet.go:261: Data received(client: [::1]:54195, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 07:05:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:05:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54195, IMEI: 352094087982671) +2018/09/16 07:05:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:05:18 ruptelaNet.go:261: Data received(client: [::1]:54201, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 07:05:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:05:18 ruptelaNet.go:278: Sent ACK (client: [::1]:54201, IMEI: 352094089712860) +2018/09/16 07:05:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54201, IMEI: 352094089712860) with duration 3.71 s +2018/09/16 07:05:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54195, IMEI: 352094087982671) with duration 6.19 s +2018/09/16 07:05:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:54256) +2018/09/16 07:05:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:05:43 ruptelaNet.go:261: Data received(client: [::1]:54256, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 07:05:43 ruptelaNet.go:278: Sent ACK (client: [::1]:54256, IMEI: 352094087982671) +2018/09/16 07:05:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:05:46 ruptelaNet.go:261: Data received(client: [::1]:54256, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 07:05:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:05:46 ruptelaNet.go:278: Sent ACK (client: [::1]:54256, IMEI: 352094087982671) +2018/09/16 07:05:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54256, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 07:06:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:54318) +2018/09/16 07:06:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:06:13 ruptelaNet.go:261: Data received(client: [::1]:54318, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:06:13 ruptelaNet.go:278: Sent ACK (client: [::1]:54318, IMEI: 352094087982671) +2018/09/16 07:06:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:54324) +2018/09/16 07:06:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:06:14 ruptelaNet.go:261: Data received(client: [::1]:54324, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:06:14 ruptelaNet.go:278: Sent ACK (client: [::1]:54324, IMEI: 352094089712860) +2018/09/16 07:06:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:06:15 ruptelaNet.go:261: Data received(client: [::1]:54318, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 07:06:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:06:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54318, IMEI: 352094087982671) +2018/09/16 07:06:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:06:16 ruptelaNet.go:261: Data received(client: [::1]:54324, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 07:06:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:06:16 ruptelaNet.go:278: Sent ACK (client: [::1]:54324, IMEI: 352094089712860) +2018/09/16 07:06:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54324, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 07:06:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54318, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 07:06:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:54384) +2018/09/16 07:06:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:06:42 ruptelaNet.go:261: Data received(client: [::1]:54384, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:06:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54384, IMEI: 352094087982671) +2018/09/16 07:06:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:06:45 ruptelaNet.go:261: Data received(client: [::1]:54384, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 07:06:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:06:45 ruptelaNet.go:278: Sent ACK (client: [::1]:54384, IMEI: 352094087982671) +2018/09/16 07:06:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54384, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 07:07:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:54442) +2018/09/16 07:07:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:07:11 ruptelaNet.go:261: Data received(client: [::1]:54442, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 07:07:11 ruptelaNet.go:278: Sent ACK (client: [::1]:54442, IMEI: 352094087982671) +2018/09/16 07:07:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:07:13 ruptelaNet.go:261: Data received(client: [::1]:54442, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:07:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:07:13 ruptelaNet.go:278: Sent ACK (client: [::1]:54442, IMEI: 352094087982671) +2018/09/16 07:07:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:54453) +2018/09/16 07:07:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:07:14 ruptelaNet.go:261: Data received(client: [::1]:54453, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:07:14 ruptelaNet.go:278: Sent ACK (client: [::1]:54453, IMEI: 352094089712860) +2018/09/16 07:07:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54442, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:07:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:07:17 ruptelaNet.go:261: Data received(client: [::1]:54453, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 07:07:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:07:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54453, IMEI: 352094089712860) +2018/09/16 07:07:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54453, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 07:07:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54497) +2018/09/16 07:07:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:07:40 ruptelaNet.go:261: Data received(client: [::1]:54497, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:07:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54497, IMEI: 352094087982671) +2018/09/16 07:07:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:07:42 ruptelaNet.go:261: Data received(client: [::1]:54497, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:07:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:07:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54497, IMEI: 352094087982671) +2018/09/16 07:07:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54497, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 07:08:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:54557) +2018/09/16 07:08:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:08:08 ruptelaNet.go:261: Data received(client: [::1]:54557, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 07:08:08 ruptelaNet.go:278: Sent ACK (client: [::1]:54557, IMEI: 352094087982671) +2018/09/16 07:08:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:08:11 ruptelaNet.go:261: Data received(client: [::1]:54557, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:08:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:08:11 ruptelaNet.go:278: Sent ACK (client: [::1]:54557, IMEI: 352094087982671) +2018/09/16 07:08:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54557, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:08:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54574) +2018/09/16 07:08:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:08:15 ruptelaNet.go:261: Data received(client: [::1]:54574, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:08:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54574, IMEI: 352094089712860) +2018/09/16 07:08:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:08:17 ruptelaNet.go:261: Data received(client: [::1]:54574, IMEI: 352094089712860) with duration 2.75 s +2018/09/16 07:08:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:08:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54574, IMEI: 352094089712860) +2018/09/16 07:08:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54574, IMEI: 352094089712860) with duration 3.57 s +2018/09/16 07:08:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:54591) +2018/09/16 07:08:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:54619) +2018/09/16 07:08:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:08:38 ruptelaNet.go:261: Data received(client: [::1]:54619, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 07:08:38 ruptelaNet.go:278: Sent ACK (client: [::1]:54619, IMEI: 352094087982671) +2018/09/16 07:08:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54591, IMEI: 0) with duration 15.45 s +2018/09/16 07:08:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54624) +2018/09/16 07:08:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:08:40 ruptelaNet.go:261: Data received(client: [::1]:54619, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 07:08:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:08:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54619, IMEI: 352094087982671) +2018/09/16 07:08:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54619, IMEI: 352094087982671) with duration 6 s +2018/09/16 07:08:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54624, IMEI: 0) with duration 15.46 s +2018/09/16 07:09:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:54677) +2018/09/16 07:09:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:09:07 ruptelaNet.go:261: Data received(client: [::1]:54677, IMEI: 352094087982671) with duration 1.16 s +2018/09/16 07:09:07 ruptelaNet.go:278: Sent ACK (client: [::1]:54677, IMEI: 352094087982671) +2018/09/16 07:09:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:09:10 ruptelaNet.go:261: Data received(client: [::1]:54677, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 07:09:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:09:10 ruptelaNet.go:278: Sent ACK (client: [::1]:54677, IMEI: 352094087982671) +2018/09/16 07:09:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54677, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 07:09:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54696) +2018/09/16 07:09:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:09:15 ruptelaNet.go:261: Data received(client: [::1]:54696, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:09:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54696, IMEI: 352094089712860) +2018/09/16 07:09:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:09:17 ruptelaNet.go:261: Data received(client: [::1]:54696, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:09:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:09:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54696, IMEI: 352094089712860) +2018/09/16 07:09:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54696, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 07:09:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:54740) +2018/09/16 07:09:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:09:36 ruptelaNet.go:261: Data received(client: [::1]:54740, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:09:36 ruptelaNet.go:278: Sent ACK (client: [::1]:54740, IMEI: 352094087982671) +2018/09/16 07:09:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:09:38 ruptelaNet.go:261: Data received(client: [::1]:54740, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:09:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:09:38 ruptelaNet.go:278: Sent ACK (client: [::1]:54740, IMEI: 352094087982671) +2018/09/16 07:09:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54740, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:10:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:54804) +2018/09/16 07:10:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:10:05 ruptelaNet.go:261: Data received(client: [::1]:54804, IMEI: 352094087982671) with duration 0.66 s +2018/09/16 07:10:05 ruptelaNet.go:278: Sent ACK (client: [::1]:54804, IMEI: 352094087982671) +2018/09/16 07:10:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:10:07 ruptelaNet.go:261: Data received(client: [::1]:54804, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 07:10:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:10:07 ruptelaNet.go:278: Sent ACK (client: [::1]:54804, IMEI: 352094087982671) +2018/09/16 07:10:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54804, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 07:10:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54827) +2018/09/16 07:10:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:10:15 ruptelaNet.go:261: Data received(client: [::1]:54827, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 07:10:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54827, IMEI: 352094089712860) +2018/09/16 07:10:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:10:17 ruptelaNet.go:261: Data received(client: [::1]:54827, IMEI: 352094089712860) with duration 2.43 s +2018/09/16 07:10:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:10:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54827, IMEI: 352094089712860) +2018/09/16 07:10:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54827, IMEI: 352094089712860) with duration 3.63 s +2018/09/16 07:10:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:54864) +2018/09/16 07:10:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:10:34 ruptelaNet.go:261: Data received(client: [::1]:54864, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:10:34 ruptelaNet.go:278: Sent ACK (client: [::1]:54864, IMEI: 352094087982671) +2018/09/16 07:10:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:10:36 ruptelaNet.go:261: Data received(client: [::1]:54864, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:10:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:10:36 ruptelaNet.go:278: Sent ACK (client: [::1]:54864, IMEI: 352094087982671) +2018/09/16 07:10:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54864, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 07:11:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:54922) +2018/09/16 07:11:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:11:02 ruptelaNet.go:261: Data received(client: [::1]:54922, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 07:11:02 ruptelaNet.go:278: Sent ACK (client: [::1]:54922, IMEI: 352094087982671) +2018/09/16 07:11:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:11:05 ruptelaNet.go:261: Data received(client: [::1]:54922, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 07:11:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:11:05 ruptelaNet.go:278: Sent ACK (client: [::1]:54922, IMEI: 352094087982671) +2018/09/16 07:11:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54922, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 07:11:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:54953) +2018/09/16 07:11:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:11:16 ruptelaNet.go:261: Data received(client: [::1]:54953, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:11:16 ruptelaNet.go:278: Sent ACK (client: [::1]:54953, IMEI: 352094089712860) +2018/09/16 07:11:19 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:11:19 ruptelaNet.go:261: Data received(client: [::1]:54953, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 07:11:19 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:11:19 ruptelaNet.go:278: Sent ACK (client: [::1]:54953, IMEI: 352094089712860) +2018/09/16 07:11:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54953, IMEI: 352094089712860) with duration 4.09 s +2018/09/16 07:11:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:54982) +2018/09/16 07:11:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:11:32 ruptelaNet.go:261: Data received(client: [::1]:54982, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:11:32 ruptelaNet.go:278: Sent ACK (client: [::1]:54982, IMEI: 352094087982671) +2018/09/16 07:11:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:11:35 ruptelaNet.go:261: Data received(client: [::1]:54982, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 07:11:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:11:35 ruptelaNet.go:278: Sent ACK (client: [::1]:54982, IMEI: 352094087982671) +2018/09/16 07:11:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54982, IMEI: 352094087982671) with duration 6.56 s +2018/09/16 07:11:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:55042) +2018/09/16 07:12:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:12:00 ruptelaNet.go:261: Data received(client: [::1]:55042, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:12:00 ruptelaNet.go:278: Sent ACK (client: [::1]:55042, IMEI: 352094087982671) +2018/09/16 07:12:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:12:03 ruptelaNet.go:261: Data received(client: [::1]:55042, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:12:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:12:03 ruptelaNet.go:278: Sent ACK (client: [::1]:55042, IMEI: 352094087982671) +2018/09/16 07:12:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55042, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 07:12:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:55079) +2018/09/16 07:12:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:12:17 ruptelaNet.go:261: Data received(client: [::1]:55079, IMEI: 352094089712860) with duration 0.24 s +2018/09/16 07:12:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55079, IMEI: 352094089712860) +2018/09/16 07:12:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:12:20 ruptelaNet.go:261: Data received(client: [::1]:55079, IMEI: 352094089712860) with duration 3.37 s +2018/09/16 07:12:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:12:20 ruptelaNet.go:278: Sent ACK (client: [::1]:55079, IMEI: 352094089712860) +2018/09/16 07:12:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55079, IMEI: 352094089712860) with duration 5.93 s +2018/09/16 07:12:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:55102) +2018/09/16 07:12:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:12:29 ruptelaNet.go:261: Data received(client: [::1]:55102, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 07:12:29 ruptelaNet.go:278: Sent ACK (client: [::1]:55102, IMEI: 352094087982671) +2018/09/16 07:12:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:12:33 ruptelaNet.go:261: Data received(client: [::1]:55102, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 07:12:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:12:33 ruptelaNet.go:278: Sent ACK (client: [::1]:55102, IMEI: 352094087982671) +2018/09/16 07:12:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55102, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 07:12:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:55155) +2018/09/16 07:12:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:12:58 ruptelaNet.go:261: Data received(client: [::1]:55155, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 07:12:58 ruptelaNet.go:278: Sent ACK (client: [::1]:55155, IMEI: 352094087982671) +2018/09/16 07:13:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:13:02 ruptelaNet.go:261: Data received(client: [::1]:55155, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 07:13:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:13:02 ruptelaNet.go:278: Sent ACK (client: [::1]:55155, IMEI: 352094087982671) +2018/09/16 07:13:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55155, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 07:13:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55191) +2018/09/16 07:13:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:13:15 ruptelaNet.go:261: Data received(client: [::1]:55191, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:13:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55191, IMEI: 352094089712860) +2018/09/16 07:13:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:13:18 ruptelaNet.go:261: Data received(client: [::1]:55191, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 07:13:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:13:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55191, IMEI: 352094089712860) +2018/09/16 07:13:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55191, IMEI: 352094089712860) with duration 3.99 s +2018/09/16 07:13:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:55219) +2018/09/16 07:13:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:13:28 ruptelaNet.go:261: Data received(client: [::1]:55219, IMEI: 352094087982671) with duration 0.77 s +2018/09/16 07:13:28 ruptelaNet.go:278: Sent ACK (client: [::1]:55219, IMEI: 352094087982671) +2018/09/16 07:13:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:13:30 ruptelaNet.go:261: Data received(client: [::1]:55219, IMEI: 352094087982671) with duration 3.23 s +2018/09/16 07:13:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:13:30 ruptelaNet.go:278: Sent ACK (client: [::1]:55219, IMEI: 352094087982671) +2018/09/16 07:13:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55219, IMEI: 352094087982671) with duration 5.38 s +2018/09/16 07:13:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55273) +2018/09/16 07:13:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:13:56 ruptelaNet.go:261: Data received(client: [::1]:55273, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:13:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55273, IMEI: 352094087982671) +2018/09/16 07:13:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:13:58 ruptelaNet.go:261: Data received(client: [::1]:55273, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 07:13:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:13:58 ruptelaNet.go:278: Sent ACK (client: [::1]:55273, IMEI: 352094087982671) +2018/09/16 07:14:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55273, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 07:14:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55317) +2018/09/16 07:14:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:14:15 ruptelaNet.go:261: Data received(client: [::1]:55317, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:14:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55317, IMEI: 352094089712860) +2018/09/16 07:14:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:14:17 ruptelaNet.go:261: Data received(client: [::1]:55317, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 07:14:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:14:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55317, IMEI: 352094089712860) +2018/09/16 07:14:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55317, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 07:14:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:55338) +2018/09/16 07:14:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:14:25 ruptelaNet.go:261: Data received(client: [::1]:55338, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 07:14:25 ruptelaNet.go:278: Sent ACK (client: [::1]:55338, IMEI: 352094087982671) +2018/09/16 07:14:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:14:28 ruptelaNet.go:261: Data received(client: [::1]:55338, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:14:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:14:28 ruptelaNet.go:278: Sent ACK (client: [::1]:55338, IMEI: 352094087982671) +2018/09/16 07:14:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55338, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:14:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:55394) +2018/09/16 07:14:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:14:54 ruptelaNet.go:261: Data received(client: [::1]:55394, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:14:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55394, IMEI: 352094087982671) +2018/09/16 07:14:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:14:56 ruptelaNet.go:261: Data received(client: [::1]:55394, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 07:14:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:14:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55394, IMEI: 352094087982671) +2018/09/16 07:14:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55394, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:15:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:55442) +2018/09/16 07:15:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:15:16 ruptelaNet.go:261: Data received(client: [::1]:55442, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:15:16 ruptelaNet.go:278: Sent ACK (client: [::1]:55442, IMEI: 352094089712860) +2018/09/16 07:15:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:15:18 ruptelaNet.go:261: Data received(client: [::1]:55442, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 07:15:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:15:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55442, IMEI: 352094089712860) +2018/09/16 07:15:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55442, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 07:15:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:55453) +2018/09/16 07:15:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:15:23 ruptelaNet.go:261: Data received(client: [::1]:55453, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:15:23 ruptelaNet.go:278: Sent ACK (client: [::1]:55453, IMEI: 352094087982671) +2018/09/16 07:15:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:15:26 ruptelaNet.go:261: Data received(client: [::1]:55453, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 07:15:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:15:26 ruptelaNet.go:278: Sent ACK (client: [::1]:55453, IMEI: 352094087982671) +2018/09/16 07:15:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55453, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 07:15:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:55515) +2018/09/16 07:15:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:15:52 ruptelaNet.go:261: Data received(client: [::1]:55515, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 07:15:52 ruptelaNet.go:278: Sent ACK (client: [::1]:55515, IMEI: 352094087982671) +2018/09/16 07:15:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:15:54 ruptelaNet.go:261: Data received(client: [::1]:55515, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 07:15:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:15:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55515, IMEI: 352094087982671) +2018/09/16 07:15:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55515, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 07:16:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55566) +2018/09/16 07:16:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:16:15 ruptelaNet.go:261: Data received(client: [::1]:55566, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:16:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55566, IMEI: 352094089712860) +2018/09/16 07:16:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:16:18 ruptelaNet.go:261: Data received(client: [::1]:55566, IMEI: 352094089712860) with duration 2.64 s +2018/09/16 07:16:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:16:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55566, IMEI: 352094089712860) +2018/09/16 07:16:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55566, IMEI: 352094089712860) with duration 3.56 s +2018/09/16 07:16:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:55578) +2018/09/16 07:16:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:16:21 ruptelaNet.go:261: Data received(client: [::1]:55578, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 07:16:21 ruptelaNet.go:278: Sent ACK (client: [::1]:55578, IMEI: 352094087982671) +2018/09/16 07:16:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:16:24 ruptelaNet.go:261: Data received(client: [::1]:55578, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 07:16:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:16:24 ruptelaNet.go:278: Sent ACK (client: [::1]:55578, IMEI: 352094087982671) +2018/09/16 07:16:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55578, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 07:16:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:55634) +2018/09/16 07:16:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:16:49 ruptelaNet.go:261: Data received(client: [::1]:55634, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:55634, IMEI: 352094087982671) +2018/09/16 07:16:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:16:52 ruptelaNet.go:261: Data received(client: [::1]:55634, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:16:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:16:52 ruptelaNet.go:278: Sent ACK (client: [::1]:55634, IMEI: 352094087982671) +2018/09/16 07:16:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55634, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 07:17:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55694) +2018/09/16 07:17:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:17:15 ruptelaNet.go:261: Data received(client: [::1]:55694, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:17:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55694, IMEI: 352094089712860) +2018/09/16 07:17:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:17:17 ruptelaNet.go:261: Data received(client: [::1]:55694, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 07:17:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:17:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55694, IMEI: 352094089712860) +2018/09/16 07:17:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:55703) +2018/09/16 07:17:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55694, IMEI: 352094089712860) with duration 2.64 s +2018/09/16 07:17:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:17:19 ruptelaNet.go:261: Data received(client: [::1]:55703, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:17:19 ruptelaNet.go:278: Sent ACK (client: [::1]:55703, IMEI: 352094087982671) +2018/09/16 07:17:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:17:22 ruptelaNet.go:261: Data received(client: [::1]:55703, IMEI: 352094087982671) with duration 4.39 s +2018/09/16 07:17:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:17:22 ruptelaNet.go:278: Sent ACK (client: [::1]:55703, IMEI: 352094087982671) +2018/09/16 07:17:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55703, IMEI: 352094087982671) with duration 6.54 s +2018/09/16 07:17:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:55763) +2018/09/16 07:17:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:17:48 ruptelaNet.go:261: Data received(client: [::1]:55763, IMEI: 352094087982671) with duration 0.73 s +2018/09/16 07:17:48 ruptelaNet.go:278: Sent ACK (client: [::1]:55763, IMEI: 352094087982671) +2018/09/16 07:17:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:17:50 ruptelaNet.go:261: Data received(client: [::1]:55763, IMEI: 352094087982671) with duration 3.6 s +2018/09/16 07:17:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:17:50 ruptelaNet.go:278: Sent ACK (client: [::1]:55763, IMEI: 352094087982671) +2018/09/16 07:17:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55763, IMEI: 352094087982671) with duration 5.75 s +2018/09/16 07:18:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:55823) +2018/09/16 07:18:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:55824) +2018/09/16 07:18:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:18:16 ruptelaNet.go:261: Data received(client: [::1]:55824, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:55824, IMEI: 352094089712860) +2018/09/16 07:18:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:18:17 ruptelaNet.go:261: Data received(client: [::1]:55823, IMEI: 352094087982671) with duration 1.28 s +2018/09/16 07:18:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55823, IMEI: 352094087982671) +2018/09/16 07:18:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:18:18 ruptelaNet.go:261: Data received(client: [::1]:55824, IMEI: 352094089712860) with duration 2.24 s +2018/09/16 07:18:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:18:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55824, IMEI: 352094089712860) +2018/09/16 07:18:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55824, IMEI: 352094089712860) with duration 4.4 s +2018/09/16 07:18:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:18:20 ruptelaNet.go:261: Data received(client: [::1]:55823, IMEI: 352094087982671) with duration 4.71 s +2018/09/16 07:18:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:18:20 ruptelaNet.go:278: Sent ACK (client: [::1]:55823, IMEI: 352094087982671) +2018/09/16 07:18:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55823, IMEI: 352094087982671) with duration 6.94 s +2018/09/16 07:18:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:55891) +2018/09/16 07:18:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:18:47 ruptelaNet.go:261: Data received(client: [::1]:55891, IMEI: 352094087982671) with duration 1.2 s +2018/09/16 07:18:47 ruptelaNet.go:278: Sent ACK (client: [::1]:55891, IMEI: 352094087982671) +2018/09/16 07:18:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:18:50 ruptelaNet.go:261: Data received(client: [::1]:55891, IMEI: 352094087982671) with duration 4.1 s +2018/09/16 07:18:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:18:50 ruptelaNet.go:278: Sent ACK (client: [::1]:55891, IMEI: 352094087982671) +2018/09/16 07:18:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55891, IMEI: 352094087982671) with duration 6.25 s +2018/09/16 07:19:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55951) +2018/09/16 07:19:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:19:15 ruptelaNet.go:261: Data received(client: [::1]:55951, IMEI: 352094087982671) with duration 0.87 s +2018/09/16 07:19:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55951, IMEI: 352094087982671) +2018/09/16 07:19:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:55957) +2018/09/16 07:19:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:19:17 ruptelaNet.go:261: Data received(client: [::1]:55957, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:19:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55957, IMEI: 352094089712860) +2018/09/16 07:19:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:19:18 ruptelaNet.go:261: Data received(client: [::1]:55951, IMEI: 352094087982671) with duration 3.67 s +2018/09/16 07:19:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:19:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55951, IMEI: 352094087982671) +2018/09/16 07:19:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:19:20 ruptelaNet.go:261: Data received(client: [::1]:55957, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 07:19:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:19:20 ruptelaNet.go:278: Sent ACK (client: [::1]:55957, IMEI: 352094089712860) +2018/09/16 07:19:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55951, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 07:19:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55957, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 07:19:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:56011) +2018/09/16 07:19:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:19:45 ruptelaNet.go:261: Data received(client: [::1]:56011, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:19:45 ruptelaNet.go:278: Sent ACK (client: [::1]:56011, IMEI: 352094087982671) +2018/09/16 07:19:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:19:47 ruptelaNet.go:261: Data received(client: [::1]:56011, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:19:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:19:47 ruptelaNet.go:278: Sent ACK (client: [::1]:56011, IMEI: 352094087982671) +2018/09/16 07:19:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56011, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 07:20:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:56070) +2018/09/16 07:20:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:20:14 ruptelaNet.go:261: Data received(client: [::1]:56070, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:20:14 ruptelaNet.go:278: Sent ACK (client: [::1]:56070, IMEI: 352094087982671) +2018/09/16 07:20:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:20:16 ruptelaNet.go:261: Data received(client: [::1]:56070, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 07:20:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:20:16 ruptelaNet.go:278: Sent ACK (client: [::1]:56070, IMEI: 352094087982671) +2018/09/16 07:20:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56070, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 07:20:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:56099) +2018/09/16 07:20:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:20:25 ruptelaNet.go:261: Data received(client: [::1]:56099, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:20:25 ruptelaNet.go:278: Sent ACK (client: [::1]:56099, IMEI: 352094089712860) +2018/09/16 07:20:30 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:20:30 ruptelaNet.go:261: Data received(client: [::1]:56099, IMEI: 352094089712860) with duration 4.3 s +2018/09/16 07:20:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:20:30 ruptelaNet.go:278: Sent ACK (client: [::1]:56099, IMEI: 352094089712860) +2018/09/16 07:20:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56099, IMEI: 352094089712860) with duration 5.12 s +2018/09/16 07:20:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56132) +2018/09/16 07:20:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:20:43 ruptelaNet.go:261: Data received(client: [::1]:56132, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 07:20:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56132, IMEI: 352094087982671) +2018/09/16 07:20:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:20:45 ruptelaNet.go:261: Data received(client: [::1]:56132, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 07:20:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:20:45 ruptelaNet.go:278: Sent ACK (client: [::1]:56132, IMEI: 352094087982671) +2018/09/16 07:20:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56132, IMEI: 352094087982671) with duration 6.11 s +2018/09/16 07:21:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:56194) +2018/09/16 07:21:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:21:12 ruptelaNet.go:261: Data received(client: [::1]:56194, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:21:12 ruptelaNet.go:278: Sent ACK (client: [::1]:56194, IMEI: 352094087982671) +2018/09/16 07:21:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:21:15 ruptelaNet.go:261: Data received(client: [::1]:56194, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 07:21:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:21:15 ruptelaNet.go:278: Sent ACK (client: [::1]:56194, IMEI: 352094087982671) +2018/09/16 07:21:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56194, IMEI: 352094087982671) with duration 6.19 s +2018/09/16 07:21:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:56210) +2018/09/16 07:21:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:21:18 ruptelaNet.go:261: Data received(client: [::1]:56210, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:21:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56210, IMEI: 352094089712860) +2018/09/16 07:21:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:21:20 ruptelaNet.go:261: Data received(client: [::1]:56210, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:21:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:21:20 ruptelaNet.go:278: Sent ACK (client: [::1]:56210, IMEI: 352094089712860) +2018/09/16 07:21:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56210, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 07:21:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:56251) +2018/09/16 07:21:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:21:41 ruptelaNet.go:261: Data received(client: [::1]:56251, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:21:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56251, IMEI: 352094087982671) +2018/09/16 07:21:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:21:43 ruptelaNet.go:261: Data received(client: [::1]:56251, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:21:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:21:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56251, IMEI: 352094087982671) +2018/09/16 07:21:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56251, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:22:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:56315) +2018/09/16 07:22:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:22:10 ruptelaNet.go:261: Data received(client: [::1]:56315, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 07:22:10 ruptelaNet.go:278: Sent ACK (client: [::1]:56315, IMEI: 352094087982671) +2018/09/16 07:22:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:22:13 ruptelaNet.go:261: Data received(client: [::1]:56315, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:22:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:22:13 ruptelaNet.go:278: Sent ACK (client: [::1]:56315, IMEI: 352094087982671) +2018/09/16 07:22:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56315, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 07:22:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:56332) +2018/09/16 07:22:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:22:18 ruptelaNet.go:261: Data received(client: [::1]:56332, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:22:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56332, IMEI: 352094089712860) +2018/09/16 07:22:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:22:21 ruptelaNet.go:261: Data received(client: [::1]:56332, IMEI: 352094089712860) with duration 3.51 s +2018/09/16 07:22:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:22:21 ruptelaNet.go:278: Sent ACK (client: [::1]:56332, IMEI: 352094089712860) +2018/09/16 07:22:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56332, IMEI: 352094089712860) with duration 4.38 s +2018/09/16 07:22:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:56372) +2018/09/16 07:22:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:22:39 ruptelaNet.go:261: Data received(client: [::1]:56372, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:22:39 ruptelaNet.go:278: Sent ACK (client: [::1]:56372, IMEI: 352094087982671) +2018/09/16 07:22:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:22:42 ruptelaNet.go:261: Data received(client: [::1]:56372, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:22:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:22:42 ruptelaNet.go:278: Sent ACK (client: [::1]:56372, IMEI: 352094087982671) +2018/09/16 07:22:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56372, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:23:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:56432) +2018/09/16 07:23:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:23:08 ruptelaNet.go:261: Data received(client: [::1]:56432, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 07:23:08 ruptelaNet.go:278: Sent ACK (client: [::1]:56432, IMEI: 352094087982671) +2018/09/16 07:23:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:23:10 ruptelaNet.go:261: Data received(client: [::1]:56432, IMEI: 352094087982671) with duration 3.7 s +2018/09/16 07:23:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:23:10 ruptelaNet.go:278: Sent ACK (client: [::1]:56432, IMEI: 352094087982671) +2018/09/16 07:23:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56432, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 07:23:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:56458) +2018/09/16 07:23:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:23:16 ruptelaNet.go:261: Data received(client: [::1]:56458, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:23:16 ruptelaNet.go:278: Sent ACK (client: [::1]:56458, IMEI: 352094089712860) +2018/09/16 07:23:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:23:18 ruptelaNet.go:261: Data received(client: [::1]:56458, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 07:23:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:23:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56458, IMEI: 352094089712860) +2018/09/16 07:23:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56458, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 07:23:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:56496) +2018/09/16 07:23:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:23:37 ruptelaNet.go:261: Data received(client: [::1]:56496, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:23:37 ruptelaNet.go:278: Sent ACK (client: [::1]:56496, IMEI: 352094087982671) +2018/09/16 07:23:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:23:39 ruptelaNet.go:261: Data received(client: [::1]:56496, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:23:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:23:39 ruptelaNet.go:278: Sent ACK (client: [::1]:56496, IMEI: 352094087982671) +2018/09/16 07:23:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56496, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:24:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:56559) +2018/09/16 07:24:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:24:06 ruptelaNet.go:261: Data received(client: [::1]:56559, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:24:06 ruptelaNet.go:278: Sent ACK (client: [::1]:56559, IMEI: 352094087982671) +2018/09/16 07:24:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:24:08 ruptelaNet.go:261: Data received(client: [::1]:56559, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:24:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:24:08 ruptelaNet.go:278: Sent ACK (client: [::1]:56559, IMEI: 352094087982671) +2018/09/16 07:24:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56559, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 07:24:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:56608) +2018/09/16 07:24:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:24:24 ruptelaNet.go:261: Data received(client: [::1]:56608, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:24:24 ruptelaNet.go:278: Sent ACK (client: [::1]:56608, IMEI: 352094089712860) +2018/09/16 07:24:29 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:24:29 ruptelaNet.go:261: Data received(client: [::1]:56608, IMEI: 352094089712860) with duration 5.02 s +2018/09/16 07:24:29 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:24:29 ruptelaNet.go:278: Sent ACK (client: [::1]:56608, IMEI: 352094089712860) +2018/09/16 07:24:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56608, IMEI: 352094089712860) with duration 7.68 s +2018/09/16 07:24:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:56628) +2018/09/16 07:24:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:24:35 ruptelaNet.go:261: Data received(client: [::1]:56628, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 07:24:35 ruptelaNet.go:278: Sent ACK (client: [::1]:56628, IMEI: 352094087982671) +2018/09/16 07:24:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:24:37 ruptelaNet.go:261: Data received(client: [::1]:56628, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 07:24:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:24:37 ruptelaNet.go:278: Sent ACK (client: [::1]:56628, IMEI: 352094087982671) +2018/09/16 07:24:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56628, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 07:25:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:56687) +2018/09/16 07:25:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:25:04 ruptelaNet.go:261: Data received(client: [::1]:56687, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 07:25:04 ruptelaNet.go:278: Sent ACK (client: [::1]:56687, IMEI: 352094087982671) +2018/09/16 07:25:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:25:06 ruptelaNet.go:261: Data received(client: [::1]:56687, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 07:25:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:25:06 ruptelaNet.go:278: Sent ACK (client: [::1]:56687, IMEI: 352094087982671) +2018/09/16 07:25:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56687, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 07:25:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:56719) +2018/09/16 07:25:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:25:16 ruptelaNet.go:261: Data received(client: [::1]:56719, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:25:16 ruptelaNet.go:278: Sent ACK (client: [::1]:56719, IMEI: 352094089712860) +2018/09/16 07:25:19 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:25:19 ruptelaNet.go:261: Data received(client: [::1]:56719, IMEI: 352094089712860) with duration 2.56 s +2018/09/16 07:25:19 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:25:19 ruptelaNet.go:278: Sent ACK (client: [::1]:56719, IMEI: 352094089712860) +2018/09/16 07:25:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56719, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 07:25:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:56750) +2018/09/16 07:25:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:25:33 ruptelaNet.go:261: Data received(client: [::1]:56750, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:25:33 ruptelaNet.go:278: Sent ACK (client: [::1]:56750, IMEI: 352094087982671) +2018/09/16 07:25:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:25:35 ruptelaNet.go:261: Data received(client: [::1]:56750, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:25:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:25:35 ruptelaNet.go:278: Sent ACK (client: [::1]:56750, IMEI: 352094087982671) +2018/09/16 07:25:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56750, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 07:26:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:56809) +2018/09/16 07:26:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:26:02 ruptelaNet.go:261: Data received(client: [::1]:56809, IMEI: 352094087982671) with duration 0.61 s +2018/09/16 07:26:02 ruptelaNet.go:278: Sent ACK (client: [::1]:56809, IMEI: 352094087982671) +2018/09/16 07:26:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:26:04 ruptelaNet.go:261: Data received(client: [::1]:56809, IMEI: 352094087982671) with duration 3.28 s +2018/09/16 07:26:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:26:04 ruptelaNet.go:278: Sent ACK (client: [::1]:56809, IMEI: 352094087982671) +2018/09/16 07:26:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56809, IMEI: 352094087982671) with duration 5.35 s +2018/09/16 07:26:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:56866) +2018/09/16 07:26:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:26:28 ruptelaNet.go:261: Data received(client: [::1]:56866, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 07:26:28 ruptelaNet.go:278: Sent ACK (client: [::1]:56866, IMEI: 352094089712860) +2018/09/16 07:26:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:56872) +2018/09/16 07:26:30 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:26:30 ruptelaNet.go:261: Data received(client: [::1]:56866, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 07:26:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:26:30 ruptelaNet.go:278: Sent ACK (client: [::1]:56866, IMEI: 352094089712860) +2018/09/16 07:26:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:26:31 ruptelaNet.go:261: Data received(client: [::1]:56872, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:26:31 ruptelaNet.go:278: Sent ACK (client: [::1]:56872, IMEI: 352094087982671) +2018/09/16 07:26:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56866, IMEI: 352094089712860) with duration 3.79 s +2018/09/16 07:26:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:26:34 ruptelaNet.go:261: Data received(client: [::1]:56872, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 07:26:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:26:34 ruptelaNet.go:278: Sent ACK (client: [::1]:56872, IMEI: 352094087982671) +2018/09/16 07:26:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56872, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:26:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:56937) +2018/09/16 07:27:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:27:00 ruptelaNet.go:261: Data received(client: [::1]:56937, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:27:00 ruptelaNet.go:278: Sent ACK (client: [::1]:56937, IMEI: 352094087982671) +2018/09/16 07:27:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:27:02 ruptelaNet.go:261: Data received(client: [::1]:56937, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 07:27:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:27:02 ruptelaNet.go:278: Sent ACK (client: [::1]:56937, IMEI: 352094087982671) +2018/09/16 07:27:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56937, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 07:27:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:56975) +2018/09/16 07:27:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:27:19 ruptelaNet.go:261: Data received(client: [::1]:56975, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:27:19 ruptelaNet.go:278: Sent ACK (client: [::1]:56975, IMEI: 352094089712860) +2018/09/16 07:27:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:27:23 ruptelaNet.go:261: Data received(client: [::1]:56975, IMEI: 352094089712860) with duration 3.89 s +2018/09/16 07:27:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:27:23 ruptelaNet.go:278: Sent ACK (client: [::1]:56975, IMEI: 352094089712860) +2018/09/16 07:27:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56975, IMEI: 352094089712860) with duration 5.43 s +2018/09/16 07:27:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:56992) +2018/09/16 07:27:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:27:29 ruptelaNet.go:261: Data received(client: [::1]:56992, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 07:27:29 ruptelaNet.go:278: Sent ACK (client: [::1]:56992, IMEI: 352094087982671) +2018/09/16 07:27:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:27:31 ruptelaNet.go:261: Data received(client: [::1]:56992, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:27:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:27:31 ruptelaNet.go:278: Sent ACK (client: [::1]:56992, IMEI: 352094087982671) +2018/09/16 07:27:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56992, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:27:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:57051) +2018/09/16 07:27:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:27:58 ruptelaNet.go:261: Data received(client: [::1]:57051, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 07:27:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57051, IMEI: 352094087982671) +2018/09/16 07:28:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:28:00 ruptelaNet.go:261: Data received(client: [::1]:57051, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 07:28:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:28:00 ruptelaNet.go:278: Sent ACK (client: [::1]:57051, IMEI: 352094087982671) +2018/09/16 07:28:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57051, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 07:28:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:57105) +2018/09/16 07:28:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:28:22 ruptelaNet.go:261: Data received(client: [::1]:57105, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:28:22 ruptelaNet.go:278: Sent ACK (client: [::1]:57105, IMEI: 352094089712860) +2018/09/16 07:28:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:28:24 ruptelaNet.go:261: Data received(client: [::1]:57105, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 07:28:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:28:24 ruptelaNet.go:278: Sent ACK (client: [::1]:57105, IMEI: 352094089712860) +2018/09/16 07:28:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:57115) +2018/09/16 07:28:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:28:27 ruptelaNet.go:261: Data received(client: [::1]:57115, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 07:28:27 ruptelaNet.go:278: Sent ACK (client: [::1]:57115, IMEI: 352094087982671) +2018/09/16 07:28:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57105, IMEI: 352094089712860) with duration 5.83 s +2018/09/16 07:28:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:28:29 ruptelaNet.go:261: Data received(client: [::1]:57115, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:28:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:28:29 ruptelaNet.go:278: Sent ACK (client: [::1]:57115, IMEI: 352094087982671) +2018/09/16 07:28:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57115, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 07:28:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:57171) +2018/09/16 07:28:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:28:56 ruptelaNet.go:261: Data received(client: [::1]:57171, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:28:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57171, IMEI: 352094087982671) +2018/09/16 07:28:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:28:58 ruptelaNet.go:261: Data received(client: [::1]:57171, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 07:28:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:28:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57171, IMEI: 352094087982671) +2018/09/16 07:29:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57171, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 07:29:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:57224) +2018/09/16 07:29:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:29:19 ruptelaNet.go:261: Data received(client: [::1]:57224, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:29:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57224, IMEI: 352094089712860) +2018/09/16 07:29:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:29:21 ruptelaNet.go:261: Data received(client: [::1]:57224, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 07:29:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:29:22 ruptelaNet.go:278: Sent ACK (client: [::1]:57224, IMEI: 352094089712860) +2018/09/16 07:29:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57224, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 07:29:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:57236) +2018/09/16 07:29:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:29:25 ruptelaNet.go:261: Data received(client: [::1]:57236, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 07:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:57236, IMEI: 352094087982671) +2018/09/16 07:29:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:29:28 ruptelaNet.go:261: Data received(client: [::1]:57236, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 07:29:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:29:28 ruptelaNet.go:278: Sent ACK (client: [::1]:57236, IMEI: 352094087982671) +2018/09/16 07:29:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57236, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 07:29:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:57265) +2018/09/16 07:29:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57265, IMEI: 0) with duration 15.39 s +2018/09/16 07:29:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:57299) +2018/09/16 07:29:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:57300) +2018/09/16 07:29:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:29:54 ruptelaNet.go:261: Data received(client: [::1]:57300, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 07:29:54 ruptelaNet.go:278: Sent ACK (client: [::1]:57300, IMEI: 352094087982671) +2018/09/16 07:29:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:29:57 ruptelaNet.go:261: Data received(client: [::1]:57300, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 07:29:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:29:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57300, IMEI: 352094087982671) +2018/09/16 07:29:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57300, IMEI: 352094087982671) with duration 6.47 s +2018/09/16 07:30:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57299, IMEI: 0) with duration 15.66 s +2018/09/16 07:30:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:57352) +2018/09/16 07:30:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:30:17 ruptelaNet.go:261: Data received(client: [::1]:57352, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:30:17 ruptelaNet.go:278: Sent ACK (client: [::1]:57352, IMEI: 352094089712860) +2018/09/16 07:30:19 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:30:19 ruptelaNet.go:261: Data received(client: [::1]:57352, IMEI: 352094089712860) with duration 2.44 s +2018/09/16 07:30:19 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:30:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57352, IMEI: 352094089712860) +2018/09/16 07:30:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57352, IMEI: 352094089712860) with duration 4.86 s +2018/09/16 07:30:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:57364) +2018/09/16 07:30:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:30:22 ruptelaNet.go:261: Data received(client: [::1]:57364, IMEI: 352094087982671) with duration 0.39 s +2018/09/16 07:30:22 ruptelaNet.go:278: Sent ACK (client: [::1]:57364, IMEI: 352094087982671) +2018/09/16 07:30:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:30:25 ruptelaNet.go:261: Data received(client: [::1]:57364, IMEI: 352094087982671) with duration 3.17 s +2018/09/16 07:30:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:30:25 ruptelaNet.go:278: Sent ACK (client: [::1]:57364, IMEI: 352094087982671) +2018/09/16 07:30:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57364, IMEI: 352094087982671) with duration 5.35 s +2018/09/16 07:30:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:57417) +2018/09/16 07:30:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:30:52 ruptelaNet.go:261: Data received(client: [::1]:57417, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:30:52 ruptelaNet.go:278: Sent ACK (client: [::1]:57417, IMEI: 352094087982671) +2018/09/16 07:30:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:30:54 ruptelaNet.go:261: Data received(client: [::1]:57417, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 07:30:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:30:54 ruptelaNet.go:278: Sent ACK (client: [::1]:57417, IMEI: 352094087982671) +2018/09/16 07:30:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57417, IMEI: 352094087982671) with duration 6.11 s +2018/09/16 07:31:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:57467) +2018/09/16 07:31:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:31:18 ruptelaNet.go:261: Data received(client: [::1]:57467, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:31:18 ruptelaNet.go:278: Sent ACK (client: [::1]:57467, IMEI: 352094089712860) +2018/09/16 07:31:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:57473) +2018/09/16 07:31:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:31:21 ruptelaNet.go:261: Data received(client: [::1]:57473, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:31:21 ruptelaNet.go:278: Sent ACK (client: [::1]:57473, IMEI: 352094087982671) +2018/09/16 07:31:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:31:21 ruptelaNet.go:261: Data received(client: [::1]:57467, IMEI: 352094089712860) with duration 2.1 s +2018/09/16 07:31:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:31:21 ruptelaNet.go:278: Sent ACK (client: [::1]:57467, IMEI: 352094089712860) +2018/09/16 07:31:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57467, IMEI: 352094089712860) with duration 3.89 s +2018/09/16 07:31:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:31:23 ruptelaNet.go:261: Data received(client: [::1]:57473, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:31:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:31:23 ruptelaNet.go:278: Sent ACK (client: [::1]:57473, IMEI: 352094087982671) +2018/09/16 07:31:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57473, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 07:31:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:57536) +2018/09/16 07:31:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:31:50 ruptelaNet.go:261: Data received(client: [::1]:57536, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:31:50 ruptelaNet.go:278: Sent ACK (client: [::1]:57536, IMEI: 352094087982671) +2018/09/16 07:31:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:31:52 ruptelaNet.go:261: Data received(client: [::1]:57536, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:31:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:31:52 ruptelaNet.go:278: Sent ACK (client: [::1]:57536, IMEI: 352094087982671) +2018/09/16 07:31:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57536, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:32:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:57597) +2018/09/16 07:32:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:32:19 ruptelaNet.go:261: Data received(client: [::1]:57597, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 07:32:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57597, IMEI: 352094087982671) +2018/09/16 07:32:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:57602) +2018/09/16 07:32:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:32:19 ruptelaNet.go:261: Data received(client: [::1]:57602, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:32:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57602, IMEI: 352094089712860) +2018/09/16 07:32:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:32:21 ruptelaNet.go:261: Data received(client: [::1]:57597, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 07:32:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:32:21 ruptelaNet.go:278: Sent ACK (client: [::1]:57597, IMEI: 352094087982671) +2018/09/16 07:32:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57597, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 07:32:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:32:27 ruptelaNet.go:261: Data received(client: [::1]:57602, IMEI: 352094089712860) with duration 8.07 s +2018/09/16 07:32:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:32:27 ruptelaNet.go:278: Sent ACK (client: [::1]:57602, IMEI: 352094089712860) +2018/09/16 07:32:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57602, IMEI: 352094089712860) with duration 9.93 s +2018/09/16 07:32:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:57667) +2018/09/16 07:32:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:32:48 ruptelaNet.go:261: Data received(client: [::1]:57667, IMEI: 352094087982671) with duration 0.02 s +2018/09/16 07:32:48 ruptelaNet.go:278: Sent ACK (client: [::1]:57667, IMEI: 352094087982671) +2018/09/16 07:32:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:32:50 ruptelaNet.go:261: Data received(client: [::1]:57667, IMEI: 352094087982671) with duration 2.62 s +2018/09/16 07:32:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:32:50 ruptelaNet.go:278: Sent ACK (client: [::1]:57667, IMEI: 352094087982671) +2018/09/16 07:32:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57667, IMEI: 352094087982671) with duration 4.97 s +2018/09/16 07:33:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:57726) +2018/09/16 07:33:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:33:16 ruptelaNet.go:261: Data received(client: [::1]:57726, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 07:33:16 ruptelaNet.go:278: Sent ACK (client: [::1]:57726, IMEI: 352094087982671) +2018/09/16 07:33:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:33:19 ruptelaNet.go:261: Data received(client: [::1]:57726, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 07:33:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:33:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57726, IMEI: 352094087982671) +2018/09/16 07:33:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57726, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 07:33:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:57747) +2018/09/16 07:33:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:33:28 ruptelaNet.go:261: Data received(client: [::1]:57747, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:33:28 ruptelaNet.go:278: Sent ACK (client: [::1]:57747, IMEI: 352094089712860) +2018/09/16 07:33:37 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:33:37 ruptelaNet.go:261: Data received(client: [::1]:57747, IMEI: 352094089712860) with duration 8.91 s +2018/09/16 07:33:37 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:33:37 ruptelaNet.go:278: Sent ACK (client: [::1]:57747, IMEI: 352094089712860) +2018/09/16 07:33:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57747, IMEI: 352094089712860) with duration 13.72 s +2018/09/16 07:33:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:57780) +2018/09/16 07:33:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:33:45 ruptelaNet.go:261: Data received(client: [::1]:57780, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:33:45 ruptelaNet.go:278: Sent ACK (client: [::1]:57780, IMEI: 352094087982671) +2018/09/16 07:33:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:33:47 ruptelaNet.go:261: Data received(client: [::1]:57780, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 07:33:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:33:47 ruptelaNet.go:278: Sent ACK (client: [::1]:57780, IMEI: 352094087982671) +2018/09/16 07:33:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57780, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 07:34:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:57846) +2018/09/16 07:34:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:34:14 ruptelaNet.go:261: Data received(client: [::1]:57846, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:34:14 ruptelaNet.go:278: Sent ACK (client: [::1]:57846, IMEI: 352094087982671) +2018/09/16 07:34:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:57857) +2018/09/16 07:34:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:34:17 ruptelaNet.go:261: Data received(client: [::1]:57857, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:34:17 ruptelaNet.go:278: Sent ACK (client: [::1]:57857, IMEI: 352094089712860) +2018/09/16 07:34:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:34:18 ruptelaNet.go:261: Data received(client: [::1]:57846, IMEI: 352094087982671) with duration 4.92 s +2018/09/16 07:34:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:34:18 ruptelaNet.go:278: Sent ACK (client: [::1]:57846, IMEI: 352094087982671) +2018/09/16 07:34:19 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:34:19 ruptelaNet.go:261: Data received(client: [::1]:57857, IMEI: 352094089712860) with duration 2.24 s +2018/09/16 07:34:19 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:34:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57857, IMEI: 352094089712860) +2018/09/16 07:34:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57846, IMEI: 352094087982671) with duration 7.37 s +2018/09/16 07:34:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57857, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 07:34:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57911) +2018/09/16 07:34:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:34:44 ruptelaNet.go:261: Data received(client: [::1]:57911, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:34:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57911, IMEI: 352094087982671) +2018/09/16 07:34:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:34:47 ruptelaNet.go:261: Data received(client: [::1]:57911, IMEI: 352094087982671) with duration 4 s +2018/09/16 07:34:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:34:47 ruptelaNet.go:278: Sent ACK (client: [::1]:57911, IMEI: 352094087982671) +2018/09/16 07:34:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57911, IMEI: 352094087982671) with duration 6.46 s +2018/09/16 07:35:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:57971) +2018/09/16 07:35:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:35:13 ruptelaNet.go:261: Data received(client: [::1]:57971, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 07:35:13 ruptelaNet.go:278: Sent ACK (client: [::1]:57971, IMEI: 352094087982671) +2018/09/16 07:35:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:35:16 ruptelaNet.go:261: Data received(client: [::1]:57971, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 07:35:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:35:16 ruptelaNet.go:278: Sent ACK (client: [::1]:57971, IMEI: 352094087982671) +2018/09/16 07:35:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:57982) +2018/09/16 07:35:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:35:17 ruptelaNet.go:261: Data received(client: [::1]:57982, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:35:17 ruptelaNet.go:278: Sent ACK (client: [::1]:57982, IMEI: 352094089712860) +2018/09/16 07:35:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:35:20 ruptelaNet.go:261: Data received(client: [::1]:57982, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 07:35:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:35:20 ruptelaNet.go:278: Sent ACK (client: [::1]:57982, IMEI: 352094089712860) +2018/09/16 07:35:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57971, IMEI: 352094087982671) with duration 8.05 s +2018/09/16 07:35:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57982, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 07:35:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58035) +2018/09/16 07:35:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:35:44 ruptelaNet.go:261: Data received(client: [::1]:58035, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 07:35:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58035, IMEI: 352094087982671) +2018/09/16 07:35:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:35:47 ruptelaNet.go:261: Data received(client: [::1]:58035, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 07:35:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:35:47 ruptelaNet.go:278: Sent ACK (client: [::1]:58035, IMEI: 352094087982671) +2018/09/16 07:35:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58035, IMEI: 352094087982671) with duration 6.32 s +2018/09/16 07:36:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:58096) +2018/09/16 07:36:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:36:13 ruptelaNet.go:261: Data received(client: [::1]:58096, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 07:36:13 ruptelaNet.go:278: Sent ACK (client: [::1]:58096, IMEI: 352094087982671) +2018/09/16 07:36:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:36:15 ruptelaNet.go:261: Data received(client: [::1]:58096, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 07:36:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:36:15 ruptelaNet.go:278: Sent ACK (client: [::1]:58096, IMEI: 352094087982671) +2018/09/16 07:36:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58096, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:36:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58108) +2018/09/16 07:36:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:36:18 ruptelaNet.go:261: Data received(client: [::1]:58108, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:36:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58108, IMEI: 352094089712860) +2018/09/16 07:36:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:36:21 ruptelaNet.go:261: Data received(client: [::1]:58108, IMEI: 352094089712860) with duration 2.56 s +2018/09/16 07:36:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:36:21 ruptelaNet.go:278: Sent ACK (client: [::1]:58108, IMEI: 352094089712860) +2018/09/16 07:36:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58108, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 07:36:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:58156) +2018/09/16 07:36:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:36:42 ruptelaNet.go:261: Data received(client: [::1]:58156, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:36:42 ruptelaNet.go:278: Sent ACK (client: [::1]:58156, IMEI: 352094087982671) +2018/09/16 07:36:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:36:44 ruptelaNet.go:261: Data received(client: [::1]:58156, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 07:36:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:36:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58156, IMEI: 352094087982671) +2018/09/16 07:36:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58156, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 07:37:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:58214) +2018/09/16 07:37:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:37:11 ruptelaNet.go:261: Data received(client: [::1]:58214, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:37:11 ruptelaNet.go:278: Sent ACK (client: [::1]:58214, IMEI: 352094087982671) +2018/09/16 07:37:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:37:13 ruptelaNet.go:261: Data received(client: [::1]:58214, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:37:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:37:13 ruptelaNet.go:278: Sent ACK (client: [::1]:58214, IMEI: 352094087982671) +2018/09/16 07:37:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58214, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:37:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:58237) +2018/09/16 07:37:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:37:20 ruptelaNet.go:261: Data received(client: [::1]:58237, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:37:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58237, IMEI: 352094089712860) +2018/09/16 07:37:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:37:22 ruptelaNet.go:261: Data received(client: [::1]:58237, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 07:37:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:37:22 ruptelaNet.go:278: Sent ACK (client: [::1]:58237, IMEI: 352094089712860) +2018/09/16 07:37:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58237, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 07:37:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:58273) +2018/09/16 07:37:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:37:40 ruptelaNet.go:261: Data received(client: [::1]:58273, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:37:40 ruptelaNet.go:278: Sent ACK (client: [::1]:58273, IMEI: 352094087982671) +2018/09/16 07:37:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:37:43 ruptelaNet.go:261: Data received(client: [::1]:58273, IMEI: 352094087982671) with duration 4.6 s +2018/09/16 07:37:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:37:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58273, IMEI: 352094087982671) +2018/09/16 07:37:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58273, IMEI: 352094087982671) with duration 6.75 s +2018/09/16 07:38:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:58336) +2018/09/16 07:38:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:38:09 ruptelaNet.go:261: Data received(client: [::1]:58336, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 07:38:09 ruptelaNet.go:278: Sent ACK (client: [::1]:58336, IMEI: 352094087982671) +2018/09/16 07:38:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:38:11 ruptelaNet.go:261: Data received(client: [::1]:58336, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 07:38:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:38:11 ruptelaNet.go:278: Sent ACK (client: [::1]:58336, IMEI: 352094087982671) +2018/09/16 07:38:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58336, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:38:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58357) +2018/09/16 07:38:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:38:18 ruptelaNet.go:261: Data received(client: [::1]:58357, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:38:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58357, IMEI: 352094089712860) +2018/09/16 07:38:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:38:20 ruptelaNet.go:261: Data received(client: [::1]:58357, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 07:38:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:38:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58357, IMEI: 352094089712860) +2018/09/16 07:38:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58357, IMEI: 352094089712860) with duration 3 s +2018/09/16 07:38:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:58393) +2018/09/16 07:38:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:38:38 ruptelaNet.go:261: Data received(client: [::1]:58393, IMEI: 352094087982671) with duration 0.86 s +2018/09/16 07:38:38 ruptelaNet.go:278: Sent ACK (client: [::1]:58393, IMEI: 352094087982671) +2018/09/16 07:38:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:38:40 ruptelaNet.go:261: Data received(client: [::1]:58393, IMEI: 352094087982671) with duration 3.64 s +2018/09/16 07:38:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:38:40 ruptelaNet.go:278: Sent ACK (client: [::1]:58393, IMEI: 352094087982671) +2018/09/16 07:38:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58393, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 07:39:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:58444) +2018/09/16 07:39:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:39:07 ruptelaNet.go:261: Data received(client: [::1]:58444, IMEI: 352094087982671) with duration 1.22 s +2018/09/16 07:39:07 ruptelaNet.go:278: Sent ACK (client: [::1]:58444, IMEI: 352094087982671) +2018/09/16 07:39:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:39:10 ruptelaNet.go:261: Data received(client: [::1]:58444, IMEI: 352094087982671) with duration 4.19 s +2018/09/16 07:39:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:39:10 ruptelaNet.go:278: Sent ACK (client: [::1]:58444, IMEI: 352094087982671) +2018/09/16 07:39:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58444, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 07:39:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58473) +2018/09/16 07:39:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:39:18 ruptelaNet.go:261: Data received(client: [::1]:58473, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:39:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58473, IMEI: 352094089712860) +2018/09/16 07:39:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:39:20 ruptelaNet.go:261: Data received(client: [::1]:58473, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 07:39:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:39:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58473, IMEI: 352094089712860) +2018/09/16 07:39:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58473, IMEI: 352094089712860) with duration 3.4 s +2018/09/16 07:39:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:58506) +2018/09/16 07:39:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:39:36 ruptelaNet.go:261: Data received(client: [::1]:58506, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 07:39:36 ruptelaNet.go:278: Sent ACK (client: [::1]:58506, IMEI: 352094087982671) +2018/09/16 07:39:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:39:38 ruptelaNet.go:261: Data received(client: [::1]:58506, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 07:39:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:39:38 ruptelaNet.go:278: Sent ACK (client: [::1]:58506, IMEI: 352094087982671) +2018/09/16 07:39:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58506, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 07:40:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:58571) +2018/09/16 07:40:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:40:04 ruptelaNet.go:261: Data received(client: [::1]:58571, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 07:40:04 ruptelaNet.go:278: Sent ACK (client: [::1]:58571, IMEI: 352094087982671) +2018/09/16 07:40:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:40:06 ruptelaNet.go:261: Data received(client: [::1]:58571, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 07:40:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:40:06 ruptelaNet.go:278: Sent ACK (client: [::1]:58571, IMEI: 352094087982671) +2018/09/16 07:40:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58571, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 07:40:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58604) +2018/09/16 07:40:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:40:18 ruptelaNet.go:261: Data received(client: [::1]:58604, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:40:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58604, IMEI: 352094089712860) +2018/09/16 07:40:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:40:20 ruptelaNet.go:261: Data received(client: [::1]:58604, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:40:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:40:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58604, IMEI: 352094089712860) +2018/09/16 07:40:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58604, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 07:40:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:58635) +2018/09/16 07:40:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:40:33 ruptelaNet.go:261: Data received(client: [::1]:58635, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:40:33 ruptelaNet.go:278: Sent ACK (client: [::1]:58635, IMEI: 352094087982671) +2018/09/16 07:40:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:40:36 ruptelaNet.go:261: Data received(client: [::1]:58635, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 07:40:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:40:36 ruptelaNet.go:278: Sent ACK (client: [::1]:58635, IMEI: 352094087982671) +2018/09/16 07:40:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58635, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 07:41:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:58694) +2018/09/16 07:41:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:41:02 ruptelaNet.go:261: Data received(client: [::1]:58694, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:41:02 ruptelaNet.go:278: Sent ACK (client: [::1]:58694, IMEI: 352094087982671) +2018/09/16 07:41:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:41:05 ruptelaNet.go:261: Data received(client: [::1]:58694, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:41:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:41:05 ruptelaNet.go:278: Sent ACK (client: [::1]:58694, IMEI: 352094087982671) +2018/09/16 07:41:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58694, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 07:41:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58725) +2018/09/16 07:41:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:41:18 ruptelaNet.go:261: Data received(client: [::1]:58725, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:41:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58725, IMEI: 352094089712860) +2018/09/16 07:41:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:41:20 ruptelaNet.go:261: Data received(client: [::1]:58725, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:41:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:41:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58725, IMEI: 352094089712860) +2018/09/16 07:41:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58725, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 07:41:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:58748) +2018/09/16 07:41:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:41:31 ruptelaNet.go:261: Data received(client: [::1]:58748, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:41:31 ruptelaNet.go:278: Sent ACK (client: [::1]:58748, IMEI: 352094087982671) +2018/09/16 07:41:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:41:33 ruptelaNet.go:261: Data received(client: [::1]:58748, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:41:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:41:33 ruptelaNet.go:278: Sent ACK (client: [::1]:58748, IMEI: 352094087982671) +2018/09/16 07:41:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58748, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 07:41:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:58813) +2018/09/16 07:42:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:42:00 ruptelaNet.go:261: Data received(client: [::1]:58813, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 07:42:00 ruptelaNet.go:278: Sent ACK (client: [::1]:58813, IMEI: 352094087982671) +2018/09/16 07:42:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:42:03 ruptelaNet.go:261: Data received(client: [::1]:58813, IMEI: 352094087982671) with duration 3.93 s +2018/09/16 07:42:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:42:03 ruptelaNet.go:278: Sent ACK (client: [::1]:58813, IMEI: 352094087982671) +2018/09/16 07:42:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58813, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:42:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58845) +2018/09/16 07:42:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:42:18 ruptelaNet.go:261: Data received(client: [::1]:58845, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:42:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58845, IMEI: 352094089712860) +2018/09/16 07:42:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:42:20 ruptelaNet.go:261: Data received(client: [::1]:58845, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 07:42:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:42:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58845, IMEI: 352094089712860) +2018/09/16 07:42:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58845, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 07:42:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:58867) +2018/09/16 07:42:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:42:29 ruptelaNet.go:261: Data received(client: [::1]:58867, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:42:29 ruptelaNet.go:278: Sent ACK (client: [::1]:58867, IMEI: 352094087982671) +2018/09/16 07:42:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:42:32 ruptelaNet.go:261: Data received(client: [::1]:58867, IMEI: 352094087982671) with duration 4.58 s +2018/09/16 07:42:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:42:32 ruptelaNet.go:278: Sent ACK (client: [::1]:58867, IMEI: 352094087982671) +2018/09/16 07:42:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58867, IMEI: 352094087982671) with duration 6.73 s +2018/09/16 07:42:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:58926) +2018/09/16 07:42:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:42:59 ruptelaNet.go:261: Data received(client: [::1]:58926, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:42:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58926, IMEI: 352094087982671) +2018/09/16 07:43:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:43:02 ruptelaNet.go:261: Data received(client: [::1]:58926, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 07:43:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:43:02 ruptelaNet.go:278: Sent ACK (client: [::1]:58926, IMEI: 352094087982671) +2018/09/16 07:43:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58926, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 07:43:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58967) +2018/09/16 07:43:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:43:18 ruptelaNet.go:261: Data received(client: [::1]:58967, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:43:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58967, IMEI: 352094089712860) +2018/09/16 07:43:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:43:20 ruptelaNet.go:261: Data received(client: [::1]:58967, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 07:43:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:43:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58967, IMEI: 352094089712860) +2018/09/16 07:43:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58967, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 07:43:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:58990) +2018/09/16 07:43:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:43:28 ruptelaNet.go:261: Data received(client: [::1]:58990, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:43:28 ruptelaNet.go:278: Sent ACK (client: [::1]:58990, IMEI: 352094087982671) +2018/09/16 07:43:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:43:32 ruptelaNet.go:261: Data received(client: [::1]:58990, IMEI: 352094087982671) with duration 5.61 s +2018/09/16 07:43:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:43:32 ruptelaNet.go:278: Sent ACK (client: [::1]:58990, IMEI: 352094087982671) +2018/09/16 07:43:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58990, IMEI: 352094087982671) with duration 7.86 s +2018/09/16 07:43:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59052) +2018/09/16 07:43:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:43:59 ruptelaNet.go:261: Data received(client: [::1]:59052, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 07:43:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59052, IMEI: 352094087982671) +2018/09/16 07:44:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:44:01 ruptelaNet.go:261: Data received(client: [::1]:59052, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 07:44:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:44:01 ruptelaNet.go:278: Sent ACK (client: [::1]:59052, IMEI: 352094087982671) +2018/09/16 07:44:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59052, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 07:44:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59092) +2018/09/16 07:44:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:44:18 ruptelaNet.go:261: Data received(client: [::1]:59092, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:44:18 ruptelaNet.go:278: Sent ACK (client: [::1]:59092, IMEI: 352094089712860) +2018/09/16 07:44:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:44:20 ruptelaNet.go:261: Data received(client: [::1]:59092, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:44:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:44:20 ruptelaNet.go:278: Sent ACK (client: [::1]:59092, IMEI: 352094089712860) +2018/09/16 07:44:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59092, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 07:44:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:59104) +2018/09/16 07:44:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:44:29 ruptelaNet.go:261: Data received(client: [::1]:59104, IMEI: 352094087982671) with duration 3.04 s +2018/09/16 07:44:29 ruptelaNet.go:278: Sent ACK (client: [::1]:59104, IMEI: 352094087982671) +2018/09/16 07:44:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:44:32 ruptelaNet.go:261: Data received(client: [::1]:59104, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 07:44:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:44:32 ruptelaNet.go:278: Sent ACK (client: [::1]:59104, IMEI: 352094087982671) +2018/09/16 07:44:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59104, IMEI: 352094087982671) with duration 8.39 s +2018/09/16 07:44:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59173) +2018/09/16 07:44:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:44:58 ruptelaNet.go:261: Data received(client: [::1]:59173, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:44:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59173, IMEI: 352094087982671) +2018/09/16 07:45:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:45:00 ruptelaNet.go:261: Data received(client: [::1]:59173, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 07:45:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:45:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59173, IMEI: 352094087982671) +2018/09/16 07:45:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59173, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:45:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59215) +2018/09/16 07:45:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:45:18 ruptelaNet.go:261: Data received(client: [::1]:59215, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:45:18 ruptelaNet.go:278: Sent ACK (client: [::1]:59215, IMEI: 352094089712860) +2018/09/16 07:45:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:45:20 ruptelaNet.go:261: Data received(client: [::1]:59215, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 07:45:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:45:20 ruptelaNet.go:278: Sent ACK (client: [::1]:59215, IMEI: 352094089712860) +2018/09/16 07:45:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59215, IMEI: 352094089712860) with duration 3.36 s +2018/09/16 07:45:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:59231) +2018/09/16 07:45:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:45:27 ruptelaNet.go:261: Data received(client: [::1]:59231, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 07:45:27 ruptelaNet.go:278: Sent ACK (client: [::1]:59231, IMEI: 352094087982671) +2018/09/16 07:45:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:45:29 ruptelaNet.go:261: Data received(client: [::1]:59231, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:45:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:45:29 ruptelaNet.go:278: Sent ACK (client: [::1]:59231, IMEI: 352094087982671) +2018/09/16 07:45:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59231, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 07:45:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:59284) +2018/09/16 07:45:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:45:56 ruptelaNet.go:261: Data received(client: [::1]:59284, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 07:45:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59284, IMEI: 352094087982671) +2018/09/16 07:45:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:45:58 ruptelaNet.go:261: Data received(client: [::1]:59284, IMEI: 352094087982671) with duration 3.93 s +2018/09/16 07:45:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:45:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59284, IMEI: 352094087982671) +2018/09/16 07:46:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59284, IMEI: 352094087982671) with duration 8.64 s +2018/09/16 07:46:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59332) +2018/09/16 07:46:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:46:18 ruptelaNet.go:261: Data received(client: [::1]:59332, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:46:18 ruptelaNet.go:278: Sent ACK (client: [::1]:59332, IMEI: 352094089712860) +2018/09/16 07:46:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:46:21 ruptelaNet.go:261: Data received(client: [::1]:59332, IMEI: 352094089712860) with duration 2.12 s +2018/09/16 07:46:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:46:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59332, IMEI: 352094089712860) +2018/09/16 07:46:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59332, IMEI: 352094089712860) with duration 3.14 s +2018/09/16 07:46:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:59343) +2018/09/16 07:46:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:46:25 ruptelaNet.go:261: Data received(client: [::1]:59343, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:46:25 ruptelaNet.go:278: Sent ACK (client: [::1]:59343, IMEI: 352094087982671) +2018/09/16 07:46:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:46:27 ruptelaNet.go:261: Data received(client: [::1]:59343, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:46:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:46:27 ruptelaNet.go:278: Sent ACK (client: [::1]:59343, IMEI: 352094087982671) +2018/09/16 07:46:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59343, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:46:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:59399) +2018/09/16 07:46:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:46:53 ruptelaNet.go:261: Data received(client: [::1]:59399, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 07:46:53 ruptelaNet.go:278: Sent ACK (client: [::1]:59399, IMEI: 352094087982671) +2018/09/16 07:46:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:46:56 ruptelaNet.go:261: Data received(client: [::1]:59399, IMEI: 352094087982671) with duration 3.59 s +2018/09/16 07:46:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:46:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59399, IMEI: 352094087982671) +2018/09/16 07:46:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59399, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 07:47:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59447) +2018/09/16 07:47:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:47:19 ruptelaNet.go:261: Data received(client: [::1]:59447, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:47:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59447, IMEI: 352094089712860) +2018/09/16 07:47:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:47:21 ruptelaNet.go:261: Data received(client: [::1]:59447, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 07:47:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:47:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59447, IMEI: 352094089712860) +2018/09/16 07:47:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:59454) +2018/09/16 07:47:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59447, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 07:47:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:47:23 ruptelaNet.go:261: Data received(client: [::1]:59454, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:47:23 ruptelaNet.go:278: Sent ACK (client: [::1]:59454, IMEI: 352094087982671) +2018/09/16 07:47:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:47:25 ruptelaNet.go:261: Data received(client: [::1]:59454, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 07:47:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:47:25 ruptelaNet.go:278: Sent ACK (client: [::1]:59454, IMEI: 352094087982671) +2018/09/16 07:47:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59454, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 07:47:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:59518) +2018/09/16 07:47:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:47:52 ruptelaNet.go:261: Data received(client: [::1]:59518, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:47:52 ruptelaNet.go:278: Sent ACK (client: [::1]:59518, IMEI: 352094087982671) +2018/09/16 07:47:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:47:54 ruptelaNet.go:261: Data received(client: [::1]:59518, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:47:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:47:54 ruptelaNet.go:278: Sent ACK (client: [::1]:59518, IMEI: 352094087982671) +2018/09/16 07:47:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59518, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 07:48:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59577) +2018/09/16 07:48:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:48:19 ruptelaNet.go:261: Data received(client: [::1]:59577, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:48:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59577, IMEI: 352094089712860) +2018/09/16 07:48:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:59578) +2018/09/16 07:48:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:48:21 ruptelaNet.go:261: Data received(client: [::1]:59578, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 07:48:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59578, IMEI: 352094087982671) +2018/09/16 07:48:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:48:21 ruptelaNet.go:261: Data received(client: [::1]:59577, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 07:48:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:48:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59577, IMEI: 352094089712860) +2018/09/16 07:48:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59577, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 07:48:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:48:23 ruptelaNet.go:261: Data received(client: [::1]:59578, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 07:48:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:48:23 ruptelaNet.go:278: Sent ACK (client: [::1]:59578, IMEI: 352094087982671) +2018/09/16 07:48:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59578, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 07:48:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:59641) +2018/09/16 07:48:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:48:50 ruptelaNet.go:261: Data received(client: [::1]:59641, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:48:50 ruptelaNet.go:278: Sent ACK (client: [::1]:59641, IMEI: 352094087982671) +2018/09/16 07:48:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:48:52 ruptelaNet.go:261: Data received(client: [::1]:59641, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:48:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:48:52 ruptelaNet.go:278: Sent ACK (client: [::1]:59641, IMEI: 352094087982671) +2018/09/16 07:48:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59641, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 07:49:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59702) +2018/09/16 07:49:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:49:19 ruptelaNet.go:261: Data received(client: [::1]:59702, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:49:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59702, IMEI: 352094087982671) +2018/09/16 07:49:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59703) +2018/09/16 07:49:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:49:19 ruptelaNet.go:261: Data received(client: [::1]:59703, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:49:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59703, IMEI: 352094089712860) +2018/09/16 07:49:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:49:21 ruptelaNet.go:261: Data received(client: [::1]:59703, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 07:49:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:49:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59703, IMEI: 352094089712860) +2018/09/16 07:49:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:49:21 ruptelaNet.go:261: Data received(client: [::1]:59702, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 07:49:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:49:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59702, IMEI: 352094087982671) +2018/09/16 07:49:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59703, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 07:49:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59702, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 07:49:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:59766) +2018/09/16 07:49:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:49:48 ruptelaNet.go:261: Data received(client: [::1]:59766, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 07:49:48 ruptelaNet.go:278: Sent ACK (client: [::1]:59766, IMEI: 352094087982671) +2018/09/16 07:49:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:49:50 ruptelaNet.go:261: Data received(client: [::1]:59766, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 07:49:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:49:50 ruptelaNet.go:278: Sent ACK (client: [::1]:59766, IMEI: 352094087982671) +2018/09/16 07:49:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59766, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 07:50:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:59823) +2018/09/16 07:50:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:50:17 ruptelaNet.go:261: Data received(client: [::1]:59823, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 07:50:17 ruptelaNet.go:278: Sent ACK (client: [::1]:59823, IMEI: 352094087982671) +2018/09/16 07:50:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59833) +2018/09/16 07:50:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:50:19 ruptelaNet.go:261: Data received(client: [::1]:59833, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:50:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59833, IMEI: 352094089712860) +2018/09/16 07:50:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:50:19 ruptelaNet.go:261: Data received(client: [::1]:59823, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 07:50:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:50:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59823, IMEI: 352094087982671) +2018/09/16 07:50:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:50:21 ruptelaNet.go:261: Data received(client: [::1]:59833, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 07:50:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:50:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59833, IMEI: 352094089712860) +2018/09/16 07:50:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59823, IMEI: 352094087982671) with duration 6.26 s +2018/09/16 07:50:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59833, IMEI: 352094089712860) with duration 3.28 s +2018/09/16 07:50:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:59886) +2018/09/16 07:50:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:50:46 ruptelaNet.go:261: Data received(client: [::1]:59886, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 07:50:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59886, IMEI: 352094087982671) +2018/09/16 07:50:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:50:48 ruptelaNet.go:261: Data received(client: [::1]:59886, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 07:50:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:50:48 ruptelaNet.go:278: Sent ACK (client: [::1]:59886, IMEI: 352094087982671) +2018/09/16 07:50:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59886, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 07:51:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:59949) +2018/09/16 07:51:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:51:15 ruptelaNet.go:261: Data received(client: [::1]:59949, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:51:15 ruptelaNet.go:278: Sent ACK (client: [::1]:59949, IMEI: 352094087982671) +2018/09/16 07:51:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:51:17 ruptelaNet.go:261: Data received(client: [::1]:59949, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:51:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:51:17 ruptelaNet.go:278: Sent ACK (client: [::1]:59949, IMEI: 352094087982671) +2018/09/16 07:51:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59961) +2018/09/16 07:51:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:51:19 ruptelaNet.go:261: Data received(client: [::1]:59961, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:51:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59961, IMEI: 352094089712860) +2018/09/16 07:51:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59949, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:51:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:51:21 ruptelaNet.go:261: Data received(client: [::1]:59961, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 07:51:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:51:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59961, IMEI: 352094089712860) +2018/09/16 07:51:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59961, IMEI: 352094089712860) with duration 2.7 s +2018/09/16 07:51:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:60009) +2018/09/16 07:51:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:51:44 ruptelaNet.go:261: Data received(client: [::1]:60009, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:51:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60009, IMEI: 352094087982671) +2018/09/16 07:51:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:51:46 ruptelaNet.go:261: Data received(client: [::1]:60009, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 07:51:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:51:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60009, IMEI: 352094087982671) +2018/09/16 07:51:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60009, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:52:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:60072) +2018/09/16 07:52:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:52:13 ruptelaNet.go:261: Data received(client: [::1]:60072, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 07:52:13 ruptelaNet.go:278: Sent ACK (client: [::1]:60072, IMEI: 352094087982671) +2018/09/16 07:52:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:52:15 ruptelaNet.go:261: Data received(client: [::1]:60072, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 07:52:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:52:15 ruptelaNet.go:278: Sent ACK (client: [::1]:60072, IMEI: 352094087982671) +2018/09/16 07:52:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60072, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 07:52:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60089) +2018/09/16 07:52:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:52:19 ruptelaNet.go:261: Data received(client: [::1]:60089, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:52:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60089, IMEI: 352094089712860) +2018/09/16 07:52:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:52:21 ruptelaNet.go:261: Data received(client: [::1]:60089, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:52:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:52:21 ruptelaNet.go:278: Sent ACK (client: [::1]:60089, IMEI: 352094089712860) +2018/09/16 07:52:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60089, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 07:52:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:60130) +2018/09/16 07:52:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:52:42 ruptelaNet.go:261: Data received(client: [::1]:60130, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:52:42 ruptelaNet.go:278: Sent ACK (client: [::1]:60130, IMEI: 352094087982671) +2018/09/16 07:52:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:52:44 ruptelaNet.go:261: Data received(client: [::1]:60130, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:52:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:52:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60130, IMEI: 352094087982671) +2018/09/16 07:52:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60130, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 07:53:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:60189) +2018/09/16 07:53:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:53:11 ruptelaNet.go:261: Data received(client: [::1]:60189, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 07:53:11 ruptelaNet.go:278: Sent ACK (client: [::1]:60189, IMEI: 352094087982671) +2018/09/16 07:53:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:53:14 ruptelaNet.go:261: Data received(client: [::1]:60189, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 07:53:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:53:14 ruptelaNet.go:278: Sent ACK (client: [::1]:60189, IMEI: 352094087982671) +2018/09/16 07:53:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60189, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 07:53:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60207) +2018/09/16 07:53:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:53:19 ruptelaNet.go:261: Data received(client: [::1]:60207, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:53:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60207, IMEI: 352094089712860) +2018/09/16 07:53:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:53:22 ruptelaNet.go:261: Data received(client: [::1]:60207, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 07:53:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:53:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60207, IMEI: 352094089712860) +2018/09/16 07:53:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60207, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 07:53:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:60246) +2018/09/16 07:53:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:53:40 ruptelaNet.go:261: Data received(client: [::1]:60246, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:53:40 ruptelaNet.go:278: Sent ACK (client: [::1]:60246, IMEI: 352094087982671) +2018/09/16 07:53:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:53:42 ruptelaNet.go:261: Data received(client: [::1]:60246, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 07:53:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:53:42 ruptelaNet.go:278: Sent ACK (client: [::1]:60246, IMEI: 352094087982671) +2018/09/16 07:53:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60246, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 07:54:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:60309) +2018/09/16 07:54:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:54:08 ruptelaNet.go:261: Data received(client: [::1]:60309, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 07:54:08 ruptelaNet.go:278: Sent ACK (client: [::1]:60309, IMEI: 352094087982671) +2018/09/16 07:54:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:54:10 ruptelaNet.go:261: Data received(client: [::1]:60309, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:54:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:54:10 ruptelaNet.go:278: Sent ACK (client: [::1]:60309, IMEI: 352094087982671) +2018/09/16 07:54:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60309, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 07:54:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60335) +2018/09/16 07:54:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:54:19 ruptelaNet.go:261: Data received(client: [::1]:60335, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:54:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60335, IMEI: 352094089712860) +2018/09/16 07:54:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:54:21 ruptelaNet.go:261: Data received(client: [::1]:60335, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 07:54:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:54:21 ruptelaNet.go:278: Sent ACK (client: [::1]:60335, IMEI: 352094089712860) +2018/09/16 07:54:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60335, IMEI: 352094089712860) with duration 3.15 s +2018/09/16 07:54:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:60368) +2018/09/16 07:54:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:54:37 ruptelaNet.go:261: Data received(client: [::1]:60368, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 07:54:37 ruptelaNet.go:278: Sent ACK (client: [::1]:60368, IMEI: 352094087982671) +2018/09/16 07:54:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:54:39 ruptelaNet.go:261: Data received(client: [::1]:60368, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 07:54:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:54:39 ruptelaNet.go:278: Sent ACK (client: [::1]:60368, IMEI: 352094087982671) +2018/09/16 07:54:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60368, IMEI: 352094087982671) with duration 5.78 s +2018/09/16 07:55:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:60426) +2018/09/16 07:55:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:55:06 ruptelaNet.go:261: Data received(client: [::1]:60426, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:55:06 ruptelaNet.go:278: Sent ACK (client: [::1]:60426, IMEI: 352094087982671) +2018/09/16 07:55:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:55:08 ruptelaNet.go:261: Data received(client: [::1]:60426, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:55:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:55:08 ruptelaNet.go:278: Sent ACK (client: [::1]:60426, IMEI: 352094087982671) +2018/09/16 07:55:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60426, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 07:55:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60458) +2018/09/16 07:55:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:55:19 ruptelaNet.go:261: Data received(client: [::1]:60458, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:55:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60458, IMEI: 352094089712860) +2018/09/16 07:55:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:55:22 ruptelaNet.go:261: Data received(client: [::1]:60458, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 07:55:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:55:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60458, IMEI: 352094089712860) +2018/09/16 07:55:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60458, IMEI: 352094089712860) with duration 2.8 s +2018/09/16 07:55:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:60490) +2018/09/16 07:55:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:55:35 ruptelaNet.go:261: Data received(client: [::1]:60490, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:55:35 ruptelaNet.go:278: Sent ACK (client: [::1]:60490, IMEI: 352094087982671) +2018/09/16 07:55:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:55:37 ruptelaNet.go:261: Data received(client: [::1]:60490, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:55:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:55:37 ruptelaNet.go:278: Sent ACK (client: [::1]:60490, IMEI: 352094087982671) +2018/09/16 07:55:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60490, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:56:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:60547) +2018/09/16 07:56:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:56:04 ruptelaNet.go:261: Data received(client: [::1]:60547, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:56:04 ruptelaNet.go:278: Sent ACK (client: [::1]:60547, IMEI: 352094087982671) +2018/09/16 07:56:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:56:06 ruptelaNet.go:261: Data received(client: [::1]:60547, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 07:56:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:56:06 ruptelaNet.go:278: Sent ACK (client: [::1]:60547, IMEI: 352094087982671) +2018/09/16 07:56:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60547, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 07:56:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60577) +2018/09/16 07:56:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:56:20 ruptelaNet.go:261: Data received(client: [::1]:60577, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:56:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60577, IMEI: 352094089712860) +2018/09/16 07:56:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:56:22 ruptelaNet.go:261: Data received(client: [::1]:60577, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 07:56:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:56:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60577, IMEI: 352094089712860) +2018/09/16 07:56:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60577, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 07:56:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:60605) +2018/09/16 07:56:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:56:33 ruptelaNet.go:261: Data received(client: [::1]:60605, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 07:56:33 ruptelaNet.go:278: Sent ACK (client: [::1]:60605, IMEI: 352094087982671) +2018/09/16 07:56:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:56:35 ruptelaNet.go:261: Data received(client: [::1]:60605, IMEI: 352094087982671) with duration 3.72 s +2018/09/16 07:56:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:56:35 ruptelaNet.go:278: Sent ACK (client: [::1]:60605, IMEI: 352094087982671) +2018/09/16 07:56:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60605, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:57:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:60666) +2018/09/16 07:57:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:57:02 ruptelaNet.go:261: Data received(client: [::1]:60666, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 07:57:02 ruptelaNet.go:278: Sent ACK (client: [::1]:60666, IMEI: 352094087982671) +2018/09/16 07:57:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:57:05 ruptelaNet.go:261: Data received(client: [::1]:60666, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 07:57:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:57:05 ruptelaNet.go:278: Sent ACK (client: [::1]:60666, IMEI: 352094087982671) +2018/09/16 07:57:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60666, IMEI: 352094087982671) with duration 5.72 s +2018/09/16 07:57:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60699) +2018/09/16 07:57:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:57:20 ruptelaNet.go:261: Data received(client: [::1]:60699, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:57:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60699, IMEI: 352094089712860) +2018/09/16 07:57:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:57:22 ruptelaNet.go:261: Data received(client: [::1]:60699, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 07:57:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:57:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60699, IMEI: 352094089712860) +2018/09/16 07:57:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60699, IMEI: 352094089712860) with duration 2.89 s +2018/09/16 07:57:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:60721) +2018/09/16 07:57:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:57:31 ruptelaNet.go:261: Data received(client: [::1]:60721, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:57:31 ruptelaNet.go:278: Sent ACK (client: [::1]:60721, IMEI: 352094087982671) +2018/09/16 07:57:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:57:33 ruptelaNet.go:261: Data received(client: [::1]:60721, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:57:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:57:33 ruptelaNet.go:278: Sent ACK (client: [::1]:60721, IMEI: 352094087982671) +2018/09/16 07:57:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60721, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:57:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60780) +2018/09/16 07:58:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:58:00 ruptelaNet.go:261: Data received(client: [::1]:60780, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:58:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60780, IMEI: 352094087982671) +2018/09/16 07:58:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:58:03 ruptelaNet.go:261: Data received(client: [::1]:60780, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 07:58:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:58:03 ruptelaNet.go:278: Sent ACK (client: [::1]:60780, IMEI: 352094087982671) +2018/09/16 07:58:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60780, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:58:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60826) +2018/09/16 07:58:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:58:20 ruptelaNet.go:261: Data received(client: [::1]:60826, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:58:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60826, IMEI: 352094089712860) +2018/09/16 07:58:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:58:22 ruptelaNet.go:261: Data received(client: [::1]:60826, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:58:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:58:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60826, IMEI: 352094089712860) +2018/09/16 07:58:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60826, IMEI: 352094089712860) with duration 2.88 s +2018/09/16 07:58:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:60844) +2018/09/16 07:58:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:58:29 ruptelaNet.go:261: Data received(client: [::1]:60844, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 07:58:29 ruptelaNet.go:278: Sent ACK (client: [::1]:60844, IMEI: 352094087982671) +2018/09/16 07:58:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:58:31 ruptelaNet.go:261: Data received(client: [::1]:60844, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 07:58:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:58:31 ruptelaNet.go:278: Sent ACK (client: [::1]:60844, IMEI: 352094087982671) +2018/09/16 07:58:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60844, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:58:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:60909) +2018/09/16 07:58:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:58:58 ruptelaNet.go:261: Data received(client: [::1]:60909, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 07:58:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60909, IMEI: 352094087982671) +2018/09/16 07:59:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:59:00 ruptelaNet.go:261: Data received(client: [::1]:60909, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 07:59:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:59:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60909, IMEI: 352094087982671) +2018/09/16 07:59:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60909, IMEI: 352094087982671) with duration 5.8 s +2018/09/16 07:59:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60956) +2018/09/16 07:59:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:59:20 ruptelaNet.go:261: Data received(client: [::1]:60956, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:59:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60956, IMEI: 352094089712860) +2018/09/16 07:59:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:59:22 ruptelaNet.go:261: Data received(client: [::1]:60956, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:59:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:59:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60956, IMEI: 352094089712860) +2018/09/16 07:59:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60956, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 07:59:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:60963) +2018/09/16 07:59:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:59:27 ruptelaNet.go:261: Data received(client: [::1]:60963, IMEI: 352094087982671) with duration 1.16 s +2018/09/16 07:59:27 ruptelaNet.go:278: Sent ACK (client: [::1]:60963, IMEI: 352094087982671) +2018/09/16 07:59:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:59:29 ruptelaNet.go:261: Data received(client: [::1]:60963, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:59:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:59:29 ruptelaNet.go:278: Sent ACK (client: [::1]:60963, IMEI: 352094087982671) +2018/09/16 07:59:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60963, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:59:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:61024) +2018/09/16 07:59:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:59:56 ruptelaNet.go:261: Data received(client: [::1]:61024, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:59:56 ruptelaNet.go:278: Sent ACK (client: [::1]:61024, IMEI: 352094087982671) +2018/09/16 07:59:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:59:58 ruptelaNet.go:261: Data received(client: [::1]:61024, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 07:59:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:59:58 ruptelaNet.go:278: Sent ACK (client: [::1]:61024, IMEI: 352094087982671) +2018/09/16 08:00:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61024, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 08:00:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61077) +2018/09/16 08:00:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:00:20 ruptelaNet.go:261: Data received(client: [::1]:61077, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:00:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61077, IMEI: 352094089712860) +2018/09/16 08:00:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:00:22 ruptelaNet.go:261: Data received(client: [::1]:61077, IMEI: 352094089712860) with duration 2.06 s +2018/09/16 08:00:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:00:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61077, IMEI: 352094089712860) +2018/09/16 08:00:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61077, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 08:00:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:61084) +2018/09/16 08:00:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:00:25 ruptelaNet.go:261: Data received(client: [::1]:61084, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 08:00:25 ruptelaNet.go:278: Sent ACK (client: [::1]:61084, IMEI: 352094087982671) +2018/09/16 08:00:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:00:27 ruptelaNet.go:261: Data received(client: [::1]:61084, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 08:00:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:00:27 ruptelaNet.go:278: Sent ACK (client: [::1]:61084, IMEI: 352094087982671) +2018/09/16 08:00:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61084, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 08:00:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:61140) +2018/09/16 08:00:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:00:54 ruptelaNet.go:261: Data received(client: [::1]:61140, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 08:00:54 ruptelaNet.go:278: Sent ACK (client: [::1]:61140, IMEI: 352094087982671) +2018/09/16 08:00:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:00:56 ruptelaNet.go:261: Data received(client: [::1]:61140, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:00:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:00:56 ruptelaNet.go:278: Sent ACK (client: [::1]:61140, IMEI: 352094087982671) +2018/09/16 08:00:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61140, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:01:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61191) +2018/09/16 08:01:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:01:20 ruptelaNet.go:261: Data received(client: [::1]:61191, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:01:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61191, IMEI: 352094089712860) +2018/09/16 08:01:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:61197) +2018/09/16 08:01:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:01:23 ruptelaNet.go:261: Data received(client: [::1]:61197, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:01:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61197, IMEI: 352094087982671) +2018/09/16 08:01:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:01:23 ruptelaNet.go:261: Data received(client: [::1]:61191, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 08:01:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:01:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61191, IMEI: 352094089712860) +2018/09/16 08:01:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61191, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 08:01:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:01:25 ruptelaNet.go:261: Data received(client: [::1]:61197, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:01:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:01:25 ruptelaNet.go:278: Sent ACK (client: [::1]:61197, IMEI: 352094087982671) +2018/09/16 08:01:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61197, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 08:01:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:61256) +2018/09/16 08:01:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:01:52 ruptelaNet.go:261: Data received(client: [::1]:61256, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:01:52 ruptelaNet.go:278: Sent ACK (client: [::1]:61256, IMEI: 352094087982671) +2018/09/16 08:01:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:01:55 ruptelaNet.go:261: Data received(client: [::1]:61256, IMEI: 352094087982671) with duration 4 s +2018/09/16 08:01:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:01:55 ruptelaNet.go:278: Sent ACK (client: [::1]:61256, IMEI: 352094087982671) +2018/09/16 08:01:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61256, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 08:02:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61311) +2018/09/16 08:02:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61317) +2018/09/16 08:02:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:02:20 ruptelaNet.go:261: Data received(client: [::1]:61317, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:02:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61317, IMEI: 352094089712860) +2018/09/16 08:02:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:02:21 ruptelaNet.go:261: Data received(client: [::1]:61311, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 08:02:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61311, IMEI: 352094087982671) +2018/09/16 08:02:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:02:22 ruptelaNet.go:261: Data received(client: [::1]:61317, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:02:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:02:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61317, IMEI: 352094089712860) +2018/09/16 08:02:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61317, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 08:02:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:02:23 ruptelaNet.go:261: Data received(client: [::1]:61311, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:02:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:02:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61311, IMEI: 352094087982671) +2018/09/16 08:02:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61311, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 08:02:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:61372) +2018/09/16 08:02:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:02:50 ruptelaNet.go:261: Data received(client: [::1]:61372, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:02:50 ruptelaNet.go:278: Sent ACK (client: [::1]:61372, IMEI: 352094087982671) +2018/09/16 08:02:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:02:52 ruptelaNet.go:261: Data received(client: [::1]:61372, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:02:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:02:52 ruptelaNet.go:278: Sent ACK (client: [::1]:61372, IMEI: 352094087982671) +2018/09/16 08:02:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61372, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 08:03:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:61426) +2018/09/16 08:03:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:03:19 ruptelaNet.go:261: Data received(client: [::1]:61426, IMEI: 352094087982671) with duration 0.81 s +2018/09/16 08:03:19 ruptelaNet.go:278: Sent ACK (client: [::1]:61426, IMEI: 352094087982671) +2018/09/16 08:03:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61432) +2018/09/16 08:03:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:03:20 ruptelaNet.go:261: Data received(client: [::1]:61432, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:03:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61432, IMEI: 352094089712860) +2018/09/16 08:03:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:03:21 ruptelaNet.go:261: Data received(client: [::1]:61426, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 08:03:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:03:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61426, IMEI: 352094087982671) +2018/09/16 08:03:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:03:22 ruptelaNet.go:261: Data received(client: [::1]:61432, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:03:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:03:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61432, IMEI: 352094089712860) +2018/09/16 08:03:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61432, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 08:03:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61426, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 08:03:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:61490) +2018/09/16 08:03:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:03:48 ruptelaNet.go:261: Data received(client: [::1]:61490, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 08:03:48 ruptelaNet.go:278: Sent ACK (client: [::1]:61490, IMEI: 352094087982671) +2018/09/16 08:03:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:03:50 ruptelaNet.go:261: Data received(client: [::1]:61490, IMEI: 352094087982671) with duration 3.45 s +2018/09/16 08:03:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:03:50 ruptelaNet.go:278: Sent ACK (client: [::1]:61490, IMEI: 352094087982671) +2018/09/16 08:03:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61490, IMEI: 352094087982671) with duration 5.58 s +2018/09/16 08:04:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:61549) +2018/09/16 08:04:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:04:16 ruptelaNet.go:261: Data received(client: [::1]:61549, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:04:16 ruptelaNet.go:278: Sent ACK (client: [::1]:61549, IMEI: 352094087982671) +2018/09/16 08:04:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:04:18 ruptelaNet.go:261: Data received(client: [::1]:61549, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:04:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:04:18 ruptelaNet.go:278: Sent ACK (client: [::1]:61549, IMEI: 352094087982671) +2018/09/16 08:04:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61560) +2018/09/16 08:04:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:04:20 ruptelaNet.go:261: Data received(client: [::1]:61560, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:04:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61560, IMEI: 352094089712860) +2018/09/16 08:04:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61549, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:04:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:04:22 ruptelaNet.go:261: Data received(client: [::1]:61560, IMEI: 352094089712860) with duration 2.19 s +2018/09/16 08:04:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:04:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61560, IMEI: 352094089712860) +2018/09/16 08:04:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61560, IMEI: 352094089712860) with duration 3.01 s +2018/09/16 08:04:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:61612) +2018/09/16 08:04:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:04:45 ruptelaNet.go:261: Data received(client: [::1]:61612, IMEI: 352094087982671) with duration 0.78 s +2018/09/16 08:04:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61612, IMEI: 352094087982671) +2018/09/16 08:04:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:04:47 ruptelaNet.go:261: Data received(client: [::1]:61612, IMEI: 352094087982671) with duration 3.5 s +2018/09/16 08:04:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:04:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61612, IMEI: 352094087982671) +2018/09/16 08:04:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61612, IMEI: 352094087982671) with duration 5.62 s +2018/09/16 08:05:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:61671) +2018/09/16 08:05:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:05:14 ruptelaNet.go:261: Data received(client: [::1]:61671, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:05:14 ruptelaNet.go:278: Sent ACK (client: [::1]:61671, IMEI: 352094087982671) +2018/09/16 08:05:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:05:17 ruptelaNet.go:261: Data received(client: [::1]:61671, IMEI: 352094087982671) with duration 4.13 s +2018/09/16 08:05:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:05:17 ruptelaNet.go:278: Sent ACK (client: [::1]:61671, IMEI: 352094087982671) +2018/09/16 08:05:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61671, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 08:05:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:61688) +2018/09/16 08:05:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:05:21 ruptelaNet.go:261: Data received(client: [::1]:61688, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:05:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61688, IMEI: 352094089712860) +2018/09/16 08:05:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:05:23 ruptelaNet.go:261: Data received(client: [::1]:61688, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:05:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:05:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61688, IMEI: 352094089712860) +2018/09/16 08:05:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61688, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:05:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:61735) +2018/09/16 08:05:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:05:43 ruptelaNet.go:261: Data received(client: [::1]:61735, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 08:05:43 ruptelaNet.go:278: Sent ACK (client: [::1]:61735, IMEI: 352094087982671) +2018/09/16 08:05:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:05:45 ruptelaNet.go:261: Data received(client: [::1]:61735, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 08:05:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:05:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61735, IMEI: 352094087982671) +2018/09/16 08:05:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61735, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:06:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:61793) +2018/09/16 08:06:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:06:12 ruptelaNet.go:261: Data received(client: [::1]:61793, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:06:12 ruptelaNet.go:278: Sent ACK (client: [::1]:61793, IMEI: 352094087982671) +2018/09/16 08:06:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:06:15 ruptelaNet.go:261: Data received(client: [::1]:61793, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:06:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:06:15 ruptelaNet.go:278: Sent ACK (client: [::1]:61793, IMEI: 352094087982671) +2018/09/16 08:06:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61793, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 08:06:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:61810) +2018/09/16 08:06:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:06:21 ruptelaNet.go:261: Data received(client: [::1]:61810, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:06:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61810, IMEI: 352094089712860) +2018/09/16 08:06:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:06:23 ruptelaNet.go:261: Data received(client: [::1]:61810, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:06:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:06:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61810, IMEI: 352094089712860) +2018/09/16 08:06:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61810, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 08:06:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:61848) +2018/09/16 08:06:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:06:41 ruptelaNet.go:261: Data received(client: [::1]:61848, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:06:41 ruptelaNet.go:278: Sent ACK (client: [::1]:61848, IMEI: 352094087982671) +2018/09/16 08:06:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:06:43 ruptelaNet.go:261: Data received(client: [::1]:61848, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:06:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:06:43 ruptelaNet.go:278: Sent ACK (client: [::1]:61848, IMEI: 352094087982671) +2018/09/16 08:06:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61848, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:07:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:61912) +2018/09/16 08:07:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:07:10 ruptelaNet.go:261: Data received(client: [::1]:61912, IMEI: 352094087982671) with duration 0.31 s +2018/09/16 08:07:10 ruptelaNet.go:278: Sent ACK (client: [::1]:61912, IMEI: 352094087982671) +2018/09/16 08:07:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:07:13 ruptelaNet.go:261: Data received(client: [::1]:61912, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 08:07:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:07:13 ruptelaNet.go:278: Sent ACK (client: [::1]:61912, IMEI: 352094087982671) +2018/09/16 08:07:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61912, IMEI: 352094087982671) with duration 5.44 s +2018/09/16 08:07:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:61934) +2018/09/16 08:07:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:07:21 ruptelaNet.go:261: Data received(client: [::1]:61934, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 08:07:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61934, IMEI: 352094089712860) +2018/09/16 08:07:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:07:23 ruptelaNet.go:261: Data received(client: [::1]:61934, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 08:07:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:07:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61934, IMEI: 352094089712860) +2018/09/16 08:07:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61934, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 08:07:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:61971) +2018/09/16 08:07:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:07:39 ruptelaNet.go:261: Data received(client: [::1]:61971, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:07:39 ruptelaNet.go:278: Sent ACK (client: [::1]:61971, IMEI: 352094087982671) +2018/09/16 08:07:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:07:41 ruptelaNet.go:261: Data received(client: [::1]:61971, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 08:07:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:07:41 ruptelaNet.go:278: Sent ACK (client: [::1]:61971, IMEI: 352094087982671) +2018/09/16 08:07:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61971, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 08:08:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:62026) +2018/09/16 08:08:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:08:07 ruptelaNet.go:261: Data received(client: [::1]:62026, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 08:08:07 ruptelaNet.go:278: Sent ACK (client: [::1]:62026, IMEI: 352094087982671) +2018/09/16 08:08:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:08:10 ruptelaNet.go:261: Data received(client: [::1]:62026, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 08:08:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:08:10 ruptelaNet.go:278: Sent ACK (client: [::1]:62026, IMEI: 352094087982671) +2018/09/16 08:08:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62026, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 08:08:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62062) +2018/09/16 08:08:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:08:22 ruptelaNet.go:261: Data received(client: [::1]:62062, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:08:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62062, IMEI: 352094089712860) +2018/09/16 08:08:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:08:24 ruptelaNet.go:261: Data received(client: [::1]:62062, IMEI: 352094089712860) with duration 2.1 s +2018/09/16 08:08:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:08:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62062, IMEI: 352094089712860) +2018/09/16 08:08:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62062, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 08:08:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:62085) +2018/09/16 08:08:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:08:36 ruptelaNet.go:261: Data received(client: [::1]:62085, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:08:36 ruptelaNet.go:278: Sent ACK (client: [::1]:62085, IMEI: 352094087982671) +2018/09/16 08:08:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:08:38 ruptelaNet.go:261: Data received(client: [::1]:62085, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 08:08:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:08:38 ruptelaNet.go:278: Sent ACK (client: [::1]:62085, IMEI: 352094087982671) +2018/09/16 08:08:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62085, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 08:09:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:62151) +2018/09/16 08:09:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:09:05 ruptelaNet.go:261: Data received(client: [::1]:62151, IMEI: 352094087982671) with duration 0.88 s +2018/09/16 08:09:05 ruptelaNet.go:278: Sent ACK (client: [::1]:62151, IMEI: 352094087982671) +2018/09/16 08:09:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:09:07 ruptelaNet.go:261: Data received(client: [::1]:62151, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 08:09:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:09:07 ruptelaNet.go:278: Sent ACK (client: [::1]:62151, IMEI: 352094087982671) +2018/09/16 08:09:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62151, IMEI: 352094087982671) with duration 5.75 s +2018/09/16 08:09:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62187) +2018/09/16 08:09:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:09:22 ruptelaNet.go:261: Data received(client: [::1]:62187, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:09:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62187, IMEI: 352094089712860) +2018/09/16 08:09:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:09:24 ruptelaNet.go:261: Data received(client: [::1]:62187, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:09:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:09:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62187, IMEI: 352094089712860) +2018/09/16 08:09:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62187, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:09:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:62209) +2018/09/16 08:09:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:09:34 ruptelaNet.go:261: Data received(client: [::1]:62209, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:09:34 ruptelaNet.go:278: Sent ACK (client: [::1]:62209, IMEI: 352094087982671) +2018/09/16 08:09:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:09:36 ruptelaNet.go:261: Data received(client: [::1]:62209, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:09:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:09:36 ruptelaNet.go:278: Sent ACK (client: [::1]:62209, IMEI: 352094087982671) +2018/09/16 08:09:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62209, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:10:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:62277) +2018/09/16 08:10:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:10:03 ruptelaNet.go:261: Data received(client: [::1]:62277, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:10:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62277, IMEI: 352094087982671) +2018/09/16 08:10:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:10:06 ruptelaNet.go:261: Data received(client: [::1]:62277, IMEI: 352094087982671) with duration 4.19 s +2018/09/16 08:10:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:10:06 ruptelaNet.go:278: Sent ACK (client: [::1]:62277, IMEI: 352094087982671) +2018/09/16 08:10:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62277, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 08:10:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62315) +2018/09/16 08:10:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:10:21 ruptelaNet.go:261: Data received(client: [::1]:62315, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:10:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62315, IMEI: 352094089712860) +2018/09/16 08:10:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:10:23 ruptelaNet.go:261: Data received(client: [::1]:62315, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 08:10:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:10:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62315, IMEI: 352094089712860) +2018/09/16 08:10:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62315, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 08:10:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:62333) +2018/09/16 08:10:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:10:32 ruptelaNet.go:261: Data received(client: [::1]:62333, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:10:32 ruptelaNet.go:278: Sent ACK (client: [::1]:62333, IMEI: 352094087982671) +2018/09/16 08:10:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:10:35 ruptelaNet.go:261: Data received(client: [::1]:62333, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 08:10:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:10:35 ruptelaNet.go:278: Sent ACK (client: [::1]:62333, IMEI: 352094087982671) +2018/09/16 08:10:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62333, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 08:11:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62396) +2018/09/16 08:11:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:11:01 ruptelaNet.go:261: Data received(client: [::1]:62396, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:11:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62396, IMEI: 352094087982671) +2018/09/16 08:11:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:11:03 ruptelaNet.go:261: Data received(client: [::1]:62396, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:11:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:11:04 ruptelaNet.go:278: Sent ACK (client: [::1]:62396, IMEI: 352094087982671) +2018/09/16 08:11:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62396, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 08:11:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62441) +2018/09/16 08:11:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:11:21 ruptelaNet.go:261: Data received(client: [::1]:62441, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:11:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62441, IMEI: 352094089712860) +2018/09/16 08:11:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:11:23 ruptelaNet.go:261: Data received(client: [::1]:62441, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 08:11:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:11:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62441, IMEI: 352094089712860) +2018/09/16 08:11:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62441, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 08:11:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:62453) +2018/09/16 08:11:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:11:30 ruptelaNet.go:261: Data received(client: [::1]:62453, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:11:30 ruptelaNet.go:278: Sent ACK (client: [::1]:62453, IMEI: 352094087982671) +2018/09/16 08:11:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:11:32 ruptelaNet.go:261: Data received(client: [::1]:62453, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:11:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:11:32 ruptelaNet.go:278: Sent ACK (client: [::1]:62453, IMEI: 352094087982671) +2018/09/16 08:11:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62453, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 08:11:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:62515) +2018/09/16 08:11:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:11:59 ruptelaNet.go:261: Data received(client: [::1]:62515, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:11:59 ruptelaNet.go:278: Sent ACK (client: [::1]:62515, IMEI: 352094087982671) +2018/09/16 08:12:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:12:02 ruptelaNet.go:261: Data received(client: [::1]:62515, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:12:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:12:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62515, IMEI: 352094087982671) +2018/09/16 08:12:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62515, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:12:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62561) +2018/09/16 08:12:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:12:22 ruptelaNet.go:261: Data received(client: [::1]:62561, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:12:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62561, IMEI: 352094089712860) +2018/09/16 08:12:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:12:24 ruptelaNet.go:261: Data received(client: [::1]:62561, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:12:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:12:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62561, IMEI: 352094089712860) +2018/09/16 08:12:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62561, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:12:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:62569) +2018/09/16 08:12:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:12:28 ruptelaNet.go:261: Data received(client: [::1]:62569, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 08:12:28 ruptelaNet.go:278: Sent ACK (client: [::1]:62569, IMEI: 352094087982671) +2018/09/16 08:12:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:12:31 ruptelaNet.go:261: Data received(client: [::1]:62569, IMEI: 352094087982671) with duration 4.03 s +2018/09/16 08:12:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:12:31 ruptelaNet.go:278: Sent ACK (client: [::1]:62569, IMEI: 352094087982671) +2018/09/16 08:12:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62569, IMEI: 352094087982671) with duration 6.18 s +2018/09/16 08:12:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:62632) +2018/09/16 08:12:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:12:58 ruptelaNet.go:261: Data received(client: [::1]:62632, IMEI: 352094087982671) with duration 2.43 s +2018/09/16 08:12:58 ruptelaNet.go:278: Sent ACK (client: [::1]:62632, IMEI: 352094087982671) +2018/09/16 08:13:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:13:01 ruptelaNet.go:261: Data received(client: [::1]:62632, IMEI: 352094087982671) with duration 5.51 s +2018/09/16 08:13:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:13:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62632, IMEI: 352094087982671) +2018/09/16 08:13:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62632, IMEI: 352094087982671) with duration 7.66 s +2018/09/16 08:13:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62684) +2018/09/16 08:13:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:13:21 ruptelaNet.go:261: Data received(client: [::1]:62684, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:13:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62684, IMEI: 352094089712860) +2018/09/16 08:13:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:13:23 ruptelaNet.go:261: Data received(client: [::1]:62684, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 08:13:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:13:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62684, IMEI: 352094089712860) +2018/09/16 08:13:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62684, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 08:13:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:62691) +2018/09/16 08:13:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:13:27 ruptelaNet.go:261: Data received(client: [::1]:62691, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 08:13:27 ruptelaNet.go:278: Sent ACK (client: [::1]:62691, IMEI: 352094087982671) +2018/09/16 08:13:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:13:30 ruptelaNet.go:261: Data received(client: [::1]:62691, IMEI: 352094087982671) with duration 3.73 s +2018/09/16 08:13:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:13:30 ruptelaNet.go:278: Sent ACK (client: [::1]:62691, IMEI: 352094087982671) +2018/09/16 08:13:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62691, IMEI: 352094087982671) with duration 5.88 s +2018/09/16 08:13:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:62750) +2018/09/16 08:13:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:13:56 ruptelaNet.go:261: Data received(client: [::1]:62750, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:13:56 ruptelaNet.go:278: Sent ACK (client: [::1]:62750, IMEI: 352094087982671) +2018/09/16 08:13:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:13:59 ruptelaNet.go:261: Data received(client: [::1]:62750, IMEI: 352094087982671) with duration 4.61 s +2018/09/16 08:13:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:13:59 ruptelaNet.go:278: Sent ACK (client: [::1]:62750, IMEI: 352094087982671) +2018/09/16 08:14:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62750, IMEI: 352094087982671) with duration 6.67 s +2018/09/16 08:14:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62806) +2018/09/16 08:14:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:14:21 ruptelaNet.go:261: Data received(client: [::1]:62806, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:14:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62806, IMEI: 352094089712860) +2018/09/16 08:14:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:14:23 ruptelaNet.go:261: Data received(client: [::1]:62806, IMEI: 352094089712860) with duration 2.16 s +2018/09/16 08:14:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:14:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62806, IMEI: 352094089712860) +2018/09/16 08:14:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:62808) +2018/09/16 08:14:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62806, IMEI: 352094089712860) with duration 2.89 s +2018/09/16 08:14:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:14:25 ruptelaNet.go:261: Data received(client: [::1]:62808, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:14:25 ruptelaNet.go:278: Sent ACK (client: [::1]:62808, IMEI: 352094087982671) +2018/09/16 08:14:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:14:27 ruptelaNet.go:261: Data received(client: [::1]:62808, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 08:14:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:14:27 ruptelaNet.go:278: Sent ACK (client: [::1]:62808, IMEI: 352094087982671) +2018/09/16 08:14:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62808, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 08:14:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:62872) +2018/09/16 08:14:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:14:54 ruptelaNet.go:261: Data received(client: [::1]:62872, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 08:14:54 ruptelaNet.go:278: Sent ACK (client: [::1]:62872, IMEI: 352094087982671) +2018/09/16 08:14:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:14:56 ruptelaNet.go:261: Data received(client: [::1]:62872, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:14:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:14:56 ruptelaNet.go:278: Sent ACK (client: [::1]:62872, IMEI: 352094087982671) +2018/09/16 08:14:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62872, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 08:15:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62936) +2018/09/16 08:15:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:15:22 ruptelaNet.go:261: Data received(client: [::1]:62936, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:15:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62936, IMEI: 352094089712860) +2018/09/16 08:15:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62937) +2018/09/16 08:15:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:15:23 ruptelaNet.go:261: Data received(client: [::1]:62937, IMEI: 352094087982671) with duration 0.72 s +2018/09/16 08:15:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62937, IMEI: 352094087982671) +2018/09/16 08:15:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:15:24 ruptelaNet.go:261: Data received(client: [::1]:62936, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 08:15:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:15:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62936, IMEI: 352094089712860) +2018/09/16 08:15:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62936, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 08:15:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:15:26 ruptelaNet.go:261: Data received(client: [::1]:62937, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 08:15:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:15:26 ruptelaNet.go:278: Sent ACK (client: [::1]:62937, IMEI: 352094087982671) +2018/09/16 08:15:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62937, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 08:15:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:62994) +2018/09/16 08:15:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:15:52 ruptelaNet.go:261: Data received(client: [::1]:62994, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:15:52 ruptelaNet.go:278: Sent ACK (client: [::1]:62994, IMEI: 352094087982671) +2018/09/16 08:15:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:15:54 ruptelaNet.go:261: Data received(client: [::1]:62994, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 08:15:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:15:54 ruptelaNet.go:278: Sent ACK (client: [::1]:62994, IMEI: 352094087982671) +2018/09/16 08:15:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62994, IMEI: 352094087982671) with duration 5.55 s +2018/09/16 08:16:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:63047) +2018/09/16 08:16:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:16:20 ruptelaNet.go:261: Data received(client: [::1]:63047, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:16:20 ruptelaNet.go:278: Sent ACK (client: [::1]:63047, IMEI: 352094087982671) +2018/09/16 08:16:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63057) +2018/09/16 08:16:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:16:22 ruptelaNet.go:261: Data received(client: [::1]:63057, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:16:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63057, IMEI: 352094089712860) +2018/09/16 08:16:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:16:22 ruptelaNet.go:261: Data received(client: [::1]:63047, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:16:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:16:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63047, IMEI: 352094087982671) +2018/09/16 08:16:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:16:24 ruptelaNet.go:261: Data received(client: [::1]:63057, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:16:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:16:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63057, IMEI: 352094089712860) +2018/09/16 08:16:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63047, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 08:16:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63057, IMEI: 352094089712860) with duration 3.09 s +2018/09/16 08:16:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:63112) +2018/09/16 08:16:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:16:49 ruptelaNet.go:261: Data received(client: [::1]:63112, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63112, IMEI: 352094087982671) +2018/09/16 08:16:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:16:51 ruptelaNet.go:261: Data received(client: [::1]:63112, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 08:16:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:16:51 ruptelaNet.go:278: Sent ACK (client: [::1]:63112, IMEI: 352094087982671) +2018/09/16 08:16:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63112, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:17:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:63178) +2018/09/16 08:17:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:17:18 ruptelaNet.go:261: Data received(client: [::1]:63178, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:17:18 ruptelaNet.go:278: Sent ACK (client: [::1]:63178, IMEI: 352094087982671) +2018/09/16 08:17:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:17:20 ruptelaNet.go:261: Data received(client: [::1]:63178, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 08:17:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:17:20 ruptelaNet.go:278: Sent ACK (client: [::1]:63178, IMEI: 352094087982671) +2018/09/16 08:17:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63190) +2018/09/16 08:17:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:17:22 ruptelaNet.go:261: Data received(client: [::1]:63190, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 08:17:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63190, IMEI: 352094089712860) +2018/09/16 08:17:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63178, IMEI: 352094087982671) with duration 5.88 s +2018/09/16 08:17:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:17:24 ruptelaNet.go:261: Data received(client: [::1]:63190, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 08:17:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:17:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63190, IMEI: 352094089712860) +2018/09/16 08:17:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63190, IMEI: 352094089712860) with duration 3.58 s +2018/09/16 08:17:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:63234) +2018/09/16 08:17:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:17:46 ruptelaNet.go:261: Data received(client: [::1]:63234, IMEI: 352094087982671) with duration 0.86 s +2018/09/16 08:17:46 ruptelaNet.go:278: Sent ACK (client: [::1]:63234, IMEI: 352094087982671) +2018/09/16 08:17:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:17:49 ruptelaNet.go:261: Data received(client: [::1]:63234, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:17:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:17:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63234, IMEI: 352094087982671) +2018/09/16 08:17:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63234, IMEI: 352094087982671) with duration 6.28 s +2018/09/16 08:18:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:63291) +2018/09/16 08:18:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:18:16 ruptelaNet.go:261: Data received(client: [::1]:63291, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 08:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:63291, IMEI: 352094087982671) +2018/09/16 08:18:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:18:18 ruptelaNet.go:261: Data received(client: [::1]:63291, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:18:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:18:18 ruptelaNet.go:278: Sent ACK (client: [::1]:63291, IMEI: 352094087982671) +2018/09/16 08:18:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63291, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:18:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63307) +2018/09/16 08:18:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:18:22 ruptelaNet.go:261: Data received(client: [::1]:63307, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:18:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63307, IMEI: 352094089712860) +2018/09/16 08:18:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:18:24 ruptelaNet.go:261: Data received(client: [::1]:63307, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:18:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:18:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63307, IMEI: 352094089712860) +2018/09/16 08:18:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63307, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 08:18:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:63354) +2018/09/16 08:18:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:18:45 ruptelaNet.go:261: Data received(client: [::1]:63354, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:18:45 ruptelaNet.go:278: Sent ACK (client: [::1]:63354, IMEI: 352094087982671) +2018/09/16 08:18:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:18:47 ruptelaNet.go:261: Data received(client: [::1]:63354, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:18:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:18:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63354, IMEI: 352094087982671) +2018/09/16 08:18:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63354, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:19:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:63413) +2018/09/16 08:19:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:19:14 ruptelaNet.go:261: Data received(client: [::1]:63413, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:19:14 ruptelaNet.go:278: Sent ACK (client: [::1]:63413, IMEI: 352094087982671) +2018/09/16 08:19:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:19:16 ruptelaNet.go:261: Data received(client: [::1]:63413, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 08:19:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:19:16 ruptelaNet.go:278: Sent ACK (client: [::1]:63413, IMEI: 352094087982671) +2018/09/16 08:19:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63413, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 08:19:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63435) +2018/09/16 08:19:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:19:22 ruptelaNet.go:261: Data received(client: [::1]:63435, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:19:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63435, IMEI: 352094089712860) +2018/09/16 08:19:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:19:24 ruptelaNet.go:261: Data received(client: [::1]:63435, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:19:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:19:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63435, IMEI: 352094089712860) +2018/09/16 08:19:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63435, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 08:19:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:63473) +2018/09/16 08:19:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:19:43 ruptelaNet.go:261: Data received(client: [::1]:63473, IMEI: 352094087982671) with duration 0.83 s +2018/09/16 08:19:43 ruptelaNet.go:278: Sent ACK (client: [::1]:63473, IMEI: 352094087982671) +2018/09/16 08:19:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:19:45 ruptelaNet.go:261: Data received(client: [::1]:63473, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 08:19:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:19:45 ruptelaNet.go:278: Sent ACK (client: [::1]:63473, IMEI: 352094087982671) +2018/09/16 08:19:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63473, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 08:20:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:63540) +2018/09/16 08:20:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:20:12 ruptelaNet.go:261: Data received(client: [::1]:63540, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:20:12 ruptelaNet.go:278: Sent ACK (client: [::1]:63540, IMEI: 352094087982671) +2018/09/16 08:20:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:20:15 ruptelaNet.go:261: Data received(client: [::1]:63540, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:20:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:20:15 ruptelaNet.go:278: Sent ACK (client: [::1]:63540, IMEI: 352094087982671) +2018/09/16 08:20:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63540, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 08:20:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63562) +2018/09/16 08:20:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:20:22 ruptelaNet.go:261: Data received(client: [::1]:63562, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:20:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63562, IMEI: 352094089712860) +2018/09/16 08:20:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:20:24 ruptelaNet.go:261: Data received(client: [::1]:63562, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 08:20:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:20:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63562, IMEI: 352094089712860) +2018/09/16 08:20:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63562, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 08:20:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:63599) +2018/09/16 08:20:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:20:41 ruptelaNet.go:261: Data received(client: [::1]:63599, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 08:20:41 ruptelaNet.go:278: Sent ACK (client: [::1]:63599, IMEI: 352094087982671) +2018/09/16 08:20:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:20:43 ruptelaNet.go:261: Data received(client: [::1]:63599, IMEI: 352094087982671) with duration 3.96 s +2018/09/16 08:20:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:20:43 ruptelaNet.go:278: Sent ACK (client: [::1]:63599, IMEI: 352094087982671) +2018/09/16 08:20:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63599, IMEI: 352094087982671) with duration 6.72 s +2018/09/16 08:21:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:63662) +2018/09/16 08:21:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:21:10 ruptelaNet.go:261: Data received(client: [::1]:63662, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:21:10 ruptelaNet.go:278: Sent ACK (client: [::1]:63662, IMEI: 352094087982671) +2018/09/16 08:21:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:21:12 ruptelaNet.go:261: Data received(client: [::1]:63662, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:21:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:21:12 ruptelaNet.go:278: Sent ACK (client: [::1]:63662, IMEI: 352094087982671) +2018/09/16 08:21:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63662, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:21:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63683) +2018/09/16 08:21:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:21:22 ruptelaNet.go:261: Data received(client: [::1]:63683, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:21:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63683, IMEI: 352094089712860) +2018/09/16 08:21:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:21:24 ruptelaNet.go:261: Data received(client: [::1]:63683, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 08:21:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:21:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63683, IMEI: 352094089712860) +2018/09/16 08:21:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63683, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:21:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:63716) +2018/09/16 08:21:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:21:39 ruptelaNet.go:261: Data received(client: [::1]:63716, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:21:39 ruptelaNet.go:278: Sent ACK (client: [::1]:63716, IMEI: 352094087982671) +2018/09/16 08:21:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:21:41 ruptelaNet.go:261: Data received(client: [::1]:63716, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:21:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:21:41 ruptelaNet.go:278: Sent ACK (client: [::1]:63716, IMEI: 352094087982671) +2018/09/16 08:21:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63716, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:22:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:63778) +2018/09/16 08:22:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:22:08 ruptelaNet.go:261: Data received(client: [::1]:63778, IMEI: 352094087982671) with duration 0.64 s +2018/09/16 08:22:08 ruptelaNet.go:278: Sent ACK (client: [::1]:63778, IMEI: 352094087982671) +2018/09/16 08:22:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:22:10 ruptelaNet.go:261: Data received(client: [::1]:63778, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 08:22:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:22:10 ruptelaNet.go:278: Sent ACK (client: [::1]:63778, IMEI: 352094087982671) +2018/09/16 08:22:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63778, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 08:22:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63812) +2018/09/16 08:22:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:22:22 ruptelaNet.go:261: Data received(client: [::1]:63812, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:22:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63812, IMEI: 352094089712860) +2018/09/16 08:22:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:22:24 ruptelaNet.go:261: Data received(client: [::1]:63812, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:22:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:22:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63812, IMEI: 352094089712860) +2018/09/16 08:22:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63812, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:22:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:63840) +2018/09/16 08:22:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:22:37 ruptelaNet.go:261: Data received(client: [::1]:63840, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 08:22:37 ruptelaNet.go:278: Sent ACK (client: [::1]:63840, IMEI: 352094087982671) +2018/09/16 08:22:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:22:40 ruptelaNet.go:261: Data received(client: [::1]:63840, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:22:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:22:40 ruptelaNet.go:278: Sent ACK (client: [::1]:63840, IMEI: 352094087982671) +2018/09/16 08:22:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63840, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:23:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:63899) +2018/09/16 08:23:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:23:06 ruptelaNet.go:261: Data received(client: [::1]:63899, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:23:06 ruptelaNet.go:278: Sent ACK (client: [::1]:63899, IMEI: 352094087982671) +2018/09/16 08:23:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:23:08 ruptelaNet.go:261: Data received(client: [::1]:63899, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 08:23:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:23:08 ruptelaNet.go:278: Sent ACK (client: [::1]:63899, IMEI: 352094087982671) +2018/09/16 08:23:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63899, IMEI: 352094087982671) with duration 6.84 s +2018/09/16 08:23:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63931) +2018/09/16 08:23:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:23:23 ruptelaNet.go:261: Data received(client: [::1]:63931, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 08:23:23 ruptelaNet.go:278: Sent ACK (client: [::1]:63931, IMEI: 352094089712860) +2018/09/16 08:23:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:23:25 ruptelaNet.go:261: Data received(client: [::1]:63931, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 08:23:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:23:25 ruptelaNet.go:278: Sent ACK (client: [::1]:63931, IMEI: 352094089712860) +2018/09/16 08:23:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63931, IMEI: 352094089712860) with duration 3.62 s +2018/09/16 08:23:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:63953) +2018/09/16 08:23:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:23:35 ruptelaNet.go:261: Data received(client: [::1]:63953, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:23:35 ruptelaNet.go:278: Sent ACK (client: [::1]:63953, IMEI: 352094087982671) +2018/09/16 08:23:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:23:37 ruptelaNet.go:261: Data received(client: [::1]:63953, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:23:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:23:37 ruptelaNet.go:278: Sent ACK (client: [::1]:63953, IMEI: 352094087982671) +2018/09/16 08:23:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63953, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:24:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:64014) +2018/09/16 08:24:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:24:04 ruptelaNet.go:261: Data received(client: [::1]:64014, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:24:04 ruptelaNet.go:278: Sent ACK (client: [::1]:64014, IMEI: 352094087982671) +2018/09/16 08:24:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:24:07 ruptelaNet.go:261: Data received(client: [::1]:64014, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 08:24:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:24:07 ruptelaNet.go:278: Sent ACK (client: [::1]:64014, IMEI: 352094087982671) +2018/09/16 08:24:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64014, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 08:24:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:64056) +2018/09/16 08:24:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:24:22 ruptelaNet.go:261: Data received(client: [::1]:64056, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:24:22 ruptelaNet.go:278: Sent ACK (client: [::1]:64056, IMEI: 352094089712860) +2018/09/16 08:24:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:24:24 ruptelaNet.go:261: Data received(client: [::1]:64056, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 08:24:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:24:24 ruptelaNet.go:278: Sent ACK (client: [::1]:64056, IMEI: 352094089712860) +2018/09/16 08:24:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64056, IMEI: 352094089712860) with duration 2.8 s +2018/09/16 08:24:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:64073) +2018/09/16 08:24:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:24:33 ruptelaNet.go:261: Data received(client: [::1]:64073, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:24:33 ruptelaNet.go:278: Sent ACK (client: [::1]:64073, IMEI: 352094087982671) +2018/09/16 08:24:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:24:35 ruptelaNet.go:261: Data received(client: [::1]:64073, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:24:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:24:35 ruptelaNet.go:278: Sent ACK (client: [::1]:64073, IMEI: 352094087982671) +2018/09/16 08:24:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64073, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 08:25:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:64135) +2018/09/16 08:25:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:25:02 ruptelaNet.go:261: Data received(client: [::1]:64135, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:25:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64135, IMEI: 352094087982671) +2018/09/16 08:25:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:25:05 ruptelaNet.go:261: Data received(client: [::1]:64135, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 08:25:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:25:05 ruptelaNet.go:278: Sent ACK (client: [::1]:64135, IMEI: 352094087982671) +2018/09/16 08:25:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64135, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 08:25:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:64184) +2018/09/16 08:25:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:25:22 ruptelaNet.go:261: Data received(client: [::1]:64184, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:25:22 ruptelaNet.go:278: Sent ACK (client: [::1]:64184, IMEI: 352094089712860) +2018/09/16 08:25:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:25:24 ruptelaNet.go:261: Data received(client: [::1]:64184, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 08:25:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:25:24 ruptelaNet.go:278: Sent ACK (client: [::1]:64184, IMEI: 352094089712860) +2018/09/16 08:25:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64184, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 08:25:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:64196) +2018/09/16 08:25:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:25:31 ruptelaNet.go:261: Data received(client: [::1]:64196, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 08:25:31 ruptelaNet.go:278: Sent ACK (client: [::1]:64196, IMEI: 352094087982671) +2018/09/16 08:25:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:25:34 ruptelaNet.go:261: Data received(client: [::1]:64196, IMEI: 352094087982671) with duration 4.32 s +2018/09/16 08:25:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:25:34 ruptelaNet.go:278: Sent ACK (client: [::1]:64196, IMEI: 352094087982671) +2018/09/16 08:25:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64196, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 08:25:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:64260) +2018/09/16 08:26:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:26:00 ruptelaNet.go:261: Data received(client: [::1]:64260, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:26:00 ruptelaNet.go:278: Sent ACK (client: [::1]:64260, IMEI: 352094087982671) +2018/09/16 08:26:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:26:02 ruptelaNet.go:261: Data received(client: [::1]:64260, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:26:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:26:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64260, IMEI: 352094087982671) +2018/09/16 08:26:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64260, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:26:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64308) +2018/09/16 08:26:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:26:23 ruptelaNet.go:261: Data received(client: [::1]:64308, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:26:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64308, IMEI: 352094089712860) +2018/09/16 08:26:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:26:25 ruptelaNet.go:261: Data received(client: [::1]:64308, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:26:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:26:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64308, IMEI: 352094089712860) +2018/09/16 08:26:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64308, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 08:26:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:64319) +2018/09/16 08:26:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:26:29 ruptelaNet.go:261: Data received(client: [::1]:64319, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:26:29 ruptelaNet.go:278: Sent ACK (client: [::1]:64319, IMEI: 352094087982671) +2018/09/16 08:26:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:26:31 ruptelaNet.go:261: Data received(client: [::1]:64319, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:26:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:26:31 ruptelaNet.go:278: Sent ACK (client: [::1]:64319, IMEI: 352094087982671) +2018/09/16 08:26:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64319, IMEI: 352094087982671) with duration 5.99 s +2018/09/16 08:26:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:64376) +2018/09/16 08:26:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:26:58 ruptelaNet.go:261: Data received(client: [::1]:64376, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:26:58 ruptelaNet.go:278: Sent ACK (client: [::1]:64376, IMEI: 352094087982671) +2018/09/16 08:27:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:27:00 ruptelaNet.go:261: Data received(client: [::1]:64376, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:27:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:27:00 ruptelaNet.go:278: Sent ACK (client: [::1]:64376, IMEI: 352094087982671) +2018/09/16 08:27:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64376, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 08:27:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64430) +2018/09/16 08:27:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:27:23 ruptelaNet.go:261: Data received(client: [::1]:64430, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:27:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64430, IMEI: 352094089712860) +2018/09/16 08:27:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:27:25 ruptelaNet.go:261: Data received(client: [::1]:64430, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 08:27:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:27:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64430, IMEI: 352094089712860) +2018/09/16 08:27:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:64436) +2018/09/16 08:27:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64430, IMEI: 352094089712860) with duration 3.16 s +2018/09/16 08:27:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:27:27 ruptelaNet.go:261: Data received(client: [::1]:64436, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 08:27:27 ruptelaNet.go:278: Sent ACK (client: [::1]:64436, IMEI: 352094087982671) +2018/09/16 08:27:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:27:30 ruptelaNet.go:261: Data received(client: [::1]:64436, IMEI: 352094087982671) with duration 4.18 s +2018/09/16 08:27:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:27:30 ruptelaNet.go:278: Sent ACK (client: [::1]:64436, IMEI: 352094087982671) +2018/09/16 08:27:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64436, IMEI: 352094087982671) with duration 6.33 s +2018/09/16 08:27:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:64496) +2018/09/16 08:27:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:27:56 ruptelaNet.go:261: Data received(client: [::1]:64496, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:27:56 ruptelaNet.go:278: Sent ACK (client: [::1]:64496, IMEI: 352094087982671) +2018/09/16 08:27:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:27:59 ruptelaNet.go:261: Data received(client: [::1]:64496, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:27:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:27:59 ruptelaNet.go:278: Sent ACK (client: [::1]:64496, IMEI: 352094087982671) +2018/09/16 08:28:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64496, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:28:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64554) +2018/09/16 08:28:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:28:23 ruptelaNet.go:261: Data received(client: [::1]:64554, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:28:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64554, IMEI: 352094089712860) +2018/09/16 08:28:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:64555) +2018/09/16 08:28:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:28:25 ruptelaNet.go:261: Data received(client: [::1]:64555, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:28:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64555, IMEI: 352094087982671) +2018/09/16 08:28:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:28:25 ruptelaNet.go:261: Data received(client: [::1]:64554, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 08:28:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:28:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64554, IMEI: 352094089712860) +2018/09/16 08:28:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64554, IMEI: 352094089712860) with duration 2.61 s +2018/09/16 08:28:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:28:27 ruptelaNet.go:261: Data received(client: [::1]:64555, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:28:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:28:27 ruptelaNet.go:278: Sent ACK (client: [::1]:64555, IMEI: 352094087982671) +2018/09/16 08:28:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64555, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:28:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:64615) +2018/09/16 08:28:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:28:54 ruptelaNet.go:261: Data received(client: [::1]:64615, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:28:54 ruptelaNet.go:278: Sent ACK (client: [::1]:64615, IMEI: 352094087982671) +2018/09/16 08:28:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:28:57 ruptelaNet.go:261: Data received(client: [::1]:64615, IMEI: 352094087982671) with duration 4.1 s +2018/09/16 08:28:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:28:57 ruptelaNet.go:278: Sent ACK (client: [::1]:64615, IMEI: 352094087982671) +2018/09/16 08:28:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64615, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 08:29:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:64677) +2018/09/16 08:29:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:29:23 ruptelaNet.go:261: Data received(client: [::1]:64677, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:29:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64677, IMEI: 352094087982671) +2018/09/16 08:29:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64678) +2018/09/16 08:29:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:29:23 ruptelaNet.go:261: Data received(client: [::1]:64678, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:29:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64678, IMEI: 352094089712860) +2018/09/16 08:29:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:29:25 ruptelaNet.go:261: Data received(client: [::1]:64678, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:29:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64678, IMEI: 352094089712860) +2018/09/16 08:29:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:29:25 ruptelaNet.go:261: Data received(client: [::1]:64677, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:29:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64677, IMEI: 352094087982671) +2018/09/16 08:29:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64678, IMEI: 352094089712860) with duration 3.02 s +2018/09/16 08:29:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64677, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:29:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:64742) +2018/09/16 08:29:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:29:52 ruptelaNet.go:261: Data received(client: [::1]:64742, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 08:29:52 ruptelaNet.go:278: Sent ACK (client: [::1]:64742, IMEI: 352094087982671) +2018/09/16 08:29:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:29:55 ruptelaNet.go:261: Data received(client: [::1]:64742, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 08:29:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:29:55 ruptelaNet.go:278: Sent ACK (client: [::1]:64742, IMEI: 352094087982671) +2018/09/16 08:29:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64742, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 08:30:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:64799) +2018/09/16 08:30:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:30:21 ruptelaNet.go:261: Data received(client: [::1]:64799, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:30:21 ruptelaNet.go:278: Sent ACK (client: [::1]:64799, IMEI: 352094087982671) +2018/09/16 08:30:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64809) +2018/09/16 08:30:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:30:23 ruptelaNet.go:261: Data received(client: [::1]:64809, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:30:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64809, IMEI: 352094089712860) +2018/09/16 08:30:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:30:23 ruptelaNet.go:261: Data received(client: [::1]:64799, IMEI: 352094087982671) with duration 3.46 s +2018/09/16 08:30:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:30:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64799, IMEI: 352094087982671) +2018/09/16 08:30:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:30:25 ruptelaNet.go:261: Data received(client: [::1]:64809, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 08:30:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:30:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64809, IMEI: 352094089712860) +2018/09/16 08:30:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64799, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 08:30:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64809, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 08:30:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64858) +2018/09/16 08:30:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:30:49 ruptelaNet.go:261: Data received(client: [::1]:64858, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:30:49 ruptelaNet.go:278: Sent ACK (client: [::1]:64858, IMEI: 352094087982671) +2018/09/16 08:30:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:30:52 ruptelaNet.go:261: Data received(client: [::1]:64858, IMEI: 352094087982671) with duration 4.81 s +2018/09/16 08:30:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:30:52 ruptelaNet.go:278: Sent ACK (client: [::1]:64858, IMEI: 352094087982671) +2018/09/16 08:30:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64858, IMEI: 352094087982671) with duration 6.96 s +2018/09/16 08:31:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:64920) +2018/09/16 08:31:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:31:19 ruptelaNet.go:261: Data received(client: [::1]:64920, IMEI: 352094087982671) with duration 0 s +2018/09/16 08:31:19 ruptelaNet.go:278: Sent ACK (client: [::1]:64920, IMEI: 352094087982671) +2018/09/16 08:31:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:31:22 ruptelaNet.go:261: Data received(client: [::1]:64920, IMEI: 352094087982671) with duration 2.87 s +2018/09/16 08:31:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:31:22 ruptelaNet.go:278: Sent ACK (client: [::1]:64920, IMEI: 352094087982671) +2018/09/16 08:31:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64932) +2018/09/16 08:31:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:31:23 ruptelaNet.go:261: Data received(client: [::1]:64932, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:31:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64932, IMEI: 352094089712860) +2018/09/16 08:31:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64920, IMEI: 352094087982671) with duration 4.94 s +2018/09/16 08:31:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:31:25 ruptelaNet.go:261: Data received(client: [::1]:64932, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 08:31:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:31:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64932, IMEI: 352094089712860) +2018/09/16 08:31:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64932, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 08:31:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:64977) +2018/09/16 08:31:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:31:48 ruptelaNet.go:261: Data received(client: [::1]:64977, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:31:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64977, IMEI: 352094087982671) +2018/09/16 08:31:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:31:50 ruptelaNet.go:261: Data received(client: [::1]:64977, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 08:31:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:31:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64977, IMEI: 352094087982671) +2018/09/16 08:31:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64977, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 08:32:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:65037) +2018/09/16 08:32:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:32:17 ruptelaNet.go:261: Data received(client: [::1]:65037, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 08:32:17 ruptelaNet.go:278: Sent ACK (client: [::1]:65037, IMEI: 352094087982671) +2018/09/16 08:32:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:32:20 ruptelaNet.go:261: Data received(client: [::1]:65037, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 08:32:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:32:20 ruptelaNet.go:278: Sent ACK (client: [::1]:65037, IMEI: 352094087982671) +2018/09/16 08:32:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65037, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 08:32:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:65053) +2018/09/16 08:32:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:32:23 ruptelaNet.go:261: Data received(client: [::1]:65053, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:32:23 ruptelaNet.go:278: Sent ACK (client: [::1]:65053, IMEI: 352094089712860) +2018/09/16 08:32:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:32:25 ruptelaNet.go:261: Data received(client: [::1]:65053, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:32:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:32:25 ruptelaNet.go:278: Sent ACK (client: [::1]:65053, IMEI: 352094089712860) +2018/09/16 08:32:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65053, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 08:32:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:65091) +2018/09/16 08:32:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:32:46 ruptelaNet.go:261: Data received(client: [::1]:65091, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:32:46 ruptelaNet.go:278: Sent ACK (client: [::1]:65091, IMEI: 352094087982671) +2018/09/16 08:32:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:32:49 ruptelaNet.go:261: Data received(client: [::1]:65091, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 08:32:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:32:49 ruptelaNet.go:278: Sent ACK (client: [::1]:65091, IMEI: 352094087982671) +2018/09/16 08:32:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65091, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:33:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:65154) +2018/09/16 08:33:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:33:15 ruptelaNet.go:261: Data received(client: [::1]:65154, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:33:15 ruptelaNet.go:278: Sent ACK (client: [::1]:65154, IMEI: 352094087982671) +2018/09/16 08:33:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:33:17 ruptelaNet.go:261: Data received(client: [::1]:65154, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:33:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:33:17 ruptelaNet.go:278: Sent ACK (client: [::1]:65154, IMEI: 352094087982671) +2018/09/16 08:33:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65154, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:33:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:65173) +2018/09/16 08:33:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:33:24 ruptelaNet.go:261: Data received(client: [::1]:65173, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 08:33:24 ruptelaNet.go:278: Sent ACK (client: [::1]:65173, IMEI: 352094089712860) +2018/09/16 08:33:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:33:26 ruptelaNet.go:261: Data received(client: [::1]:65173, IMEI: 352094089712860) with duration 2.22 s +2018/09/16 08:33:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:33:26 ruptelaNet.go:278: Sent ACK (client: [::1]:65173, IMEI: 352094089712860) +2018/09/16 08:33:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65173, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 08:33:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:65215) +2018/09/16 08:33:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:33:44 ruptelaNet.go:261: Data received(client: [::1]:65215, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:33:44 ruptelaNet.go:278: Sent ACK (client: [::1]:65215, IMEI: 352094087982671) +2018/09/16 08:33:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:33:47 ruptelaNet.go:261: Data received(client: [::1]:65215, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 08:33:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:33:47 ruptelaNet.go:278: Sent ACK (client: [::1]:65215, IMEI: 352094087982671) +2018/09/16 08:33:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65215, IMEI: 352094087982671) with duration 7.99 s +2018/09/16 08:34:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:65280) +2018/09/16 08:34:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:34:13 ruptelaNet.go:261: Data received(client: [::1]:65280, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 08:34:13 ruptelaNet.go:278: Sent ACK (client: [::1]:65280, IMEI: 352094087982671) +2018/09/16 08:34:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:34:15 ruptelaNet.go:261: Data received(client: [::1]:65280, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:34:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:34:15 ruptelaNet.go:278: Sent ACK (client: [::1]:65280, IMEI: 352094087982671) +2018/09/16 08:34:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65280, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:34:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:65306) +2018/09/16 08:34:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:34:23 ruptelaNet.go:261: Data received(client: [::1]:65306, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:34:23 ruptelaNet.go:278: Sent ACK (client: [::1]:65306, IMEI: 352094089712860) +2018/09/16 08:34:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:34:25 ruptelaNet.go:261: Data received(client: [::1]:65306, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:34:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:34:25 ruptelaNet.go:278: Sent ACK (client: [::1]:65306, IMEI: 352094089712860) +2018/09/16 08:34:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65306, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 08:34:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:65345) +2018/09/16 08:34:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:34:42 ruptelaNet.go:261: Data received(client: [::1]:65345, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:34:42 ruptelaNet.go:278: Sent ACK (client: [::1]:65345, IMEI: 352094087982671) +2018/09/16 08:34:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:34:45 ruptelaNet.go:261: Data received(client: [::1]:65345, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 08:34:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:34:45 ruptelaNet.go:278: Sent ACK (client: [::1]:65345, IMEI: 352094087982671) +2018/09/16 08:34:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65345, IMEI: 352094087982671) with duration 6.25 s +2018/09/16 08:35:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65407) +2018/09/16 08:35:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:35:11 ruptelaNet.go:261: Data received(client: [::1]:65407, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:35:11 ruptelaNet.go:278: Sent ACK (client: [::1]:65407, IMEI: 352094087982671) +2018/09/16 08:35:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:35:13 ruptelaNet.go:261: Data received(client: [::1]:65407, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 08:35:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:35:13 ruptelaNet.go:278: Sent ACK (client: [::1]:65407, IMEI: 352094087982671) +2018/09/16 08:35:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65407, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 08:35:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:65436) +2018/09/16 08:35:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:35:24 ruptelaNet.go:261: Data received(client: [::1]:65436, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:35:24 ruptelaNet.go:278: Sent ACK (client: [::1]:65436, IMEI: 352094089712860) +2018/09/16 08:35:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:35:26 ruptelaNet.go:261: Data received(client: [::1]:65436, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 08:35:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:35:26 ruptelaNet.go:278: Sent ACK (client: [::1]:65436, IMEI: 352094089712860) +2018/09/16 08:35:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65436, IMEI: 352094089712860) with duration 2.9 s +2018/09/16 08:35:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:65467) +2018/09/16 08:35:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:35:40 ruptelaNet.go:261: Data received(client: [::1]:65467, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:35:40 ruptelaNet.go:278: Sent ACK (client: [::1]:65467, IMEI: 352094087982671) +2018/09/16 08:35:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:35:42 ruptelaNet.go:261: Data received(client: [::1]:65467, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:35:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:35:42 ruptelaNet.go:278: Sent ACK (client: [::1]:65467, IMEI: 352094087982671) +2018/09/16 08:35:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65467, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:36:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:49152) +2018/09/16 08:36:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:36:09 ruptelaNet.go:261: Data received(client: [::1]:49152, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:36:09 ruptelaNet.go:278: Sent ACK (client: [::1]:49152, IMEI: 352094087982671) +2018/09/16 08:36:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:36:12 ruptelaNet.go:261: Data received(client: [::1]:49152, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:36:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:36:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49152, IMEI: 352094087982671) +2018/09/16 08:36:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49152, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 08:36:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49186) +2018/09/16 08:36:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:36:24 ruptelaNet.go:261: Data received(client: [::1]:49186, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:36:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49186, IMEI: 352094089712860) +2018/09/16 08:36:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:36:26 ruptelaNet.go:261: Data received(client: [::1]:49186, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:36:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:36:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49186, IMEI: 352094089712860) +2018/09/16 08:36:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49186, IMEI: 352094089712860) with duration 3.53 s +2018/09/16 08:36:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:49213) +2018/09/16 08:36:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:36:38 ruptelaNet.go:261: Data received(client: [::1]:49213, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:36:38 ruptelaNet.go:278: Sent ACK (client: [::1]:49213, IMEI: 352094087982671) +2018/09/16 08:36:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:36:40 ruptelaNet.go:261: Data received(client: [::1]:49213, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:36:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:36:40 ruptelaNet.go:278: Sent ACK (client: [::1]:49213, IMEI: 352094087982671) +2018/09/16 08:36:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49213, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 08:37:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:49272) +2018/09/16 08:37:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:37:07 ruptelaNet.go:261: Data received(client: [::1]:49272, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 08:37:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49272, IMEI: 352094087982671) +2018/09/16 08:37:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:37:09 ruptelaNet.go:261: Data received(client: [::1]:49272, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:37:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:37:09 ruptelaNet.go:278: Sent ACK (client: [::1]:49272, IMEI: 352094087982671) +2018/09/16 08:37:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49272, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:37:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49309) +2018/09/16 08:37:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:37:24 ruptelaNet.go:261: Data received(client: [::1]:49309, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:37:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49309, IMEI: 352094089712860) +2018/09/16 08:37:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:37:26 ruptelaNet.go:261: Data received(client: [::1]:49309, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:37:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:37:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49309, IMEI: 352094089712860) +2018/09/16 08:37:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49309, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 08:37:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:49331) +2018/09/16 08:37:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:37:36 ruptelaNet.go:261: Data received(client: [::1]:49331, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:37:36 ruptelaNet.go:278: Sent ACK (client: [::1]:49331, IMEI: 352094087982671) +2018/09/16 08:37:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:37:38 ruptelaNet.go:261: Data received(client: [::1]:49331, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 08:37:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:37:38 ruptelaNet.go:278: Sent ACK (client: [::1]:49331, IMEI: 352094087982671) +2018/09/16 08:37:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49331, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:38:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:49395) +2018/09/16 08:38:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:38:05 ruptelaNet.go:261: Data received(client: [::1]:49395, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:38:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49395, IMEI: 352094087982671) +2018/09/16 08:38:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:38:07 ruptelaNet.go:261: Data received(client: [::1]:49395, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:38:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:38:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49395, IMEI: 352094087982671) +2018/09/16 08:38:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49395, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 08:38:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49432) +2018/09/16 08:38:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:38:24 ruptelaNet.go:261: Data received(client: [::1]:49432, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:38:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49432, IMEI: 352094089712860) +2018/09/16 08:38:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:38:26 ruptelaNet.go:261: Data received(client: [::1]:49432, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:38:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:38:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49432, IMEI: 352094089712860) +2018/09/16 08:38:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49432, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 08:38:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:49449) +2018/09/16 08:38:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:38:35 ruptelaNet.go:261: Data received(client: [::1]:49449, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 08:38:35 ruptelaNet.go:278: Sent ACK (client: [::1]:49449, IMEI: 352094087982671) +2018/09/16 08:38:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:38:37 ruptelaNet.go:261: Data received(client: [::1]:49449, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:38:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:38:37 ruptelaNet.go:278: Sent ACK (client: [::1]:49449, IMEI: 352094087982671) +2018/09/16 08:38:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49449, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 08:39:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:49514) +2018/09/16 08:39:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:39:05 ruptelaNet.go:261: Data received(client: [::1]:49514, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 08:39:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49514, IMEI: 352094087982671) +2018/09/16 08:39:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:39:07 ruptelaNet.go:261: Data received(client: [::1]:49514, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 08:39:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:39:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49514, IMEI: 352094087982671) +2018/09/16 08:39:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49514, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 08:39:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49556) +2018/09/16 08:39:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:39:24 ruptelaNet.go:261: Data received(client: [::1]:49556, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:39:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49556, IMEI: 352094089712860) +2018/09/16 08:39:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:39:26 ruptelaNet.go:261: Data received(client: [::1]:49556, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:39:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:39:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49556, IMEI: 352094089712860) +2018/09/16 08:39:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49556, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:39:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:49572) +2018/09/16 08:39:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:39:35 ruptelaNet.go:261: Data received(client: [::1]:49572, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 08:39:35 ruptelaNet.go:278: Sent ACK (client: [::1]:49572, IMEI: 352094087982671) +2018/09/16 08:39:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:39:39 ruptelaNet.go:261: Data received(client: [::1]:49572, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 08:39:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:39:39 ruptelaNet.go:278: Sent ACK (client: [::1]:49572, IMEI: 352094087982671) +2018/09/16 08:39:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49572, IMEI: 352094087982671) with duration 7.5 s +2018/09/16 08:40:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:49637) +2018/09/16 08:40:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:40:06 ruptelaNet.go:261: Data received(client: [::1]:49637, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:40:06 ruptelaNet.go:278: Sent ACK (client: [::1]:49637, IMEI: 352094087982671) +2018/09/16 08:40:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:40:08 ruptelaNet.go:261: Data received(client: [::1]:49637, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 08:40:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:40:08 ruptelaNet.go:278: Sent ACK (client: [::1]:49637, IMEI: 352094087982671) +2018/09/16 08:40:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49637, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 08:40:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:49684) +2018/09/16 08:40:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:40:26 ruptelaNet.go:261: Data received(client: [::1]:49684, IMEI: 352094089712860) with duration 0.27 s +2018/09/16 08:40:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49684, IMEI: 352094089712860) +2018/09/16 08:40:28 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:40:28 ruptelaNet.go:261: Data received(client: [::1]:49684, IMEI: 352094089712860) with duration 2.21 s +2018/09/16 08:40:28 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:40:28 ruptelaNet.go:278: Sent ACK (client: [::1]:49684, IMEI: 352094089712860) +2018/09/16 08:40:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49684, IMEI: 352094089712860) with duration 3.03 s +2018/09/16 08:40:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:49701) +2018/09/16 08:40:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:40:36 ruptelaNet.go:261: Data received(client: [::1]:49701, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 08:40:36 ruptelaNet.go:278: Sent ACK (client: [::1]:49701, IMEI: 352094087982671) +2018/09/16 08:40:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:40:38 ruptelaNet.go:261: Data received(client: [::1]:49701, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:40:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:40:38 ruptelaNet.go:278: Sent ACK (client: [::1]:49701, IMEI: 352094087982671) +2018/09/16 08:40:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49701, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:41:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:49762) +2018/09/16 08:41:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:41:06 ruptelaNet.go:261: Data received(client: [::1]:49762, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:41:06 ruptelaNet.go:278: Sent ACK (client: [::1]:49762, IMEI: 352094087982671) +2018/09/16 08:41:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:41:08 ruptelaNet.go:261: Data received(client: [::1]:49762, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:41:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:41:08 ruptelaNet.go:278: Sent ACK (client: [::1]:49762, IMEI: 352094087982671) +2018/09/16 08:41:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49762, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 08:41:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49806) +2018/09/16 08:41:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:41:24 ruptelaNet.go:261: Data received(client: [::1]:49806, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:41:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49806, IMEI: 352094089712860) +2018/09/16 08:41:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:41:26 ruptelaNet.go:261: Data received(client: [::1]:49806, IMEI: 352094089712860) with duration 1.98 s +2018/09/16 08:41:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:41:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49806, IMEI: 352094089712860) +2018/09/16 08:41:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49806, IMEI: 352094089712860) with duration 2.74 s +2018/09/16 08:41:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:49829) +2018/09/16 08:41:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:41:36 ruptelaNet.go:261: Data received(client: [::1]:49829, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 08:41:36 ruptelaNet.go:278: Sent ACK (client: [::1]:49829, IMEI: 352094087982671) +2018/09/16 08:41:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:41:38 ruptelaNet.go:261: Data received(client: [::1]:49829, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 08:41:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:41:38 ruptelaNet.go:278: Sent ACK (client: [::1]:49829, IMEI: 352094087982671) +2018/09/16 08:41:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49829, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 08:42:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:49889) +2018/09/16 08:42:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:42:05 ruptelaNet.go:261: Data received(client: [::1]:49889, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 08:42:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49889, IMEI: 352094087982671) +2018/09/16 08:42:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:42:07 ruptelaNet.go:261: Data received(client: [::1]:49889, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 08:42:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:42:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49889, IMEI: 352094087982671) +2018/09/16 08:42:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49889, IMEI: 352094087982671) with duration 5.39 s +2018/09/16 08:42:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49930) +2018/09/16 08:42:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:42:24 ruptelaNet.go:261: Data received(client: [::1]:49930, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:42:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49930, IMEI: 352094089712860) +2018/09/16 08:42:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:42:26 ruptelaNet.go:261: Data received(client: [::1]:49930, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:42:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:42:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49930, IMEI: 352094089712860) +2018/09/16 08:42:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49930, IMEI: 352094089712860) with duration 2.69 s +2018/09/16 08:42:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:49949) +2018/09/16 08:42:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:42:34 ruptelaNet.go:261: Data received(client: [::1]:49949, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:42:34 ruptelaNet.go:278: Sent ACK (client: [::1]:49949, IMEI: 352094087982671) +2018/09/16 08:42:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:42:36 ruptelaNet.go:261: Data received(client: [::1]:49949, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:42:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:42:36 ruptelaNet.go:278: Sent ACK (client: [::1]:49949, IMEI: 352094087982671) +2018/09/16 08:42:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49949, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:43:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50016) +2018/09/16 08:43:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:43:04 ruptelaNet.go:261: Data received(client: [::1]:50016, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 08:43:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50016, IMEI: 352094087982671) +2018/09/16 08:43:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:43:07 ruptelaNet.go:261: Data received(client: [::1]:50016, IMEI: 352094087982671) with duration 4.69 s +2018/09/16 08:43:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:43:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50016, IMEI: 352094087982671) +2018/09/16 08:43:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50016, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 08:43:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:50053) +2018/09/16 08:43:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:43:24 ruptelaNet.go:261: Data received(client: [::1]:50053, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:43:24 ruptelaNet.go:278: Sent ACK (client: [::1]:50053, IMEI: 352094089712860) +2018/09/16 08:43:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:43:27 ruptelaNet.go:261: Data received(client: [::1]:50053, IMEI: 352094089712860) with duration 2.6 s +2018/09/16 08:43:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:43:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50053, IMEI: 352094089712860) +2018/09/16 08:43:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50053, IMEI: 352094089712860) with duration 3.8 s +2018/09/16 08:43:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50071) +2018/09/16 08:43:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:43:34 ruptelaNet.go:261: Data received(client: [::1]:50071, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:43:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50071, IMEI: 352094087982671) +2018/09/16 08:43:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:43:36 ruptelaNet.go:261: Data received(client: [::1]:50071, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 08:43:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:43:36 ruptelaNet.go:278: Sent ACK (client: [::1]:50071, IMEI: 352094087982671) +2018/09/16 08:43:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50071, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:44:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50132) +2018/09/16 08:44:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:44:04 ruptelaNet.go:261: Data received(client: [::1]:50132, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:44:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50132, IMEI: 352094087982671) +2018/09/16 08:44:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:44:06 ruptelaNet.go:261: Data received(client: [::1]:50132, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:44:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:44:06 ruptelaNet.go:278: Sent ACK (client: [::1]:50132, IMEI: 352094087982671) +2018/09/16 08:44:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50132, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:44:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50177) +2018/09/16 08:44:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:44:25 ruptelaNet.go:261: Data received(client: [::1]:50177, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:44:25 ruptelaNet.go:278: Sent ACK (client: [::1]:50177, IMEI: 352094089712860) +2018/09/16 08:44:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:44:27 ruptelaNet.go:261: Data received(client: [::1]:50177, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 08:44:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:44:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50177, IMEI: 352094089712860) +2018/09/16 08:44:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50177, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 08:44:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50194) +2018/09/16 08:44:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:44:34 ruptelaNet.go:261: Data received(client: [::1]:50194, IMEI: 352094087982671) with duration 1 s +2018/09/16 08:44:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50194, IMEI: 352094087982671) +2018/09/16 08:44:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:44:37 ruptelaNet.go:261: Data received(client: [::1]:50194, IMEI: 352094087982671) with duration 4.39 s +2018/09/16 08:44:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:44:37 ruptelaNet.go:278: Sent ACK (client: [::1]:50194, IMEI: 352094087982671) +2018/09/16 08:44:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50194, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 08:45:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50251) +2018/09/16 08:45:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:45:04 ruptelaNet.go:261: Data received(client: [::1]:50251, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:45:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50251, IMEI: 352094087982671) +2018/09/16 08:45:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:45:07 ruptelaNet.go:261: Data received(client: [::1]:50251, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 08:45:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:45:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50251, IMEI: 352094087982671) +2018/09/16 08:45:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50251, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:45:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50297) +2018/09/16 08:45:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:45:25 ruptelaNet.go:261: Data received(client: [::1]:50297, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:45:25 ruptelaNet.go:278: Sent ACK (client: [::1]:50297, IMEI: 352094089712860) +2018/09/16 08:45:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:45:27 ruptelaNet.go:261: Data received(client: [::1]:50297, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 08:45:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:45:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50297, IMEI: 352094089712860) +2018/09/16 08:45:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50297, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 08:45:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50316) +2018/09/16 08:45:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:45:34 ruptelaNet.go:261: Data received(client: [::1]:50316, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:45:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50316, IMEI: 352094087982671) +2018/09/16 08:45:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:45:36 ruptelaNet.go:261: Data received(client: [::1]:50316, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:45:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:45:36 ruptelaNet.go:278: Sent ACK (client: [::1]:50316, IMEI: 352094087982671) +2018/09/16 08:45:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50316, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:46:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50377) +2018/09/16 08:46:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:46:04 ruptelaNet.go:261: Data received(client: [::1]:50377, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:46:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50377, IMEI: 352094087982671) +2018/09/16 08:46:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:46:07 ruptelaNet.go:261: Data received(client: [::1]:50377, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:46:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:46:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50377, IMEI: 352094087982671) +2018/09/16 08:46:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50377, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:46:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50424) +2018/09/16 08:46:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:46:25 ruptelaNet.go:261: Data received(client: [::1]:50424, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 08:46:25 ruptelaNet.go:278: Sent ACK (client: [::1]:50424, IMEI: 352094089712860) +2018/09/16 08:46:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:46:27 ruptelaNet.go:261: Data received(client: [::1]:50424, IMEI: 352094089712860) with duration 2.54 s +2018/09/16 08:46:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:46:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50424, IMEI: 352094089712860) +2018/09/16 08:46:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50424, IMEI: 352094089712860) with duration 3.28 s +2018/09/16 08:46:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50437) +2018/09/16 08:46:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:46:34 ruptelaNet.go:261: Data received(client: [::1]:50437, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 08:46:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50437, IMEI: 352094087982671) +2018/09/16 08:46:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:46:37 ruptelaNet.go:261: Data received(client: [::1]:50437, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 08:46:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:46:37 ruptelaNet.go:278: Sent ACK (client: [::1]:50437, IMEI: 352094087982671) +2018/09/16 08:46:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50437, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 08:47:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50503) +2018/09/16 08:47:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:47:04 ruptelaNet.go:261: Data received(client: [::1]:50503, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:47:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50503, IMEI: 352094087982671) +2018/09/16 08:47:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:47:07 ruptelaNet.go:261: Data received(client: [::1]:50503, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 08:47:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:47:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50503, IMEI: 352094087982671) +2018/09/16 08:47:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50503, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 08:47:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50546) +2018/09/16 08:47:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:47:25 ruptelaNet.go:261: Data received(client: [::1]:50546, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:47:25 ruptelaNet.go:278: Sent ACK (client: [::1]:50546, IMEI: 352094089712860) +2018/09/16 08:47:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:47:27 ruptelaNet.go:261: Data received(client: [::1]:50546, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:47:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:47:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50546, IMEI: 352094089712860) +2018/09/16 08:47:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50546, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 08:47:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50563) +2018/09/16 08:47:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:47:34 ruptelaNet.go:261: Data received(client: [::1]:50563, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 08:47:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50563, IMEI: 352094087982671) +2018/09/16 08:47:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:47:37 ruptelaNet.go:261: Data received(client: [::1]:50563, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:47:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:47:37 ruptelaNet.go:278: Sent ACK (client: [::1]:50563, IMEI: 352094087982671) +2018/09/16 08:47:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50563, IMEI: 352094087982671) with duration 5.88 s +2018/09/16 08:47:51 ruptelaNet.go:181: Signal: interrupt +2018/09/16 12:05:39 deviceServer.go:89: PID file will be created +2018/09/16 12:05:39 deviceServer.go:92: PID: 15968 +2018/09/16 12:05:39 deviceServer.go:98: PID file created +2018/09/16 12:05:39 ruptelaNet.go:175: listening: [::]:4000 +2018/09/16 12:05:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:52590) +2018/09/16 12:05:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 12:05:45 ruptelaNet.go:261: Data received(client: [::1]:52590, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 12:05:45 ruptelaNet.go:278: Sent ACK (client: [::1]:52590, IMEI: 352094087982671) +2018/09/16 12:05:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 12:05:48 ruptelaNet.go:261: Data received(client: [::1]:52590, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 12:05:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 12:05:48 ruptelaNet.go:278: Sent ACK (client: [::1]:52590, IMEI: 352094087982671) +2018/09/16 12:05:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52590, IMEI: 352094087982671) with duration 6 s +2018/09/16 12:05:53 ruptelaNet.go:181: Signal: interrupt +2018/09/16 22:09:05 deviceServer.go:89: PID file will be created +2018/09/16 22:09:05 deviceServer.go:92: PID: 17490 +2018/09/16 22:09:05 deviceServer.go:98: PID file created +2018/09/16 22:09:05 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 22:09:09 ruptelaNet.go:199: teltonika New connection(client: [::1]:49868) +2018/09/16 22:09:10 ruptelaNet.go:333: data packet length(client: [::1]:49868) : 15 +2018/09/16 22:09:10 ruptelaNet.go:248: Data received(client: [::1]:49868, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 22:09:10 ruptelaNet.go:256: Sent ACK (client: [::1]:49868, IMEI: 352094087982671) +2018/09/16 22:09:13 ruptelaNet.go:333: data packet length(client: [::1]:49868) : 427 +2018/09/16 22:09:13 ruptelaNet.go:248: Data received(client: [::1]:49868, IMEI: 352094087982671) with duration 4 s +2018/09/16 22:09:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 22:09:13 ruptelaNet.go:256: Sent ACK (client: [::1]:49868, IMEI: 352094087982671) +2018/09/16 22:09:16 ruptelaNet.go:269: teltonika Close connection (client: [::1]:49868, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 22:09:26 ruptelaNet.go:180: Signal: interrupt diff --git a/server/exe/applog.sqlite b/server/exe/applog.sqlite new file mode 100755 index 0000000..69321e2 Binary files /dev/null and b/server/exe/applog.sqlite differ diff --git a/server/exe/config-server.hjson b/server/exe/config-server.hjson new file mode 100755 index 0000000..23eeb10 --- /dev/null +++ b/server/exe/config-server.hjson @@ -0,0 +1,60 @@ +{ + server: { + id: teltonika9000 + listenAddr: ":9000" + acceptTimeout: 10 # timeout (dalam detik) + writeTimeout: 10 # timeout (dalam detik) + maxReceive: 50 + maxSend: 50 + device: ruptela + } + + ruptela: { + message: "http://192.168.70.200/oslog/api/BroadcastPrivate/getbroadcastmessage/" + report: "http://192.168.70.200/oslog/api/BroadcastPrivate/putbroadcastmessage" + appendIMEI: false + serviceTimeout: 10 # REST Service timeout (dalam detik) + } + + gpsdata: { + storage: sql + sql: { + driver: postgres + connection: "user=postgres password=s3mb1l4n dbname=OSLOGRECV2 host=192.168.70.196 port=5432 connect_timeout=30 sslmode=disable" + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + insertQuery: INSERT INTO "GPS_DATA"("IMEI", "DATA_LOG", "FLAG", "DATE_INS", "DESC", "GPS_CODE", "DATA_LEN") VALUES($1, $2, $3, $4, $5, $6, $7) + } + } + + log: { + #Known types: console, file, sql + type: console, file + console: { + # use default options + } + + + #for file (uncomment type) + # type: file + file: { + name: /home/vagrant/receiver/teltonika9000/applog.log + append: true + } + + #for sql (uncomment type) + # SQLite -> driver: sqlite3 + # PostgreSQL -> driver: postgres + # type: sql + sql: { + driver: sqlite3 + connection: ./applog.sqlite + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + createQuery: CREATE TABLE applog(id INTEGER PRIMARY KEY AUTOINCREMENT, ts DATETIME, app VARCHAR(100), content TEXT) + insertQuery: INSERT INTO applog(ts, app, content) VALUES(?, ?, ?) + } + } +} diff --git a/server/exe/config.hjson b/server/exe/config.hjson new file mode 100755 index 0000000..7a67104 --- /dev/null +++ b/server/exe/config.hjson @@ -0,0 +1,160 @@ +{ + server: { + id: ruptela + listenAddr: ":4000" + acceptTimeout: 10 # timeout (dalam detik) + writeTimeout: 10 # timeout (dalam detik) + maxReceive: 50 + maxSend: 50 + device: RUPTELA + } + + ruptela: { + message: "http://localhost:8081/api/" + report: "http://localhost:8081/reportAPI" + appendIMEI: false + serviceTimeout: 10 # REST Service timeout (dalam detik) + } + + gpsdata: { + storage: sql + sql: { + driver: postgres + connection: "user=postgres password=s3mb1l4n dbname=OSLOGREC host=127.0.0.1 port=5432 connect_timeout=30 sslmode=disable" + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + insertQuery: INSERT INTO "GPS_DATA"("IMEI", "DATA_LOG", "FLAG", "DATE_INS", "DESC", "GPS_CODE", "DATA_LEN") VALUES($1, $2, $3, $4, $5, $6, $7) + } + } + + log: { + #Known types: console, file, sql + type: console, file + console: { + # use default options + } + + + #for file (uncomment type) + # type: file + file: { + name: /Users/baymac/Documents/work/IU/oslog/sourcecode/oslog.id/putu/jyoti_teltonika/server/exe/applog.log + append: true + } + + #for sql (uncomment type) + # SQLite -> driver: sqlite3 + # PostgreSQL -> driver: postgres + # type: sql + sql: { + driver: sqlite3 + connection: ./applog.sqlite + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + createQuery: CREATE TABLE applog(id INTEGER PRIMARY KEY AUTOINCREMENT, ts DATETIME, app VARCHAR(100), content TEXT) + insertQuery: INSERT INTO applog(ts, app, content) VALUES(?, ?, ?) + } + } + + messagebroker: { + brokerServer: localhost:9092 + brokerTopic: ruptela4000 + } + + iotag: { + tags: [ + { + tagName: Din1 + tagId: 2 + tagDataType: int + }, + { + tagName: Din2 + tagId: 3 + tagDataType: int + }, + { + tagName: Din3 + tagId: 4 + tagDataType: int + }, + { + tagName: Din4 + tagId: 5 + tagDataType: int + }, + { + tagName: Ain1 + tagId: 22 + tagDataType: int + }, + { + tagName: Ain2 + tagId: 23 + tagDataType: int + }, + { + tagName: Dist + tagId: 77 + tagDataType: float32 + }, + { + tagName: DistTotal + tagId: 65 + tagDataType: float64 + }, + { + tagName: GsmSignalSensor + tagId: 27 + tagDataType: int + }, + { + tagName: DeepSleepSensor + tagId: 200 + tagDataType: int + }, + { + tagName: HarshBreaking + tagId: 135 + tagDataType: int + }, + { + tagName: HarshAcceleration + tagId: 136 + tagDataType: int + }, + { + tagName: BatteryVolt + tagId: 30 + tagDataType: int + }, + { + tagName: PowerVolt + tagId: 29 + tagDataType: int + }, + { + tagName: Temp + tagId: 78 + tagDataType: int + }, + { + tagName: Temp1 + tagId: 79 + tagDataType: int + }, + { + tagName: Temp2 + tagId: 80 + tagDataType: int + }, + { + tagName: Rfid + tagId: 171 + tagDataType: string + } + ] + } +} diff --git a/server/exe/deviceServer.go b/server/exe/deviceServer.go new file mode 100755 index 0000000..74153fe --- /dev/null +++ b/server/exe/deviceServer.go @@ -0,0 +1,102 @@ +// +// Device server which handle communication to various devices (currently implements RUPTELA) +// + +package main + +import ( + "flag" + "log" + "runtime" + "os" + "io/ioutil" + "strconv" + "path/filepath" + + "github.com/ipsusila/opt" + //"../../model" + "../../server" + "../../lumberjack" + + _ "github.com/lib/pq" + _ "github.com/mattn/go-sqlite3" +) + +var exPath = ""; + +func startServer(options *opt.Options) { + //---options --------------------------------------------------------- + //start server according to mode + svcNet := &server.DevicePrsServerNet{ + Options: options, + } + svcNet.Start() +} + +func main() { + //maximum cpu + runtime.GOMAXPROCS(runtime.NumCPU()) + + ex, err := os.Executable() + if err != nil { + panic(err) + } + exPath = filepath.Dir(ex) + "/" + confPath := exPath + "config.hjson" + // re-open file + file, err := os.Open(confPath) + if err != nil { + confPath = "config.hjson" + } + defer file.Close() + + //parse configurationf file + cfgFile := flag.String("conf", confPath, "Configuration file") + flag.Parse() + + //load options + config, err := opt.FromFile(*cfgFile, opt.FormatAuto) + if err != nil { + log.Printf("Error while loading configuration file %v -> %v\n", *cfgFile, err) + return + } + + //display server ID (displayed in console) + log.Printf("Server ID: %v\n", config.Get("server").GetString("id", "undefined (check configuration)")) + + //setup log + //lw, err := utility.NewLogWriter(config) + //if err != nil { + // log.Printf("Error while setup logging: %v\n", err) + // return + //} + log.SetFlags(log.Lshortfile | log.Ldate | log.Ltime) + //log.SetOutput(lw) + logName := config.Get("log").Get("file").GetString("name", "") + log.SetOutput(&lumberjack.Logger{ + Filename: logName, + MaxSize: 10, // megabytes + MaxBackups: 3, + MaxAge: 3, //days + Compress: true, // disabled by default + }) + //defer lw.Close() + + pidFilePath := exPath + "receiver-" + config.Get("server").GetString("id", "undefined (check configuration)") + "-pid" + errRemoveFile := os.Remove(pidFilePath) + if errRemoveFile != nil { + log.Printf("PID file will be created") + } + pidStr := strconv.Itoa(os.Getpid()) + log.Printf("PID: %v\n", pidStr) + d1 := []byte(pidStr) + errCreateFile := ioutil.WriteFile(pidFilePath, d1, 0644) + if errCreateFile != nil { + log.Printf("Error while setup write PID file: %v\n", errCreateFile) + } else{ + log.Printf("PID file created") + } + + //Run application + startServer(config) +} diff --git a/server/ruptela_test.go b/server/ruptela_test.go new file mode 100755 index 0000000..6b822ad --- /dev/null +++ b/server/ruptela_test.go @@ -0,0 +1,133 @@ +package server + +import ( + "encoding/hex" + "fmt" + "net" + "testing" + "time" + + "../model" +) + +/* + Send data to server +*/ +func sendData(conf *model.ServerConfig, data []byte, dur chan<- int64) error { + //simulate client + stTime := time.Now() + + addr := fmt.Sprintf("%s:%d", conf.IP, conf.Port) + conn, err := net.Dial("tcp", addr) + if err != nil { + fmt.Println("Error: ", err) + dur <- -1 + return err + } + defer conn.Close() + + nw, err := conn.Write(data) + if err != nil { + fmt.Printf("Write error: %+v\n", err) + dur <- -1 + return err + } + fmt.Println("Packet writen = ", nw) + //sleep awhile + //time.Sleep(time.Second) + + //read response + rep := make([]byte, 20) + nr, err := conn.Read(rep) + if err != nil { + fmt.Printf("Read error: %+v\n", err) + dur <- -1 + return err + } + fmt.Println("Response -> ", rep[:nr]) + dur <- time.Now().Sub(stTime).Nanoseconds() + return nil +} +func TestInvalid(t *testing.T) { + //config + conf := model.ServerConfig{IP: "127.0.0.1", Port: 8095} + + //test failed data + dur := make(chan int64, 1) + data3 := []byte{0x08, 0x00, 0x01, 0x02} + sendData(&conf, data3, dur) + <-dur +} + +//start sending data +func TestRuptelaReceiver(t *testing.T) { + + //send data + data1, _ := hex.DecodeString( + "007900000b1a2a5585c30100024e9c036900000f101733208ff45e07b31b570a001009090605011b1a020003001c01ad01021d338e1600000" + + "2960000601a41014bc16d004e9c038400000f104fdf20900d20075103b00a001308090605011b1a020003001c01ad01021d33b11600000296" + + "0000601a41014bc1ea0028f9") + + data2, _ := hex.DecodeString( + "033500000C076B5C208F01011E5268CEF20000196E3A3A0AEF3E934F3E2D780000000007000000005268CEFD0000196E3A3A0AEF3E934F3" + + "E2D780000000007000000005268CF080000196E3A3A0AEF3E934F3E2D780000000007000000005268CF130000196E3A3A0AEF3E934F3E2D7" + + "80000000007000000005268CF1E0000196E3A3A0AEF3E934F3E2D780000000007000000005268CF290000196E3A3A0AEF3E934F3E2D78000" + + "0000007000000005268CF340000196E3A3A0AEF3E934F3E2D780000000007000000005268CF3F0000196E3A3A0AEF3E934F3E2D780000000" + + "007000000005268CF4A0000196E3A3A0AEF3E934F3E2D780000000007000000005268CF550000196E3A3A0AEF3E934F3E2D7800000000070" + + "00000005268CF600000196E3A3A0AEF3E934F3E2D780000000007000000005268CF6B0000196E3A3A0AEF3E934F3E2D78000000000700000" + + "0005268CF730000196E36630AEF42CE4F6D0BF40400022208000000005268CF7E0000196E36B60AEF42BE4F6D0BF400000000070000000052" + + "68CF890000196E36B60AEF42BE4F6D0BF40000000007000000005268CF940000196E36B60AEF42BE4F6D0BF40000000007000000005268CF" + + "9F0000196E36B60AEF42BE4F6D0BF40000000007000000005268CFAA0000196E36B60AEF42BE4F6D0BF40000000007000000005268CFB50" + + "000196E36B60AEF42BE4F6D0BF40000000007000000005268CFC00000196E36B60AEF42BE4F6D0BF40000000007000000005268CFCB00001" + + "96E36B60AEF42BE4F6D0BF40000000007000000005268CFD60000196E36B60AEF42BE4F6D0BF40000000007000000005268CFD70000196E" + + "3C710AEF5EFF4F690BF40400011708000000005268CFE20000196E3B980AEF601A4F690BF40000000007000000005268CFED0000196E3B980" + + "AEF601A4F690BF40000000007000000005268CFF80000196E3B980AEF601A4F690BF40000000007000000005268D0030000196E3B980AEF60" + + "1A4F690BF40000000007000000005268D00E0000196E3B980AEF601A4F690BF40000000007000000005268D0190000196E3B980AEF601A4F6" + + "90BF40000000007000000005268D0240000196E3B980AEF601A4F690BF400000000070000000046E2") + + data3, _ := hex.DecodeString( + "0011000315A07F44865A0E01000053EA01DF65AD6D") + + const NTEST = 1 + conf := model.ServerConfig{IP: "127.0.0.1", Port: 8081} + ch := make(chan int64, NTEST*3) + + n := 0 + for i := 0; i < NTEST; i++ { + go sendData(&conf, data1, ch) + n++ + go sendData(&conf, data2, ch) + n++ + + go sendData(&conf, data3, ch) + n++ + } + + var ma int64 = 0 + var mi int64 = 10000000000000 + var tot float64 = 0 + + var ti int64 + for i := 0; i < NTEST*2; i++ { + ti = <-ch + if ti < 0 { + continue + } + + if ti < mi { + mi = ti + } + + if ti > ma { + ma = ti + } + + tot += float64(ti) + } + + const MILIS = 1000000 + avg := tot / (NTEST * 2) + fmt.Printf("Total time = %+v ms, avg = %+v ms, mi = %+v ms, ma = %+v ms\n", + tot/MILIS, avg/MILIS, float64(mi)/MILIS, float64(ma)/MILIS) + +} diff --git a/utility/logwriter.go b/utility/logwriter.go new file mode 100755 index 0000000..248b88c --- /dev/null +++ b/utility/logwriter.go @@ -0,0 +1,172 @@ +package utility + +import ( + "database/sql" + "io" + "os" + "time" + + "strings" + + "github.com/ipsusila/opt" +) + +//SQLWriter write log to database i.e. SQLite +type SQLWriter struct { + db *sql.DB + insertQuery string + createQuery string + appID string +} + +//LogWriter support multiple output +type LogWriter struct { + writers []io.WriteCloser + console bool +} + +//NewLogWriter create multiple writer +func NewLogWriter(options *opt.Options) (*LogWriter, error) { + logOpt := options.Get("log") + + //backward compatibility, get from server + appID := options.Get("server").GetString("id", "") + if appID == "" { + //if failed, get from `log.id` + appID = logOpt.GetString("id", "") + } + if appID == "" { + //if failed, get from `id`` + appID = options.GetString("id", "*undefined*") + } + + outTypes := logOpt.GetString("type", "") + typeItems := strings.Split(outTypes, ",") + writers := []io.WriteCloser{} + + console := false + for _, item := range typeItems { + item = strings.TrimSpace(item) + switch item { + case "console": + console = true + case "file": + fileOpt := logOpt.Get("file") + name := fileOpt.GetString("name", "") + appendExisting := fileOpt.GetBool("append", true) + flag := os.O_WRONLY | os.O_CREATE + if appendExisting { + flag |= os.O_APPEND + } else { + flag |= os.O_TRUNC + } + + f, err := os.OpenFile(name, flag, 0666) + if err != nil { + return nil, err + } + writers = append(writers, f) + case "sql": + w, err := newSQLWriter(logOpt, appID) + if err != nil { + return nil, err + } + writers = append(writers, w) + } + } + + lw := &LogWriter{ + writers: writers, + console: console, + } + + return lw, nil +} + +//NewSQLWriter open log writer to sql +func newSQLWriter(logOpt *opt.Options, appID string) (*SQLWriter, error) { + sqlOpt := logOpt.Get("sql") + dbDriver := sqlOpt.GetString("driver", "") + dbInfo := sqlOpt.GetString("connection", "") + createQuery := sqlOpt.GetString("createQuery", "") + insertQuery := sqlOpt.GetString("insertQuery", "") + dbMaxIdle := sqlOpt.GetInt("maxIdle", 0) + dbMaxOpen := sqlOpt.GetInt("maxOpen", 5) + dbMaxLifetime := time.Duration(sqlOpt.GetInt("maxLifetime", 60)) * time.Second + + //open databae connection + db, err := sql.Open(dbDriver, dbInfo) + if err != nil { + return nil, err + } + err = db.Ping() + if err != nil { + db.Close() + return nil, err + } + + //connection pooling + db.SetMaxIdleConns(dbMaxIdle) + db.SetMaxOpenConns(dbMaxOpen) + db.SetConnMaxLifetime(dbMaxLifetime) + + //ignore error + //TODO, verify query (security, untrusted source) + db.Exec(createQuery) + + w := &SQLWriter{ + db: db, + createQuery: createQuery, + insertQuery: insertQuery, + appID: appID, + } + + return w, nil +} + +//Write to multiple log +func (lw *LogWriter) Write(data []byte) (n int, err error) { + //now := time.Now().Format("[2006-01-02 15:04:05]") + if lw.console { + n, err = os.Stderr.Write(data) + } + for _, w := range lw.writers { + n, err = w.Write(data) + } + + return n, err +} + +//Close all writer +func (lw *LogWriter) Close() error { + for _, w := range lw.writers { + w.Close() + } + return nil +} + +//Write data with timestamp (ts, log) +func (w *SQLWriter) Write(data []byte) (int, error) { + //TODO, verify query (security, untrusted source) + result, err := w.db.Exec(w.insertQuery, time.Now(), w.appID, string(data)) + if err != nil { + return 0, err + } + + n := len(data) + _, err = result.LastInsertId() + if err != nil { + return n, err + } + + nrows, err := result.RowsAffected() + if err != nil || nrows == 0 { + return n, err + } + + return n, nil +} + +func (w *SQLWriter) Close() error { + return w.db.Close() +} diff --git a/utility/watcher/config.hjson b/utility/watcher/config.hjson new file mode 100755 index 0000000..3d0c543 --- /dev/null +++ b/utility/watcher/config.hjson @@ -0,0 +1,39 @@ +{ + watch: { + paths: ["../../", "doesnotexist"] + maxFile: 5 + pattern: server + verbose: true + catchSignal: false + } + + log: { + #Known types: console, file, sql + type: console, sql + console: { + # use default options + } + + + #for file (uncomment type) + # type: file + file: { + name: ./applog.log + append: true + } + + #for sql (uncomment type) + # SQLite -> driver: sqlite3 + # PostgreSQL -> driver: postgres + # type: sql + sql: { + driver: sqlite3 + connection: ./applog.sqlite + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + createQuery: CREATE TABLE applog(id INTEGER PRIMARY KEY AUTOINCREMENT, ts DATETIME, app VARCHAR(100), content TEXT) + insertQuery: INSERT INTO applog(ts, app, content) VALUES(?, ?, ?) + } + } +} \ No newline at end of file diff --git a/utility/watcher/log_watcher.go b/utility/watcher/log_watcher.go new file mode 100755 index 0000000..2788e90 --- /dev/null +++ b/utility/watcher/log_watcher.go @@ -0,0 +1,340 @@ +package main + +import ( + "flag" + "fmt" + "log" + "os" + "os/signal" + "path/filepath" + "regexp" + "sync" + "syscall" + + "github.com/fsnotify/fsnotify" + "github.com/ipsusila/opt" + "oslog.id/putu/jyoti/utility" + + _ "github.com/mattn/go-sqlite3" +) + +type watcherOptions struct { + watchPaths []string + maxLastFile int + pattern string + verbose bool + catchSignal bool + regPattern *regexp.Regexp +} + +type node struct { + name string + fullName string + next *node +} + +type list struct { + sync.Mutex + numItems int + head *node + tail *node +} + +func (l *list) clear() { + l.head = nil + l.tail = nil + l.numItems = 0 +} + +func (l *list) count() int { + l.Lock() + defer l.Unlock() + + return l.numItems +} + +func (l *list) newNode(name string) (*node, error) { + fullName, err := filepath.Abs(name) + if err != nil { + return nil, err + } + + nd := &node{ + name: name, + fullName: fullName, + } + + return nd, nil +} + +func (l *list) push(name string) error { + l.Lock() + defer l.Unlock() + + nd, err := l.newNode(name) + if err != nil { + return err + } + + if l.tail == nil { + l.head = nd + l.tail = nd + } else { + l.tail.next = nd + l.tail = nd + } + + l.numItems++ + return nil +} + +func (l *list) peek() *node { + l.Lock() + defer l.Unlock() + + if l.head == nil { + return nil + } + return l.head +} + +func (l *list) safePop() *node { + if l.head == nil { + return nil + } + + nd := l.head + l.head = nd.next + if l.head == nil { + l.tail = nil + } + l.numItems-- + return nd +} + +func (l *list) pop() *node { + l.Lock() + defer l.Unlock() + + return l.safePop() +} + +func (l *list) remove(name string) *node { + l.Lock() + defer l.Unlock() + + //create item + item, err := l.newNode(name) + if err != nil { + return nil + } + + //empty + if l.head == nil || item == nil { + return nil + } else if l.head.fullName == item.fullName { + return l.safePop() + } + + //node current and next + nd := l.head + next := l.head.next + for next != nil { + if next.fullName == item.fullName { + nextNext := next.next + nd.next = nextNext + l.numItems-- + if next == l.tail { + l.tail = nd + } + return next + } + + //next items + nd = next + next = nd.next + } + + return nil +} + +func (l *list) iterate(fn func(nd *node)) { + l.Lock() + defer l.Unlock() + + nd := l.head + for nd != nil { + fn(nd) + nd = nd.next + } +} + +func startWatching(options *watcherOptions) { + //file items + items := &list{} + errItems := &list{} + + watcher, err := fsnotify.NewWatcher() + if err != nil { + log.Fatal(err) + } + + done := make(chan bool, 1) + mustExit := make(chan bool, 1) + + // Process events + go func() { + defer func() { + close(done) + }() + + for { + select { + case ev := <-watcher.Events: + isCreate := ev.Op&fsnotify.Create == fsnotify.Create + isDelete := ev.Op&fsnotify.Remove == fsnotify.Remove + if isCreate { + //match pattern + //when new items created, delete old items + //if number of items exceed threshold + if options.regPattern == nil || options.regPattern.MatchString(ev.Name) { + items.push(ev.Name) + if options.verbose { + log.Printf("Item %v ADDED", ev.Name) + } + + if items.count() > options.maxLastFile { + node := items.pop() + err := os.Remove(node.fullName) + if err != nil { + errItems.push(node.name) + log.Printf("Error %v while deleting %v", err, node.fullName) + } + } + } + } else if isDelete { + if options.verbose { + log.Printf("Item %v REMOVED", ev.Name) + } + //if manually deleted: remove from list + items.remove(ev.Name) + } + case err := <-watcher.Errors: + log.Println("Watcher error:", err) + case <-mustExit: + return + } + } + }() + + //Start watching items + nwatched := 0 + for _, sPath := range options.watchPaths { + err = watcher.Add(sPath) + if err != nil { + log.Printf("Error watching `%s` -> %v", sPath, err) + } else { + nwatched++ + if options.verbose { + log.Printf("Watching %s...", sPath) + } + } + } + if nwatched == 0 { + close(mustExit) + } else { + //catch signal + if options.catchSignal { + signalChan := make(chan os.Signal, 1) + signal.Notify(signalChan, os.Interrupt, syscall.SIGTERM) + go func() { + for _ = range signalChan { + fmt.Println("Received an interrupt, stopping watcher...") + close(mustExit) + return + } + }() + } else { + //wait for q/q + buf := make([]byte, 1) + for { + //wait input + n, err := os.Stdin.Read(buf) + if err != nil { + log.Println(err) + } else if n > 0 && buf[0] == 'q' || buf[0] == 'Q' { + close(mustExit) + break + } + } + } + } + // Hang so program doesn't exit + <-done + watcher.Close() + + //erritems + if errItems.count() > 0 { + log.Printf("The following item(s) were not removed do to error") + errItems.iterate(func(nd *node) { + log.Printf("%v", nd.fullName) + }) + } + + log.Printf("Watcher %d DONE", items.count()) +} + +func main() { + //parse configurationf file + cfgFile := flag.String("conf", "config.hjson", "Configuration file") + flag.Parse() + + //load options + config, err := opt.FromFile(*cfgFile, opt.FormatAuto) + if err != nil { + log.Printf("Error while loading configuration file %v -> %v\n", *cfgFile, err) + return + } + + //display server ID (displayed in console) + log.Printf("Application ID: %v\n", config.GetString("id", "undefined (check configuration)")) + + //configure log writer + lw, err := utility.NewLogWriter(config) + if err != nil { + log.Printf("Error while setup logging: %v\n", err) + return + } + log.SetFlags(log.Lshortfile | log.Ldate | log.Ltime) + log.SetOutput(lw) + + defer lw.Close() + + //options + /* + watchPaths []string + maxLastFile int + pattern string + verbose bool + catchSignal bool + */ + options := &watcherOptions{} + wcfg := config.Get("watch") + options.watchPaths = wcfg.GetStringArray("paths") + options.maxLastFile = wcfg.GetInt("maxFile", 50) + options.pattern = wcfg.GetString("pattern", "") + options.verbose = wcfg.GetBool("verbose", false) + options.catchSignal = wcfg.GetBool("catchSignal", false) + + //verbose? + if options.verbose { + log.Printf("%s", config.AsJSON()) + } + + //compile regex + if len(options.pattern) > 0 { + options.regPattern = regexp.MustCompile(options.pattern) + } + + startWatching(options) +} diff --git a/vendor/github.com/gansidui/gotcp/LICENSE b/vendor/github.com/gansidui/gotcp/LICENSE new file mode 100755 index 0000000..beac5ef --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Jie Li + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/vendor/github.com/gansidui/gotcp/README.md b/vendor/github.com/gansidui/gotcp/README.md new file mode 100755 index 0000000..94acdf9 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/README.md @@ -0,0 +1,25 @@ +gotcp +================ + +A Go package for quickly building tcp servers + + +Usage +================ + +###Install + +~~~ +go get github.com/gansidui/gotcp +~~~ + + +###Examples + +* [echo](https://github.com/gansidui/gotcp/tree/master/examples/echo) +* [telnet](https://github.com/gansidui/gotcp/tree/master/examples/telnet) + +Document +================ + +[Doc](http://godoc.org/github.com/gansidui/gotcp) \ No newline at end of file diff --git a/vendor/github.com/gansidui/gotcp/conn.go b/vendor/github.com/gansidui/gotcp/conn.go new file mode 100755 index 0000000..f3778af --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/conn.go @@ -0,0 +1,215 @@ +package gotcp + +import ( + "errors" + "net" + "sync" + "sync/atomic" + "time" +) + +// Error type +var ( + ErrConnClosing = errors.New("use of closed network connection") + ErrWriteBlocking = errors.New("write packet was blocking") + ErrReadBlocking = errors.New("read packet was blocking") +) + +// Conn exposes a set of callbacks for the various events that occur on a connection +type Conn struct { + srv *Server + conn *net.TCPConn // the raw connection + extraData interface{} // to save extra data + closeOnce sync.Once // close the conn, once, per instance + closeFlag int32 // close flag + closeChan chan struct{} // close chanel + packetSendChan chan Packet // packet send chanel + packetReceiveChan chan Packet // packeet receive chanel +} + +// ConnCallback is an interface of methods that are used as callbacks on a connection +type ConnCallback interface { + // OnConnect is called when the connection was accepted, + // If the return value of false is closed + OnConnect(*Conn) bool + + // OnMessage is called when the connection receives a packet, + // If the return value of false is closed + OnMessage(*Conn, Packet) bool + + // OnClose is called when the connection closed + OnClose(*Conn) +} + +// newConn returns a wrapper of raw conn +func newConn(conn *net.TCPConn, srv *Server) *Conn { + return &Conn{ + srv: srv, + conn: conn, + closeChan: make(chan struct{}), + packetSendChan: make(chan Packet, srv.config.PacketSendChanLimit), + packetReceiveChan: make(chan Packet, srv.config.PacketReceiveChanLimit), + } +} + +// GetExtraData gets the extra data from the Conn +func (c *Conn) GetExtraData() interface{} { + return c.extraData +} + +// PutExtraData puts the extra data with the Conn +func (c *Conn) PutExtraData(data interface{}) { + c.extraData = data +} + +// GetRawConn returns the raw net.TCPConn from the Conn +func (c *Conn) GetRawConn() *net.TCPConn { + return c.conn +} + +// Close closes the connection +func (c *Conn) Close() { + c.closeOnce.Do(func() { + atomic.StoreInt32(&c.closeFlag, 1) + close(c.closeChan) + close(c.packetSendChan) + close(c.packetReceiveChan) + c.conn.Close() + c.srv.callback.OnClose(c) + }) +} + +// IsClosed indicates whether or not the connection is closed +func (c *Conn) IsClosed() bool { + return atomic.LoadInt32(&c.closeFlag) == 1 +} + +// AsyncWritePacket async writes a packet, this method will never block +func (c *Conn) AsyncWritePacket(p Packet, timeout time.Duration) (err error) { + if c.IsClosed() { + return ErrConnClosing + } + + defer func() { + if e := recover(); e != nil { + err = ErrConnClosing + } + }() + + if timeout == 0 { + select { + case c.packetSendChan <- p: + return nil + + default: + return ErrWriteBlocking + } + + } else { + select { + case c.packetSendChan <- p: + return nil + + case <-c.closeChan: + return ErrConnClosing + + case <-time.After(timeout): + return ErrWriteBlocking + } + } +} + +// Do it +func (c *Conn) Do() { + if !c.srv.callback.OnConnect(c) { + return + } + + asyncDo(c.handleLoop, c.srv.waitGroup) + asyncDo(c.readLoop, c.srv.waitGroup) + asyncDo(c.writeLoop, c.srv.waitGroup) +} + +func (c *Conn) readLoop() { + defer func() { + recover() + c.Close() + }() + + for { + select { + case <-c.srv.exitChan: + return + + case <-c.closeChan: + return + + default: + } + + p, err := c.srv.protocol.ReadPacket(c.conn) + if err != nil { + return + } + + c.packetReceiveChan <- p + } +} + +func (c *Conn) writeLoop() { + defer func() { + recover() + c.Close() + }() + + for { + select { + case <-c.srv.exitChan: + return + + case <-c.closeChan: + return + + case p := <-c.packetSendChan: + if c.IsClosed() { + return + } + if _, err := c.conn.Write(p.Serialize()); err != nil { + return + } + } + } +} + +func (c *Conn) handleLoop() { + defer func() { + recover() + c.Close() + }() + + for { + select { + case <-c.srv.exitChan: + return + + case <-c.closeChan: + return + + case p := <-c.packetReceiveChan: + if c.IsClosed() { + return + } + if !c.srv.callback.OnMessage(c, p) { + return + } + } + } +} + +func asyncDo(fn func(), wg *sync.WaitGroup) { + wg.Add(1) + go func() { + fn() + wg.Done() + }() +} diff --git a/vendor/github.com/gansidui/gotcp/examples/echo/client/client.go b/vendor/github.com/gansidui/gotcp/examples/echo/client/client.go new file mode 100755 index 0000000..f0d9eca --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/echo/client/client.go @@ -0,0 +1,42 @@ +package main + +import ( + "fmt" + "log" + "net" + "time" + + "github.com/gansidui/gotcp/examples/echo" +) + +func main() { + tcpAddr, err := net.ResolveTCPAddr("tcp4", "127.0.0.1:8989") + checkError(err) + conn, err := net.DialTCP("tcp", nil, tcpAddr) + checkError(err) + + echoProtocol := &echo.EchoProtocol{} + + // ping <--> pong + for i := 0; i < 3; i++ { + // write + conn.Write(echo.NewEchoPacket([]byte("hello"), false).Serialize()) + + // read + p, err := echoProtocol.ReadPacket(conn) + if err == nil { + echoPacket := p.(*echo.EchoPacket) + fmt.Printf("Server reply:[%v] [%v]\n", echoPacket.GetLength(), string(echoPacket.GetBody())) + } + + time.Sleep(2 * time.Second) + } + + conn.Close() +} + +func checkError(err error) { + if err != nil { + log.Fatal(err) + } +} diff --git a/vendor/github.com/gansidui/gotcp/examples/echo/echoProtocol.go b/vendor/github.com/gansidui/gotcp/examples/echo/echoProtocol.go new file mode 100755 index 0000000..5487bc7 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/echo/echoProtocol.go @@ -0,0 +1,69 @@ +package echo + +import ( + "encoding/binary" + "errors" + "io" + "net" + + "github.com/gansidui/gotcp" +) + +type EchoPacket struct { + buff []byte +} + +func (this *EchoPacket) Serialize() []byte { + return this.buff +} + +func (this *EchoPacket) GetLength() uint32 { + return binary.BigEndian.Uint32(this.buff[0:4]) +} + +func (this *EchoPacket) GetBody() []byte { + return this.buff[4:] +} + +func NewEchoPacket(buff []byte, hasLengthField bool) *EchoPacket { + p := &EchoPacket{} + + if hasLengthField { + p.buff = buff + + } else { + p.buff = make([]byte, 4+len(buff)) + binary.BigEndian.PutUint32(p.buff[0:4], uint32(len(buff))) + copy(p.buff[4:], buff) + } + + return p +} + +type EchoProtocol struct { +} + +func (this *EchoProtocol) ReadPacket(conn *net.TCPConn) (gotcp.Packet, error) { + var ( + lengthBytes []byte = make([]byte, 4) + length uint32 + ) + + // read length + if _, err := io.ReadFull(conn, lengthBytes); err != nil { + return nil, err + } + if length = binary.BigEndian.Uint32(lengthBytes); length > 1024 { + return nil, errors.New("the size of packet is larger than the limit") + } + + buff := make([]byte, 4+length) + copy(buff[0:4], lengthBytes) + + // read body ( buff = lengthBytes + body ) + if _, err := io.ReadFull(conn, buff[4:]); err != nil { + return nil, err + } + + return NewEchoPacket(buff, true), nil +} diff --git a/vendor/github.com/gansidui/gotcp/examples/echo/server/server.go b/vendor/github.com/gansidui/gotcp/examples/echo/server/server.go new file mode 100755 index 0000000..41a8387 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/echo/server/server.go @@ -0,0 +1,70 @@ +package main + +import ( + "fmt" + "log" + "net" + "os" + "os/signal" + "runtime" + "syscall" + "time" + + "github.com/gansidui/gotcp" + "github.com/gansidui/gotcp/examples/echo" +) + +type Callback struct{} + +func (this *Callback) OnConnect(c *gotcp.Conn) bool { + addr := c.GetRawConn().RemoteAddr() + c.PutExtraData(addr) + fmt.Println("OnConnect:", addr) + return true +} + +func (this *Callback) OnMessage(c *gotcp.Conn, p gotcp.Packet) bool { + echoPacket := p.(*echo.EchoPacket) + fmt.Printf("OnMessage:[%v] [%v]\n", echoPacket.GetLength(), string(echoPacket.GetBody())) + c.AsyncWritePacket(echo.NewEchoPacket(echoPacket.Serialize(), true), time.Second) + return true +} + +func (this *Callback) OnClose(c *gotcp.Conn) { + fmt.Println("OnClose:", c.GetExtraData()) +} + +func main() { + runtime.GOMAXPROCS(runtime.NumCPU()) + + // creates a tcp listener + tcpAddr, err := net.ResolveTCPAddr("tcp4", ":8989") + checkError(err) + listener, err := net.ListenTCP("tcp", tcpAddr) + checkError(err) + + // creates a server + config := &gotcp.Config{ + PacketSendChanLimit: 20, + PacketReceiveChanLimit: 20, + } + srv := gotcp.NewServer(config, &Callback{}, &echo.EchoProtocol{}) + + // starts service + go srv.Start(listener, time.Second) + fmt.Println("listening:", listener.Addr()) + + // catchs system signal + chSig := make(chan os.Signal) + signal.Notify(chSig, syscall.SIGINT, syscall.SIGTERM) + fmt.Println("Signal: ", <-chSig) + + // stops service + srv.Stop() +} + +func checkError(err error) { + if err != nil { + log.Fatal(err) + } +} diff --git a/vendor/github.com/gansidui/gotcp/examples/telnet/server/server.go b/vendor/github.com/gansidui/gotcp/examples/telnet/server/server.go new file mode 100755 index 0000000..3882513 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/telnet/server/server.go @@ -0,0 +1,50 @@ +package main + +import ( + "fmt" + "log" + "net" + "os" + "os/signal" + "runtime" + "syscall" + "time" + + "github.com/gansidui/gotcp" + "github.com/gansidui/gotcp/examples/telnet" +) + +func main() { + runtime.GOMAXPROCS(runtime.NumCPU()) + + // creates a tcp listener + tcpAddr, err := net.ResolveTCPAddr("tcp4", ":23") + checkError(err) + listener, err := net.ListenTCP("tcp", tcpAddr) + checkError(err) + + // creates a server + config := &gotcp.Config{ + PacketSendChanLimit: 20, + PacketReceiveChanLimit: 20, + } + srv := gotcp.NewServer(config, &telnet.TelnetCallback{}, &telnet.TelnetProtocol{}) + + // starts service + go srv.Start(listener, time.Second) + fmt.Println("listening:", listener.Addr()) + + // catchs system signal + chSig := make(chan os.Signal) + signal.Notify(chSig, syscall.SIGINT, syscall.SIGTERM) + fmt.Println("Signal: ", <-chSig) + + // stops service + srv.Stop() +} + +func checkError(err error) { + if err != nil { + log.Fatal(err) + } +} diff --git a/vendor/github.com/gansidui/gotcp/examples/telnet/telnetProtocol.go b/vendor/github.com/gansidui/gotcp/examples/telnet/telnetProtocol.go new file mode 100755 index 0000000..3910006 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/telnet/telnetProtocol.go @@ -0,0 +1,115 @@ +package telnet + +import ( + "bytes" + "fmt" + "net" + "strings" + + "github.com/gansidui/gotcp" +) + +var ( + endTag = []byte("\r\n") // Telnet command's end tag +) + +// Packet +type TelnetPacket struct { + pType string + pData []byte +} + +func (p *TelnetPacket) Serialize() []byte { + buf := p.pData + buf = append(buf, endTag...) + return buf +} + +func (p *TelnetPacket) GetType() string { + return p.pType +} + +func (p *TelnetPacket) GetData() []byte { + return p.pData +} + +func NewTelnetPacket(pType string, pData []byte) *TelnetPacket { + return &TelnetPacket{ + pType: pType, + pData: pData, + } +} + +type TelnetProtocol struct { +} + +func (this *TelnetProtocol) ReadPacket(conn *net.TCPConn) (gotcp.Packet, error) { + fullBuf := bytes.NewBuffer([]byte{}) + for { + data := make([]byte, 1024) + + readLengh, err := conn.Read(data) + + if err != nil { //EOF, or worse + return nil, err + } + + if readLengh == 0 { // Connection maybe closed by the client + return nil, gotcp.ErrConnClosing + } else { + fullBuf.Write(data[:readLengh]) + + index := bytes.Index(fullBuf.Bytes(), endTag) + if index > -1 { + command := fullBuf.Next(index) + fullBuf.Next(2) + //fmt.Println(string(command)) + + commandList := strings.Split(string(command), " ") + if len(commandList) > 1 { + return NewTelnetPacket(commandList[0], []byte(commandList[1])), nil + } else { + if commandList[0] == "quit" { + return NewTelnetPacket("quit", command), nil + } else { + return NewTelnetPacket("unknow", command), nil + } + } + } + } + } +} + +type TelnetCallback struct { +} + +func (this *TelnetCallback) OnConnect(c *gotcp.Conn) bool { + addr := c.GetRawConn().RemoteAddr() + c.PutExtraData(addr) + fmt.Println("OnConnect:", addr) + c.AsyncWritePacket(NewTelnetPacket("unknow", []byte("Welcome to this Telnet Server")), 0) + return true +} + +func (this *TelnetCallback) OnMessage(c *gotcp.Conn, p gotcp.Packet) bool { + packet := p.(*TelnetPacket) + command := packet.GetData() + commandType := packet.GetType() + + switch commandType { + case "echo": + c.AsyncWritePacket(NewTelnetPacket("echo", command), 0) + case "login": + c.AsyncWritePacket(NewTelnetPacket("login", []byte(string(command)+" has login")), 0) + case "quit": + return false + default: + c.AsyncWritePacket(NewTelnetPacket("unknow", []byte("unknow command")), 0) + } + + return true +} + +func (this *TelnetCallback) OnClose(c *gotcp.Conn) { + fmt.Println("OnClose:", c.GetExtraData()) +} diff --git a/vendor/github.com/gansidui/gotcp/protocol.go b/vendor/github.com/gansidui/gotcp/protocol.go new file mode 100755 index 0000000..18701d2 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/protocol.go @@ -0,0 +1,13 @@ +package gotcp + +import ( + "net" +) + +type Packet interface { + Serialize() []byte +} + +type Protocol interface { + ReadPacket(conn *net.TCPConn) (Packet, error) +} diff --git a/vendor/github.com/gansidui/gotcp/server.go b/vendor/github.com/gansidui/gotcp/server.go new file mode 100755 index 0000000..4bc6e74 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/server.go @@ -0,0 +1,68 @@ +package gotcp + +import ( + "net" + "sync" + "time" +) + +type Config struct { + PacketSendChanLimit uint32 // the limit of packet send channel + PacketReceiveChanLimit uint32 // the limit of packet receive channel +} + +type Server struct { + config *Config // server configuration + callback ConnCallback // message callbacks in connection + protocol Protocol // customize packet protocol + exitChan chan struct{} // notify all goroutines to shutdown + waitGroup *sync.WaitGroup // wait for all goroutines +} + +// NewServer creates a server +func NewServer(config *Config, callback ConnCallback, protocol Protocol) *Server { + return &Server{ + config: config, + callback: callback, + protocol: protocol, + exitChan: make(chan struct{}), + waitGroup: &sync.WaitGroup{}, + } +} + +// Start starts service +func (s *Server) Start(listener *net.TCPListener, acceptTimeout time.Duration) { + s.waitGroup.Add(1) + defer func() { + listener.Close() + s.waitGroup.Done() + }() + + for { + select { + case <-s.exitChan: + return + + default: + } + + listener.SetDeadline(time.Now().Add(acceptTimeout)) + + conn, err := listener.AcceptTCP() + if err != nil { + continue + } + + s.waitGroup.Add(1) + go func() { + newConn(conn, s).Do() + s.waitGroup.Done() + }() + } +} + +// Stop stops service +func (s *Server) Stop() { + close(s.exitChan) + s.waitGroup.Wait() +}